diff --git a/.gitignore b/.gitignore index cc92ca8..e3b4353 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ */.ipynb_checkpoints/* +.idea/ diff --git a/00 Home/01 Home/01 Home.html b/00 Home/01 Home/01 Home.html new file mode 100644 index 0000000..ff41ca3 --- /dev/null +++ b/00 Home/01 Home/01 Home.html @@ -0,0 +1,126 @@ +
+
+
+
+

Tutorials

+

Learn to use QuantConnect with guided tutorials +

+
+
+ + +
+
+
+
+ +
+
+ +

+ API Tutorials +

+
+ Learn how to build algorithms in QuantConnect +
+
+
+
+
+
+ +
+
+ +

+ Tutorial Series +

+
+ Step by step introductions to the basics of python and finance +
+
+
+
+
+
+
+
+ +
+
+ +

+ Open Source +

+
+ Deploy and harness the LEAN algorithmic trading engine +
+
+
+
+
+
+ +
+
+ +

+ Strategy Library +

+
+ Hundreds of academic papers implemented as LEAN trading strategies +
+
+
+
+ + + \ No newline at end of file diff --git a/01 API Tutorials/00 Introduction/00 Introduction.html b/01 API Tutorials/00 Introduction/00 Introduction.html new file mode 100644 index 0000000..7f208e0 --- /dev/null +++ b/01 API Tutorials/00 Introduction/00 Introduction.html @@ -0,0 +1,37 @@ +

+API tutorials seek to give you an introduction to building an algorithm using the QuantConnect API. +

+ + +
+

101 Consolidating Data to Build Bars

+

Learn how to create bars of any size for your algorithm and apply them to your indicators.

+ +
+
+ +
+

102 Using Scheduled Events

+

Trigger algorithm functions at specific times of the day or month.

+ +
+
+ +
+

103 Trading and Order Management

+

Learn how to use QuantConnect order tickets system to properly manage your algorithm trades.

+ +
+
+ +
+

104 Using Options in QuantConnect

+

Learn how to filter and select Options for your backtesting.

+ +
+
\ No newline at end of file diff --git a/API Tutorials/Tutorial01 Consolidating Data to Build Bars.html b/01 API Tutorials/01 Consolidating Data to Build Bars/01 Consolidating Data to Build Bars.html old mode 100644 new mode 100755 similarity index 75% rename from API Tutorials/Tutorial01 Consolidating Data to Build Bars.html rename to 01 API Tutorials/01 Consolidating Data to Build Bars/01 Consolidating Data to Build Bars.html index 5d1de5b..65121c5 --- a/API Tutorials/Tutorial01 Consolidating Data to Build Bars.html +++ b/01 API Tutorials/01 Consolidating Data to Build Bars/01 Consolidating Data to Build Bars.html @@ -1,13 +1,14 @@ +

Consolidators are used to combine data together from finer resolutions into larger ones. This can be useful for indicators with specific data requirements or to perform long term analysis in conjunction with short term signals. - -Consolidators should be constructed and setup in your Initialize() method; this ensures they are only initialized once. There are three key steps to create and register a consolidator: -

    + Consolidators should be constructed and setup in your Initialize() method; this ensures they are only initialized once. There are three key steps to create and register a consolidator: +

    +
-In C# this looks like: -
public class ConsolidatorDemoAlgorithm : QCAlgorithm
+
+
+
public class ConsolidatorDemoAlgorithm : QCAlgorithm
 {
 	public override void Initialize()
 	{
@@ -39,8 +40,7 @@
 	public override void OnData(Slice data)
 	{ }
 }
-In Python: -
from datetime import datetime, timedelta
+
from datetime import datetime, timedelta
 class DataConsolidationAlgorithm(QCAlgorithm):
 
     def Initialize(self):
@@ -68,23 +68,29 @@
         self.Debug(str(self.Time) + " " + str(bar))
     def OnData(self, data):
         pass
-
-The LEAN API also has other consolidator types to handle working with Ticks and RenkoBars. - -In C# this looks like: -
// From tick data sources
+  
+
+

+ The LEAN API also has other consolidator types to handle working with Ticks and RenkoBars. +

+
+
// From tick data sources
 var tickConsolidator = new TickConsolidator(TimeSpan.FromMinutes(30));
 
 //from renko bars
 var renkoConsolidator = new RenkoConsolidator(TimeSpan.FromMinutes(30));
 
- -There are two key points to remember: -
    +
    +
    +
+

+ There are two key points to remember: +

+ +

+ The raw data of QuantConnect is provided in Tick, Minute, Second, Hour or Daily bars. Using these building blocks you can combine data together to get any other resolution of data required. +

+ diff --git a/API Tutorials/Tutorial04 Scheduled Events.html b/01 API Tutorials/02 Scheduled Events/02 Scheduled Events.html old mode 100644 new mode 100755 similarity index 66% rename from API Tutorials/Tutorial04 Scheduled Events.html rename to 01 API Tutorials/02 Scheduled Events/02 Scheduled Events.html index 9237c12..eac686e --- a/API Tutorials/Tutorial04 Scheduled Events.html +++ b/01 API Tutorials/02 Scheduled Events/02 Scheduled Events.html @@ -1,16 +1,21 @@ +

Scheduled events allow you to trigger code blocks for execution at specific times according to rules you set. This feature helps coordinate your algorithm activities and perform analysis at regular intervals; while letting the trading engine take care of market holidays. - -The scheduling is set with two rules: the DateRules and TimeRules classes. The schedule manager takes one of each and executes an action code block. -In C# this looks like: -

Schedule.On(DateRules.On(2013, 10, 7), TimeRules.At(13, 0), () =>
+

+

+ The scheduling is set with two rules: the DateRules and TimeRules classes. The schedule manager takes one of each and executes an action code block. +

+
+
Schedule.On(DateRules.On(2013, 10, 7), TimeRules.At(13, 0), () =>
 {
          Debug("Specific Time: Fired at : " + Time);
 });
-Or in Python: -
self.Schedule.On(self.DateRules.On(2013, 10, 7), self.TimeRules.At(13, 0), Action(self.SpecificTime))
+
self.Schedule.On(self.DateRules.On(2013, 10, 7), self.TimeRules.At(13, 0), Action(self.SpecificTime))
 def SpecificTime(self):
     self.Log("SpecificTime: Fired at : {0}".format(self.Time))
-The date rules can be specified as below: +
+

+ The date rules can be specified as below: +

@@ -40,7 +45,9 @@
-The time rules trigger specify when on the day the event should be triggered. They can be specified as below: +

+ The time rules trigger specify when on the day the event should be triggered. They can be specified as below: +

@@ -66,5 +73,7 @@
-For a demonstration see the tutorial video below: -https://youtu.be/SUu4MKlm93I +

+ For a demonstration see the tutorial video below: +

+ diff --git a/01 API Tutorials/03 Tracking and Managing Orders/01 Overview.html b/01 API Tutorials/03 Tracking and Managing Orders/01 Overview.html new file mode 100755 index 0000000..9c9b242 --- /dev/null +++ b/01 API Tutorials/03 Tracking and Managing Orders/01 Overview.html @@ -0,0 +1,42 @@ +

+ Tracking and managing orders is an important part of an algorithmic trading strategy. Intelligent order management encourages discipline and a deep understanding of your algorithm. Through the QuantConnect API you can get order fields, update their values and cancel pending orders. This can be useful for lowering trading costs and improving order fills. + When you place a trade you receive an OrderTicket for you to access the order. This allows you to safely (asynchronously) update and cancel the order while in live trading. In live trading you cannot assume order updates are processed successfully as the brokerage may have already filled the trade. +

+ +

+ You can place several types of orders including: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Supported Order Types
Market Ordervar ticket = MarketOrder("SPY", 100);self.ticket = self.MarketOrder("SPY", 100)
Limit Ordervar ticket = LimitOrder("SPY", 100, 100.10m);self.ticket = self.LimitOrder("SPY", 100, 100.1)
Stop Market Ordervar ticket = StopMarketOrder("SPY", 100, 100.10m);self.ticket = self.StopMarketOrder("SPY", 100, 100.1)
Stop Limit Ordervar ticket = StopLimitOrder("SPY", 100, 100.12m, 99.5m);self.ticket = self.StopLimitOrder("SPY", 100, 100.12, 99.5)
Market On Open Ordervar ticket = MarketOnOpen("SPY", 100);self.ticket = self.MarketOnOpen("SPY", 100)
Market On Close Ordervar ticket = MarketOnClose("SPY", 100);self.ticket = self.MarketOnClose("SPY", 100)
diff --git a/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html b/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html new file mode 100755 index 0000000..668d4a1 --- /dev/null +++ b/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html @@ -0,0 +1,37 @@ +

+Once you have an order ticket you can use it to get order fields. +

+
+
var currentStopPrice = _ticket.Get(OrderField.StopPrice);
+
+
# Retrive the 'StopPrice' for an order from the ticket
+currentStopPrice = _ticket.Get(OrderField.StopPrice)
+
+

+ Or update the order fields (LimitPrice, StopPrice, Tag or Quantity): +

+
+
_ticket.Update(new UpdateOrderFields
+{
+    LimitPrice = newLongLimit,
+    Tag = "Update #" + (longOrder.UpdateRequests.Count + 1)
+});
+
+
# update the order fields (LimitPrice, StopPrice, Tag or Quantity)
+updateOrderFields = UpdateOrderFields()
+updateOrderFields.LimitPrice = newLongLimit
+_ticket.Update(updateOrderFields)
+
+
+

+ You can also cancel your order if required: +

+
+
_ticket.Cancel();
+
ticket.Cancel()
+
+

+ In the video below we demonstrate putting it all together to create a moving take-profit order which gradually decreases its profit + target as time passes. +

+ diff --git a/01 API Tutorials/03 Tracking and Managing Orders/03 Full Python Example.html b/01 API Tutorials/03 Tracking and Managing Orders/03 Full Python Example.html new file mode 100755 index 0000000..e53941f --- /dev/null +++ b/01 API Tutorials/03 Tracking and Managing Orders/03 Full Python Example.html @@ -0,0 +1,78 @@ +

+ This is a complete port from C# to Python of this Quick Start Lesson. +

+
+ +
+```Lesson 6 - Tracking and Managing Orders:
+Immediately place 4 orders. Plot end of day price of each order in 'Order Tickets' plot. Debug log filled orders.
+```
+import numpy as np
+from decimal import Decimal
+
+class BasicTemplateAlgorithm(QCAlgorithm):
+
+    def Initialize(self):
+        self._limitTicket = None
+        self._stopMarketTicket = None
+        self._stopLimitTicket = None
+        self.SetCash(25000)
+        self.SetStartDate(2009,1,1)
+        self.SetEndDate(2009,6,1)
+        self.spy = self.AddEquity("SPY", Resolution.Minute).Symbol
+
+    def OnData(self, slice):
+        if self._limitTicket is None:
+
+            self.MarketOrder(self.spy, 100)
+
+            self._limitTicket = self.LimitOrder(
+                self.spy,
+                100,
+                slice["SPY"].Close * Decimal(0.9),
+                "limit order")
+
+            self._stopMarketTicket = self.StopMarketOrder(
+                self.spy,
+                -100,
+                slice["SPY"].Close * Decimal(0.95),
+                "stop market")
+
+            self._stopLimitTicket = self.StopLimitOrder(
+                self.spy,
+                -100,
+                slice["SPY"].Close * Decimal(0.9),
+                slice["SPY"].Close * Decimal(0.8),
+                "stop limit")
+
+
+    def OnEndOfDay(self):
+        ```End of each day, plot our asset & order prices```
+        if self._limitTicket is None:
+            return
+
+        self.Plot("Order Tickets", "SPY", self.Portfolio['SPY'].Price)
+
+        if self._stopMarketTicket.Status != OrderStatus.Filled:
+            self.Plot("Order Tickets", "Stop Price",
+                      self._stopMarketTicket.Get(OrderField.StopPrice))
+
+        if self._stopLimitTicket.Status != OrderStatus.Filled:
+            self.Plot("Order Tickets", "Limit Price",
+                      self._stopLimitTicket.Get(OrderField.LimitPrice))
+
+    def OnOrderEvent(self, OrderEvent):
+        ```Event when the order is filled. Debug log the order fill. :OrderEvent:```
+
+        if OrderEvent.FillQuantity == 0:
+            return
+
+        fetched = self.Transactions.GetOrderById(OrderEvent.OrderId)
+
+        self.Debug("{} was filled. Symbol: {}. Quantity: {}. Direction: {}"
+                   .format(str(fetched.Type),
+                           str(OrderEvent.Symbol),
+                           str(OrderEvent.FillQuantity),
+                           str(OrderEvent.Direction)))
+ 
+
diff --git a/01 API Tutorials/04 Using Options in QuantConnect/01 Introduction.html b/01 API Tutorials/04 Using Options in QuantConnect/01 Introduction.html new file mode 100755 index 0000000..fd8f150 --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/01 Introduction.html @@ -0,0 +1,3 @@ +

+ QuantConnect provides US options trade and quotes price data for approximately 4000 symbols, each of which has roughly 10 strikes on average. Data is available starting January 1st, 2008. In this tutorial, we will discuss how to use QuantConnect to start your options trading algorithm. +

diff --git a/01 API Tutorials/04 Using Options in QuantConnect/02 Add Options.html b/01 API Tutorials/04 Using Options in QuantConnect/02 Add Options.html new file mode 100755 index 0000000..0ab569f --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/02 Add Options.html @@ -0,0 +1,35 @@ +

+ Before trading options, you need to add options for a given underlying equity and set the resolution in step Initialize with AddOption method. The commonly used parameters will be explained in the method table. Please refer to the link below for details of each method. +

+ + + + + + + + + + + + + +
MethodParameters
AddOption(underlying, +resolution, +fillDataForward)underlying(string): The underlying equity symbol +resolution: Tick, Second, Minute, Hour, or Daily. Default is minute +fillDataForward(bool): If true, returns the last available data even if none in that time slice. The default value is true.
+
+ +
def Initialize(self):
+    self.SetStartDate(2017, 01, 01)  #Set Start Date
+    self.SetEndDate(2017, 06, 30)  #Set End Date
+    self.SetCash(50000)  #Set Strategy Cash
+    equity = self.AddEquity("GOOG", Resolution.Daily) # Add the underlying stock: Google
+    option = self.AddOption("GOOG", Resolution.Daily) # Add the option corresponding to underlying stock
+    self.symbol = option.Symbol
+
+
+

+ The return value of AddOption method is an option security object , please refer to the link for detailed properties and methods of option class. +

diff --git a/01 API Tutorials/04 Using Options in QuantConnect/03 Filter Contracts.html b/01 API Tutorials/04 Using Options in QuantConnect/03 Filter Contracts.html new file mode 100755 index 0000000..02b6927 --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/03 Filter Contracts.html @@ -0,0 +1,43 @@ +

+ After adding the options for specific underlying stock,  you can set the filter criteria with SetFilter method to pull contracts using the specified min and max strike and expiration range values you need for a given symbol. +

+ + + + + + + + + + + + + + +
MethodParameters
SetFilter( +min strike, +max strike, +minexpiry, +maxExpiry)min Strike, max Strike: The min and max strike rank relative to market price +min Expiry, max Expiry: The range of time to expiration to include, for example, TimeSpan.FromDays(10) would exclude contracts expiring in less than 10 days
+

+ Here parameters min Strike and max Strike are the relative values with respect to the market price. We use Google(NASDAQ: GOOG) as an example to describe the filter criteria. If today is 01/03/2017, the market price of underlying stock is $776, the strike prices of GOOG options are spaced $2.5. Then SetFilter(-1, +2, timedelta(0), timedelta(90)) will fist look up at the money contracts with strike being K=$777.5 (Here K might not being $100 since rarely will option be ATM exactly). Then  filter will looks for options with strikes between and including (777.5 + 2.5*2, 777.5 - 2.5*1). The time to expiration of these options are restricted within 90 days from now on.  +

+

+ For the strike, the exchange normally chooses the strike prices at which options can be written so that they are spaced $2.50, $5, or $10 apart. Typically the spacing is $2.50 when the stock price is between $5 and $25, $5 when the stock price is between $25 and $200, and $10 for stock prices above $200. So you should carefully choose the parameters of min strike and max Strike in case there is no contracts satisfy the filter criteria if the range is too small, less than the minimum units of strike prices change. +

+

+ For the expiry, there are many expiration dates that apply to the different series of options. An option cycle is the pattern of months in which options contracts expire. There are three kinds of common option cycles. The options on the January cycle have contracts available in the first month of each quarter (January, April, July and October). Options assigned to the February cycle use the middle month of each quarter (February, May, August and November). And options in the March cycle have options available during the last month of each quarter (March, June, September and December). In addition, individual stock options typically expire in the current month and the subsequent month. +

+ +
+ +
# filter the contracts with strikes between (market price - 10, market price + 10)
+option.SetFilter(-10,10)
+# filter the contracts which expires more than 30 days but no longer than 60 days
+option.SetFilter(TimeSpan.FromDays(30),TimeSpan.FromDays(60))
+# filter the contracts with strikes between(ATM Strike - 10 * strike space value, market price + 10 * strike space value) and with expiration days less than 180 days
+option.SetFilter(-10, +10, timedelta(0), timedelta(180))
+
+
diff --git a/01 API Tutorials/04 Using Options in QuantConnect/04 Select Contracts.html b/01 API Tutorials/04 Using Options in QuantConnect/04 Select Contracts.html new file mode 100755 index 0000000..99d89ed --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/04 Select Contracts.html @@ -0,0 +1,191 @@ +

+ For QuantConnect API, Slice class provides a data structure for all of an algorithm's data at a single time step. So you need to use the property Slice.OptionChains to request options data for this slice. + +OptionChains is a collection of OptionChain keyed by the option's underlying symbol. The elements in Slice.OptionChains have properties Key(the underlying symbol object) and Value(the option chain). + +OptionChain  represents an entire chain of option contracts for a single underlying security. In other words, it is a list of option contracts. + +OptionContract defines a single option contract at a specific expiration and strike price. For any contract x in the option chain, you can use the following statements to check different options properties. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Properties of Option Contract x
x.Symbol.Value Get the string of option contract's symbol
x.AskPrice, x.BidPrice Get the ask price,  Get the bid price
x.Expiry Get the expiration date
x.Strike Get the strike price
x.ImpliedVolatility Get the implied volatility
x.GreeksGet the Greeks letter
x.RightGet the right being purchased +x.Right = 1  call option[right to buy] +x.Right = 0  put option[right to sell]
x.UnderlyingLastPriceGet the last price the underlying security traded at
x.UnderlyingSymbolGets the underlying security's symbol
+ +

+ We can print out the details of the contract after filtering with Python data frame to show these properties. Assume today is 01/03/2017.  The stock price at 01/03/2017 09:31:00 is $776.01 per share. Here we use  SetFilter(-1, +1, timedelta(0), timedelta(60)) to filter the contracts. +

+ +
+ +
def OnData(self,slice):
+    for kvp in slice.OptionChains:
+        if kvp.Key != self.symbol:
+            continue
+	      optionchain = kvp.Value
+        df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
+        index=[x.Symbol.Value for x in optionchain],
+        columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
+        self.Log(f"Underlying price: {optionchain.Underlying.Price}\n{df}")
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Symboltype(call 0, put 1)StrikeExpiryAsk PriceBid Price
GOOG 170217C007800000780.02017-02-1726.427.9
GOOG 170120P007825001782.52017-01-2014.716.3
GOOG 170120C007825000782.52017-01-209.410.2
GOOG 170120P007800001780.02017-01-2013.415.0
GOOG 170120C007800000780.02017-01-2010.611.5
GOOG 170217P007800001780.02017-02-1728.930.8
GOOG 170120P007775001777.52017-01-2012.213.7
GOOG 170120C007775000777.52017-01-2011.812.9
+ +

+ Here we give an example of how to find ATM, ITM and OTM contracts for trading. First, we need to extract the OptionChain from OptionChains according to symbols we added in Initialize step. Secondly, we extract ATM, ITM and OTM contracts by using UnderlyingLastPrice and Strike properties. Note here the strikes of ATM options are not exactly the same as the market price of underlying stocks, thus here we first sort the contracts by the absolute values of the difference between the UnderlyingLastPrice and the Strike. Then we choose the contract with the minimum absolute value as the ATM contract. +

+ +
+ +
for kvp in slice.OptionChains:
+    if kvp.Key != self.symbol:
+        continue
+    optionchain = kvp.Value
+    # differentiate the call and put options
+    call = [x for x in optionchain if x.Right == OptionRight.Call]
+    put = [x for x in optionchain if x.Right == OptionRight.Put]
+    price = optionchain.Underlying.Price
+    # choose ITM contracts
+    contracts = [x for x in call if price - x.Strike > 0]
+    # or choose ATM contracts
+    contracts = [x for x in call if price - x.Strike == 0]
+    # or choose OTM contracts
+    contracts = [x for x in call if price - x.Strike < 0]
+    # sort the contracts by their expiration dates
+    contracts = sorted(contracts, key = lambda x: x.Expiry, reverse = True)
+
+
+

+ Finally, we trade the options by using the contract's symbol. +

+ +
+ +
if len(contracts) == 0: continue
+# trade the contracts with the farthest expiration
+symbol = contracts[0].Symbol
+self.MarketOrder(symbol, 1)
+self.MarketOnCloseOrder(symbol, -1)
+
+
diff --git a/01 API Tutorials/04 Using Options in QuantConnect/05 Algorithm.html b/01 API Tutorials/04 Using Options in QuantConnect/05 Algorithm.html new file mode 100755 index 0000000..cf59940 --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/05 Algorithm.html @@ -0,0 +1,10 @@ +

+ This simple example demonstrates how you can inspect the option chain to pick a specific option contract to trade. +

+
+
+
+
+ +
+
diff --git a/01 API Tutorials/04 Using Options in QuantConnect/06 Summary.html b/01 API Tutorials/04 Using Options in QuantConnect/06 Summary.html new file mode 100755 index 0000000..da313e2 --- /dev/null +++ b/01 API Tutorials/04 Using Options in QuantConnect/06 Summary.html @@ -0,0 +1,3 @@ +

+ After mastering the basic knowledge of options market, this tutorial we take a close at how to use Quantconnect to customize your own options trading. For example, how you can access an option chain, how to view the details of the contract as a Python data frame, and the most important how to trade the specific option contract. +

diff --git a/02 Tutorial Series/00 Introduction/Introduction.html b/02 Tutorial Series/00 Introduction/Introduction.html new file mode 100644 index 0000000..3b4dbb8 --- /dev/null +++ b/02 Tutorial Series/00 Introduction/Introduction.html @@ -0,0 +1,25 @@ +

+QuantConnect maintains collections of related tutorials we call a Tutorial Series. We have tutorial series covering the topic below - each with a set of 8-10 child tutorials beneath them.

+ + +
+

100 Introduction to Financial Python

+

Learn how to use Numpy and Pandas for performing basic financial mathematics.

+
+
+ +
+

101 Introduction to Options

+

Learn how to use options in QuantConnect, along with some core mathematical concepts.

+
+
+
+

102 Options Applied

+

Apply your option knowledge with a series of real strategies implemented in QuantConnect.

+
+
\ No newline at end of file diff --git a/02 Tutorial Series/01 Introduction to Financial Python/00 About.html b/02 Tutorial Series/01 Introduction to Financial Python/00 About.html new file mode 100644 index 0000000..8fec69d --- /dev/null +++ b/02 Tutorial Series/01 Introduction to Financial Python/00 About.html @@ -0,0 +1,21 @@ +

This tutorial series introduces basic Python applied to financial concepts. If you have great investment ideas but don't know how to write them, or if you think you need to learn some basic skills in quantitative finance, then this is a good starting point. The series is broken into four parts: python, math and statistics, basic financial concepts related to investment and financial time series analysis.

+ +

We not only introduce the concepts but also show you how to apply the introduced techniques step by step using Python code snippets. We use real financial datasets as examples and after each chapter we design a QuantConnect algorithm applying what we learned.

+ +
+
+   +

+

14 Tutorials

+
+
+   +

+

8 Backtests

+
+
+   +

+

167 Code Snippets

+
+
diff --git a/02 Tutorial Series/01 Introduction to Financial Python/01 What Will I learn %3F.html b/02 Tutorial Series/01 Introduction to Financial Python/01 What Will I learn %3F.html new file mode 100644 index 0000000..7593f3e --- /dev/null +++ b/02 Tutorial Series/01 Introduction to Financial Python/01 What Will I learn %3F.html @@ -0,0 +1,7 @@ +
+
Python
+
Statistics
+
Linear Algebra
+
Modern Portfolio Theory
+
Multi-factor Models
+
diff --git a/02 Tutorial Series/01 Introduction to Financial Python/02 Tutorials.html b/02 Tutorial Series/01 Introduction to Financial Python/02 Tutorials.html new file mode 100644 index 0000000..9ddd2e6 --- /dev/null +++ b/02 Tutorial Series/01 Introduction to Financial Python/02 Tutorials.html @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
1 +

Python: Data Types and Data Structures

+First glimpse of Python. +
Read Tutorial
2 +

Python: Logical Operations and Loop

+The essential of programming. +
Read Tutorial
3 +

Python: Functions and Object-Oriented Programming

+The Python magic. +
Read Tutorial
4 +

NumPy and Basic Pandas

+The power scientific calculation package for Python. +
Read Tutorial
5 +

Pandas: Resampling and DataFrame

+The magical Data manipulation tool for Python. +
Read Tutorial
6 +

Rate of Return, Mean and Variance

+The basic mathematical concepts for quantitative finance. +
Read Tutorial
7 +

Random Variable and Distributions

+Point estimation vs interval estimation +
Read Tutorial
8 +

Confidence Interval and Hypothesis Testing

+Test your ideas rigorously. +
Read Tutorial
9 +

Simple Linear Regression

+Find the relationship between two random variables. +
Read Tutorial
10 +

Multiple Linear Regression and residual analysis

+Explain a random variable using the power of multi-variables. +
Read Tutorial
11 +

Linear Algebra

+Mathematic tool for large scale calculation +
Read Tutorial
12 +

Modern Portfolio Theory

+Don't put all the eggs in one basket. +
Read Tutorial
13 +

Market Risk

+Beta and Alpha. +
Read Tutorial
14 +

Fama-French Multi-factor Model

+The most popular asset pricing model since 1992. +
Read Tutorial
diff --git a/02 Tutorial Series/02 Introduction to Options/00 About.html b/02 Tutorial Series/02 Introduction to Options/00 About.html new file mode 100644 index 0000000..43c78d3 --- /dev/null +++ b/02 Tutorial Series/02 Introduction to Options/00 About.html @@ -0,0 +1,20 @@ +

The goal of this series is to introduce options to those who are option novices and have basic knowledge of applied mathematics, statistics and financial markets. We will primarily talk about the fundamentals of options and cover topics such as what are options, key terms and concepts option traders need to be familiar with(exercise and assignment, The moneyness, Intrinsic and time value of options etc.) After knowing the basics of options, we will teach how to use QuantConnect API to conduct your options research with over 4000 underlying stock symbols.

+

The following few options tutorials were created to help you understand exactly how options are used as the investment and risk hedging tools. We will further discuss the pricing method of options like BSM model and Monte Carlo method. And then several metrics to gauge the options risks like the Greek letters, different kinds of volatilities used in options pricing and trading. At the end of some tutorials, we will apply the knowledge in that tutorial to demonstrate some simple algorithms developed with Python on Quantconnect attempting to help you gain an insight into options trading and learn more efficient API tools to better customize your own trading algorithms.

+ +
+
+ +

+

8 Tutorials

+
+
+ +

+

3 Backtests

+
+
+ +

+

65 Code Snippets

+
+
diff --git a/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html b/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html new file mode 100644 index 0000000..f05701e --- /dev/null +++ b/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html @@ -0,0 +1,10 @@ +
+
General Features of Options
+
QuantConnect Options API
+
Options Pricing: Black-Scholes-Merton Model
+
Stochastic Process
+
Monte Carlo Method
+
The Greek Letters
+
Historical Volatility and Implied Volatility
+
Local Volatility and Stochastic Volatility
+
diff --git a/02 Tutorial Series/02 Introduction to Options/02 Tutorials.html b/02 Tutorial Series/02 Introduction to Options/02 Tutorials.html new file mode 100644 index 0000000..3ebc133 --- /dev/null +++ b/02 Tutorial Series/02 Introduction to Options/02 Tutorials.html @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
1 +

General Features of Options

+
Options Contracts +
The Value of Options +
Option Moneyness +
Option Exercise and Assignment +
Read Tutorial
2 +

QuantConnect Option API

+
Option Data Access +
Option Contracts filtration +
Properties of Contracts +
Order Placement +
Read Tutorial
3 +

Put-Call Parity and Arbitrage Strategies

+
Options Payoff +
Put-Call Parity +
Synthetic Positions +
Arbitrage Strategy +
Read Tutorial
4 +

Stochastic Processes and Monte Carlo Method

+
Brownian Motion +
Wiener Process +
Monte Carlo Simulation of Stock Price +
Monte Carlo Simulation of European Options Price +
Read Tutorial
5 +

Options Pricing: Black Scholes Merton Model

+
Determinants of Options Price +
Factors of BSM model +
Model Assumptions +
BSM pricing Formulas +
Read Tutorial
6 +

The Greek Letters

+
Delta (definition, impact factors, charts) +
Gamma (definition, impact factors, charts) +
Vega (definition, charts) +
Theta (definition, charts) +
Rho (definition, charts) +
Read Tutorial
7 +

Historical Volatility and Implied Volatility

+
Historical Volatility (Definition, Calculation) +
Implied Volatility(Definition, Calculation, affect factors) +
Volatility Smile +
Volatility Skew +
Read Tutorial
8 +

Local Volatility and Stochastic Volatility

+
Local Volatility (Definition, Calculation) +
Stochastic Volatility(Definition, Calculation) +
Read Tutorial
diff --git a/02 Tutorial Series/03 Applied Options/00 About.html b/02 Tutorial Series/03 Applied Options/00 About.html new file mode 100644 index 0000000..f389a52 --- /dev/null +++ b/02 Tutorial Series/03 Applied Options/00 About.html @@ -0,0 +1,25 @@ +

+ The goal of this series is to introduce the common options strategies to those who already have basic knowledge of + options markets and most importantly, we will teach users how to start your simple options trading algorithm on + QuantConnect. These strategies will demonstrate a few of the ways in which options can be used to produce an + interesting relationship between profit and stock price. We will primarily talk about the strategies like the + Covered Call which involves a single option and the undelying stock, the spreads which involve either taking a + position in two or more calls or puts, the conbinations like straddle or strangle which involve taking a position in + both calls and puts on the same stocks. For each strategy, except for the description of strategy itself, we will + demonstrate the QuantConnect algorithm implemented in Python. +

+
+
+

+

8 Tutorials

+
+
+

+

10 Backtests

+
+
+

+

45 Code Snippets

+
+
+ diff --git a/02 Tutorial Series/03 Applied Options/01 What Will I learn %3F.html b/02 Tutorial Series/03 Applied Options/01 What Will I learn %3F.html new file mode 100644 index 0000000..661425d --- /dev/null +++ b/02 Tutorial Series/03 Applied Options/01 What Will I learn %3F.html @@ -0,0 +1,6 @@ +
+
Common Options Strategies
+
Using Options API
+
Payoff Analysis
+
Risk Profile of Options Trading
+
\ No newline at end of file diff --git a/02 Tutorial Series/03 Applied Options/02 Tutorials.html b/02 Tutorial Series/03 Applied Options/02 Tutorials.html new file mode 100644 index 0000000..e78c382 --- /dev/null +++ b/02 Tutorial Series/03 Applied Options/02 Tutorials.html @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
1 +

Covered Call

+ A brief introduction to Covered Call Strategy and the algorithm implemented in python. +
Read Tutorial
2 +

Bull Call Spread

+ A brief introduction to Bull Call Spread strategy and the algorithm implemented in python. +
Read Tutorial
3 +

Long Straddle

+ A brief introduction to Long Straddle strategy and the algorithm implemented in python. +
Read Tutorial
4 +

Long Strangle

+ A brief introduction to Long Strangle strategy and the algorithm implemented in python. +
Read Tutorial
5 +

Butterfly Spread

+ A brief introduction to Butterfly Spread strategy and the algorithm implemented in python. +
Read Tutorial
6 +

Iron Condor

+ A brief introduction to Iron Condor strategy and the algorithm implemented in python. +
Read Tutorial
7 +

Iron Butterfly

+ A brief introduction to Iron Butterfly strategy and the algorithm implemented in python. +
Read Tutorial
8 +

Protective Collar

+ A brief introduction to Protective Collar strategy and the algorithm implemented in python. +
Read Tutorial
diff --git a/03 Open Source/00 Introduction/Introduction.html b/03 Open Source/00 Introduction/Introduction.html new file mode 100644 index 0000000..dff5ed2 --- /dev/null +++ b/03 Open Source/00 Introduction/Introduction.html @@ -0,0 +1,47 @@ +

+QuantConnect has a large open source community driving innovation in the LEAN Algorithmic Trading Engine. We have collected relevant tutorials here for community members learn from and use with their local installations of LEAN.

+ + +
+

100 Debugging Python

+

Explore different methods to debug python algorithms.

+ +
+
+ + +
+

102 Using the API File Provider

+

Configuring your installation to pull financial data from the QuantConnect website repository.

+ +
+
+ + +
+

103 Lean Report Creator

+

Create polished professional reports from backtest results.

+ +
+
+ + +
+

201 Generating Random Data

+

Generate random data to use for backtesting with LEAN

+ +
+
+ + +
+

301 Brokerage Development Guide

+

Guide to implementing your own brokerage in LEAN.

+ +
+
diff --git a/03 Open Source/01 Debugging Python/00.html b/03 Open Source/01 Debugging Python/00.html new file mode 100644 index 0000000..c2005ec --- /dev/null +++ b/03 Open Source/01 Debugging Python/00.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/03 Open Source/01 Debugging Python/01 Introduction.html b/03 Open Source/01 Debugging Python/01 Introduction.html new file mode 100644 index 0000000..ea57f4a --- /dev/null +++ b/03 Open Source/01 Debugging Python/01 Introduction.html @@ -0,0 +1,7 @@ + + +

+ In this tutorial, for those algorithm developers who opt to work offline, we will explore the different methods to debug a python algorithm. +

\ No newline at end of file diff --git a/03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html b/03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html new file mode 100644 index 0000000..ba680ab --- /dev/null +++ b/03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html @@ -0,0 +1,30 @@ +

+The first step is to install LEAN and get it running with python algorithms. +

+

+To do this install: +

    +
  • Download LEAN from Github.
  • +
  • Install Visual Studio.
  • +
  • Open QuantConnect.Lean.sln in Visual Studio.
  • +
  • Build the solution by clicking Build Menu -> Build Solution.
  • +
  • Press F5 to run LEAN.
  • +
+

+

By default, Lean will run the C# version of BasicTemplateAlgorithm. From here the next step is to run the python version of the BasicTemplateAlgorithm successfully.

+

+To run that algorithm: +

    +
  • Edit config.json with the following paramenters:
  • +
    +
    +      "algorithm-type-name": "BasicTemplateAlgorithm",
    +      "algorithm-language": "Python",
    +      "algorithm-location": "../../../Algorithm.Python/BasicTemplateAlgorithm.py",
    +  
    +
    +
  • Build the solution by clicking Build Menu -> Build Solution
  • +
  • Press F5 to run
  • +
+

+ diff --git a/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html b/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html new file mode 100644 index 0000000..4407bf1 --- /dev/null +++ b/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html @@ -0,0 +1,57 @@ +

Prerequisites

+

Python Tools for Visual Studio debug (ptvsd) server python library. It can be easily installed using pip:

+
pip install ptvsd
+ +

Attaching the Debugger

+

The process that we will use to attach the python debugger requires that we run Lean without debugging and attach the process.

+ +

First, we will add the ptvsd library, and the following statements:

+ +
import ptvsd
+ptvsd.enable_attach()
+ptvsd.wait_for_attach()
+
+ +

These statements will hold the algorithm execution until Lean is attached to the python debugger.

+

The following statement sets the breakpoint:

+
ptvsd.break_into_debugger()
+

For example, place it in the OnData() method:

+ +
+
import ptvsd
+ptvsd.enable_attach()
+print(f'''Python Tool for Visual Studio Debugger {ptvsd.__version__}
+Please attach the python debugger:
+- In Visual Studio, select Debug > Attach to Process (or press Ctrl+Alt+P) to open the Attach to Process dialog box.
+- For Connection type, select Python remote (ptvsd)
+- In the Connection target box, select tcp://localhost:5678/ and click "Attach" button''')
+ptvsd.wait_for_attach()
+
+class BasicTemplateAlgorithm(QCAlgorithm):
+    def Initialize(self):
+        self.SetStartDate(2013,10, 7)
+        self.SetEndDate(2013,10,11)
+        self.SetCash(100000)
+        self.AddEquity("SPY", Resolution.Second)
+        self.Debug(f"numpy test >>> print numpy.pi: {np.pi}")
+
+    def OnData(self, data):
+        ptvsd.break_into_debugger()
+
+        close = data["SPY"].Close
+        if not self.Portfolio.Invested:
+            self.SetHoldings("SPY", 1)
+
+
+ +

+

Finally, attach the debugger to the process:

+
    +
  • Run Lean without debugging by clicking on Debug -> Start Without Debugging
  • +
  • In Visual Studio, select Debug -> Attach to Process (or press Ctrl+Alt+P) to open the Attach to Process dialog box.
  • +
  • For Connection type, select Python remote (ptvsd)
  • +
  • In the Connection target box, select tcp://localhost:5678/ and click "Attach" button
  • +
+ +

Once you attach the process the code execution will stop after ptvsd.break_into_debugger() statement.

+ \ No newline at end of file diff --git a/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html b/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html new file mode 100644 index 0000000..a0d48d6 --- /dev/null +++ b/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html @@ -0,0 +1,25 @@ +

This method uses the built in, cross-platform, command line python debugger pdb. + +

+

    +
  • Edit config.json with the following paramenters:
  • +
    +
    +      "debugging": true,
    +      "debugging-method": "CommandLine",
    +  
    +
    +
  • Run Lean without debugging by clicking on Debug -> Start Without Debugging
  • +
  • Lean will hit a first break outside algorithm code
  • +
  • Start debugging! Example commands:
  • +
    +
    +      break add ../../../Algorithm.Python/BasicTemplateAlgorithm.py:37
    +      continue
    +      print(self.Portfolio.Invested)
    +  
    +
    +
+

+ + diff --git a/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html b/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html new file mode 100644 index 0000000..7767d5e --- /dev/null +++ b/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html @@ -0,0 +1,25 @@ +

This method uses the Visual Studio Python Development Tools. + +

Prerequisites

+

Visual Studio Python development feature. It can be easily installed at Tools -> Get Tools and Features...

+ +

+

    +
  • Edit config.json with the following paramenters:
  • +
    +
    +      "debugging": true,
    +      "debugging-method": "VisualStudio",
    +  
    +
    +
  • Run Lean without debugging by clicking on Debug -> Start Without Debugging
  • +
  • Lean will stop and wait for the debugger to attach
  • +
  • Set breakpoints
  • +
  • In Visual Studio, select Debug -> Attach to Process (or press Ctrl+Alt+P) to open the Attach to Process dialog box.
  • +
  • For Connection type, select Default
  • +
  • For Attach to, select Python
  • +
  • Search for QuantConnect.Lean.Launcher.exe process and attach
  • +
+

+ + diff --git a/03 Open Source/01 Debugging Python/06 Limitations.html b/03 Open Source/01 Debugging Python/06 Limitations.html new file mode 100644 index 0000000..f126eb5 --- /dev/null +++ b/03 Open Source/01 Debugging Python/06 Limitations.html @@ -0,0 +1,3 @@ +

Unfortunately, this debugging scenario entails some limitations.

+

It is not possible to concurrently debug the python algorithm and Lean (C# code). That means that the debugger will not stop at breakpoints in Lean nor we can step into methods defined in Lean (e.g., SetHoldings).

+

Method 1 ptvsd will always stop after ptvsd.break_into_debugger() call and it not possible to untoggled it. However, we can use conditional statements to prevent its call and avoid unnecessary breaks. In order to resume the algorithm execution without breakpoints, we need to detach the process (Debug -> Detach All).

diff --git a/03 Open Source/01 Debugging Python/07 Summary.html b/03 Open Source/01 Debugging Python/07 Summary.html new file mode 100644 index 0000000..88aa936 --- /dev/null +++ b/03 Open Source/01 Debugging Python/07 Summary.html @@ -0,0 +1,3 @@ +

+In this tutorial, we have learned how to debug python algorithms in Visual Studio. It is not quite as smooth as native python yet, but knowing how to debug python algorithms in LEAN can give you a new level of understanding of how they work and allow for easier debugging of your strategy. +

diff --git a/03 Open Source/03 Using the API File Provider/02 How do I use the API File Provider.html b/03 Open Source/03 Using the API File Provider/02 How do I use the API File Provider.html new file mode 100644 index 0000000..79485b6 --- /dev/null +++ b/03 Open Source/03 Using the API File Provider/02 How do I use the API File Provider.html @@ -0,0 +1,10 @@ +

+Ensuring a high data quality is one of the hardest parts of setting reliable backtesting. There are many challenges to ensuring your data is in the right format, free of errors or omissions and historically accurate. We've tried to address this for you by opening the LEAN Data Library and letting you download our data. LEAN data is organized into millions of tiny files which can be difficult to put into place manually, but using the API File Provider we provide a way for you to automatically install this into your LEAN project.

+

Currently we provide forex and cfd data for each of the major vendors we support in tick, second, minute, hour and daily resolution. To request data; go to your data library and specify what you'd like to download.

+Data library collection for FXCM EURUSD data +

Each data file has a unique URL to download the data for the day which will get a LEAN formatted CSV zip. By using the API File Downloader we check if you have the file in your data-folder; and if not we attempt to download it from the API. This assumes you have already added the data to your repository through the web interface.

+

This requires 2 key changes to the config.json file in the QuantConnect.Lean.Launcher Project:

+
  • Insert your job-user-id and api-access-token into the relevant config fields. You can find these on your Account page.
  • Update the data-provider configuration to refer to the APIDataProvider class. This is called QuantConnect.Lean.Engine.DataFeeds.ApiDataProvider.
  • +
+

Check out the video below where we guide you step by step through how to use the API Data Provider.

+ diff --git a/03 Open Source/04 Lean Report Creator/00.html b/03 Open Source/04 Lean Report Creator/00.html new file mode 100644 index 0000000..02cabcd --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/00.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/03 Open Source/04 Lean Report Creator/01 Introduction.html b/03 Open Source/04 Lean Report Creator/01 Introduction.html new file mode 100644 index 0000000..f5f8f98 --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/01 Introduction.html @@ -0,0 +1,14 @@ +

+The LEAN Report Creator (LRC) is a report generated from backtesting-result objects and allows you to quickly create polished, professional-grade reports for each backtest (see a full example report generated by LRC). We hope that you can use these reports to share your strategy performance with prospective investors. +The report was generated using the examples provided in this tutorial. +

+

+The algorithm used to generate the example report is provided below. +

+ + +

+Users working through the QuantConnect.com IDE can have these reports generated automatically at the end of a backtest. To generate one, look at the “Report” tab below your backtest result charts and click "Request Report". +

+ + diff --git a/03 Open Source/04 Lean Report Creator/02 Creating a Report.html b/03 Open Source/04 Lean Report Creator/02 Creating a Report.html new file mode 100644 index 0000000..a2ea27a --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/02 Creating a Report.html @@ -0,0 +1,50 @@ +

+The Lean Report Creator is a project located in the Report folder. It is a command line tool that takes the JSON backtest result object as its input. +You can run it using command line arguments, or by filling in the config.json file. +

+
+
+./QuantConnect.Report.exe --backtest-data-source-file sample.json --report-destination Example.html
+
+
+

+The program has a few options you should configure to your requirements: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Command SwitchDescription
--backtest-data-source-fileLocation of the source backtest JSON file.
--live-data-source-fileLocation of the source live JSON file.
--report-destinationResulting output HTML file location.
--strategy-nameName of the strategy. This will appear at the top-right corner of each page in the report.
--strategy-versionVersion number of the strategy. This will appear at the top-right corner next to the strategy name.
--strategy-descriptionDescription that describes what the strategy does. This will appear under the "Strategy Description" section of the report.
+ +

+The program injects the images as base64 encoded objects into the HTML file to make it more portable and simpler to share with your partners. +

\ No newline at end of file diff --git a/03 Open Source/04 Lean Report Creator/03 Source Backtest.html b/03 Open Source/04 Lean Report Creator/03 Source Backtest.html new file mode 100644 index 0000000..f7fa836 --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/03 Source Backtest.html @@ -0,0 +1,39 @@ +

+The --backtest-data-source-file switch refers to a JSON file created by the LEAN Engine. This holds all of the backtest data which is required for generating the report HTML. This data can be sourced from desktop or cloud backtests. +

+ +

Desktop Backtesting Results

+

+By default, LEAN saves the backtest result data to disk inside of your LEAN launcher folder: Lean/Launcher/bin/Debug/BasicTemplateAlgorithm.json. You can access it like this from the Report executable: +

+
+
./QuantConnect.Report.exe --backtest-data-source-file ../../../Launcher/bin/Debug/BasicTemplateAlgorithm.json ...
+
+ +

Cloud Backtesting Results

+

+Backtest processed reports can be downloaded via API. The following example imports the QuantConnect API class and uses it to download the final HTML report. To access the API you will need to know your API User ID and Token, which can be obtained in the Account page. +

+ +Downloading Cloud Generated Backtest JSON Files: +
+
+>>> from quantconnect.api import Api
+>>> from json import dump
+>>> api = Api(your-user-id, your-token)
+>>> data = api.read_backtest(project-id, backtest-id)
+>>> with open("./json/sample.json", 'w+') as fp:
+>>>    json.dump(data['result'], fp, ensure_ascii=False)
+
+
+ +Downloading Cloud Generated Backtest JSON Files (Manually): +

+You can manually download the backtest result file and place the file in the location configured in the config.json file. +

+ + +

+You can update your report description by clicking on the Project Description button in your project panel. +

+ \ No newline at end of file diff --git a/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html b/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html new file mode 100644 index 0000000..7c86acc --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html @@ -0,0 +1,24 @@ +

+The report can contain a description of the strategy. This is set either in the config.json file or via the command line argument --strategy-description. +An example config.json configuration is provided below. +

+
+
{
+  "data-folder": "../../../Data",
+  "strategy-name": "Example Algo (FX + Equity) Strategy",
+  "strategy-version": "v1.2.0",
+  "strategy-description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
+  "live-data-source-file": "",
+  "backtest-data-source-file": "example_algo_fx.json",
+  "report-destination": "Report.html",
+
+  ...
+}
+
+
+ +

+We recommend that you use the existing config.example.json +and rename it to config.json once you have finished editing the file. Please rebuild the project on rename or if you make any changes to the configuration +so that the file is copied into the binary output path. +

\ No newline at end of file diff --git a/03 Open Source/04 Lean Report Creator/05 Interpreting Report Charts.html b/03 Open Source/04 Lean Report Creator/05 Interpreting Report Charts.html new file mode 100644 index 0000000..e7a0510 --- /dev/null +++ b/03 Open Source/04 Lean Report Creator/05 Interpreting Report Charts.html @@ -0,0 +1,39 @@ +

Cumulative Return

+ +

+This chart shows the cumulative returns for your strategy in blue for backtesting, orange for live trading, and the benchmark in gray. +

+ +

Returns per Trade

+ +

+This chart shows a histogram showing the distribution of returns per trade over the algorithm's backtesting or live trading period. +

+ +

Top 5 Drawdown Periods

+ +

+This chart shows the drawdown of each day. A certain day's drawdown is defined as the percentage of loss compared to the maximum value before this day. The drawdowns are calculated based on daily data. The top 5 drawdown periods are marked in the chart with different colors. +

+ +

Monthly Returns

+ +

+This chart shows the return of each month. We convert original price series into monthly series and calculate the returns of each month. The green color indicates positive return, the red color indicates negative return, and the greater the loss is, the darker the color is; the yellow color means the gain or loss is rather small; the white color means the month is not included in the backtest period. The values in the cells are in percentage. +

+ +

Annual Returns

+ +

This chart shows the return of each year. We calculate the total return within each year, shown by the blue bars. The red dotted line represents the average of the annual returns. +

+ +

Crisis Events

+ +

This group of charts shows the behaviors of both your strategy and the benchmark during a certain historical period. We set the value of your strategy the same as the benchmark at the beginning of each crisis event, and the lines represent the cumulative returns of your strategy and benchmark from the beginning of this crisis event. The report only draws the crisis event charts whose periods are covered by your strategy. +

+ +

Asset Allocations

+ +

+The asset allocation charts show a time-weighted average of each asset to your portfolio. When a certain asset has a very small percentage and is too small to be shown in the pie chart, it will be incorporated into an "Others" category. The value of the percentage could be either positive or negative. +

diff --git a/03 Open Source/05 Brokerage Development Guide/00.html b/03 Open Source/05 Brokerage Development Guide/00.html new file mode 100644 index 0000000..cedc442 --- /dev/null +++ b/03 Open Source/05 Brokerage Development Guide/00.html @@ -0,0 +1,43 @@ + +
+ Updated July 14th, 2018: The Brokerage Development Guide is an active work in progress. +
\ No newline at end of file diff --git a/03 Open Source/05 Brokerage Development Guide/01 Introduction.html b/03 Open Source/05 Brokerage Development Guide/01 Introduction.html new file mode 100644 index 0000000..a239d1d --- /dev/null +++ b/03 Open Source/05 Brokerage Development Guide/01 Introduction.html @@ -0,0 +1,9 @@ +

+Creating a fully supported brokerage is a challenging endeavor. LEAN requires a number of individual pieces which together form a complete brokerage implementation. This guide aims to describe in as much detail as possible what you need to do for each module. There are nine key components to implement - these are described individually in the sections below. +

+ +

+Each submitted brokerage pull-request must pass all tests before being merged. Partially completed brokerage implementations are acceptable if merged to a branch. It's easy to fall behind master so be sure to keep your branch updated with the master branch. Please make sure to read LEAN's coding style guidelines and comply with the code commenting and design standards. +

+ + diff --git a/03 Open Source/05 Brokerage Development Guide/02 Guide Contents.html b/03 Open Source/05 Brokerage Development Guide/02 Guide Contents.html new file mode 100644 index 0000000..73ae158 --- /dev/null +++ b/03 Open Source/05 Brokerage Development Guide/02 Guide Contents.html @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Implementation Steps
1.Laying a Foundation (IBrokerageFactory)
Stub out the implementation and initialize a brokerage instance.
2.Creating The Brokerage (IBrokerage)
Installing key brokerage application logic, where possible using a brokerage SDK.
3.Translating Symbol Conventions (ISymbolMapper)
Translate brokerage specific tickers to LEAN format for a uniform algorithm design experience.
4.Describe Broker Limitations (IBrokerageModel)
Describe brokerage support of orders and set transaction models.
5.Enable Live Data Streaming (IDataQueueHandler)
Live streaming data service from brokerage supplied source.
6.Enable Serving Historical Data (IHistoryProvider)
Tap into the brokerage historical data API to serve history for live algorithms.
7.Download Data (IDataDownloader)
Save data from the brokerage to disk in LEAN format.
8.Describe Brokerage Fee Structures (IFeeModel)
Enable accurate backtesting with specific fee structures of the brokerage.
9.Update Algorithm API for Easy Setup of Brokerage Models (ISecurityTransactionModel)
Combine the various models together to form a brokerage set.
+ +

The root of the brokerage system is the algorithm job packets. These hold configuration information about how to run LEAN. The program logic is a little convoluted; it moves from config.json > create job packet > create brokerage factory matching name > set job packet brokerage data > factory creates brokerage instance. Because of this we'll start creating a brokerage at the root -- the configuration and brokerage factory...

\ No newline at end of file diff --git a/03 Open Source/05 Brokerage Development Guide/03 Step 1%3A Laying a Foundation.html b/03 Open Source/05 Brokerage Development Guide/03 Step 1%3A Laying a Foundation.html new file mode 100644 index 0000000..45ce511 --- /dev/null +++ b/03 Open Source/05 Brokerage Development Guide/03 Step 1%3A Laying a Foundation.html @@ -0,0 +1,67 @@ + + + + + + + + + + +
IBrokerageFactory
Primary RoleCreate and initialize a brokerage instance.
InterfaceIBrokerageFactory.cs
ExampleGDAXBrokerageFactory.cs
Target LocationIn Brokerages Folder in Brokerages Solution
+ +

+The IBrokerageFactory creates brokerage instances with a Job Packet which configures LEAN. It contains the name of the selected brokerage to create, which is used to create the right BrokerageFactory type. The configuration live-mode-brokerage key is used to set the brokerage name. +

+ +

1.1 Create Authentication Configuration

+

+In the configuration file add a few key-values with your brokerage configuration information. This will be used for most local debugging and testing as the default. E.g. oanda-access-token and oanda-account-id. These will be copied to the job packet which contains a matching field BrokerageData. This is a dictionary of <string,string> pairs. +

+ +

1.2 Create Brokerage Data

+

+By default the IBrokerageFactory.BrokerageData implementation should load all required configuration from the config file using the Config class. E.g. Config.Get("oanda-access-token"). This can be a simple pass through to the config for most brokerages. +

+ +

1.3 Create Brokerage Model

+

+Brokerage Models tell LEAN what order types a brokerage supports, whether we're allowed to update an order, and what transaction models to use for fills. It is important to do but something we can come back to later. For now, we should just create a stub implementation which we'll extend and improve later. This file MyBrokerageBrokerageModel.cs lives in the /Common/Brokerages folder. For now, you can make it an empty implementation inheriting from the DefaultBrokerageModel. See this example of a partially implemented model here. Set your empty placeholder model to the BrokerageModel property. +

+ +

1.4 Create Brokerage Instance in Factory

+

+The Brokerage Factory uses a job packet to create an initialized brokerage instance. This happens in the CreateBrokerage() method. You should assume the job has the best source of data not the class BrokerageData property. The BrokerageData property on the factory are the starting default values sourced from config which can be overridden by a runtime job. +

+ +

+Given our IBrokerage implementation hasn't been started yet let's make a placeholder file for our brokerage with the methods stubbed out: MyBrokerage.cs in the MyBrokerage folder, in the Brokerages solution. All the methods should throw a new NotImplementedException() for now except for the constructor which should save any required authentication data to private variables. The CreateBrokerage() method should create a brokerage object but not connect to the brokerage. The connection is done later in the LEAN start-up process. +

+ +

1.5 Create Configuration Environment

+

+In the config file LEAN has helper environments which group configuration flags together and override the root configuration values. You should make a mybrokerage-live environment for your brokerage which specifies the brokerage type name for live-mode-brokerage. You should copy the paper-trading brokerage setup to start. You should set the environment value to your new brokerage environment for testing. +

+ +
+ Tip: +

In the IBrokerageFactory examples, you'll see code like this: Composer.Instance.AddPart<IDataQueueHandler>(dataQueueHandler), which is adding parts to the "Composer". The Composer is a system in LEAN for loading types dynamically. In this case, it is adding an instance of the DataQueueHandler for the brokerage to the composer. You can think of the composer as a library, and adding parts is like adding books to its collection. But we'll come back to this later...

+
+ + + + + + + + + + + + +
Stage 1: Checklist
Configuration keys and placeholder values for brokerage authentication requirements.
Created folder for brokerage in Brokerages solution; with MyBrokerageFactory.cs.
Implemented all interfaces of the BrokerageFactory (some with stub implementations).
Create a stub MyBrokerage.cs with Not Implemented exceptions.
Create a stub MyBrokerageBrokerageModel.cs inheriting from DefaultBrokerageModel.
Created a mybrokerage live configuration environment specifying your class.
Set the environment configuration to your new brokerage environment.
+ +
+ Action: +

Build the solution. Although running won't work the stub implementations should still build.

+
\ No newline at end of file diff --git a/03 Open Source/05 Brokerage Development Guide/04 Step 2%3A Creating the Brokerage.html b/03 Open Source/05 Brokerage Development Guide/04 Step 2%3A Creating the Brokerage.html new file mode 100644 index 0000000..7cda62c --- /dev/null +++ b/03 Open Source/05 Brokerage Development Guide/04 Step 2%3A Creating the Brokerage.html @@ -0,0 +1,204 @@ + + + + + + + + + + +
IBrokerage
Primary RoleBrokerage connection, orders and fill events.
InterfaceIBrokerage.cs
ExampleGDAXBrokerage.cs
Target LocationQuantConnect.Brokerages.sln
+ +

+The IBrokerage holds the bulk of the core logic responsible for running the brokerage implementation. Many smaller models described later use the Brokerage implementation internally so its best to start implementation of the IBrokerage now. Brokerage classes can get quite large so you should use a partial class modifier to break up the files in appropriate categories. It has many important roles vital for the stability of a running algorithm. These include: +

+
    +
  1. Maintain Connection - Connect and maintain connection while algorithm running.
  2. +
  3. Setup State - Initialize the algorithm portfolio, open orders and cashbook.
  4. +
  5. Order Operations - Create, update and cancel orders.
  6. +
  7. Order Events - Receive order fills and apply them to portfolio.
  8. +
  9. Account Events - Track non-order events (cash deposits/removals).
  10. +
  11. Brokerage Events - Interpret brokerage messages and act when required.
  12. +
  13. Serve History Requests - Provide historical data on request.
  14. +
+

+Often brokerages will have their own ticker styles, order class names, event names. Many of the methods in the brokerage implementation may simply be converting from the brokerage object format into LEAN format. You should plan accordingly to write neat code. +

+ +

+The brokerage will eventually implement 3 interfaces: +

class MyBrokerage : IBrokerage, IDataDownloader, IHistoryProvider { ... }
+

+ +

+Implementation Style. This guide will focus mostly on implementing the brokerage step by step in LEAN; as its a more natural workflow for most people. You can also follow a more test-driven-development process by following the test harness. To do this create a new test class which extends from the base class in /Tests/Brokerages/BrokerageTests.cs. This test-framework tests all the methods for an IBrokerage implementation. +

+ +

2.1 Brokerage Requirements

+

QuantConnect is best used with streaming or socket based brokerage connections. Streaming brokerage implementations allow for the easiest translation of broker events into LEAN events. Without streaming order-events you will need to poll for to check for fills. In our experience this is fraught with additional risks and challenges.

+ +

2.2 Installing a Library

+

+Most brokerages will provide a wrapper for their API. You should use this where possible as long as it has a permissive license. Although it is technically possible to embed an external github repository we've elected to not do this to make LEAN easier to install (submodules can be tricky for beginners). You should copy the library into its own subfolder of the brokerage implementation: /Brokerages/MyBrokerage/BrokerLib/*. +

+

+LEAN Open-Source. If you copy and paste code from an external source leave the comments and headers intact, and if they do not have a comment header be sure to add one to each file referencing the source. Let's keep the attributions in place. +

+ +
+ Tip: +

Libraries will need to be .NET Framework 4.6.2 compatible as LEAN is fully cross-platform via Mono.

+
+ +
+ Action: +

Build the project again to make sure the library is compiling successfully. Its good to make sure your library is integrated successfully before continuing.

+
+ +

2.4 IBrokerage Class Implementation

+
    +
  • + Base Class +

    Using a base class is optional but allows you to reuse event methods we have provided. The Brokerage object implements these event handlers and marks the remaining items as abstract.

    +

    LEAN provides an optional base class BaseWebsocketsBrokerage which seeks to connect and maintain a socket connection and pass messages to an event handler. As each socket connection is different consider carefully before using this class; it might be easier and more maintainable to simply maintain your own socket connection.

    + +
    + Tip: +

    Brush up on the partial class keyword. This will help you break-up your class later.

    +
    +
  • + +
  • + Class Constructor +

    Once the scaffolding brokerage methods are in place (overrides of the abstract base classes); you can focus on the class constructor. Here if you are using a brokerage SDK you can create a new instance of their library, and store it to a class variable for later use. You should make your constructor take all the arguments it needs. This is passed to you from code you implemented in the previous section, the IBrokerageFactory.

    + + + + + + + + +
    Class Constructor Examples
    Interactive BrokersLaunching external process to create brokerage.
    FXCMSimple example; saving class variables and setting defaults.
    OANDACreating SDK instance and assigning internal event handlers.
    GDAXOffload constructor work to BrokerageFactory and use BaseWebsocketBrokerage base class.
    +
  • + +
  • + string Name +

    The Name property is a human readable brokerage name for debugging and logging. For US Equity regulated brokerages convention states this name generally ends in the word "Brokerage".

    +
  • + +
  • + void Connect() +

    The Connect method triggers logic for establishing a link to your brokerage. Normally we do not do this in the constructor as it would make algorithms and brokerages die in the BrokerageFactory process. For most brokerages this will be simply calling the connect method on your SDK library.

    + + + + + + + + + +
    Connection Method Examples
    Interactive BrokersConnecting to external process with brokerage SDK.
    FXCMUsing SDK to create event handlers and connection thread.
    OANDASimple example, calling SDK.
    GDAXEstablish websocket connection and monitoring in a thread.
    + +

    Exceptions

    +

    +In the event of a soft failure like internet connection lost, or server 502 errors you should create a new BrokerageMessageEvent. By doing this you allow the algorithm to handle the brokerage messages. For example: Interactive Brokers resets socket connections at different times globally, so users in other parts of the world can get disconnected at strange times of the day. Knowing this, they may elect to have their algorithm ignore specific disconnection attempts. +

    +

    +In the event of a hard-failure such as the password being incorrect or an unsupported API method you should throw a real exception with details of the error. You can see examples of using both of these techniques in the FXCM Connect method. +

    +
  • + +
  • + void Disconnect() +

    Disconnect is called at the end of the algorithm before shutting down LEAN.

    +
  • + +
  • + bool IsConnected +

    A boolean property to indicate the state of the brokerage connection. Depending on your connection style this may be automatically handled for you and simply require passing back the value from your SDK. Alternatively you may need to maintain your own connection state flag in your brokerage.

    +
  • + +
  • + bool PlaceOrder(Order order) +

    +Send a new LEAN order to the brokerage and report back the success or failure. The PlaceOrder method accepts a generic Order object which is the base class for all order types. The first step of placing an order is often to convert it from LEAN format into the Brokerage SDK required format. Brokerage implementations should aim to support as many LEAN order types as possible. There may be other order types in the brokerage but implementing them is considered out of scope of a rev-0 brokerage implementation. +

    +

    +Once the order type is converted you should send it to your brokerage submit API. Often you will receive an immediate reply indicating the order was successfully placed. +

    +

    +Part of the order conversion might be converting the brokerage ticker (e.g. LEAN name "EURUSD", OANDA name is "EUR/USD"). This is done with a BrokerageSymbolMapper class. We'll get to that in Step 3, for now you can pass a request for the brokerage ticker to the stub implementation. +

    +

    +The PlaceOrder() method returns true when the order is accepted to the brokerage. If it is invalid, immediately rejected or there is an internet outage you can return false. +

    + +
    + Tip: +

    Create an internal method: BrokerOrder ConvertOrder(Order order) for conversion to brokerage orders. You will use this over and over again. Converting order types is an error prone process and its recommended to carefully review each order after you've completed a port. Remember to check each required brokerage order property, brokers like InteractiveBrokers have hundreds of properties.

    +
    + +
    + Tip: +

    Use the IsConnected boolean to check if you're connected before placing the order. If not throw an exception to halt the algorithm.

    +
    +
  • + +
  • + bool UpdateOrder(Order order) +

    Transmit an update request to the API and return true if it was successfully processed. There are no simple examples here! Updating an order is one of the most tricky part of the brokerage implementations. You can easily run into synchronization issues.

    + + + + + + + + +
    Update Order Examples
    Interactive BrokersExternal application, updating multiple asset classes.
    FXCMRelatively simple example via async brokerage callback.
    OANDA v1, v2Complex example with 2 async APIs, multiple parameters.
    GDAXUpdating isn't supported; throw an exception.
    +
  • + +
  • + bool CancelOrder(Order order) +

    +
  • + +
  • + bool UpdateOrder(Order order) +

    +
  • + +
  • + List<Order> GetOpenOrders() +

    +
  • + +
  • + List<Holding> GetAccountHoldings() +

    +
  • + +
  • + List<Cash> GetCashBalance() +

    +
  • + +
  • + bool AccountInstantlyUpdated +

    +
  • + +
  • + IEnumerable<BaseData> GetHistory(HistoryRequest request) +

    +
  • + +
  • + bool AccountInstantlyUpdated +

    +
  • + +
diff --git a/Tutorial Series/Introduction to Financial Python/images/placeholder.txt b/03 Open Source/05 Brokerage Development Guide/05 Step 3%3A Translating Symbol Conventions.html similarity index 100% rename from Tutorial Series/Introduction to Financial Python/images/placeholder.txt rename to 03 Open Source/05 Brokerage Development Guide/05 Step 3%3A Translating Symbol Conventions.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial01 Structure and Construction of Neural Networks.html b/03 Open Source/05 Brokerage Development Guide/06 Step 4%3A Describe Brokerage Limitations.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial01 Structure and Construction of Neural Networks.html rename to 03 Open Source/05 Brokerage Development Guide/06 Step 4%3A Describe Brokerage Limitations.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial02 Kernel Function and Construction of Support Vector Machines.html b/03 Open Source/05 Brokerage Development Guide/07 Step 5%3A Enable Live Data Streaming.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial02 Kernel Function and Construction of Support Vector Machines.html rename to 03 Open Source/05 Brokerage Development Guide/07 Step 5%3A Enable Live Data Streaming.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial03 Bayes' Theorem and Classification of Market Signals by Naive Bayes.html b/03 Open Source/05 Brokerage Development Guide/08 Step 6%3A Enable Serving Historical Data.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial03 Bayes' Theorem and Classification of Market Signals by Naive Bayes.html rename to 03 Open Source/05 Brokerage Development Guide/08 Step 6%3A Enable Serving Historical Data.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial04 Using Entropy and Information Gain to Construct ID3 Decision Tree.html b/03 Open Source/05 Brokerage Development Guide/09 Step 7%3A Downloading Data.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial04 Using Entropy and Information Gain to Construct ID3 Decision Tree.html rename to 03 Open Source/05 Brokerage Development Guide/09 Step 7%3A Downloading Data.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial05 Random Subtrees and Class Prediction with Random Forest.html b/03 Open Source/05 Brokerage Development Guide/10 Step 8%3A Brokerage Fee Structures.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial05 Random Subtrees and Class Prediction with Random Forest.html rename to 03 Open Source/05 Brokerage Development Guide/10 Step 8%3A Brokerage Fee Structures.html diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial06 Boosting Ensemble and Making Predictions with AdaBoost.html b/03 Open Source/05 Brokerage Development Guide/11 Step 9%3A Updating Algorithm API.html similarity index 100% rename from Tutorial Series/Introduction to Machine Learning/Tutorial06 Boosting Ensemble and Making Predictions with AdaBoost.html rename to 03 Open Source/05 Brokerage Development Guide/11 Step 9%3A Updating Algorithm API.html diff --git a/03 Open Source/06 Generating Random Backtest Data/00.html b/03 Open Source/06 Generating Random Backtest Data/00.html new file mode 100644 index 0000000..fb95fe4 --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/00.html @@ -0,0 +1 @@ + diff --git a/03 Open Source/06 Generating Random Backtest Data/01 Introduction.html b/03 Open Source/06 Generating Random Backtest Data/01 Introduction.html new file mode 100644 index 0000000..51fc885 --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/01 Introduction.html @@ -0,0 +1,2 @@ +

Real market data is often expensive and governed by difficult redistribution licenses. QuantConnect wanted to give the LEAN users a way to design and test their algorithms, without needing to download and buy real financial data. The RandomDataGenerator seeks to address that by randomly generating data in the LEAN format, for the various asset types we support.

+ diff --git a/03 Open Source/06 Generating Random Backtest Data/02 Using the Random Data Generator.html b/03 Open Source/06 Generating Random Backtest Data/02 Using the Random Data Generator.html new file mode 100644 index 0000000..c86faaf --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/02 Using the Random Data Generator.html @@ -0,0 +1,28 @@ +

The LEAN Random Data Generator is located in the LEAN ToolBox and can be accessed by executing the QuantConnect.ToolBox.exe CLI program.

+

We recommend cloning LEAN and building from the source code directly from Github. However, if this is not possible for you we have made a snapshot of the build available for your convenience here:
2019-01-19-QuantConnect.ToolBox.Binaries.zip +

+ +

To run the ToolBox open a command window and execute it from the command line. To execute it you will need C# or Mono installed:

+ +

Windows:

+
 .\QuantConnect.ToolBox.exe --app=randomdatagenerator
+ +

Linux and Mac:

+
mono QuantConnect.ToolBox.exe --app=randomdatagenerator
+ +

Complete Example:

+
+QuantConnect.ToolBox.exe 
+    --app=randomdatagenerator 
+    --resolution=Minute 
+    --from-date=2018-01-01 
+    --to-date=2019-01-01 
+    --market=usa 
+    --data-density=Dense 
+    --include-coarse=true 
+    --symbol-count=100 
+
+ +

+The Random Data Generator has many parameters you can configure to generate the various datasets LEAN supports. Please see the next section for documentation on these parameters. +

\ No newline at end of file diff --git a/03 Open Source/06 Generating Random Backtest Data/03 Command Parameters.html b/03 Open Source/06 Generating Random Backtest Data/03 Command Parameters.html new file mode 100644 index 0000000..9580486 --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/03 Command Parameters.html @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Random Data Generator Parameters
security-type +

+ Security type to generate.
+ Possible Values: Equity, Crypto, Forex, Cfd, Option, Future
+ Default: Equity +

+ Example: --security-type=Equity +
resolution +

+ Resolution of data to store.
+ Possible Values: Tick, Second, Minute, Hour, Daily
+ Default: Minute +

+ Example: --resolution=Minute +
from-date +

+ Start date for the data to generate: format yyyy-mm-dd.
+

+ Example: --from-date=2018-01-01 +
to-date +

+ Final date of the generated data: format yyyy-mm-dd.
+

+ Example: --to-date=2019-01-01 +
Symbol Count +

+ Number of tickers to generate
+

+ Example: --symbol-count=100 +
data-density +

+ Tick density of the data generated to model low volume data.
+ Possible Values: Dense, Sparse, VerySparse
+ Default: Dense +

+ Example: --density=Dense +
include-coarse +

+ Generate the coarse universe data when generating Equity data.
+ Default: true +

+ Example: --include-coarse=true +
\ No newline at end of file diff --git a/03 Open Source/06 Generating Random Backtest Data/04 Supported Assets and Resolutions.html b/03 Open Source/06 Generating Random Backtest Data/04 Supported Assets and Resolutions.html new file mode 100644 index 0000000..7892a03 --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/04 Supported Assets and Resolutions.html @@ -0,0 +1,27 @@ +

The Random Data Generator currently supports the following asset types and resolutions:

+ + + + + + + + + + + + + + + + + + + + + + + +
Supported Data Types and Resolutions
Equity
Trade Only
Resolutions Tick, Second, Minute, Hour and Daily

All Equity data resolutions are supported.

Forex, CFD
Quotes Only
+ Resolutions Tick, Second, Minute, Hour and Daily +

Forex and CFD generator supports quote (spread) data in all resolutions.

Futures, Crypto
Trades and Quotes
Resolutions Tick, Second, Minute, Hour and Daily

All Futures and crypto data types and resolutions are supported

Options
Trades and Quotes
Resolution Minute

Options are partially supported. Currently option random data is generated independent of a random underlying asset making its usefulness limited. This will be fixed by Github Issue #2839.

diff --git a/03 Open Source/06 Generating Random Backtest Data/05 Final Notes.html b/03 Open Source/06 Generating Random Backtest Data/05 Final Notes.html new file mode 100644 index 0000000..b44db0c --- /dev/null +++ b/03 Open Source/06 Generating Random Backtest Data/05 Final Notes.html @@ -0,0 +1,10 @@ +

+The Random Data Generator uses Brownian motion to generate the data prices. You can see how these prices and ticker strings +are generated in the +RandomValueGenerator class. +

+ +

+If you'd like to use a different system for providing the randomness you can implement your own IRandomValueGenerator or +extend the RandomValueGenerator class. +

diff --git a/04 Strategy Library/00 Strategy Library/01 Strategy Library.php b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php new file mode 100644 index 0000000..9fc944f --- /dev/null +++ b/04 Strategy Library/00 Strategy Library/01 Strategy Library.php @@ -0,0 +1,866 @@ + 'CAPM Alpha Ranking Strategy on Dow 30 Companies', + 'link' => 'strategy-library/capm-alpha-ranking-strategy-on-dow-30-companies', + 'description' => 'Applies CAPM model to rank Dow Jones 30 companies.', + 'tags'=>'Intermediate,Momentum,Equities' + ], + [ + 'name' => 'Combining Mean Reversion and Momentum in Forex Market', + 'link' => 'strategy-library/combining-mean-reversion-and-momentum-in-forex-market', + 'description' => 'Combines momentum and mean reversion techniques in the forex markets.', + 'tags'=>'Intermediate,Mean Reversion,Momentum,Forex' + ], + [ + 'name' => 'Pairs Trading-Copula vs Cointegration', + 'link' => 'strategy-library/pairs-trading-copula-vs-cointegration', + 'description' => 'Applies Copula and Cointergration method to pairs trading.', + 'tags'=>'Expert,Pairs Trading,ETFs' + ], + [ + 'name' => 'The Dynamic Breakout II Strategy', + 'link' => 'strategy-library/the-dynamic-breakout-ii-strategy', + 'description' => 'A demonstration of dynamic breakout II strategy.', + 'tags'=>'Intermediate,Breakout,Forex' + ], + [ + 'name' => 'Dual Thrust Trading Algorithm', + 'link' => 'strategy-library/dual-thrust-trading-algorithm', + 'description' => 'A demontration of Dual Thrust Intraday strategy.', + 'tags'=>'Intermediate,Breakout,Equities' + ], + [ + 'name' => 'Can Crude Oil Predict Equity Returns', + 'link' => 'strategy-library/can-crude-oil-predict-equity-returns', + 'description' => 'Applies regression method to predict the return from the stock market and compare it to the short-term U.S. T-bill rate.', + 'tags'=>'Intermediate,Momentum,ETFs' + ], + [ + 'name' => 'Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach', + 'link' => 'strategy-library/intraday-dynamic-pairs-trading-using-correlation-and-cointegration-approach', + 'description' => 'A high frequency pairs trading algorithm based on cointegration.', + 'tags'=>'Expert,Pairs Trading,Equities' + ], + [ + 'name' => 'The Momentum Strategy Based on the Low Frequency Component of Forex Market', + 'link' => 'strategy-library/the-momentum-strategy-based-on-the-low-frequency-Component-of-forex-market', + 'description' => 'Applies high frequency filter to the momentum strategy.', + 'tags'=>'Intermediate,Momentum,Forex' + ], + [ + 'name' => 'Stock Selection Strategy Based on Fundamental Factors', + 'link' => 'strategy-library/stock-selection-strategy-based-on-fundamental-factors', + 'description' => 'MorningStar Fundamental factors universe selection algorithm.', + 'tags'=>'Intermediate,Fundamental Factors,Equities' + ], + [ + 'name' => 'Short-Term Reversal Strategy in Stocks', + 'link' => 'strategy-library/short-term-reversal-strategy-in-stocks', + 'description' => 'A short term reversal algorithm which gives the opposite signal by analyzing recent period price action.', + 'tags'=>'Intermediate,Long Short,Mean Reversion,Equities' + ], + [ + 'name' => 'Fundamental Factor Long Short Strategy', + 'link' => 'strategy-library/fundamental-factor-long-short-strategy', + 'description' => 'A basic monthly rebalance long short algorithm based on fundamental factors.', + 'tags'=>'Intermediate,Fundamental Factors,Long Short,Equities' + ], + [ + 'name' => 'Asset Class Trend Following', + 'link' => 'strategy-library/asset-class-trend-following', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/1' + ], + 'description' => 'Selects ETFs over ten-month moving average and assigns an equally weighted allocation.', + 'tags'=>'Beginner,Momentum,ETFs' + ], + [ + 'name' => 'Asset Class Momentum', + 'link' => 'strategy-library/asset-class-momentum', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/2' + ], + 'description' => 'Selects ETFs in different asset classes with the highest momentum and assigns an equally weighted allocation.', + 'tags'=>'Beginner,Momentum,ETFs' + + ], + [ + 'name' => 'Residual Momentum', + 'link' => 'strategy-library/residual-momentum', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/136' + ], + 'description' => 'Constructs a long/short portfolio based on trailing residual momentum normalized by its standard deviation', + 'tags'=>'Intermediate,Equities,Momentum' + + ], + [ + 'name' => 'Sector Momentum', + 'link' => 'strategy-library/sector-momentum', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/3' + ], + 'description' => 'Selects ETFs in different sectors with the highest momentum and assigns an equally weighted allocation.', + 'tags'=>'Beginner,Momentum,ETFs' + ], + [ + 'name' => 'Overnight Anomaly', + 'link' => 'strategy-library/overnight-anomaly', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/4' + ], + 'description' => 'Buy SPY ETF at its closing price and sell it at the opening each day.', + 'tags'=>'Beginner,ETFs' + ], + [ + 'name' => 'Forex Carry Trade', + 'link' => 'strategy-library/forex-carry-trade', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/5' + ], + 'description' => 'Goes long the currency with the highest central bank interest rate and goes short the currency with the lowest interest rate.', + 'tags'=>'Beginner,Long Short,Forex' + ], + [ + 'name' => 'Volatility Effect in Stocks', + 'link' => 'strategy-library/volatility-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/7' + ], + 'description' => 'Constructs equally weighted portfolios by selecting stocks with the lowest volatility in the past one year.', + 'tags'=>'Intermediate,Equities' + ], + [ + 'name' => 'Forex Momentum', + 'link' => 'strategy-library/forex-momentum', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/8' + ], + 'description' => 'Goes long currencies with strongest 12 month momentum against USD and goes short currencies with the lowest 12 month momentum against USD.', + 'tags'=>'Beginner,Momentum,Forex' + ], + [ + 'name' => 'Pairs Trading with Stocks', + 'link' => 'strategy-library/pairs-trading-with-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/12' + ], + 'description' => 'Looks for the security that minimizes the sum of squared deviations and long-short position is opened when pair prices have diverged by multiple of standard deviations.', + 'tags'=>'Expert,Pairs Trading,Mean Reversion,Equities' + ], + [ + 'name' => 'Short Term Reversal', + 'link' => 'strategy-library/short-term-reversal', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/13' + ], + 'description' => 'Goes long stocks with the lowest return in the previous month and goes short stocks with the greatest return from the previous month.', + 'tags'=>'Intermediate,Long Short,Mean Reversion,Equities' + ], + [ + 'name' => 'Momentum Effect in Stocks', + 'link' => 'strategy-library/momentum-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/14' + ], + 'description' => 'Goes long stocks with the best 12-month momentum in the large-cap universe.', + 'tags'=>'Beginner,Momentum,Equities' + ], + [ + 'name' => 'Momentum Effect in Country Equity Indexes', + 'link' => 'strategy-library/momentum-effect-in-country-equity-indexes', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/15' + ], + 'description' => 'Goes long stocks with the best 12-month momentum in the country equity indexes ETFs.', + 'tags'=>'Beginner,Momentum,ETFs' + ], + [ + 'name' => 'Mean Reversion Effect in Country Equity Indexes', + 'link' => 'strategy-library/mean-reversion-effect-in-country-equity-indexes', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/16' + ], + 'description' => 'Goes long country equity indexes ETFs with the worst 36-month return and short ETFs with the best 36-month return.', + 'tags'=>'Beginner,Long Short,Mean Reversion,ETFs' + + ], + [ + 'name' => 'Liquidity Effect in Stocks', + 'link' => 'strategy-library/liquidity-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/18' + ], + 'description' => 'Goes long stocks with the lowest turnover and short on stocks with the highest turnover from the lowest market-cap quartile.', + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Volatility Risk Premium Effect', + 'link' => 'strategy-library/volatility-risk-premium-effect', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/20' + ], + 'description' => 'Sells at-the-money straddle with one month until maturity and buys an offsetting 15% out-of-the-money puts each month.', + 'tags'=>'Expert,Short Volatility,Options' + ], + [ + 'name' => 'Momentum Effect in Commodities Futures', + 'link' => 'strategy-library/momentum-effect-in-commodities-futures', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/21' + ], + 'description' => 'Goes long commodity futures with the highest momentum and short on futures with the lowest momentum.', + 'tags'=>'Intermediate,Long Short,Futures' + ], + [ + 'name' => 'Small Capitalization Stocks Premium Anomaly', + 'link' => 'strategy-library/small-capitalization-stocks-premium-anomaly', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/25' + ], + 'tags'=>'Intermediate,Fundamental Factors,Equities', + 'description' => 'Goes long stocks with the lowest market capitalization and rebalances the portfolio once a year.' + ], + [ + 'name' => 'Paired Switching', + 'link' => 'strategy-library/paired-switching', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/44' + ], + 'description' => 'Goes long asset with better performance over the last period and rebalances portfolio every quarter.', + 'tags'=>'Intermediate,Pairs Trading,Equities' + ], + [ + 'name' => 'Term Structure Effect in Commodities', + 'link' => 'strategy-library/term-structure-effect-in-commodities', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/22' + ], + 'description' => 'Buys each month the 20% of commodities with the highest roll-returns and shorts the 20% of commodities with the lowest roll-returns and holds the long-short positions for one month.', + 'tags'=>'Expert,Long Short,Futures' + ], + [ + 'name' => 'Momentum Effect Combined with Term Structure in Commodities', + 'link' => 'strategy-library/momentum-effect-combined-with-term-structure-in-commodities', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/23' + ], + 'description' => 'Portfolios are formed based on roll returns and the algorithm goes long and short contracts with the highest and lowest one-month performance.', + 'tags'=>'Expert,Long Short,Futures' + ], + [ + 'name' => 'Book-to-Market Value Anomaly', + 'link' => 'strategy-library/book-to-market-value-anomaly', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/26' + ], + 'description' => 'Quintile portfolios are formed based on the Book-to-Market ratio and the highest quintile is held for one year.', + 'tags'=>'Intermediate,Fundamental Factors,Equities' + ], + [ + 'name' => 'Gold Market Timing', + 'link' => 'strategy-library/gold-market-timing', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/43' + ], + 'description' => 'Goes long gold when the Fed model shows that the market is undervalued (the earnings yield is higher than the bond yield and their ratio is at least 2).', + 'tags'=>'Intermediate,Mean Reversion,ETFs' + ], + [ + 'name' => 'Turn of the Month in Equity Indexes', + 'link' => 'strategy-library/turn-of-the-month-in-equity-indexes', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/41' + ], + 'description' => 'Buys SPY the day before the end of the month and liquidates position on 3rd trading day of new month.', + 'tags'=>'Beginner,ETFs' + ], + [ + 'name' => 'Momentum - Short Term Reversal Strategy', + 'link' => 'strategy-library/momentum-short-term-reversal-strategy', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/51' + ], + 'description' => 'Goes long stocks with the decreasing return from the winner group and short stocks with the increasing return from the loser group.', + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Pairs Trading with Country ETFs', + 'link' => 'strategy-library/pairs-trading-with-country-etfs', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/55' + ], + 'description' => 'Identifies the price divergence from two highly correlated country ETFs and takes a market neutral position.', + 'tags'=>'Expert,Pairs Trading,ETFs' + ], + [ + 'name' => 'Sentiment and Style Rotation Effect in Stocks', + 'link' => 'strategy-library/sentiment-and-style-rotation-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/53' + ], + 'description' => 'Creates long-short positions of growth and value stocks based on the investment sentiment.', + 'tags'=>'Expert,Long Short,Fundamental Factors,Equities' + ], + [ + 'name' => 'Asset Growth Effect', + 'link' => 'strategy-library/asset-growth-effect', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/52' + ], + 'description' => 'Creates long-short positions of stocks based on the annual change of their total assets.', + 'tags'=>'Intermediate,Long Short, Fundamental Factors,Equities' + ], + [ + 'name' => 'Momentum and State of Market Filters', + 'link' => 'strategy-library/momentum-and-state-of-market-filters', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/54' + ], + 'description' => 'Goes long and short stocks with the highest and lowest six-month momentum respectively if the previous 12 months return on the broad market index was positive.', + 'tags'=>'Intermediate,Long Short,Momentum,Equities' + ], + [ + 'name' => 'Accrual Anomaly', + 'link' => 'strategy-library/accrual-anomaly', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/38' + ], + 'description' => 'Decile portfolios are formed based on balance sheet based accruals and highest decile is shorted while lowest decile is bought for a year.', + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Momentum in Mutual Fund Returns', + 'link' => 'strategy-library/momentum-in-mutual-fund-returns', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/85' + ], + 'description' => 'Forms a long-short portfolio of asset management firms based on trailing rate of change and nearness to trailing high.', + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Momentum and Style Rotation Effect', + 'link' => 'strategy-library/momentum-and-style-rotation-effect', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/91' + ], + 'description' => 'Goes long style index ETF with the highest 12-month momentum and short ETF with the lowest 12-month momentum.', + 'tags'=>'Beginner,Long Short,ETFs' + ], + [ + 'name' => 'Trading with WTI BRENT Spread', + 'link' => 'strategy-library/trading-with-wti-brent-spread', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/100' + ], + 'description' => 'Goes long the spread if the spread is below 20-day moving average and short if the spread is above 20-day moving average.', + 'tags'=>'Intermediate,Mean Reversion,Commodities' + ], + [ + 'name' => 'Momentum Effect in REITs', + 'link' => 'strategy-library/momentum-effect-in-reits', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/152' + ], + 'description' => 'Tercile portfolios are formed based on momentum and the best performing portfolio is held.', + 'tags'=>'Intermediate,Momentum,ETFs' + ], + [ + 'name' => 'Option Expiration Week Effect', + 'link' => 'strategy-library/option-expiration-week-effect', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/102' + ], + 'description' => 'Goes long S&P 100 index ETF during option expiration week and stays in cash during other days.', + 'tags'=>'Intermediate,Options' + ], + [ + 'name' => 'Earnings Quality Factor', + 'link' => 'strategy-library/earnings-quality-factor', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/229' + ], + 'description' => 'Goes long stocks with high earnings quality and short stocks with low earnings quality based on composite factor score.', + 'tags'=>'Intermediate,Long Short,Fundamental Factors,Equities' + ], + [ + 'name' => 'January Effect in Stocks', + 'link' => 'strategy-library/january-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/114' + ], + 'description' => 'Invests into small cap stocks at the beginning of each January and stays invested in large cap stocks for rest of the year.', + 'tags'=>'Intermediate,Equities' + ], + [ + 'name' => 'Momentum and Reversal Combined with Volatility Effect in Stocks', + 'link' => 'strategy-library/momentum-and-reversal-combined-with-volatility-effect-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/155' + ], + 'description' => 'Goes long on stocks from the highest performing quintile from the highest volatility group and short on stocks from the lowest performing quintile from the highest volatility group.', + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'ROA Effect within Stocks', + 'link' => 'strategy-library/roa-effect-within-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/199' + ], + 'description' => 'Goes long on stocks with highest ROA and short stocks with the lowest ROA from each market capitalization group.', + 'tags'=>'Intermediate,Long Short,Fundamental Factors,Equities' + ], + [ + 'name' => 'January Barometer', + 'link' => 'strategy-library/january-barometer', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/113' + ], + 'description' => "Invested in equity market with ETF only if January return is positive otherwise switch investments to T-Bills.", + 'tags'=>'Beginner,Equities' + ], + [ + 'name' => 'Lunar Cycle in Equity Market', + 'link' => 'strategy-library/lunar-cycle-in-equity-market', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/61' + ], + 'description' => "Goes long in emerging market index ETF 7 days before the new moon and switch to a short position on emerging market index ETF 7 days before the full moon.", + 'tags'=>'Intermediate,ETFs' + ], + [ + 'name' => 'VIX Predicts Stock Index Returns', + 'link' => 'strategy-library/vix-predicts-stock-index-returns', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/58' + ], + 'description' => "Goes long on equity index ETF if the VIX is in the highest percentile short if VIX is in the lowest percentile in the last two-year history.", + 'tags'=>'Beginner,Equities' + ], + [ + 'name' => 'Combining Momentum Effect with Volume', + 'link' => 'strategy-library/combining-momentum-effect-with-volume', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/66' + ], + 'description' => "Goes long stocks with the highest volume from the top momentum decile and short stocks with the highest volume from the bottom momentum decile.", + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Short Term Reversal with Futures', + 'link' => 'strategy-library/short-term-reversal-with-futures', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/71' + ], + 'description' => "Goes long (short) on futures from the high-volume, low-open interest group with the lowest (greatest) returns in the previous week.", + 'tags'=>'Intermediate,Long Short,Futures' + ], + [ + 'name' => 'Pre-holiday Effect', + 'link' => 'strategy-library/pre-holiday-effect', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/83' + ], + 'description' => "Invests in equity market 2 days preceding holiday days and stays in cash during the other trading days.", + 'tags'=>'Beginner,Equities' + ], + [ + 'name' => 'Beta Factors in Stocks', + 'link' => 'strategy-library/beta-factors-in-stocks', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/77' + ], + 'description' => "Goes long stocks with the bottom beta and short stocks with the top beta, securities are weighted by the ranked betas.", + 'tags'=>'Intermediate,Long Short,Equities' + ], + [ + 'name' => 'Exploiting Term Structure of VIX Futures', + 'link' => 'strategy-library/exploiting-term-structure-of-vix-futures', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/198' + ], + 'description' => "Buys or sells the nearest VIX futures based on the daily roll and hedge against the open positions with E-mini S&P500 futures.", + 'tags'=>'Expert,Futures' + ], + [ + 'name' => '12 Month Cycle in Cross-Section of Stocks Returns', + 'link' => 'strategy-library/12-month-cycle-in-cross-section-of-stocks-returns', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/125' + ], + 'description' => "Reviews the returns from last January, going long on the top 10% winners and short the bottom 10%.", + 'tags'=>'Intermediate,Long Short,Momentum Equities' + ], + [ + 'name' => 'Momentum Effect in Stocks in Small Portfolios', + 'link' => 'strategy-library/momentum-effect-in-stocks-in-small-portfolios', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/162' + ], + 'description' => "Goes long in the 10 stocks with the highest performance and goes short in the 10 stocks with the lowest performance in the previous one year.", + 'tags'=>'Intermediate, Momentum,Equities' + ], + [ + 'name' => 'Value Effect within Countries', + 'link' => 'strategy-library/value-effect-within-countries', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/207' + ], + 'description' => "Invests in the cheapest 33% of country ETFs according to CAPE ratios.", + 'tags'=>'Intermediate,Fundamental Factors,ETFs' + ], + [ + 'name' => 'Beta Factor in Country Equity Indexes', + 'link' => 'strategy-library/beta-factor-in-country-equity-indexes', + 'sources' => [ + 'Quantpedia' => 'https://www.quantpedia.com/Screener/Details/78' + ], + 'description' => "Goes long on the low-beta portfolio and short on the high-beta portfolio in country indexes ETFs.", + 'tags'=>'Intermediate,Long Short,ETFs' + ], + [ + 'name' => 'Price to Earnings Anomaly', + 'link' => 'strategy-library/price-earnings-anomaly', + 'description' => "Invests in stocks with low P/E ratio.", + 'tags'=>'Beginner,Fundamental Factors,Equities' + ], + [ + 'name' => 'Fama French Five Factors', + 'link' => 'strategy-library/fama-french-five-factors', + 'sources' => [ + 'NYU' => 'https://www.sciencedirect.com/science/article/pii/S0304405X14002323' + ], + 'description' => "Stock selecting strategy based on Fama-French Five Factors Model.", + 'tags'=>'Long Short,Fundamental Factors,Equities' + ], + [ + 'name' => 'Mean-Reversion Statistical Arbitrage Strategy in Stocks', + 'link' => 'strategy-library/mean-reversion-statistical-arbitrage-strategy-in-stocks', + 'sources' => [ + 'NYU' => 'https://www.math.nyu.edu/faculty/avellane/AvellanedaLeeStatArb071108.pdf' + ], + 'description' => "Apply statistical arbitrage to take advantage of pricing inefficiencies in stocks.", + 'tags'=>'PCA,Mean Reversion,Stocks,Arbitrage' + ], + [ + 'name' => 'Expected Idiosyncratic Skewness', + 'link' => 'strategy-library/expected-idiosyncratic-skewness', + 'sources' => [ + 'NYU' => 'http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.825.592&rep=rep1&type=pdf' + ], + 'description' => "Stock selection strategy that calculates expected idiosyncratic skewness using Fama-French three-factor model, sorts stocks based on the calculated skewness, and longs the bottom 5%.", + 'tags' => 'Equities, Skewness, Fundamental Factors, Statistical Arbitrage' + ], + [ + 'name' => 'Risk Premia in Forex Markets', + 'link' => 'strategy-library/risk-premia-in-forex-markets', + 'sources' => [ + 'NYU' => 'https://arxiv.org/pdf/1409.7720.pdf' + ], + 'description' => "A strategy based on asymmetric tail risks and excess returns in forex markets.", + 'tags'=>'Forex,Skewness,Risk Premium' + + ], + [ + 'name' => 'Seasonality Effect based on Same-Calendar Month Returns', + 'link' => 'strategy-library/seasonality-effect-based-on-same-calendar-month-returns', + 'sources' => [ + 'NYU' => 'https://www.nber.org/papers/w20815.pdf' + ], + 'description' => "A strategy that takes long and short positions based on historical same-calendar month returns", + 'tags'=>'Seasonality,Stocks,Universe Selection' + + ], + [ + 'name' => 'Standardized Unexpected Earnings', + 'link' => 'strategy-library/standardized-unexpected-earnings', + 'sources' => [ + 'NYU' => 'https://www.jstor.org/stable/pdf/247321.pdf' + ], + 'description' => "Stock selection strategy that calculates the unexpected earnings, standardizes the unexpected earnings, goes long on the top 5%, and rebalances the portfolio monthly.", + 'tags' => 'Equities, Fundamental Factors, Earnings, Anomaly' + ], + [ + 'name' => 'Price and Earnings Momentum', + 'link' => 'strategy-library/price-and-earnings-momentum', + 'sources' => [ + 'NYU' => 'http://papers.ssrn.com/sol3/papers.cfm?abstract_id=299107' + ], + 'description' => "A momentum strategy based on quarterly returns and earnings growth", + 'tags'=>'Momentum, Stocks, Universe Selection, Historical Data, Rolling Window' + + ], + [ + 'name' => 'Improved Momentum Strategy on Commodities Futures', + 'link' => 'strategy-library/improved-momentum-strategy-on-commodities-futures', + 'sources' => [ + 'NYU' => 'https://pdfs.semanticscholar.org/a2e9/df201d4b4774fda84a961cc804f2450988c5.pdf' + ], + 'description' => "An advanced momentum strategy that modifies the basic momentum strategies by introducing Baltas and Kosowski weights and rebalances the portfolio monthly. The new weighing scheme incorporates trend strength into the trading signal, uses an efficient volatility estimator, and adds a dynamic leverage mechanism.", + 'tags' => 'Momentum, Futures, Commodities' + ], + [ + 'name' => 'Commodities Futures Trend Following', + 'link' => 'strategy-library/commodities-futures-trend-following', + 'sources' => [ + 'NYU' => 'https://arxiv.org/pdf/1404.3274.pdf' + ], + 'description' => "A simple trend following strategy on commodities futures.", + 'tags' => 'Momentum, Futures, Commodities' + ], + [ + 'name' => 'Forecasting Stock Prices using a Temporal CNN Model', + 'link' => 'strategy-library/forecasting-stock-prices-using-a-temporal-cnn-model', + 'sources' => [ + 'Tampere University' => 'https://arxiv.org/pdf/1901.08280.pdf' + ], + 'description' => "Applying a Temporal Convolutional Neural Network to forecasting future stock prices.", + 'tags' => 'Convolutional Neural Network, Equities, Forecasting, Deep Learning' + ], + [ + 'name' => 'Leveraged ETFs with Systematic Risk Management', + 'link' => 'strategy-library/leveraged-etfs-with-systematic-risk-management', + 'sources' => [ + 'The Lead-Lag Report' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2741701' + ], + 'description' => 'We apply Simple Moving Averages to manage the risk of holding leveraged ETFs in an attempt to beat the S&P500', + 'tags' => 'Simple Moving Average, Risk Management, S&P500, ETF' + ], + [ + 'name' => 'Leveraged ETFs with Systematic Risk Management', + 'link' => 'leveraged-etfs-with-systematic-risk-management', + 'sources' => [ + 'The Lead-Lag Report' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2741701' + ], + 'description' => 'We apply Simple Moving Averages to manage risk in holding leveraged ETFs in an attempt to by the S&P500', + 'tags' => 'Simple Moving Average, Risk Management, S&P500, ETF' + ], + [ + 'name' => 'Ichimoku Clouds in the Energy Sector', + 'link' => 'strategy-library/ichimoku-clouds-in-the-energy-sector', + 'sources' => [ + 'SSRN' => 'https://ssrn.com/abstract=3520582' + ], + 'description' => 'A techincal indicator crossover strategy trading the largest energy companies.', + 'tags'=>'Intermediate, Technical Indicator, Ichimoku Cloud, Crossover, Equities' + ], + [ + 'name' => 'Intraday ETF Momentum', + 'link' => 'strategy-library/intraday-etf-momentum', + 'sources' => [ + 'NYU' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2440866' + ], + 'description' => "A momentum strategy based on returns of the market open", + 'tags'=>'Momentum, Stocks, Universe Selection, Equities, Anomaly' + ], + [ + 'name' => 'Intraday Arbitrage Between Index ETFs', + 'link' => 'strategy-library/intraday-arbitrage-between-index-etfs', + 'sources' => [ + 'SSRN' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1709599' + ], + 'description' => "A strategy that tracks the price paths of two correlated ETFs and takes advantage of mis-pricings that arise when the price paths diverge", + 'tags'=>'Intermediate, Equities, Arbitrage, Intraday' + ], + [ + 'name' => 'Optimal Pairs Trading', + 'link' => 'strategy-library/optimal-pairs-trading', + 'sources' => [ + 'arXiv' => 'https://arxiv.org/pdf/1411.5062.pdf' + ], + 'description' => "Mathematically Deriving the Optimal Entry and Liquidation Values of a Pairs Trading Process", + 'tags'=>'Pairs Trading, Ornstein-Uhlenbeck Process, Optimal Stopping' + ], + [ + 'name' => 'G-Score Investing', + 'link' => 'strategy-library/g-score-investing', + 'sources' => [ + 'SSRN' => 'https://papers.ssrn.com/sol3/papers.cfm?abstract_id=403180' + ], + 'description' => "Applying G-Score Investing to Invest in a Portfolio of Technology Stocks", + 'tags'=>'Fundamentals, Factor Investing, G-Score Investing, MorningStar data, equities' + ], + [ + 'name' => 'SVM Wavelet Forecasting', + 'link' => 'strategy-library/svm-wavelet-forecasting', + 'sources' => [ + 'Academia' => 'https://www.academia.edu/37180223/SVR_Wavelet_Adaptive_Model_for_Forecasting_Financial_Time_Series' + ], + 'description' => "Forecasting EURJPY prices with an SVM Wavelet model", + 'tags'=>'Support Vector Machines (SVM), Forex, Forecasting, Wavelet, Discrete Wavelet Transform' + ], + [ + 'name' => 'Gradient Boosting Model', + 'link' => 'strategy-library/gradient-boosting-model', + 'sources' => [ + 'arXiv' => 'https://ssrn.com/abstract=2323899' + ], + 'description' => "Forecasts future intraday returns with a gradient boosting model trained on technical indicators", + 'tags'=>'Gradient Boost, Regression Trees, Equities, Machine Learning' + ], + [ + 'name' => 'Using News Sentiment to Predict Price Direction of Drug Manufacturers', + 'link' => 'strategy-library/using-news-sentiment-to-predict-price-direction-of-drug-manufacturers', + 'sources' => [ + 'arXiv' => 'https://arxiv.org/abs/1812.04199' + ], + 'description' => "Analyzes the news releases of drug manufacturers and places intraday trades for the stocks with positive news.", + 'tags'=>'Equities, NLP, News Sentiment, Drug Manufacturers, Tiingo, Intraday' + ], + [ + 'name' => 'Gaussian Naive Bayes Model', + 'link' => 'strategy-library/gaussian-naive-bayes-model', + 'sources' => [ + 'Academia' => 'https://www.academia.edu/7677227/Forecasting_the_direction_of_stock_market_index_movement_using_three_data_mining_techniques_the_case_of_Tehran_Stock_Exchange' + ], + 'description' => "Forecasts the next day's return of technology stocks by fitting a gaussian naive bayes model to the historical returns of the technology sector constituents.", + 'tags'=>'Equities, Machine Learning, Naive Bayes, Gaussian' + ] +]; + +?> +
+ +
+
+ + + + + + + + '; + $sources .= (count($strategy['sources']) > 1 ? 'Sources:' : 'Source:'); + foreach ($strategy['sources'] as $key => $source) { + $sources .= " {$key},"; + } + + $sources = trim($sources, ','); + $sources .= '

'; + } + ?> + + + + + +
+ Strategy Name +
+ +

+ +
+ + diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 Introduction.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 Introduction.html new file mode 100755 index 0000000..2894372 --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 Introduction.html @@ -0,0 +1,14 @@ +

+ This tutorial performs a simple linear regression to build the Capital Asset Pricing Model(CAPM), a classical model developed by William F. Sharpe and Harry Markowitz. This model yields alpha and beta for each asset and is traded by going long on the stocks ranked with the highest alpha. This tutorial will demonstrate the following: +

+ +
    +
  • How to use historical data
  • +
  • Set an event handler
  • +
  • Conduct linear regression
  • +
  • Build your own functions in the QuantConnect Algorithm Lab
  • +
+ +

+ The implementation of the strategy demonstrates that stocks beat the market last month are likely to beat the market again in the subsequent month. This algorithm performs well when the market is smooth. However when the market volatility increases the model fails to capture alpha and it performs poorly. What we learn from this is that market fluctuations decrease the significance level of the linear regression coefficients, especially when we are using daily returns to fit the model. +

diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..9ccb0d0 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,14 @@ +

+ 本教程执行一个简单的线性回归来构建资本资产定价模型(CAPM),这是由William F. Sharpe和Harry Markowitz开发的一个经典模型。该模型对各资产都会产生alpha和beta值,并通过做多alpha值最高的股票进行交易。本教程将演示以下内容: +

+ +
    +
  • 如何使用历史数据
  • +
  • 设置事件处理程序
  • +
  • 进行线性回归
  • +
  • 在QuantConnect算法实验室中构建自己的函数
  • +
+ +

+ 该策略的实施表明,在上个月跑赢大盘的股票很可能在接下来的一个月里再次跑赢大盘。该算法在市场平稳时性能良好。然而,当市场波动性增加时,模型未能捕捉到alpha值,且表现不佳。我们从中了解到,市场波动降低了线性回归系数的显著性水平,特别是当我们使用日收益率来拟合模型时。 +

diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 CAPM Theory.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 CAPM Theory.html new file mode 100755 index 0000000..da9e6ff --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 CAPM Theory.html @@ -0,0 +1,45 @@ +

+ The capital asset pricing model (CAPM) describes the relationship between systematic risk and expected return for assets, typically stocks. The formula for calculating the expected return of an asset given its risk is as follows: +

+ +\[r_a = r_f + \beta_a*(r_m - r_f) + \epsilon \] + +

+ where: +

+ +\[r_f = Risk Free Rate\] +\[\beta = Beta of the security\] + +\[r_m = Expected market return\] + +\[\epsilon = Tracking error\] + +

+ This formula can be better understood if we refactor the formula as seen below: +

+ +\[(r_a - r_f ) = \beta_a*(r_m - r_f) + \epsilon \] + +

+ The left side of the equation gives us the difference between the asset return and risk free rate, the "excess return". If we regress the market excess return against the asset excess return the slope represents the "beta" of the asset. Therefore, beta can also be calculated by the equation: +

+ +\[\beta = \frac{Cov(r_a,r_b)}{var(r_b)}\] + +

+ So beta can be described as: +

+ +\[\beta = \rho _a,_b*\frac{\sigma _a}{\sigma_b}\] + +

+ The formula above indicates that beta can be explained as "correlated relative volatility". To make this simpler, beta can be calculated by doing a simple linear regression which can be viewed as a factor to explain the return, and the tracking error can represent alpha. + To make this theory more convenient for our algorithm, we change the above formula into the following form: +

+ +\[r_a = \beta*r_m + r_f*(1-\beta) + \epsilon\] + +

+ r*(1-β) on the right hand side of the equation is a very small item, making it negligible in the context of the Dow 30 companies. If we regress the stocks return with the return of the benchmark, the slope and intercept will be beta and alpha. +

diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" new file mode 100644 index 0000000..7add139 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 \350\265\204\346\234\254\350\265\204\344\272\247\345\256\232\344\273\267\346\250\241\345\236\213\357\274\210CAPM\357\274\211\347\220\206\350\256\272.cn.html" @@ -0,0 +1,44 @@ +

+ 资本资产定价模型(CAPM)描述了系统性风险与资产(通常是股票)预期收益之间的关系。给定风险的资产预期收益计算公式如下: +

+ +\[r_a = r_f + \beta_a*(r_m - r_f) + \epsilon \] + +

+ 其中: +

+ +\[r_f = Risk Free Rate\] +\[\beta = Beta of the security\] + +\[r_m = Expected market return\] + +\[\epsilon = Tracking error\] + +

+ 将公式重构如下,可以更好地理解这个公式: +

+ +\[(r_a - r_f ) = \beta_a*(r_m - r_f) + \epsilon \] + +

+ 方程的左边给出了资产收益和无风险利率之间的差额,即"超额收益"。如果我们将市场超额收益资产超额收益进行对比,斜率代表资产的"beta"。因此,beta也可以通过公式计算: +

+ +\[\beta = \frac{Cov(r_a,r_b)}{var(r_b)}\] + +

+ 因此beta可以描述为: +

+ +\[\beta = \rho _a,_b*\frac{\sigma _a}{\sigma_b}\] + +

+ 由上式可知,beta可以解释为“关联相对波动”。为了更加简化,可以通过简单的线性回归来计算beta,线性回归可以看作是解释收僧的一个因素,跟踪误差可以表示alpha。为了使这个理论对我们的算法更加便利,我们将上面的公式改为如下形式: +

+ +\[r_a = \beta*r_m + r_f*(1-\beta) + \epsilon\] + +

+ 等式右边的r*(1-β) 是一个非常小的项目,在道琼斯前30强企业的背景下可以忽略不计。如果我们使用基准收益对股票收益进行回归,斜率和截距将分别为beta和alpha。 +

diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html new file mode 100755 index 0000000..ffff064 --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html @@ -0,0 +1,86 @@ +

+ Our investment logic is simple and straightforward. We assume that stocks which beat the market last month will continue to beat the market. We rank stocks according to their alpha, and each month we "long" the top two stocks. For this strategy to work, we need to do the following at the start of each month: +

+
    +
  • Get the historical price of Dow 30 stocks in the past 21 trading days and calculate their daily rates of return.
  • +
  • Conduct simple linear regression on the return of each stock against a benchmark (S&P 500 index, SPY).
  • +
  • Rank the stocks by their intercepts.
  • +
  • Liquidate all our positions and purchase the first 2 stocks in our sorted list.
  • +
+

+ Dow Jones components change very infrequently, with the last change being on March 19th, 2015. To make the implementation easier we have simply listed the current Dow components in this algorithm. This means that the earliest start date of this algorithm is March 19th, 2015. +

+

Step 1: Setup Event Handler

+

+ In the initialize method we define a Scheduled Event to trigger a monthly re-balancing of the portfolio. For more details about how to use Scheduled Events, you can read the Documentation or see the example ScheduledEventsAlgorithm. +

+
+
def Initialize(self):
+    self.Schedule.On(self.DateRules.MonthStart(self.symbols[0]),
+                     self.TimeRules.AfterMarketOpen(self.symbols[0]),
+                     self.Rebalance)
+
+

Step 2: History Function

+

+ Each month we get the historical prices of the DOW30 components using the History API. The data is returned from the API as a pandas.DataFrame indexed by Symbol objects. The close data is selected and the data frame is unstack to create columns of Symbol objects. +

+
+
# Fetch the historical data to perform the linear regression
+history = self.History(
+    self.symbols + [self.benchmark], 
+    self.lookback,
+    Resolution.Daily).close.unstack(level=0)
+
+

Step 3: Symbol Selection Function

+

+ We aim to trade the two assets with the highest alpha to the benchmark. In order to conduct linear regression to find the alpha (linear regression intercept), we need to compute returns (percentage change of closing price) benchmark and the asset then conduct a linear regression. +

+
+
def SelectSymbols(self, history):
+    '''Select symbols with the highest intercept/alpha to the benchmark
+    '''
+    alphas = dict()
+
+    # Get the benchmark returns
+    benchmark = history[self.benchmark].pct_change().dropna()
+
+    # Conducts linear regression for each symbol and save the intercept/alpha
+    for symbol in self.symbols:
+
+        # Get the security returns
+        returns = history[symbol].pct_change().dropna()
+        returns = np.vstack([returns, np.ones(len(returns))]).T
+
+        # Simple linear regression function in Numpy
+        result = np.linalg.lstsq(returns, benchmark)
+        alphas[symbol] = result[0][1]
+
+    # Select symbols with the highest intercept/alpha to the benchmark
+    selected = sorted(alphas.items(), key=lambda x: x[1], reverse=True)[:2]
+    return [x[0] for x in selected]
+
+

Step 4: Rebalance Function:

+

+ This function is where all the action happens, it will be executed on the first trading day of each month as a scheduled event. The algorithm closes all positions of securities that were not selected using Liquidate and go 100% long for both of the selected symbols using SetHoldings. +

+
+
def Rebalance(self):
+
+    # Fetch the historical data to perform the linear regression
+    history = self.History(
+        self.symbols + [self.benchmark], 
+        self.lookback,
+        Resolution.Daily).close.unstack(level=0)
+
+    symbols = self.SelectSymbols(history)
+
+    # Liquidate positions that are not held by selected symbols
+    for holdings in self.Portfolio.Values:
+        symbol = holdings.Symbol
+        if symbol not in symbols and holdings.Invested:
+            self.Liquidate(symbol)
+
+    # Invest 100% in the each of the selected symbols
+    for symbol in symbols:
+        self.SetHoldings(symbol, 1)
+
\ No newline at end of file diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..b64df7a --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,95 @@ +

+ 我们的投资逻辑简单明了。我们认为上个月跑赢大盘的股票将继续跑赢大盘。我们根据alpha值对股票进行排名,每个月我们都会对排名前两支的股票“做多”。要使这一战略发挥作用,我们需要在每月月初做下列工作: +

+ +
    +
  • 计算道琼斯前30强股票在过去21个交易日的历史价格,并计算它们的日收益。
  • +
  • 根据基准(S&P 500指数,SPY)对每支股票的收益进行简单的线性回归。
  • +
  • 根据截距对股票进行排名。
  • +
  • 平掉所有仓位,并购买排序列表中的排名前两支股票。
  • +
+

+ 道琼斯指数成份股很少变动,最近一次变动发生在2015年3月19日。为了使实施更加容易,我们在这个算法中简单地列出了当前的道琼期成份股。这意味着该算法最早的开始日期是2015年3月19日。 +

+ +

步骤1:设置事件处理程序

+

+ 在初始化方法中,我们定义了日程事件来触发投资组合的每月重新平衡。有关如何使用日程事件的更多细节,可以阅读Documentation或查看示例ScheduledEventsAlgorithm。 +

+
+ +
def Initialize(self):
+    self.Schedule.On(self.DateRules.MonthStart(self.benchmark), self.TimeRules.AfterMarketOpen(self.benchmark), Action(self.rebalance))
+	
+
+ +

步骤2:线性回归函数

+

+ 为了进行线性回归,我们需要编写一个函数来获取价格数据并输出回归结果。函数获得“资产价格”列表(x)和一个“基准价格”列表(y),然后计算变化百分比并进行线性回归。输出是一个包含截距和斜率的元组。 +

+ +
+ +
def regression(self,x,y):
+    x = np.array(x)
+    x = np.diff(x)/x[:-1]
+    y = np.array(y)
+    y = np.diff(y)/y[:-1]
+    A = np.vstack([x, np.ones(len(x))]).T
+    result = np.linalg.lstsq(A, y)[0]
+    beta = result[0]
+    alpha = result[1]
+    return(alpha,beta)
+
+
+

步骤3:历史功能

+

+ 每个月我们都会使用History API获得道琼斯30强成份股的历史价格。数据作为复杂的Slice对象从API返回。为了使其在算法中可以使用,我们将资产价格和基准价格提取到一个列表中。 +

+
+ +
def get_regression_data(self,symbol,history):
+    symbol_price = []
+    benchmark_price = []
+    for i in history:
+        bar = i[symbol]
+        benchmark = i[self.benchmark]
+        symbol_price.append(bar.Close)
+        benchmark_price.append(benchmark.Close)
+
+    result = self.regression(symbol_price,benchmark_price)
+    return result
+
+
+

步骤4:再平衡功能

+

+ 此功能是所有动作发生的地方,将作为预定事件在每个月的第一个交易日执行。SetHoldings的第二个参数是小数,将其设置为“1”表示算法将投资组合设置为“100%多头”而不使用杠杆。有关这一功能的更多信息可以在链接SetHoldings上阅读。 +

+ +
+ +
def rebalance(self):
+    # 获得历史股票代码和价格,然后放入元组中
+    history = self.History(self.regression_dates, Resolution.Daily)
+    filter = []
+    for i in self.symbols:
+        filter.append((i,self.get_regression_data(i, history)[0]))
+    # 根据alpha排序筛选
+    filter.sort(key = lambda x : x[1],reverse = True)
+    sorted_symbols = []
+    for i in range(2):
+    	sorted_symbols.append(filter[i][0])
+    # 获得所持有股票的代码
+    holding_list = []
+    for i in self.Portfolio:
+    	if i.Value.Invested:
+    		holding_list.append(i.Value.Symbol)
+    # 如果我们不打算继续持有现有的股份,则将其出售
+    if holding_list:
+    	for i in holding_list:
+    		if i not in sorted_symbols:
+    			self.Liquidate(i)
+    # 做多列表中的两支股票
+    for i in sorted_symbols:
+    	self.SetHoldings(i,1)
+		
diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 Summary.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 Summary.html new file mode 100755 index 0000000..53a6e91 --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 Summary.html @@ -0,0 +1,14 @@ +

+ We have demonstrated that during a smooth market, the stocks that beat the market last month are likely to beat the market again in the subsequent month. When there is market fluctuation, the significance level of linear regression will reduce and the model performance will decrease. We can understand this by looking at the covariance of the asset(x) and the benchmark (y). As the covariance reduces to zero, the beta will decrease. +

+ +\[\hat{\beta} = \frac{Cov[x,y]}{\sum (x_i - \beta{x})^2}\] + +

+ As an experiment, we tested the algorithm on market data from 2015. This was a much more volatile period for the market with a fluctuation that returned a mean close to zero and dropped neaerly 10% from Aug 18th to Aug 25th of that year. The algorithm performed quite poorly in this year with a return rate of -11.58%. The risks associated with this strategy include a high drawdown, lack of hedging and not stop-loss. Since we are using leverage, the risk is increased and it has a margin call in January as a result. We can improve the performance by applying the following techniques: +

+ +
    +
  • Conduct optimizations: we can implement mean-variance analysis to determine the asset allocation each month and select more stocks to trade. This will lower our risk and manage the portfolio more scientifically.
  • +
  • Take beta into consideration: If we want to be more aggressive, we can select targets by a combination of alpha and beta. This means we choose stocks with a high alpha that are more volatile than the market. If we are conservative investors however, we can make the strategy market-neutral, which means the portfolio would not be affected by the market performance. For example, if we long two stocks with beta 1 and -1 respectively at the same position size, our portfolio becomes market-neutral.
  • +
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..c68387d --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,14 @@ +

+ 我们已经证明,在一个平稳的市场中,上个月跑赢大盘的股票很可能在接下来的一个月里再次跑赢大盘。当市场波动时,线性回归的显著性水平降低,模型性能下降。我们可以通过观察资产(x)和基准(y)的协方差来理解这一点。当协方差减小到零时,beta将会减小。 +

+ +\[\hat{\beta} = \frac{Cov[x,y]}{\sum (x_i - \beta{x})^2}\] + +

+ 作为实验,我们根据2015年的市场数据对算法进行了测试。对市场来说,这是一个极不稳定的时期,波动回到了接近于零的平均值,并在当年8月18日至8月25日期间下跌了近10%。该算法在今年的表现很差,收益率为-11.58%。与这一策略相关的风险包括大幅削减、缺乏对冲和止损。由于我们使用杠杆,风险增加了,因此在1月份有追加保证金的通知。我们可以通过应用以下技术来提高性能: +

+ +
    +
  • 进行优化:我们可以实施均值方差分析来确定每月的资产配置,选择更多的股票进行交易。这将降低我们的风险,更科学地管理投资组合。
  • +
  • 考虑beta:如果我们想要更加积极,我们可以结合alpha和beta来选择目标。这意味着我们选择的股票具有比市场波动更大的高alpha值。然而,如果我们是保守的投资者,我们可以使策略保持市场中立,这意味着投资组合不会受到市场表现的影响。例如,如果我们做多两只beta值为1和-1的股票,并分别持有相同的头寸大小,那么我们的投资组合就会变得市场中性。
  • +
diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html new file mode 100755 index 0000000..645e3da --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..4a79e84 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,9 @@ +

+ 使用OptionChainProvider进行回溯测试。 +

+
+
+
+ +
+
diff --git a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 References.html b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 References.html new file mode 100755 index 0000000..f6f75d0 --- /dev/null +++ b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 References.html @@ -0,0 +1,8 @@ +
    +
  1. + https://en.wikipedia.org/wiki/Dow_Jones_Industrial_Average +
  2. +
  3. + Sharpe, William, 1990 http://www.nobelprize.org/nobel_prizes/economic-sciences/laureates/1990/sharpe-lecture.pdf +
  4. +
diff --git "a/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..f6f75d0 --- /dev/null +++ "b/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,8 @@ +
    +
  1. + https://en.wikipedia.org/wiki/Dow_Jones_Industrial_Average +
  2. +
  3. + Sharpe, William, 1990 http://www.nobelprize.org/nobel_prizes/economic-sciences/laureates/1990/sharpe-lecture.pdf +
  4. +
diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/01 Abstract.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/01 Abstract.html new file mode 100755 index 0000000..7850891 --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/01 Abstract.html @@ -0,0 +1,7 @@ +

+ In this tutorial we build a strategy combining momentum and mean reversion for the foreign exchange markets from Alina F. Serban's research which was based on research in the equity market by Ronald J. Balvers and Yangru Wu. Serban creates a momentum factor using returns of the last 3 months, and a mean reversion factor as a deviation from the mean price. Using these factors we use regression to predict the returns of the coming month. We apply the strategy from Serban's paper and update the mean reversion factor for to improve its significance level. +

+ +

+ In theory when trading foreign exchange the expected return accrued in each currency should be the same when adjusted for exchange rates (uncovered interest parity). This suggests the markets should predominately be mean reverting, however in practice we see short term momentum trends and long term mean reversion. This was phenomenon was first noticed by Chiang and Jiang. We tested the theory on EURUSD, GBPUSD, USDCAD and USDJPY and re-balanced monthly. The model significance level and coefficients are close to those in paper, but the returns and Sharpe Ratios obtained are not as good as what the paper claimed. The algorithm achieved a fairly stable annual return of 11%, 0.8 Sharpe Ratio and 11% drawdown. +

diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/02 Introduction.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/02 Introduction.html new file mode 100755 index 0000000..4a19969 --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/02 Introduction.html @@ -0,0 +1,59 @@ +

+ The strategy is centered on uncovered interest parity (UIP) theory. UIP states that the change in the exchange rate should incorporate any interest rate differentials between the two currencies. By looking for patterns in the deviation from UIP we can potential generate abnormal returns. +

+ +

Interest Parity Conditions

+

+ UIP states that an investor who borrows money in their home country and lends it in another country with a higher interest rate should expect a zero return due to the changes in exchange rate. In other words: +

+ +\[1+r_t = (1+r^{i}_t)(\frac{F^{i}_t}{S^{i}_t})\] +

+ Where \(r_t\) is the domestic interest rate, \(r^{i}\) is the foreign interest rate, \(S^{i}\) is the spot exchange rate and \(F^{i}\) is the forward rate. We can also replace F forward rate with expected spot rate: +

+ +\[1+r_t = (1+r^{i}_t)(\frac{E(S^{i}_{t+1})}{S^{i}_t})\] + +

+ Taking logs of the above two equations, we obtain: +

+ +\[r_t - r^{i}_t = \ln F^{i}_t - \ln S^{i}_t\] + +\[r_t - r^{i}_t =\ln S^{i}_{t+1} - \ln S^{i}_t\] + +

+ The deviation from UIP is denoted by y and defined as follows: +

+ +\[y^{i}_{t+1} =\ln S^{i}_{t+1} -\ln F^{i}_t\] + +

Model and Parameter Estimation

+

+ Fama and French and Summers constructed a simple model for stock price that is the sum of a random walk and a stationary component - they represent the natural log of the stock price with x. The stationary component represents the temporary swings in stock price (characterized by coefficient \(\delta \)), the parameter \(\mu \) captures the random walk drift component and a coefficient accounts for the momentum effect \(\rho \). Balvers and Wu construct the log of stock prices as: +

+ +\[x^{i}_t = (1 - \delta ^{i})\mu ^{i} + \delta ^{i}x^{i}_{t-1} + \sum_{j=1}^{J}\rho ^{i}(x^{i}_{t-1} - x^{i}_{t-j-1}) + \epsilon ^{u}_t\] + +

+ Using the equation above Serban adapts it to find the abnormal return in the forex market. The \(\delta \) represents the speed of mean reversion and can differ by country, while the \(\rho \) represents the momentum strength and can vary by country and by lag. The parameter \(\mu \) also varies by country. Accounting for these changes: +

+ +\[y^{i}_t = -(1 - \delta ^{i})(x^{i}_{t-1} - \mu ^{i}) + \sum_{j=1}^{J}\rho ^{i}(x^{i}_{t-1} - x^{i}_{t-j-1}) + \epsilon ^{u}_t\] + +

Trading Strategy

+

+ The trading strategy from the paper allows \(\mu \) to change by country, while let \(\rho \) and \(\delta \) stay fixed. By applying Ordinary Least Squared(OLS) regression, the model estimates the return y for each currency. We construct the portfolio by taking a long position on the currency with the highest expected return and taking a short position on the currency with the lowest expected return. We hold these positions for one month, and repeat the process each month. There are two exceptions to this strategy: if all expected returns are positive, we take a long position only, and vice versa. + To limit the number of parameters we need to estimate and find a solution easily we only allow \(\mu \) to change by country. According to the paper if we let ρ stay fixed and J =3, we can obtain the highest return for this strategy. If so the equation can be simplified as: +

+ +\[y^{i}_t = -(1-\delta )(x^{i}_{t-1} - \mu ^{i}) + \rho (x^{i}_{t-1} - x^{i}_{t-4}) + \epsilon ^{i}_t\] + +

+ When applying the above equation, we found that the scale of the mean reversion for each currency are very different, and this difference in scale is large enough to affect the accuracy of our rank. We made an adjustment to standardize the mean-reversion. While calculating \(\mu \) (the mean of the log prices) we also calculated standard deviation σ. In this tutorial we replace \(x-\mu \) with \(\frac{x - \mu}{\sigma } \). This captures the mean reversion factor better than the author's technique. +

+ +

Data Description

+

+ The paper used monthly exchange rate data for the Canadian Dollar/USD, German Mark/Euro, UK Pound/USD and Japanese Yen/USD, from 1978 to 2008. Due to data availability, we used Euro/USD instead of German Mark/Euro, and the earliest data available starts from 2004. Each time we launch the strategy we use all of the available historical data prior to the start date to build the OLS model and uses that model for the entire backtest. The paper used 1/3 of their data as the training dataset and the rest of the test set. We directly test our model on backtesting, because QuantConnect makes this easier. +

diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/03 Method.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/03 Method.html new file mode 100755 index 0000000..e74071f --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/03 Method.html @@ -0,0 +1,179 @@ +

+ In order to apply the model, we need to first pull history data to build it. The project can be briefly divided into four parts: the historical data request, model training, prediction and execution. +

+ +

Step 1: Request Historical Data

+

+ The first function takes two arguments: symbol and number of daily data points requested. This function requests historical QuoteBars and builds it into a pandas DataFrame. For more information about pandas DataFrame, please refer to the help documentation DataFrame. The calculate_return function takes a DataFrame as an argument to calculate the mean and standard deviation of the log prices, and create new columns for the DataFrame (return, reversal factor and momentum) - it prepares the DataFrame for multiple linear regression. +

+
+ +
def get_history(self,symbol, num):
+    data = {}
+    dates = []
+    history = self.History([symbol], num, Resolution.Daily).loc[symbol]['close'] #request the historical data for a single symbol
+    for time in history.index:
+        t = time.to_pydatetime().date()
+        dates.append(t)
+    dates = pd.to_datetime(dates)
+    df = pd.DataFrame(history)
+    df.reset_index(drop=True)
+    df.index = dates
+    df.columns = ['price']
+    return df
+
+def calculate_return(self,df):
+    #calculate the mean for further use
+    mean = np.mean(df.price)
+    # cauculate the standard deviation
+    sd = np.std(df.price)
+    # pandas method to take the last datapoint of each month.
+    df = df.resample('BM',how = lambda x: x[-1])
+    # the following three lines are for further experiment purpose
+    # df['j1'] = df.price.shift(1) - df.price.shift(2)
+    # df['j2'] = df.price.shift(2) - df.price.shift(3)
+    # df['j3'] = df.price.shift(3) - df.price.shift(4)
+    # take the return as depend variable
+    df['log_return'] = df.price - df.price.shift(1)
+    # calculate the reversal factor
+    df['reversal'] = (df.price.shift(1) - mean)/sd
+    # calculate the momentum factor
+    df['mom'] = df.price.shift(1) - df.price.shift(4)
+    df = df.dropna() #remove nan value
+    return (df,mean,sd)
+
+ +

Step 2: Build Predictive Model

+

+ The concat function requests history and joins the results into a single DataFrame. As \(\mu \) varies by country so we assign the mean and standard deviation to the symbol for each currency for future use. The OLS function takes the resulting DataFrame to conduct an OLS regression. We write it into a function because it's easier to change the formula here if we need. +

+ +
+ +
def concat(self):
+    # we requested as many daily tradebars as we can
+    his = self.get_history(self.quoted[0].Value,20*365)
+    # get the clean DataFrame for linear regression
+    his = self.calculate_return(his)
+    # add property to the symbol object for further use.
+    self.quoted[0].mean = his[1]
+    self.quoted[0].sd = his[2]
+    df = his[0]
+    # repeat the above procedure for each symbols, and concat the dataframes
+    for i in range(1,len(self.quoted)):
+        his = self.get_history(self.quoted[i].Value,20*365)
+        his = self.calculate_return(his)
+        self.quoted[i].mean = his[1]
+        self.quoted[i].sd = his[2]
+        df = pd.concat([df,his[0]])
+    df = df.sort_index()
+    # remove outliers that outside the 99.9% confidence interval
+    df = df[df.apply(lambda x: np.abs(x - x.mean()) / x.std() < 3).all(axis=1)]
+    return df
+
+def OLS(self,df):
+    res = sm.ols(formula = 'return ~ reversal + mom',data = df).fit()
+    return res
+
+ +

Step 3: Apply Predictive Model

+

+ The predict function uses the history for the last 3 months, merges it into a DataFrame and then calculates the updated factors. Using these updated factors (together with the model we built) we calculate the expected return. +

+
+ +
def predict(self,symbol):
+    # get current month in string
+    month = str(self.Time).split(' ')[0][5:7]
+    # request the data in the last three months
+    res = self.get_history(symbol.Value,33*3)
+    # pandas method to take the last datapoint of each month
+    res = res.resample('BM',how = lambda x: x[-1])
+    # remove the data points in the current month
+    res = res[res.index.month != int(month)]
+    # calculate the variables
+    res = self.calculate_input(res,symbol.mean,symbol.sd)
+    res = res.ix[0]
+    # take the coefficient. The first one will not be used for sum-product because it's the intercept
+    params = self.formula.params[1:]
+    # calculate the expected return
+    re = sum([a*b for a,b in zip(res[1:],params)]) + self.formula.params[0]
+    return re
+
+def calculate_input(self, df, mean, sd):
+    df['reversal'] = (df.price - mean)/sd
+    df['mom'] = df.price - df.price.shift(3)
+    df = df.dropna()
+    return df
+  
+
+ +

+ There are a few points of note: +

+ +
    +
  • We need historical TradeBars for the last three months. To do this we requested 99 bars and use a pandas DataFrame to extract a data point for the end of each month.
  • +
  • We use event schedule to execute the strategy at the first trading day, however, sometimes the first day of the month could be on the 2nd if the 1st falls on a weekend. To fix this we remove the data from the current month, leaving only the last 3 months of data.
  • +
  • We start from the second element of res (res[1:]) because res and params are different lengths. This was hard to detect because Python would not throw error when running [a*b for a,b in zip(res,params)] even if the length of the two lists are different.
  • +
  • This function also used pandas DataFrame methods extensively. For more information please refer to pandas.
  • +
+ +

Step 4: Initializing the Model

+

+ In the Initialize function we prepare the data and conduct a linear regression. The class property 'self.formula' is the result of the OLS regression. We will use this object each time we rebalance the portfolio. +

+ +
+ +
def Initialize(self):
+    self.SetStartDate(2013,6,1)
+    self.SetEndDate(2016,6,1)
+    self.SetCash(10000)
+    self.syls = ['EURUSD','GBPUSD','USDCAD','USDJPY']
+    self.quoted = []
+    for i in range(len(self.syls)):
+        self.quoted.append(self.AddForex(self.syls[i],Resolution.Daily,Market.Oanda).Symbol)
+    df = self.concat()
+    self.Log(str(df))
+    self.formula = self.OLS(df)
+    self.Log(str(self.formula.summary()))
+    self.Log(str(df))
+    self.Log(str(df.describe()))
+    for i in self.quoted:
+        self.Log(str(i.mean) + '   ' + str(i.sd))
+    self.Schedule.On(self.DateRules.MonthStart(), self.TimeRules.At(9,31), Action(self.action))
+  
+
+ +

Step 5: Performing Monthly Rebalancing

+

+ Every month we rebalance the portfolio using the Schedule Event helper method. The predicted returns are added to the rank array and then sorted by return. The first element in the list is the best return paired with the associated symbol. When all the expected returns in the rank array are positive we only go long the pair with the highest expected return. When all returns are negative, we only go short the pair with the lowest expected return. +

+ +
+ +
def action(self):
+    rank = []
+    long_short = []
+    for i in self.quoted:
+        rank.append((i,self.predict(i)))
+# rank the symbols by their expected return
+    rank.sort(key = lambda x: x[1],reverse = True)
+# the first element in long_short is the one with the highest expected return, which we are going to long, and the second one is going to be shorted.
+    long_short.append(rank[0])
+    long_short.append(rank[-1])
+    self.Liquidate()
+
+# the product < 0 means the expected return of the first one is positive and that of the second one is negative--we are going to long and short.
+    if long_short[0][1]*long_short[1][1] < 0:
+        self.SetHoldings(long_short[0][0],1)
+        self.SetHoldings(long_short[1][0],-1)
+        # this means we long only because all of the expected return is positive
+    elif long_short[0][1] > 0 and long_short[1][1] > 0:
+        self.SetHoldings(long_short[0][0],1)
+# short only
+    else:
+        self.SetHoldings(long_short[1][0],-1)
+      
+
diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/04 Results.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/04 Results.html new file mode 100755 index 0000000..ccd73cf --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/04 Results.html @@ -0,0 +1,17 @@ +

+ The following regression output is obtained by backtesting the time period from Jun 2013 to Jun 2016. + From the regression statistics, the R-squared value is 1.4% which is smaller than the paper value 3.89%. + Our momentum coefficient, ρ, is 0.0633 compared to the paper's 0.042. We obtained 1.0350 mean reversion coefficient (1 + 0.0350), and the paper got 0.9859. +

+ +Tutorial02-mean-reversion-1 + +

+ From these results we can say the limited sample size does not impair the feasibility of this model. The t-stats of the coefficients are -4.074 and 1.417 for the reversal factor and momentum factor respectively. The p-value of the reversal factor is very small which means this factor has a very high significance level. +

+ +

Backtest Sensitivity Results

+

+ We performed some rough period sensitivity analysis in different time period(from 2015 to 2018) and summarized the results as the following table: +

+Tutorial02-mean-reversion-2 diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/05 Summary.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/05 Summary.html new file mode 100755 index 0000000..cfa134a --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/05 Summary.html @@ -0,0 +1,3 @@ +

+ The paper demonstrates there are inefficiencies in the UIP which can be exploited with a hybrid momentum and mean reversion strategy. Although the sample size of the paper is much larger than ours the parameter and significance level of the two models are very close. The strategies we discussed above keep \(\rho \) fixed and only allow \(\mu \) to change by country. If we let \(\rho \) change by lag the significance level of the model might increase, but this could potentially make modeling more difficult by introducing multicollinearity. To test this we wrote this implementation in the algorithm and commented out the lines. If you are interested in exploring this extension to the model you can change these lines to test your strategy. +

diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html new file mode 100755 index 0000000..9717146 --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/07 References.html b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/07 References.html new file mode 100644 index 0000000..d1f2696 --- /dev/null +++ b/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/07 References.html @@ -0,0 +1,18 @@ +
    +
  1. + Alina F. Serban, Combining mean reversion and momentum trading strategies in foreign exchange markets Online Copy +
  2. +
  3. +
  4. + Investopedia, Uncovered Interest Rate Parity. Online Copy +
  5. +
  6. + Ronald J. Balvers, Yangru Wu, Momentum and mean reversion across national equity markets Online Copy +
  7. +
  8. + Chiang, T., Jiang, C., 1995. Foreign exchange returns over short and long horizons. International Review of Economics and Finance 4, 267–282. Online Copy +
  9. +
  10. + Fama, E., 1984. Forward and spot exchange rates. Journal of Monetary Economics Online Copy 14, 319–338. +
  11. +
      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 Abstract.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 Abstract.html new file mode 100755 index 0000000..d95036a --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 Abstract.html @@ -0,0 +1,7 @@ +

      + In this research, We investigate two pairs trading methods and compare the result. Pairs trading involves in investigating the dependence structure between two highly correlated assets. With the assumption that mean reversion will occur, long or short positions are entered in the opposite direction when there is a price divergence. Typically the asset price distribution is modeled by a  Gaussian distribution of return series but the joint normal distribution may fail to catch some key features of the dependence of stock pairs' price like tail dependence. We investigate using copula theory to identify these trading opportunities. +

      + +

      + We will discuss the basic framework of copula from the mathematical perspective and explain how to apply the approach in pairs trading. The implementation of the algorithm is based on the paper Trading strategies with copulas from Stander Y, Marais D, Botha I(2013). We compare the performance of the copula pairs trading strategy with the co-integration pairs trading method based on the paper Statistical arbitrage trading strategies and high-frequency trading from Hanson T A, Hall J R. (2012). The co-integration technique assumes a co-integration relationship between paired equities to identify profitable trading opportunities. The empirical results suggest that the copula-based strategy is more profitable than the traditional pairs trading techniques. +

      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..e06b3ac --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,7 @@ +

      + 在本研究中,我们研究了两种配对交易方法,并对结果进行了比较。配对交易涉及到对两种高度相关资产之间依附结构的研究。在假定会出现平均值回复的情况下,当出现价格差异时,多头或空头头寸将反向入市。一般情况下,资产价格分布是采用收益率序列高斯分布来建模的,但联合正态分布可能无法捕捉到股票对价格依赖性的一些关键特征(如尾部相关性)。我们的研究使用了联系理论来识别这些交易机会。 +

      + +

      + 我们将从数学的角度讨论联系的基本框架,并解释如何在配对交易中应用这一方法。算法的实现基于Stander Y, Marais D, BothaI(2013)的论文带有联系函数的交易策略。根据Hanson T A,Hall J R.(2012)的论文统计套利交易策略和高频交易,我们将联系配对交易策略的性能与协整配对交易方法进行了比较。协整法假设配对股票之间存在协整关系,可以识别有利可图的交易机会。实证结果表明,与传统的配对交易策略相比,基于联系的策略更容易获益。 +

      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 Framework of Copula.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 Framework of Copula.html new file mode 100755 index 0000000..27a28d6 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 Framework of Copula.html @@ -0,0 +1,71 @@ +

      1. Definition

      +

      + Given a random vector \(X_1,X_2,...,X_p\), its marginal cumulative distribution functions (CDFs) are \(F_i(x) = P[X_i \leq x]\). By applying the probability integral transform to each component, the marginal distributions of \((U_1,U_2,...,U_p) = (F_1(X_1),F_2(X_2),...,F_p(X_p))\) are uniform (from Wikipedia). Then the copula of \(X_1,X_2,...,X_p\) is defined as the joint cumulative distribution function of \(U_1,U_2,...,U_p\), for which the marginal distribution of each variable U is uniform as  \(U(0,1)\). +

      + +\[C(u_1,u_2,...,u_p) = P[U_1\leq u_1,U_2\leq u_2,..., U_1\leq u_1]\] + +

      + Copulas function contains all the dependency characteristics of the marginal distributions and will better describe the linear and non-linear relationship between variables, using probability. They allow the marginal distributions to be modeled independently from each other, and no assumption on the joint behavior of the marginals is required. +

      + +

      2. Bivariate Copulas

      +

      + Since this research focuses on bivariate copulas (for pairs trading we have 2 random variables) some probabilistic properties are specified. + Let X and Y be two random variables with cumulative probability function \(F_1(X)\) and \(F_2(Y)\). \(U=F_1(X), V=F_2(Y)\) which are uniformly distributed.  Then the copula function is \(C(u,v)=P(U\leq u,V\leq v)\). Taking the partial derivative of the copula function over U and V would give the conditional distribution function as follows: +

      + +\[P(U\leq u\mid V= v)=\frac{\partial C(u,v)}{\partial v}\] +\[P(V\leq v\mid U= u)=\frac{\partial C(u,v)}{\partial u}\] + +

      3. Archimedean Copulas

      +

      + There are many copula functions that enable us to describe dependence structures between variables, other than the Gaussian assumption. Here we will focus three of these; the Clayton, Gumbel and Frank copula formulas from the Archimedean class. + Archimedean copulas are based on the Laplace transforms φ of univariate distribution functions. They are constructed by a particular generator function \(\phi\). +

      + +\[C(u,v)=\phi^{-1}( \phi(u),\phi(v) )\] + +

      + The probability density function is: +

      + +\[c(u,v)=\phi_{(2)}^{-1}(\phi(u)+\phi(v))\phi^{'}(u)\phi^{'}(v)\] + +

      + Where \(\phi_{(2)}^{-1}\) is the inverse of the second derivative of the generator function. +

      + + + + + + + + + + + + + + + + + + + + + + +
      CopulaCopula function C(u,v;θ)
      Clayton Copula\[(u^{-\theta}+v^{-\theta}-1)^{-1/\theta}\]
      Gumbel Copula\[exp(-[(-\ln u)^{\theta}+(-\ln v)^{\theta}]^{1/\theta})\]
      Frank Copula\[-\theta^{-1}\ln\left[1+\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)}{exp(-\theta)-1}\right]\]
      + + +

      + Genest and MacKay proved that the relation between the copula generator function and Kendall rank correlation tau in the bivariate case can be given by: +

      + +\[\tau=1+4\int_{0}^{1} \frac{\partial \phi (v)}{\partial \phi^{'}(v)}dv\] + +

      + So we can easily estimate the parameter in Archimedean copulas if we know Kendall’s tau rank measure and the generator function. Please refer to step 3 to see the formulas. +

      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" new file mode 100644 index 0000000..5fdb07a --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 \350\201\224\347\263\273\346\241\206\346\236\266.cn.html" @@ -0,0 +1,71 @@ +

      1.定义

      +

      + 给定一个随机向量\(X_1,X_2,...,X_p\),其边际累积分布函数(CDF)为\(F_i(x) = P[X_i \leq x]\)。通过对每个分量进行概率积分变换,\((U_1,U_2,...,U_p) = (F_1(X_1),F_2(X_2),...,F_p(X_p))\)的边际分布是一致的(from Wikipedia)。然后将\(X_1,X_2,...,X_p\)的联系定义为\(U_1,U_2,...,U_p\)的联合累积分布函数,其中每个变量U的边际分布均为\(U(0,1)\)。 +

      + +\[C(u_1,u_2,...,u_p) = P[U_1\leq u_1,U_2\leq u_2,..., U_1\leq u_1]\] + +

      + 联系函数包含了所有边际分布的依赖性特征,能够更好地利用概率描述变量之间的线性和非线性关系。它们使边际分布能够彼此独立地建模,并且不需要对边际分布的联合行为进行假设。 +

      + +

      2.二元联系

      +

      + 由于本研究的重点是二元联系 (对于配对交易,我们有2个随机变量),因此指定了一些概率性质。 + 设X和Y为两个随机变量,累积概率函数为\(F_1(X)\)和\(F_2(Y)\)。\(U=F_1(X), V=F_2(Y)\)是均匀分布的。则联系函数为\(C(u,v)=P(U\leq u,V\leq v)\)。取U和V联系函数的偏导数,所得到条件分布函数如下: +

      + +\[P(U\leq u\mid V= v)=\frac{\partial C(u,v)}{\partial v}\] +\[P(V\leq v\mid U= u)=\frac{\partial C(u,v)}{\partial u}\] + +

      3.阿基米德联系

      +

      + 除了高斯假设之外,还有许多联系函数可以用来描述变量之间的依附结构。这里我们将重点讨论其中的三种,它们分别是来自阿基米德分类中的ClaytonGumbelFrank。 + 阿基米德联系是基于单变量分布函数的Laplace变换参数φ。它们是由特定的生成器函数\(\phi\)创建的。 +

      + +\[C(u,v)=\phi^{-1}( \phi(u),\phi(v) )\] + +

      + 概率密度函数为: +

      + +\[c(u,v)=\phi_{(2)}^{-1}(\phi(u)+\phi(v))\phi^{'}(u)\phi^{'}(v)\] + +

      + 其中,\(\phi_{(2)}^{-1}\)是生成器函数二次导数的倒数。 +

      + + + + + + + + + + + + + + + + + + + + + + +
      联系联系函数C(u,v;θ)
      Clayton联系公式\[(u^{-\theta}+v^{-\theta}-1)^{-1/\theta}\]
      Gumbel联系公式\[exp(-[(-\ln u)^{\theta}+(-\ln v)^{\theta}]^{1/\theta})\]
      Frank联系公式\[-\theta^{-1}\ln\left[1+\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)}{exp(-\theta)-1}\right]\]
      + + +

      + Genest和MacKay证明了在双变量情况下联系生成器函数与Kendall秩相关tau之间的关系为: +

      + +\[\tau=1+4\int_{0}^{1} \frac{\partial \phi (v)}{\partial \phi^{'}(v)}dv\] + +

      + 因此,只要知道Kendall的tau秩测量值和生成器函数,就可以很容易地估算出阿基米德联系函数中的参数。请参照步骤3查看公式。 +

      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html new file mode 100755 index 0000000..a16ea55 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html @@ -0,0 +1,387 @@ +

      + ETFs have many different stock sectors and asset classes which provide us a wide range of pairs trading candidates. Our data set consists of daily data of the ETFs traded on the NASDAQ or the NYSE. +

      + +

      + We use the first 3 years of data to choose the best fitting copula and asset pair ("training formation period"). Next, we use a period of more than 9 years from January 2010 to September 2019 ("the trading period"), to execute the strategy. During the trading period we use a rolling 12 month window of data to get the copula parameters ("rolling formation period"). +

      + +

      Step 1: Selecting the Paired Stocks

      +

      + The general method of pair selection is based on both fundamental and statistical analysis. +

      + +

      1) Assemble a list of potentially related pairs

      +

      + Any random pairs could be correlated. It is possible that those variables are not causally related to each other, but because of a spurious relationship due to either coincidence or the presence of a certain third, unseen factor. Thus, it is important for us to start with a list of securities that have something in common. For this demonstration, we choose some of the most liquid ETFs traded on the Nasdaq or the NYSE.  The relationship for those potentially related pairs could be due to an index, sector or asset class overlap. e.g. QQQ and XLK are two ETFs which track the market leading indices. +

      + +

      2) Filter the trading pair with statistical correlation

      + +

      + To determine which stock pairs to include in the analysis, correlations between the pre-selected ETF pairs are analyzed. Below are three types of correlation measures we usually use in statistics: +

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Correlation Measurement Techniques
      Pearson correlation\[r = \frac{\sum (x_i- \bar{x})(y_i- \bar{y})}{\sqrt{\sum (x_i- \bar{x})^2)\sum (y_i- \bar{y})^2)} }\]
      Kendall rank correlation\[\tau=\frac{n_c-n_d}{\frac{1}{2}n(n-1)}\]
      Spearman rank correlation\[\rho=1-\frac{6\sum d_i^2}{n(n^2-1)}\]
       \(n\) = number of value in each data set +\(n_c\) = number of concordant +\(n_d\) = number of discordant +\(d_i\) = the difference between the ranks of corresponding values \(x_i\) and \(y_i\)
      + + +

      + We can get these coefficients in Python using functions from the stats library in SciPy. The correlations have been calculated using daily log stock price returns during the training formation period. We found the 3 correlation techniques give the paired ETFs the same correlation coefficient ranking. The Pearson correlation assumes that both variables should be normally distributed. Thus here we use Kendall rank as the correlation measure and choose the pairs with the highest Kendall rank correlation to implement the pairs trading. We get the daily historical closing price of our ETFs pair by using the History function and converting the prices to a log return series. Let \(P_x\) and \(P_y\) denote the historical stock price series for stock x and stock y. The log returns for the ETFs pair are given by: +

      + +\[R_x = ln(\frac{P_{x,t}}{P_{x,t-1}}),   R_y = ln(\frac{P_{y,t}}{P_{y,t-1}})\]   t = 1,2,...,n where n is the number of price data + +
      + +
      def PairSelection(self, date):
      +	'''Selects the pair of stocks with the maximum Kendall tau value.
      +	It's called on first day of each month'''
      +	
      +	if date.month == self.month:
      +		return Universe.Unchanged
      +	
      +	symbols = [ Symbol.Create(x, SecurityType.Equity, Market.USA) 
      +				for x in [  
      +							"QQQ", "XLK",
      +							"XME", "EWG", 
      +							"TNA", "TLT",
      +							"FAS", "FAZ",
      +							"XLF", "XLU",
      +							"EWC", "EWA",
      +							"QLD", "QID"
      +						] ]
      +
      +	logreturns = self._get_historical_returns(symbols, self.lookbackdays)
      +	
      +	tau = 0
      +	for i in range(0, len(symbols), 2):
      +		
      +		x = logreturns[str(symbols[i])]
      +		y = logreturns[str(symbols[i+1])]
      +		
      +		# Estimate Kendall rank correlation for each pair
      +		tau_ = kendalltau(x, y)[0]
      +		
      +		if tau > tau_:
      +			continue
      +
      +		tau = tau_
      +		self.pair = symbols[i:i+2]
      +	
      +	return [x.Value for x in self.pair]
      +
      +
      + +

      Step 2: Estimating Marginal Distributions of log-return

      +

      + In order to construct the copula, we need to transform the log-return series \(R_x\) and \(R_y\) to two uniformly distributed values u and v. This can be done by estimating the marginal distribution functions of \(R_x\) and \(R_y\) and plugging the return values into a distribution function. As we make no assumptions about the distribution of the two log-return series, here we use the empirical distribution function to approach the marginal distribution \(F_1(R_x)\) and \(F_2(R_y)\). The Python ECDF function from the statsmodel library gives us the Empirical CDF as a step function. +

      +

      Step 3: Estimating Copula Parameters

      +

      + As discussed above, we estimate the copula parameter theta by the relationship between the copula and the dependence measure Kendall’s tau, for each of the Archimedean copulas. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      CopulaKendall's tauparameter θ
      Clayton Copula\[\frac{\theta}{\theta +2}\]\[\theta=2\tau(1-\tau)^{-1}\]
      Gumbel Copula\[1-\theta^{-1}\]\[\theta=(1-\tau)^{-1}\]
      Frank Copula\[1+4[D_1(\theta)-1]/\theta\]\[arg min\left(\frac{\tau-1}{4}-\frac{D_1(\theta)-1}{\theta}\right)^2\]
      \[D_1(\theta)=\frac{1}{\theta}\int_{0}^{\theta}\frac{t}{exp(t)-1}dt \]
      + +
      + +
      def _parameter(self, family, tau):
      +	''' Estimate the parameters for three kinds of Archimedean copulas
      +	according to association between Archimedean copulas and the Kendall rank correlation measure
      +	'''
      +	
      +	if  family == 'clayton':
      +		return 2 * tau / (1 - tau)
      +	
      +	elif family == 'frank':
      +		
      +		'''
      +		debye = quad(integrand, sys.float_info.epsilon, theta)[0]/theta  is first order Debye function
      +		frank_fun is the squared difference
      +		Minimize the frank_fun would give the parameter theta for the frank copula 
      +		''' 
      +		
      +		integrand = lambda t: t / (np.exp(t) - 1)  # generate the integrand
      +		frank_fun = lambda theta: ((tau - 1) / 4.0  - (quad(integrand, sys.float_info.epsilon, theta)[0] / theta - 1) / theta) ** 2
      +		
      +		return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x 
      +	
      +	elif family == 'gumbel':
      +		return 1 / (1 - tau)
      +
      +
      + +

      Step 4: Selecting the Best Fitting Copula

      +

      + Once we get the parameter estimation for the copula functions, we use the AIC criteria to select the copula that provides the best fit in algorithm initialization. +

      + +\[AIC=-2L(\theta)+2k\] + +

      + where \(L(\theta)=\sum_{t=1}^T\log c(u_t,v_t;\theta)\) is the log-likelihood function and k is the number of parameters, here k=1. +

      + +

      + The density functions of each copula function are as follows: +

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      CopulaDensity function c(u,v;θ)
      Clayton Copula\[(\theta+1)(u^{-\theta}+v^{-\theta}-1)^{-2-1/\theta}u^{-\theta-1}v^{-\theta-1}\]
      Gumbel Copula\[C(u,v;\theta)(uv)^{-1}A^{-2+2/\theta}[(\ln u)(\ln v)]^{\theta -1}[1+(\theta-1)A^{-1/\theta}]\]
      Frank Copula\[\frac{-\theta(exp(-\theta)-1)(exp(-\theta(u+v)))}{((exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1))^2}\]
      \[A=(-\ln u)^{\theta}+(-\ln v)^{\theta}\]
      + +
      + +
      def _lpdf_copula(self, family, theta, u, v):
      +	'''Estimate the log probability density function of three kinds of Archimedean copulas
      +	'''
      +	
      +	if  family == 'clayton':
      +		pdf = (theta + 1) * ((u ** (-theta) + v ** (-theta) - 1) ** (-2 - 1 / theta)) * (u ** (-theta - 1) * v ** (-theta - 1))
      +		
      +	elif family == 'frank':
      +		num = -theta * (np.exp(-theta) - 1) * (np.exp(-theta * (u + v)))
      +		denom = ((np.exp(-theta * u) - 1) * (np.exp(-theta * v) - 1) + (np.exp(-theta) - 1)) ** 2
      +		pdf = num / denom
      +		
      +	elif family == 'gumbel':
      +		A = (-np.log(u)) ** theta + (-np.log(v)) ** theta
      +		c = np.exp(-A ** (1 / theta))
      +		pdf = c * (u * v) ** (-1) * (A ** (-2 + 2 / theta)) * ((np.log(u) * np.log(v)) ** (theta - 1)) * (1 + (theta - 1) * A ** (-1 / theta))
      +		
      +	return np.log(pdf)
      +
      +
      + +

      + The copula that provides the best fit is the one that corresponds to the lowest value of AIC criterion. The chosen pair is "QQQ" & "XLK". +

      + + +

      Step 5: Generating the Trading Signals

      +

      + The copula functions include all the information about the dependence structures of two return series. According to Stander Y, Marais D, Botha I. in Trading strategies with copulas, the fitted copula is used to derive the confidence bands for the conditional marginal distribution function of \(C(v\mid u)\) and \(C(u\mid v)\), that is the mispricing indexes. When the market observations fall outside the confidence band, it is an indication that pairs trading opportunity is available. Here we choose 95%  as the upper confidence band, 5% as the lower confidence band as indicated in the paper. The confidence level was selected based on a back-test analysis in the paper that shows using 95% seems to lead to appropriate trading opportunities to be identified. +

      + +

      + Given current returns \(R_x, R_y\) of stock X and stock Y, we define the "mis-pricing indexes" are: +

      + +\[MI_{X|Y}=P(U\leq u\mid V\leq v)=\frac{\partial C(u,v)}{\partial v}\] + +\[MI_{Y|X}=P(V\leq v\mid U\leq u)=\frac{\partial C(u,v)}{\partial u}\] + +

      + For further mathematical proof, please refer to Xie W, Wu Y. Copula-based pairs trading strategy. The conditional probability formulas of bivariate copulas can be derived by taking partial derivatives of copula functions shown in Table 1. The results are as follows: +

      +

      +Gumbel Copula +

      +\[C(v\mid u)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln u)^{\theta-1}\frac{1}{u}\] + +\[C(u\mid v)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln v)^{\theta-1}\frac{1}{v}\] + +

      + Clayton Copula +

      + +\[C(v\mid u)=u^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + +\[C(u\mid v)=v^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + +

      + Frank Copula +

      + +\[C(v\mid u)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta v)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)}  \] + +\[C(u\mid v)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta u)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)} \] + +

      + After selection of trading pairs and the best-fitted copulas, we take the following steps for trading. Please note we implement the Steps 1, 2, 3 and 4 on the first day of each month using the daily data for the last 12 months, which means our empirical distribution functions and copula parameters theta estimation are updated once a month. In summary each month: +

      + +
        +
      • During the 12 months' rolling formation period, daily close prices are used to calculate the daily log returns for the pair of ETFs and then compute Kendall's rank correlation.
      • +
      • Estimate the marginal distribution functions of log returns of X and Y, which are ecdf_x and ecdf_y separately.
      • +
      • Plug Kendall's tau into copula parameter estimation functions to get the value of theta.
      • +
      • Run linear regression over the two price series. The coefficient is used to determine how many shares of stock X and Y to buy and sell. For example, if the coefficient is 2, for every X share that is bought or sold, 2 units of Y are sold or bought.
      • +
      + +
      + +
      def SetSignal(self, slice):
      +	'''Computes the mispricing indices to generate the trading signals.
      +	It's called on first day of each month'''
      +
      +	if self.Time.month == self.month:
      +		return
      +	
      +	## Compute the best copula
      +	
      +	# Pull historical log returns used to determine copula
      +	logreturns = self._get_historical_returns(self.pair, self.numdays)
      +	x, y = logreturns[str(self.pair[0])], logreturns[str(self.pair[1])]
      +
      +	# Convert the two returns series to two uniform values u and v using the empirical distribution functions
      +	ecdf_x, ecdf_y  = ECDF(x), ECDF(y)
      +	u, v = [ecdf_x(a) for a in x], [ecdf_y(a) for a in y]
      +	
      +	# Compute the Akaike Information Criterion (AIC) for different copulas and choose copula with minimum AIC
      +	tau = kendalltau(x, y)[0]  # estimate Kendall'rank correlation
      +	AIC ={}  # generate a dict with key being the copula family, value = [theta, AIC]
      +	
      +	for i in ['clayton', 'frank', 'gumbel']:
      +		param = self._parameter(i, tau)
      +		lpdf = [self._lpdf_copula(i, param, x, y) for (x, y) in zip(u, v)]
      +		# Replace nan with zero and inf with finite numbers in lpdf list
      +		lpdf = np.nan_to_num(lpdf) 
      +		loglikelihood = sum(lpdf)
      +		AIC[i] = [param, -2 * loglikelihood + 2]
      +		
      +	# Choose the copula with the minimum AIC
      +	self.copula = min(AIC.items(), key = lambda x: x[1][1])[0]
      +	
      +	## Compute the signals
      +	
      +	# Generate the log return series of the selected trading pair
      +	logreturns = logreturns.tail(self.lookbackdays)
      +	x, y = logreturns[str(self.pair[0])], logreturns[str(self.pair[1])]
      +	
      +	# Estimate Kendall'rank correlation
      +	tau = kendalltau(x, y)[0] 
      +	
      +	# Estimate the copula parameter: theta
      +	self.theta = self._parameter(self.copula, tau)
      +	
      +	# Simulate the empirical distribution function for returns of selected trading pair
      +	self.ecdf_x, self.ecdf_y  = ECDF(x), ECDF(y) 
      +	
      +	# Run linear regression over the two history return series and return the desired trading size ratio
      +	self.coef = stats.linregress(x,y).slope
      +	
      +	self.month = self.Time.month
      +
      +
      + +

      + Finally during the trading period, each day we convert today's returns to u and v by using empirical distribution functions ecdf_x and ecdf_y. After that, two mispricing indexes are calculated every trading day by using the estimated copula C.  The algorithm constructs short positions in X and long positions in Y on the days that \(MI_{Y|X}<0.05\) and \(MI_{X|Y}>0.95\). It constructs short position in Y and long positions in X on the days that \(MI_{Y|X}>0.95\) and \(MI_{X|Y}<0.05\). +

      + +
      + +
      def OnData(self, slice):
      +	'''Main event handler. Implement trading logic.'''
      +
      +	self.SetSignal(slice)     # only executed at first day of each month
      +
      +	# Daily rebalance
      +	if self.Time.day == self.day:
      +		return
      +	
      +	long, short = self.pair[0], self.pair[1]
      +
      +	# Update current price to trading pair's historical price series
      +	for kvp in self.Securities:
      +		symbol = kvp.Key
      +		if symbol in self.pair:
      +			price = kvp.Value.Price
      +			self.window[symbol].append(price)
      +
      +	if len(self.window[long]) < 2 or len(self.window[short]) < 2:
      +		return
      +	
      +	# Compute the mispricing indices for u and v by using estimated copula
      +	MI_u_v, MI_v_u = self._misprice_index()
      +
      +	# Placing orders: if long is relatively underpriced, buy the pair
      +	if MI_u_v < self.floor_CL and MI_v_u > self.cap_CL:
      +		
      +		self.SetHoldings(short, -self.weight_v, False, f'Coef: {self.coef}')
      +		self.SetHoldings(long, self.weight_v * self.coef * self.Portfolio[long].Price / self.Portfolio[short].Price)
      +
      +	# Placing orders: if short is relatively underpriced, sell the pair
      +	elif MI_u_v > self.cap_CL and MI_v_u < self.floor_CL:
      +
      +		self.SetHoldings(short, self.weight_v, False, f'Coef: {self.coef}')
      +		self.SetHoldings(long, -self.weight_v * self.coef * self.Portfolio[long].Price / self.Portfolio[short].Price)
      +	
      +	self.day = self.Time.day
      +
      +
      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" new file mode 100644 index 0000000..920e147 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 \347\254\254I\351\203\250\345\210\206 \342\200\223 \350\201\224\347\263\273\346\263\225.cn.html" @@ -0,0 +1,332 @@ +

      + 交易所交易基金(ETF)有许多不同的股票板块和资产类别,为我们提供了各种不同的配对交易选择。我们的数据集包括在纳斯达克或纽约证券交易所进行基金买卖交易的每日数据。 +

      + +

      + 我们使用前3年的数据来选择联系和资产配对的最佳组合(“训练形成期”)。接下来,我们使用2011年至2017年的5年时间(“交易期”)来执行策略。在交易期间,我们使用12个月的滚动窗口数据来获取联系参数(“滚动形成期”)。 +

      + +

      步骤1:选择配对股票

      +

      + 配对选择的一般方法基于基础分析和统计分析。 +

      + +

      1)收集可能相关的配对

      +

      + 任何随机对都可以相互关联。这些变量之间可能并没有因果关系,而是由于巧合或存在某种第三种不可见因素而产生了虚假关系。因此,对于我们来说重要的是从一些有共同点的证券开始。为了说明这一点,我们选择了一些在纳斯达克或纽交所交易中流动性最强的基金。这些潜在相关配对之间的关系可能是由于指数、行业或资产类别重叠所造成的。例如,QQQ和XLK就是市场领先指数的两支基金。 +

      + +

      2)采用统计相关性来筛选交易配对

      + +

      + 为了确定分析中所包含的股票配对,将要对预先选择基金对之间的相关性进行分析。以下是我们在统计中常用的三种相关指标: +

      + + + + + + + + + + + + + + + + + + + + + + + + +
      相关测量技术
      Pearson相关系数\[r = \frac{\sum (x_i- \bar{x})(y_i- \bar{y})}{\sqrt{\sum (x_i- \bar{x})^2)\sum (y_i- \bar{y})^2)} }\]
      Kendall秩相关系数\[\tau=\frac{n_c-n_d}{\frac{1}{2}n(n-1)}\]
      Spearman秩相关系数\[\rho=1-\frac{6\sum d_i^2}{n(n^2-1)}\]
       \(n\) = 每个数据集中的值数 +\(n_c\) = 一致数 +\(n_d\) = 不一致数 +\(d_i\) = \(x_i\)和\(y_i\)对应值秩之间的差异。
      + + +

      + 我们可以在Python中使用SciPy统计值程序库中的函数来获得这些系数。利用训练形成期间的每日股价收益率来计算相关系数。我们可以发现这三种相关性技术对配对基金给出了相同的相关系数排名。Pearson相关性假设两个变量都是正态分布的。因此,本文采用Kendall秩作为相关性测量法,并选择具有最高Kendall秩相关性的配对来进行配对交易。通过使用历史函数并将价格转换为对数收益序列,我们可以得出基金对的每日历史收盘价。设Px和Py为股票x和股票y的历史股价序列,则基金配对的对数收益为: +

      + +\[R_x = ln(\frac{P_{x,t}}{P_{x,t-1}}),   R_y = ln(\frac{P_{y,t}}{P_{y,t-1}})\]   t = 1,2,...,n,其中n是价格数据的数量 + +
      + +
      def _pair_selection(self):
      +
      +    tick_syl =  [["QQQ","XME","TNA","FAS","XLF","EWC","QLD"],
      +                 ["XLK","EWG","TLT","FAZ","XLU","EWA","QID"]]
      +    logreturn={}
      +    for i in range(2):
      +        syl = [self.AddSecurity(SecurityType.Equity, x, Resolution.Daily).Symbol.Value for x in tick_syl[i]]
      +        history = self.History(syl, self.lookbackdays,Resolution.Daily)
      +        # 生成配对股票的对数收益序列
      +        close = history['close'].unstack(level=0)
      +        df_logreturn = (np.log(close) - np.log(close.shift(1))).dropna()
      +        for j in tick_syl[i]:
      +            logreturn[j] = df_logreturn[j]
      +    # 不同相关性测量法的估计系数
      +    tau_coef,pr_coef,sr_coef= [],[],[]
      +    for i in range(len(tick_syl[i])):
      +        tik_x, tik_y= logreturn[tick_syl[0][i]], logreturn[tick_syl[1][i]]
      +        tau_coef.append(kendalltau(tik_x, tik_y)[0])
      +        pr_coef.append(pearsonr(tik_x, tik_y)[0])
      +        sr_coef.append(spearmanr(tik_x, tik_y)[0])
      +    index_max = tau_coef.index(max(tau_coef))
      +    self.ticker = [tick_syl[0][index_max],tick_syl[1][index_max]]
      +
      +
      + +

      步骤2:估算对数收益的边缘分布

      +

      + 为了构造联系,我们需要将对数收益序列Rx和Ry转化为两个均匀分布的值u和v。这可以通过估计Rx和Ry的边际分布函数,并将回归值代入一个分布函数来实现。由于我们对两个对数收益序列的分布没有做任何假设,所以在这里我们会使用经验分布函数来接近边际分布F1(Rx)F1(Rx)和F2(Ry)F2(Ry)。统计模型库中的Python 经验累积分布(ECDF)函数将经验性的累积分布函数(CDF)作为阶梯函数提供给我们。 +

      +

      步骤3:估算联系参数

      +

      + 正如上文所讨论的,对于每个阿基米德联系来说,我们通过联系与依附测度Kendall tau之间的关系来估算联系参数。 +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      联系Kendall's tau参数θ
      Clayton联系\[\frac{\theta}{\theta +2}\]\[\theta=2\tau(1-\tau)^{-1}\]
      Gumbel联系\[1-\theta^{-1}\]\[\theta=(1-\tau)^{-1}\]
      Frank联系\[1+4[D_1(\theta)-1]/\theta\]\[arg min\left(\frac{\tau-1}{4}-\frac{D_1(\theta)-1}{\theta}\right)^2\]
      \[D_1(\theta)=\frac{1}{\theta}\int_{0}^{\theta}\frac{t}{exp(t)-1}dt \]
      + +
      + +
      def _parameter(self, family, tau):
      +    if  family == 'clayton':
      +        return 2*tau/(1-tau)
      +    elif family == 'frank':
      +        # debye = quad(被积函数,sys.float_info.epsilon, theta)[0]/theta是一阶Debye函数
      +    	# frank_fun是平方差
      +    	# 将frank_fun最小化可以得出直接联系的参数theta
      +      integrand = lambda t: t/(np.exp(t)-1)
      +    	frank_fun = lambda theta: ((tau - 1)/4.0  - (quad(integrand, sys.float_info.epsilon, theta)[0]/theta - 1)/theta)**2
      +      return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x
      +    elif family == 'gumbel':
      +        return 1/(1-tau)
      +
      + +

      步骤4:选择最适合的联系

      +

      + 得到联系函数的参数估计值后,我们使用AIC准则来选择最适合算法初始化的联系。 +

      + +\[AIC=-2L(\theta)+2k\] + +

      + 其中\(L(\theta)=\sum_{t=1}^T\log c(u_t,v_t;\theta)\)是对数似然函数,k是参数的数量,在这里k=1。 +

      + +

      + 各联系函数的密度函数如下: +

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      联系密度函数c(u,v;θ)
      Clayton联系\[(\theta+1)(u^{-\theta}+v^{-\theta}-1)^{-2-1/\theta}u^{-\theta-1}v^{-\theta-1}\]
      Gumbel联系\[C(u,v;\theta)(uv)^{-1}A^{-2+2/\theta}[(\ln u)(\ln v)]^{\theta -1}[1+(\theta-1)A^{-1/\theta}]\]
      Frank联系\[\frac{-\theta(exp(-\theta)-1)(exp(-\theta(u+v)))}{((exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1))^2}\]
      \[A=(-\ln u)^{\theta}+(-\ln v)^{\theta}\]
      + +
      + +
      def _lpdf_copula(self, family, theta, u, v):
      +    ''' estimate the log probability density function of three kinds of Archimedean copulas '''
      +    if  family == 'clayton':
      +        pdf = (theta+1) * ((u**(-theta)+v**(-theta)-1)**(-2-1/theta)) * (u**(-theta-1)*v**(-theta-1))
      +    elif family == 'frank':
      +        num = -theta * (np.exp(-theta)-1) * (np.exp(-theta*(u+v)))
      +        denom = ((np.exp(-theta*u)-1) * (np.exp(-theta*v)-1) + (np.exp(-theta)-1))**2
      +        pdf = num/denom
      +    elif family == 'gumbel':
      +        A = (-np.log(u))**theta + (-np.log(v))**theta
      +        c = np.exp(-A**(1/theta))
      +        pdf = c * (u*v)**(-1) * (A**(-2+2/theta)) * ((np.log(u)*np.log(v))**(theta-1)) * (1+(theta-1)*A**(-1/theta))
      +    return np.log(pdf)
      +
      +
      + +

      + 所提供最适合的联系应对应于AIC准则的最低值。所选择的配对是“QQQ”和“XLK”。 +

      + +
      + +
      self.family = ['clayton', 'frank', 'gumbel']
      +tau = kendalltau(x, y)[0]  # 估算Kendall秩相关
      +AIC ={}  # 生成一个关键字为联系系列的字典,值 = [theta, AIC]
      +for i in self.family:
      +    lpdf = [self._lpdf_copula(i, self._parameter(i,tau), x, y) for (x, y) in zip(u, v)]
      +    # 在lpdf列表中用零替换非数字,用有限数目替换无穷大
      +    lpdf = np.nan_to_num(lpdf)
      +    loglikelihood = sum(lpdf)
      +    AIC[i] = [self._parameter(i,tau), -2*loglikelihood + 2]
      +    # 选择AIC最小的联系
      +    self.copula = min(AIC.items(), key = lambda x: x[1][1])[0]
      +
      +
      + + +

      步骤5:生成交易信号

      +

      + 联系函数中包含了两个收益序列依附结构的所有信息。根据Stander Y、Marais D和Botha I,在有联系的交易策略中,使用适合联系推导出\(C(v\mid u)\)和\(C(u\mid v)\)条件边际分布函数的置信区间,即错误定价指数。当市场观察值处于置信区间之外时,表明配对交易机会是可用的。在这里,我们选取95%作为置信区间上边际,5%作为置信区间下边际。置信水平的选择是基于本文的反测试分析,该分析表明,使用95%的置信水平应该可以确定适当的交易机会。 +

      + +

      + 将股票X、股票Y的当前收益设为\(R_x, R_y\),我们可以将“错误定价指数”定义为: +

      + +\[MI_{X|Y}=P(U\leq u\mid V\leq v)=\frac{\partial C(u,v)}{\partial v}\] + +\[MI_{Y|X}=P(V\leq v\mid U\leq u)=\frac{\partial C(u,v)}{\partial u}\] + +

      + 关于进一步的数学证明,请参考Xie W和Wu Y的《以联系为基础的配对交易策略》。通过表1中联系函数的偏导数,可以推导出二元联系的条件概率公式。结果如下: +

      +

      +Gumbel联系 +

      +\[C(v\mid u)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln u)^{\theta-1}\frac{1}{u}\] + +\[C(u\mid v)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln v)^{\theta-1}\frac{1}{v}\] + +

      + Clayton联系 +

      + +\[C(v\mid u)=u^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + +\[C(u\mid v)=v^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] + +

      + Frank联系 +

      + +\[C(v\mid u)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta v)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)}  \] + +\[C(u\mid v)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta u)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)} \] + +

      + 在选择交易配对和最合适的联系后,我们采取下列步骤进行交易。请注意,我们在每个月的第一天使用过去12个月的每日数据来实施步骤1、2、3、4,这意味着我们的经验分布函数和联系参数theta估值会每月更新一次。在每月总结中: +

      + +
        +
      • 在12个月的滚动形成期内,使用日收盘价计算这对基金的每日对数收益,然后计算Kendall秩的相关性。
      • +
      • 估算X和Y对数收益的边际分布函数,分别为ecdf_x和ecdf_y。
      • +
      • 将Kendall tau代入联系参数估计函数,得到theta的值。
      • +
      • 对两个价格系列进行线性回归。这个系数用来决定股票X和股票Y的买卖数量。例如,如果系数是2,每买入或卖出一股X,就买入或卖出2股Y。
      • +
      + +
      + +
      def _set_signal(self):
      +    history = self.History(self.ticker, self.lookbackdays,Resolution.Daily)
      +    # 生成配对股票的对数收益序列
      +    close = history['close'].unstack(level=0)
      +    logreturn = (np.log(close) - np.log(close.shift(1))).dropna()
      +    x, y = logreturn[self.ticker[0]], logreturn[self.ticker[1]]
      +    # 估算每个交易日的Kendall秩相关
      +    tau = kendalltau(x, y)[0]
      +    # 估算联系参数:theta
      +    self.theta = self._parameter(self.copula, tau)
      +    # 模拟两对股票收益的经验分布函数
      +    self.ecdf_x, self.ecdf_y  = ECDF(x), ECDF(y)
      +    # 对两个历史收益序列进行线性回归
      +    self.coef = stats.linregress(x,y).slope
      +
      +
      + +

      + 最后,在交易期间,我们每天使用经验分布函数ecdf_x和ecdf_y将当天的收益转换为u和v。然后,利用估算的联系C,在每个交易日计算两个错误定价指标。\(MI_{Y|X}<0.05\)和\(MI_{X|Y}>0.95\)的日子,算法构建了X的空头头寸和Y的多头头寸。\(MI_{Y|X}>0.95\)且\(MI_{X|Y}<0.05\)时,构建Y的空头头寸和X的多头头寸。 +

      + +
      + +
      def OnData(self,data):
      +    for i in self.syl:
      +        self.price_list[i].append(self.Portfolio[i].Price)
      +    # 计算两支股票的当天对数收益
      +    if len(self.price_list[self.syl[0]]) < 2 or len(self.price_list[self.syl[1]]) < 2: return
      +    else:
      +        return_x = np.log(float(self.price_list[self.syl[0]][-1]/self.price_list[self.syl[0]][-2]))
      +        return_y = np.log(float(self.price_list[self.syl[1]][-1]/self.price_list[self.syl[1]][-2]))
      +    # 使用经验分布函数将两种收益转换为统一值u和v
      +    u_value = self.ecdf_x(return_x)
      +    v_value = self.ecdf_y(return_y)
      +    # 用估算联系来计算u和v的错误定价指数
      +    self._misprice_index(self.copula, self.theta, u_value, v_value)
      +    quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      +    if self.MI_u_v < self.floor_CL and self.MI_v_u > self.cap_CL:
      +        if self.Portfolio[self.syl[0]].Quantity < 0 and self.Portfolio[self.syl[1]].Quantity > 0:
      +            self.Liquidate(self.syl[0])
      +            self.Liquidate(self.syl[1])
      +            quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      +            self.Sell(self.syl[1], 1 * quantity )
      +            self.Buy(self.syl[0], self.coef * quantity)
      +        else:
      +            self.Sell(self.syl[1], 1 * quantity )
      +            self.Buy(self.syl[0], self.coef * quantity)
      +    elif self.MI_u_v > self.cap_CL and self.MI_v_u < self.floor_CL:
      +        if self.Portfolio[self.syl[0]].Quantity > 0 and self.Portfolio[self.syl[1]].Quantity < 0:
      +            self.Liquidate(self.syl[0])
      +            self.Liquidate(self.syl[1])
      +            quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      +            self.Buy(self.syl[1], 1 * quantity )
      +            self.Sell(self.syl[0], self.coef * quantity)
      +        else:
      +            self.Buy(self.syl[1], 1 * quantity )
      +            self.Sell(self.syl[0], self.coef * quantity)
      +
      +
      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html new file mode 100755 index 0000000..d36c895 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html @@ -0,0 +1,52 @@ +

      + For the cointegration pairs trading method, we choose the same ETF pair "GLD" and "DGL".  There is no need to choose a copula function so there is only a 12 month rolling formation period. The trading period is 5 years from January 2011 to  May 2017. +

      + +

      Step 1: Generate the Spread Series

      +

      + At the start of each month, we generate the log price series of two ETFs with the daily close. Then the spread series is estimated using regression analysis based on log price series data. For equities X and Y, we run linear regression over the log price series and get the coefficient β. +

      + +\[spread_t=\log(price_t^y)-\beta \log(price_t^x)\] + +

      Step 2: Compute the Signals

      + +

      + Using the standard deviation of spread during the rolling formation period, a threshold of one standard deviation + is set up for the trading strategy. We enter a trade whenever the spread moves more than one standard deviations + away from its mean. Trades are exited when the spread reverts back to the mean trailing spread value. The position + sizes are scaled by the coefficient β. +

      + +
      + +
      log_close_x = np.log(self.closes_by_symbol[self.x_symbol])
      +log_close_y = np.log(self.closes_by_symbol[self.y_symbol])
      +
      +spread, beta = self.regr(log_close_x, log_close_y)
      +
      +mean = np.mean(spread)
      +std = np.std(spread)
      +
      +x_holdings = self.Portfolio[self.x_symbol]
      +
      +if x_holdings.Invested:
      +    if x_holdings.IsShort and spread[-1] <= mean or \
      +        x_holdings.IsLong and spread[-1] >= mean:
      +        self.Liquidate()
      +else:
      +    if beta < 1:
      +        x_weight = 0.5
      +        y_weight = 0.5 / beta
      +    else:
      +        x_weight = 0.5 / beta
      +        y_weight = 0.5
      +    
      +    if spread[-1] < mean - self.threshold * std:
      +        self.SetHoldings(self.y_symbol, -y_weight) 
      +        self.SetHoldings(self.x_symbol, x_weight)
      +    if spread[-1] > mean + self.threshold * std:
      +        self.SetHoldings(self.x_symbol, -x_weight)
      +        self.SetHoldings(self.y_symbol, y_weight)
      +
      +
      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" new file mode 100644 index 0000000..93cb5d9 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 \347\254\254II\351\203\250\345\210\206 \342\200\223 \345\215\217\346\225\264\346\263\225.cn.html" @@ -0,0 +1,47 @@ +

      + 对于协整配对交易法,我们选择了相同的基金对“GLD”和“DGL”。不需要选择联系函数,因此只有12个月的滚动形成周期。交易期为5年,从2011年1月到2017年5月。 +

      + +

      步骤1:生成价差序列

      +

      + 在每个月月初,我们使用每日收盘价生成两支基金的对数价格序列。然后基于对数价格序列数据,采用回归分析法对价差序列进行估算。对于股票X和Y,我们对对数价格序列进行线性回归,得到系数β。 +

      + +\[spread_t=\log(price_t^y)-\beta \log(price_t^x)\] + +

      步骤2:计算阈值

      + +

      + 在本文中,利用滚动形成期价差的标准差,为交易策略设定了两个标准差的阈值。 +

      + +
      + +
      price_x = pd.Series([float(i.Close) for i in self.symbols[0].hist_window],
      +                     index = [i.Time for i in self.symbols[0].hist_window])
      +
      +price_y = pd.Series([float(i.Close) for i in self.symbols[1].hist_window],
      +                     index = [i.Time for i in self.symbols[1].hist_window])
      +if len(price_x) < 250: return
      +spread = self.regr(np.log(price_x), np.log(price_y))
      +mean = np.mean(spread)
      +std = np.std(spread)
      +ratio = floor(self.Portfolio[self.symbols[1]].Price / self.Portfolio[self.symbols[0]].Price)
      +if spread[-1] > mean + self.threshold * std:
      +    if not self.Portfolio[self.symbols[0]].Quantity > 0 and not self.Portfolio[self.symbols[0]].Quantity < 0:
      +        self.Sell(self.symbols[1], 100)
      +        self.Buy(self.symbols[0],  ratio * 100)
      +
      +elif spread[-1] < mean - self.threshold * std:
      +    if not self.Portfolio[self.symbols[0]].Quantity < 0 and not self.Portfolio[self.symbols[0]].Quantity > 0:
      +        self.Sell(self.symbols[0], 100)
      +        self.Buy(self.symbols[1], ratio * 100)
      +else:
      +    self.Liquidate()
      +
      +
      + +

      步骤3:设置交易信号

      +

      + 在每个交易日,只要价差偏离平均值超过两个标准差,我们就进入交易。换句话说,我们在价差平均值+2*std的当天构建X的空多头寸和Y的多头头寸。当价差<平均值-2*std时,我们在当天构建Y的空多头寸和X的多头头寸。如果价差恢复到均衡水平(定义为偏离零价差小于标准差的一半),就会退出交易。平均值和标准偏差的值从滚动形成周期开始计算,每月更新一次。 +

      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html new file mode 100755 index 0000000..44ab024 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html @@ -0,0 +1,35 @@ +

      + Ultimately pairs trading intends to capture the price divergence of two correlated assets through mean reversion. Our results demonstrate that the copula approach for pairs trading is superior to the conventional cointegration method because it is based on the probability of the dependence structure, vs cointegration which relies on simple linear regression variance from normal pricing. We found through testing the performance of the copula method less sensitive to the starting parameters. Because the cointegration method relies on standard distribution and the ETF pairs had low volatility there were few trading opportunities. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      methodTransactionsProfitSharpe RatioDrawdown
      Copula4938.884%0.1226.1%
      Cointegration1264.517%0.1963.9%
      + +

      + Generally, ETFs are not very volatile and so mean-reversion did not provide many trading opportunities. There are only 91 trades during 5 years for cointegration method. It is observed that the use of copula in pairs trading provides more trading opportunities as it does not require any rigid assumptions according to Liew R Q, Wu Y. - Pairs trading A copula approach. +

      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..27fcc84 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,35 @@ +

      + 配对交易的最终目的是通过平均值回归来捕捉两种相关资产的价格差异。我们的结果表明,配对交易的联系方法要优于传统的协整方法,因为联系法基于依附结构的概率,而协整法则依赖于正常定价的简单线性回归方差。通过对联系法性能的测试,发现联系法对启动参数的敏感性较低。由于协整方法依赖于标准分布,基金对的波动性较小,交易机会也较少。 +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      方法交易利润夏普指数动用资金
      联系法346274.293%1.02219.4%
      协整法9126.358%0.29823.7%
      + +

      + 一般情况下,基金的波动性并不大,因此均值回归并不会提供太多交易机会。在5年的时间里,只有39笔交易采用了协整法。根据Liew R Q和Wu Y的《配对交易联系法》,我们发现在配对交易中使用联系法可以提供更多的交易机会,因为它不需要任何严格的假设。 +

      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html new file mode 100755 index 0000000..228f289 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtest for copula method +

      +
      +
      +
      + +
      +
      + +

      + Backtest for cointegration method +

      +
      +
      +
      + +
      +
      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..c5d9f52 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,19 @@ +

      + 联系法的回溯测试 +

      +
      +
      +
      + +
      +
      + +

      + 协整法的回溯测试 +

      +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 References.html b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 References.html new file mode 100644 index 0000000..1d7ae89 --- /dev/null +++ b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 References.html @@ -0,0 +1,32 @@ +
        +
      1. + Stander Y, Marais D, Botha I. Trading strategies with copulas[J]. Journal of Economic and Financial Sciences, 2013, 6(1): 83-107. Online Copy +
      2. +
      3. + Hanson T A, Hall J R. Statistical arbitrage trading strategies and high-frequency trading[J]. 2012. Online Copy +
      4. +
      5. + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012.  Online Copy +
      6. +
      7. + Rad H, Low R K Y, Faff R. The profitability of pairs trading strategies: distance, cointegration and copula methods[J]. Quantitative Finance, 2016, 16(10): 1541-1558.online copy +
      8. +
      9. + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012.  Online Copy +
      10. +
      11. + LANDGRAF N, SCHOLTUS K, DIRIS D R B. High-Frequency copula-based pairs trading on US Goldmine Stocks[J]. 2016. +
      12. +
      13. + Genest, C. and MacKay, J., 1986, The Joy of Copulas: Bivariate Distributions with Uniform Marginals, The American Statistician, 40, 280-283 +
      14. +
      15. + Jean Folger, Pairs Trading Example Online Copy +
      16. +
      17. + Xie W, Wu Y. Copula-based pairs trading strategy[C] Asian Finance Association (AsFA) 2013 Conference. doi. 2013, 10. +
      18. +
      19. + Liew R Q, Wu Y. Pairs trading: A copula approach[J]. Journal of Derivatives & Hedge Funds, 2013, 19(1): 12-30. +
      20. +
      diff --git "a/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..1d7ae89 --- /dev/null +++ "b/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,32 @@ +
        +
      1. + Stander Y, Marais D, Botha I. Trading strategies with copulas[J]. Journal of Economic and Financial Sciences, 2013, 6(1): 83-107. Online Copy +
      2. +
      3. + Hanson T A, Hall J R. Statistical arbitrage trading strategies and high-frequency trading[J]. 2012. Online Copy +
      4. +
      5. + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012.  Online Copy +
      6. +
      7. + Rad H, Low R K Y, Faff R. The profitability of pairs trading strategies: distance, cointegration and copula methods[J]. Quantitative Finance, 2016, 16(10): 1541-1558.online copy +
      8. +
      9. + Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012.  Online Copy +
      10. +
      11. + LANDGRAF N, SCHOLTUS K, DIRIS D R B. High-Frequency copula-based pairs trading on US Goldmine Stocks[J]. 2016. +
      12. +
      13. + Genest, C. and MacKay, J., 1986, The Joy of Copulas: Bivariate Distributions with Uniform Marginals, The American Statistician, 40, 280-283 +
      14. +
      15. + Jean Folger, Pairs Trading Example Online Copy +
      16. +
      17. + Xie W, Wu Y. Copula-based pairs trading strategy[C] Asian Finance Association (AsFA) 2013 Conference. doi. 2013, 10. +
      18. +
      19. + Liew R Q, Wu Y. Pairs trading: A copula approach[J]. Journal of Derivatives & Hedge Funds, 2013, 19(1): 12-30. +
      20. +
      diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/01 Abstract.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/01 Abstract.html new file mode 100755 index 0000000..516dc8f --- /dev/null +++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/01 Abstract.html @@ -0,0 +1,13 @@ +

      + In this tutorial we will take a close look at the Dynamic Breakout II strategy based on the book Building Winning Trading Systems. +

      +

      + First we decide the look-back period based on the change rate of volatility, then we make trading decisions based on the highest high and lowest low from the look back period as well as a Bollinger Bands indicator. It is an auto adaptive trading system that can adjust its buy and sell rules depending on the performance of these rules in the past. In addition to Forex markets it is widely used in future and equity markets. You can refer to this video to learn more about dynamic break out II. +

      + +

      + The original Dynamic Break Out system was developed by George Pruitt for Futures Magazine in 1996. The logic behind the dynamic breakout system is that the volatility component changes the lookback period, then the enter and exit points are decided by the highest high and lowest low price over the lookback period.  The newer version of the Dynamic Break Out is just like the original, except we introduce the Bollinger Band and adjust the number of look back days using the market volatility, so different market conditions perform better with different parameters. In addition, the stop loss signal is fixed in version one, but in version two the liquidate point is based on the moving average indicator and the length of moving average is dynamically changed with the look-back period. +

      +

      + We backtested the strategy on EURUSD and GBPUSD over 6 years period.  The result suggests a drawdown of 20% and the strategy caught the market turning points. It is especially profitable in a trending market. +

      diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/02 Method.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/02 Method.html new file mode 100755 index 0000000..9c029fb --- /dev/null +++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/02 Method.html @@ -0,0 +1,57 @@ +

      Step 1: Determine the look back periods

      + +

      + The lookback period is the number of bars back from the most recent bar that the price or indicator looks at to make the momentum calculations. + To start the look back period is set to 20 days to determine its buy and sell levels. We change the number of look back days in proportion to changes in market volatility. Through this method the number of look back days changes on a daily basis. At the end of each day, the current market volatility is calculated by the standard deviation of the past 30 day's closing prices. +

      +
      + +
      close = self.History(self.syl, 31, Resolution.Daily)['close']
      +   todayvol = np.std(close[1:self.numdays+1])
      +   yesterdayvol = np.std(close[0:self.numdays])
      +   deltavol = (todayvol - yesterdayvol) / todayvol
      +   self.numdays = round(self.numdays * (1 + deltavol)) # the number of days must be integer
      + 
      +
      + +

      + Though the look back days are dynamic, it needs to be restricted within an acceptable range of 20 to 60. +

      + +

      Step 2: Choose the algorithm buy/sell point

      + +

      + For a buy setup, the close price of the previous day must be above the upper Bollinger Band. In addition the ask price must be above the highest high of the most recent N days. Where N is the look back days from Step-1. + For a sell setup, the close price of previous day must be below the lower Bollinger Band and the ask price must be below the lowest low of the most recent N days. The length of the Bollinger Band calculation is the same number of look back days that is generated by Step-1. +

      +

      + Bollinger Band is a popular technical indicator. k is a constant. Here we choose k=2. +

      +\[ Upper Band = moving\ average + k\times standard\  deviation \] + +\[ Lower Band = moving\ average - k\times standard\  deviation \] +

      + QuantConnect provides more than 100 technical indicators for you to use in your algorithm. These are provided as class objects in Python. A full list of the indicators and their properties can be found in the reference table of the documentation page. +

      +
      + +
      self.bolband = self.BB(self.syl,self.numdays,decimal.Decimal(2),MovingAverageType.Exponential,Resolution.Daily)
      +     self.upband = self.bolband.UpperBand
      +     self.lowband = self.bolband.LowerBand
      +
      +
      + +

      Step 3: Choose the algorithm liquidation point

      +

      + The exit signal for an existing holding is determined by calculating a simple moving average of closing prices for the past look back days. That is to say, we liquidate a long position if the current price is lower than the moving average of the close price over the look back period, and vice versa for selling a short position. +

      +
      + +
      self.buypoint = max(self.high)
      +self.sellpoint = min(self.low)
      +historyclose = self.History(self.syl, self.numdays, Resolution.Daily)['close']
      +self.longLiqPoint = np.mean(historyclose)
      +self.shortLiqPoint = np.mean(historyclose)
      +self.yesterdayclose = historyclose.iloc[-1]
      +
      +
      diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/03 Conclusion.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/03 Conclusion.html new file mode 100755 index 0000000..ca4ed1c --- /dev/null +++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/03 Conclusion.html @@ -0,0 +1,10 @@ +

      + For six years backtesting of EURUSD, the overall statistics show an annual rate of return of 2.3% and with a Sharpe Ratio of 0.31. EURUSD has a significant uptrend from 2010 to 2012. This momentum strategy outperforms the market and seems to be profitable from 2010 to 2014.  The maximum drawdown occurs in May 2015 to December 2015 and is roughly 14%. From our results we find the strategy works best in an trending forex market. +

      +

      + In contrast, GBPUSD is pretty volatile during the tested period from 2010 to 2016. Our testing demonstrated a negative annual rate of return with a drawdown of approximately 19%. + When the volatility decreases, the price tends to continue following the current trend. Volatility causes the the look back days to decrease when computing the bollinger bands, making it easier to enter a trade.  If the market volatility increases we increase the look back days in order to filter the fake signals, making it harder to enter a trade. +

      +

      + Here we use the standard deviation of price as a measure of market volatility. To improve the model we could choose other measures of volatility like standard deviation of logarithm return series or other stochastic volatility measures. +

      diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html new file mode 100755 index 0000000..3358861 --- /dev/null +++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html @@ -0,0 +1,18 @@ +

      + Backtest for EURUSD +

      +
      +
      +
      + +
      +
      +

      + Backtest for GBPUSD +

      +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/04 The Dynamic Breakout II Strategy/05 References.html b/04 Strategy Library/04 The Dynamic Breakout II Strategy/05 References.html new file mode 100644 index 0000000..789d29f --- /dev/null +++ b/04 Strategy Library/04 The Dynamic Breakout II Strategy/05 References.html @@ -0,0 +1,9 @@ +
        +
      1. + George Pruitt, John R. Hill, Michael Russak (September 2012). Building Winning Trading Systems, page 126,  Online Copy +
      2. +
      3. + Robert C. Miner(October 20, 2008). High Probability Trading Strategies: Entry to Exit Tactics for the Forex, Futures, and Stock Markets, page 37,  Online Copy +
      4. +
      5. +
      diff --git a/04 Strategy Library/05 Dual Thrust Trading Algorithm/01 Abstract.html b/04 Strategy Library/05 Dual Thrust Trading Algorithm/01 Abstract.html new file mode 100755 index 0000000..70f3f5b --- /dev/null +++ b/04 Strategy Library/05 Dual Thrust Trading Algorithm/01 Abstract.html @@ -0,0 +1,6 @@ +

      + The Dual Thrust trading algorithm is a famous strategy developed by Michael Chalek. It has been commonly used in futures, forex and equity markets. The idea of Dual Thrust is similar to a typical breakout system, however dual thrust uses the historical price to construct update the look back period - theoretically making it more stable in any given period. +

      +

      + In this tutorial we give a brief introduction to the strategy and show how to implement this algorithm on QuantConnect. After pulling in the historical price of the chosen stock, the range is calculated based on the close, high and low over the most recent N-days.  A position is opened when the market moves a certain range from the opening price. We tested the strategy on individual stocks under two market states: a trending market and range bound market.  The results suggest this momentum trading system works better in trending market but will trigger some fake buy and sell signals in much more volatile market. Under the range bound market, we can adjust the parameters to get better return. As a comparison of individual stocks, we also implemented the strategy on SPY. The result suggested that the strategy beat the market. +

      diff --git a/04 Strategy Library/05 Dual Thrust Trading Algorithm/02 Method.html b/04 Strategy Library/05 Dual Thrust Trading Algorithm/02 Method.html new file mode 100755 index 0000000..53cb527 --- /dev/null +++ b/04 Strategy Library/05 Dual Thrust Trading Algorithm/02 Method.html @@ -0,0 +1,71 @@ +

      Step 1 : Initialization of algorithm

      +

      + Firstly we need to initialize the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must be initialized. +

      + +
      + +
      def Initialize(self):
      +  self.SetStartDate(2004, 1, 1)
      +  self.SetEndDate(2017, 8, 30)
      +  self.SetCash(100000)
      +  equity = self.AddSecurity(SecurityType.Equity, "SPY", Resolution.Hour)
      +  self.syl = equity.Symbol
      +
      +
      +

      + Although this is an intraday strategy, we still want to test the strategy within a long period not just within one day. The scheduling methods sets up an event to fire at a specific date or time and will execute the scheduled event function. +

      + +
      + +
      self.Schedule.On(self.DateRules.EveryDay(self.syl),self.TimeRules.AfterMarketOpen(self.syl,0),Action(self.SetSignal))
      +
      +
      +

      + Here Schedule.On(DateRules, TimeRules, Action()) will trigger every trading day for our stock, at market open. Events are scheduled using date and time rules. Date rules specify on what dates and event will fire. Time rules specify at what time on those dates the event will fire. Inside of the scheduled function, we can pull the recent historical data and current open price each trading day. +

      + +

      Step 2:  Implementation of algorithm

      +Tutorial05-dual-thrust-price-range + +

      + In order to calculate the range, each trading day we need the close, high and low price data over the most recent N days. In addition, the open price of the current day is required in order to generate the signals. QuantConnect provides History(Symbol, TimeSpan, Resolution) method to get the history data like open, close, high and low for all configured securities over the requested N-days time span. Then the range is calculated by \[range = max(HH-LC, HC-LL)\]. In this implementation we choose N=4. It is less than one week and the range would reflect the recent price change. +

      + +
      + +
      history = self.History([self.syl.Value], 4, Resolution.Daily)
      +  self.high = history.loc[self.syl.Value]['high']
      +  self.low = history.loc[self.syl.Value]['low']
      +  self.close = history.loc[self.syl.Value]['close']
      +
      +
      + +

      Step 3: Trading Implementation

      +

      + The long signal is calculated by \[cap = open + K_1 \times Range\]. The short signal is calculated by \[floor = open – K_2 \times  Range\] where K1 and K2 are the parameters. When K1 is greater than K2, it is much easier to trigger the long signal and vice versa. For demonstration, here we choose K1 = K2 = 0.5. In live trading, we can still use historical data to optimize those parameters or adjust the parameters according to the market trend. K1 should be small than k2 if you are bullish on the market and k1 should be much bigger if you are bearish on the market. +

      + +Tutorial05-dual-thrust-trading + +

      + This system is a reversal system, so if the investor holds a short position when the price breaks the cap line, the short margin should be liquidated first before opening a long position. If the investor holds a long position when the price breaks the floor line, the long margin should be liquidated first before opening a new short position. +

      + +
      + +
       holdings = self.Portfolio[self.syl].Quantity
      +        if self.Portfolio[self.syl].Price >= self.selltrig:
      +            if holdings >= 0:
      +                self.SetHoldings(self.syl, 1)
      +            else:
      +                self.Liquidate(self.syl)
      +                self.SetHoldings(self.syl, 1)
      +        elif self.Portfolio[self.syl].Price < self.selltrig: if holdings >= 0:
      +                self.Liquidate(self.syl)
      +                self.SetHoldings(self.syl, -1)
      +            else:
      +                self.SetHoldings(self.syl, -1)
      +
      +
      diff --git a/04 Strategy Library/05 Dual Thrust Trading Algorithm/03 Conclusion.html b/04 Strategy Library/05 Dual Thrust Trading Algorithm/03 Conclusion.html new file mode 100755 index 0000000..62ab919 --- /dev/null +++ b/04 Strategy Library/05 Dual Thrust Trading Algorithm/03 Conclusion.html @@ -0,0 +1,3 @@ +

      + We tested this strategy on the S&P 500 ETF SPY from 2004 to 2017. During the backtesting period, SPY resulted in a Sharpe Ratio of -0.37 and the drawdown is 65.7%. This is just a basic implementation and the parameters K1 and K2 are fixed. The strategy can be further extended to Futures and Forex markets. When K1 is smaller than K2, buy signals are prone to trigger and vice versa. To improve the model we can apply technical indicators to judge the trend of price and adjust the value of two parameters dynamically and apply risk control in the position sizing. +

      diff --git a/04 Strategy Library/05 Dual Thrust Trading Algorithm/04 Algorithm.html b/04 Strategy Library/05 Dual Thrust Trading Algorithm/04 Algorithm.html new file mode 100755 index 0000000..bd1b269 --- /dev/null +++ b/04 Strategy Library/05 Dual Thrust Trading Algorithm/04 Algorithm.html @@ -0,0 +1,9 @@ +

      + Backtest result for ETF: SPY from 2004 to 2017 +

      +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/05 Dual Thrust Trading Algorithm/05 References.html b/04 Strategy Library/05 Dual Thrust Trading Algorithm/05 References.html new file mode 100644 index 0000000..ef5c6ab --- /dev/null +++ b/04 Strategy Library/05 Dual Thrust Trading Algorithm/05 References.html @@ -0,0 +1,5 @@ +
        +
      1. + Gang Wei(May 2012). Dual Thrust Intraday Strategy,  Online Copy +
      2. +
      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/01 Abstract.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/01 Abstract.html new file mode 100755 index 0000000..1a715ed --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/01 Abstract.html @@ -0,0 +1,10 @@ +

      + In this tutorial we use regression to predict the return from the stock market and compare it to the short-term U.S. T-bill rate. It is based on the paper?"Striking Oil: Another Puzzle?". by Gerben, Ben and Benjamin (2007). + If the predicted return is larger than the risk-free rate, the portfolio is fully invested in stock; if the predicted return is lower than the risk-free rate, the portfolio is invested in short-term U.S T-bills. The backtesting period starts in 1980 and is divided into an in-sample period where regression analysis is made and an out?of sample period where the regression result is embedded "statically" into the strategy. +

      +

      + In our implementation of the strategy we adapt the method of the original paper to make it more applicable to the current market. We have set our backtesting period to be from 2010 to 2017 and we refresh our regression analysis each month to form a rolling dynamic projection. This is because?empirical evidence shows?us the correlation between oil and stocks is not as strong as in the 1980's. We use?the price of S&P GSCI? Crude Oil Total Return Index ETNs to represent spot oil price, and import T-bill data from Quandl by defining a custom class.?We use the "Schedule" API to trigger an event every month automatically?and the "History" function to retrieve data for regression analysis. +

      +

      + Our analysis shows this strategy under performs the market in recent years. In the 9 year analysis period the algorithm was mostly long the S&P500 index and only 9 trades were performed as the markets were strongly bullish. The trades could potentially simply be due to the weakening of the relationship between stocks and oil. +

      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/02 Background.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/02 Background.html new file mode 100755 index 0000000..368ea3b --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/02 Background.html @@ -0,0 +1,15 @@ +

      + We assume the predicted return of the stock is proportional to the return of oil. This can be represented by the regression equation: +

      + +\[r^{stock}_t=a_0+a_1r^{oil}_{t-1}+e_t\] + +

      + with +

      + +\[e_t=r^{stock}_t-E_{t-1}[r^{stock}_t]\]. + +

      + The independent variable is the return of the oil and the dependent variable is the return of the stock. We use the monthly returns over a regression period of 2 years, giving us 22 observations to regress.?Every month regression analysis is conducted, and we use the estimated coefficient from the regression to compute the expected stock return with the given return of oil. +

      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/03 Method.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/03 Method.html new file mode 100755 index 0000000..46a7747 --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/03 Method.html @@ -0,0 +1,109 @@ +

      + The algorithm implementation consists of mainly three parts: Defining the custom imported data, initialization of the strategy parameters, and monthly re-balancing of the portfolio. +

      + +

      Step 1: Defining Custom Imported Data

      +

      + We import T-Bill data from Quandl - a marketplace for financial, economic and alternative data. This requires defining a small class that tells QuantConnect how to interpret?the Quandl data. +

      + +
      + +
      class TBill(PythonData):
      +    def GetSource(self, config, date, isLiveMode):
      +        return SubscriptionDataSource("https://www.quandl.com/api/v3/datasets/USTREASURY/BILLRATES.csv?api_key=XXXXXXXXX&order=asc", SubscriptionTransportMedium.RemoteFile)
      +    def Reader(self, config, line, date, isLiveMode):
      +        tbill = TBill()
      +        tbill.Symbol = config.Symbol
      +        # Example Line Format:
      +        # Date      4 Wk Bank Discount Rate
      +        # 2017-06-01 		0.8
      +        if not (line.strip() and line[0].isdigit()): return None
      +        try:
      +            data = line.split(',')
      +            value = float(data[1])*0.01
      +            value = decimal.Decimal(value)
      +            if value == 0: return None
      +            tbill.Time = datetime.strptime(data[0], "%Y-%m-%d")
      +            tbill.Value = value
      +            tbill["Close"] = float(value)
      +            return tbill;
      +        except ValueError:
      +            return None
      +
      +
      +

      + We first provide the source of the data as a URL to Quandl's API in the GetSource method. We need to make sure the data is?organized in ascending order which is done with the?"order=asc" parameter.?You need to substitute the API key in the URL for your personal Quandl API token. + The Reader method parses a line of the data file. When using custom data you need to minimally set?the Time property?and Value property. In this example we find the value property from the headings in the spreadsheet is the second column and we reference it with data[1]. We set the Close property to the same value. +

      + +

      + In our "Initialize" function we use the following commands to add the custom data into our portfolio. +

      + +
      + +
      self.AddData(TBill, "tbill")
      +self.tbill = self.Securities["tbill"].Symbol
      +
      +
      +

      Step 2: Initialization of the Strategy Parameters

      +

      + In our?"Initialize" function we set the cash amount, start-end date as well as other parameters that are specific to this strategy.?We set two parameters for the regression analysis period: +

      + +
      + +
      self.regPeriod = 24
      +self.daysInMonth = 21
      +
      +
      +

      + The variable "regPeriod" indicates how many months we are going to take into consideration in our regression analysis. We assume 21 days per month and request a historical period of approximately 2 years. We jump back in steps of 21 days and assume it is roughly 1 month of return. + We need to set up "Schedule" function in "Initialize" so as to trigger the monthly re-balancing function every month. +

      + +
      + +
      self.Schedule.On(self.DateRules.MonthStart(self.spy), self.TimeRules.AfterMarketOpen(self.spy),Action(self.MonthlyReg))
      +
      +
      +

      Step 3: Monthly Re-balancing of the Portfolio

      +

      + Every month we reconstruct the regression analysis to determine whether to be 100% long stocks or T-Bill contracts. We perform this re-balancing in the MonthlyReg function at the start of each month.?We use the History function to retrieve historical data for oil and stocks?and then divide the T-Bill rate by 12 to make it comparable to the monthly expected return of stocks. +

      + +
      + +
      hist = self.History([self.oil, self.spy], self.regPeriod*self.daysInMonth, Resolution.Daily)
      +oilSeries = hist.loc[str(self.oil)]['close'][self.daysInMonth-1:self.regPeriod*self.daysInMonth:self.daysInMonth]
      +spySeries = hist.loc[str(self.spy)]['close'][self.daysInMonth-1:self.regPeriod*self.daysInMonth:self.daysInMonth]
      +rf = float(self.Securities[self.tbill].Price)/12.0
      +
      +
      +

      + Then we make an OLS regression by using "numpy" to make the prediction on next month's stock return. +

      + +
      + +
      x = np.array(oilSeries)
      +x = (np.diff(x)/x[:-1])
      +y = np.array(spySeries)
      +y = (np.diff(y)/y[:-1])
      +A = np.vstack([x[:-1],np.ones(len(x[:-1]))]).T
      +beta, alpha = np.linalg.lstsq(A,y[1:])[0]
      +yPred = alpha + x[-1]*beta
      +
      +
      +

      + Finally, we compare the expected return of stocks with risk-free rate. If the former is larger than the latter, we invest fully in stocks; otherwise we liquidate our holdings. Because we cannot purchase T-Bill contracts the performance is likely slightly underestimated. +

      + +
      + +
      if yPred > rf:
      +	self.SetHoldings(self.spy, 1)
      +else:
      +	self.Liquidate(self.spy)
      +
      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/04 Summary.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/04 Summary.html new file mode 100755 index 0000000..5751224 --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/04 Summary.html @@ -0,0 +1,7 @@ +

      + We backtested this strategy over the period beginning in 2010 and ending in 2017. It has a sharpe ratio of 0.72 beating the benchmark's 0.6 over a similar period. + Although the annual return closely matches that of the paper,?it is largely a coincidence of the strong bull market in recent years.?If we look at the monthly regression results, we could find that in most cases, the p-value is not small enough to reject the null hypothesis that there is no correlation between oil and stocks. So the investment decisions based on the insignificant statistical results are almost meaningless. The performance of this strategy cannot effectively beat the benchmark, mostly?due to?the weakened correlation between oil and stocks. +

      +

      + Further research and backtesting could be conducted on assets other than oil that have a stronger relationship with stocks. +

      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html new file mode 100755 index 0000000..0115518 --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html @@ -0,0 +1,9 @@ +

      + Strategy code, as well as backtesting result, is attached below. We also put other choices of implementation in the comments. +

      +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/06 References.html b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/06 References.html new file mode 100644 index 0000000..2ce7aae --- /dev/null +++ b/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/06 References.html @@ -0,0 +1,5 @@ +
        +
      1. + Gerben, Driesprong (2007). Striking Oil: Another Puzzle? page 1, Online Copy +
      2. +
      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 Abstract.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 Abstract.html new file mode 100755 index 0000000..83bdc3c --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 Abstract.html @@ -0,0 +1,11 @@ +

      + In this tutorial we implement a high frequency and dynamic pairs trading strategy based on market-neutral statistical arbitrage strategy using a two-stage correlation and cointegration approach. This strategy is based on George J. Miao's work. We applied this trading strategy to the U.S. bank sector stocks, backtested this strategy with 10-minute stock data from 2012 to 2013. Our trading strategy yields a compounding annual return up to 29.4% and a 0.968 sharpe ratio. +

      + +

      + This strategy is especially profitable when the market is performing poorly. The profit is resulted from mispricing, and mispricings are likely to happen when the market goes down or volatility increases. +

      + +

      + To explore this strategy further, we design this strategy to be flexible. We can change the data resolution into 5 minutes, 10 minutes or even 30 minutes by simply changing a parameter. It's also essential to choose optimized entering, closing and stop loss threshold. Everyone can has his/her own version of this strategy. +

      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..9aa9136 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,11 @@ +

      + 在本教程中,我们使用两阶段关联法和协整法,基于市场中性统计套利策略实施了高频动态配对交易策略。这种策略基于George J. Miao的研究。我们将这一交易策略应用于美国银行板块股票,使用2012年至2013年的10分钟股票数据对这一策略进行了回溯测试。我们交易策略所产生的复合年回报率高达29.4%,夏普指数为0.968。 +

      + +

      + 当市场表现不佳时,这种策略尤其有利可图。利润来自于错误定价,当市场下跌或波动性增加时,很可能会发生错误定价。 +

      + +

      + 为了进一步探讨这种策略,我们将策略设计得更为灵活。我们可以通过简单地更改参数,将数据分辨率更改为5分钟、10分钟甚至30分钟。选择最优的进入、结束和止损阈值也是非常重要的。每个人都可以有自己的策略。 +

      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 Introduction.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 Introduction.html new file mode 100755 index 0000000..85d9f93 --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 Introduction.html @@ -0,0 +1,117 @@ +

      + High Frequency Trading(HFT) is a type of quantitative trading characterized by short holding period and the use of sophisticated computer method to trade securities rapidly. It aims to capture small profit on every short-term trade.(Cartea & Penalva, 2012). + Statistical arbitrage is a situation where there is a statistical mispricing of one or more assets based on the expected values of these assets. When a profit situation takes place from pricing inefficiencies between securities, traders can identify the statistical arbitrage situation through mathematical models. Statistical arbitrage depends heavily on the ability of market prices to return to a historical or predicted mean. The Law of One Price(LOP) lays the foundation for this assumption. LOP states that two stocks with the same payoff in every state of nature must have the same current value (Gatev, Goetzmann, & Rouwenhorst, 2006) Thus, two stock prices spread between close substitute assets should have a stable, long-term equilibrium price over time. +

      + +

      Data Description

      +

      + In order to have more pairs with high correlation, we select stocks in a specific industry. Economically, we prefer traditional sectors because the companies in these sector are more likely to be close substitutes. If we selected N stocks, the number of pairs can be calculated by \(\textrm{C}_{n}^{2} = \frac{n*(n-1)}{2}\). In the demonstrated strategy we used 80 stocks, so we have 3160 pairs in total. We used minute data and aggregate them into lower resolution, thus 1 minute is the highest resolution for this strategy. +

      + +

      Correlation Approach

      +

      + Correlations measure the relationship between two stocks that have price trends. They tend to move together, and thus are correlated. Correlation filter is the first step to screen the candidate pairs. + Consider two stocks A and B, a correlation coefficient between the stocks was a statistic that provide a measure of how the two stocks A and B were associated. The correlation coefficient \(\rho\) of stock A and stock B was obtained by +

      + +\[\rho = \frac{\sum_{i}^{N}(A_i - \bar{A})(B_i - \bar{B}))}{[\sum_{i}^{N}(A - \bar{A})^2\sum_{i}^{N}(B_i - \bar{B})^2]^\frac{1}{2}}\] + +

      + Where \(\bar{A}\) and \(\bar{B}\) are the mean prices of stock A and stock B respectively, N denoted a trading data range. \(\rho\) is in the range of [-1,1]. The more positive \(\rho\) is, the more positive the association of stock A and stock B is. +

      + +

      + However, the pairs trading based on a correlation approach alone would have a disadvantage of instabilities over time. Correlation coefficients do not necessarily imply  mean-reversion between the prices of the two stock pairs. In order to overcome the above issue, a cointegration approach was further used as the second-step of the selection process for the pairs. +

      + +

      Cointegration Approach

      +

      + The Cointegration concept, an innovative mathematical model in economics developed by Nobel laureates Engle and Granger. Cointegration states that, in some instances, despite two given non-stationary time series, a specific linear combination of the two time series is actually stationary. In other word, the two time series move together in a lockstep pattern. +

      + +

      + The definition of cointegration is the following: assume that \(x_t\) and \(y_t\) are two time series that were non-stationary. If there exists a parameter \(\gamma\) such that the following equation: +

      + +\[z_t = y_t - \gamma x_t\] + +

      + It is a stationary process, then \(x_t\) and \(y_t\) would be cointegrated. This process is a powerful tool for investigating common asset trends in multivariate time series. +

      +

      + In our case, Let \(p_t^A\) and \(p_t^B\) be the prices of two stocks A and B respectively. If it is assumed that {\({p_t^A, p_t^B}\)} is individually non-stationary, there exists the parameter \(\gamma\) such that the following equation was a stationary process +

      + +\[P_t^A - \gamma P_t^B = \mu + \epsilon_t\] + +

      + where \(\mu\) is a mean of the cointegration model. \(\epsilon_t\) is a stationary, mean-revering process and was referred to as a cointegration residual. The parameter \(\gamma\) is known as a cointegration coefficient. The equation above represents a model of cointegrated pair for stocks A and B. +

      + +

      + It's essential to understand how the conitegration residual together with the cointegration coefficient determines our trading direction. If \(\epsilon\) is positive, in a given confidence interval, this is a signal that stock A is relatively overpriced and stock B is relatively underpriced, and we are going to long B and short A; If If \(\epsilon\) is negative, we are going to long A and short B. +

      + +

      Cointegration Verification(optional reading part)

      +

      + In the Engle-Granger method(Engle & Granger, 1987), we first set up a cointegration regression between stock A and stock B as stated in the equation above, and then estimate the regression parameters \(\mu\) and \(\gamma\) using an ordinary least squares(OLS). Subsequently, we tested the regression residual \(epsilon_t\) to determine whether or not it was stationary. +

      + +

      + The most popular stationary test in the area of cointegration, the Augmented Dickey Fuller (ADF) test, was used on the regression residual \(\epsilon\) to determine whether it had a unit root. +

      +

      + Testing for the presence of the unit root in the regression residual using the ADF test was given by +

      + +\[\Delta Z_t = \alpha + \beta t + \gamma Z_{t-1} + \sum_{i = 1}^{p -1}\delta_i \Delta Z_{t-i} + \mu_t\] + +

      + where \(\alpha\) is a constant, \(\beta\) is the coefficient on a time trend, p is the lag of order of the autoregressive process, \(\mu_t\) is an error term and serially uncorrelated. +

      + +

      + The number of lag order p in the equation is usually unknown and therefore had to be estimated. To determine the number of lag p, the information criteria for lag order selection was used. Here we choose Bayesian Information Criterion(BIC) +

      + +\[BIC = (T-p)\ln\frac{T\hat{\sigma}_p^2}{T-p} + T[1+ln(\sqrt{2\pi})] + p\ln[\frac{\sum_{t=1}^{T}(\Delta Z_t)^2 -T\hat{\sigma}_p^2}{p}]\] + +

      + Where T is the sample size. +

      +

      + The unit root test for the regression residual \(\epsilon\) using the ADF test was then carried out under the null hypothesis \(H_0 : \gamma = 0\) versus the alternative hypothesis \(H_1 : \gamma < 0\). A statistical value of the ADF test was obtained by +

      + +\[ADF  test = \frac{\hat{\gamma }}{SE(\hat{\gamma })}\] + +

      + The test result in the equation above is compared with the critical value of the ADF test. If the test result is less than the critical value, then the null hypothesis is rejected. This means the regression residual \(\epsilon\) is stationary. Thus, the two stock prices {\({p_t^A, p_t^B}\)} are cointegrated. +

      +

      Pairs Trading Strategy

      +

      + The pairs trading strategy uses trading signals based on the regression residual \(\epsilon\) and were modeled as a mean-reverting process. +

      + +

      + In order to select potential stocks for pairs trading, the two-stage correlation and cointegration approach was used. The first step is to identify potential stock pairs from the same sector, where the stock pairs are selected with correlation coefficient of at least 0.9 using the correlation approach. The second step is to check the the cointegration of the pairs passed the correlation test. If the test value of cointegration is equal or less than -3.34, which is the critical value at a 95% confidence lever, the null hypothesis \(H_0 : \gamma = 0\) is rejected, thus the residual \(\epsilon\) is stationary, and the pair passed the cointegration test. The third step is to rank all of the stock pairs that passed the two-stage test according to their cointegration test values. The smaller the cointegration test value is, the higher rank the stock pair is assigned to. Financial selection of the stock pairs from the top rank is used for pairs trading. +

      +

      + The final step of the strategy is to define trading rules. To open a pairs trading, the regression residual \(\epsilon_t\) must cross over and down the positive \(\sigma\) standard deviation above the mean or cross down and over the negative \(\sigma\) standard deviation below the mean. If the residual is positive, we short stock B and long stock A; if the residual is negative, we short Stock A and long Stock B. When the regression residual (\epsilon_t\) returned to a certain level, the pairs trading is closed. Further more, in order to prevent the loss of too much on a single pairs trading, a stop-loss is used to close the pairs when the residual hit \(4\epsilon\) positive or negative standard deviation. +

      + +

      + In the training period, each of the training data contained a 3-month period, which is a dynamic rolling window size. Immediately after the training period, we begin our one-month trading period, and the dynamic rolling window automatically shift ahead to record the new prices of the stocks in each pair. After the first trading period, we use the updated stock prices to select our pairs for trading again, and begin another trading period. +

      + +

      Parameter Adjustment

      +

      + The performance of the strategy is sensitive to the parameters. There are  mainly four parameter to adjust: Opening Threshold, Closing Threshold, Stop-loss Threshold and data resolution. +

      +

      + Opening threshold represents by how many times the residual \(\epsilon\) exceed the standard deviation, which is calculated by \(\frac{\epsilon - \bar{\epsilon}}{\sigma}\). By default we set it to 2.32 and -2.32, which is the critical value for 99% confidence interval if we assume the residual follows normal distribution. + Closing threshold is calculated in the same way as opening threshold, we set it to 0.5 by default to close early to prevent further divergence. +

      +

      + Stop-loss Threshold is set to 4.5. This depends on the level of mispricing we can bear. The higher degree our tolerance to risk is, the higher we can set this parameter. However, if we set this number too low, we may have too many pairs closed before reversion to stop loss. +

      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..f0b6f74 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/02 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,115 @@ +

      + 高频交易(HFT)是一种定量交易,其特点是持有期短,利用复杂的计算机方法迅速交易证券。它的目标是在每笔短期交易中都获得小额利润(Cartea & Penalva, 2012)。 + 统计套利是根据一项或多项资产的预期价值对该资产进行统计错误定价的情况。当证券之间因定价效率低下而出现盈利情况时,交易者可以通过数学模型识别统计套利情况。统计套利在很大程度上取决于市场价格回归历史或预测均值的能力。单一价格法则(LOP)为这一假设奠定了基础。LOP指出,如果两支股票在各种自然状态下都具有相同的收益,则它们必定具有相同的现值(Gatev, Goetzmann, & Rouwenhorst, 2006)。因此,两支股票近似替代资产之间的价差应在一段时间内具有稳定的长期均衡价格。 +

      + +

      数据描述

      +

      + 为了获得更多高度相关的配对,我们选择了特定行业的股票。从经济角度看,我们更喜欢传统行业,因为这些行业的公司更有可能成为近似替代品。。如果我们选择N只股票,可以使用\(\textrm{C}_{n}^{2} = \frac{n*(n-1)}{2}\)来计算配对的数目。在演示的策略中,我们使用了80只股票,所以总共得到了3160对。我们使用分钟数据并将其聚合为较低的分辨率,因此1分钟是该策略的最高分辨率。 +

      + +

      关联法

      +

      + 关联性衡量的是具有价格趋势两只股票之间的关系。由于这两支股票相互关联,因此倾向于一起移动。关联性过滤器是对备选配对进行筛选的第一步。以A股票和B股票为例,股票之间的关联系数是一个统计数值,用于衡量股票A和股票B之间的关联程度。股票A和股票B的相关系数\(\rho\)可以通过下式获得: +

      + +\[\rho = \frac{\sum_{i}^{N}(A_i - \bar{A})(B_i - \bar{B}))}{[\sum_{i}^{N}(A - \bar{A})^2\sum_{i}^{N}(B_i - \bar{B})^2]^\frac{1}{2}}\] + +

      + 其中\(\bar{A}\)和\(\bar{B}\)分别是股票A和股票B的平均价格,N表示交易数据范围。\(\rho\)在[-1,1]范围内。正值的\(\rho\)越多,股票A和股票B之间的关联性就越积极。 +

      + +

      + 然而,随着时间的推移,仅仅基于关联法的配对交易将存在不稳定的缺点。关联系数并不一定意味着两支配对股票价格之间的均值回归。为了克服上述问题,将进一步采用协整法作为配对选择过程的第二步。 +

      + +

      协整法

      +

      + 协整概念是由诺贝尔奖得主Engle和Granger开发的一种创新经济学数学模型。协整法指出,在某些情况下,尽管给定两个非平稳时间序列,但两个时间序列的特定线性组合实际上是平稳的。换句话说,这两个时间序列以步调一致的模式一起移动。 +

      + +

      + 协整的定义如下:假设\(x_t\)和\(y_t\)是两个非平稳的时间序列。如果存在参数\(\gamma\),则可以得出以下方程: +

      + +\[z_t = y_t - \gamma x_t\] + +

      + 这是一个平稳的过程,然后xt和yt将会进行协整。这一过程是研究多元时间序列中共同资产趋势的强大工具。 +

      +

      + 在我们的例子中,\(p_t^A\)和\(p_t^B\)分别为A股和B股的价格。如果假设{\({p_t^A, p_t^B}\)}都分别不平稳,则存在参数\(\gamma\),以下方程是一个平稳过程: +

      + +\[P_t^A - \gamma P_t^B = \mu + \epsilon_t\] + +

      + 其中\(\mu\)是协整模型的平均值。\(\epsilon_t\)是平稳的均值回复过程,被称为协整残差。参数\(\gamma\)被称为协整系数。上面的公式表示股票A和股票B的协整对模型。 +

      + +

      + 了解协整残差和协整系数如何决定交易方向是非常重要的。如果\(\epsilon\)为正值,处于给定的置信区间内,这是股票 A定价相对较高而股票B定价相对较低的信号,我们将买入股票B,并抛出股票A。如果\(\epsilon\)为负值,则买入股票A并抛出股票B。 +

      + +

      协整验证(可选阅读部分)

      +

      + 在Engle-Granger法中(Engle & Granger, 1987),如上文方程式所述,我们首先在股票A和股票B之间建立协整回归,然后使用普通最小二乘法(OLS)估算回归参数\(\mu\)和\(\gamma\)。我们对回归残差\(epsilon_t\)进行了测试,以确定其是否平稳。 +

      + +

      + 在协整领域中,最受欢迎的平稳性测试是Augmented Dickey Fuller (ADF)测试,此测试用于确定回归残差\(\epsilon\)是否具有单位根。 +

      +

      + 利用ADF测试来检验回归残差是否存在单位根: +

      + +\[\Delta Z_t = \alpha + \beta t + \gamma Z_{t-1} + \sum_{i = 1}^{p -1}\delta_i \Delta Z_{t-i} + \mu_t\] + +

      + 其中\(\alpha\)是常数,\(\beta\)是时间趋势系数,p是自回归过程的滞后阶,\(\mu_t\)是误差项,与连续性无关。 +

      + +

      + 方程中滞后阶p的数量通常是未知的,因此需要进行估算。为了确定滞后阶p的数量,采用了滞后阶选择的信息准则。这里我们选择贝叶斯信息准则(BIC)。 +

      + +\[BIC = (T-p)\ln\frac{T\hat{\sigma}_p^2}{T-p} + T[1+ln(\sqrt{2\pi})] + p\ln[\frac{\sum_{t=1}^{T}(\Delta Z_t)^2 -T\hat{\sigma}_p^2}{p}]\] + +

      + 其中T为样本量。 +

      +

      + 然后在零假设\(H_0 : \gamma = 0\)与替代假设\(H_1 : \gamma < 0\)的情况下,使用ADF测试对回归残差\(\epsilon\)进行单位根检验。通过下式得出ADF测试的统计值 +

      + +\[ADF  test = \frac{\hat{\gamma }}{SE(\hat{\gamma })}\] + +

      + 将上述方程的测试结果与ADF测试的临界值进行比较。如果测试结果小于临界值,则否定零假设。这意味着回归残差\(\epsilon\)是平稳的。因此,两支股票价格{\({p_t^A, p_t^B}\)}是协整的。 +

      +

      配对交易策略

      +

      + 配对交易策略使用基于回归残差\(\epsilon\)的交易信号,并被建模为均值回复过程。 +

      + +

      + 为了选择合适的股票进行配对交易,采用了两阶段的关联协整法。第一步是识别来自同一行业的潜在股票配对,使用关联方法选择关联系数至少达到0.9的股票配对。第二步是检验通过关联性测试股票配对的协整性。如果协整性的测试值等于或小于-3.34(这也是95%置信水平的阈值),则否定零假设\(H_0 : \gamma = 0\),因此残差\(\epsilon\)是平稳的,股票对通过了协整测试。第三步是根据协整测试值对所有通过两阶段测试的股票对进行排序。协整测试值越小,股票对的排名越高。排名靠前的金融股票配对将用于配对交易。 +

      +

      + 策略的最后一步是定义交易规则。打开一个配对交易,回归残差\(\epsilon_t\)必须超过高于标准值的正\(\sigma\)标准差,或是低于标准值的负\(\sigma\)标准差。若残差为正,则抛出股票B,买入股票A;如果残差为负,则抛出股票A,买入股票B。当回归残差(\epsilon_t\)返回到一定水平时,配对交易结束。此外,为了防止在单一配对交易中损失过多,当残差达到\(4\epsilon\)正负标准差时,采用止损关闭配对交易。 +

      + +

      + 在训练期间,每个培训数据包含3个月的周期,这是一个动态滚动窗口规模。在训练期结束后,我们立即开始为期一个月的交易周期,动态滚动窗口自动向前移动,记录每对股票的新价格。在第一个交易期之后,我们使用更新后的股票价格再次选择交易配对,并开始另一个交易周期。 +

      + +

      参数调整

      +

      + 该策略的性能对参数非常敏感。主要有四个参数需要调整:开始阀值、结束阀值、止损阀值和数据分辨率。 +

      +

      + 开始阈值代表有多少残差\(\epsilon\)超过标准差,可通过\(\frac{\epsilon - \bar{\epsilon}}{\sigma}\)进行计算。默认情况下,我们将其设置为2.32和-2.32,如果假设残差服从正态分布,则这是99%置信区间的阈值。结束阈值的计算方法与开始阈值相同,我们将其默认设置为0.5,可以尽早结束以防止进一步的发散。 +

      +

      + 止损阀值设置为4.5。这取决于我们能承受的错误定价水平。我们对风险的容忍度越高,我们对这一参数的设置就可以越高。但是,如果我们将这个数字设置得太低,我们可能会在止损反转前结束过多的配对。 +

      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 Method.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 Method.html new file mode 100755 index 0000000..0b619ee --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 Method.html @@ -0,0 +1,252 @@ +

      + In this trading strategy we would define a class named 'pairs'. We manage pairs instead of stocks directly to make it's more convenient for us to calculate correlation and cointegration, update stock prices in the pair and trade on the selected pairs. +

      + +

      Step 1: Pairs Class Definition

      +

      + The pairs is made up of two stocks, stock A and stock B. This class has several properties. The basic properties include symbols of stock A and stock B, the pandas DataFrame that contains time and prices of the two stocks, the current error, the error of the last datapoint, and the lists to record stock prices for update purpose. Instead of updating the DataFrame every 5 minutes, we record the prices in lists to update the DataFrame monthly. This would speed up the algorithm at least 10 times because manipulating DataFrame is very time consuming. The cor_update method is used every month to update the correlation between the two stocks in this pair. The cointegration_test method is also used monthly to do OLS regression, conduct ADF test, and calculate the mean and standard deviation of the residual. The method also assign these calculated values as properties to the pair object. +

      + +
      + +
      class pairs(object):
      +    def __init__(self, a, b):
      +        self.a = a
      +        self.b = b
      +        self.name = str(a) + ':' + str(b)
      +        self.df = pd.concat([a.df,b.df],axis = 1).dropna()
      +    # The number of bars in the rolling window would be determined by the resolution, so we get this
      +      information from the shape of the DataFrame here.
      +        self.num_bar = self.df.shape[0]
      +        self.cor = self.df.corr().ix[0][1]
      +    # Set the initial signals to be 0
      +        self.error = 0
      +        self.last_error = 0
      +        self.a_price = []
      +        self.a_date = []
      +        self.b_price = []
      +        self.b_date = []
      +
      +    def cor_update(self):
      +        self.cor = self.df.corr().ix[0][1]
      +
      +    def cointegration_test(self):
      +        self.model = sm.ols(formula = '%s ~ %s'%(str(self.a),str(self.b)), data = self.df).fit()
      +    # This line conduct ADF test on the residual. ts.adfuller() returns a tuple and the first element in
      +      the tuple is the test value.
      +        self.adf = ts.adfuller(self.model.resid,autolag = 'BIC')[0]
      +        self.mean_error = np.mean(self.model.resid)
      +        self.sd = np.std(self.model.resid)
      +
      +    def price_record(self,data_a,data_b):
      +        self.a_price.append(float(data_a.Close))
      +        self.a_date.append(data_a.EndTime)
      +        self.b_price.append(float(data_b.Close))
      +        self.b_date.append(data_b.EndTime)
      +
      +    def df_update(self):
      +        new_df = pd.DataFrame({str(self.a):self.a_price,str(self.b):self.b_price},index =
      +                 [self.a_date]).dropna()
      +        self.df = pd.concat([self.df,new_df])
      +        self.df = self.df.tail(self.num_bar)
      +    # after updating the DataFrame, we empty the lists for the incoming data
      +        for list in [self.a_price,self.a_date,self.b_price,self.b_date]:
      +            list = []
      +
      +
      +

      Step 2: Generate and Clean Pairs

      +

      + The function generate_pairs generates pairs using the stock symbols. self.pair_threshold and self.pair_num are pre-determined to control the number of candidate pairs. The pairs in self.pair_list would be kept and updated throughout our backtesting period. we set self.pair_threshold to 0.88 and self.pair_num to 120 to limit the number of pairs in the list. If we put too many pairs in the list, the backtesting would be too time consuming. + The function pair_clean is called after the two-stage screen. If the first pair contains stock A and stock B, and the second pair contains stock B and stock C, we would remove the second pair because the overlapped signal would disturb the balance of our portfolio. +

      + +
      + +
      def generate_pairs(self):
      +    for i in range(len(self.symbols)):
      +        for j in range(i+1,len(self.symbols)):
      +            self.pair_list.append(pairs(self.symbols[i],self.symbols[j]))
      +
      +    self.pair_list = [x for x in self.pair_list if x.cor > self.pair_threshold]
      +
      +    self.pair_list.sort(key = lambda x: x.cor, reverse = True)
      +
      +    if len(self.pair_list) > self.pair_num:
      +        	self.pair_list = self.pair_list[:self.pair_num]
      +
      +def pair_clean(self,list):
      +    l = []
      +    l.append(list[0])
      +    for i in list:
      +        symbols = [x.a for x in l] + [x.b for x in l]
      +        if i.a not in symbols and i.b not in symbols:
      +            l.append(i)
      +        else:
      +            pass
      +    return l
      +
      +
      + +

      Step 3: Warming up Period

      +

      + This part is under the OnData step. We set self.num_bar equals to the number of TradeBar in three months, which is determined by the resolution. During this period we fill the stock prices in lists, and assign each stock's price list to the symbol as a property. We would also remove the symbol from the symbol list if it has no data. +

      + +
      + +
      if len(self.symbols[0].prices) < self.num_bar:
      +    for symbol in self.symbols:
      +        if data.ContainsKey(i) is True:
      +    	    symbol.prices.append(float(data[symbol].Close))
      +            symbol.dates.append(data[symbol].EndTime)
      +        else:
      +            self.Log('%s is missing'%str(symbol))
      +            self.symbols.remove(symbol)
      +    self.data_count = 0
      +    return
      +
      +

      Step 4: Pairs Selection

      +

      + This process is also under the OnData step. This step would generate pairs if it is the first trading period of this algorithm. If it's not, it will update the DataFrame and correlation coefficient of each pair in self.pair_list. After that the pairs have a correlation coefficient higher than 0.9 would be selected into self.selected_pair. Then all the pairs in self.selected_pair would be tested on their cointegration, and the pairs with a test value less than -3.34 would be selected to the final list. This step will also limit the number of stocks in the final list, by default we set self.selected_num to 10. self.count is a flag to count the number of datapoint we received. Once it reach 1-month amount, that means one trading period is passed and it would be set to 0. +

      + +
      + +
      if self.count == 0 and len(self.symbols[0].prices) == self.num_bar:
      +    if self.generate_count == 0:
      +        for symbol in self.symbols:
      +        symbol.df = pd.DataFrame(symbol.prices, index = symbol.dates, columns = ['%s'%str(symbol)])
      +
      +        self.generate_pairs()
      +        self.generate_count +=1
      +        self.Log('pair list length:'+str(len(self.pair_list)))
      +
      +        for pair in self.pair_list:
      +            pair.cor_update()
      +    # Update the DataFrame and correlation selection
      +    if len(self.pair_list[0].a_price) != 0:
      +        for pair in self.pair_list:
      +    	    pair.df_update()
      +            pair.cor_update()
      +
      +    self.selected_pair = [x for x in self.pair_list if x.cor > 0.9]
      +    # Cointegration test
      +    for pair in self.selected_pair:
      +        pair.cointegration_test()
      +
      +    self.selected_pair = [x for x in self.selected_pair if x.adf < self.BIC]
      +    self.selected_pair.sort(key = lambda x: x.adf)
      +    # If no pair passed the two-stage test, return.
      +    if len(self.selected_pair) == 0:
      +        self.Log('no selected pair')
      +        self.count += 1
      +        return
      +    # clean the pair to avoid overlapping stocks.
      +    self.selected_pair = self.pair_clean(self.selected_pair)
      +    # assign a property to the selected pair, this is a signal that would be used for trading.
      +    for pair in self.selected_pair:
      +        pair.touch = 0
      +        self.Log(str(pair.adf) + pair.name)
      +    # limit the number of selected pairs.
      +    if len(self.selected_pair) > self.selected_num:
      +        self.selected_pair = self.selected_pair[:self.selected_num]
      +
      +    self.count +=1
      +    self.data_count = 0
      +    return
      +
      +
      + +

      Step 5: Trade Period

      +

      + It would be too long to read if we paste all the code in trading period together. Thus we would separate the code into three part: updating pairs, opening pairs trading and closing pairs trading. But all those lines are under OnData step and are under the condition: if self.count != 0 and self.count < self.one_month. This means it's in the trading period. +

      + +

      Updating Pairs

      +

      + This step would update the stock prices in each pair. It would also update the signal called 'last_error' and immediately after this the pairs would receive new signals. +

      + +
      + +
      num_select = len(self.selected_pair)
      +for pair in self.pair_list:
      +    if data.ContainsKey(pair.a) is True and data.ContainsKey(pair.b) is True:
      +        i.price_record(data[i.a],data[i.b])
      +    else:
      +        self.Log('%s has no data'%str(pair.name))
      +        self.pair_list.remove(pair)
      +
      +for pair in self.selected_pair:
      +    pair.last_error = pair.error
      +
      +for pair in self.trading_pairs:
      +    pair.last_error = pair.error
      +
      +

      Opening Pairs Trading

      +

      + For each pair in self.selected_pair, we receive the current prices of the stocks, and then use the cointegration model to calculate the residual \(\epsilon\), which is assigned to the pair as a property named 'error'. self.trading.pairs is a list to store the trading pairs. Once a pairs trading is open, this pair would be add to the list, and it would be removed when the trading is closed. The property 'touch' is signal. If the residual \(\epsilon\) cross over the positive threshold standard deviation(we set \(\ 2.23*sigma\) here), the signal would become +1; while if it cross down the negative threshold deviation(\(\ -2.23*sigma\), the signal would become -1. For those pairs with +1 signal, if the error cross down positive threshold, there is a signal to open a trade. We long stock B and short stock A. For those pairs with -1 signal, if the error cross over negative threshold, we long Stock A and short stock B. + When we opening a trade, we need to record the current model, current mean and standard deviation of the residual. This is necessary because if we enter a new trading period and the trade has not been closed yet, the cointegration model, mean and standard deviation of the pairs would be changed. We need to use the original thresholds to close the trades. while adding the pairs into self.trading_pairs, we also need to set the signal 'touch' to 0 for further use. +

      + +
      + +
      for i in self.selected_pair:
      +    price_a = float(data[i.a].Close)
      +    price_b = float(data[i.b].Close)
      +    i.error = price_a - (i.model.params[0] + i.model.params[1]*price_b)
      +    if (self.Portfolio[i.a].Quantity == 0 and self.Portfolio[i.b].Quantity == 0) and i not in
      +    self.trading_pairs:
      +        if i.touch == 0:
      +            if i.error < i.mean_error - self.open_size*i.sd and i.last_error > i.mean_error -
      +            self.open_size*i.sd:
      +                i.touch += -1
      +            elif i.error > i.mean_error + self.open_size*i.sd and i.last_error < i.mean_error + self.open_size*i.sd: i.touch += 1 else: pass elif i.touch == -1: if i.error > i.mean_error - self.open_size*i.sd and i.last_error < i.mean_error -
      +            self.open_size*i.sd:
      +                self.Log('long %s and short %s'%(str(i.a),str(i.b)))
      +                i.record_model = i.model
      +                i.record_mean_error = i.mean_error
      +                i.record_sd = i.sd
      +                self.trading_pairs.append(i)
      +                self.SetHoldings(i.a, 5.0/(len(self.selected_pair)))
      +                self.SetHoldings(i.b, -5.0/(len(self.selected_pair)))
      +                i.touch = 0
      +         elif i.touch == 1:
      +             if i.error < i.mean_error + self.open_size*i.sd and i.last_error > i.mean_error +
      +             self.open_size*i.sd:
      +             self.Log('long %s and short %s'%(str(i.b),str(i.a)))
      +             i.record_model = i.model
      +             i.record_mean_error = i.mean_error
      +             i.record_sd = i.sd
      +             self.trading_pairs.append(i)
      +             self.SetHoldings(i.b, 5.0/(len(self.selected_pair)))
      +             self.SetHoldings(i.a, -5.0/(len(self.selected_pair)))
      +             i.touch = 0
      +         else:
      +             pass
      +    else:
      +        pass
      +
      +
      + +

      Closing Pairs Trading

      +

      + This part controls pairs trading exit. It works similar to the opening part. It uses the recorded original model and thresholds to determine whether or not we should close the position. If the residual \(\epsilon\) reaches our closing threshold, we liquidate stock A and stock B to close. If the residual continue to deviate from the mean and goes too far, we would also close the position to stop loss. When we close a pairs trading, we also remove the pairs from self.trading_pairs. +

      + +
      + +
      for i in self.trading_pairs:
      +    price_a = float(data[i.a].Close)
      +    price_b = float(data[i.b].Close)
      +    i.error = price_a - (i.record_model.params[0] + i.record_model.params[1]*price_b)
      +    if ((i.error < i.record_mean_error + self.close_size*i.record_sd and i.last_error >i.record_mean_error + self.close_size*i.record_sd) or (i.error > i.record_mean_error -
      +    self.close_size*i.record_sd and i.last_error  i.record_mean_error +
      +    self.stop_loss*i.record_sd:
      +        self.Log('close %s to stop loss'%str(i.name))
      +        self.Liquidate(i.a)
      +        self.Liquidate(i.b)
      +        self.trading_pairs.remove(i)
      +    else:
      +        pass
      +
      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..a69dc45 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/03 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,248 @@ +

      + 在此类交易策略中,我们将定义一个名为“配对”的类。我们不直接对股票进行管理,而是对股票配对进行管理,这可以使我们更方便地计算关联性和协整性,更新配对股票的价格,并交易选定的配对。 +

      + +

      步骤1:配对分类定义

      +

      + 配对由两支股票组成,即股票A和股票B。这一分类有几种属性。基本属性包括股票A和股票B的代码、包含这两支股票时间和价格的数据分析框架、当前误差、最后一个数据点的误差,以及记录股票价格以便进行更新的列表。我们不会每5分钟更新一次数据框架,而是将价格记录在列表中,每月更新一次数据框架。由于操作数据框架非常耗时,这可以使算法的速度至少提高10倍。每个月使用cor_update方法更新配对股票中两支股票之间的关联性。采用cointegration_test每月进行最小二乘法(OLS)回归,进行ADF测试,计算残差的均值和标准差。这种方法还会将这些计算值作为属性分配给配对对象。 +

      + +
      + +
      class pairs(object):
      +    def __init__(self, a, b):
      +        self.a = a
      +        self.b = b
      +        self.name = str(a) + ':' + str(b)
      +        self.df = pd.concat([a.df,b.df],axis = 1).dropna()
      +    # 滚动窗口中的条数应由分辨率确定,因此我们可以得到
      +        self.num_bar = self.df.shape[0]
      +        self.cor = self.df.corr().ix[0][1]
      +    # 将初始信号设置为0
      +        self.error = 0
      +        self.last_error = 0
      +        self.a_price = []
      +        self.a_date = []
      +        self.b_price = []
      +        self.b_date = []
      +
      +    def cor_update(self):
      +        self.cor = self.df.corr().ix[0][1]
      +
      +    def cointegration_test(self):
      +        self.model = sm.ols(formula = '%s ~ %s'%(str(self.a),str(self.b)), data = self.df).fit()
      +    # 此行对残差进行ADF测试,ts.adfuller() 返回元组,第一元素为
      +        self.adf = ts.adfuller(self.model.resid,autolag = 'BIC')[0]
      +        self.mean_error = np.mean(self.model.resid)
      +        self.sd = np.std(self.model.resid)
      +
      +    def price_record(self,data_a,data_b):
      +        self.a_price.append(float(data_a.Close))
      +        self.a_date.append(data_a.EndTime)
      +        self.b_price.append(float(data_b.Close))
      +        self.b_date.append(data_b.EndTime)
      +
      +    def df_update(self):
      +        new_df = pd.DataFrame({str(self.a):self.a_price,str(self.b):self.b_price},index =
      +                 [self.a_date]).dropna()
      +        self.df = pd.concat([self.df,new_df])
      +        self.df = self.df.tail(self.num_bar)
      +    # 更新数据框架后,我们清空输入数据列表
      +        for list in [self.a_price,self.a_date,self.b_price,self.b_date]:
      +            list = []
      +
      +
      +

      步骤2:生成并整理配对

      +

      + 函数generate_pair使用股票代码生成配对。self.pair_threshold和self.pair_num是预先确定的,用于控制候选配对的数量。在我们的回溯测试期间,self.pair_list中的配对将保留并更新。我们将self.pair_threshold设置为0.88,将self.pair_num设置为120,以限制列表中配对的数量。如果我们列表中的配对过多,那么回溯测试将会非常耗时。在两阶段筛选后会调用函数pair_clean。如果第一对包含股票A和股票B,第二对包含股票B和股票C,我们将删除第二对,因为重叠的信号会干扰投资组合的平衡。 +

      + +
      + +
      def generate_pairs(self):
      +    for i in range(len(self.symbols)):
      +        for j in range(i+1,len(self.symbols)):
      +            self.pair_list.append(pairs(self.symbols[i],self.symbols[j]))
      +
      +    self.pair_list = [x for x in self.pair_list if x.cor > self.pair_threshold]
      +
      +    self.pair_list.sort(key = lambda x: x.cor, reverse = True)
      +
      +    if len(self.pair_list) > self.pair_num:
      +        	self.pair_list = self.pair_list[:self.pair_num]
      +
      +def pair_clean(self,list):
      +    l = []
      +    l.append(list[0])
      +    for i in list:
      +        symbols = [x.a for x in l] + [x.b for x in l]
      +        if i.a not in symbols and i.b not in symbols:
      +            l.append(i)
      +        else:
      +            pass
      +    return l
      +
      +
      + +

      步骤3:预热期

      +

      + 此部分属于OnData步骤。我们将self.num_bar设置为三个月内TradeBar的数量,这将由决议决定。在此期间,我们将股票价格填入列表,并将每支股票的价格列表作为属性分配给代码。如果代码列表中没有数据,我们还将从代码列表中删除此代码。 +

      + +
      + +
      if len(self.symbols[0].prices) < self.num_bar:
      +    for symbol in self.symbols:
      +        if data.ContainsKey(i) is True:
      +    	    symbol.prices.append(float(data[symbol].Close))
      +            symbol.dates.append(data[symbol].EndTime)
      +        else:
      +            self.Log('%s is missing'%str(symbol))
      +            self.symbols.remove(symbol)
      +    self.data_count = 0
      +    return
      +
      +

      步骤4:配对选择

      +

      + 这一过程同样属于OnData步骤。如果这是此算法的第一个交易周期,则此步骤将生成配对。如果不是,它将更新self.pair_list中每对股票的数据框架和关联系数。然后将关联系数大于0.9的配对选择到self.selected_pair中。然后对self.selected_pair中的所有配对进行协整,测试值小于-3.34的配对将被选择到最终列表中。此步骤还会限制最终列表中的股票数量,在默认情况下我们将self.selected_num设置为10。self.count是一个标志,用于计算我们所接收到数据点的数量。一旦达到1个月的数量,这意味着一个交易周期已经过去,它将被设置为0。 +

      + +
      + +
      if self.count == 0 and len(self.symbols[0].prices) == self.num_bar:
      +    if self.generate_count == 0:
      +        for symbol in self.symbols:
      +        symbol.df = pd.DataFrame(symbol.prices, index = symbol.dates, columns = ['%s'%str(symbol)])
      +
      +        self.generate_pairs()
      +        self.generate_count +=1
      +        self.Log('pair list length:'+str(len(self.pair_list)))
      +
      +        for pair in self.pair_list:
      +            pair.cor_update()
      +    # 更新数据框架和关联性选择
      +    if len(self.pair_list[0].a_price) != 0:
      +        for pair in self.pair_list:
      +    	    pair.df_update()
      +            pair.cor_update()
      +
      +    self.selected_pair = [x for x in self.pair_list if x.cor > 0.9]
      +    # 协整测试
      +    for pair in self.selected_pair:
      +        pair.cointegration_test()
      +
      +    self.selected_pair = [x for x in self.selected_pair if x.adf < self.BIC]
      +    self.selected_pair.sort(key = lambda x: x.adf)
      +    # 如果没有配对通过两阶段测试,则返回
      +    if len(self.selected_pair) == 0:
      +        self.Log('no selected pair')
      +        self.count += 1
      +        return
      +    # 整理配对避免出现重叠股票
      +    self.selected_pair = self.pair_clean(self.selected_pair)
      +    # 为所选配对分析属性,这是用于交易的信号
      +    for pair in self.selected_pair:
      +        pair.touch = 0
      +        self.Log(str(pair.adf) + pair.name)
      +    # 限制选择配对的数量
      +    if len(self.selected_pair) > self.selected_num:
      +        self.selected_pair = self.selected_pair[:self.selected_num]
      +
      +    self.count +=1
      +    self.data_count = 0
      +    return
      +
      +
      + +

      步骤5:交易期

      +

      + 如果我们把交易期间的所有代码都粘贴在一起,清单将会过长。因此,我们将代码分为三个部分: 更新配对、开始配对交易和结束配对交易。 但是所有这些行都属于OnData步骤,并且都在此条件下:即self.count != 0且self.count < self.one_month。这意味着它在交易期内。 +

      + +

      更新配对

      +

      + 这一步将更新每对股票的价格。它还会更新名为“last_error”的信号,在此之后,配对会立即接收到新的信号。 +

      + +
      + +
      num_select = len(self.selected_pair)
      +for pair in self.pair_list:
      +    if data.ContainsKey(pair.a) is True and data.ContainsKey(pair.b) is True:
      +        i.price_record(data[i.a],data[i.b])
      +    else:
      +        self.Log('%s has no data'%str(pair.name))
      +        self.pair_list.remove(pair)
      +
      +for pair in self.selected_pair:
      +    pair.last_error = pair.error
      +
      +for pair in self.trading_pairs:
      +    pair.last_error = pair.error
      +
      +

      开始配对交易

      +

      + 对于self.selected_pair中的每对股票,我们接受当前的股票价格,然后使用协整模型计算残差\(\epsilon\),这是分配给配对的属性,命名为“误差”。 self.trading.pairs是存储交易配对的列表。一旦配对交易开始,配对就会被添加到列表中,当交易结束时将被删除。属性“touch”是一个信号。如果残差\(\epsilon\)超出正阈值标准偏差(我们在此设置为\(\ 2.23*sigma\)),信号会+ 1;如果低于负阈值偏差(\(\ -2.23*sigma\),则信号会-1。对于那些获得+1信号的配对,如果误差超过正阈值,则会有开始交易的信号。我们买入股票B并抛出股票A。对于那些获得-1信号的配对,如果误差低于负阈值,我们买入股票A并抛出股票B。这是必要的,当我们开始交易时,我们需要记录残差的当前模型、当前平均值和标准。因为如果我们进入一个新的交易周期,而交易尚未结束,配对的协整模型、平均值和标准差将发生变化。我们需要使用最初的阈值来结束交易。同时把配对添加到self.trading_pairs中。我们还需要将信号“touch”设置为0,以便进一步使用。 +

      + +
      + +
      for i in self.selected_pair:
      +    price_a = float(data[i.a].Close)
      +    price_b = float(data[i.b].Close)
      +    i.error = price_a - (i.model.params[0] + i.model.params[1]*price_b)
      +    if (self.Portfolio[i.a].Quantity == 0 and self.Portfolio[i.b].Quantity == 0) and i not in
      +    self.trading_pairs:
      +        if i.touch == 0:
      +            if i.error < i.mean_error - self.open_size*i.sd and i.last_error > i.mean_error -
      +            self.open_size*i.sd:
      +                i.touch += -1
      +            elif i.error > i.mean_error + self.open_size*i.sd and i.last_error < i.mean_error + self.open_size*i.sd: i.touch += 1 else: pass elif i.touch == -1: if i.error > i.mean_error - self.open_size*i.sd and i.last_error < i.mean_error -
      +            self.open_size*i.sd:
      +                self.Log('long %s and short %s'%(str(i.a),str(i.b)))
      +                i.record_model = i.model
      +                i.record_mean_error = i.mean_error
      +                i.record_sd = i.sd
      +                self.trading_pairs.append(i)
      +                self.SetHoldings(i.a, 5.0/(len(self.selected_pair)))
      +                self.SetHoldings(i.b, -5.0/(len(self.selected_pair)))
      +                i.touch = 0
      +         elif i.touch == 1:
      +             if i.error < i.mean_error + self.open_size*i.sd and i.last_error > i.mean_error +
      +             self.open_size*i.sd:
      +             self.Log('long %s and short %s'%(str(i.b),str(i.a)))
      +             i.record_model = i.model
      +             i.record_mean_error = i.mean_error
      +             i.record_sd = i.sd
      +             self.trading_pairs.append(i)
      +             self.SetHoldings(i.b, 5.0/(len(self.selected_pair)))
      +             self.SetHoldings(i.a, -5.0/(len(self.selected_pair)))
      +             i.touch = 0
      +         else:
      +             pass
      +    else:
      +        pass
      +
      +
      + +

      结束配对交易

      +

      + 此部分控制退出交易。它的工作原理与开始部分相似。它使用记录原始模型和阈值来决定我们是否应该结束仓位。如果残差\(\epsilon\)达到结束阈值,我们将平仓股票A和股票B结束交易。如果残差继续偏离平均值,并且偏离太远,我们也会平仓止损。当我们结束配对交易时,我们也从self.trading_pair中删除了这些配对。 +

      + +
      + +
      for i in self.trading_pairs:
      +    price_a = float(data[i.a].Close)
      +    price_b = float(data[i.b].Close)
      +    i.error = price_a - (i.record_model.params[0] + i.record_model.params[1]*price_b)
      +    if ((i.error < i.record_mean_error + self.close_size*i.record_sd and i.last_error >i.record_mean_error + self.close_size*i.record_sd) or (i.error > i.record_mean_error -
      +    self.close_size*i.record_sd and i.last_error  i.record_mean_error +
      +    self.stop_loss*i.record_sd:
      +        self.Log('close %s to stop loss'%str(i.name))
      +        self.Liquidate(i.a)
      +        self.Liquidate(i.b)
      +        self.trading_pairs.remove(i)
      +    else:
      +        pass
      +
      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 Result.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 Result.html new file mode 100755 index 0000000..b94900f --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 Result.html @@ -0,0 +1,20 @@ +

      + We used 10-minute resolution data to backtest the strategy from Jan 2013 to Dec 2016. To demonstrate the in sample training results, we randomly selected a training period that from 2016-09-07 to 2013-11-30. +

      +

      + The following table demonstrates the top 10 selected pairs in the training period mentioned above. We can see that the pairs with the highest correlation coefficient doesn't not necessarily has the best ADF test value. We made the rank by ADF test value because it's more robust. +

      + +Tutorial07-pairs-trading-1 + +

      + The upper part of the following chart plots the stock prices of pair ING vs TCB. The lower part plots by how many times standard deviation the residual deviate from its mean. There are 5 trading opportunities if we set the opening threshold to be 2.32. +

      + +Tutorial07-pairs-trading-2 + +

      + The following chart is the density plot of the residual error. From the shape we can see the error is approximately normal distributed. +

      + +Tutorial07-pairs-trading-3 diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" new file mode 100644 index 0000000..9361eda --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/04 \347\273\223\346\236\234.cn.html" @@ -0,0 +1,20 @@ +

      + 我们使用了2013年1月至2016年12月的10分钟分辨率数据对该策略进行了回溯测试。为了证明样本的培训结果,我们随机选取了2016年9月7日至2013年11月30日的训练期。 +

      +

      + 下表展示了上述训练期间所选择的前10组配对。可以看出,关联系数最高的配对不一定具有最好的ADF测试值。我们用ADF测试值来进行排序,因为它更加稳健。 +

      + +Tutorial07-pairs-trading-1 + +

      + 下表的上半部分是ING和TCB配对的股票价格。下半部分表示残差偏离平均值的次数。如果我们将开始阈值设为2.32,则有5个交易机会。 +

      + +Tutorial07-pairs-trading-2 + +

      + 下图是残差的密度图。从图中可以看出,误差近似正常分布。 +

      + +Tutorial07-pairs-trading-3 diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 Summary.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 Summary.html new file mode 100755 index 0000000..ac06d78 --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 Summary.html @@ -0,0 +1,6 @@ +

      + The strategy is considered to be market neutral strategy because it a long/short strategy betting on price convergence. Out backtested beta is -0.112, which is within our expectation. + Theoretically, the higher resolution we use, the higher win rate is because on one hand the higher resolution would increase the number of datapoint in our training period, which would make it's harder to past the two-stage test; on the other hand the higher resolution data would let us capture minor profit more accurately. However, there is a trade off between performance and backtesting time. The higher resolution will lead backtesting time to increase drastically. + The number of stocks in the initialize step would also affect our performance. Theoretically, the more stock we have, we better pairs we are likely to pick. But too many stocks would also be time consuming. + what's worth mentioning is that the optimized parameters are different for each sector. It depends on the features of the price patterns in the specific industry. Plotting the pairs prices and the residual to observe is good option to adjust the thresholds. +

      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" new file mode 100644 index 0000000..fa65597 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/05 \346\200\273\347\273\223.cn.html" @@ -0,0 +1,3 @@ +

      + 该策略被认为是市场中性策略,因为它是一种对价格趋同进行押注的多/空策略。回溯测试beta为-0.112,在我们的预期范围内。从理论上讲,我们使用的分辨率越高,获胜的几率就越高,因为一方面,更高的分辨率会增加我们训练期间的数据点数量,这将使我们更难通过两阶段测试;另一方面,高分辨率的数据可以让我们更准确地捕捉微小的利润。然而,在性能和回测时间之间存在权衡。较高的分辨率将导致回溯测试时间急剧增加。初始化步骤中股票的数量也会影响我们的性能。理论上,我们拥有的股票越多,我们可能选择的股票配对就越好。但过多的股票也会耗费时间,值得一提的是,每个行业的优化参数是不同的。这取决于特定行业价格模式的特点。绘制出配对价格和观察残差是调整阈值的较好选择。 +

      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html new file mode 100755 index 0000000..3d55776 --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 Algorithm.html @@ -0,0 +1,6 @@ +
      +
      +
      + +
      +
      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..3d55776 --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/06 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 References.html b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 References.html new file mode 100644 index 0000000..b50463a --- /dev/null +++ b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 References.html @@ -0,0 +1,16 @@ +
        + +
      1. + George J. Miao High Frequency and Dynamic Pairs Trading Based on Statistical Arbitrage Using a Two-Stage Correlation and Cointegration Approach Online Copy +
      2. +
      3. + Cartea & Penalva, 2012, Where is the value in high frequency trading? Online Copy +
      4. +
      5. + Gatev, Goetzmann, & Rouwenhorst, 2006, Pairs trading: Performance of a relative-value arbitrage rule. The Review of Financial Studies, 19(3), 797–827. Online Copy +
      6. +
      7. + Engle and Granger, Co-integration and error correction: Representation, estimation, and testing. Econometrica, 55(2), 251–276. Online Copy +
      8. + +
      diff --git "a/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..b50463a --- /dev/null +++ "b/04 Strategy Library/07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach/07 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,16 @@ +
        + +
      1. + George J. Miao High Frequency and Dynamic Pairs Trading Based on Statistical Arbitrage Using a Two-Stage Correlation and Cointegration Approach Online Copy +
      2. +
      3. + Cartea & Penalva, 2012, Where is the value in high frequency trading? Online Copy +
      4. +
      5. + Gatev, Goetzmann, & Rouwenhorst, 2006, Pairs trading: Performance of a relative-value arbitrage rule. The Review of Financial Studies, 19(3), 797–827. Online Copy +
      6. +
      7. + Engle and Granger, Co-integration and error correction: Representation, estimation, and testing. Econometrica, 55(2), 251–276. Online Copy +
      8. + +
      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/01 Abstract.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/01 Abstract.html new file mode 100755 index 0000000..e664e2f --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/01 Abstract.html @@ -0,0 +1,7 @@ +

      + Trend estimation is a family of methods to detect and predict tendencies and trends in price series just using the history information. Moving average is a commonly used trend following trading tool. Lots of momentum trading strategies in the Forex market are based on the moving average rule, in which signals are triggered if the close is above or below the moving average. But MA has the time lag, therefore can't be used to predict the turning points of market price changes. +

      +

      + In this tutorial, I developed a trend following strategy which is proposed in the paper Harris R D F, Yilmaz F(2009). + This strategy exploits short-term momentum in the non-linear trend component of the exchange rate which is generated by Hodrick-Prescott Filter (rather than the exchange rate itself) and uses the MA(1, 2) rule to measure this momentum. The strategy was tested on seven kinds of exchange rates and the results shows less robustness and the performance is sensitive to the change of model parameters. +

      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/02 Introduction.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/02 Introduction.html new file mode 100755 index 0000000..0ff3a93 --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/02 Introduction.html @@ -0,0 +1,56 @@ +

      + Hodrick-Prescott Filter decomposes a time series\(y_t\) into two components: the cyclical part(which is short-term) and the trend part(which is long term). +

      + +\[y_t=x _t +c_t\] + +

      + The filter is the solution to the following optimization problem for \(x_t\) +

      + +\[\min _{x_t}\left[\sum_{t=1}^n(y_t-x_t)^2+\lambda\sum_{t=2}^{n-1}[(x_{t+1}-x_t)-(x_{t}-x_{t-1})^2] \right]\] +

      + The second term is the discrete derivative of the trend xt which characterizes the smoothness of the curve. We can rewrite the above formula in vector form: +

      + +\[\min_{\bf x}{\parallel {\bf{y}}-{\bf{x}}\parallel}_2^2+\lambda {\parallel D\bf x\parallel}_2^2\] + +

      + where \({\bf y}=(y_1,y_2,...,y_n),{\bf x}=(x_1,x_2,...,x_n)\in {\rm I\!R}^n\),\(\parallel\cdot\parallel_2\) is the Euclidean norm. D is the (n-2)*n matrix: +

      + +\[ + +\left[ +\begin{matrix} +1 & -2 & 1 & \\ +& 1 & -2 & 1 \\ +& & & \ddots &\\ +& & & 1 & -2 & 1 \\ +& & & & 1 & -2 & 1 \\ +\end{matrix} +\right] + +\] + +

      + The solution of this optimization problem is given by solving the following linear system: +

      + +\[y=(I+2\lambda D^TD)^{-1}x\] +
      + +
      def hpfilter(self,X, lamb=1600):
      +    X = np.asarray(X, float)
      +    if X.ndim > 1:
      +    X = X.squeeze()
      +    nobs = len(X)
      +    I = sparse.eye(nobs,nobs)
      +    offsets = np.array([0,1,2])
      +    data = np.repeat([[1.],[-2.],[1.]], nobs, axis=1)
      +    K = sparse.dia_matrix((data, offsets), shape=(nobs-2,nobs))
      +    use_umfpack = True
      +    self.trend = spsolve(I+lamb*K.T.dot(K), X,use_umfpack=use_umfpack)
      +    cycle = X - self.trend
      +
      +
      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/03 Method.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/03 Method.html new file mode 100755 index 0000000..d23890a --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/03 Method.html @@ -0,0 +1,85 @@ +

      + This low-frequency momentum trading strategies are applied to daily data on seven kinds of exchange rates. We use five years history data before January 2011 for initial estimation of the trend model. Daily exchange rates for the period January 2011 to May 2017 is used for out of sample trading. +

      + +
      + +
      def Initialize(self):
      +    self.SetStartDate(2011,1,1)
      +    self.SetEndDate(2017,5,30)
      +    self.SetCash(100000)
      +    self.numdays = 360*5  # set the length of training period
      +    self.syl = self.AddSecurity(SecurityType.Forex, "EURUSD", Resolution.Daily).Symbol
      +    self.n,self.m = 2, 1
      +    self.trend = None
      +    self.SetBenchmark(self.syl)
      +    self.MA_rules = None
      +    history = self.History(self.numdays,Resolution.Daily)
      +    self.close = [slice[self.syl].Close for slice in history]
      +
      +
      + +

      Step 1: Calibrating the Filter Smoothing Parameter λ

      +

      + The Ravn–Uhlig rule is commonly used to set the smoothing parameter λ in HP filter and must be greater than 0. It is adjusted by the changing frequency of observations and must be greater than 0. Hodrick and Prescott (1997) recommended setting λ to 1,600 for quarterly data. The Ravn–Uhlig rule sets  \(\lambda = 1600p^4\) , where p is the number of periods per quarter. As for our daily exchange rate data, we should have set λ to be \(1600\times (30 \times 4)^4\). But when we use this value as the λ, the curve is almost a straight line since the trend becomes smoother as λ → ∞. In order to avoid excessive smoothing, we gradually decrease the λ and draw the smoothing curve. Below is the chart of EURUSD daily price from the year 2010 to 2011. t100 denotes the trend component after filter with the parameter λ=100. +

      + +low-frequency-component-more + +

      + If we just plot the curve for the first 100 days, we find that the smaller the λ, the more apparent the trend. The curve does not change too much as the λ  smaller than 100. Thus here we choose  λ=100 to extract the trend of daily price data. This trend is our low-frequency component. +

      + +low-frequency-component-less + +

      Out-of-sample EUR/USD Trend Estimation

      + +out-of-sample-trend-estimation +

      Step 2: Setting up the Moving Average Rule

      + +

      + Moving average (MA) rules are very commonly used to generate buy and sell signals from data on the spot exchange rate. The MA rule compares a short-run moving average of the current and lagged exchange rate with a long-run moving average. +

      + +\[MA(m,n)=\frac{1}{m}\sum_{i=0}^{m-1}S_{t-i}-\frac{1}{n}\sum_{i=0}^{n-1}S_{t-i}\] + + +

      + For HP filter, the non-linear trend is estimated recursively as the paper did. The initial estimation was undertaken using 3 years history data before 2011. The estimation period is then rolled forward each day through the trading period from January 2011 to May 2017. +

      + +

      Step 3: Generating the Trading Signals

      +

      + We generate buy and sell signals by applying an MA(1, 2) rule to the estimated low-frequency component. For MA(m,n), m must be 1 which denotes the current value of low-frequency component. n should be small since large n would generate large time lag, the judgment of turning points is not accurate. +

      + +

      + A buy signal is generated when the current day’s low-frequency trend is higher than the last day’s low-frequency trend and a sell signal is generated when it is lower. +

      + +
      + +
      +def OnData(self,data):
      +    self.close.append(self.Portfolio[self.syl].Price)
      +    self.hpfilter(self.close[-self.numdays:len(self.close)+1], 100)
      +    self.MA_rules_today = (np.mean(self.trend[-self.m : len(self.trend)]) - np.mean(self.trend[-self.n : len(self.trend)]))
      +    self.MA_rules_yesterday = (np.mean(self.trend[-self.m-1: len(self.trend)-1]) - np.mean(self.trend[-self.n-1 : len(self.trend)-1]))
      +    holdings = self.Portfolio[self.syl].Quantity
      +
      +    if self.MA_rules_today > 0 and self.MA_rules_yesterday < 0:
      +       self.SetHoldings(self.syl, 1)
      +    elif self.MA_rules_today < 0 and self.MA_rules_yesterday > 0:
      +       self.SetHoldings(self.syl, -1)
      +
      +
      +

      Trading Signals when λ=1600

      + +trading-signal 1600.jpg + +

      Trading Signals when λ=100

      +trading-signal-100.jpg + +

      + The above charts are the in-sample trading signals after applying MA rules on the low-frequency component. The trend curve is more smooth with larger λ. Thus when we applied MA rules, a less smooth trend will trigger more trading opportunities. +

      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/04 Summary.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/04 Summary.html new file mode 100755 index 0000000..2e4457d --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/04 Summary.html @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Strategy Performance for different currencies in Forex
      CurrencyUSDCADEURUSD USDCHF EURGBPCADUSDUSDNOKUSDZAR
      Sharp Ratio0.3610.375 0.131 0.337 0.052 0.054 0.195
       Total Trades 14 11 12 11 6 16 9
       Annual Return 3.128% 3.272% 1.162% 2.689% 0.043% 0.093% 2.201%
       Max Drawdown 10.3% 8.3% 24.8% 17.6% 22.5% 30.3% 23%
      + +

      + The table reports the strategy performance statistics during six and a half years backtesting period. From the table we can see, most of them have the higher maximum drawdown. The number of total trades is small because we applied MA rules on the smoothed trend component.  As the author indicated in the paper, we still find that the performance of this strategy is very sensitive to the choice of lag parameters in MA rules and in a non-monotonic way. +

      + +

      + The strategy does not generate more stable profits in Forex market generally. That might because that the HP filter technique was designed to be viewed as a trend curve through the entire set of data. When we applied it in trading strategy, the entry of new data into the filter model can cause the trend line to change the trend through past data, makes it harder to identify the trend accurately. +

      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html new file mode 100755 index 0000000..f9505bd --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/05 Algorithm.html @@ -0,0 +1,6 @@ +
      +
      +
      + +
      +
      diff --git a/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/06 References.html b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/06 References.html new file mode 100644 index 0000000..3574dd3 --- /dev/null +++ b/04 Strategy Library/08 The Momentum Strategy Based on the Low Frequency Component of Forex Market/06 References.html @@ -0,0 +1,8 @@ +
        +
      1. + Harris R D F, Yilmaz F. A momentum trading strategy based on the low-frequency component of the exchange rate[J]. Journal of Banking & Finance, 2009, 33(9): 1575-1585. online copy +
      2. +
      3. + Dao T L. Momentum Strategies with L1 Filter[J]. Browser Download This Paper, 2014. online copy +
      4. +
      diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 Abstract.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 Abstract.html new file mode 100755 index 0000000..371a2b4 --- /dev/null +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 Abstract.html @@ -0,0 +1,3 @@ +

      + In recent years, factor investing gained significant popularity among global institutional investors. In this tutorial, we first developed a factor selection model to test if factors have the ability to differentiate potential winners and losers in the stock market. Then we use those  preselected factors to implement the factor ranking stock selection algorithm based on Factor Based Stock Selection Model for Turkish Equities, 2015,  Ayhan Yüksel. +

      diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" new file mode 100644 index 0000000..64620eb --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 \346\221\230\350\246\201.cn.html" @@ -0,0 +1,3 @@ +

      + 近年来,投资要素在全球机构投资者中非常受欢迎。在本教程中,我们首先开发了一个要素选择模型,用于测试要素是否具有区分股市中潜在赢家和输家的能力。然后,根据2015年基于要素的土耳其股票选择模型,我们利用这些预先选择要素,实现了要素排序选股算法,Ayhan Yüksel。 +

      diff --git a/Strategy Tutorials/Tutorial09 Stock Selection Strategy Based on Fundamental Factors.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html old mode 100644 new mode 100755 similarity index 51% rename from Strategy Tutorials/Tutorial09 Stock Selection Strategy Based on Fundamental Factors.html rename to 04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html index aad7b2f..663d5e1 --- a/Strategy Tutorials/Tutorial09 Stock Selection Strategy Based on Fundamental Factors.html +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html @@ -1,10 +1,13 @@ -

      Abstract

      -In recent years, factor investing gained significant popularity among global institutional investors. In this tutorial, we first developed a factor selection model to test if factors have the ability to differentiate potential winners and losers in the stock market. Then we use those  preselected factors to implement the factor ranking stock selection algorithm based on Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel[ref]Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy[/ref] -

      Part 1. Factor Selection

      -QuantConnect provides Morningstar fundamentals data for US Equities. Valuation Ratios is daily data. For others like operation ratios and financial statements data are available for multiple periods depending on the property. Please refer to Data Library for detailed factors available. +

      + QuantConnect provides Morningstar fundamentals data for US Equities. Valuation Ratios is daily data. For others like operation ratios and financial statements data are available for multiple periods depending on the property. Please refer to Data Library for detailed factors available. +

      +

      + The algorithm is designed to test the significance of one factor each time. +

      -The algorithm is designed to test the significance of one factor each time. -
      def Initialize(self):
      +
      + +
      def Initialize(self):
       	self.SetStartDate(2005,01,01)  #Set Start Date
       	self.SetEndDate(2012,03,01)    #Set End Date
       	self.SetCash(50000)            #Set Strategy Cash
      @@ -13,33 +16,48 @@ 

      Part 1. Factor Selection

      self.AddEquity("SPY") # add benchmark self.numOfCourseSymbols = 200 self.numOfPortfolio = 5 - self._changes = SecurityChanges.None + self._changes = None self.flag1 = 1 # variable to control the monthly rebalance of coarse and fine selection function self.flag2 = 0 # variable to control the monthly rebalance of OnData function self.flag3 = 0 # variable to record the number of rebalancing times # store the monthly returns of different portfolios in a dataframe self.df_return = pd.DataFrame(index = range(self.numOfPortfolio+1)) # schedule an event to fire at the first trading day of SPY - self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY"), Action(self.Rebalancing))
      + self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY"), Action(self.Rebalancing)) +
      +

Step 1: Ranking the stocks by factor values

-1. First, we sort the stocks by daily dollar volume and take the top stocks with the highest dollar volumes as our candidates. There is a convenient way using our universe selection API. Universes are refreshed every day by default, but can be refreshed as often as required. This is controlled by the variable UniverseSettings.Resolution. You can refer to the documentation for more details.  Here we use Scheduled events API to trigger code to run at the first trading day each month and use three flag variables to control the rebalancing of CoarseSelection, FineSelection and Ondata functions. +

+ 1. First, we sort the stocks by daily dollar volume and take the top stocks with the highest dollar volumes as our candidates. There is a convenient way using our universe selection API. Universes are refreshed every day by default, but can be refreshed as often as required. This is controlled by the variable UniverseSettings.Resolution. You can refer to the documentation for more details.  Here we use Scheduled events API to trigger code to run at the first trading day each month and use three flag variables to control the rebalancing of CoarseSelection, FineSelection and Ondata functions. +

+

+ Coarse Universe selection is the built-in universe data provided by QuantConnect which allows you to filter the universe of over 16000 symbols to perform rough filtering before your algorithm. Because coarse selection function takes all the equities including ETFs which have no fundamental data into account, we need the property x.HasFundamentalData to exclude them from our candidate stocks pool. +

+
-Coarse Universe selection is the built-in universe data provided by QuantConnect which allows you to filter the universe of over 16000 symbols to perform rough filtering before your algorithm. Because coarse selection function takes all the equities including ETFs which have no fundamental data into account, we need the property x.HasFundamentalData to exclude them from our candidate stocks pool. -
# sort the data by daily dollar volume and take the top entries
+
# sort the data by daily dollar volume and take the top entries
 def CoarseSelectionFunction(self, coarse):
     if self.flag1:
         CoarseWithFundamental = [x for x in coarse if x.HasFundamentalData]
         sortedByVolume = sorted(CoarseWithFundamental, key=lambda x: x.DollarVolume, reverse=True)
         top = sortedByVolume[:self.numOfCourseSymbols]
-        list = List[Symbol]()
-        for x in top:
-            list.Add(x.Symbol)
-            return list
+				return [i.Symbol for i in top]
     else:
-        return(List[Symbol]())
+        return []
 
-2. We extract the factor values of candidate stocks at the beginning of each month and sort the stocks in ascending order of their factor values. Here we use 12-months' total risk-based capital data x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths as an example.  It is the sum of Tier 1 and Tier 2 Capital. x.Symbol.Value can give the string symbol of selected stock x. Then we save those sorted symbols as self.symbol. -
def FineSelectionFunction(self, fine):
+
+ +

+ 2. We extract the factor values of candidate stocks at the beginning of each month and sort the stocks in ascending + order of their factor values. Here we use 12-months' total risk-based capital data + x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths as an example. + It is the sum of Tier 1 and Tier 2 Capital. x.Symbol.Value + can give the string symbol of selected stock x. Then we save those sorted symbols as self.symbol. +

+ +
+ +
def FineSelectionFunction(self, fine):
 	if self.flag1:
 		self.flag1 = 0
 		self.flag2 = 1
@@ -50,13 +68,20 @@ 

Step 1: Ranking the stocks by factor values

self.symbol = [str(x.Symbol.Value) for x in sorted_fine] # factor_value = [x.ValuationRatios.PERatio for x in sorted_fine] self.flag3 = self.flag3 + 1 - return (List[Symbol]()) + return [] else: - return (List[Symbol]()) + return []
+
+

Step 2: Compute the monthly return of portfolios

-1. At the end of each month, we extract the one-month history close prices of each stock and compute the monthly returns. -
sorted_symbol = self.symbol
+

+ 1. At the end of each month, we extract the one-month history close prices of each stock and compute the monthly returns. +

+ +
+ +
sorted_symbol = self.symbol
 self.AddEquity("SPY") # add benchmark
 for x in sorted_symbol:
 	self.AddEquity(x)
@@ -77,12 +102,16 @@ 

Step 2: Compute the monthly return of portfolios

# the length of monthly_return list should be divisible by the number of portfolios monthly_return = monthly_return[:int(math.floor(len(monthly_return) / self.numOfPortfolio) * self.numOfPortfolio)]
-
-
-
+
+ + +

+ 2. We divide the stocks into 5 portfolios and compute the average monthly returns of each portfolio. Then we add the monthly return of benchmark "SPY" at the last line of the data frame df_return. +

-2. We divide the stocks into 5 portfolios and compute the average monthly returns of each portfolio. Then we add the monthly return of benchmark "SPY" at the last line of the data frame df_return. -
reshape_return = np.reshape(monthly_return, (self.numOfPortfolio, len(monthly_return)/self.numOfPortfolio))
+
+ +
reshape_return = np.reshape(monthly_return, (self.numOfPortfolio, len(monthly_return)/self.numOfPortfolio))
 # calculate the average return of different portfolios
 port_avg_return = np.mean(reshape_return,axis=1).tolist()
 # add return of "SPY" as the benchmark  to the end of the return list
@@ -93,14 +122,21 @@ 

Step 2: Compute the monthly return of portfolios

port_avg_return.append(benchmark_monthly_return) self.df_return[str(self.flag3)] = port_avg_return
+

Step 3: Generate the metrics to test the factor significance

-After getting the monthly returns of portfolios and the benchmark, we compute the average annual return and excess return over benchmark of each portfolio across the whole backtesting period. Then We generate three metrics to judge the significance of each factor. -
    +

    + After getting the monthly returns of portfolios and the benchmark, we compute the average annual return and excess return over benchmark of each portfolio across the whole backtesting period. Then We generate three metrics to judge the significance of each factor. +

    + +
    • The first metrics is the correlation between the portfolio' returns and their rank. The absolute value of the correlation coefficient should larger than 0.8.
    • If the return of the rank first portfolio larger than the portfolio at the bottom of the return rankings, we define it the win portfolio and the loss portfolio and vice versa. The win probability is the probability that the win portfolio return outperform the benchmark return. The loss probability is the probability that the loss portfolio return underperform the benchmark.  If the factor is significant, both loss and win probability should greater than 0.4.
    • The excess return of win portfolio should be greater than 0.25, while the excess return of loss portfolio should be lower than 0.05.
    • -
-
def calculate_criteria(self,df_port_return):
+
+
+
+ +
def calculate_criteria(self,df_port_return):
 	total_return = (df_port_return + 1).T.cumprod().iloc[-1,:] - 1
 	annual_return = (total_return+1)**(1./6)-1
 	excess_return = annual_return - np.array(annual_return)[-1]
@@ -128,6 +164,7 @@ 

Step 3: Generate the metrics to test the factor significance

return test_result
+ @@ -197,19 +234,7 @@

Step 3: Generate the metrics to test the factor significance

-
-
-We choose 4 factors: FCFYield, PriceChange1M, BookValuePerShare and RevenueGrowth. -

Part 2. Stock Selection

-

Step 1: Rank the stocks by factor values

-First, we remove the  stocks without fundamental data or have zero factor value. For each pre-selected factor, we rank the stocks by those factor values. The order is descending if the factor correlation is negative, it is ascending if the factor correlation is positive. -

Step 2: Calculate equally weighted composite factor scores

-The second step is using different selected factor variables to calculate an equally weighted composite factor score for each stock. -
    -
  • First, according to the factor order, we place our universe stocks into 5 distinct quintile portfolios, named P1, P2, P3, P4 and P5. The ranking of portfolios sets out the preference of the factor model, i.e. the first portfolio (P1) corresponds to the “most preferred” stocks, while the fifth (P5) corresponds to the “least preferred” stocks.Suppose there are n stocks in total. Then the stocks fall into the first rank portfolio will have score p, the stocks fall into the second rank portfolio will get score p-1 and so on. Then we can get a score for every stock. We did the same calculation for each factor.
  • -
  • Second, we calculate a “Composite Factor Score” by combining the six-factor scores and using an equal weighting scheme. Then we get composite factor score for each stock.
  • -
  •  Third, we then rank the stocks in our universe according to their Composite Factor Scores and choose the highest ranked 20 stocks to construct our portfolios at the beginning of each month.
  • -
  • At the end of each month, we repeat the above steps to construct the new portfolio and adjust the holding stocks.
  • -
-

Algorithm

- + +

+ We choose 4 factors: FCFYield, PriceChange1M, BookValuePerShare and RevenueGrowth. +

diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" new file mode 100644 index 0000000..b8cefb8 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 \350\246\201\347\264\240\351\200\211\346\213\251.cn.html" @@ -0,0 +1,236 @@ +

+ QuantConnect为美国股市提供了晨星基本面数据。估值比率是每日数据。对于其他项目,如营业比率和财务报表,可以根据不同的属性获得不同时期的数据。详细的可用要素请参阅Data Library。 +

+

+ 该算法的设计是为了每次测试一个要素的重要性。 +

+ +
+ +
def Initialize(self):
+	self.SetStartDate(2005,01,01)  # 设置开始日期
+	self.SetEndDate(2012,03,01)    # 设置结束日期
+	self.SetCash(50000)            # 设置策略现金
+	self.UniverseSettings.Resolution = Resolution.Daily
+	self.AddUniverse(self.CoarseSelectionFunction, self.FineSelectionFunction)
+	self.AddEquity("SPY") # add benchmark
+	self.numOfCourseSymbols = 200
+	self.numOfPortfolio = 5
+	self._changes = None
+	self.flag1 = 1  # 控制粗选和精选函数每月重新平衡的变量
+	self.flag2 = 0  # 控制OnData函数每月重新平衡的变量
+	self.flag3 = 0  # 记录重新平衡次数的变量
+        # 将不同投资组合的月收益存储在一个数据框架内
+	self.df_return = pd.DataFrame(index = range(self.numOfPortfolio+1))
+        # 预定事件在SPY的第一个交易日解除
+	self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY"), Action(self.Rebalancing))
+
+
+

步骤1:按要素值对股票进行排序

+

+ 1. 首先,我们按每日美元交易量对股票进行排序,并将美元交易量最高的股票作为候选股票。有一种方便的方法使用我们的集合选择API。在默认情况下,集合每天都会刷新,但也可以根据需要经常刷新。这是由可变UniverseSettings.Resolution控制的。您可以参考documentation了解更多详细信息。在这里,我们使用Scheduled events API来触发在每个月第一个交易日运行的代码,并使用三个标志变量来控制CoarseSelectionFineSelectionOndata函数的重新平衡。 +

+

+ 粗略集合选择是由QuantConnect提供的内置集合数据,它允许你对超过16,000个符号的集合进行筛选,在你的算法之前进行粗略的筛选。由于粗选功能考虑了包括基金在内的所有无基础数据股票,所以我们需要属性x.HasFundamentalData将这些股票排除在我们的候选股票池之外。 +

+
+ +
# 按照每日美元交易量对数据进行排序,并取排名最上面的条目
+def CoarseSelectionFunction(self, coarse):
+    if self.flag1:
+        CoarseWithFundamental = [x for x in coarse if x.HasFundamentalData]
+        sortedByVolume = sorted(CoarseWithFundamental, key=lambda x: x.DollarVolume, reverse=True)
+        top = sortedByVolume[:self.numOfCourseSymbols]
+				return [i.Symbol for i in top]
+    else:
+        return []
+
+
+ +

+ 2. 我们在每个月初提取候选股票的要素值,并按其要素值的升序对股票进行排序。例如,这里我们使用了12个月的总风险基础资本数据x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths。它是一级资本和二级资本的总和。x.Symbol.Value可以给出所选股票x的串符号,然后将这些排序后的符号保存为self.symbol。 +

+ +
+ +
def FineSelectionFunction(self, fine):
+	if self.flag1:
+		self.flag1 = 0
+		self.flag2 = 1
+		# 通过删除要素值为零的股票来进行精细筛选
+		filtered_fine = [x for x in fine if x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths != 0 ]
+		# 按照要素值倒序排序
+		sorted_fine = sorted(filtered_fine, key=lambda x: x.FinancialStatements.TotalRiskBasedCapital.TwelveMonths, reverse=True)
+		self.symbol = [str(x.Symbol.Value) for x in sorted_fine]
+		# 要素值 = [x.ValuationRatios.PERatio for x in sorted_fine]
+		self.flag3 = self.flag3 + 1
+ 	 	return []
+	else:
+		return []
+
+
+ +

步骤2:计算投资组合的月收益

+

+ 1. 在每个月底,我们提取每支股票的一个月历史收盘价,并计算月收益。 +

+ +
+ +
sorted_symbol = self.symbol
+self.AddEquity("SPY") # 添加基准
+for x in sorted_symbol:
+	self.AddEquity(x)
+history = self.History(20,Resolution.Daily)
+monthly_return =[]
+new_symbol_list =[]
+for j in range(len(sorted_symbol)):
+	try:
+		daily_price = []
+		for slice in history:
+			bar = slice[sorted_symbol[j]]
+			daily_price.append(float(bar.Close))
+		new_symbol_list.append(sorted_symbol[j])
+ 		monthly_return.append(daily_price[-1] / daily_price[0] - 1)
+	except:
+		self.Log("No history data for " + str(sorted_symbol[j]))
+		del daily_price
+# 月收益列表的长度应能够被投资组合的数量整除
+monthly_return = monthly_return[:int(math.floor(len(monthly_return) / self.numOfPortfolio) * self.numOfPortfolio)]
+
+
+ + +

+ 2. 我们将股票分为5个投资组合,计算每个投资组合的平均月收益。然后在数据框架df_return的最后一行添加基准“SPY”的月收益。 +

+ +
+ +
reshape_return = np.reshape(monthly_return, (self.numOfPortfolio, len(monthly_return)/self.numOfPortfolio))
+# 计算不同投资组合的平均收益
+port_avg_return = np.mean(reshape_return,axis=1).tolist()
+# 将"SPY"的收益作为基准添加到收益列表的末尾
+benchmark_syl = self.AddEquity("SPY").Symbol
+history_benchmark = self.History(20,Resolution.Daily)
+benchmark_daily_price = [float(slice[benchmark_syl].Close) for slice in history_benchmark]
+benchmark_monthly_return = (benchmark_daily_price[-1]/benchmark_daily_price[0]) - 1
+port_avg_return.append(benchmark_monthly_return)
+self.df_return[str(self.flag3)] = port_avg_return
+
+
+

步骤3:生成度量来测试要素重要性

+

+ 在得到投资组合的月收益和基准后,我们计算了整个回溯测试期间各投资组合的年平均收益和基准之上的超额收益。然后我们生成三个度量来判断每个因素的重要性。 +

+ +
    +
  • 第一个度量是投资组合收益与其排名之间的相关性。关联系数绝对值应大于0.8。
  • +
  • 如果排名第一投资组合的收益大于排名垫底的投资组合,我们将其定义为盈利投资组合和亏损投资组合,反之亦然。盈利概率是盈利投资组合收益超过基准收益的概率。亏损概率是指亏损组合收益低于基准的概率。如果要素显著,则损益概率均应大于0.4。
  • +
  • 盈利投资组合的超额收益应大于0.25,亏损投资组合的超额收益应小于0.05。
  • +
+ +
+ +
def calculate_criteria(self,df_port_return):
+	total_return = (df_port_return + 1).T.cumprod().iloc[-1,:] - 1
+	annual_return = (total_return+1)**(1./6)-1
+	excess_return = annual_return - np.array(annual_return)[-1]
+	correlation = annual_return[0:5].corr(pd.Series([5,4,3,2,1],index = annual_return[0:5].index))
+	# 高收益的高要素
+	if np.array(total_return)[0] > np.array(total_return)[-2]:
+		loss_excess = df_port_return.iloc[-2,:] - df_port_return.iloc[-1,:]
+		win_excess = df_port_return.iloc[0,:] - df_port_return.iloc[-1,:]
+		loss_prob = loss_excess[loss_excess<0].count()/float(len(loss_excess)) win_prob = win_excess[win_excess>0].count()/float(len(win_excess))
+		win_port_excess_return = np.array(excess_return)[0]
+		loss_port_excess_return = np.array(excess_return)[-2]
+	# 低收益的高要素
+	else:
+		loss_excess = df_port_return.iloc[0,:] - df_port_return.iloc[-1,:]
+		win_excess = df_port_return.iloc[-2,:] - df_port_return.iloc[-1,:]
+		loss_prob = loss_excess[loss_excess<0].count()/float(len(loss_excess)) win_prob = win_excess[win_excess>0].count()/float(len(win_excess))
+		win_port_excess_return = np.array(excess_return)[-2]
+		loss_port_excess_return = np.array(excess_return)[0]
+	test_result = {}
+	test_result["correelation"]=correlation
+	test_result["win probality"]=win_prob
+	test_result["loss probality"]=loss_prob
+	test_result["win portfolio excess return"]=win_port_excess_return
+	test_result["loss portfolio excess return"]=loss_port_excess_return
+
+	return test_result
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
要素显著性测试结果
要素 FCFYield BuyBackYield PriceChange1MTrailingDividendYield EVToEBITDA RevenueGrowthBookValuePerShare
关联性 -0.936 -0.987 0.918 -0.981 0.9390.89-0.92
盈利概率0.6300.639 1 0.667 0.722 0.690.69
亏损概率 0.4260.472 1 0.518 0.472 0.420.40
超额收益(盈利) 0.324 0.2120.303 0.225 0.414 0.23 0.27
超额收益(亏损) 0.060 0.037 -1.67 0.043 0.042 0.07 0.06
+ +

+ 我们选择了4个要素:FCFYield、PriceChange1M、BookValuePerShare和RevenueGrowth。 +

diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 Stock Selection.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 Stock Selection.html new file mode 100755 index 0000000..62400c9 --- /dev/null +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 Stock Selection.html @@ -0,0 +1,17 @@ +Next we will select the stocks. +

Step 1: Rank the stocks by factor values

+

+ First, we remove the  stocks without fundamental data or have zero factor value. For each pre-selected factor, we rank the stocks by those factor values. The order is descending if the factor correlation is negative, it is ascending if the factor correlation is positive. +

+ +

Step 2: Calculate equally weighted composite factor scores

+

+ The second step is using different selected factor variables to calculate an equally weighted composite factor score for each stock. +

+ +
    +
  • First, according to the factor order, we place our universe stocks into 5 distinct quintile portfolios, named P1, P2, P3, P4 and P5. The ranking of portfolios sets out the preference of the factor model, i.e. the first portfolio (P1) corresponds to the “most preferred” stocks, while the fifth (P5) corresponds to the “least preferred” stocks.Suppose there are n stocks in total. Then the stocks fall into the first rank portfolio will have score p, the stocks fall into the second rank portfolio will get score p-1 and so on. Then we can get a score for every stock. We did the same calculation for each factor.
  • +
  • Second, we calculate a “Composite Factor Score” by combining the six-factor scores and using an equal weighting scheme. Then we get composite factor score for each stock.
  • +
  •  Third, we then rank the stocks in our universe according to their Composite Factor Scores and choose the highest ranked 20 stocks to construct our portfolios at the beginning of each month.
  • +
  • At the end of each month, we repeat the above steps to construct the new portfolio and adjust the holding stocks.
  • +
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" new file mode 100644 index 0000000..00bbed2 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 \350\202\241\347\245\250\351\200\211\346\213\251.cn.html" @@ -0,0 +1,17 @@ +接下来我们将选择股票。 +

步骤1:按照要素值对股票排序

+

+ 首先,我们删除没有基础数据或要素值为零的股票。对于每种预先选择的因素,我们根据这些因素值对股票进行排序。当要素相关性为负时,顺序递减;要素相关性为正时,顺序递增。 +

+ +

步骤2:计算平均加权综合要素得分

+

+ 第二步是使用不同的选择要素变量来计算每支股票的平均加权综合要素得分。 +

+ +
    +
  • 首先,根据要素顺序,我们将股票集合分成不同的五分位投资组合,分别为P1、P2、P3、P4和P5。投资组合的排序列出了要素模型的偏好,即第一投资组合(P1)对应“最优”的股票,第五投资组合(P5)对应“最不喜爱”的股票。假设总共有n支股票。然后进入第一投资组合的股票得分为p,进入第二级投资组合的股票得分为p-1,以此类推。然后我们可以得到每支股票的分数。我们对每个要素都进行了相同的计算。
  • +
  • 其次,我们将6个因素的得分结合起来,使用平均加权方案来计算“综合要素得分”。然后可以得到每支股票的综合要素得分。
  • +
  • 第三,然后我们根据综合要素得分对我们集合中的股票进行排名,并在每个月初选择排名最高的20支股票来构建我们的投资组合。
  • +
  • 每个月月底,我们都会重复上述步骤来构建新的投资组合,调整持有的股票。
  • +
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html new file mode 100755 index 0000000..8586edb --- /dev/null +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..d1a72fa --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html new file mode 100644 index 0000000..4d6f9c3 --- /dev/null +++ b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html @@ -0,0 +1,5 @@ +
    +
  1. + Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy +
  2. +
diff --git "a/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" new file mode 100644 index 0000000..4d6f9c3 --- /dev/null +++ "b/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 \345\217\202\350\200\203\346\226\207\347\214\256.cn.html" @@ -0,0 +1,5 @@ +
    +
  1. + Factor Based Stock Selection Model for Turkish Equities, 2015, Ayhan Yüksel Online Copy +
  2. +
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html new file mode 100755 index 0000000..e1419ee --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html @@ -0,0 +1,8 @@ +

+ In this tutorial, we implement a version of the short-term reversal strategy published by De Groot, Huij, & Zhou + (2012). The strategy works by observing the returns of each security in the universe over the previous month. Every + week, the algorithm longs the worst performers and shorts the top performers. The original strategy outlined in the + literature considers the entire universe of stocks when trading. To reduce trading costs, we limit our universe to + the most liquid large cap stocks. Our analysis shows the strategy underperforms the S&P 500 index during all our + backtest periods except the 2020 market crash. +

diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html new file mode 100755 index 0000000..8b9f021 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html @@ -0,0 +1,141 @@ +

+ The strategy code mainly consists of four parts: Initialization, Universe Selection, OnData, and OnSecuritiesChanged. +

+ +

Algorithm Initialization

+

+ When initializing the algorithm, we add a coarse universe selection method and specify several parameters to use + when selecting securities. +

+
+
+class ShortTimeReversal(QCAlgorithm):
+    def Initialize(self):
+        # ...
+      
+        self.UniverseSettings.Resolution = Resolution.Daily
+        self.AddUniverse(self.SelectCoarse)
+      
+        self.dollar_volume_selection_size = 100
+        self.roc_selection_size = int(0.1 * self.dollar_volume_selection_size)
+      
+        self.lookback = 22
+        self.roc_by_symbol = {}
+        self.week = 0
+
+
+
+ + + +

Universe Selection

+

+ The coarse universe selection method creates a RateOfChange + indicator for each of the top 100 + most liquid securities in the market. Upon creation, the indicator is manually warmed-up with historical closing + prices. After the indicators are ready, the universe selects the securities with the 10 best and 10 worst + RateOfChange values. +

+
+
+class ShortTimeReversal(QCAlgorithm):
+    # ...
+
+    def SelectCoarse(self, coarse):
+        
+        # We should keep a dictionary for all securities that have been selected
+        for cf in coarse:
+            symbol = cf.Symbol
+            if symbol in self.roc_by_symbol:
+                self.roc_by_symbol[symbol].Update(cf.EndTime, cf.AdjustedPrice)
+
+        # Refresh universe each week
+        week_number = self.Time.date().isocalendar()[1]
+        if week_number == self.week:
+            return Universe.Unchanged
+        self.week = week_number
+
+        # sort and select by dollar volume
+        sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
+        selected = {cf.Symbol: cf for cf in sortedByDollarVolume[:self.dollar_volume_selection_size]} 
+        
+        # New selections need a history request to warm up the indicator
+        symbols = [k for k in selected.keys()
+            if k not in self.roc_by_symbol or not self.roc_by_symbol[k].IsReady]
+
+        if symbols:
+            history = self.History(symbols, self.lookback, Resolution.Daily)
+            if history.empty:
+                self.Log(f'No history for {", ".join([x.Value for x in symbols])}')
+            history = history.close.unstack(0)
+
+            for symbol in symbols:
+
+                if symbol not in history:
+                    continue
+
+                # Create and warm-up the RateOfChange indicator
+                roc = RateOfChange(self.lookback)
+                for time, price in history[symbol].dropna().iteritems():
+                    roc.Update(time, price)
+                
+                if roc.IsReady:
+                    self.roc_by_symbol[symbol] = roc
+        
+        # Sort the symbols by their ROC values
+        selectedRateOfChange = {}
+        for symbol in selected.keys():
+            if symbol in self.roc_by_symbol:
+                selectedRateOfChange[symbol] = self.roc_by_symbol[symbol]
+        sortedByRateOfChange = sorted(selectedRateOfChange.items(), key=lambda kv: kv[1], reverse=True)
+        
+        # Define the top and the bottom to buy and sell
+        self.rocTop = [x[0] for x in sortedByRateOfChange[:self.roc_selection_size]]
+        self.rocBottom = [x[0] for x in sortedByRateOfChange[-self.roc_selection_size:]]
+        
+        return self.rocTop + self.rocBottom
+
+
+ + +

The OnData Method

+

+ As new data is passed to the OnData method, we issue orders to form a long-short portfolio. We long the securities + with the lowest RateOfChange values and short those with the largest values. After rebalancing, we clear the + `rocTop` and `rocBottom` lists to ensure we don’t trade again until the universe is refreshed. +

+
+
+class ShortTimeReversal(QCAlgorithm):
+    # ...
+
+    def OnData(self, data):
+        # Rebalance
+        for symbol in self.rocTop:
+            self.SetHoldings(symbol, -0.5/len(self.rocTop))
+        for symbol in self.rocBottom:
+            self.SetHoldings(symbol, 0.5/len(self.rocBottom))
+        
+        # Clear the list of securities we have placed orders for
+        # to avoid new trades before the next universe selection
+        self.rocTop.clear() 
+        self.rocBottom.clear()
+
+
+ +

The OnSecuritiesChanged Method

+

+ We are rebalancing the portfolio on a weekly basis, but securities can leave our defined universe between rebalance + days. To accommodate this, we liquidate any securities that are removed from the universe in the + OnSecuritiesChanged method. +

+
+
+class ShortTimeReversal(QCAlgorithm):
+    # ...
+
+    def OnSecuritiesChanged(self, changes):
+        for security in changes.RemovedSecurities:
+            self.Liquidate(security.Symbol, 'Removed from Universe')
+
+
\ No newline at end of file diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html new file mode 100755 index 0000000..c2e37d5 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html new file mode 100644 index 0000000..3d18c34 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html @@ -0,0 +1,56 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeVariance
5 Year Backtest1/1/20161/1/2021Strategy0.240.058
Benchmark0.8250.028
2020 Crash2/19/20203/23/2020Strategy-1.0250.917
Benchmark-1.40.474
2020 Recovery3/23/20206/8/2020Strategy1.6880.16
Benchmark8.7650.103
+
+ diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html new file mode 100644 index 0000000..1c0cad5 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html @@ -0,0 +1,13 @@ +

+ Although this strategy passes several of the + metrics required for Alpha Streams + and the Quant League competition, it requires further work to pass the following requirements: +

+ +
    +
  • PSR >= 80%
  • +
  • Emits insights
  • +
  • Max drawdown <= 10%
  • +
  • Handles dividends and splits
  • +
  • Minute or second data resolution
  • +
diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html new file mode 100644 index 0000000..ae81428 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html @@ -0,0 +1,16 @@ +

+ The short-term reversal strategy implemented in this tutorial produced a lower Sharpe ratio than the S&P + 500 index ETF benchmark over all our testing periods except during the 2020 market crash. To continue the + development of this strategy, future areas of research include: +

+ +

+ To continue the development of this strategy, future areas of research include: +

+ +
    +
  • Increasing the data resolution and adding risk management logic.
  • +
  • Applying the strategy to a different universe of securities.
  • +
  • Testing other lookback periods for the RateOfChange indicator. Some researchers exclude the most-recent month’s price action from the indicator’s calculation.
  • +
  • Adjusting the weight for each insight emitted from the alpha model. Perhaps the most extreme performer of all the securities the alpha model is about to long (short) should be given the largest weight of all the securities the model is about to long (short).
  • +
\ No newline at end of file diff --git a/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html new file mode 100644 index 0000000..2a52089 --- /dev/null +++ b/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html @@ -0,0 +1,6 @@ +
    +
  1. + de Groot, Wilma and Huij, Joop and Zhou, Weili, Another Look at Trading Costs and Short-Term Reversal + Profits (July 1, 2011). Online copy +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/100 Trading with WTI BRENT Spread/01 Introduction.html b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 Introduction.html new file mode 100644 index 0000000..d18875d --- /dev/null +++ b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 Introduction.html @@ -0,0 +1,5 @@ +

+ The WTI-Brent spread is the difference between the prices of two types of crude oil: West Texas Intermediate (WTI) on the long side and Brent Crude (Brent) on the short side. + For years, the price difference between the two has only been a few dollars on average. As both oils are very similar, their spread shows signs of strong predictability and usually oscillates around some average value. + Therefore, it is possible to use deviations from the fair spread value to bet on convergence back to fair value. Here we present a trading strategy based on the price deviations of the spread. +

diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..1645559 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +

+ WTI-Brent价差指的是两种原油价格之间的差异:即多头的西德克萨斯中质原油(WTI)和空头布伦特原油(Brent)。多年来,两者之间的价格差距平均只有几美元。由于这两种原油非常相似,它们的价差显示出很强的可预测性,通常在某个平均值附近波动。因此,有可能使用偏离公允价差的值来押注回复到公允价值。本文提出了一种基于价差价格差异的交易策略。 +

diff --git a/04 Strategy Library/100 Trading with WTI BRENT Spread/02 Method.html b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 Method.html new file mode 100644 index 0000000..fdcce3d --- /dev/null +++ b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 Method.html @@ -0,0 +1,121 @@ +

+ We download the WTI and Brent crude oil price from Macrotrends and import the csv file with the custom data downloader. + The unit is dollars per barrel. +

+
+
+  class WTI(PythonData):
+      "Class to import WTI Spot Price(Dollars per Barrel) data from Dropbox"
+
+      def GetSource(self, config, date, isLiveMode):
+          return SubscriptionDataSource("https://www.dropbox.com/s/jpie3z6j0stp97d/wti-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
+
+      def Reader(self, config, line, date, isLiveMode):
+          if not (line.strip() and line[1].isdigit()): return None
+          index = WTI()
+          index.Symbol = config.Symbol
+          try:
+              data = line.split(',')
+              index.Time = datetime.strptime(data[0], "%Y-%m-%d")
+              index.Value = Decimal(data[1])
+          except:
+              return None
+          return index
+
+  class BRENT(PythonData):
+      "Class to import BRENT Spot Price(Dollars per Barrel) data from Dropbox"
+
+      def GetSource(self, config, date, isLiveMode):
+          return SubscriptionDataSource("https://www.dropbox.com/s/w380c4n7xjmdqxl/brent-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
+
+      def Reader(self, config, line, date, isLiveMode):
+          if not (line.strip() and line[1].isdigit()): return None
+          index = BRENT()
+          index.Symbol = config.Symbol
+          try:
+              data = line.split(',')
+              index.Time = datetime.strptime(data[0], "%Y-%m-%d")
+              index.Value = Decimal(data[1])
+          except:
+              return None
+          return index
+
+
+

+ The spread is defined as the difference between WTI price and Brent price. Next, we need to calculate the moving average of the spread series. + using the the indicator SimpleMovingAverage. As the indicator uses the price difference instead of the price series, + we need to manually initialize the indicator with the history request. +

+
+
+self.SpreadSMA = SimpleMovingAverage(20)
+hist = self.History(["WTI", "BRENT"], 400, Resolution.Daily)["value"].unstack(level=0).dropna()
+hist_20days = hist[-20:]
+spread = (hist_20days["WTI"] - hist_20days["BRENT"]).dropna()
+for index, value in spread.items():
+    self.SpreadSMA.Update(index, value)
+
+
+

+ To get the fair value of the spread, we perform the linear regression between WTI and Brent price over the last one year history price. +

+ \[P_{Brent}=\beta \cdot P_{WTI}+\alpha\] +

+ Then the fair value of the spread is +

+\[Fair \ Spread =(1-\beta)\cdot CurrentPrice_{WTI}-\alpha\] +

+
+
+hist_one_year = hist[-252:]
+X = hist_one_year["WTI"][:, np.newaxis]
+y = hist_one_year["BRENT"]
+self.regr = linear_model.LinearRegression()
+self.regr.fit(X, y)
+
+
+

+ The fair value is calculated every day. If the current spread value is above SMA 20 then we enter a short position in the spread on close (betting that the spread will decrease to fair value represented by SMA 20). + The trade is closed at the close of the trading day when the spread crosses below fair value. If the current spread value is below SMA 20 then we enter a long position betting that the spread will increase and the trade is closed at the close of the trading day when the spread crosses above fair value. +

+ +
+
+def OnData(self, data):
+    if not (data.ContainsKey("WTI") and data.ContainsKey("BRENT")): return
+    self.Plot("Spread Plot", "Spread", data["WTI"].Price - data["BRENT"].Price)
+
+    self.SpreadSMA.Update(self.Time, data["WTI"].Price - data["BRENT"].Price)
+    if not self.SpreadSMA.IsReady: return
+    spread = self.Securities["WTI"].Price - self.Securities["BRENT"].Price
+    fair_value =self.Securities["WTI"].Price - Decimal(self.regr.predict([[self.Securities["WTI"].Price]])[0])
+
+    if spread > self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong):
+        self.SetHoldings("WTI", -0.5)
+        self.SetHoldings("BRENT", 0.5) 
+        self.Plot("Spread Plot", "Long Spread Trade", data["WTI"].Price - data["BRENT"].Price)
+
+    elif spread < self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort):
+        self.SetHoldings("WTI", 0.5)
+        self.SetHoldings("BRENT", -0.5)
+        self.Plot("Spread Plot", "Short Spread Trade", data["WTI"].Price - data["BRENT"].Price)
+
+    if self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong and spread < fair_value:
+        self.Liquidate()
+
+    if self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort and spread > fair_value:
+        self.Liquidate()
+
+
+

+ To demonstrate the trend of the spread series, we add the spread plot and mark the spread long/short point on the spread curve. +

+
+
+spreadPlot = Chart("Spread Plot")
+spreadPlot.AddSeries(Series("Spread", SeriesType.Line, 0))
+spreadPlot.AddSeries(Series("Long Spread Trade", SeriesType.Scatter, 0))
+spreadPlot.AddSeries(Series("Short Spread Trade", SeriesType.Scatter, 0))
+self.AddChart(spreadPlot)
+
+
diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..979fd31 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,117 @@ +

+ 我们从Macrotrends下载WTI和Brent原油价格,并使用自定义数据下载器导入csv文件。单位为美元/桶。 +

+
+
+  class WTI(PythonData):
+      "Class to import WTI Spot Price(Dollars per Barrel) data from Dropbox"
+
+      def GetSource(self, config, date, isLiveMode):
+          return SubscriptionDataSource("https://www.dropbox.com/s/jpie3z6j0stp97d/wti-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
+
+      def Reader(self, config, line, date, isLiveMode):
+          if not (line.strip() and line[1].isdigit()): return None
+          index = WTI()
+          index.Symbol = config.Symbol
+          try:
+              data = line.split(',')
+              index.Time = datetime.strptime(data[0], "%Y-%m-%d")
+              index.Value = Decimal(data[1])
+          except:
+              return None
+          return index
+
+  class BRENT(PythonData):
+      "Class to import BRENT Spot Price(Dollars per Barrel) data from Dropbox"
+
+      def GetSource(self, config, date, isLiveMode):
+          return SubscriptionDataSource("https://www.dropbox.com/s/w380c4n7xjmdqxl/brent-crude-oil-prices-10-year-daily.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
+
+      def Reader(self, config, line, date, isLiveMode):
+          if not (line.strip() and line[1].isdigit()): return None
+          index = BRENT()
+          index.Symbol = config.Symbol
+          try:
+              data = line.split(',')
+              index.Time = datetime.strptime(data[0], "%Y-%m-%d")
+              index.Value = Decimal(data[1])
+          except:
+              return None
+          return index
+
+
+

+ 价差定义为WTI价格与Brent价格之间的差。接下来,我们需要使用指标SimpleMovingAverage来计算价差系列的移动平均值。由于指标使用的是价格差异而不是价格系列,因此需要使用历史请求手动初始化指标。 +

+
+
+self.SpreadSMA = SimpleMovingAverage(20)
+hist = self.History(["WTI", "BRENT"], 400, Resolution.Daily)["value"].unstack(level=0).dropna()
+hist_20days = hist[-20:]
+spread = (hist_20days["WTI"] - hist_20days["BRENT"]).dropna()
+for index, value in spread.items():
+    self.SpreadSMA.Update(index, value)
+
+
+

+ 为了得到价差的公允价值,我们对WTI和Brent价格在过去一年的历史价格进行了线性回归。 +

+ \[P_{Brent}=\beta \cdot P_{WTI}+\alpha\] +

+ 那么差价的公允价值是 +

+\[Fair \ Spread =(1-\beta)\cdot CurrentPrice_{WTI}-\alpha\] +

+
+
+hist_one_year = hist[-252:]
+X = hist_one_year["WTI"][:, np.newaxis]
+y = hist_one_year["BRENT"]
+self.regr = linear_model.LinearRegression()
+self.regr.fit(X, y)
+
+
+

+ 公允价值每天计算一次。如果当前价差值高于SMA 20,那么我们将在收盘时进入价差空头头寸(押注价差将降至SMA 20所代表的公允价值)。当价差低于公允价值时,交易在交易日收盘时结束。如果当前价差低于SMA 20,那么我们就进入多头头寸,押注价差将会增加,当价差超过公允价值时,交易将在交易日收盘时结束。 +

+ +
+
+def OnData(self, data):
+    if not (data.ContainsKey("WTI") and data.ContainsKey("BRENT")): return
+    self.Plot("Spread Plot", "Spread", data["WTI"].Price - data["BRENT"].Price)
+
+    self.SpreadSMA.Update(self.Time, data["WTI"].Price - data["BRENT"].Price)
+    if not self.SpreadSMA.IsReady: return
+    spread = self.Securities["WTI"].Price - self.Securities["BRENT"].Price
+    fair_value =self.Securities["WTI"].Price - Decimal(self.regr.predict([[self.Securities["WTI"].Price]])[0])
+
+    if spread > self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong):
+        self.SetHoldings("WTI", -0.5)
+        self.SetHoldings("BRENT", 0.5) 
+        self.Plot("Spread Plot", "Long Spread Trade", data["WTI"].Price - data["BRENT"].Price)
+
+    elif spread < self.SpreadSMA.Current.Value and not (self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort):
+        self.SetHoldings("WTI", 0.5)
+        self.SetHoldings("BRENT", -0.5)
+        self.Plot("Spread Plot", "Short Spread Trade", data["WTI"].Price - data["BRENT"].Price)
+
+    if self.Portfolio["WTI"].IsShort and self.Portfolio["BRENT"].IsLong and spread < fair_value:
+        self.Liquidate()
+
+    if self.Portfolio["WTI"].IsLong and self.Portfolio["BRENT"].IsShort and spread > fair_value:
+        self.Liquidate()
+
+
+

+ 为了显示价差序列的趋势,我们添加了价差图,并在价差曲线上标记了价差的多头/空头点。 +

+
+
+spreadPlot = Chart("Spread Plot")
+spreadPlot.AddSeries(Series("Spread", SeriesType.Line, 0))
+spreadPlot.AddSeries(Series("Long Spread Trade", SeriesType.Scatter, 0))
+spreadPlot.AddSeries(Series("Short Spread Trade", SeriesType.Scatter, 0))
+self.AddChart(spreadPlot)
+
+
diff --git a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html new file mode 100644 index 0000000..ccc8b22 --- /dev/null +++ b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..ccc8b22 --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/100 Trading with WTI BRENT Spread/04 Source.html b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 Source.html new file mode 100644 index 0000000..5cbb24e --- /dev/null +++ b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 Source.html @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..5cbb24e --- /dev/null +++ "b/04 Strategy Library/100 Trading with WTI BRENT Spread/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/102 Option Expiration Week Effect/01 Introduction.html b/04 Strategy Library/102 Option Expiration Week Effect/01 Introduction.html new file mode 100644 index 0000000..2a0c77c --- /dev/null +++ b/04 Strategy Library/102 Option Expiration Week Effect/01 Introduction.html @@ -0,0 +1,11 @@ +

+ The expiration date for an options contract is the time when the contract is no longer valid. + The expiration date for listed stock options in the United States is usually the third Friday of the contract month, which is the month when the contract expires. + When that Friday falls on a holiday, the expiration date is on Thursday immediately before the third Friday. + The options expiration week is a week before options expiration. +

+

+ During option-expiration weeks, a reduction occurs in option open interest as the near-term options approach their expiration and then expire. + According to a research from Chris and Licheng Returns and option activity over the option-expiration week for S&P 100 stocks, + Large-cap stocks with actively traded options tend to have higher average weekly returns during option-expiration weeks. In this algorithm, we'll use the real market data to explore the option expiration week effect. +

diff --git a/04 Strategy Library/102 Option Expiration Week Effect/02 Method.html b/04 Strategy Library/102 Option Expiration Week Effect/02 Method.html new file mode 100644 index 0000000..e89806b --- /dev/null +++ b/04 Strategy Library/102 Option Expiration Week Effect/02 Method.html @@ -0,0 +1,51 @@ +

+ S&P 100 index includes 102 leading U.S. stocks with exchange-listed options. The constituents represent almost 51% of the market capitalization of the U.S. equity market. + Here we trade the S&P 100 index ETF as a portfolio of U.S. large-cap stocks. +

+

+ In the next step, we add the options to get their expiration dates. The range of expiration dates should bigger enough to include the + the contract which expires in this month. +

+
+
+def Initialize(self):
+    self.SetStartDate(2007, 1, 1)
+    self.SetEndDate(2018, 8, 1)
+    self.SetCash(10000)
+    self.AddEquity("OEF", Resolution.Minute)
+    option = self.AddOption("OEF")
+    option.SetFilter(-3, 3, timedelta(0), timedelta(days = 60))
+    self.SetBenchmark("OEF")
+
+
+

+ To get a list of expiration dates from the contracts in the current option chain, we can use TradingCalendar object. + It allows us to filter the calendar days by the type TradingDayType.OptionExpiration and the start as well as the end date. + The expiry at the top of the list is the most recent expiration date. +

+

+ The long position is opened at the start of the expiration week. Therefore, we use the scheduled event to fire the rebalance method every Monday. + If the current Monday is in the expiration week, we long the S&P 100 index ETF. +

+
+
+def Rebalance(self):
+    calendar = self.TradingCalendar.GetDaysByType(TradingDayType.OptionExpiration, self.Time, self.EndDate)
+    expiries = [i.Date for i in calendar]
+    if len(expiries) == 0: return
+    self.lastest_expiry = expiries[0]
+
+    if (self.lastest_expiry - self.Time).days <= 5:
+        self.SetHoldings("OEF", 1)
+
+
+

+ The algorithm stays in cash during days out of the options expiration week. +

+
+
+def OnData(self, slice):
+    if self.Time.date() == self.lastest_expiry.date():
+        self.Liquidate()
+
+
diff --git a/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html b/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html new file mode 100644 index 0000000..7ff9460 --- /dev/null +++ b/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/102 Option Expiration Week Effect/04 Source.html b/04 Strategy Library/102 Option Expiration Week Effect/04 Source.html new file mode 100644 index 0000000..3a2585c --- /dev/null +++ b/04 Strategy Library/102 Option Expiration Week Effect/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html new file mode 100644 index 0000000..7d69c19 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html @@ -0,0 +1,7 @@ +

+ In this tutorial, we implement an intraday arbitrage strategy that capitalizes on deviations between two closely correlated + index ETFs. Even though at times both ETFs may hold different constituents and different weights of securities while tracking + the index, they are both highly correlated and extremely liquid. Researchers have shown these two properties are essential to + an arbitrage system's success. The algorithm we implement here is inspired by the work of Kakushadze and Serur (2018) and + Marshall, Nguyen, and Visaltanachoti (2010). +

diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html new file mode 100644 index 0000000..8c03fe6 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html @@ -0,0 +1,9 @@ +

+ Marshall et al (2010) define an arbitrage opportunity as when the bid price of ETF A (B) diverts high enough away from the ask + price of ETF B (A) such that their quotient reaches a threshold. In their paper, an arbitrage opportunity is only acted upon + when the threshold is satisfied for 15 seconds. When these criteria are met, the algorithm enters the arbitrage trade by going + long ETF B (A) and short ETF A (B). When the spread reverts back to where the bid of ETF B (A) >= the ask of ETF A (B) for 15 + seconds, the positions are liquidated. An overview of the trade process is illustrated in the image below. +

+ +Tutorial1023-intraday-arbitrage-1 \ No newline at end of file diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html new file mode 100644 index 0000000..ecac338 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html @@ -0,0 +1,129 @@ +

Universe Selection

+

+ We implement a manual universe selection model that includes our two ETFs, SPY and IVV. The attached research notebook finds + the correlation of daily returns to be >0.99. +

+
+
+tickers = ['IVV', 'SPY']
+symbols = [ Symbol.Create(t, SecurityType.Equity, Market.USA) for t in tickers ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+
+
+ +

Spread Adjustments

+

+ Plotting the ratio of the security prices shows its trending behavior. +

+Tutorial1023-intraday-arbitrage-2 +

+ Without adjusting this ratio over time, an arbitrage system would be stuck in a single trade for majority of the backtest. To + resolve this, we subtract a trailing mean from each data point. +

+Tutorial1023-intraday-arbitrage-3 +

+ Both of the above plots can be reproduced in the attached research notebook. During backtesting, this adjustment is done + during trading by setting up a + QuoteBarConsolidator for each security in our + universe. On each new consolidated QuoteBar, we + update the trailing window of L1 data, then calculate the latest spread adjustment values. +

+
+
+# In OnSecuritiesChanged
+for symbol in self.symbols:
+    self.consolidators[symbol] = QuoteBarConsolidator(1)
+    self.consolidators[symbol].DataConsolidated += self.CustomDailyHandler
+    algorithm.SubscriptionManager.AddConsolidator(symbol, self.consolidators[symbol])
+
+def CustomDailyHandler(self, sender, consolidated):
+    # Add new data point to history while removing expired history
+    self.history[consolidated.Symbol]['bids'] = np.append(self.history[consolidated.Symbol]['bids'][1:], consolidated.Bid.Close)
+    self.history[consolidated.Symbol]['asks'] = np.append(self.history[consolidated.Symbol]['asks'][1:], consolidated.Ask.Close)
+    
+    self.update_spread_adjusters()
+
+def update_spread_adjusters(self):
+    for i in range(2):
+        numerator_history = self.history[self.symbols[i]]['bids']
+        denominator_history = self.history[self.symbols[abs(i-1)]]['asks']
+        self.spread_adjusters[i] = (numerator_history / denominator_history).mean()
+
+
+ + +

Alpha Construction

+

+ The ArbitrageAlphaModel monitors the intraday bid and ask prices of the securities in the universe. In the constructor, we + can specify the model parameters. In this tutorial, we select a shorter window an arbitrage opportunity must be active before + we act on it by setting `order_delay` to 3. +

+
+
+class ArbitrageAlphaModel(AlphaModel):
+    symbols = [] # IVV, SPY
+    entry_timer = [0, 0]
+    exit_timer = [0, 0]
+    spread_adjusters = [0, 0]
+    long_side = -1
+    consolidators = {}
+    history = {}
+
+    def __init__(self, order_delay = 3, profit_pct_threshold = 0.02, window_size = 400):
+        self.order_delay = order_delay
+        self.pct_threshold = profit_pct_threshold / 100
+        self.window_size = window_size
+
+
+ + +

Trade Signals

+

+ To emit insights, we check if either side of the arbitrage strategy warrants an entry. If no new entries are to be made, the + algorithm then looks to exit any current positions. With this design, we can flip our long/short bias without first + flattening our position. We use a practically-infinite insight durations as we do not know how long the algorithm will be in + an arbitrage trade. +

+
+
+# Search for entries
+for i in range(2):
+    if quotebars[abs(i-1)].Bid.Close / quotebars[i].Ask.Close - self.spread_adjusters[abs(i-1)] >= self.pct_threshold:
+        self.entry_timer[i] += 1
+        if self.entry_timer[i] == self.order_delay:
+            self.exit_timer = [0, 0]
+            if self.long_side == i:
+                return []
+            self.long_side = i
+            return [Insight.Price(self.symbols[i], timedelta(days=9999), InsightDirection.Up),
+                    Insight.Price(self.symbols[abs(i-1)], timedelta(days=9999), InsightDirection.Down)]
+        else:
+            return []
+    self.entry_timer[i] = 0
+
+# Search for an exit
+if self.long_side >= 0: # In a position
+    if quotebars[self.long_side].Bid.Close / quotebars[abs(self.long_side-1)].Ask.Close - self.spread_adjusters[self.long_side] >= 0: # Exit signal
+        self.exit_timer[self.long_side] += 1
+        if self.exit_timer[self.long_side] == self.order_delay: # Exit signal lasted long enough
+            self.exit_timer[self.long_side] = 0
+            i = self.long_side
+            self.long_side = -1
+            return [Insight.Price(self.symbols[i], timedelta(days=9999), InsightDirection.Flat),
+                    Insight.Price(self.symbols[abs(i-1)], timedelta(days=9999), InsightDirection.Flat)]
+        else:
+            return []
+return []
+
+
+ + +

Portfolio Construction & Trade Execution

+

+ Following the guidelines of Alpha Streams + and the Quant League competition, we + utilize the + EqualWeightingPortfolioConstructionModel and the + + ImmediateExecutionModel. +

diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html new file mode 100644 index 0000000..c59088b --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html new file mode 100644 index 0000000..2d3e6c9 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html @@ -0,0 +1,93 @@ +

+ We analyze the performance of this strategy by comparing it to the S&P 500 ETF benchmark, SPY. We notice that the + strategy has a lower Sharpe ratio over all of our testing periods than the benchmark, except for the Fall 2015 + crisis where it achieved a 2.8 Sharpe ratio. The strategy also has a lower annual standard deviation of returns + when compared to the SPY, implying more consistent returns over time. A breakdown of the strategy's performance + across all our testing periods is displayed in the table below. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeASD
Backtest8/11/20158/11/2020Strategy-0.4470.053
Benchmark0.7320.192
Fall 20158/10/201510/10/2015Strategy2.8370.225
Benchmark-0.7240.251
2020 Crash2/19/20203/23/2020Strategy-4.1960.209
Benchmark-1.2430.793
2020 Recovery3/23/20206/8/2020Strategy-3.4430.013
Benchmark13.7610.386
+
+ + +

+ The lack of performance for this arbitrage strategy is mostly attributed to the fees it incurs while trading. This + is common for an intraday arbitrage strategy, but we discuss ways to reduces these fees in the conclusion of this + tutorial. After removing the costs of commissions, crossing the spread, and slippage, the strategy outperforms the + SPY over the entire backtesting period. Without these costs, the strategy generates a 1.09 Share ratio while the + SPY generates a 0.732 Sharpe ratio. See the backtest performance without fees below. +

+ + +
+
+
+ +
+
diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html new file mode 100644 index 0000000..c76ecb6 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html @@ -0,0 +1,19 @@ +

+ Although this strategy passes several of the + metrics required for Alpha Streams + and the Quant League competition, it requires further work to pass the following requirements: +

+ + +
    +
  • Profitable
  • +
  • PSR >= 80%
  • +
  • Max drawdown duration <= 6 months
  • +
  • Insights contain the following properties: Symbol, Duration, Direction, and Weight
  • +
  • Alphas need to place at least 10 trades per month for the majority of the backtest
  • +
+ +

+ The algorithm currently places trades during 12 unique months throughout the backtest. Since the backtest spans + across 61 months, it places trades through a minority of the backtest. +

diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html new file mode 100644 index 0000000..3df342d --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html @@ -0,0 +1,10 @@ +

+ The intraday arbitrage strategy we built and tested throughout this tutorial underperforms the SPY benchmark in + terms of Sharpe ratio when including trading costs. Without these costs, we found the strategy outperforms the SPY + in terms of Sharpe ratio. In our implementation, we specified the alpha model to initiate trading when atleast a + 0.02% profit threshold is reached for 3 seconds. Both of these parameters are set lower than the strategy examined + in Marshall et al (2010) for demonstration purposes. Increasing the profit threshold will lead to more profitable, + but fewer, trades that may overcome the cost of trading. We leave this area of study for future research. + Additional areas of future research include increasing the resolution of data from second to tick and incorportating + an execution model that utilizes limit orders to reduce fees. +

diff --git a/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html new file mode 100644 index 0000000..a684227 --- /dev/null +++ b/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html @@ -0,0 +1,8 @@ +
    +
  1. + Marshall, Ben R. and Nguyen, Nhut (Nick) Hoang and Visaltanachoti, Nuttawat, ETF Arbitrage: Intraday Evidence (November 16, 2010). Online copy +
  2. +
  3. + Kakushadze, Zura and Serur, Juan Andrés, 151 Trading Strategies (August 17, 2018). Z. Kakushadze and J.A. Serur. 151 Trading Strategies. Cham, Switzerland: Palgrave Macmillan, an imprint of Springer Nature, 1st Edition (2018), XX, 480 pp; ISBN 978-3-030-02791-9. Online copy +
  4. +
\ No newline at end of file diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html new file mode 100644 index 0000000..a6cf634 --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html @@ -0,0 +1,6 @@ +

+ In this tutorial, we apply Deep Learning Classification in an attempt to forecast the movement of future stock prices. +

+

+ Key Concepts: Convolutional Neural Network, Deep Learning, Time-series Forecasting, Classification, Trading +

\ No newline at end of file diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html new file mode 100644 index 0000000..1fa0f4e --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html @@ -0,0 +1,8 @@ +

+ Various time series forecasting models (SMA, EMA, etc.) have been applied to stocks to forecast price movements. + More recently, with the advent of Neural Networks, which have seen applications in several fields, ranging from + medicine to fraud detection, researchers have tried to apply Neural Networks to the markets in an attempt to forecast price + movements. Convolutional Neural Networks (CNNs) are a class of Neural Networks most widely known for their use in + image classification, and now, researchers are applying CNNs to extract patterns, also known as features, from times-series + data to forecast future stock prices. +

diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html new file mode 100644 index 0000000..e56515f --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html @@ -0,0 +1,283 @@ +

Overview

+

+ Our strategy is to develop a Temporal Convolutional Neural Network model and train our model on historical OHLCV data + to predict the movement of future prices. Then, when trading, we take the most recent data, feed it into our model, and + bet on the direction of the price movement based on our model prediction. We will walk through the code required + for building the Neural Network Architecture and for preparing the data for our model, as this part is the harder part to understand. +

+ +

Inputs/Outputs

+ +

+ Before we build our Neural Network Architecture, we need to understand the inputs and outputs to our model. + The input to the model will be the OHLC+Volume data for t-14 to t time steps (past 15 time steps). The output is a + direction (Up, Down, Stationary) of the movement of the average close of the t+1 to t+5 time steps (5 future timestamps). + The movement is considered stationary if the abs(% change 5-step average close) < .01%. These three directions will + form the labels for which our model will try to classify, thus we have a classification problem. +

+ + +

Neural Network Model Architecture

+ +

+ Now, we will need to build our Neural Network Architecture, which we will build using Keras, + a high-level Python Deep Learning API. To begin, we will need a few import statements: +

+ +
+
+    import tensorflow as tf
+    from tensorflow.keras.layers import Input, Conv1D, Dense, Lambda, Flatten, Concatenate
+    from tensorflow.keras import Model
+    from tensorflow.keras import metrics
+    from tensorflow.keras.losses import CategoricalCrossentropy
+    from tensorflow.keras import utils
+    from sklearn.preprocessing import StandardScaler
+    import numpy as np
+    import math
+
+
+ + +

+ We start with an Input Layer, where training and testing data are initially accepted. With 15 time steps and 5 input + variables (OHLCV), our input shape will be 15 x 5. +

+ +
+
+    inputs = Input(shape=(15, 5))
+
+
+ + +

+ We then feed this Layer into our Convolutional Layer, where we extract features, which will serve as + the Neural Network's method of extracting patterns from the time-series data. +

+ +
+
+    feature_extraction = Conv1D(30, 4, activation='relu')(inputs)
+
+
+ + +
+
+    long_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[0])(feature_extraction)
+    mid_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[1])(feature_extraction)
+    short_term = Lambda( lambda x: tf.split(x, num_or_size_splits=3, axis=1)[2])(feature_extraction)
+
+    long_term_conv = Conv1D(1, 1, activation='relu')(long_term)
+    mid_term_conv = Conv1D(1, 1, activation='relu')(mid_term)
+    short_term_conv = Conv1D(1, 1, activation='relu')(short_term)
+
+
+ + +

+ These three layers are then combined, and since we will be working with 2D input matrices, we will then need to flatten + our layer. +

+ +
+
+    combined = Concatenate(axis=1)([long_term_conv, mid_term_conv, short_term_conv])
+    flattened = Flatten()(combined)
+
+
+ + +

+ Our final layer will be our output layer, and since we have three outputs (Up, Stationary, Down), + this layer will have three nodes. +

+ +
+
+    outputs = Dense(3, activation='softmax')(flattened)
+
+
+ +

+ The resulting Neural Network Architecture is shown in the following: +

+ +temporal cnn model architecture + + +

Preparing the Data for Our Model

+ +

+ First, we need to define a class and a few variables: +

+ +
+
+    input_vars = ['open', 'high', 'low', 'close', 'volume']
+
+    class Direction:
+        UP = 0
+        DOWN = 1
+        STATIONARY = 2
+
+    rolling_avg_window_size = 5
+
+    shift = -(rolling_avg_window_size-1)
+
+    stationary_threshold = .0001
+
+    scaler = StandardScaler()
+
+
+ +

+ input_vars define the variables we want to use to make our predictions. The class Direction + defines a few integers that we will label our data with (labels are needed for classification problems). The reason + we use integers instead of strings is because Keras, like most ML libraries, only work with numerical data. Moving on, + rolling_avg_window_size is the number of time steps used for the calculate the average of future closing prices, + described earlier in + Inputs/Outputs (t+1 to t+5 is 5 time steps, thus this value accordingly is set to 5). + The constant stationary_threshold defines the threshold for a change in price to be considered + stationary, and this change also described in Inputs/Outputs. The shift is the shift needed to align + the average value (mentioned earlier), in our pandas DataFrame to make it easier for us to slice our DataFrame into pieces + manageable for our Neural Network model. The scaler object will be used later to scale our data. + The purpose of the variables will become clearer in use. +

+ Next, say we are at time t in the pandas DataFrame, to calculate the average closing prices of t+1 to t+5, and calculate + the percent change from the close at t, we use the following lines of code: +

+ +
+
+    df['close_avg'] = df['close'].rolling(window=rolling_avg_window_size).mean().shift(shift)
+    df['close_avg_change_pct'] = (df['close_avg'] - df['close']) / df['close']
+
+
+ +

+ The rolling mean should be self explanatory for those familiar with pandas (if not, I hope by now readers realize + this is a more advanced resource). + Here, .shift(shift) aligns the five time step rolling average 'close_avg' column to the end of the last + time step we want to use as an input for prediction, and this action will make slicing up the DataFrame into input + and labeled data for our model much easier. +

+ +

+ To label our data, we need to first define a function that we will use with the DataFrame's apply() method. + Usually, lambda functions are used for this purpose, however, our function's logic will not fit inside a lambda. +

+ +
+
+    def label_data(row):
+        if row['close_avg_change_pct'] > stationary_threshold:
+            return Direction.UP
+        elif row['close_avg_change_pct'] < -stationary_threshold:
+            return Direction.DOWN
+        else:
+            return Direction.STATIONARY
+
+
+ +

+ Now, we apply the above function to our DataFrame to get a column of labels: +

+ +
+
+    df['movement_labels'] = df.apply(label_data, axis=1)
+
+
+ +

+ With our labels in place, we can now slice up our DataFrame into pieces manageable for our model and collect them into + lists: +

+ +
+
+    data = []
+    labels = []
+
+    for i in range(len(df)-self.n_tsteps+1+shift):
+        label = df['movement_labels'].iloc[i+self.n_tsteps-1]
+        data.append(df[input_vars].iloc[i:i+self.n_tsteps].values)
+        labels.append(label)
+
+    data = np.array(data)
+
+
+ +

+ Here, we iterate numerically through the DataFrame, with a carefully calculated value in our range() + function to make sure we do access an out-of-bounds index. We cast the list of numpy arrays to a numpy array because + Keras works best with numpy arrays. +

+ +

+ Now, we need to scale our data. It is good practice to scale data when using Machine Learning models so that the + range of values is normalized across the features. +

+ +
+
+    dim1, dim2, dim3 = data.shape
+    data = data.reshape(dim1*dim2, dim3)
+    data = scaler.fit_transform(data)
+    data = data.reshape(dim1, dim2, dim3)
+
+
+ +

+ The reason we reshape the data before the scaling is because sklearn is only able to handle 2D data, but right after, + we can return the data to the original shape with another reshaping. +

+ +

+ Finally, since Keras requires the labels to be dummified (which essentially turns a list of labels into a matrix of + 1s and 0s, where the index of the 1 is equal to the value of the integer label), we use the following: +

+ +
+
+    labels = utils.to_categorical(labels, num_classes=3)
+
+
+ +

+ Specifying num_classes to 3 ensures our matrix will have three columns, one for each label (Up, Down, Stationary). +

+ +

+ We have now finished the walk through of the difficult parts of the code. +

+ +

Trading

+ +

+ After we feed in the prepared data into the model (the corresponding code, as well as the rest of the code, can be + found in Algorithm) we can + use our model to make predictions. We take the most recent 15 bars of OHLCV data and apply our model on it to make + a prediction. If the model predicts with above 55% confidence that the future direction is up (resp. down), we emit + an Price Insight with direction InsightDirection.Up (resp. InsightDirection.Down). Since we are + betting on the direction of the average of the future five closing prices, it would be intuitive to emit an Insights + in the respective direction for timedeltas of one through five. However, we choose to only emit an Insight + with a timedelta with a random integer between one and five to constrain the number of insights we emit. +
+ As an additional note, we decided to set the trading fees to zero (the default fee + is one dollar per trade), or else our algorithm will only lose money due to the frequency at which we trade. +

+ + +

The Rest

+ +

+ We have covered the difficult aspects of the code, as well as give an overview of our strategy. The rest of the + necessary code to execute the strategy can be found in Algorithm. +

+ + + + diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html new file mode 100644 index 0000000..0a1b0bd --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html new file mode 100644 index 0000000..a9d5b42 --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html @@ -0,0 +1,6 @@ +

+ Since our algorithm is non-deterministic, users should expect to see different results in repeated backtests. From + running our algorithm ten times, we achieved Sharpe Ratios with an average of .211, a maximum of 0.917, and minimum + of -0.312, and a standard deviation of 0.327. As we traded three technology stocks, we compare our results to QQQ. + Comparing our algorithm to QQQ, our average Sharpe of .211 is significantly lower than the 0.967 Sharpe of QQQ. +

\ No newline at end of file diff --git a/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html new file mode 100644 index 0000000..dedbeb6 --- /dev/null +++ b/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html @@ -0,0 +1,7 @@ +
    +
  1. + Nikolaos Passalis, Anastasios Tefas, Juho Kanniainen, Moncef Gabbouj, Alexandros Iosifidis: + "Temporal Logistic Neural Bag-of-Features for Financial Time series Forecasting leveraging Limit Order Book Data", 2019; + https://arxiv.org/pdf/1901.08280.pdf. +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html new file mode 100644 index 0000000..6e0ee07 --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html @@ -0,0 +1,3 @@ +

+ In this tutorial, we attempt to beat the returns of the S&P500 Index using leverage and systematic risk management. +

diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html new file mode 100644 index 0000000..0b1b370 --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html @@ -0,0 +1,9 @@ +

+ When measuring the profitability of a strategy, it is usually not enough to be profitable, as it should also beat + the benchmark, for which the SP500 Index is most commonly used. If not, what would be the reason to not just invest + in a low-cost SP500 index instead (not accounting for risk)? However, what if we could beat the SP500 with the SP500? + This is what Gayed et al. proposed with their strategy of using Leveraged SP500 indices with Systematic Risk Management. + They propose that Moving Averages are a good method to assess volatility in the market, and they use it to manage risk, + which is especially important since the effects of price swings in a leveraged ETF are magnified due to the leverage. + With this method, we hope to outperform the SP500 while at the same time, attempt to reduce drawdown. +

diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html new file mode 100644 index 0000000..a43a70e --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html @@ -0,0 +1,12 @@ +

+ We develop hold/liquidate positions based on the 200-day Simple Moving Average (SMA) of our ETF, for which we use SSO, + a 2x leveraged SP500 index ETF. With 200 days instead of using fewer days, say 50, we reduce the number of trades per year, + thereby reducing transaction costs and the effects of slippage. Moving on, if the current price of SOO is above the 200-day SMA, + we hold SSO, and if SSO dips below our 200-day SMA, we sell liquidate our position and rotate our position into short-term + treasuries, which is done through SHY, an ETF that tracks 1-3 year U.S. Treasury Bonds. If we are holding SHY, and the + current price of SSO moves above the 200-day SMA, then we rotate back into SSO and liquidate SHY. +

+ + + + diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html new file mode 100644 index 0000000..3b0ead5 --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html new file mode 100644 index 0000000..ade26d7 --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html @@ -0,0 +1,4 @@ +

+ We use the S&P 500 as our benchmark, which we track by using the SPY ETF. Our strategy yielded a Sharpe Ratio of .732 + over the past five years, while buying and holding SPY for the same period yielded a Sharpe Ratio of .572. +

\ No newline at end of file diff --git a/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html new file mode 100644 index 0000000..c1ce885 --- /dev/null +++ b/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html @@ -0,0 +1,7 @@ +
    +
  1. + Gayed, Michael and Bilello, Charles, Leverage for the Long Run - A Systematic Approach to Managing Risk and + Magnifying Returns in Stocks (March 3, 2016). 2016 Charles H. Dow Award. + Online Copy. +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html b/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html new file mode 100644 index 0000000..c9aef2c --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html @@ -0,0 +1,7 @@ +

+ In this tutorial, we implement an intraday momentum strategy that trades some of the most actively traded ETFs. + Specifically, we observe the return generated from the first half-hour of the trading day to predict the sign of + the trading day's last half-hour return. Researchers have shown that this momentum pattern is statistically and + economically significant, even after accounting for trading fees. The algorithm we design here is a recreation of + the research completed by Gao, Han, Li, and Zhou (2017). +

diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html b/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html new file mode 100644 index 0000000..c06af0a --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html @@ -0,0 +1,19 @@ +

+ News items are usually released before the opening bell. As it takes time for traders to digest and interpret the + news, the first half-hour of trading typically has relatively higher levels of volume and volatility. Additionally, + as traders attempt to mitigate overnight risk by unloading positions near the close, the last half-hour of trading + also sees these higher levels of volume and volatility. These characteristics can be observed from the image below, + which is reproducible in the attached research notebook. +

+ +Tutorial1026-intraday-etf-momentum-1 + +

+ Bogousslavsky (2016) points out that some investors are late-informed or simply prefer to delay their trading until + the market close. As a result, a positive correlation exists between the direction of the opening and closing + periods. Gao et al (2017) find that when trading this momentum strategy, the average annual return over their + sample period was 6.67% for SPY, 11.72% for IWM, and 24.22% for IYR. Equal-weighting these returns leads to a + combined average annual return of 14.2%. +

\ No newline at end of file diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html b/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html new file mode 100644 index 0000000..29481ab --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html @@ -0,0 +1,143 @@ +

Universe Selection

+

+ We implement a manual universe selection model that supplies a subset of the proposed ETFs in the attached research + paper. Gao et al (2017) select the following tickers: DIA, QQQ, IWM, EEM, FXI, EFA, VWO, XLF, IYR, and TLT. In an + effort to increase the backtest performance, we narrow our universe to SPY, IWM, and IYR. +

+
+
+tickers = ['SPY',  # S&P 500
+           'IWM',  # Russell 2000
+           'IYR'   # Real Estate ETF
+]
+symbols = [ Symbol.Create(ticker, SecurityType.Equity, Market.USA) for ticker in tickers ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+self.UniverseSettings.Resolution = Resolution.Minute
+
+
+ +

Alpha Construction

+

+ The IntradayMomentumAlphaModel emits insights to take positions for the last `return_bar_count` minutes of the day + in the direction of the return for the first `return_bar_count` minutes of the day. During construction, we create + a dictionary to store IntradayMomentum data for each symbol, define a method to determine the sign of returns, and + specify the value of `return_bar_count`. In this tutorial, we follow Gao et al (2017) in setting `return_bar_count` + to 30 by default. +

+
+
+class IntradayMomentumAlphaModel(AlphaModel):
+    intraday_momentum_by_symbol = {}
+    sign = lambda _, x: int(x and (1, -1)[x < 0])
+
+    def __init__(self, algorithm, return_bar_count = 30):
+        self.return_bar_count = return_bar_count
+
+
+ +

Alpha Securities Management

+

+ When a new security is added to the universe, we create an IntradayMomentum object for it to store information + needed to calculate morning returns. The management of the IntradayMomentum objects occurs in the alpha model's + OnSecuritiesChanged method. +

+
+
+def OnSecuritiesChanged(self, algorithm, changes):
+    for security in changes.AddedSecurities:
+        self.intraday_momentum_by_symbol[security.Symbol] = IntradayMomentum(security, algorithm)
+
+    for security in changes.RemovedSecurities:
+        self.intraday_momentum_by_symbol.pop(security.Symbol, None)
+
+
+ +

+ The definition of the IntradayMomentum class is shown below. We save a reference to the security's exchange so we + can access the market hours of the exchange when generating insights. +

+
+
+class IntradayMomentum:
+    def __init__(self, security, algorithm):
+        self.symbol = security.Symbol
+        self.exchange = security.Exchange
+
+        self.bars_seen_today = 0
+        self.yesterdays_close = algorithm.History(self.symbol, 1, Resolution.Daily).loc[self.symbol].close[0]
+        self.morning_return = 0
+
+
+ +

Alpha Update

+

+ With each call to the alpha model's Update method, we count the number of bars the algorithm has received for each + symbol. If we've reached the end of the morning window, we calculate the morning return. If we are at the + beginning of the close window, we emit an insight in the direction of the morning window's return. If we are at + the end of the day, we save the closing price and reset the counter for the number of bars seen today. +

+
+
+def Update(self, algorithm, slice):
+    insights = []
+
+    for symbol, intraday_momentum in self.intraday_momentum_by_symbol.items():
+        if slice.ContainsKey(symbol) and slice[symbol] is not None:
+            intraday_momentum.bars_seen_today += 1
+            
+            # End of the morning return
+            if intraday_momentum.bars_seen_today == self.return_bar_count:
+                intraday_momentum.morning_return = (slice[symbol].Close - intraday_momentum.yesterdays_close) / intraday_momentum.yesterdays_close
+            
+            ## Beginning of the close
+            next_close_time = intraday_momentum.exchange.Hours.GetNextMarketClose(slice.Time, False)
+            mins_to_close = int((next_close_time - slice.Time).total_seconds() / 60)
+            
+            if mins_to_close == self.return_bar_count + 1:
+                insight = Insight.Price(intraday_momentum.symbol, 
+                                        next_close_time, 
+                                        self.sign(intraday_momentum.morning_return))
+                insights.append(insight)
+                continue
+            
+            # End of the day
+            if not intraday_momentum.exchange.DateTimeIsOpen(slice.Time):
+                intraday_momentum.yesterdays_close = slice[symbol].Close
+                intraday_momentum.bars_seen_today = 0
+            
+    return insights
+
+
+ +

Trade Execution

+

+ The attached research paper holds positions for the last 30 minutes of the trading day, exiting at the market close. + In order to accomplish this, we create a custom execution model. The model defined below submits a market order for + the entry while also submitting a market on close order in the same time step. +

+
+
+class CloseOnCloseExecutionModel(ExecutionModel):
+    def __init__(self):
+        self.targetsCollection = PortfolioTargetCollection()
+        self.invested_symbols = []
+
+    def Execute(self, algorithm, targets):
+        # for performance we check count value, OrderByMarginImpact and ClearFulfilled are expensive to call
+        self.targetsCollection.AddRange(targets)
+        if self.targetsCollection.Count > 0:
+            for target in self.targetsCollection.OrderByMarginImpact(algorithm):
+                # calculate remaining quantity to be ordered
+                quantity = OrderSizing.GetUnorderedQuantity(algorithm, target)
+                if quantity == 0:
+                    continue
+
+                algorithm.MarketOrder(target.Symbol, quantity)
+                algorithm.MarketOnCloseOrder(target.Symbol, -quantity)
+
+            self.targetsCollection.ClearFulfilled(algorithm)
+
+
+ + + diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html new file mode 100644 index 0000000..1379e93 --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html new file mode 100644 index 0000000..bad583b --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html @@ -0,0 +1,106 @@ +

+ We conclude that the momentum pattern documented by Gao et al (2017) produces lower returns over our testing period. + Comparing the strategy to the S&P 500 benchmark, the strategy has a lower Sharpe ratio during the backtesting + period and during the recovery from the 2020 stock market crash. However, the strategy greatly outperforms the + benchmark during the downfall of the 2020 crash, achieving a 4.8 Sharpe ratio. Throughout all of the time periods + we tested, the strategy had a lower annual standard deviation than the benchmark, meaning more consistent returns. + A breakdown of the results from all of the testing periods can be seen in the table below. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeASD
Backtest1/1/20158/16/2020Strategy-0.7640.05
Benchmark0.7090.185
Fall 20158/10/201510/10/2015Strategy-0.6960.058
Benchmark-1.2430.793
2020 Crash2/19/20203/23/2020Strategy4.8180.266
Benchmark-1.2430.793
2020 Recovery3/23/20206/8/2020Strategy0.6020.103
Benchmark13.7610.386
+
+ + +

+ We find the lack of performance for this strategy is not largely attributed to the inclusion of transaction costs + in our analysis while Gao et al (2017) decide to ignore them. Even with ignoring the transaction fees, spread costs, + and slippage, the strategy still has a lower Sharpe ratio than the S&P 500 and doesn't match the results found in the + original research paper. Refer to the backtest results. +

+ +

+ Throughout their research paper, Gao et al (2017) provide several suggestions to increase the return generated by + this momentum pattern. These areas of future research include: +

+ +
    +
  • + Trading only on days with economic news events by utilizing the + TradingEconomics data set. + Gae et al (2017) suggest using the Michigan Consumer Sentiment Index, and news released on gross domestic + product or the consumer price index. +
  • +
  • Restricting trading to times of greater volatility or during financial crises.
  • +
  • Incorporating a volume threshold the morning session must pass to signal a trade for the close.
  • +
  • Increasing diversification by extending the universe to include ETFs from other sectors.
  • +
  • + Considering the return from multiple n-minute periods throughout the day to predict the return of the closing + period. +
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html b/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html new file mode 100644 index 0000000..a3127a1 --- /dev/null +++ b/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html @@ -0,0 +1,6 @@ +
    +
  1. + Gao, Lei and Han, Yufeng and Li, Sophia Zhengzi and Zhou, Guofu, Market Intraday Momentum (June 19, 2017). + Online copy +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html new file mode 100644 index 0000000..d02e534 --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/01 Abstract.html @@ -0,0 +1,9 @@ +

+ Several studies have found that press releases and other media can impact the perspective of investors. In this + tutorial, we implement an intraday strategy to capitalize on the upward drift in the stock prices of drug + manufacturers following positive news releases. Our findings show that when combining the effect with the + day-of-the-week anomaly documented by Berument & Kiymaz (2001), there is enough directional accuracy for the + trading system to remain profitable throughout the 2020 stock market crash. However, the algorithm + underperforms the S&P 500 market index ETF, SPY, over the same time period. The algorithm we design here is + inspired by the work of Isah, Shah, & Zulkernine (2018). +

diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html new file mode 100644 index 0000000..60fe4eb --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/02 Background.html @@ -0,0 +1,14 @@ +

+ The use of alternative data sets to forecast stock prices has increased in recent years as the fundamental and + technical analysis spaces increase in competition. Utilizing Natural Language Processing (NLP) techniques to + analyze the sentiment of news releases and other text related to publicly traded companies has caught the interest + of many quant researchers. Such online information is frequently released and can be interpreted in a virtually + unlimited number of ways, leading to a novel approach to determining the "societal mood" (Isah et al, 2018, p. 2) + towards a company. +

+ +

+ There are several ways to implement a NLP system. In this tutorial, we utilize a dictionary to quantify the + sentiment of news releases. The dictionary provided herein was sourced from Isah et al (2018), where it's use + achieved a 70% accuracy when targeting several hand-picked stocks in India's pharmaceutical industry. +

\ No newline at end of file diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html new file mode 100644 index 0000000..ac080d3 --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/03 Method.html @@ -0,0 +1,183 @@ +

Universe Selection

+

+ We implement a universe selection model that provides the trading system with companies classified by + MorningStar as being in the drug + manufacturing industry group. We narrow our universe to include only the drug manufacturers with the greatest PE + ratios and dollar volume. +

+
+
+def SelectCoarse(self, algorithm, coarse):
+    has_fundamentals = [c for c in coarse if c.HasFundamentalData]
+    sorted_by_dollar_volume = sorted(has_fundamentals, key=lambda c: c.DollarVolume, reverse=True)
+    return [ x.Symbol for x in sorted_by_dollar_volume[:self.coarse_size] ]
+
+def SelectFine(self, algorithm, fine):
+    drug_manufacturers = [f for f in fine if f.AssetClassification.MorningstarIndustryGroupCode == MorningstarIndustryGroupCode.DrugManufacturers]
+    sorted_by_pe = sorted(drug_manufacturers, key=lambda f: f.ValuationRatios.PERatio, reverse=True)
+    return [ x.Symbol for x in sorted_by_pe[:self.fine_size] ]
+
+
+ + +

Alpha Construction

+

+ The DrugNewsSentimentAlphaModel emits insights to take long intraday positions for securities that have positive + news sentiment. During construction of the model, we: +

+ +
    +
  • Create a dictionary to store SymbolData for each symbol
  • +
  • Gather the sentiment dictionary provided by Isah et al (2018)
  • +
  • Determine the maximum number of grams we need to analyze news articles
  • +
  • Define a method to determine the sign of sentiment
  • +
  • Specify the value of `bars_before_insight`
  • +
+ +

+ The `bars_before_insight` parameter determines how many bars the alpha model should observe after the market opens + before emitting insights. Isah et al (2018) batch the news released by each company into 30-minute intervals + before analyzing the sentiment of the batch. In this tutorial, we follow a similar procedure by setting + `bars_before_insight` to 30. +

+ +
+
+class DrugNewsSentimentAlphaModel(AlphaModel):
+    symbol_data_by_symbol = {}
+    sentiment_by_phrase = SentimentByPhrase.dictionary
+    max_phrase_words = max([len(phrase.split()) for phrase in sentiment_by_phrase.keys()])
+    sign = lambda _, x: int(x and (1, -1)[x < 0])
+    
+    def __init__(self, bars_before_insight=30):
+        self.bars_before_insight = bars_before_insight
+
+
+ +

Alpha Securities Management

+

+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to + each security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method. +

+ +
+
+def OnSecuritiesChanged(self, algorithm, changes):
+    for security in changes.AddedSecurities:
+        self.symbol_data_by_symbol[security.Symbol] = SymbolData(security, algorithm)
+    
+    for security in changes.RemovedSecurities:
+        symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+        if symbol_data:
+            algorithm.RemoveSecurity(symbol_data.tiingo_symbol)
+
+
+ +

+ The definition of the SymbolData class is shown below. We add properties to it to track the cumulative sentiment + of news releases over time and the number of bars the alpha model has received for each security since the market + open. In the constructor, we save a reference to the security's exchange so we can access the market hours of the + exchange when generating insights. This is also where we initialize the + Tiingo news feed for each security. +

+ +
+
+class SymbolData:
+    cumulative_sentiment = 0
+    bars_seen_today = 0
+    
+    def __init__(self, security, algorithm):
+        self.exchange = security.Exchange
+        self.tiingo_symbol = algorithm.AddData(TiingoNews, security.Symbol).Symbol
+
+
+ + +

Alpha Update

+

+ As new Tiingo objects are provided to the alpha model's Update method, we update the cumulative sentiment for each + security. The cumulative sentiment counter is reset at each market close. Therefore, when we emit insights + 30-minutes after the open, we are considering the sentiment of the news articles released from the previous close + to the current time. We employ the findings of Berument & Kiymaz (2001), restricting the alpha model's trading to + Wednesday, the most profitable day of the week. Positions are entered 30-minutes after the open and exited at the + close. +

+ +
+
+def Update(self, algorithm, data):
+    insights = []
+        
+    for symbol, symbol_data in self.symbol_data_by_symbol.items():
+    
+        # If it's after-hours or within 30-minutes of the open, update
+        # cumulative sentiment for each symbol    
+        if symbol_data.bars_seen_today < self.bars_before_insight:
+            tiingo_symbol = symbol_data.tiingo_symbol
+            if data.ContainsKey(tiingo_symbol) and data[tiingo_symbol] is not None:
+                article = data[tiingo_symbol]
+                symbol_data.cumulative_sentiment += self.CalculateSentiment(article)
+    
+        if data.ContainsKey(symbol) and data[symbol] is not None:
+            symbol_data.bars_seen_today += 1
+
+            # 30-mintes after the open, emit insights in the direction of the cumulative sentiment.
+            # Only emit insights on Wednesdays to capture the analomaly documented by Berument and 
+            # Kiymaz (2001).
+            if symbol_data.bars_seen_today == self.bars_before_insight and data.Time.weekday() == 2:
+                    next_close_time = symbol_data.exchange.Hours.GetNextMarketClose(data.Time, False)
+                    direction = self.sign(symbol_data.cumulative_sentiment)
+                    if direction == 0:
+                        continue
+                    insight = Insight.Price(symbol, 
+                                            next_close_time - timedelta(minutes=2),
+                                            direction)
+                    insights.append(insight)
+    
+            # At the close, reset the cumulative sentiment
+            if not symbol_data.exchange.DateTimeIsOpen(data.Time):
+                symbol_data.cumulative_sentiment = 0
+                symbol_data.bars_seen_today = 0
+    
+    return insights
+
+
+ + +

Calculating Sentiment

+

+ We define the following helper method to return the sentiment of a Tiingo news article by analyzing the article's + title and description. The `sentiment_by_phrase` dictionary was retrieved from queensbamlab's + NewsSentiment GitHub repository. Although we have + adjusted the dictionary to lowercase and removed some redundancies, this is the same dictionary used by Isah et + al (2018). "The dictionary was created by leveraging author's domain expertise and thorough analysis of news + articles over the years" (p. 3). +

+ +
+
+def CalculateSentiment(self, article):
+    sentiment = 0
+    for content in (article.Title, article.Description):
+        words = content.lower().split()
+        for num_words in range(1, self.max_phrase_words + 1):
+            for gram in ngrams(words, num_words):
+                phrase = ' '.join(gram)
+                if phrase in self.sentiment_by_phrase.keys():
+                    sentiment += self.sentiment_by_phrase[phrase]
+    return sentiment
+
+
+ + +

Portfolio Construction & Trade Execution

+

+ Following the guidelines of Alpha Streams and the + Quant League competition, we utilize the + + EqualWeightingPortfolioConstructionModel and the + + ImmediateExecutionModel. +

+ diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html new file mode 100644 index 0000000..43dfb6f --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html new file mode 100644 index 0000000..8f0a19e --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/05 Conclusion.html @@ -0,0 +1,27 @@ +

+ We conclude that deploying the sentiment analysis strategy on the US drug manufacturing industry does not provide + as accurate of results as found by Isah et al (2018). Only after restricting trading to the most profitable day of + the week (Berument & Kiymaz, 2001) does the strategy achieve profitability over our testing period. Overall, the + strategy produces a Sharpe ratio of 0.116, while the + SPY benchmark + produces a 0.971 Sharpe ratio during the same period. We attribute the decrease in performance to the commissions + and spread costs simulated by LEAN. +

+ +

+To continue the development of this strategy, future areas of research include: +

+ +
    +
  • Adding a threshold parameter the cumulative sentiment counter must pass to signal trades
  • +
  • + Only analyzing the sentiment of articles which contain keywords like "US, "USA", 'Q1', and others in their + titles +
  • +
  • + Stemming and removing + punctuation from articles before calculating their sentiment +
  • +
  • Adding phrases to the sentiment dictionary or adjust the sentiment values
  • +
  • Adding other data feeds beside just Tiingo
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html new file mode 100644 index 0000000..8f8f421 --- /dev/null +++ b/04 Strategy Library/1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers/06 References.html @@ -0,0 +1,11 @@ +
    +
  1. + Shah, Dev, Haruna Isah, and Farhana Zulkernine. “Predicting the Effects of News Sentiments on the Stock Market.” + 2018 IEEE International Conference on Big Data (Big Data) (2018). + Online copy +
  2. +
  3. + Berument, Hakan and Kiymaz, Halil, The Day of the Week Effect on Stock Market Volatility (2001). Journal of + Economics and Finance, Vol.25, No.2, pp. 181-193. Online copy +
  4. +
\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html new file mode 100644 index 0000000..587ce33 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html @@ -0,0 +1,8 @@ +

+ Gurrib (2020) is the first published research paper to analyze the predictive power of Ichimoku Clouds for the + largest 10 stocks in the US energy sector. In this tutorial, we implement a similar strategy while reducing the + effect of look-ahead bias integrated into the original study. Our findings show that while the strategy has an + impressive 176 Sharpe ratio during the downfall of the 2020 oil price war, the strategy has worse performance than + found by Gurrib (2020). We discover that throughout a 5 year backtest, the strategy fails to beat the benchmark of + a popular energy sector ETF. +

diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html new file mode 100644 index 0000000..c5efef1 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html @@ -0,0 +1,35 @@ +

+ A vast amount of research studies have been published which document mixed results when utilizing technical + analysis to forecast future prices of securities. The Ichimoku Cloud, one of the most widely-used technical + indicators in Japan, was first publicized by Goichi Hosoda. In 1996, Hidenobu Sasaki reworked the framework to + form the current charting analysis tool. This indicator is composed of 5 lines in a time series, each of which + are described mathematically in + online resources. +

+ +

+ Gurrib (2020) finds that applying a simple trading strategy using the time series of the Ichimoku Cloud can + increase the mean return of a basket containing the top energy stocks from 21.5% (buy-and-hold) to 194% over a 7 + year period. The components of the Ichimoku Cloud that Gurrib (2020) utilizes in this strategy are the Chikou + Span, Senkou Span A, and Senkou Span B. The Senkou Span lines form the top and bottom of the Ichimoku Cloud. The + strategy that we trade off of these lines is defined as follows: +

+ +
    +
  • Long when the Chikou line crosses the top of the cloud from below.
  • +
  • Short when the Chikou line crosses the bottom of the cloud from above.
  • +
+ +

+ For better understanding, here is a visualization of the price of XOM, it's Ichimoku Cloud time series, and the + resulting buy/sell signals. +

+ +Tutorial1028-ichimoku-cloud-1 + +

+ Note: all of the plots throughout this tutorial are reproducible in the attached research notebook, along with + some descriptive statistics for securities in the universe. +

\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html new file mode 100644 index 0000000..8669ce3 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html @@ -0,0 +1,150 @@ +

Universe Selection

+

+ Gurrib (2020) selects a universe of the 10 largest-weighed constituents of the S&P Composite 1500 Energy Index + over the testing period. This inherently incorporates lookahead-bias into the study as the security weights are + sourced over the period the trading simulation occurs. Furthermore, since the publication of Gurrib (2020), some + of the securities have even been delisted. Thus, to eliminate lookahead-bias and avoid delistings, we implement a + universe selection model that provides the trading system with the 10 largest companies in the energy sector as of + the current date in the backtest. Since the largest companies change infrequently, we only refresh the universe on + a monthly basis. +

+ +
+
+def SelectCoarse(self, algorithm, coarse):
+    if algorithm.Time.month == self.month:
+        return Universe.Unchanged
+    return [ x.Symbol for x in coarse if x.HasFundamentalData ]
+
+def SelectFine(self, algorithm, fine):
+    self.month = algorithm.Time.month
+    
+    energy_stocks = [ f for f in fine if f.AssetClassification.MorningstarSectorCode == MorningstarSectorCode.Energy ]
+    sorted_by_market_cap = sorted(energy_stocks, key=lambda x: x.MarketCap, reverse=True)
+    return [ x.Symbol for x in sorted_by_market_cap[:self.fine_size] ]
+
+
+ + +

Alpha Construction

+

+ The IchimokuCloudCrossOverAlphaModel emits insights to hold a long position after the Chikou Span crosses over the + top of the cloud for a given security. Additionally, the strategy is made symmetrical by entering short positions + after the Chikou Span crosses below the bottom of the cloud. During construction of this alpha model, we simply + set up a dictionary to hold a SymbolData object for each symbol in the universe. +

+ +
+
+class IchimokuCloudCrossOverAlphaModel(AlphaModel):
+    symbol_data_by_symbol = {}
+
+
+ +

+ The SymbolData class constructor is shown below. We first set up two class variables, `previous_location` and + `direction`. The former enables the algorithm to signal when the Chikou Span crosses over the boundaries of the + Ichimoku Cloud. The latter is added to ensure we continue to emit daily insights in the proper direction. Inside + the `__init__` method is where we create the + IchimokuKinkoHyo indicator and warm + it up. +

+ +
+
+class SymbolData:
+    previous_location = None
+    direction = None
+    
+    def __init__(self, symbol, algorithm):
+        # Create Ichimoku indicator
+        self.ichimoku = IchimokuKinkoHyo()
+        
+        # Warm up indicator
+        history = algorithm.History(symbol, self.ichimoku.WarmUpPeriod + 1, Resolution.Daily).loc[symbol]
+        for idx, row in history.iterrows():
+            if self.ichimoku.IsReady:
+                self.previous_location = self.get_location()
+            
+            tradebar = TradeBar(idx, symbol, row.open, row.high, row.low, row.close, row.volume)
+            self.ichimoku.Update(tradebar)
+
+
+ + +

Determining the Indicator Location

+

+ We define the following helper method to return the location of the Chikou Span with respect to the cloud. The + alpha model utilizes this helper method to determine when the Chikou Span is exiting the Ichimoku Cloud. +

+ +
+
+def get_location(self):
+    chikou = self.ichimoku.Chikou.Current.Value
+    
+    senkou_span_a = self.ichimoku.SenkouA.Current.Value
+    senkou_span_b = self.ichimoku.SenkouB.Current.Value
+    cloud_top = max(senkou_span_a, senkou_span_b)
+    cloud_bottom = min(senkou_span_a, senkou_span_b)
+    
+    if chikou > cloud_top:
+        return 1    # Above cloud
+    if chikou < cloud_bottom:
+        return -1   # Below cloud
+        
+    return 0        # Inside cloud
+
+
+ + +

Alpha Update

+

+ As new TradeBars are provided to the + alpha model's Update method, we update the Ichimoku indicator of each symbol. We then emit insights for the + symbols that have their Chikou Span breaking out of their respective Ichimoku Cloud in a new direction. To + maintain positions while we wait for another crossover in the Ichimoku Cloud, we emit insights on a daily basis + with 1-day duration. +

+ +
+
+def Update(self, algorithm, data):
+    insights = []
+    
+    for symbol, symbol_data in self.symbol_data_by_symbol.items():
+        if not data.ContainsKey(symbol) or data[symbol] is None:
+            continue
+        
+        # Update indicator with the latest TradeBar
+        symbol_data.ichimoku.Update(data[symbol])
+        
+        # Determine insight direction
+        current_location = symbol_data.get_location()
+        if symbol_data.previous_location is not None: # Indicator is ready
+            if symbol_data.previous_location != 1 and current_location == 1:
+                symbol_data.direction = InsightDirection.Up
+            if symbol_data.previous_location != -1 and current_location == -1:
+                symbol_data.direction = InsightDirection.Down
+        
+        symbol_data.previous_location = current_location
+        
+        # Emit insight
+        if symbol_data.direction:
+            insight = Insight.Price(symbol, timedelta(days=1), symbol_data.direction)
+            insights.append(insight)
+    
+    return insights
+
+
+ + +

Portfolio Construction & Trade Execution

+

+ Following the guidelines of Alpha Streams + and the Quant League competition, we + utilize the + EqualWeightingPortfolioConstructionModel and the + + ImmediateExecutionModel. +

diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html new file mode 100644 index 0000000..56ab2db --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html new file mode 100644 index 0000000..07a20e4 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html @@ -0,0 +1,94 @@ +

+ To analyze the value of this trading strategy, we compare its performance to buying and holding a popular ETF + tracking the energy sector. In this study, we use XLE, the Energy Select Sector SPDR® Fund, as the benchmark. We + can see from the plot below how the portfolio would have performed just had we had just invested in the benchmark. +

+ +Tutorial1028-ichimoku-cloud-2 + +

+ We now analyze the Sharpe ratio and annual standard deviation of returns for both the strategy and the benchmark. + From the table below, we can see the results of the strategy and the benchmark over the entire backtest period, the + Fall 2015 crisis, and the 2020 oil price war. The strategy has a lower Sharpe ratio than the benchmark across all + of the time periods we tested, except for the crash during the 2020 oil price war, where it generated an impressive + 176 Sharpe ratio. We can also see the strategy has a lower annual standard deviation accross all of the time + frames, implying that the strategy has more consistent returns than the benchmark. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeASD
Backtest1/1/20158/16/2020Strategy-0.310.223
Benchmark-0.0830.312
Fall 20158/10/201510/10/2015Strategy-0.310.294
Benchmark0.2420.351
2020 Crash2/19/20203/23/2020Strategy176.5240.949
Benchmark-0.9021.108
2020 Recovery3/23/20206/8/2020Strategy-1.5560.447
Benchmark46.0680.703
+
+ +

+ We find the lack of performance for this strategy is not largely attributed to the transaction costs. After + ignoring the transaction fees, spread costs, and slippage, the strategy still has a lower Sharpe ratio than the + benchmark and doesn't match the results found in the original research paper. See the backtest results + here. +

\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html new file mode 100644 index 0000000..e63b0d3 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html @@ -0,0 +1,13 @@ +

+ Although this strategy passes several of the + metrics required for Alpha Streams + and the Quant League competition, it requires further work to pass the following requirements: +

+ +
    +
  • Profitable
  • +
  • PSR >= 80%
  • +
  • Max drawdown duration <= 6 months
  • +
  • Insights contain the following properties: Symbol, Duration, Direction, and Weight
  • +
  • Minute or second data resolution
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html new file mode 100644 index 0000000..452f0d8 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html @@ -0,0 +1,21 @@ +

+ While the strategy examined herein produces a 176 Sharpe ratio throughout the downfall of the 2020 oil price war + and stock market crash, we conclude the strategy does not currently provide as profitable of results as documented + by Gurrib (2020). The strategy experiences a -0.234 Sharpe ratio over the entire backtest period. To continue the + development of this strategy, future areas of research include: +

+ +
    +
  • + Only trading when a bullish or bearish trend are confirmed. Gurrib (2020) provides conditions for evaluating + the trend. +
  • +
  • Adjusting the data resolution used within the indicator.
  • +
  • Considering fundamental or alternative data points before placing trades.
  • +
  • Adjusting the parameters of the Ichimoku indicator.
  • +
  • + Replacing the portfolio construction model with one that only allocates 10% of the capital base to each security. + This will violate the requirements of the Alpha Streams and Quant League competition, but it will reduce the + transaction costs and provide a more accurate equity curve of the underlying strategies performance. +
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html new file mode 100644 index 0000000..37c3e11 --- /dev/null +++ b/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html @@ -0,0 +1,6 @@ +
    +
  1. + Gurrib, Ikhlaas, Can the Leading Us Energy Stock Prices Be Predicted Using Ichimoku Clouds? (January 16, 2020). + Online Copy +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html new file mode 100644 index 0000000..f913c9e --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html @@ -0,0 +1,4 @@ +

+ In this tutorial, we apply Ornstein-Uhlenbeck model to a Pairs Trading process and derive the Optimal Entry and Liquidation + levels. +

diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html new file mode 100644 index 0000000..d0a7cd5 --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html @@ -0,0 +1,9 @@ +

+ Pairs trading is holding one stock while simultaneously shorting another stock, typically in an attempt to profit + from the convergence of the spread between these two stocks. One method of execution is to apply a Kalman Filter, + which we have implemented in this post. + However, today, we will model the portfolio values of holding positions in + a pair of stocks as an Ornstein-Uhlenbeck (OU) process in order to derive the optimal values to enter and liquidate + the position in the pair of stocks. Let (number) refer to the corresponding equation in the given paper, which can + be found under the References section. For example, (2.1) refers to equation 2.1 in the paper. +

diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html new file mode 100644 index 0000000..83986fa --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html @@ -0,0 +1,50 @@ +

Computing the OU Coefficients

+

Say there are two arbitrary stocks A and B. For each value β in .01, .02, .03, …, 1.00:

+
    +
  1. We compute the portfolio values over 252 days of the pairs trade by computing the value of holding $1 of A minus the value of holding $β B (we short B) on each of the 252 days 
  2. +
  3. Then we compute the OU coefficients (θ, µ, σ) of the 252 portfolio values using the Maximum Likelihood Estimation method, maximizing the average log-likelihood defined by this function:
  4. +
+\[-\frac{1}{2}ln(2\pi)-ln(\widetilde{\sigma})-\frac{1}{2n{\widetilde{\sigma}}^2}\sum_{i=1}^{n}[x_i-x_{i-1}e^{-\mu\Delta t}-\theta(1-e^{-\mu\Delta t})]^2\quad(2.2)\] +

where

+

xj is the value at the jth index of the portfolio values

+

and 

+\[\widetilde{\sigma}^2 = \sigma ^2\frac{1-e^{-2\mu\Delta t}}{2\mu}\] +

and n = the number of portfolio values

+

and Δt = 1 ÷ (days between the start and end dates of the portfolio values), 

+

We then select the β, which we differentiate as β*, that maximizes the average log-likelihood defined in the equation in step 2, while keeping the corresponding θ*, µ*, σ* values. The implementation of finding θ*, µ*, and σ* can be found in ou_mle.py in the Algorithm section.

+ + +

Deriving the Optimal Entry and Liquidation Levels

+

With the OU coefficients in hand, we can now calculate the optimal entry level, the portfolio value at which we buy, and liquidation level, the portfolio value at which we sell. We don’t buy the portfolio of $1 of A and -$β* of B immediately (note: to scale up a position, for each additional dollar we invest in A, we short an additional -$β* of B). Instead, we wait until our portfolio reaches the computed entry level, before we buy the portfolio of the pair of stocks. Once we bought this portfolio, we wait until the portfolio value reaches the computed liquidation level before we liquidate our portfolio. By waiting for our optimal entry and liquidation values to be reached, we can mathematically maximize our expected gain. To compute the optimal entry and liquidation levels, we first need to define a few equations:

+\[F(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(x-\theta)u-\frac{u^2}{2}}du\quad(3.3)\] +\[G(x):=\int_{0}^{\infty}u^{\frac{r}{\mu}-1}e^{\sqrt{\frac{2\mu}{\sigma^2}}(\theta-x)u-\frac{u^2}{2}}du\quad(3.4)\] +\[V(x)=(x\in (-\infty, b^*)\ ?\ (b^*-c) \frac{F(x)}{F(b^*)}:x-c)\quad(4.2)\] +

Where constants c = the cost of transaction and r = investor’s subject discount rate. We choose to set c = r = .05 as these were the values given in the paper. 

+

With these equations, we can now solve for the optimal liquidation level, which we denote as b*, as well as the optimal entry level, which we denote at d*. Note: the reason we derive the optimal liquidation level first is because we use b* in the computation of d*.

+

As deriving b* and d* require the derivative of the functions given above, given an arbitrary function input x and an arbitrary function f(x), we approximate f’(x) with the following equation equation:

+\[f'(x) = \frac{f(x+h)-f(x)}{h}\] +

where h is some arbitrarily small value (we set h = 1 x 10-4 in our implementation).

+

To find b*, we solve for b in the following equation:

+\[F(b)=(b-c)F'(b)\quad(4.3)\] +

We solve this equation by getting all terms to one side:

+\[F(b)-(b-c)F'(b)=0\] +

Finding the root of the above equation results in b*

+

Now to derive d*, we solve for d in the following equation:

+\[G(d)(V'(d)-1)=G'(d)(V(d)-d-c)\] +

Again, we will move all terms to one side:

+\[G(d)(V'(d)-1)-G'(d)(V(d)-d-c)=0\] +

And finding the root of this equation results in d*.

+


The full method of finding b* and d* can be found in the OptimalStopping.py + file in the Algorithm section.

+ +

Trading

+

+ Our trading logic is very simple. First, we feed in 252 points of the most recent data for the daily closing prices + for stocks A and B. We then train our model on these data points, and we get the + b*, d*, and β* values. We then keep track of a hypothetical portfolio of holding $1 + of A and -$β* of B. Once the value of our hypothetical portfolio is less than or equal to b*, + we allocate 1.0 of our capital to long of A and short B using (β* x capital used for A) worth of stock. + Once the hypothetical portfolio value we tracking reaches d*, we liquidate our positions. We repeat these + trading rules when possible. On the first day of every quarter, we retrain our model with the most recent 252 points of data to + update our b*, d*, and β* values. +

diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html new file mode 100644 index 0000000..04066ff --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html new file mode 100644 index 0000000..1e7e3ae --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html new file mode 100644 index 0000000..3eb8a0f --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html @@ -0,0 +1,8 @@ +

+ Our algorithm yielded a Sharpe ratio of 0.898 over a five year period, while holding SPY over the same period + yielded a Sharpe ratio of 0.667. However it should be noted, due to the fact the algorithm had to wait periods + of time before our optimal entry and liquidation levels were reached, our algorithm only made twelve trades over the + entire backtest duration. To increase the number of trades, we can add additional pairs, such as GLD-GDX. We encourage + our users to clone this algorithm and and to experiment with different ideas for pairs and to play with the parameters + of the algorithm. +

\ No newline at end of file diff --git a/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html new file mode 100644 index 0000000..10b2dac --- /dev/null +++ b/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html @@ -0,0 +1,7 @@ +
    +
  1. + Leung, Tim and Li, Xin, Optimal Mean Reversion Trading with Transaction Costs and Stop-Loss Exit (April 26, 2015). + International Journal of Theoretical and Applied Finance, Vol. 18, No. 3, 2015. + Online Copy. +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1030 G-Score Investing/01 Abstract.html b/04 Strategy Library/1030 G-Score Investing/01 Abstract.html new file mode 100644 index 0000000..248865d --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/01 Abstract.html @@ -0,0 +1,3 @@ +

+ In this tutorial, we apply G-Score Investing to choose a Universe of stocks to invest in. +

diff --git a/04 Strategy Library/1030 G-Score Investing/02 Introduction.html b/04 Strategy Library/1030 G-Score Investing/02 Introduction.html new file mode 100644 index 0000000..b26b9f7 --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/02 Introduction.html @@ -0,0 +1,10 @@ +

+ Analyzing a company’s fundamentals is a method of trading that doesn’t + rely purely on price and volume data. We will apply the use of computers to automate + the analysis of this data, and we will do so using a method of + Factor Investing, + the process of using different attributes, in this case, fundamental data, to choose + stocks to purchase. More specifically, we will use G-Score investing, and evaluate companies + on seven factors that we will detail later. We specifically choose companies with Book-to-Market + due to abnormal returns as a result of the Risk Premium Effect. +

diff --git a/04 Strategy Library/1030 G-Score Investing/03 Method.html b/04 Strategy Library/1030 G-Score Investing/03 Method.html new file mode 100644 index 0000000..3a493ab --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/03 Method.html @@ -0,0 +1,57 @@ +

+ We first sort all companies that have fundamental data by their Book-to-Market ratio, and narrow our universe to the + bottom quartile. We measure the Book-to-Market ratio using + fine.FinancialStatements.BalanceSheet.NetTangibleAssets.TwelveMonths divided by + fine.MarketCap. In this strategy, we will use Technology as the industry of choice, thus, we further + narrow this universe to Technology stocks only. +

+ +

+ For each of the conditions that are described below, if met, one point will be added to the G-Score. + Thus, with seven factors, our G-Score can range from 0 to 7. We evaluate a company based on the following: +

+ + +
    +
  • + The Return on Assets (ROA) is greater than the contemporaneous industry median. In other words, the ROA for + the analyzed company is greater than the median of the ROAs of all companies in the same industry
    + We measure this value using fine.OperationRatios.ROA.OneYear +
  • +
  • + The Cash Flow Return on Assets (CFROA) is greater than the contemporaneous industry median
    + We measure this value using fine.FinancialStatements.CashFlowStatement.OperatingCashFlow.TwelveMonths + divided by fine.FinancialStatements.BalanceSheet.TotalAssets.TwelveMonths +
  • +
  • + The CFROA is greater than the ROA +
  • +
  • + The Variance of the ROA (VARROA) is lower than the contemporaneous industry median
    + We measure this by storing the past twelve values of fine.OperationRatios.ROA.ThreeMonths in a + RollingWindow and computing the variance of the values in the RollingWindow +
  • +
  • + The Research and Development Expenditure (R&D) is higher than the contemporaneous industry median
    + We measure this using fine.FinancialStatements.IncomeStatement.ResearchAndDevelopment.TwelveMonths +
  • +
  • + The Capital Expenditure (CapEx) is higher than the contemporaneous industry median
    + We measure this using fine.FinancialStatements.CashFlowStatement.CapExReported.TwelveMonths +
  • +
  • + The Advertisement Expenditure (Ad) is higher than the contemporaneous industry median
    + We measure this using fine.FinancialStatements.IncomeStatement.SellingGeneralAndAdministration.TwelveMonths +
  • +
+ +

+ The fundamental data used in our algorithms is sourced from MorningStar, and to read more about our fundamental data, + please visit the Fundamentals section of our + documentation. +

+ +

+ Once we have computed the G-Scores for each of the securities, we long the securities with G-Scores of 5 or higher. +

+ diff --git a/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html new file mode 100644 index 0000000..2c62d81 --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/1030 G-Score Investing/05 Results.html b/04 Strategy Library/1030 G-Score Investing/05 Results.html new file mode 100644 index 0000000..5f327af --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/05 Results.html @@ -0,0 +1,5 @@ +

+ Since we use Technology as the industry, we decided to use Nasdaq-100, or ^NDX, as the benchmark, which we track + using the QQQ ETF. Our algorithm achieves a Sharpe Ratio of 0.778 from April 2016 to September 2020, and so it is + outperformed by simply holding QQQ, which yielded a Sharpe Ratio of 1.22 over the same period. +

\ No newline at end of file diff --git a/04 Strategy Library/1030 G-Score Investing/06 References.html b/04 Strategy Library/1030 G-Score Investing/06 References.html new file mode 100644 index 0000000..f21473a --- /dev/null +++ b/04 Strategy Library/1030 G-Score Investing/06 References.html @@ -0,0 +1,6 @@ +
    +
  1. + Mohanram, Partha S., Separating Winners from Losers Among Low Book-to-Market Stocks Using Financial Statement + nalysis (April 2004). Online Copy. +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html new file mode 100644 index 0000000..a93480f --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html @@ -0,0 +1,3 @@ +

+ In this tutorial, we apply an SVM Wavelet model in an attempt to forecast EURJPY prices. +

diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html new file mode 100644 index 0000000..6fe7274 --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html @@ -0,0 +1,10 @@ +

+ Several methods have been developed to forecast time-series, from ARIMA to Neural Networks. In this strategy, we + combine a Support Vector Machine (SVM) and Wavelets in an attempt to forecast EURJPY. Although SVMs are generally + used for classification problems, such as classifying proteins, they can also be applied in regression problems, valued + for their ability to handle non-linear data. Furthermore, Wavelets are often applied in Signal Processing applications. Wavelets allow us + to decompose a time-series into multiple components, where each individual component can be denoised using thresholding, and this + leads to a cleaner time-series after the components are recombined. To use these two models in conjunction, we first + decompose the EURJPY data into components using Wavelet decomposition, then we apply the SVM to forecast one time-step + ahead of each of the components. After we recombine the components, we get the aggregate forecast of our SVM-Wavelet model. +

diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html new file mode 100644 index 0000000..5cd8e93 --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html @@ -0,0 +1,56 @@ +

+ Given EURJPY data, our first step is to decompose our data into multiple resolutions. + We work with wavelets using the pywt package. For denoising, Daubechies and + Symlets are good choices for Wavelets, and we use Symlets 10 in our strategy. We create a Symlets 10 Wavelet + using the following:  +

+ +
+
+w = pywt.Wavelet('sym10')
+
+
+

To determine the length of the data we’d need for a certain number of levels after decomposition, we can solve for:

+\[log_{2}(\frac{len(data)}{wavelength-1})=levels\] +

+ Given the length of a Symlet 10 wavelet is 20, if we want three levels, we + solve for len(data) to get len(data) = 152, which means data would need to have at least + 152 values. Since we will denoise our components using thresholding, + we specify threshold = 0.5 to indicate the strength of the thresholding. + This threshold value can be any number between 0 and 1. +

+

To decompose our data, we use: 

+ +
+
+coeffs = pywt.wavedec(data, w)
+
+
+ +

For each component, we threshold/denoise the component (except for the first component, the approximation coefficients), + roll the values of the component one spot to the left, + and replace the last value of the component with a value forecasted from an SVM. This process looks like the following in code:

+ +
+
+for i in range(len(coeffs)):
+    if i > 0:
+        # we don't want to threshold the approximation coefficients
+        coeffs[i] = pywt.threshold(coeffs[i], threshold*max(coeffs[i]))
+    forecasted = __svm_forecast(coeffs[i])
+    coeffs[i] = np.roll(coeffs[i], -1)
+    coeffs[i][-1] = forecasted
+
+
+ +

The __svm_forecast method fits partitioned data to an SVM model then predicts one value into the + future, and can be found under SVMWavelet.py file under the Algorithm section

+

Once we forecast one value into the future, we can aggregate the forecasts by recombining the components into a simple time-series. We do this with:

+
+
+datarec = pywt.waverec(coeffs, w)
+
+
+

Since we want the aggregate forecast one time-step into the future, we return the last element of this time-series, or datarec[-1].

+ +

Our trading rules are simple: feed in the past 152 points of daily closing prices of EURJPY into our SVM Wavelet forecasting method, and divide that number by the current close of EURJPY to get the forecasted percent change. Then, we emit an Insight based on the direction of the percent change with the weight of the Insight as the absolute value of the percent change. We use the InsightWeightPortfolioConstructionModel so that the weight of the Insight determines the portfolio allocation percentage, which means larger forecasted moves will have a larger allocation.

diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html new file mode 100644 index 0000000..935af6f --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html new file mode 100644 index 0000000..96be5b5 --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html @@ -0,0 +1,8 @@ +

The performance of the algorithm was decent. Over the past five years, the algorithm achieved a Sharpe Ratio of 0.252, + while buying and holding SPY over the same period would have achieved a Sharpe Ratio of 0.713. Some ideas for improvement include:

+
    +
  • Testing different Wavelet types (e.g. Daubechies)
  • +
  • Trying out other time resolutions (e.g. Minute)
  • +
  • Using alternative Decomposition methods (e.g. Stationary Wavelet Transform) 
  • +
+

If a user comes across any interesting results with modifications of this algorithm, we’d love to hear about it in the Community Forum.

\ No newline at end of file diff --git a/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html b/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html new file mode 100644 index 0000000..1cc8866 --- /dev/null +++ b/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html @@ -0,0 +1,5 @@ +
    +
  1. + M. S. Raimundo and J. Okamoto, "SVR-wavelet adaptive model for forecasting financial time series," 2018 International Conference on Information and Computer Technologies (ICICT), DeKalb, IL, 2018, pp. 111-114, doi: 10.1109/INFOCT.2018.8356851. Online Copy. +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html b/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html new file mode 100644 index 0000000..1d309c1 --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html @@ -0,0 +1,7 @@ +

+ In this tutorial, we train a Gradient Boosting Model (GBM) to forecast the intraday price movements of the SPY ETF using a + collection of technical indicators. The implementation is based on the research produced by Zhou et al (2013), where a GBM + was found to produce an annualized Sharpe ratio greater than 20. Our research shows that throughout a 5 year backtest, the + model underperforms the SPY with its current parameter set. However, we finish the tutorial with highlighting potential + areas of further research to improve the model’s performance. +

diff --git a/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html new file mode 100644 index 0000000..597b32d --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html @@ -0,0 +1,24 @@ +

+ A GBM is trained by setting the initial model prediction to the mean target value in the training set. The model then + iteratively builds regression trees to predict the model’s pseudo-residuals on the training set to tighten the fit. The + pseudo-residuals are the differences between the target value and the model’s prediction on the current training iteration + for each sample. The model’s predictions are made by summing the mean target value and the products of the learning rate + and the regression tree outputs. The full algorithm is shown here. +

+ +
+ Tutorial1033-gradient-boost-1 +
+ +

+ We provide technical indicator values as inputs to the GBM. The model is trained to predict the security’s return over the + next 10 minutes and the performance of the model’s predictions are assessed using the mean squared error loss function. +

+ +\[ MSE = \frac{\Sigma_{i=1}^n(y_i - \hat{y}_i)^2}{n} \] + +

+ Zhou et al (2013) utilize custom loss functions to fit their GBM in a manner that aims to maximize the profit-and-loss or + Sharpe ratio over the training data set. The attached notebook shows training the GBM with these custom loss functions + leads to poor model predictions. +

\ No newline at end of file diff --git a/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html b/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html new file mode 100644 index 0000000..7e88ae2 --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html @@ -0,0 +1,163 @@ +

Universe Selection

+

+ We use a ManualUniverseSelectionModel to subscribe to the SPY ETF. The algorithm is designed to work with minute and + second data resolutions. In our implementation, we use data on a minute resolution. +

+
+
+symbols = [ Symbol.Create("SPY", SecurityType.Equity, Market.USA) ]
+self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )
+self.UniverseSettings.Resolution = Resolution.Minute
+
+
+ + +

Alpha Construction

+

+ The GradientBoostingAlphaModel predicts the direction of the SPY at each timestep. Each position taken is held for + 10 minutes, although this duration is customizable in the constructor. During construction of this alpha model, we + simply set up a dictionary to hold a SymbolData object for each symbol in the universe. In the case where the + universe consists of multiple securities, the alpha model holds each with equal weighting. +

+
+
+class GradientBoostingAlphaModel(AlphaModel):
+    symbol_data_by_symbol = {}
+    
+    def __init__(self, hold_duration = 10):
+        self.hold_duration = hold_duration
+        self.weight = 1
+
+
+ + +

Alpha Securities Management

+

+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to + the security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method. +

+
+
+def OnSecuritiesChanged(self, algorithm, changes):
+    for security in changes.AddedSecurities:
+        symbol = security.Symbol
+        self.symbol_data_by_symbol[symbol] = SymbolData(symbol, algorithm, self.hold_duration)
+            
+    for security in changes.RemovedSecurities:
+        symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+        if symbol_data:
+            symbol_data.dispose()
+
+    self.weight = 1 / len(self.symbol_data_by_symbol)
+
+
+
+ + +

SymbolData Class

+

+ The SymbolData class is used in this algorithm to manage indicators, train the GBM, and produce trading predictions. + The constructor definition is shown below. The class is designed to train at the end of each month, using the + previous 4 weeks of data to fit the GBM that consists of 20 stumps (regression trees with 2 leaves). To ensure + overnight holds are avoided, the class uses + Scheduled Events to stop trading + near the market close. +

+
+
+class SymbolData:    
+    def __init__(self, symbol, algorithm, hold_duration, k_start=0.5, k_end=5,
+                    k_step=0.25, training_weeks=4, max_depth=1, num_leaves=2, num_trees=20,
+                    commission=0.02, spread_cost=0.03):
+        self.symbol = symbol
+        self.algorithm = algorithm
+        self.hold_duration = hold_duration
+        self.resolution = algorithm.UniverseSettings.Resolution
+        self.training_length = int(training_weeks * 5 * 6.5 * 60) # training_weeks in minutes
+        self.max_depth = max_depth
+        self.num_leaves = num_leaves
+        self.num_trees = num_trees
+        self.cost = commission + spread_cost
+
+        self.indicator_consolidators = []
+
+        # Train a model at the end of each month
+        self.model = None
+        algorithm.Train(algorithm.DateRules.MonthEnd(symbol),
+                        algorithm.TimeRules.BeforeMarketClose(symbol),
+                          self.train)
+
+        # Avoid overnight holds
+        self.allow_predictions = False
+        self.events = [
+            algorithm.Schedule.On(algorithm.DateRules.EveryDay(symbol),
+                                  algorithm.TimeRules.AfterMarketOpen(symbol, 0),
+                                  self.start_predicting),
+            algorithm.Schedule.On(algorithm.DateRules.EveryDay(symbol),
+                                  algorithm.TimeRules.BeforeMarketClose(symbol, hold_duration + 1),
+                                  self.stop_predicting)
+        ]
+
+        self.setup_indicators(k_start, k_end, k_step)
+        self.train()
+
+
+ + +

GBM Predictions

+

+ For brevity, we omit the model training logic. Although, the code can be seen in the attached backtest. To make + predictions, we define the following method inside the SymbolData class. A position is held in the predicted + direction only if the predicted return in that direction exceeds the cost of the trade. +

+
+
+def predict_direction(self):
+    if self.model is None or not self.allow_predictions:
+        return 0
+
+    input_data = [[]]
+    for _, indicators in self.indicators_by_indicator_type.items():
+        for indicator in indicators:
+            input_data[0].append(indicator.Current.Value)
+                
+    return_prediction = self.model.predict(input_data)
+    if return_prediction > self.cost:
+        return 1
+    if return_prediction < -self.cost:
+        return -1
+    return 0
+
+
+ + +

Alpha Update

+

+ As new TradeBars are provided to the alpha model's Update method, each SymbolData object makes a directional + prediction for its security. If the prediction is not flat, the alpha model emits an insight in that direction with + a duration of 10 minutes. +

+
+
+def Update(self, algorithm, data):
+    insights = []
+    for symbol, symbol_data in self.symbol_data_by_symbol.items():
+        direction = symbol_data.predict_direction()
+        if direction:
+            hold_duration = timedelta(minutes=self.hold_duration) # Should match universe resolution
+            insights.append(Insight.Price(symbol, hold_duration, direction, None, None, None, self.weight))
+
+    return insights
+
+
+ + +

Portfolio Construction & Trade Execution

+

+ Following the guidelines of Alpha Streams + and the Quant League competition, we + utilize the + InsightWeightingPortfolioConstructionModel and the + + ImmediateExecutionModel. +

diff --git a/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html b/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html new file mode 100644 index 0000000..223e7f3 --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html new file mode 100644 index 0000000..415eea9 --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html @@ -0,0 +1,56 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeVariance
5 Year Backtest9/1/20159/17/2020Strategy-0.7160.006
Benchmark0.8450.036
2020 Crash2/19/20203/23/2020Strategy-2.8790.101
Benchmark-1.2430.628
2020 Recovery3/23/20206/8/2020Strategy-2.3290.027
Benchmark13.7610.149
+
+ diff --git a/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html b/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html new file mode 100644 index 0000000..d2ac60d --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html @@ -0,0 +1,13 @@ +

+ Although this strategy passes several of the + metrics required for Alpha Streams + and the Quant League competition, it requires further work to pass the following requirements: +

+ + +
    +
  • Profitable
  • +
  • PSR >= 80%
  • +
  • Max drawdown duration <= 6 months
  • +
  • Handles dividends and splits
  • +
diff --git a/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html b/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html new file mode 100644 index 0000000..10701d6 --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html @@ -0,0 +1,17 @@ +

+ The GBM implemented in this tutorial has a lower Sharpe ratio than the S&P 500 index ETF benchmark over the periods + we tested. However, the strategy generates a lower annual variance over all the testing period, implying more + consistent returns than buy-and-hold. To continue the development of this strategy, future areas of research + include: +

+ +
    +
  • Adjusting parameters in the GradientBoostingAlphaModel and SymbolData classes
  • +
  • Testing other custom loss functions
  • +
  • Changing the data resolution from minutes to seconds
  • +
  • Using more/other technical indicators
  • +
  • + Adding a model to predict the cost of trading (slippage, commissions, market impact) for each security instead of + prescribing a fixed amount +
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1033 Gradient Boosting Model/08 References.html b/04 Strategy Library/1033 Gradient Boosting Model/08 References.html new file mode 100644 index 0000000..385172c --- /dev/null +++ b/04 Strategy Library/1033 Gradient Boosting Model/08 References.html @@ -0,0 +1,5 @@ +
    +
  1. + Zhou, Nan and Cheng, Wen and Qin, Yichen and Yin, Zongcheng, Evolution of High Frequency Systematic Trading: A Performance-Driven Gradient Boosting Model (September 10, 2013). Online copy +
  2. +
\ No newline at end of file diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html new file mode 100644 index 0000000..9421bb8 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html @@ -0,0 +1,7 @@ +

+ Naïve Bayes models have become popular for their success in spam email filtering. In this tutorial, we train + Gaussian Naïve Bayes (GNB) classifiers to forecast the daily returns of stocks in the technology sector given the + historical returns of the sector. Our implementation shows the strategy has a greater Sharpe and lower variance + than the SPY ETF over a 5 year backtest and during the 2020 stock market crash. The algorithm we build here follows + the research done by Lu (2016) and Imandoust & Bolandraftar (2014). +

diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html new file mode 100644 index 0000000..f576900 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html @@ -0,0 +1,47 @@ +

+ Naïve Bayes models classify observations into a set of classes by utilizing + Bayes’ Theorem +

+ +\[\text{posterior} = \frac{ \text{prior } * \text{ likelihood} } {\text{evidence}}\] + +

+ In symbols, this translates to +

+ +\[P(c_i | x_1, ..., x_n) = \frac{P(c_i)P(x_1, ..., x_n | c_i)}{P(x_1, ..., x_n)}\] + +

+ where \(c_i\) represents one of the \(m\) classes and \(x_1, ..., x_n\) are the features. +

+ +

+ The Naïve Bayes model assumes the features are independent, so that +

+ +\[P(c_i | x_1, ..., x_n) = \frac{P(c_i)\prod_{j=1}^{n} P(x_j | c_i)}{P(x_1, ..., x_n)} \propto P(c_i)\prod_{j=1}^{n} P(x_j|c_i)\] + +

+ The class that is most probable given the observation is then determined by solving +

+ +\[\hat{c} = \arg\max_{i \in \{1, ..., m\}} P(c_i) \prod_{j=1}^{n} P(x_j | c_i)\] + + +

+ In our use case, the classes in the model are: positive, negative, or flat future return for a security. The features + are the last 4 daily returns of the universe constituents. Since we are dealing with continuous data, we extend the + model to a GNB model by replacing \(P(x_j|c_i)\) in the equation above. First, we find the mean \(\mu_j\) and standard + deviation \(\sigma_j^2\) of the \(x_j\) feature vector in the training set labeled class \(c_i\). A normal distribution + parameterized by \(\mu_j\) and \(\sigma_j^2\) is then used to determine the likelihood of the observations. If \(o\) is the + observation for the \(j\)th feature. The likelihood of the observation given the class \(c_i\) is +

+ +\[P(x_j = o | c_i) = \frac{1} {\sqrt{2 \pi{} \sigma{}_j^2 }}e^{- \frac{(o - \mu{}_j)^2} {2 \sigma{}_j^2}} \] + +

+ The mechanics of the GNB model can be seen visually in + this video. Note that the GNB model has 2 underlying + assumptions: the feature vectors are independent and normally distributed. We do not test for these properties, but + rather leave it as an area of future research. +

\ No newline at end of file diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html new file mode 100644 index 0000000..3a3ef40 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html new file mode 100644 index 0000000..8ef11c2 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html @@ -0,0 +1,223 @@ +

Universe Selection

+

+ Following Lu (2016), we implement a custom universe selection model to select the largest stocks from the technology + sector. We restrict our universe to have a size of 10, but this can be easily customized via the `fine_size` + parameter in the constructor. +

+
+
+class BigTechUniverseSelectionModel(FundamentalUniverseSelectionModel):
+    def __init__(self, fine_size=10):
+        self.fine_size = fine_size
+        self.month = -1
+        super().__init__(True)
+
+    def SelectCoarse(self, algorithm, coarse):
+        if algorithm.Time.month == self.month:
+            return Universe.Unchanged
+        return [ x.Symbol for x in coarse if x.HasFundamentalData ]
+    
+    def SelectFine(self, algorithm, fine):
+        self.month = algorithm.Time.month
+        
+        tech_stocks = [ f for f in fine if f.AssetClassification.MorningstarSectorCode == MorningstarSectorCode.Technology ]
+        sorted_by_market_cap = sorted(tech_stocks, key=lambda x: x.MarketCap, reverse=True)
+        return [ x.Symbol for x in sorted_by_market_cap[:self.fine_size] ]
+
+
+ + +

Alpha Construction

+

+ The GaussianNaiveBayesAlphaModel predicts the direction each security will move from a given day’s open to the next + day’s open. When constructing this alpha model, we set up a dictionary to hold a SymbolData object for each symbol + in the universe and a flag to show the universe has changed. +

+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+    symbol_data_by_symbol = {}
+    new_securities = False
+
+
+ + +

Alpha Securities Management

+

+ When a new security is added to the universe, we create a SymbolData object for it to store information unique to + the security. The management of the SymbolData objects occurs in the alpha model's OnSecuritiesChanged method. In + this algorithm, since we train the Gaussian Naive Bayes classifier using the historical returns of the securities + in the universe, we flag to train the model every time the universe changes. +

+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+    ...
+
+    def OnSecuritiesChanged(self, algorithm, changes):
+        for security in changes.AddedSecurities:
+            self.symbol_data_by_symbol[security.Symbol] = SymbolData(security, algorithm)
+            
+        for security in changes.RemovedSecurities:
+            symbol_data = self.symbol_data_by_symbol.pop(security.Symbol, None)
+            if symbol_data:
+                symbol_data.dispose()
+        
+        self.new_securities = True
+
+
+ + +

SymbolData Class

+

+ The SymbolData class is used to store training data for the GaussianNaiveBayesAlphaModel and manage a consolidator + subscription. In the constructor, we specify the training parameters, setup the consolidator, and warm up the + training data. +

+
+
+class SymbolData:
+    def __init__(self, security, algorithm, num_days_per_sample=4, num_samples=100):
+        self.exchange = security.Exchange
+        self.symbol = security.Symbol
+        self.algorithm = algorithm
+        self.num_days_per_sample = num_days_per_sample
+        self.num_samples = num_samples
+        self.previous_open = 0
+        self.model = None
+        
+        # Setup consolidators
+        self.consolidator = TradeBarConsolidator(timedelta(days=1))
+        self.consolidator.DataConsolidated += self.CustomDailyHandler
+        algorithm.SubscriptionManager.AddConsolidator(self.symbol, self.consolidator)
+        
+        # Warm up ROC lookback
+        self.roc_window = np.array([])
+        self.labels_by_day = pd.Series()
+        
+        data = {f'{self.symbol.ID}_(t-{i})' : [] for i in range(1, num_days_per_sample + 1)}
+        self.features_by_day = pd.DataFrame(data)
+        
+        lookback = num_days_per_sample + num_samples + 1
+        history = algorithm.History(self.symbol, lookback, Resolution.Daily)
+        if history.empty or 'close' not in history:
+            algorithm.Log(f"Not enough history for {self.symbol} yet")    
+            return
+        
+        history = history.loc[self.symbol]
+        history['open_close_return'] = (history.close - history.open) / history.open
+        
+        start = history.shift(-1).open
+        end = history.shift(-2).open
+        history['future_return'] = (end - start) / start
+        
+        for day, row in history.iterrows():
+            self.previous_open = row.open
+            if self.update_features(day, row.open_close_return) and not pd.isnull(row.future_return):
+                row = pd.Series([np.sign(row.future_return)], index=[day])
+                self.labels_by_day = self.labels_by_day.append(row)[-self.num_samples:]
+
+
+ +

+ The update_features method is called to update our training features with the latest data passed to the algorithm. + It returns True/False, representing if the features are in place to start updating the training labels. +

+ +
+
+class SymbolData:
+    ...
+
+    def update_features(self, day, open_close_return):
+        self.roc_window = np.append(open_close_return, self.roc_window)[:self.num_days_per_sample]
+        
+        if len(self.roc_window) < self.num_days_per_sample:
+            return False
+            
+        self.features_by_day.loc[day] = self.roc_window
+        self.features_by_day = self.features_by_day[-(self.num_samples+2):]
+        return True
+
+
+ + + + +

Model Training

+

+ The GNB model is trained each day the universe has changed. By default, it uses 100 samples to train. The features + are the historical open-to-close returns of the universe constituents. The labels are the returns from the open at + T+1 to the open at T+2 at each time step for each security. +

+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+    ...
+
+    def train(self):
+        features = pd.DataFrame()
+        labels_by_symbol = {}
+        
+        # Gather training data
+        for symbol, symbol_data in self.symbol_data_by_symbol.items():
+            if symbol_data.IsReady:
+                features = pd.concat([features, symbol_data.features_by_day], axis=1)
+                labels_by_symbol[symbol] = symbol_data.labels_by_day
+        
+        # Train the GNB model
+        for symbol, symbol_data in self.symbol_data_by_symbol.items():
+            if symbol_data.IsReady:
+                symbol_data.model = GaussianNB().fit(features.iloc[:-2], labels_by_symbol[symbol])
+
+
+ + +

Alpha Update

+

+ As new TradeBars are provided to the alpha model's Update method, we collect the latest TradeBar’s open-to-close + return for each security in the universe. We then predict the direction of each security using the security’s + corresponding GNB model, and return insights accordingly. +

+
+
+class GaussianNaiveBayesAlphaModel(AlphaModel):
+    ...
+
+    def Update(self, algorithm, data):
+        if self.new_securities:
+            self.train()
+            self.new_securities = False
+        
+        tradable_symbols = {}
+        features = [[]]
+        
+        for symbol, symbol_data in self.symbol_data_by_symbol.items():
+            if data.ContainsKey(symbol) and data[symbol] is not None and symbol_data.IsReady:
+                tradable_symbols[symbol] = symbol_data
+                features[0].extend(symbol_data.features_by_day.iloc[-1].values)
+
+        insights = []
+        if len(tradable_symbols) == 0:
+            return []
+        weight = 1 / len(tradable_symbols)
+        for symbol, symbol_data in tradable_symbols.items():
+            direction = symbol_data.model.predict(features)
+            if direction:
+                insights.append(Insight.Price(symbol, data.Time + timedelta(days=1, seconds=-1), 
+                                              direction, None, None, None, weight))
+
+        return insights
+
+
+ + +

Portfolio Construction & Trade Execution

+

+ Following the guidelines of Alpha Streams + and the Quant League competition, we + utilize the + InsightWeightingPortfolioConstructionModel and the + + ImmediateExecutionModel. +

diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html new file mode 100644 index 0000000..7f48965 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html new file mode 100644 index 0000000..3ddfffe --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html @@ -0,0 +1,56 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Period NameStart DateEnd DateStrategySharpeVariance
5 Year Backtest10/1/201510/13/2020Strategy0.970.016
Benchmark0.8050.029
2020 Crash2/19/20203/23/2020Strategy-0.9810.353
Benchmark-1.40.474
2020 Recovery3/23/20206/8/2020Strategy-2.0110.035
Benchmark8.7650.103
+
+ diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html new file mode 100644 index 0000000..d16c9d8 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html @@ -0,0 +1,12 @@ +

+ Although this strategy passes several of the + metrics required for Alpha Streams + and the Quant League competition, it requires further work to pass the following requirements: +

+ +
    +
  • PSR >= 80%
  • +
  • Max drawdown duration <= 6 months
  • +
  • Handles dividends and splits
  • +
  • Minute or second data resolution
  • +
diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html new file mode 100644 index 0000000..99f052c --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html @@ -0,0 +1,17 @@ +

+ The GNB model strategy implemented in this tutorial produced a greater Sharpe ratio and lower annual variance than + buying and holding the S&P 500 index ETF benchmark over the backtesting period. In addition to outperforming during + the entire backtest, the strategy also outperformed during the 2020 stock market crash. +

+ +

+ To continue the development of this strategy, future areas of research include: +

+ +
    +
  • Adjusting parameters in the SymbolData class
  • +
  • Trying other features and labels for the GNB model
  • +
  • Adjusting the universe parameters and targeted sector
  • +
  • Adding handlers for corporate actions
  • +
  • Filter for stocks with independent and normal returns
  • +
\ No newline at end of file diff --git a/04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html b/04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html new file mode 100644 index 0000000..0320284 --- /dev/null +++ b/04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html @@ -0,0 +1,12 @@ +
    +
  1. + Imandoust, S. B., & Mohammad, B. (2014). Forecasting the direction of stock market index movement using three + data mining techniques: the case of Tehran Stock Exchange. Journal of Engineering Research and Applications, + 6(2), 106-117. + Online copy +
  2. +
  3. + Lu, N. (2016). A Machine Learning Approach to Automated Trading. + Online copy +
  4. +
\ No newline at end of file diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/01 Introduction.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/01 Introduction.html new file mode 100755 index 0000000..f3424da --- /dev/null +++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/01 Introduction.html @@ -0,0 +1,26 @@ +

+ In this tutorial we implemented a long/short equity strategy based on fundamental factors. The idea comes from AQR white book: A New Core Equity Paradigm. The original version is a long only strategy. We developed it into a long/short version. The paper strategy used some fundamental data as measures of value, quality and momentum, and then ranked all the stocks in the universe according to the factors. The strategy only long the stocks ranking at the top, but our algorithm would at the same time short the stocks ranking at the bottom. This strategy consistently beats the market and has solid economic intuition. +

+

Factors

+

+ The paper strategy used three factors together to rank stocks: value, quality and momentum. +

+

+ Value: The most commonly used measure for value is P/B ratio(price-to-book value). Intuitively, the stocks with high P/B ratio are likely to be overpriced, and those stocks are labeled as growth stock. On the other hand, the stocks with low P/B value are considered to be value stocks. Following this logic, we use book value per share as a measure for value in our algorithm: the stocks with high book value per share rank high. +

+

+ Quality: Quality is a comprehensive factor. The paper used total profits over asset, gross margins, and free cash flow over assets. For simplicity, we used only operation margin as our quality factor. Here we assume that the companies with high operation margin are profitable, and their stocks are the quality ones. +

+

+ Momentum: The paper strategy is quarterly rebalanced, so it used recent one-year return, three-month and returns around earning events as measures for momentum. While our algorithm is monthly rebalanced, we simply use recent monthly return as our momentum factor. +

+ +

Ranking

+

+ Ranking is the core process for stock selection. We first rank all the stocks according to each factor, then assign weights to each factor to get the final rank. + Specifically, in our algorithm we have 250 stocks in total. We rank them according to their book values per share, operation margins and one-month returns by descending order. For each stock, its index in each sorted list is its score on each factor. e.g. If stock A ranks 1st by value, 10th by quality and 30th by momentum, its scores on the value, quality and momentum are 1, 10 and 30 respectively. +

+ +

+ The last step is to calculate the final score of each stocks. We use the same weight as the paper does: 40% on value, 40% on quality and 20% on momentum. In this way, stock A's final score is 1*0.4 + 10*0.4 + 30*0.2 = 10.4. Finally, we can rank all the stocks by their scores by ascending order. It worth attention that the stock with the lowest score is the best and it ranks 1st, and the one with the highest score is the worst. +

diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/02 Implementation.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/02 Implementation.html new file mode 100755 index 0000000..834dad1 --- /dev/null +++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/02 Implementation.html @@ -0,0 +1,103 @@ +

+ In this implementation, the FineSelectionFunction would be the core part because we have to rank the stocks in this process. We also need a ScheduledEvent handler to rebalance the portfolio every month. We would introduce the process step by step. +

+ +

CoarseSelectionFunction

+

+ This function is a filter for the whole asset universe(around 8000 stocks). We select the top 250 with highest dollar volume to ensure liquidity. We also filter out the stocks without fundamental information or with a too low price(less than $5). +

+ +
+ +
+def CoarseSelectionFunction(self, coarse):
+    # if the rebalance flag is not 1, return null list to save time.
+    if self.reb != 1:
+        return return self.long + self.short
+
+    # make universe selection once a month
+    # drop stocks which have no fundamental data or have too low prices
+    selected = [x for x in coarse if (x.HasFundamentalData)
+                and (float(x.Price) > 5)]
+
+    sortedByDollarVolume = sorted(selected, key=lambda x: x.DollarVolume, reverse=True)
+    top = sortedByDollarVolume[:self.num_coarse]
+    return [i.Symbol for i in top]
+
+
+ +

FineSelectionFunction

+

+ Here is the core function. The process is that we make three sorted list to store the stocks, and then use a dictionary to store the score information. For the dictionary, the keys are Symbols and the values are their scores. Finally we sort the dictionary to get the final rank. we store the top 20 stocks to long in the list self.long and the bottom 20 stocks to short in the list self.short. +

+ +
+ +
+  def FineSelectionFunction(self, fine):
+      # return the same symbol list if it's not time to rebalance
+      if self.reb != 1:
+          return self.long+self.short
+      self.reb = 0
+
+  # drop stocks which don't have the information we need.
+  # you can try replacing those factor with your own factors here
+
+      filtered_fine = [x for x in fine if x.OperationRatios.OperationMargin.Value
+                                      and x.ValuationRatios.PriceChange1M
+                                      and x.ValuationRatios.BookValuePerShare]
+
+      self.Log('remained to select %d'%(len(filtered_fine)))
+
+      # rank stocks by three factor.
+      sortedByfactor1 = sorted(filtered_fine, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
+      sortedByfactor2 = sorted(filtered_fine, key=lambda x: x.ValuationRatios.PriceChange1M, reverse=True)
+      sortedByfactor3 = sorted(filtered_fine, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
+
+      stock_dict = {}
+
+      # assign a score to each stock, you can also change the rule of scoring here.
+      for i,ele in enumerate(sortedByfactor1):
+          rank1 = i
+          rank2 = sortedByfactor2.index(ele)
+          rank3 = sortedByfactor3.index(ele)
+          score = sum([rank1*0.2,rank2*0.4,rank3*0.4])
+          stock_dict[ele] = score
+
+      # sort the stocks by their scores
+      self.sorted_stock = sorted(stock_dict.items(), key=lambda d:d[1],reverse=False)
+      sorted_symbol = [x[0] for x in self.sorted_stock]
+
+      # sotre the top stocks into the long_list and the bottom ones into the short_list
+      self.long = [x.Symbol for x in sorted_symbol[:self.num_fine]]
+      self.short = [x.Symbol for x in sorted_symbol[-self.num_fine:]]
+
+      return self.long+self.short
+
+

Rebalance

+

+ Our portfolio is rebalanced monthly, so first of all we should write a ScheduledEvent handler in the Initialize function: +

+ +
+ +
+def Initialize(self):
+# Use SPY as a benchmark for market open
+    self.Schedule.On(self.DateRules.MonthStart(self.spy), self.TimeRules.AfterMarketOpen(self.spy,5), Action(self.rebalance))
+Our rebalanced method is straightforward: We first liquidate the stocks that are no longer in the long/short list, and then assign equal weight to the stocks we are going to long or short.
+def rebalance(self):
+# if this month the stock are not going to be long/short, liquidate it.
+    long_short_list = self.long + self.short
+    for i in self.Portfolio.Values:
+        if (i.Invested) and (i.Symbol not in long_short_list):
+            self.Liquidate(i.Symbol)
+
+    # Assign each stock equally. Always hold 10% cash to avoid margin call
+    for i in self.long:
+        self.SetHoldings(i,0.9/self.num_fine)
+
+    for i in self.short:
+        self.SetHoldings(i,-0.9/self.num_fine)
+
+
diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/03 Summary.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/03 Summary.html new file mode 100644 index 0000000..7fa12d8 --- /dev/null +++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/03 Summary.html @@ -0,0 +1,4 @@ +

+ The strategy was backtest at a 60-year timespan. It's persistent, systematic and intuitive. Although our version is very different from the paper one, the logic and intuition behind are the same. It has a better performance than the paper strategy because we added short positions. + For further development, we can try to rank a large number of stocks, and do some portfolio optimization instead of holding stocks equally. +

diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html new file mode 100755 index 0000000..b8d9c7d --- /dev/null +++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/11 Fundamental Factor Long Short Strategy/05 References.html b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/05 References.html new file mode 100644 index 0000000..e199f94 --- /dev/null +++ b/04 Strategy Library/11 Fundamental Factor Long Short Strategy/05 References.html @@ -0,0 +1,5 @@ +
    +
  1. + A New Core Equity ParadigmOnline Copy +
  2. +
diff --git a/04 Strategy Library/113 January Barometer/01 Introduction.html b/04 Strategy Library/113 January Barometer/01 Introduction.html new file mode 100644 index 0000000..4148671 --- /dev/null +++ b/04 Strategy Library/113 January Barometer/01 Introduction.html @@ -0,0 +1,4 @@ +

+ January barometer is a calendar anomaly saying that the January performance of equity index could foretell February to December returns on equity index - a strong January shows strong rest of the year and otherwise. + This algorithm is going to explore the estimation effect of the January barometer in equity index market. +

diff --git a/04 Strategy Library/113 January Barometer/02 Method.html b/04 Strategy Library/113 January Barometer/02 Method.html new file mode 100644 index 0000000..c8d3623 --- /dev/null +++ b/04 Strategy Library/113 January Barometer/02 Method.html @@ -0,0 +1,20 @@ +

+ We use the S&P500 ETF as the underlying. In January, the algorithm buys SPY and hold until the end of January. + At the end of January, we calculate the January return, if the return is greater than zero, the algorithm will continue to hold the SPY. If the January return is negative instead, the algorithm will liquidate the SPY asset and invest in the treasury bill for the rest of the year. The portfolio is rebalanced every year in January. +

+
+
+def Rebalance(self):
+    if self.Time.month == 1:
+        self.Liquidate("BIL")
+        self.SetHoldings("SPY", 1)
+        self.startPrice = self.Securities["SPY"].Price
+    if self.Time.month == 2 and self.startPrice is not None:
+        returns = (self.Securities["SPY"].Price - self.startPrice)/self.startPrice
+        if returns > 0:
+            self.SetHoldings("SPY", 1)
+        else:
+            self.Liquidate("SPY")
+            self.SetHoldings("BIL", 1)
+
+
diff --git a/04 Strategy Library/113 January Barometer/03 Algorithm.html b/04 Strategy Library/113 January Barometer/03 Algorithm.html new file mode 100644 index 0000000..e85f53d --- /dev/null +++ b/04 Strategy Library/113 January Barometer/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/113 January Barometer/04 Source.html b/04 Strategy Library/113 January Barometer/04 Source.html new file mode 100644 index 0000000..8a2d56e --- /dev/null +++ b/04 Strategy Library/113 January Barometer/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/114 January Effect in Stocks/01 Introduction.html b/04 Strategy Library/114 January Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..cb4b453 --- /dev/null +++ b/04 Strategy Library/114 January Effect in Stocks/01 Introduction.html @@ -0,0 +1,5 @@ +

+ The January effect is a calendar anomaly saying that small-cap stocks returns in January are especially strong. + The most common explanation of this phenomenon is that individual investors, who are income tax-sensitive and who disproportionately hold small stocks, sell stocks for tax reasons at year end and reinvest during the first month of the year. + In this algorithm, we will explore the January effect in the stock market. +

diff --git a/04 Strategy Library/114 January Effect in Stocks/02 Method.html b/04 Strategy Library/114 January Effect in Stocks/02 Method.html new file mode 100644 index 0000000..ae1f295 --- /dev/null +++ b/04 Strategy Library/114 January Effect in Stocks/02 Method.html @@ -0,0 +1,69 @@ +

+ The investment universe consists of US-listed companies. A minimum stock price filter is used to avoid penny stocks. To avoid stocks that are not liquid enough, we select 1000 stocks with the highest dollar volume. +

+
+
+def CoarseSelectionFunction(self, coarse):
+    if self.monthly_rebalance:
+        self.coarse = True
+        coarse = [x for x in coarse if (x.AdjustedPrice > 10)]
+        topDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)[:1000]
+        return [i.Symbol for i in topDollarVolume]
+    else:
+        return []
+
+
+

+ In FineSelectionFunction(self, fine), we calculate the market cap value with shares outstanding, earning per shares and the PE ratio. + Then stocks are sorted by their market capitalization. The top 10 stocks are selected as the large-cap group and the bottom 10 stocks belong to the small-cap group. +

+
+
+def FineSelectionFunction(self, fine):
+    if self.monthly_rebalance:
+        fine =[i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths>0
+                              and i.EarningReports.BasicEPS.TwelveMonths>0
+                              and i.ValuationRatios.PERatio>0]
+        for i in fine:
+            i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+        sorted_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)
+        symbols = [i.Symbol for i in sorted_market_cap]
+        self.top_market_cap = symbols[:10]
+        self.bottom_market_cap = symbols[-10:]
+        return self.top_market_cap + self.bottom_market_cap
+    else:
+        return []
+
+
+

+ The algorithm invests into small-cap stocks at the beginning of each January and stays invested in large-cap stocks for rest of the year. + The portfolio is rebalanced every month. +

+
+
+  def OnData(self, data):
+      if not (self.monthly_rebalance and self.coarse): return
+      self.coarse = False
+      self.monthly_rebalance = False
+      stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
+      # invest in small cap stocks at the beginning of each January
+      if self.Time.month == 1:
+          # liquidate stocks not in the small-cap group
+          for i in stocks_invested:
+              if i not in self.bottom_market_cap:
+                  self.Liquidate(i)
+          weight = 1/len(self.bottom_market_cap)
+          for i in self.bottom_market_cap:
+              self.SetHoldings(i, weight)
+      # invest in large cap stocks for rest of the year
+      else:
+          # liquidate stocks not in the large-cap group
+          for i in stocks_invested:
+              if i not in self.top_market_cap:
+                  self.Liquidate(i)
+
+          weight = 1/len(self.top_market_cap)
+          for i in self.top_market_cap:
+              self.SetHoldings(i, weight)
+
+
diff --git a/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html b/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..6dc92eb --- /dev/null +++ b/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/114 January Effect in Stocks/04 Source.html b/04 Strategy Library/114 January Effect in Stocks/04 Source.html new file mode 100644 index 0000000..7f85cc6 --- /dev/null +++ b/04 Strategy Library/114 January Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/118 Time Series Momentum Effect/01 Introduction.html b/04 Strategy Library/118 Time Series Momentum Effect/01 Introduction.html new file mode 100644 index 0000000..8161ee5 --- /dev/null +++ b/04 Strategy Library/118 Time Series Momentum Effect/01 Introduction.html @@ -0,0 +1,10 @@ +

+Time series momentum is related to, but different from the phenomenon known as “momentum” in the finance literature, which is primarily cross-sectional in nature. +The momentum literature focuses on the relative performance of securities in the cross section, finding that securities that recently outperformed their peers over the past 3 to 12 months continue to do so on average over the next month. +Rather than focus on the relative returns of securities in the cross section, this time series momentum strategy focuses purely on the past returns of each individual futures contract. +Every month, the investor considers whether the excess return of each asset over the past 12 months is positive or negative and goes long on the contract if it is positive and short if negative. +The position size is set to be inversely proportional to the volatility of the security's returns. +A univariate GARCH model could be used to estimate volatility. +However, other simple models could probably be easily used with good results (for example, the easiest one would be using historical volatility). For the sake of simplicity, we will use historical volatility. +The portfolio is rebalanced monthly. +

diff --git a/04 Strategy Library/118 Time Series Momentum Effect/02 Method.html b/04 Strategy Library/118 Time Series Momentum Effect/02 Method.html new file mode 100644 index 0000000..3e2ec91 --- /dev/null +++ b/04 Strategy Library/118 Time Series Momentum Effect/02 Method.html @@ -0,0 +1,60 @@ +

+ As the strategy needs the continuous futures contract, we import the custom data from Quandl. + We create a universe of highly liquid commodity futures that are traded on CME, ICE and CBOT (more contracts can be added using the Quandl API). + We will use Quandl's daily, non-adjusted price data, which is based on spot-month continuous contract calculations. +

+

+ The first step is importing the data. +

+
+
from QuantConnect.Python import PythonQuandl
+for symbol in self.symbols  :
+    self.AddData(QuandlFutures, symbol, Resolution.Daily)
+
+class QuandlFutures(PythonQuandl):
+    def __init__(self):
+        self.ValueColumnName = "Settle"
+
+
+

+ Here we use a 12-month RateOfChange(period) indicator to simulate the momentum returns. + All indicators are saved in the dictionary self.roc. +

+
+
+self.period = 252
+self.roc = {}
+for symbol in self.symbols:
+  self.roc[symbol] = self.ROC(symbol, self.period)   #Initialize ROC indicator : ROC is short for RateofChange
+
+
+
+ +

+ We use history request to obtain historical prices. Here, history is the daily returns, which will be used to calculate volatilities. +

+
+
+        history = self.History(self.symbols, self.period, Resolution.Daily)
+        history = history.value.unstack(level=0).pct_change().dropna()
+    
+
+ +

Then we calculate the historical volatilities and place orders. + Note that the weights are inversely proportional to volatilities and np.sign determines whether to long or short. +

+ +
+
+        vol_inv = 1 / history.std(ddof=1)
+        vol_sum = vol_inv.sum()
+        weights = (vol_inv / vol_sum).fillna(0).to_dict()
+        self.Liquidate()
+        for symbol, roc in self.roc.items():
+            percentage = np.sign(roc.Current.Value) * weights[symbol] *.5
+            self.SetHoldings(symbol, percentage)
+    
+
+ + + diff --git a/04 Strategy Library/118 Time Series Momentum Effect/03 Algorithm.html b/04 Strategy Library/118 Time Series Momentum Effect/03 Algorithm.html new file mode 100644 index 0000000..61b8d16 --- /dev/null +++ b/04 Strategy Library/118 Time Series Momentum Effect/03 Algorithm.html @@ -0,0 +1,7 @@ +div class="qc-embed-frame" style="display: inline-block; position: relative; width: 100%; min-height: 100px; min-width: 300px;"> +
+
+ +
+
diff --git a/04 Strategy Library/118 Time Series Momentum Effect/04 Source.html b/04 Strategy Library/118 Time Series Momentum Effect/04 Source.html new file mode 100644 index 0000000..f82cd1e --- /dev/null +++ b/04 Strategy Library/118 Time Series Momentum Effect/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/12 Asset Class Trend Following/01 Introduction.html b/04 Strategy Library/12 Asset Class Trend Following/01 Introduction.html new file mode 100644 index 0000000..df8b8b8 --- /dev/null +++ b/04 Strategy Library/12 Asset Class Trend Following/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Asset class trend following is a strategy that tries to exploit a momentum anomaly between various assets. It uses various moving averages or momentum filters to gain an exposure to an asset class only at the time when there is a higher probability for outperformance with less risk. + The basic logic behind the trend following is finding a method to detect the trend of price movement and buy an asset when its price trend goes up, and sell when its trend goes down. +

diff --git a/04 Strategy Library/12 Asset Class Trend Following/02 Method.html b/04 Strategy Library/12 Asset Class Trend Following/02 Method.html new file mode 100644 index 0000000..cf3215f --- /dev/null +++ b/04 Strategy Library/12 Asset Class Trend Following/02 Method.html @@ -0,0 +1,5 @@ +

+ This algorithm applies to trend following ideas to 5 ETFs in different asset classes like stocks, bonds, and commodities. The simple moving average is used to detect the trend. When the closing price is over its ten-month simple moving average, + we give equal allocation to those ETFs, otherwise stay in cash. + SMA(symbol, period, resolution) is used to generate the moving average value In LEAN implementation. A warm-up period of ten months is set to prime the data and initialize the indicator so the SMA is ready to use when the algorithm starts. +

diff --git a/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html b/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html new file mode 100644 index 0000000..77b7892 --- /dev/null +++ b/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/12 Asset Class Trend Following/04 Source.html b/04 Strategy Library/12 Asset Class Trend Following/04 Source.html new file mode 100644 index 0000000..1c941c0 --- /dev/null +++ b/04 Strategy Library/12 Asset Class Trend Following/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/01 Introduction.html b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/01 Introduction.html new file mode 100644 index 0000000..e5ef779 --- /dev/null +++ b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/01 Introduction.html @@ -0,0 +1,5 @@ +

+ January effect in stocks market says that stocks perform especially well in the first month of the year. This seasonal effect might lead us to think + that stocks performed well in the last year's January will perform well in this year's January. In this tutorial, we're going to implement a strategy based + on this yearly seasonal effect. +

diff --git a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/02 Method.html b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/02 Method.html new file mode 100644 index 0000000..8663ff7 --- /dev/null +++ b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/02 Method.html @@ -0,0 +1,74 @@ +

+ The investment universe consists of all stocks from AMEX and NYSE. Firstly, in CoarseSelectionFunction, we remove stocks which do not have fundamental data. +

+
+
+def CoarseSelectionFunction(self, coarse):
+        if self.monthly_rebalance:
+            coarse = [x for x in coarse if (x.HasFundamentalData)
+                                        and (x.Market == "usa")]
+            return [i.Symbol for i in coarse]
+        else:
+            return []
+
+
+

+ Next, we are going to filter the top 30% of stocks based on their market cap. + In implementation, the market cap is calculated with the BasicAverageShares, BasicEPS and PERatio. + Then we request the history price 12 months ago and 11 months ago to calculate the January return of the last year. +

+
+
+def FineSelectionFunction(self, fine):
+    if self.monthly_rebalance:
+        fine =[i for i in fine if ((i.SecurityReference.ExchangeId == "NYS") or (i.SecurityReference.ExchangeId == "ASE"))]
+        self.filtered_fine = []
+
+        for i in fine:
+            i.MarketCap = float(i.EarningReports.BasicAverageShares.TwelveMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+            history_start = self.History([i.Symbol], TimeSpan.FromDays(365))
+            history_end = self.History([i.Symbol],TimeSpan.FromDays(335))
+            if not history_start.empty and not history_end.empty:
+                i.Returns = float(history_end.iloc[0]["close"] - history_start.iloc[0]["close"])
+                self.filtered_fine.append(i)
+
+        size = int(len(fine)*.3)
+        self.filtered_fine = sorted(self.filtered_fine, key = lambda x: x.MarketCap, reverse=True)
+        self.filtered_fine = self.filtered_fine[:size]
+        self.filtered_fine = sorted(self.filtered_fine, key = lambda x: x.Returns, reverse=True)
+        symbols = [i.Symbol for i in self.filtered_fine]
+        self.filtered_fine = symbols
+        return symbols
+    else:
+        return []
+
+
+

+ Every month, stocks are grouped into ten portfolios with the equal number of stocks in each portfolio according to their performance in January one year ago. + Investors go long in stocks from the winner decile and shorts stocks from loser decile. The portfolio is equally weighted and rebalanced every month. +

+ +

+
+
+def OnData(self, data):
+       if not (self.monthly_rebalance): return
+       if not (self.filtered_fine): return
+       self.monthly_rebalance = False
+
+       portfolio_size = int(len(self.filtered_fine)/10)
+       short_stocks = self.filtered_fine[-portfolio_size:]
+       long_stocks = self.filtered_fine[:portfolio_size]
+       stocks_invested = [x.Key for x in self.Portfolio]
+       for i in stocks_invested:
+           #liquidate the stocks not in the filtered balance sheet accrual list
+           if i not in self.filtered_fine:
+               self.Liquidate(i)
+           #long the stocks in the list
+           elif i in long_stocks:
+               self.SetHoldings(i, 1/(portfolio_size*2))
+           #short the stocks in the list
+           elif i in short_stocks:
+               self.SetHoldings(i,-1/(portfolio_size*2))
+
+
diff --git a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html new file mode 100644 index 0000000..e7aa2b2 --- /dev/null +++ b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/04 Source.html b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/04 Source.html new file mode 100644 index 0000000..53aad28 --- /dev/null +++ b/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/13 Asset Class Momentum/01 Introduction.html b/04 Strategy Library/13 Asset Class Momentum/01 Introduction.html new file mode 100644 index 0000000..15ad281 --- /dev/null +++ b/04 Strategy Library/13 Asset Class Momentum/01 Introduction.html @@ -0,0 +1,4 @@ +

+This trend following algorithm finds its entry points using the momentum effect. The momentum anomaly says that what was strongly going up in the past will probably continue to go up in the near future.  +The calculation performed uses the rate of change in price movements for a particular asset. +

diff --git a/04 Strategy Library/13 Asset Class Momentum/02 Method.html b/04 Strategy Library/13 Asset Class Momentum/02 Method.html new file mode 100644 index 0000000..0869d5c --- /dev/null +++ b/04 Strategy Library/13 Asset Class Momentum/02 Method.html @@ -0,0 +1,3 @@ +

+ The portfolio of this algorithm contains 5 ETFs in different asset classes. LEAN has the momentum indicator MOM(symbol, period). The period is 12 months. After obtaining the most recent momentum value, we pick 3 ETFs with the strongest 12-month momentum into the portfolio and weight them equally. Hold for 1 month and then rebalance the portfolio with new momentum. Unlike asset class trend following strategy which combines asset classes into one portfolio, this rotational momentum system compares the performance of asset classes and picks only the best-performing assets from investment universe into investor's portfolio. The portfolio is rebalanced every month and portfolio's holdings are rotated so that only the best-performing assets are held. +

diff --git a/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html b/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html new file mode 100644 index 0000000..d001aad --- /dev/null +++ b/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/13 Asset Class Momentum/04 Source.html b/04 Strategy Library/13 Asset Class Momentum/04 Source.html new file mode 100644 index 0000000..ef94c60 --- /dev/null +++ b/04 Strategy Library/13 Asset Class Momentum/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/136 Residual Momentum/01 Introduction.html b/04 Strategy Library/136 Residual Momentum/01 Introduction.html new file mode 100644 index 0000000..57d67e1 --- /dev/null +++ b/04 Strategy Library/136 Residual Momentum/01 Introduction.html @@ -0,0 +1,6 @@ +

+ Residual momentum is the phenomenon that stocks with greater monthly residual returns (normalized by the volatility of the + residual returns) tend to outperform those with less. Research has shown the strategy experiences less exposure to the dynamic + Fama-French factors, produces greater sharpe ratios, and is more robust out-of-sample than a total return momentum strategy. + This strategy is claimed to be more stable throughout the business cycle than a total return momentum strategy. It tends to underperform during trending regimes and outperform during reverting regimes. Additionally, this strategy is less concentrated is small-cap stocks than a total return strategy can sometimes be, leading to less trading costs and reducing the effect of tax-loss selling. +

diff --git a/04 Strategy Library/136 Residual Momentum/02 Method.html b/04 Strategy Library/136 Residual Momentum/02 Method.html new file mode 100644 index 0000000..7ed4ada --- /dev/null +++ b/04 Strategy Library/136 Residual Momentum/02 Method.html @@ -0,0 +1,31 @@ +

Importing Custom Data

+

+ The first step of algorithm is to load 3 years of trailing values of the Fama-French factors. We call the AddData method and provide the Fama-French data source URL from our Tutorials repo. We save the loaded data into a DataFrame in the alpha model. +

+ +

Universe Selection

+

+ In coarse universe selection, we return the first 400 symbols that have fundamental data. In fine universe selection, we rank the stocks by market cap and return the symbols that are in the top 10%. We only create ResidualMomentum objects for stocks added to the universe that have atleast 3 years of historical prices. +

+ +

Calculate Residual Momentum Score

+

+ During construction of ResidualMomentum objects, we manually warmup the trailing 3 years of monthly returns for the security. We also set up a monthly consolidator to update the trailing returns each month and to recalculate the score. The score is calculated by fitting a linear regression model to the trailing 36 months of data, using the Fama-French factors as independent variables and the monthly returns of each stock as the dependent variable. +

+ +\[r_t = \alpha + \beta_1 * Mkt_t + \beta_2 * SMB_t + \beta_3 * HML_t + \epsilon_t \] + +

+ Where \(r_t\) is the monthly return of the stock in month \(t\); \(Mkt_t\), \(SMB_t\), and \(HML_t\) are the Fama-French factor values in month \(t\); and \(epsilon_t\) is the residual return in month \(t\). After fitting, we test the model on the trailing 12 months of data (excluding the most recent month) to calculate the score. We simply sum the residuals and divide by the standard deviation of the residuals to get the score. +

+ +\[score = \frac{\sum{} \epsilon}{\sigma_\epsilon} \] + +

+ If a stock's price is below $1 when calculating the score, it's score is set to None, excluding it from trading during the rebalance. +

+ +

Rebalancing

+

+ We rebalance the portfolio at the beginning of each month. After calculating a score for each security, we long the 10% of stocks with the greatest scores and short the 10% of stocks with the lowest scores, holding until the next rebalance. +

\ No newline at end of file diff --git a/04 Strategy Library/136 Residual Momentum/03 Algorithm.html b/04 Strategy Library/136 Residual Momentum/03 Algorithm.html new file mode 100644 index 0000000..a989254 --- /dev/null +++ b/04 Strategy Library/136 Residual Momentum/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/136 Residual Momentum/04 References.html b/04 Strategy Library/136 Residual Momentum/04 References.html new file mode 100644 index 0000000..bd3b043 --- /dev/null +++ b/04 Strategy Library/136 Residual Momentum/04 References.html @@ -0,0 +1,8 @@ +
    +
  1. + Blitz, David and Huij, Joop and Martens, Martin P.E., Residual Momentum (August 1, 2009) +
  2. +
  3. + Huij, Joop and Lansdorp, Simon, Residual Momentum and Reversal Strategies Revisited (March 8, 2017) +
  4. +
\ No newline at end of file diff --git a/04 Strategy Library/14 Sector Momentum/01 Introduction.html b/04 Strategy Library/14 Sector Momentum/01 Introduction.html new file mode 100644 index 0000000..8de7af5 --- /dev/null +++ b/04 Strategy Library/14 Sector Momentum/01 Introduction.html @@ -0,0 +1,3 @@ +

+Sector rotation is a popular strategy with which capital is actively reallocated from one sector to another based upon changing market conditions. +

diff --git a/04 Strategy Library/14 Sector Momentum/02 Method.html b/04 Strategy Library/14 Sector Momentum/02 Method.html new file mode 100644 index 0000000..74709a4 --- /dev/null +++ b/04 Strategy Library/14 Sector Momentum/02 Method.html @@ -0,0 +1,5 @@ +

+This algorithm is an adaptation of asset class momentum. Instead of rotating ETFs in different asset classes, +the sector momentum algorithm picks 10 sector ETFs and pick 3 ETFs with the strongest 12-month momentum into +the portfolio and weight them equally. The portfolio is rebalanced at the start of each month. +

diff --git a/04 Strategy Library/14 Sector Momentum/03 Algorithm.html b/04 Strategy Library/14 Sector Momentum/03 Algorithm.html new file mode 100644 index 0000000..80765bc --- /dev/null +++ b/04 Strategy Library/14 Sector Momentum/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/14 Sector Momentum/04 Source.html b/04 Strategy Library/14 Sector Momentum/04 Source.html new file mode 100644 index 0000000..7023847 --- /dev/null +++ b/04 Strategy Library/14 Sector Momentum/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/15 Short Term Reversal/01 Introduction.html b/04 Strategy Library/15 Short Term Reversal/01 Introduction.html new file mode 100644 index 0000000..ebad458 --- /dev/null +++ b/04 Strategy Library/15 Short Term Reversal/01 Introduction.html @@ -0,0 +1,3 @@ +

+The short-term reversal is the phenomenon that stocks with relatively low returns over the past month or week earn positive abnormal returns in the following month or week, and stocks with high returns earn negative abnormal returns. +

diff --git a/04 Strategy Library/15 Short Term Reversal/02 Method.html b/04 Strategy Library/15 Short Term Reversal/02 Method.html new file mode 100644 index 0000000..2393a78 --- /dev/null +++ b/04 Strategy Library/15 Short Term Reversal/02 Method.html @@ -0,0 +1,6 @@ +

+ To apply short-term reversal in stocks market, first, we use the universe selection API to pick the stocks with the price higher than 4 and rank those stocks by dollar volume and + choose the top 100 stocks as our asset pool. In fine universe selection, the prescreened stocks are sorted by market cap we choose the top 20. To detect the reversal effect, + the return is the most straightforward measure of the stock history performance. The RateOfReturn indicator is used to calculate the monthly return. We go long on the 10 stocks + with the lowest performance in the previous month and go short on the 10 stocks with the greatest performance from the previous month. +

diff --git a/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html b/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html new file mode 100644 index 0000000..1970b93 --- /dev/null +++ b/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/15 Short Term Reversal/04 Source.html b/04 Strategy Library/15 Short Term Reversal/04 Source.html new file mode 100644 index 0000000..df7d579 --- /dev/null +++ b/04 Strategy Library/15 Short Term Reversal/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/152 Momentum Effect in REITs/01 Introduction.html b/04 Strategy Library/152 Momentum Effect in REITs/01 Introduction.html new file mode 100644 index 0000000..4cf8481 --- /dev/null +++ b/04 Strategy Library/152 Momentum Effect in REITs/01 Introduction.html @@ -0,0 +1,3 @@ +

+ The momentum effect is a classic anomaly that says what was strongly going up in the past will probably continue to go up in the near future. The calculation performed uses the rate of change in price movements. We see this effect in REITs through studies where REITs with the highest annual past performance beat lower performing trusts. This strategy will take a long position in companies with the strongest momentum and rebalance quarterly. +

\ No newline at end of file diff --git a/04 Strategy Library/152 Momentum Effect in REITs/02 Method.html b/04 Strategy Library/152 Momentum Effect in REITs/02 Method.html new file mode 100644 index 0000000..4473eb4 --- /dev/null +++ b/04 Strategy Library/152 Momentum Effect in REITs/02 Method.html @@ -0,0 +1,58 @@ +

+ The first step is coarse and fine universe selection. During coarse selection, we create an investment universe of stocks that have prices greater than $1, contain fundamental data and do not have a very low trading volume for liquidity purposes. During the fine selection we take all available REITs by using the Morningstar field IsREIT. +

+

+ In the fine selection we also calculate each REIT's past 11-month return one-month lagged and rank them. This is used to determine the top tercile of portfolio. +

+
+
+ def CoarseSelectionFunction(self, coarse):
+        if self.quarterly_rebalance:
+            self.filtered_coarse = [x.Symbol for x in coarse if (float(x.Price) > 1)
+                                                            and (x.HasFundamentalData)
+                                                            and float(x.Volume) > 10000]
+            return self.filtered_coarse
+        else: 
+            return []      
+    
+def FineSelectionFunction(self, fine):
+    if self.quarterly_rebalance:
+        fine = [x for x in fine if (x.CompanyReference.IsREIT == 1)] 
+        
+        start = self.Time-timedelta(days = 365)
+        end = self.Time-timedelta(days = 30)
+        for x in fine:
+            hist = self.History([x.Symbol],start,end,Resolution.Daily)
+            if not hist.empty:
+                start_price = hist["close"].iloc[0]
+                end_price = hist["close"].iloc[-1]
+                x.momentum = (end_price-start_price)/start_price
+        
+        fine = [x for x in fine if hasattr(x, 'momentum')]
+        sorted_filter = sorted(fine, key=lambda x: x.momentum)
+        self.filtered_fine = [i.Symbol for i in sorted_filter]
+        return self.filtered_fine
+    else:
+        return []
+
+
+

+ In OnData(), we buy the stocks in the best performing tercile for three months and the portfolio is rebalanced every three months. +

+
+
+def OnData(self, data):
+        if not self.quarterly_rebalance: return 
+        if self.filtered_fine:
+            portfolio_size = int(len(self.filtered_fine)/3)
+            long_stocks = self.filtered_fine[-portfolio_size:]
+            stocks_invested = [x.Key for x in self.Portfolio]
+            for i in stocks_invested:
+                if i not in long_stocks:
+                    self.Liquidate(i) 
+                elif i in long_stocks:
+                    self.SetHoldings(i, 1/(portfolio_size))
+            self.quarterly_rebalance = False
+            self.filtered_fine = False
+
+
\ No newline at end of file diff --git a/04 Strategy Library/152 Momentum Effect in REITs/03 Algorithm.html b/04 Strategy Library/152 Momentum Effect in REITs/03 Algorithm.html new file mode 100644 index 0000000..ad991fb --- /dev/null +++ b/04 Strategy Library/152 Momentum Effect in REITs/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/152 Momentum Effect in REITs/04 Source.html b/04 Strategy Library/152 Momentum Effect in REITs/04 Source.html new file mode 100644 index 0000000..50d2daa --- /dev/null +++ b/04 Strategy Library/152 Momentum Effect in REITs/04 Source.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/01 Introduction.html b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..bccce7f --- /dev/null +++ b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Momentum is a well-known strategy that buys stocks with the best return over the past three to twelve months and sells stocks with the worst performances over the same time horizon. + The reversal strategy buys the stocks with relatively low returns and sells stocks with high returns. In this algorithm, we will develop a long-short strategy combining the momentum/reversal effect with the realized volatility. +

diff --git a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/02 Method.html b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/02 Method.html new file mode 100644 index 0000000..94a7056 --- /dev/null +++ b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/02 Method.html @@ -0,0 +1,134 @@ +

The Universe Initial Filter

+

+ The investment universe consists of NYSE, AMEX and NASDAQ stocks with prices higher than $5 per share. + In FineSelectionFunction, we divide the universe into two equal halves by size of the company. + Here size is defined as the share price times the number of shares outstanding. +

+
+
+def CoarseSelectionFunction(self, coarse):
+    # update the price of stocks in universe everyday
+    for i in coarse:
+        if i.Symbol not in self.dataDict:
+            self.dataDict[i.Symbol] = SymbolData(i.Symbol, self.lookback)
+        self.dataDict[i.Symbol].Update(i.AdjustedPrice)
+
+    if self.monthly_rebalance:
+        # drop stocks which have no fundamental data or have too low prices
+        filteredCoarse = [x.Symbol for x in coarse if (x.HasFundamentalData) and (float(x.Price) > 5)]
+        return filteredCoarse
+    else:
+        return []
+
+def FineSelectionFunction(self, fine):
+
+    if self.monthly_rebalance:
+        sortedFine = sorted(fine, key = lambda x: x.EarningReports.BasicAverageShares.Value * self.dataDict[x.Symbol].Price, reverse=True)
+        # select stocks with large size
+        topFine = sortedFine[:int(0.5*len(sortedFine))]
+        self.filteredFine = [x.Symbol for x in topFine]
+        return self.filteredFine
+    else:
+        return []
+
+
+

The Realized Return and Volatility

+

+ At the beginning of each month, realized returns and realized (annualized) volatilities are calculated for each stock. + The realized volatility refers to the historical volatility. The formula of the realized volatility \(\sigma\) is +

+\[R_{avg}=\frac{\sum_{i=1}^n R_i}{n}\] +\[\sigma=\sqrt{\frac{\sum_{i=1}^n(R_i-R_{avg})^2}{n-1}}\] +

+ To annualize the volatility, we multiply the 1-day volatility by the square root of the number of trading days in a year – in our case square root of 252. +

+

+ A 6-month warm-up period is required to initialize the history price for stocks in the universe. We create the class + SymbolData to save all required variables associated with a single stock. + One week (5 trading days) prior to the beginning of each month is skipped to avoid biases due to microstructures. +

+
+
+  class SymbolData:
+    '''Contains data specific to a symbol required by this model'''
+
+    def __init__(self, symbol, lookback):
+        self.symbol = symbol
+        # self.History = RollingWindow[Decimal](lookback)
+        self.History = deque(maxlen=lookback)
+        self.Price = None
+
+    def Update(self, value):
+        # update yesterday's close price
+        self.Price = value
+        # update the history price series
+        self.History.append(float(value))
+        # self.History.Add(value)
+
+    def IsReady(self):
+        return len(self.History) == self.History.maxlen
+
+    def Volatility(self):
+        # one week (5 trading days) prior to the beginning of each month is skipped
+        prices = np.array(self.History)[:-5]
+        returns = (prices[1:]-prices[:-1])/prices[:-1]
+        # calculate the annualized realized volatility
+        return np.std(returns)*np.sqrt(252)
+
+    def Return(self):
+        # one week (5 trading days) prior to the beginning of each month is skipped
+        prices = np.array(self.History)[:-5]
+        # calculate the annualized realized return
+        return (prices[-1]-prices[0])/prices[0]
+
+
+ +

+ After the warm-up period, the historical price series is ready. Stocks are sorted into quintiles based on their realized volatility. + Stocks in the top 20% highest volatility are further sorted into quintiles by their six-month realized returns. + The algorithm goes long on stocks from the highest performing quintile from the highest volatility group and short on stocks from the lowest performing quintile from the highest volatility group. +

+
+
+def OnData(self, data):
+    if self.monthly_rebalance and self.filteredFine:
+        filtered_data = {symbol: symbolData for (symbol, symbolData) in self.dataDict.items() if symbol in self.filteredFine and symbolData.IsReady()}
+        self.filteredFine = None
+        self.monthly_rebalance = False
+        if len(filtered_data) < 100: return
+        # sort the universe by volatility and select stocks in the top high volatility quintile
+        sortedByVol = sorted(filtered_data.items(), key=lambda x: x[1].Volatility(), reverse = True)[:int(0.2*len(filtered_data))]
+        sortedByVol = dict(sortedByVol)
+        # sort the stocks in top-quintile by realized return
+        sortedByReturn = sorted(sortedByVol, key = lambda x: sortedByVol[x].Return(), reverse = True)
+        long = sortedByReturn[:int(0.2*len(sortedByReturn))]
+        short = sortedByReturn[-int(0.2*len(sortedByReturn)):]
+
+
+

Portfolio Rebalance and Trade

+

+ The methodology of Jegadeesh and Titamn (1993) is used to rebalance the portfolio. + Specifically, at the beginning of each month, stocks are sorted into quintiles based on their realized returns and equally weighted portfolios are formed to be held for the next six months. + This sorting and portfolio formation procedure is performed each month. In any given month t, the strategy holds 6 portfolios that are selected in the current month as well as the previous 5 months. + Therefore 1/6 of the portfolio is rebalanced every month. We save those 6 portfolios in a deque list self.portfolios and the list is updated every month. The portfolio of the current month is added while the portfolio selected from six months ago is removed from the list. +

+
+
+def Initialize(self):
+    self.portfolios = deque(maxlen=6)
+def OnData(self, data):
+    self.portfolios.append(short+long)
+    # 1/6 of the portfolio is rebalanced every month
+    if len(self.portfolios) == self.portfolios.maxlen:
+        for i in list(self.portfolios)[0]:
+            self.Liquidate(i)
+    # stocks are equally weighted and held for 6 months
+    short_weight = 1/len(short)
+    for i in short:
+        self.SetHoldings(i, -1/6*short_weight)
+
+    long_weight = 1/len(long)
+    for i in long:
+        self.SetHoldings(i, 1/6*long_weight)
+  
+
diff --git a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..41faf63 --- /dev/null +++ b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/04 Source.html b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/04 Source.html new file mode 100644 index 0000000..54db2a0 --- /dev/null +++ b/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/16 Overnight Anomaly/01 Introduction.html b/04 Strategy Library/16 Overnight Anomaly/01 Introduction.html new file mode 100644 index 0000000..d188ba7 --- /dev/null +++ b/04 Strategy Library/16 Overnight Anomaly/01 Introduction.html @@ -0,0 +1,3 @@ +

+Instead of collecting profit from intraday trading, this algorithm tries to capture the overnight returns of the index. +

diff --git a/04 Strategy Library/16 Overnight Anomaly/02 Method.html b/04 Strategy Library/16 Overnight Anomaly/02 Method.html new file mode 100644 index 0000000..6a5e21a --- /dev/null +++ b/04 Strategy Library/16 Overnight Anomaly/02 Method.html @@ -0,0 +1,7 @@ +

+ The strategy buys SPY ETF at its closing price and sells it at the opening each day. + The strategy makes a lot of trades, therefore, the whole strategy is very sensitive + to slippage costs and fees. Those returns are canceled out once transaction costs + are taken into account. With the InteractiveBrokers transaction model, fees for 20 + years backtest is almost 25% of the initial cash. +

diff --git a/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html b/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html new file mode 100644 index 0000000..cb7b3a9 --- /dev/null +++ b/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/16 Overnight Anomaly/04 Source.html b/04 Strategy Library/16 Overnight Anomaly/04 Source.html new file mode 100644 index 0000000..d9a91da --- /dev/null +++ b/04 Strategy Library/16 Overnight Anomaly/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 Introduction.html b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 Introduction.html new file mode 100644 index 0000000..d0d909e --- /dev/null +++ b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 Introduction.html @@ -0,0 +1,6 @@ +

+ The main reason for the momentum anomaly is the behavioral biases of the investor like underreaction and confirmation bias. + Momentum strategy usually uses portfolios filled by thousands of stocks to compute the momentum factor return. + This is not possible for small retail investors with small portfolios. They are constrained compared to big hedge funds and cannot diversify so well. + In this tutorial, we'll construct a small portfolio consisting of up to 50 stocks to check the effect of momentum. +

diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..e81a4a4 --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +

+ 动量异常的主要原因是投资者的行为偏差,例如反应不足和确认偏差。动量策略通常会使用由成千上万只股票组成的投资组合来计算动量要素收益。这对于持有小型投资组合的小型散户投资者来说是不可能的。与大型对冲基金相比,它们受到限制,无法进行多样化投资。在本教程中,我们将构建一个由50支股票组成的小型投资组合,以检查动量所产生影响。 +

diff --git a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 Method.html b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 Method.html new file mode 100644 index 0000000..e614895 --- /dev/null +++ b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 Method.html @@ -0,0 +1,66 @@ +

+ The investment universe consists of all US listed companies. Stocks which have no fundamental data are ruled out from the universe. +

+
+
+def CoarseSelectionFunction(self, coarse):
+    if self.yearly_rebalance:
+        # drop stocks which have no fundamental data
+        self.filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)]
+        return self.filtered_coarse
+    else:
+        return []
+
+
+

+ In FineSelectionFunction, stocks with the lowest market capitalization (25% of the universe) are excluded due to low liquidity. + The momentum is defined as the stock market return over the previous 12 months. Momentum profits are calculated by ranking companies on the basis of yearly return. + The ranking period is one year. +

+
+
+  def FineSelectionFunction(self, fine):
+      if self.yearly_rebalance:
+          # Calculate the yearly return and market cap
+          for i in fine:
+              i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+          top_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)[:int(len(fine)*0.75)]
+          has_return = []
+          for i in top_market_cap:
+              history = self.History([i.Symbol], timedelta(days=365), Resolution.Daily)
+              if not history.empty:
+                  close = history.loc[str(i.Symbol)]['close']
+                  i.returns = (close[0]-close[-1])/close[-1]
+                  has_return.append(i)
+          sorted_by_return = sorted(has_return, key = lambda x: x.returns)
+          self.long = [i.Symbol for i in sorted_by_return[-10:]]
+          self.short = [i.Symbol for i in sorted_by_return[:10]]
+
+          return self.long+self.short
+      else:
+          return []
+
+
+

+ The investor goes long in the ten stocks with the highest performance and goes short in the ten stocks with the lowest performance. + The portfolio is equally weighted and rebalanced yearly. +

+
+
+  def OnData(self, data):
+      if not self.yearly_rebalance: return
+      if self.long and self.short:
+          stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
+          # liquidate stocks not in the trading list
+          for i in stocks_invested:
+              if i not in self.long+self.short:
+                  self.Liquidate(i)
+          for i in self.short:
+              self.SetHoldings(i, -0.5/len(self.short))
+          for i in self.long:
+              self.SetHoldings(i, 0.5/len(self.long))
+          self.long = None
+          self.short = None
+          self.yearly_rebalance = False
+
+
diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..61298fc --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,63 @@ +

+ 投资集合包括所有美国上市公司。没有基本数据的股票被排除在集合之外。 +

+
+
+def CoarseSelectionFunction(self, coarse):
+    if self.yearly_rebalance:
+        # 放弃没有基本数据的股票
+        self.filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)]
+        return self.filtered_coarse
+    else:
+        return []
+
+
+

+ 在FineSelectionFunction中,由于流动性较低,市值最低的股票(占集合的25%)被排除在外。动量被定义为过去12个月的股市收益。动量利润是根据排名公司的年度收益进行计算的。排名周期为一年。 +

+
+
+  def FineSelectionFunction(self, fine):
+      if self.yearly_rebalance:
+          # 计算年收益和市值
+          for i in fine:
+              i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+          top_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)[:int(len(fine)*0.75)]
+          has_return = []
+          for i in top_market_cap:
+              history = self.History([i.Symbol], timedelta(days=365), Resolution.Daily)
+              if not history.empty:
+                  close = history.loc[str(i.Symbol)]['close']
+                  i.returns = (close[0]-close[-1])/close[-1]
+                  has_return.append(i)
+          sorted_by_return = sorted(has_return, key = lambda x: x.returns)
+          self.long = [i.Symbol for i in sorted_by_return[-10:]]
+          self.short = [i.Symbol for i in sorted_by_return[:10]]
+
+          return self.long+self.short
+      else:
+          return []
+
+
+

+ 投资者做多表现最好的10支股票,做空表现最差的10支股票。投资组合每年都进行平均加权和重新平衡。 +

+
+
+  def OnData(self, data):
+      if not self.yearly_rebalance: return
+      if self.long and self.short:
+          stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
+          # 平仓未进入交易清单的股票
+          for i in stocks_invested:
+              if i not in self.long+self.short:
+                  self.Liquidate(i)
+          for i in self.short:
+              self.SetHoldings(i, -0.5/len(self.short))
+          for i in self.long:
+              self.SetHoldings(i, 0.5/len(self.long))
+          self.long = None
+          self.short = None
+          self.yearly_rebalance = False
+
+
diff --git a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html new file mode 100644 index 0000000..219c782 --- /dev/null +++ b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..219c782 --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 Source.html b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 Source.html new file mode 100644 index 0000000..0cfa5d6 --- /dev/null +++ b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 Source.html @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..0cfa5d6 --- /dev/null +++ "b/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/17 Forex Momentum/01 Introduction.html b/04 Strategy Library/17 Forex Momentum/01 Introduction.html new file mode 100644 index 0000000..418c3bf --- /dev/null +++ b/04 Strategy Library/17 Forex Momentum/01 Introduction.html @@ -0,0 +1,3 @@ +

+ Momentum is a trend following strategy, where the strategy buys the assets which have performed well in the past and sells the assets which have performed bad. +

diff --git a/04 Strategy Library/17 Forex Momentum/02 Method.html b/04 Strategy Library/17 Forex Momentum/02 Method.html new file mode 100644 index 0000000..6347296 --- /dev/null +++ b/04 Strategy Library/17 Forex Momentum/02 Method.html @@ -0,0 +1,5 @@ +

+ This algorithm applies momentum to the forex market. Our universe consists of 15 forex pairs + and covers period from 2006 to 2018. The algorithm goes long 3 currencies with strongest 12-month + momentum against USD and goes short 3 currencies with lowest 12-month momentum against USD. +

diff --git a/04 Strategy Library/17 Forex Momentum/03 Algorithm.html b/04 Strategy Library/17 Forex Momentum/03 Algorithm.html new file mode 100644 index 0000000..f8b0c4d --- /dev/null +++ b/04 Strategy Library/17 Forex Momentum/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/17 Forex Momentum/04 Source.html b/04 Strategy Library/17 Forex Momentum/04 Source.html new file mode 100644 index 0000000..1b4d99a --- /dev/null +++ b/04 Strategy Library/17 Forex Momentum/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/18 Volatility Effect in Stocks/01 Introduction.html b/04 Strategy Library/18 Volatility Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..20edd72 --- /dev/null +++ b/04 Strategy Library/18 Volatility Effect in Stocks/01 Introduction.html @@ -0,0 +1,5 @@ +

+ The low volatility effect in equities refers to that stocks which previously + exhibited lower volatility will earn higher risk-adjusted returns than those with higher volatility. + This algorithm extends the study of the low volatility effect to U.S stocks with higher market capital. +

diff --git a/04 Strategy Library/18 Volatility Effect in Stocks/02 Method.html b/04 Strategy Library/18 Volatility Effect in Stocks/02 Method.html new file mode 100644 index 0000000..8f3cdc8 --- /dev/null +++ b/04 Strategy Library/18 Volatility Effect in Stocks/02 Method.html @@ -0,0 +1,17 @@ +

Universe Selection

+

+ To construct the investment universe which consists of US large cap stocks, first in coarse universe selection, + we exclude stocks without fundamental data and the price is below 5. A universe of 100 stocks is selected based on the dollar volume. In fine universe selection, we pick 50 stocks from the coarse universe with the highest market cap. +

+

Calculate the Volatility

+

+ We create SymbolData class and use RollingWindow to store the price data for symbols returned by fine universe. + The lookback period is 252 trading days. First, we request history data to initialize the RollingWindow for the added symbols and update it's value with the closing price every day in OnData(). +

+

+ The standard deviation is the typical statistic used to measure volatility. It is defined as the square root of the average variance of the data from its mean. We use the closing price series in RollingWindow to calculate the volatility. +

+

Trading stocks

+

+ The trading logic is we go long 5 stocks with the lowest volatility and liquidate stocks in the portfolio which does not in the lowest volatility list. The portfolio is rebalanced at the first trading day each month. +

diff --git a/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html b/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..97890a9 --- /dev/null +++ b/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/18 Volatility Effect in Stocks/04 Source.html b/04 Strategy Library/18 Volatility Effect in Stocks/04 Source.html new file mode 100644 index 0000000..e9be339 --- /dev/null +++ b/04 Strategy Library/18 Volatility Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/19 Pairs Trading with Stocks/01 Introduction.html b/04 Strategy Library/19 Pairs Trading with Stocks/01 Introduction.html new file mode 100644 index 0000000..d22f310 --- /dev/null +++ b/04 Strategy Library/19 Pairs Trading with Stocks/01 Introduction.html @@ -0,0 +1,6 @@ +

+ The pairs trading algorithm aims to find two stocks which have prices that moved historically together. + If price series diverges, long and short positions are opened in the opposite direction. With the assumption + of mean reversion, the algorithm expects to make profits from the abnormal fluctuation of prices. + The crucial part of pairs trading is determining which stocks are correlated and how to define a price divergence. +

diff --git a/04 Strategy Library/19 Pairs Trading with Stocks/02 Method.html b/04 Strategy Library/19 Pairs Trading with Stocks/02 Method.html new file mode 100644 index 0000000..0a9dd73 --- /dev/null +++ b/04 Strategy Library/19 Pairs Trading with Stocks/02 Method.html @@ -0,0 +1,14 @@ +

Pairs Formation

+

+ The first step of this algorithm is to select stock pairs from a universe of stocks. We use the history request to get the history closing price for the last one year. This is called the formation period. + The matching partner for each stock is found by looking for the security that minimizes the sum of squared deviations between two normalized price series. Assume there are two stocks A and B with the price series X and Y. For price normalization, the starting price during formation period is set to $1. + The formula of distance measure is + \[\sum_{i=1}^n{(\frac{x_i}{x_1}-\frac{y_i}{y_1}})^2\] + Top 4 pairs with the smallest historical distance measure are then traded. The trading pairs are selected + every half year. We use the schedule event method to fire the rebalance function. +

+

Trading Pairs

+

+ As prices in a pair of stocks were closely cointegrated in past, there is high probability that those two securities share common sources of fundamental return correlations. A temporary shock could move one stock out of the common price band which presents statistical arbitrage opportunity. Given the trading pairs, the trading period is the next six months. We calculate the price spread series of the last one year. When pair prices have diverged by two standard deviations, + which means the spread is 2 times standard deviation away from its long-term mean, the algorithm will go short the stock which price is diverging up and go long the stock which price is diverging down. The position is closed when prices revert back. +

diff --git a/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html b/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html new file mode 100644 index 0000000..4b088a3 --- /dev/null +++ b/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/19 Pairs Trading with Stocks/04 Source.html b/04 Strategy Library/19 Pairs Trading with Stocks/04 Source.html new file mode 100644 index 0000000..e8be166 --- /dev/null +++ b/04 Strategy Library/19 Pairs Trading with Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/01 Introduction.html b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/01 Introduction.html new file mode 100644 index 0000000..f975737 --- /dev/null +++ b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/01 Introduction.html @@ -0,0 +1,8 @@ +

+ The Chicago Board Options Exchange (CBOE) introduced the Volatility Index (VIX) in 1993 to provide a measure of the implied volatility of 30-day, at the money S&P 100 index options. + Volatility has become a widely accepted asset class since the introduction of the VIX futures contracts in 2004. VIX futures are often used for hedging purpose because of its negative correlation with the equity market return. When we talk about the term structure of futures, we often refer to the forward curve. + The VIX forward curve consists of VIX futures prices at various delivery times in the future. + Academic research states that volatility follows a mean reverting process. When the VIX futures curve is upward sloped (in contango), + the VIX is expected to rise because it is low relative to long-term average levels and vice versa for the downward sloped VIX future curve. + In this study, we will create a strategy with the term structure effect of VIX futures and hedge the term structure risk with the S&P500 futures. +

diff --git a/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/02 Method.html b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/02 Method.html new file mode 100644 index 0000000..3463891 --- /dev/null +++ b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/02 Method.html @@ -0,0 +1,182 @@ +

+ The trading strategy uses VIX futures as a trading vehicle and S&P E-mini for hedging purposes. The spot VIX price data and + the continuous front contract price of VIX and E-mini S&P500 futures in the daily resolution are from Quandl. +

+
+
+def Initialize(self):
+    self.SetStartDate(2011, 1, 1)   # Set Start Date
+    self.SetEndDate(2018, 9, 1)     # Set End Date
+    self.SetCash(10000000)          # Set Strategy Cash
+    self.vix = self.AddData(QuandlVix, "CBOE/VIX", Resolution.Daily).Symbol              # Add Quandl VIX price (daily)
+    self.vx1 = self.AddData(QuandlFutures, "CHRIS/CBOE_VX1", Resolution.Daily).Symbol    # Add Quandl VIX front month futures data (daily)
+    self.es1 = self.AddData(QuandlFutures, "CHRIS/CME_ES1", Resolution.Daily).Symbol     # Add Quandl E-mini S&P500 front month futures data (daily)
+    # Add VIX futures contract data
+    self.AddFuture(Futures.Indices.VIX).SetFilter(timedelta(0), timedelta(days=180))
+    # Add E-mini S&P500 futures contract data
+    self.AddFuture(Futures.Indices.SP500EMini).SetFilter(timedelta(0), timedelta(days=180))
+
+
+

+ Futures basis is defined as the difference between the underlying product cash price and futures contract price at a given time. +

+\[Basis_t=S_t-F_t\] +

+ Where \(S_t\) is the spot VIX price, \(F_t\) is the VIX futures price. The basis is in contango means the futures price is higher than the spot price. + The opposite of Contango is Backwardation. It refers to the market condition in which the futures price is less than the spot price. +

+\[Contango=S_tF_t\] +

+ We select the nearest VIX and E-mini futures with at least ten trading days to maturity in the futures chains. +

+
+
+def OnData(self, data):
+    # select the nearest VIX and E-mini S&P500 futures with at least 10 trading days to maturity
+    # if the front contract expires, roll forward to the next nearest contract
+    for chain in data.FutureChains:
+        if chain.Key.Value == Futures.Indices.VIX:
+            if self.front_VX is None or ((self.front_VX.Expiry-self.Time).days <= 1):
+                contracts = list(filter(lambda x: x.Expiry >= self.Time + timedelta(days = 10), chain.Value))
+                self.front_VX = sorted(contracts, key = lambda x: x.Expiry)[0]
+        if chain.Key.Value == Futures.Indices.SP500EMini:
+            if self.front_ES is None or ((self.front_ES.Expiry-self.Time).days <= 1):
+                contracts = list(filter(lambda x: x.Expiry >= self.Time + timedelta(days = 10), chain.Value))
+                self.front_ES = sorted(contracts, key = lambda x: x.Expiry)[0]
+
+
+

+ While this trading strategy takes advantage of the roll by selling VIX futures at a premium to the VIX and by buying VIX futures at a discount to the VIX, + it is exposed to the potentially substantial risks associated with adverse moves in the VIX futures curve. However, as the tendency of VIX futures prices to move inversely to equity returns, + much of this risk can be hedged by open the E-mini S&P 500 futures position in the same direction. +

+

+ The number of mini-S&P futures contracts to buy or sell per VIX futures contract is based on the hedge ratio estimates. + The hedge ratios are constructed from regressions of VIX futures price changes on a constant and + on contemporaneous percentage changes of the front mini-S&P 500 futures contract both alone and + multiplied by the number of business days that the VIX futures contract is from the settlement, as shown below. +

+\[\Delta P^{VX}_t=\beta_0+\beta_1* Return^{ES}_t+\beta_2*(Return^{ES}_t*TimeToSettlement^{VX}_t)+\mu_t\] +

+ After we get the parameters \(beta_0\), \(beta_1\) and \(beta_2\), the formula for the hedge ratio is +

+\[HR_t=\frac{\beta_1*1000+\beta_2*TimeToSettlement_{t-1}*1000}{0.01*P^{ES}_{t-1}*50}\] +
+
+  def CalculateHedgeRatio(self):
+      price_VX = np.array(self.price_VX)
+      price_ES = np.array(self.price_ES)
+      delta_VX = np.diff(price_VX)
+      res_ES = np.diff(price_ES)/price_ES[:-1]*100
+      tts = np.array(self.days_to_maturity)[1:]
+      df = pd.DataFrame({"delta_VX":delta_VX, "SPRET":res_ES, "product":res_ES*tts}).dropna()
+      # remove rows with zero value
+      df = df[(df != 0).all(1)]
+      y = df['delta_VX'].astype(float)
+      X = df[['SPRET', "product"]].astype(float)
+      X = sm.add_constant(X)
+      model = sm.OLS(y, X).fit()
+      beta_1 = model.params[1]
+      beta_2 = model.params[2]
+      hedge_ratio = abs((1000*beta_1 + beta_2*((self.front_VX.Expiry-self.Time).days)*1000)/(0.01*50*float(self.Securities[self.es1].Price)))
+      self.Plot("Trade", "Hedge Ratio", hedge_ratio)
+      return hedge_ratio
+
+
+

+ Our daily futures price data is from the continuous front contract. To measure the time to settlement, we import the custom data of the VIX futures expiration dates from 2011 to 2018. + We populate the date index with the backward fill method to make it easy to calculate the time to settlement. +

+
+
+# import the futures expiry calendar
+url = "https://www.dropbox.com/s/5k4rbuzfsfn3w0h/expiry.csv?dl=1"
+data = self.Download(url).split('\r\n')
+expiry = [x.split(',')[1] for x in data][1:]
+date = [x.split(',')[0] for x in data][1:]
+df_date = pd.DataFrame(expiry, index = date, columns = ['expiry'])
+df_date.index = pd.to_datetime(df_date.index)
+df_date['expiry'] = pd.to_datetime(df_date['expiry'])
+idx = pd.date_range('01-01-2011', '04-19-2019')
+# populate the date index and backward fill the dataframe    
+return df_date.reindex(idx, method='bfill')
+
+
+

+ To perform the regression, we save the history price in deque list and update the list every day. +

+
+
+# the rolling window to save the front month VX future price
+self.price_VX = deque(maxlen=252)
+# the rolling window to save the front month ES future price
+self.price_ES = deque(maxlen=252)
+# the rolling window to save the time-to-maturity of the contract
+self.days_to_maturity = deque(maxlen=252)
+# initialize the deque list
+for index, row in df.iterrows():
+    self.price_VX.append(row[self.vx1])
+    self.price_ES.append(row[self.es1])
+    self.days_to_maturity.append((row['expiry']-index).days)
+
+
+ +

+ The daily roll is defined as the difference between the front VIX futures price and the VIX, divided by the number of business days until the VIX futures contract settles. + Short VIX futures positions are entered when the VIX futures basis is in contango and the daily roll exceeds 0.10 and + long VIX futures positions are entered when the VIX futures basis is in backwardation and the daily roll is less than -0.10. +

+
+
+# calculate the daily roll
+daily_roll = (self.Securities[self.vx1].Price - self.Securities[self.vix].Price)/(self.front_VX.Expiry-self.Time).days
+self.Plot("Trade", "VIX", self.Securities[self.vix].Price)
+self.Plot("Trade", "VIX Futures", self.Securities[self.vx1].Price)
+self.Plot("Trade", "Daily Roll", daily_roll)
+if not self.Portfolio[self.front_VX.Symbol].Invested:
+    # Short if the contract is in contango with adaily roll greater than 0.10
+    if daily_roll > 0.1:
+        hedge_ratio = self.CalculateHedgeRatio()
+        self.Plot("Trade", "Sell", self.Securities[self.vx1].Price)
+        self.SetHoldings(self.front_VX.Symbol, -0.5)
+        self.SetHoldings(self.front_ES.Symbol, -0.5*hedge_ratio)
+    # Long if the contract is in backwardation with adaily roll less than -0.10
+    elif daily_roll < -0.1:
+        hedge_ratio = self.CalculateHedgeRatio()
+        self.Plot("Trade", "Buy", self.Securities[self.vx1].Price)
+        self.SetHoldings(self.front_VX.Symbol, 0.5)
+        self.SetHoldings(self.front_ES.Symbol, 0.5*hedge_ratio)
+
+
+

+ Trades are exited when the motivating conditions no longer exist. + The exit condition is defined as the daily roll being less than 0.05 for short trades and higher than -0.05 VIX futures points for long trades. + If these exit conditions are not triggered, trades are exited two days before the contract expires. +

+
+
+# exit if the daily roll being less than 0.05 if holding short positions
+if self.Portfolio[self.front_VX.Symbol].IsShort and daily_roll < 0.05:
+    self.Liquidate()
+    self.front_VX = None
+    self.front_ES = None
+    return
+
+# exit if the daily roll being greater than -0.05 if holding long positions
+if self.Portfolio[self.front_VX.Symbol].IsLong and daily_roll > -0.05:
+    self.Liquidate()
+    self.front_VX = None
+    self.front_ES = None
+    return
+
+if self.front_VX and self.front_ES:
+# if these exit conditions are not triggered, trades are exited two days before it expires
+if self.Portfolio[self.front_VX.Symbol].Invested and self.Portfolio[self.front_ES.Symbol].Invested:
+  if (self.front_VX.Expiry-self.Time).days <=2 or (self.front_ES.Expiry-self.Time).days <=2:
+      self.Liquidate()
+      self.front_VX = None
+      self.front_ES = None
+      return
+   
+
diff --git a/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/03 Algorithm.html b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/03 Algorithm.html new file mode 100644 index 0000000..41e0455 --- /dev/null +++ b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/04 Source.html b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/04 Source.html new file mode 100644 index 0000000..fc12d36 --- /dev/null +++ b/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/199 ROA Effect within Stocks/01 Introduction.html b/04 Strategy Library/199 ROA Effect within Stocks/01 Introduction.html new file mode 100644 index 0000000..1848e9e --- /dev/null +++ b/04 Strategy Library/199 ROA Effect within Stocks/01 Introduction.html @@ -0,0 +1,5 @@ +

+ Return on Equity(ROE) is defined as the ratio of net income over shareholders equity, + where shareholders’ equity is the difference between a company's total assets and total liabilities. Shareholders' equity is often referred to as the book value of the company. + ROE is a measure of how efficiently a company uses its assets to produce earnings. It can explain many anomalies related to earnings and profitability. This algorithm will build a long-short portfolio with ROE factor. +

diff --git a/04 Strategy Library/199 ROA Effect within Stocks/02 Method.html b/04 Strategy Library/199 ROA Effect within Stocks/02 Method.html new file mode 100644 index 0000000..774d359 --- /dev/null +++ b/04 Strategy Library/199 ROA Effect within Stocks/02 Method.html @@ -0,0 +1,74 @@ +

+ The investment universe contains all stocks on NYSE and AMEX and Nasdaq. + In CoarseSelectionFunction, we eliminated ETFs which does not have fundamental data. +

+
+
+def CoarseSelectionFunction(self, coarse):
+    if self.monthly_rebalance:
+        self.coarse = True
+        filteredCoarse = [x.Symbol for x in coarse if x.HasFundamentalData]
+        return filteredCoarse
+    else:
+        return []
+
+
+

+ In FineSelectionFunction, stocks with sales greater than 10 milion USD are selected. + Then we calculate the market cap for those stocks and sort them into two groups: Big size group with the higher market cap and small size group with the lower market cap. Each half is then divided into deciles based on Return on assets (ROA). +

+
+
+def FineSelectionFunction(self, fine):
+    if self.monthly_rebalance:
+        fine =[i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths != 0
+                              and i.EarningReports.BasicEPS.TwelveMonths != 0
+                              and i.ValuationRatios.PERatio != 0
+                              # sales is greater than 10 million
+                              and i.ValuationRatios.SalesPerShare*i.EarningReports.DilutedAverageShares.Value > 10000000
+                              and i.OperationRatios.ROA.Value != 0]
+        for i in fine:
+            i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+        # sort into 2 halfs based on market capitalization
+        sorted_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)
+        top = sorted_market_cap[:int(len(sorted_market_cap)*0.5)]
+        bottom = sorted_market_cap[-int(len(sorted_market_cap)*0.5):]
+        # each half is then divided into deciles based on Return on Assets (ROA)
+        sortedTopByROA = sorted(top, key = lambda x: x.OperationRatios.ROA.Value, reverse = True)
+        sortedBottomByROA = sorted(bottom, key = lambda x: x.OperationRatios.ROA.Value, reverse = True)
+        # long top decile from each market capitalization group
+        long = sortedTopByROA[:int(len(sortedTopByROA)*0.1)] + sortedBottomByROA[:int(len(sortedTopByROA)*0.1)]
+        self.longStocks = [i.Symbol for i in long]
+        # short bottom decile from each market capitalization group
+        short = sortedTopByROA[-int(len(sortedTopByROA)*0.1):] + sortedBottomByROA[-int(len(sortedTopByROA)*0.1):]
+        self.shortStocks = [i.Symbol for i in short]
+
+        return self.longStocks+self.shortStocks
+    else:
+        return []
+
+
+

+ The algorithm goes long the top decile from each market capitalization group and short the bottom decile. + The strategy is rebalanced monthly and stocks are equally weighted. +

+
+
+  def OnData(self, data):
+      if not (self.monthly_rebalance and self.coarse): return
+      self.coarse = False
+      self.monthly_rebalance = False
+      stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
+      for i in stocks_invested:
+          if i not in self.longStocks+self.shortStocks:
+              self.Liquidate(i)
+
+      long_weight = 0.5/len(self.longStocks)
+      for i in self.longStocks:
+          self.SetHoldings(i, long_weight)
+
+      short_weight = 0.5/len(self.shortStocks)
+      for i in self.shortStocks:
+          self.SetHoldings(i, -short_weight)
+
+
diff --git a/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html b/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html new file mode 100644 index 0000000..66e4458 --- /dev/null +++ b/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/199 ROA Effect within Stocks/04 Source.html b/04 Strategy Library/199 ROA Effect within Stocks/04 Source.html new file mode 100644 index 0000000..137b5de --- /dev/null +++ b/04 Strategy Library/199 ROA Effect within Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/20 Forex Carry Trade/01 Introduction.html b/04 Strategy Library/20 Forex Carry Trade/01 Introduction.html new file mode 100644 index 0000000..b0ab324 --- /dev/null +++ b/04 Strategy Library/20 Forex Carry Trade/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Carry trade is very common in the foreign exchange market. + The strategy systematically sells low-interest rate currencies and buys high-interest rates currencies. The “carry” of an asset is the opportunity cost of holding that asset. Carry trade strategy holds one currency relative to another in order to capture the spread between the rates. We can think of this strategy as borrowing money from one country with a lower interest rate and investing it in another country with a higher interest rate. +

diff --git "a/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..f770bb0 --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +

+ 套利交易在外汇市场上很常见。此策略系统性地出售低利率货币,买入高利率货币。资产的“套利”是持有该资产的机会成本。套利交易策略持有相对于其他货币的某一种货币,以获取利率之间的价差。我们可以把这种策略看作是从一个利率较低的国家借钱,然后将钱投资到另一个利率较高的国家。 +

diff --git a/04 Strategy Library/20 Forex Carry Trade/02 Method.html b/04 Strategy Library/20 Forex Carry Trade/02 Method.html new file mode 100644 index 0000000..673aa83 --- /dev/null +++ b/04 Strategy Library/20 Forex Carry Trade/02 Method.html @@ -0,0 +1,22 @@ +

Importing Custom Data

+

+ The central bank interest rate data is from Quandl. For the trading universe, we choose 9 currencies + whose central bank interest rate data is available in Quandl. The method to import the custom data is + AddData(type, symbol, resoltuion, timeZone, fillDataForward). As the custom file has it's unique + colume name, we need to create a class to specify the colume name of interest rate. +

+
+
+from QuantConnect.Python import PythonQuandl
+class QuandlRate(PythonQuandl):
+    def __init__(self):
+        self.ValueColumnName = 'Value'
+
+
+

+ We save the interest rate symbol and the correspondent forex asset symbol into a dictionary. +

+

Monthly Rebalance Trading

+

+ Next step we sort the forex symbol by the value of interest rate. The algorithm goes long the currency with the highest interest rates and goes short the currency with the lowest interest rate. The strategy is rebalanced monthly. The schedule event method is used to fire the rebalance event at the first trading day each month. +

diff --git "a/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..2fc26c1 --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,19 @@ +

导入自定义数据

+

+ 央行利率数据来自Quandl。对于交易集合来说,我们选择了央行利率数据在Quandl中可用的9种货币。导入自定义数据的方法是AddData(type, symbol, resoltuion, timeZone, fillDataForward)。由于自定义文件具有唯一的colume名称,因此我们需要创建一个类别来指定利率的colume名称。 +

+
+
+from QuantConnect.Python import PythonQuandl
+class QuandlRate(PythonQuandl):
+    def __init__(self):
+        self.ValueColumnName = 'Value'
+
+
+

+ 我们将利率符号和对应的外汇资产符号保存到字典中。 +

+

每月调整交易

+

+ 下一步,我们根据利率的值对外汇符号进行排序。这种算法会做多利率最高的货币,做空利率最低的货币。该战略每月都会重新调整。采用日程事件法在每个月的第一个交易日触发重新调整事件。 +

diff --git a/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html b/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html new file mode 100644 index 0000000..d433b13 --- /dev/null +++ b/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git "a/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..d433b13 --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/20 Forex Carry Trade/04 Source.html b/04 Strategy Library/20 Forex Carry Trade/04 Source.html new file mode 100644 index 0000000..18f54dd --- /dev/null +++ b/04 Strategy Library/20 Forex Carry Trade/04 Source.html @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..18f54dd --- /dev/null +++ "b/04 Strategy Library/20 Forex Carry Trade/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/207 Value Effect within Countries/01 Introduction.html b/04 Strategy Library/207 Value Effect within Countries/01 Introduction.html new file mode 100644 index 0000000..2f1fbdc --- /dev/null +++ b/04 Strategy Library/207 Value Effect within Countries/01 Introduction.html @@ -0,0 +1,5 @@ +

+ Equity valuation may be a predictive signal for future equity return. There are various methodologies to evaluate whether + the equity is undervalued or overvalued using metrics like price-to-earnings (P/E), return on equity (ROE), dividend yield, book-to-equity and so on. + In this algorithm, we use a ten-year normalized earnings metrics invented by Yale University professor Robert Shiller to find the fair value of the equity market. +

diff --git a/04 Strategy Library/207 Value Effect within Countries/02 Method.html b/04 Strategy Library/207 Value Effect within Countries/02 Method.html new file mode 100644 index 0000000..a6db2f9 --- /dev/null +++ b/04 Strategy Library/207 Value Effect within Countries/02 Method.html @@ -0,0 +1,88 @@ +

+ The cyclically adjusted price-to-earnings ratio (CAPE) compares the stock prices with earnings smoothed across multiple years. + It is the price divided by the average of ten years of earnings (moving average), adjusted for inflation. + The backward-looking earnings smooth out the economic cycle as well as the price fluctuations. +

+

+ The investment universe consists of 22 countries with easily accessible equity markets via ETFs. + We import the custom CAPE ratio(Shiller PE Ratio) data of those 22 countries and create a dictionary to save the corresponding country ETF. + This data from Quandl is in monthly resolution and starts January 2000. +

+
+
+  class CAPE(PythonData):
+
+      def GetSource(self, config, date, isLiveMode):
+          return SubscriptionDataSource("https://www.dropbox.com/s/fcv8x1xeqamg5lx/CAPERatio.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
+
+      def Reader(self, config, line, date, isLiveMode):
+          if not (line.strip() and line[1].isdigit()): return None
+          index = CAPE()
+          index.Symbol = config.Symbol
+          # data format
+          # Date       Canada  UK     United States  France    Germany   Italy    Spain ...
+          # 1/31/00    45.7    25.08  42.18          55.94     51.35     54.34    32.16 ...
+          data = line.split(',')
+          index.Time = datetime.strptime(data[0], "%m/%d/%y")
+          symbols = Symbols().tickers
+          for key, value in symbols.items():
+              index[key] = float(data[value[0]]) if data[value[0]] else None
+          return index
+
+
+  class Symbols:
+      def __init__(self):
+          # the indiex is the country name
+          # the first element of the value is the column number of CAPE ratio value in custom dataset
+          # the second element of the value is the corresponding country ETF
+
+          self.tickers = {"Canada":[1, "XIC"],          # S&P/TSX Composite Index: iShares S&P TSX Capped Cmpst Indx Fnd
+                          "Uk":[2, "EWU"],              # FTSE 100 Index: iShares MSCI United Kingdom ETF
+                          "Us":[3, "SPY"],              # S&P 500 Index: SPDR S&P 500 ETF
+                          "France":[4, "EWQ"],          # CAC 40 Index: iShares MSCI France ETF
+                          "Germany":[5, "EWG"],         # HDAX Index: iShares MSCI Germany ETF
+                          "Italy":[6, "EWI"],           # FTSE MIB Index: iShares MSCI Italy ETF
+                          "Spain":[7, "EWP"],           # IBEX 35 Index: iShares MSCI Spain ETF
+                          "Russia":[8, "ERUS"],         # RTS Index: iShares MSCI Russia ETF
+                          "India":[9, "INDY"],          # NIFTY 50 Index: iShares India 50 ETF
+                          "Japan":[10, "EWJ"],          # All Public Companies: iShares MSCI Japan ETF
+                          "Singapore":[11, "EWS"],      # STI Index:  iShares MSCI Singapore ETF
+                          "Korea":[12,"EWY"],           # KOSPI Index: iShares MSCI South Korea ETF
+                          "China":[13, "MCHI"],         # SSE Composite: iShares MSCI China Index Fund
+                          "Hongkong":[14, "EWH"],       # Hang Seng Index: iShares MSCI Hong Kong Index Fund
+                          "Brazil":[15, "EWZ"],         # Indice Bovespa (Ibovespa): iShares MSCI Brazil ETF
+                          "Mexico":[16, "EWW"],         # &P/BMV IPC Index: iShares MSCI Mexico ETF
+                          "Southafrica":[17, "EZA"],    # FTSE/JSE CAP Top 40 Index: iShares MSCI South Africa ETF
+                          "Australia":[18, "EWA"],      # ASX All Ordinaries Index: iShares MSCI Australia ETF
+                          "Turkey":[19, "TUR"],         # BIST 100: iShares MSCI Turkey ETF
+                          "Poland":[20, "EPOL"],        # WIG Index: iShares MSCI Poland ETF
+                          "Indonesia":[21, "EIDO"],     # IDX Composite: iShares MSCI Indonesia ETF
+                          "Philippines":[22, "EPHE"]}   # PSE Composite:  iShares MSCI Philippines Investable
+
+
+

+ According to the academic research of Shiller and Campbell using market data from the S&P index, the lower the CAPE, the higher the investors' likely return from equities. + Therefore, the algorithm then invests in the cheapest 33% of countries from the sample with the lowest CAPE ratio if those countries have a CAPE below 15. + If there are no countries with CAPE lower than 15, the algorithm holds cash instead of country ETFs. + The portfolio is equally weighted and rebalanced monthly. +

+
+
+  def Rebalance(self):
+      self.cape = {}
+      for key, value in self.symbols.items():
+          cape = getattr(self.slice["CAPE"], key)
+          if cape is not None:
+              self.cape[value[1]] = cape
+      sorted_cape = sorted(self.cape, key = lambda x: self.cape[x])
+      # invests the cheapest 33% of countries if those countries have a CAPE below 15
+      lowest_cape = sorted_cape[:int(1/3*len(sorted_cape))]
+      long_list = [i for i in lowest_cape if self.cape[i]<15]
+      invested = [x.Key for x in self.Portfolio if x.Value.Invested]
+      for i in invested:
+          if i.Value not in long_list:
+              self.Liquidate(i)
+      for i in long_list:
+          self.SetHoldings(i, 1/len(long_list))
+
+
diff --git a/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html b/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html new file mode 100644 index 0000000..f2180a0 --- /dev/null +++ b/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/207 Value Effect within Countries/04 Source.html b/04 Strategy Library/207 Value Effect within Countries/04 Source.html new file mode 100644 index 0000000..66df9ad --- /dev/null +++ b/04 Strategy Library/207 Value Effect within Countries/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/21 Momentum Effect in Stocks/01 Introduction.html b/04 Strategy Library/21 Momentum Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..6baa7a8 --- /dev/null +++ b/04 Strategy Library/21 Momentum Effect in Stocks/01 Introduction.html @@ -0,0 +1,3 @@ +

+The momentum anomaly says that what was strongly going up in the near past will probably continue to go up shortly. Stocks which outperform peers on 3-12 month period tend to perform well also in the future. This algorithm will explore the momentum effect on large-cap stocks. +

diff --git a/04 Strategy Library/21 Momentum Effect in Stocks/02 Method.html b/04 Strategy Library/21 Momentum Effect in Stocks/02 Method.html new file mode 100644 index 0000000..2dc76cf --- /dev/null +++ b/04 Strategy Library/21 Momentum Effect in Stocks/02 Method.html @@ -0,0 +1,20 @@ +

Universe Selection

+

+ We use the universe selection API to create a momentum portfolio. Our coarse-universe selection eliminates stocks with a price lower than $5 and ETFs which do not have fundamental data. Fine-universe selection chooses the 50 largest companies ranked by market capitalization. +

+

Momentum Calculation

+

+ Momentum is the absolute difference in stocks. + \[Momentum = Close_{today}-Close_{N-days-ago}\] +

+ Dictionary self.mom is used to save the LEAN Momentum class instance Momentum for each symbol. + In OnSecuritiesChanged event method, we add the newly selected symbol to the dictionary and initialize the momentum indicator with the history request. For symbols removed from the universe, we remove it from the dictionary and liquidate its positions. Each day in OnData, the Momentum indicator for all symbols in the dictionary will be updated with the latest closing price. +

+

+ We choose a period of 12 months for the momentum indicator. Stocks with the best 12-month momentum (12-month performance) are then added to our portfolio and are weighted equally. +

+ +

Monthly Rebalance

+

+ The portfolio is rebalanced once a month. The coarse and fine universe selection is set to default to run at midnight once a day. To make the universe selection run at the first trading day each month, we use the int variable self.month that tracks the current month to manage the universe selection. At the start of each month, the universe selection will filter new stocks. On all other days, the universe selection function will return Universe.Unchanged. In contrast to returning an empty list or a list of previously selected symbols, returning Universe.Unchanged is the best way for monthly rebalance universe selection. If there are no open positions for certain symbol, returning an empty list will stop the data subscription of that symbol and halt updates of the indicator. +

diff --git a/04 Strategy Library/21 Momentum Effect in Stocks/03 Algorithm.html b/04 Strategy Library/21 Momentum Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..b92aa3f --- /dev/null +++ b/04 Strategy Library/21 Momentum Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/21 Momentum Effect in Stocks/04 Source.html b/04 Strategy Library/21 Momentum Effect in Stocks/04 Source.html new file mode 100644 index 0000000..f50729f --- /dev/null +++ b/04 Strategy Library/21 Momentum Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html new file mode 100644 index 0000000..42d452d --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html @@ -0,0 +1,14 @@ +

+ In this tutorial we will take a close look at a principal component analysis (PCA)-based statistical arbitrage strategy + derived from the paper + Statistical Arbitrage in the U.S. Equities Market. +

+

+ Statistical arbitrage strategies uses mean-reversion models to take advantage of pricing inefficiencies between groups of correlated + securities. This class of short-term financial trading strategies produce moves that can contrarian to the broader market movement and are often discussed in conjunction with + Pairs Trading. + In our algorithm, we will be using a PCA-based approach as opposed to an ETF-based approach to limit our universe of stocks. + Backtests from the period 1997-2007 support our strategy by showing that PCA-based strategies have Sharpe ratios that outperform Sharpe ratios + from ETF-based strategies. +

+ diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html new file mode 100644 index 0000000..bdbfa32 --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html @@ -0,0 +1,66 @@ +

Step 1: Select our universe

+

+ We will select our universe of stocks by dropping securities with prices lower than $5 and pick the ones with the highest dollar traded volume. +

+ +
+
+  # Sort the equities in DollarVolume decendingly
+  selected = sorted([x for x in coarse if x.Price > 5],
+                    key=lambda x: x.DollarVolume, reverse=True)
+  symbols = [x.Symbol for x in selected[:self.num_equities]]
+
+
+ +

Step 2: Reduce dimensions to three principal components

+

+ We want to minimize our algorithm's exposure to market factors. PCA is a procedure that extracts uncorrelated components of a possibly-correlated set of observations to reveal the factors that contribute most to a the variance of the observations as a whole. Applying PCA to the data above enables us to reduce dimensionality and select the most relevant market factors to shape our asset universe. + Based on the results found in the cited paper, and for the sake of demonstration, we chose 3 components to account for the bulk of the variance. + In our algorithm, the 3 principal components of the feature space are formed by the historical close values. +

+ +
+
+  # Sample data for PCA (smooth it using np.log function)
+  sample = np.log(history.dropna(axis=1))
+  sample -= sample.mean() # Center it column-wise
+
+  # Fit the PCA model for sample data
+  model = PCA().fit(sample)
+
+  # Get the first n_components factors
+  factors = np.dot(sample, model.components_.T)[:,:self.num_components]
+  
+
+ +

Step 3: Measure price deviation

+

+ We will model the mean-reverting residuals of our assets from a regression line. + We use linear regression to derive the weight of each stock in the portfolio based on its price deviation, which is measured by the residual. + If the absolute value of a stock's residual is large, it means that the level of price deviation is high and we should give it + more weight in the portfolio. Similarly, if the absolute value of the residual is small, + it is reasonable to give the stock less weight in the portfolio. To facilitate this, we can first standardize the residuals to get + their z-scores. Then, based on the z-scores, it is easy to detect the level of price deviation. + Specifically, the level of deviation is higher when the absolute values of the z-scores are large. + From this it is natural to use the inverse of the absolute values of the z-scores as a measurement of the weights of the portfolio. +

+ +
+
+    # Train Ordinary Least Squares linear model for each stock
+    OLSmodels = {ticker: sm.OLS(sample[ticker], factors).fit() for ticker in sample.columns}
+
+    # Get the residuals from the linear regression after PCA for each stock
+    resids = pd.DataFrame({ticker: model.resid for ticker, model in OLSmodels.items()})
+
+    # Get the Z scores by standarize the given pandas dataframe X
+    zscores = ((resids - resids.mean()) / resids.std()).iloc[-1] # residuals of the most recent day
+
+    # Get the stocks far from mean (for mean reversion)
+    selected = zscores[zscores < -1.5]
+
+    # Return the weights for each selected stock
+    weights = selected * (1 / selected.abs().sum())
+  
+
+ diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html new file mode 100644 index 0000000..5c3f0f7 --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html @@ -0,0 +1,11 @@ +

+ In our alorithm, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. + Our result is an annual rate of return over 7% with a max drawdown of around 40% for nearly 10 years. Our performance indicates + using PCA combined with linear regression to measure the deviation level is reasonable. +

+

+ To tune the model, we could expand our universe of stocks beyond the current 20 equities or incorporate more PCA components. + We could also come up with another way to measure the level of deviation or change the rebalance frequency of the algorithm + (30 days in this example). +

+ diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html new file mode 100644 index 0000000..78e62f1 --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/05 Reference.html b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/05 Reference.html new file mode 100644 index 0000000..218aff7 --- /dev/null +++ b/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/05 Reference.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 Introduction.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 Introduction.html new file mode 100644 index 0000000..37a614e --- /dev/null +++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 Introduction.html @@ -0,0 +1,3 @@ +

+ This algorithm examines the momentum effect in country indexes exchange-traded funds. +

diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..6b02628 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +

+ 此算法检验了国家指数交易所交易基金的动量效应。 +

diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 Method.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 Method.html new file mode 100644 index 0000000..6b6f900 --- /dev/null +++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 Method.html @@ -0,0 +1,8 @@ +

+The algorithm picks 35 country indexes ETFs as the trading universe. As the symbols in the universe don't change over time, we use the momentum indicator helper method + self.MOM(symbol, period, resolution). This helper method creates a new momentum indicator and computes the absolute n-period change in the security. In contrast to the indicator constructor Momentum(period), the helper method indicator will be automatically updated on the given resolution. +

+

+ In Initialize(), we set the warm-up period to the momentum period and create the dictionary self.data to save the indicator of + each symbol. On each month, the top five indexes ETFs with the best 6-month momentum will be selected to open long position. ETFs which are no longer in this top list will be liquidated. The scheduled event API is used to schedule the portfolio to rebalance at the start of each month. +

diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..7b69538 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,6 @@ +

+此算法选取35个国家的指数基金作为交易集合。由于集合中的符号不会随时间发生变化,我们使用动量指示器辅助方法self.MOM(symbol, period, resolution)。这种辅助方法会创建一个新的动量指示器,并计算证券在绝对n周期中的变化。与指示器构造函数Momentum(period)相反,辅助方法指示器将根据给定的分辨率自动更新。 +

+

+ 在Initialize()中,我们将预热周期设置为动量周期并创建字典self.data,以保存每个符号的指示符。每个月,将选择6个月势头最好的前5支指数基金进行多头仓位。没有列在榜首的基金将被斩仓。采用日程事件API制定投资组合,在每个月月初时重新平衡。 +

diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 Conclusion.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 Conclusion.html new file mode 100644 index 0000000..5b5cc52 --- /dev/null +++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 Conclusion.html @@ -0,0 +1,4 @@ +

+ The algorithm result shows that momentum effects do exist in the country indices. + The strategy of holding for one month, a portfolio of the five best performing country indices ETFs over the previous six months, was found to out-perform the equal-weighted portfolio by around 40% per annum over the 16-year period from 2002 to 2018. +

diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" new file mode 100644 index 0000000..b3aecfd --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 \347\273\223\350\256\272.cn.html" @@ -0,0 +1,3 @@ +

+ 算法结果表明,国家指数存在动量效应。在2002年至2018年的16年时间里,持有一个月的策略(即在过去6个月中表现最好的5个国家指数基金投资组合)的表现每年要超出平均加权投资组合约40%。 +

diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html new file mode 100644 index 0000000..1f5050c --- /dev/null +++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html @@ -0,0 +1,14 @@ +

The Momentum Effect

+
+
+
+ +
+
+

Equal Weighted Benchmark

+
+
+
+ +
+
diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..7078bbf --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,14 @@ +

动量效应

+
+
+
+ +
+
+

平均加权基准

+
+
+
+ +
+
diff --git a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 Source.html b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 Source.html new file mode 100644 index 0000000..2334ff4 --- /dev/null +++ b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 Source.html @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..2334ff4 --- /dev/null +++ "b/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/229 Earnings Quality Factor/01 Introduction.html b/04 Strategy Library/229 Earnings Quality Factor/01 Introduction.html new file mode 100644 index 0000000..c809686 --- /dev/null +++ b/04 Strategy Library/229 Earnings Quality Factor/01 Introduction.html @@ -0,0 +1,5 @@ +

+ Multiple factors can explain abnormal equity returns which could be used to build profitable equity long-short strategy. + The most common factors are momentum, short-term reversal, market value, size factors and so on. + In this tutorial, we will choose a few factors associated with earnings quality to investigate the return premium on stocks. +

diff --git a/04 Strategy Library/229 Earnings Quality Factor/02 Method.html b/04 Strategy Library/229 Earnings Quality Factor/02 Method.html new file mode 100644 index 0000000..cbce69f --- /dev/null +++ b/04 Strategy Library/229 Earnings Quality Factor/02 Method.html @@ -0,0 +1,157 @@ +

Earnings Quality Metrics

+

+ Earnings quality refers to the ability of reported earnings to predict a company's future earnings. + The earnings should be attributable to higher sales or lower costs, rather than artificial profits created by accounting anomalies or tricks such as inflation of inventories or changing depreciation. + It is one of the most critical measures in financial reporting systems. High earnings quality indicates a healthy development in the firm's business and can improve the market efficiency. +

+

+ The first metric of earnings quality is accruals. It is defined by cash flow relative to reported earnings. The high-quality earnings firms are characterized by low accruals while the low-quality firms are characterized by high accruals. + The formula is +

+\[Accruals= ( \Delta CA - \Delta Cash) - ( \Delta CL - \Delta STD - \Delta ITP) - Dep\] +

Where

+
    +
  • \(\Delta CA\) = annual change in current assets
  • +
  • \(\Delta Cash\) = change in cash and cash equivalents
  • +
  • \(\Delta CL\) = change in current liabilities
  • +
  • \(\Delta STD\) = change in debt included in current liabilities
  • +
  • \(\Delta ITP\) = change in income taxes payable
  • +
  • \(\Delta Dep\) = annual depreciation and amortization expense
  • +
+

+ We use an annual change reported for two consecutive fiscal years. + To calculate the accruals, we save the fine fundamental object in the last year and calculate the difference in the next year. + The algorithm will start to trade after one-year initialization. +

+
+
+    def CalculateAccruals(self, current, previous):
+        accruals = []
+        for stock_data in current:
+            #compares this and last year's fine fundamental objects
+            try:
+                prev_data = None
+                for x in previous:
+                    if x.Symbol == stock_data.Symbol:
+                        prev_data = x
+                        break
+
+                #calculates the balance sheet accruals and adds the property to the fine fundamental object
+                delta_assets = float(stock_data.FinancialStatements.BalanceSheet.CurrentAssets.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentAssets.Value)
+                delta_cash = float(stock_data.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value)-float(prev_data.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value)
+                delta_liabilities = float(stock_data.FinancialStatements.BalanceSheet.CurrentLiabilities.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentLiabilities.Value)
+                delta_debt = float(stock_data.FinancialStatements.BalanceSheet.CurrentDebt.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentDebt.Value)
+                delta_tax = float(stock_data.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value)-float(prev_data.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value)
+                dep = float(stock_data.FinancialStatements.IncomeStatement.DepreciationAndAmortization.Value)
+                avg_total = (float(stock_data.FinancialStatements.BalanceSheet.TotalAssets.Value)+float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value))/2
+                #accounts for the size difference
+                stock_data.Accrual = ((delta_assets-delta_cash)-(delta_liabilities-delta_debt-delta_tax)-dep)/avg_total
+                accruals.append(stock_data)
+            except:
+                #value in current universe does not exist in the previous universe
+                pass
+        return accruals
+  
+
+

+ The second metric is cash flow to assets ratio. It is calculated by dividing cash flows from operations by the average total assets. Firms with high cash flow to total assets are of high earnings quality. + The other two metrics are Return on Equity(ROE) and Debt to Assets(DA) which are available properties of fine fundamental objects. The Higher the ROE ratio, the better the earnings quality. + Low debt to assets means low leverage. It leads to more stable earnings and less dependence on the current financing conditions in the economy. Therefore, low debt to assets ratios is a signal of high earnings quality. + Before calculating those variables, we should make sure their values are all positive. +

+
+
+def FineSelectionFunction(self, fine):
+    if self.yearly_rebalance:
+        #filters out the non-financial companies that don't contain the necessary data
+        fine = [x for x in fine if (x.CompanyReference.IndustryTemplateCode != "B")
+                                and (x.FinancialStatements.BalanceSheet.CurrentAssets.Value != 0)
+                                and (x.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value != 0)
+                                and (x.FinancialStatements.BalanceSheet.CurrentLiabilities.Value != 0)
+                                and (x.FinancialStatements.BalanceSheet.CurrentDebt.Value != 0)
+                                and (x.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value != 0)
+                                and (x.FinancialStatements.IncomeStatement.DepreciationAndAmortization.Value != 0)]
+
+        if not self.previous_fine:
+            # will wait one year in order to have the historical fundamental data
+            self.previous_fine = fine
+            self.yearly_rebalance = False
+            return []
+        else:
+            # calculate the accrual for each stock
+            fine = self.CalculateAccruals(fine, self.previous_fine)
+            filtered_fine = [x for x in fine if (x.FinancialStatements.CashFlowStatement.OperatingCashFlow.Value != 0)
+                                            and (x.EarningReports.BasicEPS.Value != 0)
+                                            and (x.EarningReports.BasicAverageShares.Value != 0)
+                                            and (x.OperationRatios.DebttoAssets.Value != 0)
+                                            and (x.OperationRatios.ROE.Value != 0)]
+            for i in filtered_fine:
+                # cash flow to assets
+                i.CFA = i.FinancialStatements.CashFlowStatement.OperatingCashFlow.Value/(i.EarningReports.BasicEPS.Value * i.EarningReports.BasicAverageShares.Value)
+                # debt to assets
+                i.DA = i.OperationRatios.DebttoAssets.Value
+                # return on equity
+                i.ROE = i.OperationRatios.ROE.Value
+
+
+ +

The Scoring System

+

+ The investment universe consists of all non-financial stocks from NYSE, Amex and Nasdaq. Next, we will build a composite scoring system to rank the stocks in the universe. + The first step is sorting stocks by four factors respectively. “good” quality has a high score, so ideally a stock has low accruals, low debt to assets, high ROE, and high cash flow to assets will be allocated high score. + Therefore, we sort the accruals and debt to assets ratio in descending orders and sort the ROE and cash flow to assets ratios in ascending order. + Then the score of each stock is the sum of rank in four factors. +

+
+
+  # sort stocks by four factors respectively
+   sortedByAccrual = sorted(filtered_fine, key=lambda x: x.Accrual, reverse=True) # high score with low accrual
+   sortedByCFA = sorted(filtered_fine, key=lambda x: x.CFA)                       # high score with high CFA
+   sortedByDA = sorted(filtered_fine, key=lambda x: x.DA, reverse=True)           # high score with low leverage
+   sortedByROE = sorted(filtered_fine, key=lambda x: x.ROE)                       # high score with high ROE
+   # create dict to save the score for each stock
+   score_dict = {}
+   # assign a score to each stock according to their rank with different factors
+   for i,obj in enumerate(sortedByAccrual):
+       scoreAccrual = i
+       scoreCFA = sortedByCFA.index(obj)
+       scoreDA = sortedByDA.index(obj)
+       scoreROE = sortedByROE.index(obj)
+       score = scoreAccrual + scoreCFA + scoreDA + scoreROE
+       score_dict[obj.Symbol] = score
+
+   sortedByScore = sorted(score_dict, key = lambda x: score_dict[x], reverse = True)
+   # long stocks with the top score (> 30%) and short stocks with the bottom score (< 70%)
+   self.long = sortedByScore[:int(0.3*len(sortedByScore))]
+   self.short = sortedByScore[-int(0.3*len(sortedByScore)):]
+
+
+

Trade and Rebalance

+

+ Based on the composite factor score, the algorithm goes long the top 30% of high score stocks and short the bottom 30% of low score stocks. + Final factor portfolio is formed at the end of each June and is rebalanced yearly. +

+
+
+def OnData(self, data):
+    if not self.yearly_rebalance: return
+    if self.long and self.short:
+        long_stocks = [x.Key for x in self.Portfolio if x.Value.IsLong]
+        short_stocks = [x.Key for x in self.Portfolio if x.Value.IsShort]
+        # liquidate the stocks not in the filtered long/short list
+        for long in long_stocks:
+            if long not in self.long:
+                self.Liquidate(long)
+
+        for short in short_stocks:
+            if short not in self.short:
+                self.Liquidate(short)
+
+        long_weight = 0.8/len(self.long)
+        for i in self.long:
+            self.SetHoldings(i, long_weight)
+        short_weight = 0.8/len(self.short)
+        for i in self.short:
+            self.SetHoldings(i, -short_weight)
+
+
diff --git a/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html b/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html new file mode 100644 index 0000000..bdafd79 --- /dev/null +++ b/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/229 Earnings Quality Factor/04 Source.html b/04 Strategy Library/229 Earnings Quality Factor/04 Source.html new file mode 100644 index 0000000..b2455b8 --- /dev/null +++ b/04 Strategy Library/229 Earnings Quality Factor/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/01 Introduction.html b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/01 Introduction.html new file mode 100644 index 0000000..1d69fc6 --- /dev/null +++ b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Mean reversion in stock price is the assumption that the price will tend to move back to the average price over time. + Mean reversion trading often refers to counter-trend or reversal trading. This algorithm will explore the mean reversion effect in country equity indexes. +

diff --git a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/02 Method.html b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/02 Method.html new file mode 100644 index 0000000..b5578d7 --- /dev/null +++ b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/02 Method.html @@ -0,0 +1,8 @@ +

+ The investment universe consists of 19 ETFs which invest in individual country equity indexes. + The strategy is going to long on the bottom four countries with the worst 36-month return and short on the top 4 countries with the best 36-month return. The helper indicator method self.ROC(symbol, period, resolution) + is used to calculate 36-month return where the resolution is daily and the period is 36*21. +

+

+ The portfolio is reweighted every three years. We schedule the event to fire every month. self.months is the variable to save the number of months, and the algorithm jumps the rebalance execution if the amount of passed months does not equate to 36. +

diff --git a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html new file mode 100644 index 0000000..2b216a7 --- /dev/null +++ b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/04 Source.html b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/04 Source.html new file mode 100644 index 0000000..c4c7a89 --- /dev/null +++ b/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/24 Liquidity Effect in Stocks/01 Introduction.html b/04 Strategy Library/24 Liquidity Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..abeb595 --- /dev/null +++ b/04 Strategy Library/24 Liquidity Effect in Stocks/01 Introduction.html @@ -0,0 +1,3 @@ +

+ Liquidity has a powerful impact on price and the valuation of equities. Stocks with little liquidity are used to earning higher returns than stocks with high liquidity. In this algorithm, we present the effect of liquidity on returns for the lowest capitalization quartile from the largest 1500 stocks. +

diff --git a/04 Strategy Library/24 Liquidity Effect in Stocks/02 Method.html b/04 Strategy Library/24 Liquidity Effect in Stocks/02 Method.html new file mode 100644 index 0000000..6fd2878 --- /dev/null +++ b/04 Strategy Library/24 Liquidity Effect in Stocks/02 Method.html @@ -0,0 +1,15 @@ +

+ In coarse universe selection, we filter stocks whose price is higher than $5. ADRs, ETFs and closed-end funds are all excluded with the property of coarse fundamental object HasFundamentalData. +

+

+ In fine universe selection, in the first step, we exclude stocks with the market cap less than ten million. + To evaluate the liquidity of stocks, we choose the annual turnover which is the number of shares traded divided by the stock’s outstanding shares. + The main advantage of turnover against volume is its market capitalization-neutrality, as either small-cap or large-cap stocks can have low or high turnover rates. + Although turnover is capitalization neutral, the liquidity effect is the strongest among small-cap stocks. Therefore, stocks are then divided into quartiles based on their market capitalization. Stocks from the lowest market-cap quartile are again divided into 5% and 95% quantiles based on their turnover. To calculate the turnover, + we request the historical daily volume for the last one year and compute the mean volume. The turnover is the average annual volume divided by BasicAverageShares in EarningReports. + Stocks in the 5% quantile and in the top 95% percentile are saved in self.long and self.short lists respectively. +

+

+ In OnData(), the algorithm goes long on stocks in the lowest turnover list and short on stocks in the highest turnover list. Stocks not in those two lists are liquidated. + The portfolio is rebalanced once a year and stocks are weighted equally. +

diff --git a/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html b/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..15edb83 --- /dev/null +++ b/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/24 Liquidity Effect in Stocks/04 Source.html b/04 Strategy Library/24 Liquidity Effect in Stocks/04 Source.html new file mode 100644 index 0000000..e09165f --- /dev/null +++ b/04 Strategy Library/24 Liquidity Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/25 Volatility Risk Premium Effect/01 Introduction.html b/04 Strategy Library/25 Volatility Risk Premium Effect/01 Introduction.html new file mode 100644 index 0000000..c517ab8 --- /dev/null +++ b/04 Strategy Library/25 Volatility Risk Premium Effect/01 Introduction.html @@ -0,0 +1,7 @@ +

+ Long volatility means that the value of your portfolio increases when the volatility goes up. + Short volatility means that you make money when the volatility goes down. The simplest example of volatility selling involves the sale of put and call contracts. + Traders often long volatility by holding the long position of put or call options for hedging purpose. + In contrast, the short volatility strategy expects to earn the systematic risk premium by selling options. + This algorithm will explore the risk premium effect in volatility selling. +

diff --git a/04 Strategy Library/25 Volatility Risk Premium Effect/02 Method.html b/04 Strategy Library/25 Volatility Risk Premium Effect/02 Method.html new file mode 100644 index 0000000..3bc10d3 --- /dev/null +++ b/04 Strategy Library/25 Volatility Risk Premium Effect/02 Method.html @@ -0,0 +1,48 @@ +

+ This short volatility algorithm first prescreens the option contracts by the expiry and the strike. + To include the weekly contract, we use the universe function +

+
+
def Initialize(self):
+    option.SetFilter(self.UniverseFunc)
+  def UniverseFunc(self, universe):
+      return universe.IncludeWeeklys().Strikes(-20, 20).Expiration(timedelta(25), timedelta(35))
+
+
+

+ The algorithm selects contracts with one month until maturity so we choose a small range for expiration. +

+

+ In OnData(), we divide the option chain into put and call options. Then we create two lists + expiries and strikes to save all available expiration dates and stike prices to facilitate + sorting and filtering. +

+

+ The algorithm needs three option contracts with one month to the maturity: one ATM call, one ATM put to contruct the ATM straddle, + one 15% OTM put. As it's difficult to find the contract with the specified days to maturity and strikes, + we use min() to find the most closest contract. +

+
+
expiries = [i.Expiry for i in puts]
+# determine expiration date nearly 30 days
+expiry = min(expiries, key=lambda x: abs((x.date()-self.Time.date()).days-30))
+strikes = [i.Strike for i in puts]
+# determine at-the-money strike
+strike = min(strikes, key=lambda x: abs(x-underlying_price))
+# determine 15% out-of-the-money strike
+otm_strike = min(strikes, key = lambda x:abs(x-Decimal(0.85)*underlying_price))
+
+
+

+ From the above expiration date and strike price, we pick three option contracts +

+
+
self.atm_call = [i for i in calls if i.Expiry == expiry and i.Strike == strike]
+self.atm_put = [i for i in puts if i.Expiry == expiry and i.Strike == strike]
+self.otm_put = [i for i in puts if i.Expiry == expiry and i.Strike == otm_strike]
+
+
+

+ In trading, we sell the ATM straddle by selling one ATM call and one ATM put. Then we buy an OTM put option as insurance against a market crash. + Then we wait until the expiration and sell the underlying positions after option exercise and assignment. The portfolio is rebalanced once a month. +

diff --git a/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html b/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html new file mode 100644 index 0000000..0733d81 --- /dev/null +++ b/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/25 Volatility Risk Premium Effect/04 Source.html b/04 Strategy Library/25 Volatility Risk Premium Effect/04 Source.html new file mode 100644 index 0000000..887095d --- /dev/null +++ b/04 Strategy Library/25 Volatility Risk Premium Effect/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/26 Quantpedia/02 Quantpedia.php b/04 Strategy Library/26 Quantpedia/02 Quantpedia.php new file mode 100644 index 0000000..32dd198 --- /dev/null +++ b/04 Strategy Library/26 Quantpedia/02 Quantpedia.php @@ -0,0 +1,155 @@ + +
+ +
+
+ +
+
+ + + + + + + + '; + $sources .= (count($strategy['sources']) > 1 ? 'Sources:' : 'Source:'); + foreach ($strategy['sources'] as $key => $source) { + $sources .= " {$key},"; + } + + $sources = trim($sources, ','); + $sources .= '

'; + } + ?> + + + + + +
+ Strategy Name +
+ +

+ +
+ + diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html new file mode 100644 index 0000000..17958c4 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html @@ -0,0 +1,19 @@ +

+ This tutorial implements a seasonality strategy that trades based on historical same-calendar-month returns. The strategy is + derived from the paper Common Factors in Return Seasonalities. +

+

+ A great deal of research on seasonality effects in algorithmic trading exists. Seasonality patterns are well documented in stock returns across numerous + countries and in commodity and country portfolios. The phenomenon’s occurrence is not isolated to specific stocks or monthly time intervals, for example, seasonality is observed at the daily frequency as well. Our implementation reflects the existing research. +

+

+ In our algorithm, we will first use a coarse selection filter function to narrow down our universe to the top 100 liquid securities with a price greater than $5. +

+

+ Next, for each security in the universe, we will calculate the monthly return for the same-calendar month of the previous year. For example, if we implement this strategy on a backtest for the period of August 2019, we would base our long and short positions on monthly returns from August 2018. We will long the securities with top monthly returns and short those with the bottom monthly returns. +

+

+ At the end of each month we will rebalance and repeat the strategy. The following section offers further explanation of how to implement each step of the strategy. +

+ + \ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html new file mode 100644 index 0000000..5b5da95 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html @@ -0,0 +1,70 @@ +

Step 1: Select our universe

+

+ We first select the top 100 liquid securities and ETFs with prices greater than $5 based on Dollar Volume for our universe. Research from "Common Factors" suggests that the U.S. equity, commodity, and index markets are all affected by seasonality patterns. Therefore, we can include any assets in our universe. Note that while this strategy does not require fundamental data for implementation, other strategies in the library do. In those cases we would need to remove ETFs from the universe because we don’t have fundamental data for ETFs. +

+ +
+
+    # Sort the securities with prices > 5 in DollarVolume decendingly
+    selected = sorted([x for x in coarse if x.Price > 5],
+                        key=lambda x: x.DollarVolume, reverse=True)
+
+    # Get securities after coarse selection
+    symbols = [x.Symbol for x in selected[:self.num_coarse]]
+
+
+ +

Step 2: Calculate the same-calendar month returns of the previous year

+

+ "Common Factors" indicates that taking long and short positions based on historical same-calendar month returns earns an average monthly return of 1.88%. Our implementation also selects securities to long and short based on their same-calendar month returns. For each security in the universe, we calculate the monthly return for the same-calendar month of the previous year and choose the symbols as follows: +

+ +
+
+    # Get historical close data for coarse-selected symbols of the same calendar month
+    start = self.Time.replace(day = 1, year = self.Time.year-1)
+    end = Expiry.EndOfMonth(start) - timedelta(1)
+    history = self.History(symbols, start, end, Resolution.Daily).close.unstack(level=0)
+
+    # Get the same calendar month returns for the symbols
+    MonthlyReturn = {ticker: prices.iloc[-1]/prices.iloc[0] for ticker, prices in history.iteritems()}
+
+    # Sorted the values of monthly return
+    sortedReturn = sorted(MonthlyReturn.items(), key=lambda x:x[1], reverse=True)
+
+    # Get the symbols to long / short
+    self.longSymbols = [x[0] for x in sortedReturn[:self.num_long]]
+    self.shortSymbols = [x[0] for x in sortedReturn[-self.num_short:]]
+
+    # Note that self.longSymbols/self.shortSymbols contains strings instead of symbols
+    return [x for x in symbols if str(x) in self.longSymbols + self.shortSymbols]
+  
+
+ +

Step 3: Rebalance monthly

+

+ At the end of each month, we rebalance our portfolio, liquidate the securities that are not part of the new month’s universe, and repeat step 1 and 2. Keep in mind we use equal weights for the long and short positions of securities in our portfolio. +

+ +
+
+    '''
+    Rebalance every month based on same-calendar month returns effect
+    '''
+    # Before next rebalance, do nothing
+    if self.Time < self.nextRebalance:
+        return
+
+    count = len(self.longSymbols + self.shortSymbols)
+    # Open long positions
+    for symbol in self.longSymbols:
+        self.SetHoldings(symbol, 1/count)
+
+    # Open short positions
+    for symbol in self.shortSymbols:
+        self.SetHoldings(symbol, -1/count)
+
+    # Rebalance at the end of every month
+    self.nextRebalance = Expiry.EndOfMonth(self.Time) - timedelta(1)
+  
+
\ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html new file mode 100644 index 0000000..e4e319f --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html @@ -0,0 +1,9 @@ +

+ In backtesting our algorithm achieves a Sharpe ratio of 0.332 relative to S&P 500 (SPY) Sharpe ratio of 0.893 for the past 10 years. + The performance indicates using the idea of same-calendar month returns makes sense. Interested users can build upon this implementation by trying the following extensions: +

+
    +
  1. Using the same-calendar months of multiple years (e.g. the last 5 years), instead of using the previous year as we did in this tutorial, to get more stable monthly returns.
  2. +
  3. Using discounting to capture time effects in the returns.
  4. +
  5. Creating the initial universe using different criteria such as quarterly, rather than monthly, returns.
  6. +
\ No newline at end of file diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html new file mode 100644 index 0000000..03c24b0 --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html new file mode 100644 index 0000000..a859e6e --- /dev/null +++ b/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/27 Momentum Effect in Commodities Futures/01 Introduction.html b/04 Strategy Library/27 Momentum Effect in Commodities Futures/01 Introduction.html new file mode 100644 index 0000000..21044a4 --- /dev/null +++ b/04 Strategy Library/27 Momentum Effect in Commodities Futures/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Commodity futures are excellent portfolio diversifiers and some of them are an effective hedge against inflation. + This algorithm will explore the momentum effect in commodity futures with the momentum return. +

diff --git a/04 Strategy Library/27 Momentum Effect in Commodities Futures/02 Method.html b/04 Strategy Library/27 Momentum Effect in Commodities Futures/02 Method.html new file mode 100644 index 0000000..9870587 --- /dev/null +++ b/04 Strategy Library/27 Momentum Effect in Commodities Futures/02 Method.html @@ -0,0 +1,42 @@ +

+ As the strategy needs the continuous futures contract, we import the custom data from Quandl. + We create a universe of tradable commodity futures from all available commodity futures traded on CME and ICE. + They are all liquid and active continuous contracts #1. The data from Quandl are non-adjusted price based on spot-month continuous contract calculations. + The data resolution is daily. +

+

+ The first step is importing the data. +

+
+
from QuantConnect.Python import PythonQuandl
+for symbol in self.symbols:
+    self.AddData(QuandlFutures, symbol, Resolution.Daily)
+
+class QuandlFutures(PythonQuandl):
+    def __init__(self):
+        self.ValueColumnName = "Settle"
+
+
+

+ Here we use the indicator RateOfChange(period) to simulate the momentum return. Here the period is 12 months. + As we are using the custom data, the indicator initialization should use the history request to update the value manually. + All indicators are saved in the dictionary self.roc. +

+
+
self.roc = {}
+for symbol in self.symbols:
+    self.AddData(QuandlFutures, symbol, Resolution.Daily)
+    self.roc[symbol] = RateOfChange(period)
+    hist = self.History([symbol], 400, Resolution.Daily).loc[symbol]
+    for i in hist.itertuples():
+        self.roc[symbol].Update(i.Index, i.value)
+
+
+

+ In OnData(self, data), indicators for all futures contracts are updated every day with the settlement price. +

+

+ We rank the contracts by the last 12-month return and divide them into quintiles. + In the trading part, the algorithm goes long on the quintile with the highest momentum return and goes short on the quintile with the lowest momentum return. + The portfolio is rebalanced each month. +

diff --git a/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html b/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html new file mode 100644 index 0000000..ad5e9f8 --- /dev/null +++ b/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/27 Momentum Effect in Commodities Futures/04 Source.html b/04 Strategy Library/27 Momentum Effect in Commodities Futures/04 Source.html new file mode 100644 index 0000000..7b964a7 --- /dev/null +++ b/04 Strategy Library/27 Momentum Effect in Commodities Futures/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html b/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html new file mode 100644 index 0000000..2c85d7e --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html @@ -0,0 +1,7 @@ +

+ This tutorial implements a risk premia strategy that enters long-short positions in the forex market based on signals from a skewness indicator. The strategy is derived from the paper “Risk Premia: Asymmetric Tail Risks and Excess Returns” by Lemperiere, Deremble, Nguyen, Seager, Potters, and Bouchaud. +

+ +

+ One of the pillars in modern finance theory is the concept of risk premium, which states the riskier an investment is today the more profitable it should be in the long run. Risk premia strategies aim to profit from risk premiums. Lemperiere et al. describe a positive linear relationship between the Sharpe ratio of risk premia strategies and their negative skewness. It provides extensive evidence that risk premium is indeed strongly correlated with the skewness of a strategy, not only in the equity world but also in currencies, options, credit, etc. +

diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html b/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html new file mode 100644 index 0000000..fd1d64a --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html @@ -0,0 +1,73 @@ +

Step 1: Select our forex universe

+

+ In this algorithm, we use a fixed forex universe which contains four symbols: "EURUSD", "AUDUSD", "USDCAD" and "USDJPY". By using self.AddForex(), we add the requested forex data into the data feed. +

+ +
+
+  # Add forex data of the following symbols
+  for pair in ['EURUSD', 'AUDUSD', 'USDCAD', 'USDJPY']:
+      self.AddForex(pair, Resolution.Hour, Market.FXCM)    
+
+
+ +

Step 2: Calculate the skewness indicator

+

+ In statistics, skewness is a measure of the asymmetry of the probability distribution of a real-valued random variable about its mean. Lemperiere et al. suggest there is a positive relationship between risk premia strategies and their negative skewness. We will use this relationship in our trading logic. Our implementation goes long for a forex pair when the skewness indicator is lower than a minimum threshold (-0.6) and short the pair when the indicator exceeds a maximum threshold (0.6). For each forex pair in the universe, we will calculate the skewness indicator with historical close prices and select the symbols as follows: +

+ +
+
+    ### In OnData()
+    # Get historical close data for the symbols
+    history = self.History(self.Securities.Keys, self.lookback, Resolution.Daily)
+    history = history.drop_duplicates().close.unstack(level=0)
+
+    # Get the skewness of the historical data
+    skewness = self.GetSkewness(history)
+
+    longSymbols = [k for k,v in skewness.items() if v < self.longSkewLevel]
+    shortSymbols = [k for k,v in skewness.items() if v > self.shortSkewLevel]
+
+  def GetSkewness(self, values):
+    '''
+    Get the skewness for all forex symbols based on its historical data
+    Ref: https://www.itl.nist.gov/div898/handbook/eda/section3/eda35b.htm
+    '''
+    # Get the numerator of the skewness
+    numer = ((values - values.mean()) ** 3).sum()
+
+    # Get the denominator of the skewness
+    denom = self.lookback * values.std() ** 3
+
+    # Return the skewness
+    return (numer/denom).to_dict()
+  
+
+ +

Step 3: Rebalance weekly

+

+ We rebalance every week, liquidate the forex pairs not on the trading list, then repeat steps 1-2. We use equal weights for the long and short positions of securities in our portfolio. +

+ +
+
+  # Liquidate the holdings for pairs that will not trade
+  for holding in self.Portfolio.Values:
+      symbol = holding.Symbol
+      if holding.Invested and symbol.Value not in longSymbols + shortSymbols:
+          self.Liquidate(symbol, 'Not selected pair')
+
+  # Open positions for the symbols with equal weights
+  count = len(longSymbols) + len(shortSymbols)
+
+  for pair in longSymbols:
+      self.SetHoldings(pair, 1/count)
+
+  for pair in shortSymbols:
+      self.SetHoldings(pair, -1/count)
+
+  # Set next rebalance time
+  self.nextRebalance += timedelta(self.rebalanceDays)    
+  
+
\ No newline at end of file diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html b/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html new file mode 100644 index 0000000..3e38c14 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html @@ -0,0 +1,9 @@ +

+ In this case our backtest results in a low annual return of approximately -0.7% over a decade. The poor performance may be due to several reasons: +

    +
  1. The fixed forex universe chosen is not large enough to properly diversify market risk
  2. +
  3. The thresholds for entering long and short positions (0.6, -0.6) may need adjustment
  4. +
  5. The length of historical data might be not large enough for this weekly-rebalanced strategy.
  6. +
+ We encourage the community to further develop this strategy by testing out different symbols, thresholds, and historical data lengths. +

\ No newline at end of file diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html b/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html new file mode 100644 index 0000000..f3764f8 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html b/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html new file mode 100644 index 0000000..dfffb15 --- /dev/null +++ b/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html b/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html new file mode 100644 index 0000000..aa3ce63 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html @@ -0,0 +1,11 @@ +

+ In this tutorial, we will develop a strategy based on the price and earnings momentum effect of stocks. This strategy is derived from the paper "Momentum" by N.Jegadeesh and S.Titman. +

+ +

+ N.Jegadeesh et al. describe price/return momentum as a tendency for stocks that perform well over a three to twelve month period to continue to perform well over a subsequent three to twelve month period. Similarly, stocks that perform poorly over a three to twelve month period have a tendency to continue to perform poorly. They describe earnings momentum as the tendency for stocks with high earnings per share (EPS) to continue to outperform stocks with low EPS. +

+ +

+ Below, we will implement a quarterly-rebalanced stock strategy based on the price and earnings momentum. +

diff --git a/04 Strategy Library/271 Price and Earning Momentum/02 Method.html b/04 Strategy Library/271 Price and Earning Momentum/02 Method.html new file mode 100644 index 0000000..755688e --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/02 Method.html @@ -0,0 +1,166 @@ +

Step 1: Select the coarse universe

+

+ We will use both a coarse selection filter and in a later step, a fine universe filter, to narrow down our universe of assets. Our coarse universe filter creates a set of stocks based on volume, price, and whether fundamental data on the stock exists. In this step we filter for the top 100 liquid equities with prices greater than $5. We also exclude the equities missing fundamental data because EPS is needed in the fine selection step. +

+ +
+
+def CoarseSelection(self, coarse):
+  '''
+  Pick the top 100 liquid equities as the coarse-selected universe
+  '''
+  # Before next rebalance time, just remain the current universe
+  if self.Time < self.nextRebalance:
+      return Universe.Unchanged
+
+  # Sort the equities (prices > 5) by Dollar Volume descendingly
+  selectedByDollarVolume = sorted([x for x in coarse if x.Price > 5 and x.HasFundamentalData], 
+                                  key = lambda x: x.DollarVolume, reverse = True)
+
+  # Pick the top 100 liquid equities as the coarse-selected universe
+  return [x.Symbol for x in selectedByDollarVolume[:self.numOfCoarse]]  
+
+
+ +

Step 2: Calculate quarterly return and earnings growth

+

+ N.Jegadeesh et al. state price momentum and earnings momentum can be used as two indicators for trading. We will calculate for price momentum with the "GetQuarterlyReturn" method and for earnings momentum with the "GetEarningGrowth" method. +

+

+ "GetQuarterlyReturn" calculates price momentum for each symbol in our coarse universe and ranks each stock based on its quarterly return. First we request last quarter’s close price for all stocks. Then we calculate quarterly return by taking the delta of the first day’s close price and the last day’s close price. Finally, we store the symbols and their corresponding rankings by quarterly return in a dictionary in preparation for fine selection. +

+ +
+
+    def GetQuarterlyReturn(self, history):
+        '''
+        Get the rank of securities based on their quarterly return from historical close prices
+        Return: dictionary
+        '''
+        # Get quarterly returns for all symbols
+        # (The first row divided by the last row)
+        returns = history.iloc[0] / history.iloc[-1]
+
+        # Transform them to dictionary structure
+        returns = returns.to_dict()
+
+        # Get the rank of the returns (key: symbol; value: rank)
+        # (The symbol with the 1st quarterly return ranks the 1st, etc.)
+        ranked = sorted(returns, key = returns.get, reverse = True)
+        return {symbol: rank for rank, symbol in enumerate(ranked, 1)}
+  
+
+

+ "GetEarningGrowth" calculates earnings momentum for each symbol in our coarse universe and ranks each stock based on its earnings growth. First we use a RollingWindow to store and update the BasicEPS to reflect quarterly earnings reports. A RollingWindow holds a set of the most recent entries of data. As we move from time t=0 forward, our rolling window will shuffle data further along to a different index until it leaves the window completely. The object in the window with index[0] refers to the most recent item. The length-1 in the window is the oldest object. +

+ +

+ Our rolling window has a length of 2 so index[0] is the current EPS and index[1] is last quarter's EPS. We calculate earnings growth for each stock by taking the delta of this quarter’s EPS and last quarter’s EPS divided by last quarter’s EPS. Finally we rank each asset based on earnings growth. +

+
+
+    def GetEarningGrowth(self, fine):
+        '''
+        Get the rank of securities based on their EPS growth
+        Return: dictionary
+        '''
+
+        # Earning Growth by symbol
+        egBySymbol = {}
+        for stock in fine:
+
+            # Select the securities with EPS (> 0)
+            if stock.EarningReports.BasicEPS.ThreeMonths == 0:
+                continue
+
+            # Add the symbol in the dict if not exist
+            if not stock.Symbol in self.epsBySymbol:
+                self.epsBySymbol[stock.Symbol] = RollingWindow[float](2)
+
+            # Update the rolling window for each stock
+            self.epsBySymbol[stock.Symbol].Add(stock.EarningReports.BasicEPS.ThreeMonths)
+
+            # If the rolling window is ready
+            if self.epsBySymbol[stock.Symbol].IsReady:
+                rw = self.epsBySymbol[stock.Symbol]
+                # Caculate the Earning Growth
+                egBySymbol[stock.Symbol] = (rw[0] - rw[1]) / rw[1]
+
+        # Get the rank of the Earning Growth
+        ranked = sorted(egBySymbol, key = egBySymbol.get, reverse = True)
+        return {symbol: rank for rank, symbol in enumerate(ranked, 1)}
+  
+
+ +

Step 3: Select the fine universe

+

+ We use a fine selection filter in addition to a coarse selection filter to refine our asset selection based on corporate fundamental data. We can use both quarterly return and earnings growth from our two indicators to generate an average rank for each stock. Then we can go long on the top 10 and short the bottom 10. +

+ +
+
+    def FineSelection(self, fine):
+        '''
+        Select securities based on their quarterly return and their earnings growth 
+        '''
+        symbols = [x.Symbol for x in fine]
+
+        # Get the quarterly returns for each symbol
+        history = self.History(symbols, self.rebalanceDays, Resolution.Daily)
+        history = history.drop_duplicates().close.unstack(level = 0)
+        rankByQuarterReturn = self.GetQuarterlyReturn(history)
+
+        # Get the earning growth for each symbol
+        rankByEarningGrowth = self.GetEarningGrowth(fine) 
+
+        # Get the sum of rank for each symbol and pick the top ones to long and the bottom ones to short
+        rankSumBySymbol = {key: rankByQuarterReturn.get(key, 0) + rankByEarningGrowth.get(key, 0) 
+                                for key in set(rankByQuarterReturn) | set(rankByEarningGrowth)}
+
+        # Get 10 symbols to long and short respectively
+        sortedDict = sorted(rankSumBySymbol.items(), key = lambda x: x[1], reverse = True)
+        self.longSymbols = [x[0] for x in sortedDict[:10]]
+        self.shortSymbols = [x[0] for x in sortedDict[-10:]]
+
+        return [x for x in symbols if str(x) in self.longSymbols + self.shortSymbols]    
+  
+
+ +

Step 4: Rebalance quarterly

+

+ We choose to rebalance every quarter and use equal weights for the long and short positions of securities in our portfolio. +

+ +
+
+    def OnData(self, data):
+        '''
+        Rebalance quarterly
+        '''
+        # Do nothing until next rebalance
+        if self.Time < self.nextRebalance:
+            return
+
+        # Liquidate the holdings if necessary
+        for holding in self.Portfolio.Values:
+            symbol = holding.Symbol
+            if holding.Invested and symbol.Value not in self.longSymbols + self.shortSymbols:
+                self.Liquidate(symbol, "Not Selected")
+
+        # Open positions for the symbols with equal weights
+        count = len(self.longSymbols + self.shortSymbols)
+        if count == 0:
+            return
+
+        # Enter long positions
+        for symbol in self.longSymbols:
+            self.SetHoldings(symbol, 1 / count)
+
+        # Enter short positions
+        for symbol in self.shortSymbols:
+            self.SetHoldings(symbol, -1 / count)
+
+        # Set next rebalance time
+        self.nextRebalance += timedelta(self.rebalanceDays)   
+  
+
\ No newline at end of file diff --git a/04 Strategy Library/271 Price and Earning Momentum/03 Results.html b/04 Strategy Library/271 Price and Earning Momentum/03 Results.html new file mode 100644 index 0000000..e0cab48 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/03 Results.html @@ -0,0 +1,9 @@ +

+ Our backtest results in a Sharpe ratio of 0.59 while the SP500 Sharpe ratio is 0.8 during the same decade. This performance may be due to several factors: +

    +
  1. The number of stocks in our portfolio, 100, could be too low.
  2. +
  3. Equal weighting for all stocks may not fully capture the strength of higher ranking stocks.
  4. +
  5. Rebalancing quarterly may be too frequent for a momentum strategy in equities.
  6. +
+ This tutorial shows us how to take advantage of the techniques of requesting historical data and using a RollingWindow. We hope the community can further develop strategies based on these techniques. +

\ No newline at end of file diff --git a/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html b/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html new file mode 100644 index 0000000..65639b2 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html b/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html new file mode 100644 index 0000000..8ce9247 --- /dev/null +++ b/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/01 Introduction.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/01 Introduction.html new file mode 100644 index 0000000..1e56e9b --- /dev/null +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/01 Introduction.html @@ -0,0 +1,6 @@ +

+ Small caps are typically defined as companies with market caps that are less than $2 billion. + The advantage of investing in small cap companies is that they are young companies with significant growth potential. + However, the risk of failure is greater with small-cap stocks than with large-cap and mid-cap stocks. + In this algorithm, we will explore the performance of the small-capitalization investment. +

diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/02 Method.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/02 Method.html new file mode 100644 index 0000000..98c8577 --- /dev/null +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/02 Method.html @@ -0,0 +1,21 @@ +

+ The first step is coarse universe selection. We create an investment universe with stocks that have fundmental data and with a price greater than $5. +

+
+
return [x.Symbol for x in coarse if x.HasFundamentalData and x.Price > 5]
+
+
+

In fine universe selection, we sort the stocks in the universe by the market capitalization and choose 10 stocks with the lowest market cap. +

+
+
def FineSelectionFunction(self, fine):
+    ''' Selects the stocks by lowest market cap '''
+    sorted_market_cap = sorted([x for x in fine if x.MarketCap > 0],
+        key=lambda x: x.MarketCap)
+
+    return [x.Symbol for x in sorted_market_cap[:self.count]]
+
+
+

+ In OnData(), we buy 10 stocks in the list of lowest market-cap. The portfolio is rebalanced every year. +

diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html new file mode 100644 index 0000000..b50f912 --- /dev/null +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/04 Source.html b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/04 Source.html new file mode 100644 index 0000000..b33e5d2 --- /dev/null +++ b/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/01 Introduction.html b/04 Strategy Library/29 Term Structure Effect in Commodities/01 Introduction.html new file mode 100644 index 0000000..aa441da --- /dev/null +++ b/04 Strategy Library/29 Term Structure Effect in Commodities/01 Introduction.html @@ -0,0 +1,3 @@ +

+ The term structure of commodities usually refers to the difference between futures prices of different maturities at a given time point. The shape of the futures curve is essential to commodity hedgers and speculators as futures price serves as a forecast of future spot price. The futures price curve contains the information about futures supply and demand conditions. This algorithm will examine the role of term structure signals for the design of profitable trading strategies in commodity futures markets. +

diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/02 Method.html b/04 Strategy Library/29 Term Structure Effect in Commodities/02 Method.html new file mode 100644 index 0000000..616312c --- /dev/null +++ b/04 Strategy Library/29 Term Structure Effect in Commodities/02 Method.html @@ -0,0 +1,61 @@ +

Concepts of Futures

+

+ Before starting the algorithm, we first introduce a few concepts related to commodity futures. Backwardation is defined as conditions when the futures price is below the current spot price and contango as conditions when the futures price is above the current spot price. The futures term structure curve is a representation of the backwardation/contango rate for the different maturities of futures contracts. This price gap between different maturity contracts is quantified as the roll return. + The contango/backwardation rates are calculated by taking the price difference between the spot market price and the futures contract price. This difference can be expressed + as a percentage over the time to expiration and then annualised to calculate an annual roll return. +

+\[R_t = \left[ln(P_{t,n})-ln(P_{t,d})\right]\times\frac{365}{N_{t,d}-N_{t,n}}\] +

+ Where \(P_{t,n}\) is the price of the nearest-to-maturity contract at time t. \(P_{t,d}\) is the price of the distant contract at time t. \(N_{t,n}\) is the number of days between time t and the maturity of the nearby contract and \(N_{t,d}\) is the number of days between time t and the maturity of the distant contract. +

+

Calculation of Roll Return

+

+ To calculate the roll return, first we sort the future chain by expiry and select the first two contracts as the nearest-to-maturity contract and the the distant contract. +

+
+
for symbol, chain in self.chains.items():
+    contracts = sorted(chain, key = lambda x: x.Expiry)
+    # R = (log(Pn) - log(Pd)) * 365 / (Td - Tn)
+    # R - Roll returns
+    # Pn - Nearest contract price
+    # Pd - Distant contract price
+    # Tn - Nearest contract expire date
+    # Pd - Distant contract expire date
+    near_contract = contracts[0]
+    distant_contract = contracts[-1]
+    price_near = near_contract.LastPrice if near_contract.LastPrice>0 else 0.5*float(near_contract.AskPrice+near_contract.BidPrice)
+    price_distant = distant_contract.LastPrice if distant_contract.LastPrice>0 else 0.5*float(distant_contract.AskPrice+distant_contract.BidPrice)
+    if distant_contract.Expiry == near_contract.Expiry:
+        self.Debug("ERROR: Near and distant contracts have the same expiry!" + str(near_contract))
+        return
+    expire_range = 365 / (distant_contract.Expiry - near_contract.Expiry).days
+    roll_returns[symbol] = (np.log(float(price_near)) - np.log(float(price_distant)))*expire_range
+
+
+

Backwardation and Contango

+

+ In the next step, we will split the futures based on backwardation and contango. If the roll return is greater than 0, the term structure of commodity futures prices + is downward-sloping and so that the market is in backwardation. Conversely, a negative roll return signals an upward-sloping price curve and a contangoed market. +

+
+
positive_roll_returns = { symbol: returns for symbol, returns in roll_returns.items() if returns > 0 }
+negative_roll_returns = { symbol: returns for symbol, returns in roll_returns.items() if returns < 0 }
+backwardation = sorted(positive_roll_returns , key = lambda x: positive_roll_returns[x], reverse = True)[:quintile]
+contango = sorted(negative_roll_returns , key = lambda x: negative_roll_returns[x])[:quintile]
+
+
+

Algorithm Trade

+

+ The algorithm buys 20% of commodities with the highest roll-returns and shorts the 20% of commodities with the lowest roll-returns and holds the long-short positions for one month. +

+
+
+for short_symbol in contango:
+    sort = sorted(self.chains[short_symbol], key = lambda x: x.Expiry)
+    self.SetHoldings(sort[1].Symbol, -0.5/count)
+
+for long_symbol in backwardation:
+    sort = sorted(self.chains[long_symbol], key = lambda x: x.Expiry)
+    self.SetHoldings(sort[1].Symbol, 0.5/count)
+  
+
diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html new file mode 100644 index 0000000..f820ca9 --- /dev/null +++ b/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html @@ -0,0 +1,17 @@ +

Algorithm

+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/04 References.html b/04 Strategy Library/29 Term Structure Effect in Commodities/04 References.html new file mode 100644 index 0000000..149276a --- /dev/null +++ b/04 Strategy Library/29 Term Structure Effect in Commodities/04 References.html @@ -0,0 +1,9 @@ + +
    +
  1. + Fuertes, Ana-Maria and Miffre, Joëlle and Rallis, Georgios, Tactical Allocation in Commodity Futures Markets: Combining Momentum and Term Structure Signals (April 22, 2010). Journal of Banking and Finance 34, 2530-2548. Online Copy +
  2. +
  3. + Jez Liberty, Roll Yield and Commodity Yield Curve (July 19th, 2010). Automated Trading System Online Copy +
  4. +
diff --git a/04 Strategy Library/29 Term Structure Effect in Commodities/05 Source.html b/04 Strategy Library/29 Term Structure Effect in Commodities/05 Source.html new file mode 100644 index 0000000..f270488 --- /dev/null +++ b/04 Strategy Library/29 Term Structure Effect in Commodities/05 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/01 Introduction.html b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/01 Introduction.html new file mode 100644 index 0000000..8af2089 --- /dev/null +++ b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/01 Introduction.html @@ -0,0 +1,6 @@ +

+ This algorithm will combine the term structure effect and + the momentum effect to exploit the trading signals in commodity futures. + The momentum strategy goes long commodity futures with the highest one-month momentum and shorts on futures with the lowest one-month momentum. Signals are based on the historical return. + While the portfolio in term structure strategy is created with futures contracts in deep contango and backwardation. It goes long commodities with the highest roll-returns and short commodities with the lowest roll-returns and holds the long-short positions for one month. +

diff --git a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/02 Method.html b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/02 Method.html new file mode 100644 index 0000000..59d56bb --- /dev/null +++ b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/02 Method.html @@ -0,0 +1,62 @@ +

Roll Return

+

+ The universe is created with 22 commodity futures. For multiple commodities, we save the future chain of each commodity in dictionary self.chains. + First, we compute the roll-returns at the start of each month and sort the roll-return list. 1/3 breakpoints are used to split the cross-section of futures contracts into 3 portfolios, labeled Low, Med and High. For the formula of the roll-return, please see Term Structure Effect in Commodities. + Contracts fall into Med level are eliminated from the universe. Next we'll calculate the mean return of contracts in High and Low. +

+
+
+roll_return = {}
+for symbol, chain in self.chains.items():
+    contracts = sorted(chain, key = lambda x: x.Expiry)
+    expiry_nearest = contracts[0].Expiry
+    price_nearest = float(contracts[0].LastPrice) if contracts[0].LastPrice>0 else 0.5*float(contracts[0].AskPrice+contracts[0].BidPrice)
+    for x in contracts[1:]:
+        roll_return[x] = (price_nearest-float(x.LastPrice))*365 / (x.Expiry-expiry_nearest).days
+sorted_by_roll_return = sorted(roll_return, key = lambda x: roll_return[x], reverse =True)
+tertile = floor(1/3*len(sorted_by_roll_return))
+high = sorted_by_roll_return[:tertile]
+low = sorted_by_roll_return[-tertile:]
+
+
+

Mean Return

+

+ The second filter is the historical mean return. We sort the contracts in the High portfolio into two sub-portfolios (High-Winner and High-Loser) based on the mean return of the commodities over the past one month. +High-Winner is thus made of the commodities that have both the highest roll-returns at the time of portfolio construction and the best past performance. +Similarly, we sort the commodities in the Low portfolio into two sub-portfolios (Low-Winner and Low-Loser) based on their mean return over the past one months. Low-Loser contains, therefore, commodities that have both the lowest roll-returns at the time of portfolio construction and the worst past performance. +

+
+
+mean_return_high = {}
+for i in high:
+    hist = self.History(i.Symbol, timedelta(days = 21), Resolution.Minute)
+    if hist.empty:
+        continue
+    hist_close = hist['close'][i.Expiry][i.Symbol.Value]
+    mean_return_high[i] = np.mean(hist_close.pct_change())
+high_winners = sorted(mean_return_high, key = lambda x: mean_return_high[x], reverse=True)[:int(len(high)*0.5)]
+
+mean_return_low = {}
+for i in low:
+    hist = self.History(i.Symbol, timedelta(days = 21), Resolution.Minute)
+    if hist.empty:
+        continue
+    hist_close = hist['close'][i.Expiry][i.Symbol.Value]
+    mean_return_low[i] = np.mean(hist_close.pct_change())
+low_losers = sorted(mean_return_low, key = lambda x: mean_return_low[x], reverse=True)[-int(len(low)*0.5):]
+
+
+

+The combined strategy buys the High-Winner portfolio, shorts the Low-Loser portfolio and holds this position for one month. At the start of the next month, the strategy liquidates the contracts invested and rebalances the portfolio. +

+
+
+short_weight = 0.5/len(low_losers)
+for short in low_losers:
+    self.SetHoldings(short.Symbol, -short_weight)
+
+long_weight = 0.5/len(high_winners)
+for long in high_winners:
+    self.SetHoldings(long.Symbol, long_weight)
+
+
diff --git a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html new file mode 100644 index 0000000..b781228 --- /dev/null +++ b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/04 Source.html b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/04 Source.html new file mode 100644 index 0000000..be5436f --- /dev/null +++ b/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/01 Introduction.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/01 Introduction.html new file mode 100644 index 0000000..bad6aeb --- /dev/null +++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/01 Introduction.html @@ -0,0 +1,10 @@ +

+ Book-to-market ratio is used to find the value of a company by comparing the book value of a firm to its market value. The definition of the book-to-market ratio is + \[Book\ to\ Market \ Ratio=\frac{Common\ Shareholders \ Equity}{Market \ Cap}=\frac{book \ value \ per \ share}{Market \ price \ per \ share}\] + Book value represents a company's assets minus its liabilities and sometimes is referred to as shareholders' equity. + Price-to-Book Ratio is defined as + \[Price \ to \ Book\ Ratio=\frac{Market \ price \ per \ share}{book \ value \ per \ share}\] + Therefore, we can see the Book-to-market ratio is the inverse of the P/B ratio. + The book-to-market ratio suggests how much investors are paying against each dollar of book value in the balance sheet. + The bigger the ratio is, the more fundamentally cheap is the investigated company. This algorithm will create the portfolio with this factor. +

diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/02 Method.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/02 Method.html new file mode 100644 index 0000000..2af5ef5 --- /dev/null +++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/02 Method.html @@ -0,0 +1,27 @@ +

+ To construct the universe, first we eliminate stocks which don't have fundmental data. In FineSelectionFunction, + we calculate the market cap with PE ratio, earning per shares and shares outstanding and assign the property MarketCap + to each fine fundamental object. The universe is narrowed to top 20% companies with the highest market cap. +

+

+ According to the algorithm, the portfolio is weighted based on market cap. We calculate the weight in FineSelectionFunction and save + them in self.weights. +

+
+
+fine = [x for x in fine if (x.ValuationRatios.PBRatio > 0)]
+for i in fine:
+    i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
+top_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)[:int(len(fine)*0.2)]
+top_bm = sorted(top_market_cap, key = lambda x: 1 / x.ValuationRatios.PBRatio, reverse=True)[:int(len(top_market_cap)*0.2)]
+self.sorted_by_bm = [i.Symbol for i in top_bm]
+total_market_cap = np.sum([i.MarketCap for i in top_bm])
+self.weights = {}
+for i in top_bm:
+    self.weights[str(i.Symbol)] = i.MarketCap/total_market_cap
+return self.sorted_by_bm
+
+
+

+In the next step, we sort the stocks with the inverse of P/B ratio by descending order. Quintile portfolios are then formed based on the Book-to-Market ratio and the highest quintile is held for one year. +

diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html new file mode 100644 index 0000000..9029e2c --- /dev/null +++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/04 Summary.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/04 Summary.html new file mode 100644 index 0000000..7d4d947 --- /dev/null +++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/04 Summary.html @@ -0,0 +1,9 @@ +

+The portfolio underperforms relatively to the benchmark, S&P 500, during the backtest period. +

+

+In general, stocks that have a low B/P ratio are considered to be value stocks, and similarly, stocks that have a high B/P ratio are referred to as growth stocks. +

+

+During a bull market, which is associated with high GDP growth, value stocks tend to underperform growth stocks, as investors are optimistic about future earnings growth. +

diff --git a/04 Strategy Library/31 Book-to-Market Value Anomaly/05 Source.html b/04 Strategy Library/31 Book-to-Market Value Anomaly/05 Source.html new file mode 100644 index 0000000..cd8d0fa --- /dev/null +++ b/04 Strategy Library/31 Book-to-Market Value Anomaly/05 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/32 Gold Market Timing/01 Introduction.html b/04 Strategy Library/32 Gold Market Timing/01 Introduction.html new file mode 100644 index 0000000..af1149d --- /dev/null +++ b/04 Strategy Library/32 Gold Market Timing/01 Introduction.html @@ -0,0 +1,3 @@ +

+Gold plays an essential role as a diversifier due to its low or negative correlation to other asset classes. We explore "The Fed Model," a theory that bonds can be used to judge whether the U.S. stock market is fairly valued and use this to determine entry and exit points for gold. +

diff --git a/04 Strategy Library/32 Gold Market Timing/02 Method.html b/04 Strategy Library/32 Gold Market Timing/02 Method.html new file mode 100644 index 0000000..7aaeaaf --- /dev/null +++ b/04 Strategy Library/32 Gold Market Timing/02 Method.html @@ -0,0 +1,54 @@ +

Fed Model

+

+ Historically, the S&P 500 earning yield has a strong correlation with the 10-year Treasury note. There is the theory that if the forward earnings yield of the S&P 500 is higher than the 10-year government bond yield, stocks are undervalued and vice versa. +

+

+ We import the custom fundamental data of government 10-year bond yield and S&P 500 earnings yield from Quandl. +

+
+
+# United States Government 10-Year Bond Yield
+self.bond_yield = "YC/USA10Y"
+# S&P 500 Earnings Yield. Earnings Yield = trailing 12 month earnings divided by index price
+self.earnings_yield = "MULTPL/SP500_EARNINGS_YIELD_MONTH"
+# Gold Prices (Daily) - Currency USD (All values are national currency units per troy ounce)
+self.gold = "WGC/GOLD_DAILY_USD"
+# Add custom quandl data
+self.AddData(QuandlRate, self.bond_yield, Resolution.Daily, DateTimeZone.Utc, True)
+self.AddData(QuandlValue, self.earnings_yield, Resolution.Daily, DateTimeZone.Utc, True)
+self.AddData(QuandlValue, self.gold, Resolution.Daily, DateTimeZone.Utc, True)
+
+
+ +

Gold Investment

+

+ With gold having a strong negative correlation to equity valuations, then gold prices will rise along with earnings yield, bond yield, and inflation. Taking the above relationship a step further, this algorithm goes long gold when the Fed model shows the market undervalued otherwise liquidate the portfolio. The undervalued market is defined as the earning yield is higher than the bond yield and their ratio is at least 2. Rebalancing is done on a monthly basis. +

+
+
+def Rebalance(self):
+    if self.Securities[self.earnings_yield].Price == 0 or self.Securities[self.bond_yield].Price == 0: return
+    # Buy gold if E/P is higher than the bond yield and their ratio is at least 2
+    if self.Securities[self.earnings_yield].Price > self.Securities[self.bond_yield].Price * Decimal(2):
+        self.SetHoldings(self.gold, 0.9)
+    else:
+        self.Liquidate()
+
+
+

Custom Charting

+

+ To demonstrate the relationship between government 10-year bond yield and S&P 500 earnings yield, we plot the two series in equity chart. +

+
+
+def Initialize(self):
+    yieldPlot = Chart("Yield Plot")
+    yieldPlot.AddSeries(Series("BondYield", SeriesType.Line, 0))
+    yieldPlot.AddSeries(Series("EarningsYield", SeriesType.Line, 0))
+    self.AddChart(yieldPlot)
+def OnData(self, data):
+    if data.ContainsKey(self.bond_yield) and data.ContainsKey(self.earnings_yield):
+        self.Plot("Yield Plot", "BondYield", data[self.bond_yield].Price)
+        self.Plot("Yield Plot", "EarningsYield", data[self.earnings_yield].Price)
+
+
diff --git a/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html b/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html new file mode 100644 index 0000000..c74f50c --- /dev/null +++ b/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/32 Gold Market Timing/04 Source.html b/04 Strategy Library/32 Gold Market Timing/04 Source.html new file mode 100644 index 0000000..bcb7163 --- /dev/null +++ b/04 Strategy Library/32 Gold Market Timing/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/33 Paired Switching/01 Introduction.html b/04 Strategy Library/33 Paired Switching/01 Introduction.html new file mode 100644 index 0000000..2175d7b --- /dev/null +++ b/04 Strategy Library/33 Paired Switching/01 Introduction.html @@ -0,0 +1,3 @@ +

+ Paired switching is a strategy where in its simplest form, investors pick two assets that are negatively correlated and periodically switch position based on their relative performance. The idea behind this strategy is that if the assets are negatively correlated, then a traditional mixed portfolio might lead to a lower return than the return for the individual assets. If the negative correlation exists, switching positions could improve the performance of a portfolio where two assets are statically weighted. +

\ No newline at end of file diff --git a/04 Strategy Library/33 Paired Switching/02 Method.html b/04 Strategy Library/33 Paired Switching/02 Method.html new file mode 100644 index 0000000..61d91f6 --- /dev/null +++ b/04 Strategy Library/33 Paired Switching/02 Method.html @@ -0,0 +1,26 @@ +

+ After two negatively correlated assets are determined, we will analyze them on a quarterly basis. The analysis will consist of retrieving historical prices for the two assets and calculating their performances over the prior quarter. We will buy the asset that yields a higher return during the period. The position is held for one quarter, and then the analysis is repeated. +

+
+
+ def Rebalance(self):
+    self.months +=1
+    if(self.months%3==0):
+        history_call = self.History(self.Securities.Keys,timedelta(days=90))
+        if not history_call.empty:
+            first_bars = history_call.loc[self.first.Symbol.Value]
+            last_p1 = first_bars["close"].iloc[0]
+            second_bars = history_call.loc[self.second.Symbol.Value]
+            last_p2 = second_bars["close"].iloc[0]
+            first_performance = (float(self.Securities[self.first.Symbol].Price) - float(last_p1))/(float(self.Securities[self.first.Symbol].Price))
+            second_performance = (float(self.Securities[self.second.Symbol].Price) - float(last_p2))/(float(self.Securities[self.second.Symbol].Price))
+            if(first_performance > second_performance):
+                if(self.Securities[self.second.Symbol].Invested==True):
+                    self.Liquidate(self.second.Symbol)
+                self.SetHoldings(self.first.Symbol,1)
+            else:
+                if(self.Securities[self.first.Symbol].Invested==True):
+                    self.Liquidate(self.first.Symbol)
+                self.SetHoldings(self.second.Symbol,1)
+
+
diff --git a/04 Strategy Library/33 Paired Switching/03 Algorithm.html b/04 Strategy Library/33 Paired Switching/03 Algorithm.html new file mode 100644 index 0000000..16a1ec2 --- /dev/null +++ b/04 Strategy Library/33 Paired Switching/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/33 Paired Switching/04 Source.html b/04 Strategy Library/33 Paired Switching/04 Source.html new file mode 100644 index 0000000..759542a --- /dev/null +++ b/04 Strategy Library/33 Paired Switching/04 Source.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/01 Introduction.html b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/01 Introduction.html new file mode 100644 index 0000000..fcda95b --- /dev/null +++ b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/01 Introduction.html @@ -0,0 +1,4 @@ +

+ Momentum effect is an anomaly in nearly every market. However, if a stock in the winner group is in the final stages of overreaction, it is not the best long opportunity because of the high probability of its reversal, and therefore profit reduction. Similarly, in the loser group, a stock which is in the final stages of overreaction is also not the best short opportunity because its reversal would lower the profit of short selling within a short time. Based on this logic, + this momentum-reversal strategy seeks to buy winners and sell losers that are less likely to be in the final stages of overreaction. +

diff --git a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/02 Method.html b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/02 Method.html new file mode 100644 index 0000000..522b29b --- /dev/null +++ b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/02 Method.html @@ -0,0 +1,88 @@ +

+ All stocks on NYSE and NASDAQ are used as the investment universe. We create a class to save all variables for each symbol. +

+
+
+class SymbolData:
+    def __init__(self, symbol):
+        self.symbol = symbol
+        self.window = RollingWindow[float](13)
+        self.GARR_ratio = None
+        self.yearly_return = None
+
+
+

+ To get the value for the above variables, we save the stock price at the start of each month in the rolling window for the last 12 months and calculate the monthly return and the yearly return. + Then we can compute the last month's geometric average rate of return (GARR) and the previous 12-month GARR. The formulas are as follows +

+\[GARR_{last\ 12\ months}=(1+R_1)^{1/12}\cdot(1+R_2)^{1/12}\cdot\cdot\cdot(1+R_{11})^{1/12}\cdot(1+R_{12})^{1/12}-1\] +\[GARR_{last\ months}=(1+R_{last\ month})^{1/12}-1\] +

+

+ We assign the value of two returns to each symbol in SymbolData class. All stocks are sorted based on their past 12-month return. + Stocks are then divided into 3 portfolios (top 30% - winner group, middle 40% and bottom 30% - loser group). In the winner group, stocks are further + classified into two categories: the return-increasing winner and return-decreasing winner using the ratio of last month's geometric average rate of return (GARR) over the last 12 month GARR. +

+\[GARR\ Ratio= \frac{GARR_{last\ months} }{GARR_{last\ 12\ months}}\] +
+
+def CoarseSelectionFunction(self, coarse):
+    if self.month_start:
+        self.coarse = True
+        coarse = [i for i in coarse if i.AdjustedPrice > 10]
+        for i in coarse:
+            if i.Symbol not in self.SymbolPrice:
+                self.SymbolPrice[i.Symbol] = SymbolData(i.Symbol)
+            self.SymbolPrice[i.Symbol].window.Add(float(i.AdjustedPrice))
+            if self.SymbolPrice[i.Symbol].window.IsReady:
+                price = np.array([i for i in self.SymbolPrice[i.Symbol].window])
+                returns = (price[:-1]-price[1:])/price[1:]
+                self.SymbolPrice[i.Symbol].yearly_return = (price[0]-price[-1])/price[-1]
+                GARR_12 = np.prod([(1+i)**(1/12) for i in returns])-1
+                GARR_1 = (1+returns[0])**(1/12)-1
+                self.SymbolPrice[i.Symbol].GARR_ratio = GARR_1 / GARR_12
+
+
+ +

+ The decreasing-return winner group contains 13 stocks in winner group with the lowest GARR Ratio and vice-versa for the increasing-return winner group. + The loser group is divided into the increasing-return loser and the decreasing-return loser groups using a similar methodology. The return-increasing loser group + contains 15 stocks in loser group with the highest GARR Ratio. +

+
+
+ReadySymbolPrice = {symbol: SymbolData for symbol, SymbolData in self.SymbolPrice.items() if SymbolData.window.IsReady}
+if ReadySymbolPrice and len(ReadySymbolPrice)>50:
+    # sort stocks in coarse by last 12-month return
+    sorted_by_return = sorted(ReadySymbolPrice, key = lambda x: ReadySymbolPrice[x].yearly_return)
+    # top 30% with the highest 12-month return goes into winner group
+    winner = sorted_by_return[:int(len(sorted_by_return)*0.3)]
+    # bottom 30% with the lowest 12-month return goes into loser group
+    loser = sorted_by_return[-int(len(sorted_by_return)*0.3):]
+    self.decrease_winner = sorted(winner, key = lambda x: ReadySymbolPrice[x].GARR_ratio)[:15]
+    self.increase_loser = sorted(loser, key = lambda x: ReadySymbolPrice[x].GARR_ratio)[-15:]
+    return self.decrease_winner+self.increase_loser
+
+
+

+The algorithm goes long stocks from the decreasing-return winner group and short stocks from the increasing-return loser group. The portfolio is created as equally weighted and rebalanced on a monthly basis. +

+
+
+def OnData(self, data):
+    if self.month_start and self.coarse:
+        self.month_start = False
+        self.coarse = False
+        if all([self.decrease_winner, self.increase_loser]):
+            stocks_invested = [x.Key for x in self.Portfolio]
+            for i in stocks_invested:
+                if i not in self.decrease_winner+self.increase_loser:
+                    self.Liquidate(i)
+            short_weight = 0.5/len(self.increase_loser)
+            for j in self.increase_loser:
+                self.SetHoldings(j, -short_weight)
+            long_weight = 0.5/len(self.decrease_winner)
+            for i in self.decrease_winner:
+                self.SetHoldings(i, long_weight)
+
+
diff --git a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html new file mode 100644 index 0000000..b3b0694 --- /dev/null +++ b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/04 Source.html b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/04 Source.html new file mode 100644 index 0000000..0b1779c --- /dev/null +++ b/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/35 Turn of the Month in Equity Indexes/01 Introduction.html b/04 Strategy Library/35 Turn of the Month in Equity Indexes/01 Introduction.html new file mode 100644 index 0000000..acf9adb --- /dev/null +++ b/04 Strategy Library/35 Turn of the Month in Equity Indexes/01 Introduction.html @@ -0,0 +1,3 @@ +

+ The turn of the month is an effect on stock indices which states that stocks will rise during the last day before the end of the month and the first three days of each month. Researchers believe this significance comes as a result of pension funds receiving cash flows and reinvesting in the market, along with this period being a natural point for portfolio rebalancing between retail and professional investors. This algorithm is an approximation of the following strategy. +

diff --git a/04 Strategy Library/35 Turn of the Month in Equity Indexes/02 Method.html b/04 Strategy Library/35 Turn of the Month in Equity Indexes/02 Method.html new file mode 100644 index 0000000..2f57e97 --- /dev/null +++ b/04 Strategy Library/35 Turn of the Month in Equity Indexes/02 Method.html @@ -0,0 +1,28 @@ +

+ We start by creating a scheduled event, MonthEnd(), that will trigger the algorithm to buy SPY. +

+
+
self.Schedule.On(
+    self.DateRules.MonthEnd(self.spy),
+    self.TimeRules.AfterMarketOpen(self.spy, 1),
+    self.Purchase)
+
+
+

+ We will purchase the SPY immediately, and we will wait 3 trading days, as suggested, before liquidating our portfolio. The boolean self.Portfolio.Invested will help us wait 3 days before executing the liquidate order in OnData(). The equity index is bought and sold every month. +

+
+
def Purchase(self):
+    ''' Immediately purchases the ETF at market opening '''
+    self.SetHoldings(self.spy, 1)
+    self.days = 0
+
+def OnData(self, data):
+    if self.Portfolio.Invested:
+        self.days += 1
+
+        # Liquidates after 3 days
+        if self.days > 3:
+            self.Liquidate(self.spy, 'Liquidate after 3 days')
+
+
\ No newline at end of file diff --git a/04 Strategy Library/35 Turn of the Month in Equity Indexes/03 Algorithm.html b/04 Strategy Library/35 Turn of the Month in Equity Indexes/03 Algorithm.html new file mode 100644 index 0000000..ddaf1fb --- /dev/null +++ b/04 Strategy Library/35 Turn of the Month in Equity Indexes/03 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/35 Turn of the Month in Equity Indexes/04 Source.html b/04 Strategy Library/35 Turn of the Month in Equity Indexes/04 Source.html new file mode 100644 index 0000000..3d56eeb --- /dev/null +++ b/04 Strategy Library/35 Turn of the Month in Equity Indexes/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html b/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html new file mode 100644 index 0000000..c5889c0 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html @@ -0,0 +1,3 @@ +

+ The relationship between return and risk has long been a popular topic for research. Investors have been seeking financial models that quantify risk and use it to estimate the expected return on equity. The Fama French five-factor model, improved from the Fama French three-factor model, is one of the most classic models (Fama and French, 2015). In this post, we will discuss this model and develop a stock-picking strategy based on it. +

\ No newline at end of file diff --git a/04 Strategy Library/353 Fama French Five Factors/02 Method.html b/04 Strategy Library/353 Fama French Five Factors/02 Method.html new file mode 100644 index 0000000..1fd2f52 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/02 Method.html @@ -0,0 +1,93 @@ +

+ The Fama French five-factor model was proposed in 2014 and is adapted from the Fama French three-factor model (Fama and French, 2015). It builds upon the dividend discount model which states that the value of stocks today is dependent upon future dividends. + Fama and French add two factors, investment and profitability, to the dividend discount model to better capture the relationship between risk and return. + The model is as follows +

+\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML + \beta_r RMW + \beta_c CMA\] + +

+where +

+
    +
  • MKT is the excess return of the market. It is the return on the value-weighted market portfolio.
  • +
  • SMB is the return on a diversified portfolio of small-cap stocks minus the return on a diversified portfolio of big-cap stocks.
  • +
  • HML is the difference between the returns on diversified portfolios of stocks with high and low Book-to-Market ratios.
  • +
  • RMW is the difference between the returns on diversified portfolios of stocks with robust (high and steady) and weak (low) profitability.
  • +
  • CMA is the difference between the returns on diversified portfolios of the stocks of low and high investment firms, which we call conservative and aggressive. Here, low/high investment means reinvestment ratio is low/high.
  • +
+ +

+ Taking inspiration from the Fama French five-factor model, we can develop a multi-factor stock selection strategy that focuses on five factors: size, value, quality, profitability, and investment pattern. +

+ +

+ First, we run a Coarse Selection to drop equities which have no fundamental data or have too low prices. Then we select those with the highest dollar volume. + Note that a useful technique is used here: we can use Universe.Unchanged to remain the same universe when there is no necessary change, which greatly speeds up the backtest. +

+ +
+
+def CoarseSelectionFunction(self, coarse):
+    '''Drop securities which have no fundamental data or have too low prices.
+    Select those with highest by dollar volume'''
+
+    if self.Time < self.nextLiquidate:
+        return Universe.Unchanged
+
+    selected = sorted([x for x in coarse if x.HasFundamentalData and x.Price > 5],
+                        key=lambda x: x.DollarVolume, reverse=True)
+
+    return [x.Symbol for x in selected[:self.num_coarse]]   
+
+
+ +

+ Secondly, in Fine Selection, we use the terms TotalEquity, BookValuePerShare, OperationProfitMargin, ROE, and TotalAssetsGrowth to account for the five factors, respectively. We then calculate a custom ranking metric for each stock using these five terms. Our algorithm will go long in the five stocks with the highest scores and short the five stocks with the lowest scores. +

+
+
+def FineSelectionFunction(self, fine):
+    '''Select securities with highest score on Fama French 5 factors'''
+
+    # Select stocks with these 5 factors:
+    # MKT -- Book value per share: Value
+    # SMB -- TotalEquity: Size
+    # HML -- Operation profit margin: Quality
+    # RMW -- ROE: Profitability
+    # CMA -- TotalAssetsGrowth: Investment Pattern
+    filtered = [x for x in fine if x.ValuationRatios.BookValuePerShare
+                                and x.FinancialStatements.BalanceSheet.TotalEquity
+                                and x.OperationRatios.OperationMargin.Value
+                                and x.OperationRatios.ROE
+                                and x.OperationRatios.TotalAssetsGrowth]
+
+    # Sort by factors
+    sortedByMkt = sorted(filtered, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
+    sortedBySmb = sorted(filtered, key=lambda x: x.FinancialStatements.BalanceSheet.TotalEquity.Value, reverse=True)
+    sortedByHml = sorted(filtered, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
+    sortedByRmw = sorted(filtered, key=lambda x: x.OperationRatios.ROE.Value, reverse=True)
+    sortedByCma = sorted(filtered, key=lambda x: x.OperationRatios.TotalAssetsGrowth.Value, reverse=False)
+
+    stockBySymbol = {}
+
+    # Get the rank based on 5 factors for every stock
+    for index, stock in enumerate(sortedByMkt):
+        mktRank = self.beta_m * index
+        smbRank = self.beta_s * sortedBySmb.index(stock)
+        hmlRank = self.beta_h * sortedByHml.index(stock)
+        rmwRank = self.beta_r * sortedByRmw.index(stock)
+        cmaRank = self.beta_c * sortedByCma.index(stock)
+        avgRank = np.mean([mktRank,smbRank,hmlRank,rmwRank,cmaRank])
+        stockBySymbol[stock.Symbol] = avgRank
+
+    sorted_dict = sorted(stockBySymbol.items(), key = lambda x: x[1], reverse = True)
+    symbols = [x[0] for x in sorted_dict]
+
+    # Pick the stocks with the highest scores to long
+    self.longSymbols= symbols[:self.num_long]
+    # Pick the stocks with the lowest scores to short
+    self.shortSymbols = symbols[-self.num_short:]
+
+    return self.longSymbols + self.shortSymbols   
+
+
diff --git a/04 Strategy Library/353 Fama French Five Factors/03 Results.html b/04 Strategy Library/353 Fama French Five Factors/03 Results.html new file mode 100644 index 0000000..4d05305 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/03 Results.html @@ -0,0 +1,8 @@ +

+ In this example, the portfolio is rebalanced every 30 days and the backtest period runs from Jan 2010 to Aug 2019. You can improve upon this strategy by changing the fundamental factors, the weight of each factor and the rebalance frequency. +

+ +

+ The Fama French five-factor model provides a scientific way to measure asset pricing. For the five aspects that Fama and French mentioned, we used one possible combination in our backtest. We can see from the results that it achieves an annual rate of return around 5% with a max drawdown of 30% over 8 years. + These factors perhaps cannot capture a sufficient amount of information on the assets' pricing, and therefore, there are still many aspects can be improved (e.g. the weights of factors, a different set of factors for different kinds of equities,etc.) We encourage you to explore and create better algorithms upon this tutorial! +

\ No newline at end of file diff --git a/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html b/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html new file mode 100644 index 0000000..f3cdbee --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/04 Strategy Library/353 Fama French Five Factors/05 References.html b/04 Strategy Library/353 Fama French Five Factors/05 References.html new file mode 100644 index 0000000..4a09697 --- /dev/null +++ b/04 Strategy Library/353 Fama French Five Factors/05 References.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html new file mode 100644 index 0000000..ffa6192 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html @@ -0,0 +1,3 @@ +

+ This tutorial implements a strategy that trades stocks with low expected idiosyncratic skewness based on a paper by Boyer, Mitton and Vorkink (2009, hereafter BMV) published in The Review of Financial Studies. Our implementation narrows down our initial universe to liquid assets by selecting 200 stocks based on daily trading volume, price and whether the stock has fundamental data in our data library. We calculate the expected idiosyncratic skewness at the end of each month and sort our universe based on the calculated skewness. This implementation will long the bottom 5%, hold for the next month, and rebalance the portfolio monthly. The Sharpe ratio is 1.03 relative to S&P 500 (SPY) Sharpe ratio of 1.00 during the period of July 1, 2009 to July 30, 2019. +

\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html new file mode 100644 index 0000000..b49f79e --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html @@ -0,0 +1,7 @@ +

+ BMV tests recent theories that stocks with low idiosyncratic skewness should have high expected returns. For example, Mitton and Vorkink (2007) develop a model that some investors ("lotto investors") have a preference for positive skewness while others ("traditional investors") are mean-variance optimizers seeking to maximize the Sharpe ratio of their portfolios. Lotto investors accept lower average returns on stocks with high idiosyncratic skewness because they have a preference for stocks with lottery-like return properties. In equilibrium, markets clear at prices such that stocks with high idiosyncratic skewness have low expected returns, due to the different portfolio preferences of the two groups of investors. +

+ +

+ Despite the theoretical basis for the pricing effects of skewness preference, empirically testing the relation is not straightforward as expected skewness is difficult to measure. BMV accounts for the phenomenon that lagged skewness alone does not adequately forecast skewness by presenting a cross-sectional model of expected skewness using additional predictive variables. Using their model, they reaffirm the existing theory that expected idiosyncratic skewness and returns are negatively correlated. Notably, they find the Fama-French alpha of a low-expected-skewness quintile exceeds the alpha of a high-expected-skewness quintile by 1.00% per month. Furthermore, the Fama-MacBeth cross-sectional regressions have statistically significant, negative coefficients. Besides, BMV finds that the expected skewness helps explain how stocks with low idiosyncratic volatility have high expected returns. +

\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html new file mode 100644 index 0000000..31483b2 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html @@ -0,0 +1,3 @@ +

+ To execute our algorithm, we will use daily data from Kenneth French's Data Library that captures the Fama-French three factors for the period July 1, 2009 to June 30, 2019. The raw data is delivered in a zip file which is not directly importable into LEAN. We need to unzip the file and upload the CSV to a Github repository. All other data used for this algorithm, including stock price, volume, and market capitalization, are from QuantConnect's Data Library. In the original paper, BSV also includes firm-specific variables like momentum, turnover, and dummies of properties including Nasdaq-listed stocks, small-size, medium-size, industries. We can refer to this online technical appendix for descriptions of these variables. +

\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html new file mode 100644 index 0000000..fa80957 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html @@ -0,0 +1,50 @@ +

+ We can develop a model of estimated expected idiosyncratic skewness using Fama-French three factors. Lower expected idiosyncratic skewness will predict a higher alpha. We will let the investment horizon over which investors are hoping to experience an extreme positive outcome be 1 month. And, let S(t) denote the set of trading days in the current month, and let N(t) denote the number of days in this set. +

+ +

Step 1: Getting Fama-French three-factor regression residuals

+ +

+ Let \(\epsilon_{i,d}\) be the regression residual using the Fama and French (1993) three-factor model on day d for firm i, where the regression coefficients that define this residual are estimated using daily data for days in S(t) as the time-series regression below. +

+ +\[R_{i,d} - R_{f,d} = \alpha_i + \beta_i [R_{M,d} - R_{f,d}] + s_i SMB_{d} + h_i HML_{d} + \epsilon_{i,d}\] + +

+ for all day \(d \in S(t)\) and each \(i = 1,2,\dots,N\). +

+ +

Step 2: Estimating historical idiosyncratic moments

+ +

+ Let \(iv_{i,t}\) and \(is_{i,t}\) denote historical estimates of idiosyncratic volatility and skewness (respectively) for firm i using daily data for all days in S(t). We can then define \(iv_{i,t}\) and \(is_{i,t}\) as: +

+ +\[iv_{i,t} = \left( \frac{1}{N(t) - 1} \sum_{d\in S(t)} \epsilon_{i,d}^2 \right)^{1/2}\] + +\[is_{i,t} = \frac{1}{N(t) - 2} \frac{ \sum_{d\in S(t)} \epsilon_{i,d}^3 } { iv_{i,t}^{3/2} }\] + +

Step 3: Estimating expected idiosyncratic skewness

+ +

+ We need measures of expected skewness over a horizon of 1 month for firm i at the end of month t, \(E_t[is_{i,t+1}]\), rather than measures of historical skewness as defined in equation above. To model investor perceptions of expected skewness in a feasible manner, we first estimate cross-sectional regression separately at the end of each month t in our sample, +

+ +\[is_{i,t} = \beta_0^t + \beta_1^t is_{i,t-1} + \beta_2^t iv_{i,t-1} + \varepsilon_{i,t}\] + +

+ Superscripts on regression parameters are included to emphasize that we estimate these parameters using information observable at the end of month t. We then use the regression parameters from equation above, along with information observable at the end of each month t, to estimate expected skewness for each firm, +

+ +\[ E_t[is_{i,t+1}] = \beta_0^t + \beta_1^t is_{i,t} + \beta_2^t iv_{i,t} \] + +

+ This approach provides feasible estimates of each month's expected skewness and accounts for variation between historical moments and expected skewness across time. +

+ +

Step 4: Generating trading signals

+ +

+ At the end of each month, we use the results of equation above to sort stocks by expected idiosyncratic skewness. We construct our universe using the lowest 5% of expected skewness, and long our assets to construct a value-weighted portfolio. +

+ diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html new file mode 100644 index 0000000..0252ef9 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html @@ -0,0 +1,13 @@ +

+ Before the BMV paper was published in 2009, a number of theories on the pricing premium for stocks with idiosyncratic skewness existed, but lacked supporting empirical evidence of the relationship between idiosyncratic skewness and returns. BMV fills this void by estimating a model of predicted skewness and using predicted skewness to explain the cross-section of returns. The paper finds that lagged idiosyncratic volatility is a stronger predictor of skewness than lagged idiosyncratic skewness. +

+ +

+ In this implementation, we rely on idiosyncratic volatility and skewness to predict idiosyncratic skewness. Interested users can build from this implementation by trying the following extensions: +

+ +
    +
  1. Including a number of firm-specific variables to improve predictive power for expected idiosyncratic skewness; +
  2. Using different investment horizons such as 3 months, 6 months, 1 year; +
  3. Adding more lags in the time-series regression for both expected and historical idiosyncratic skewness. +
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html new file mode 100644 index 0000000..20f54ed --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
\ No newline at end of file diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html b/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html new file mode 100644 index 0000000..337cf0a --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html @@ -0,0 +1,11 @@ +
    +
  1. + Boyer B, Mitton T, Vorkink K. Expected idiosyncratic skewness. The Review of Financial Studies. 2009 Jun 3;23(1):169-202. Online Copy +
  2. +
  3. + Fama EF, French KR. Common risk factors in the returns on stocks and bonds. Journal of Financial Economics. 1993 Feb 1;33(1):3-56. Online Copy +
  4. +
  5. + Mitton T, Vorkink K. Equilibrium underdiversification and the preference for skewness. The Review of Financial Studies. 2007 Jan 29;20(4):1255-88. Online Copy +
  6. +
      diff --git a/04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV b/04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV new file mode 100644 index 0000000..ac04c74 --- /dev/null +++ b/04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV @@ -0,0 +1,24522 @@ +This file was created by CMPT_ME_BEME_RETS_DAILY using the 201906 CRSP database. +The Tbill return is the simple daily rate that, over the number of trading days +in the month, compounds to 1-month TBill rate from Ibbotson and Associates Inc. + +,Mkt-RF,SMB,HML,RF +19260701, 0.10, -0.24, -0.28, 0.009 +19260702, 0.45, -0.32, -0.08, 0.009 +19260706, 0.17, 0.27, -0.35, 0.009 +19260707, 0.09, -0.59, 0.03, 0.009 +19260708, 0.21, -0.36, 0.15, 0.009 +19260709, -0.71, 0.44, 0.56, 0.009 +19260710, 0.62, -0.50, -0.15, 0.009 +19260712, 0.04, 0.03, 0.54, 0.009 +19260713, 0.48, -0.26, -0.23, 0.009 +19260714, 0.04, 0.09, -0.48, 0.009 +19260715, -0.43, 0.54, -0.30, 0.009 +19260716, 0.53, 0.01, -0.57, 0.009 +19260717, 0.34, 0.43, -0.63, 0.009 +19260719, -0.01, 0.01, -0.49, 0.009 +19260720, -0.57, -0.23, 0.16, 0.009 +19260721, -0.60, 0.21, 0.31, 0.009 +19260722, -0.73, -0.30, -0.17, 0.009 +19260723, -0.02, 0.08, 0.06, 0.009 +19260724, -0.14, 0.44, -0.06, 0.009 +19260726, 0.53, -0.38, -0.25, 0.009 +19260727, 0.43, -0.45, 0.26, 0.009 +19260728, 1.09, 0.04, -0.28, 0.009 +19260729, 0.36, -0.61, -1.01, 0.009 +19260730, 0.14, -0.47, 0.55, 0.009 +19260731, 0.46, -0.12, -0.17, 0.009 +19260802, 0.84, -0.22, -0.03, 0.010 +19260803, 0.47, -0.27, -0.60, 0.010 +19260804, -0.36, 0.16, 0.25, 0.010 +19260805, -0.09, 0.01, 0.73, 0.010 +19260806, 0.68, 0.08, 0.16, 0.010 +19260807, 0.46, 0.08, -0.24, 0.010 +19260809, 0.21, -0.04, -0.26, 0.010 +19260810, -1.40, 0.34, 0.21, 0.010 +19260811, -0.57, 0.21, 0.34, 0.010 +19260812, 0.84, -0.77, 0.42, 0.010 +19260813, 0.58, -0.85, 0.25, 0.010 +19260814, 0.69, 0.15, -0.36, 0.010 +19260816, 0.07, 0.23, 0.70, 0.010 +19260817, -0.95, 0.34, 0.16, 0.010 +19260818, 0.26, 0.08, 0.04, 0.010 +19260819, -0.60, 0.12, 0.10, 0.010 +19260820, -0.20, -0.36, 0.42, 0.010 +19260821, 0.32, -0.06, 0.49, 0.010 +19260823, 0.49, -0.48, 0.62, 0.010 +19260824, -0.84, 0.50, -0.09, 0.010 +19260825, -0.32, -0.43, 0.28, 0.010 +19260826, 0.53, 0.09, 0.50, 0.010 +19260827, 0.35, 0.13, -0.39, 0.010 +19260828, 0.34, 0.15, -0.06, 0.010 +19260830, 0.30, 0.00, 0.42, 0.010 +19260831, 0.58, -0.52, -0.04, 0.010 +19260901, 0.55, 0.52, -0.08, 0.009 +19260902, -0.06, -0.07, 0.21, 0.009 +19260903, 0.50, -0.30, 0.03, 0.009 +19260907, 0.59, -0.25, -0.24, 0.009 +19260908, -0.51, -0.10, 0.08, 0.009 +19260909, -0.07, 0.16, 0.26, 0.009 +19260910, -0.83, 0.09, -0.13, 0.009 +19260911, -0.44, 0.32, 0.13, 0.009 +19260913, -0.03, -0.11, 0.50, 0.009 +19260914, 0.90, -0.62, 0.09, 0.009 +19260915, -0.21, 0.40, -0.19, 0.009 +19260916, -0.18, -0.33, 0.10, 0.009 +19260917, -1.01, -0.16, -0.28, 0.009 +19260918, 0.70, -0.28, -0.11, 0.009 +19260920, -0.64, 0.03, -0.01, 0.009 +19260921, 0.30, -0.42, 0.19, 0.009 +19260922, -0.13, 0.05, -0.01, 0.009 +19260923, 0.26, -0.16, 0.06, 0.009 +19260924, 0.62, -0.19, -0.03, 0.009 +19260925, 0.21, 0.02, -0.56, 0.009 +19260927, -0.12, 0.14, 0.39, 0.009 +19260928, 0.00, -0.02, -0.35, 0.009 +19260929, -0.30, 0.22, -0.19, 0.009 +19260930, 0.30, -0.22, 0.06, 0.009 +19261001, 0.73, -0.27, -0.23, 0.013 +19261002, -0.10, -0.02, -0.08, 0.013 +19261004, -1.40, -0.10, -0.10, 0.013 +19261005, -1.10, 0.44, -0.72, 0.013 +19261006, -0.56, -0.69, -0.28, 0.013 +19261007, -0.77, 0.32, 0.30, 0.013 +19261008, 0.59, -0.36, 0.58, 0.013 +19261009, -0.96, 0.44, -0.05, 0.013 +19261011, -0.69, -0.08, -0.16, 0.013 +19261013, 0.69, -0.31, -0.04, 0.013 +19261014, 0.97, -0.47, 1.08, 0.013 +19261015, -1.83, 0.13, -0.29, 0.013 +19261016, -0.73, -0.34, 0.42, 0.013 +19261018, 0.70, -0.16, 0.46, 0.013 +19261019, -1.06, 0.40, -0.54, 0.013 +19261020, -0.25, -0.59, -1.17, 0.013 +19261021, 1.53, -0.12, 0.55, 0.013 +19261022, -0.40, 0.44, 0.20, 0.013 +19261023, 0.54, 0.50, 0.19, 0.013 +19261025, -0.10, 0.35, -0.03, 0.013 +19261026, 0.32, 0.02, 0.30, 0.013 +19261027, 1.00, -0.47, 0.19, 0.013 +19261028, -0.08, 0.69, 0.20, 0.013 +19261029, -0.06, 0.01, -0.33, 0.013 +19261030, -0.25, 0.20, 0.25, 0.013 +19261101, 0.46, -0.11, -0.43, 0.013 +19261103, 0.20, -0.24, -0.28, 0.013 +19261104, 0.59, -0.15, 0.69, 0.013 +19261105, 0.07, -0.09, 0.23, 0.013 +19261106, 0.16, -0.29, 0.05, 0.013 +19261108, 0.52, -0.07, 0.08, 0.013 +19261109, 0.13, 0.29, -0.49, 0.013 +19261110, -0.60, 0.15, 0.09, 0.013 +19261111, 0.67, 0.03, 0.09, 0.013 +19261112, 0.24, -0.03, -0.37, 0.013 +19261113, -0.24, 0.12, -0.16, 0.013 +19261115, 0.37, 0.28, -0.25, 0.013 +19261116, 0.15, -0.31, -0.06, 0.013 +19261117, -0.35, -0.35, 0.46, 0.013 +19261118, -0.48, 0.17, 0.20, 0.013 +19261119, -0.64, 0.56, 0.07, 0.013 +19261120, 0.40, 0.01, 0.12, 0.013 +19261122, 0.57, 0.16, -0.20, 0.013 +19261123, 0.33, 0.02, 0.20, 0.013 +19261124, 0.08, -0.22, 0.20, 0.013 +19261126, 0.20, -0.02, 0.03, 0.013 +19261127, -0.15, -0.04, -0.28, 0.013 +19261129, -0.37, -0.13, 0.06, 0.013 +19261130, 0.26, 0.03, -0.50, 0.013 +19261201, 0.36, 0.05, -0.34, 0.011 +19261202, 0.51, -0.01, 0.10, 0.011 +19261203, 0.32, -0.05, 0.06, 0.011 +19261204, -0.17, 0.20, 0.10, 0.011 +19261206, 0.04, 0.32, -0.37, 0.011 +19261207, -0.04, 0.34, -0.51, 0.011 +19261208, -0.08, 0.21, 0.25, 0.011 +19261209, 0.45, -0.15, 0.44, 0.011 +19261210, 0.35, -0.17, 0.50, 0.011 +19261211, 0.09, -0.10, -0.50, 0.011 +19261213, 0.42, 0.64, 0.00, 0.011 +19261214, 0.10, -0.09, 0.14, 0.011 +19261215, 0.17, -0.22, 0.22, 0.011 +19261216, -0.63, -0.20, 0.05, 0.011 +19261217, 0.91, -0.75, 0.68, 0.011 +19261218, 0.42, -0.22, 0.20, 0.011 +19261220, -0.31, 0.08, -0.13, 0.011 +19261221, -0.03, -0.38, -0.19, 0.011 +19261222, 0.02, -0.19, -0.53, 0.011 +19261223, 0.28, 0.01, -0.47, 0.011 +19261224, 0.31, 0.21, 0.26, 0.011 +19261227, -0.22, -0.14, -0.40, 0.011 +19261228, -1.07, -0.07, -0.16, 0.011 +19261229, 0.44, -0.16, -0.06, 0.011 +19261230, -0.35, 0.44, 0.10, 0.011 +19261231, 0.33, 0.30, 0.67, 0.011 +19270103, -0.79, 0.19, 0.09, 0.010 +19270104, 0.31, 0.15, -0.67, 0.010 +19270105, 0.14, 0.43, -0.31, 0.010 +19270106, -0.17, 0.00, 0.07, 0.010 +19270107, 0.30, -0.25, 0.44, 0.010 +19270108, 0.39, -0.18, 0.27, 0.010 +19270110, 0.14, 0.02, 0.16, 0.010 +19270111, -0.28, -0.36, 0.87, 0.010 +19270112, 0.07, -0.06, 0.02, 0.010 +19270113, -0.04, 0.20, -0.30, 0.010 +19270114, 0.05, -0.85, 0.92, 0.010 +19270115, 0.13, 0.10, 0.83, 0.010 +19270117, -0.04, -0.18, 0.77, 0.010 +19270118, -0.06, -0.22, 0.01, 0.010 +19270119, 0.61, -0.01, -0.77, 0.010 +19270120, -0.17, -0.30, 0.13, 0.010 +19270121, -0.01, 0.60, 1.29, 0.010 +19270122, -0.36, 0.26, 0.34, 0.010 +19270124, -0.48, 0.47, 1.44, 0.010 +19270125, -1.07, -0.47, -1.29, 0.010 +19270126, 0.19, 0.12, 0.48, 0.010 +19270127, -0.35, 0.00, -0.42, 0.010 +19270128, 0.16, 0.16, 0.76, 0.010 +19270129, 0.73, -0.41, -0.29, 0.010 +19270131, 0.61, 0.12, -0.04, 0.010 +19270201, -0.01, 0.53, 1.11, 0.012 +19270202, 0.70, -0.21, 0.10, 0.012 +19270203, 0.17, 0.21, -0.07, 0.012 +19270204, 0.37, 0.12, 1.38, 0.012 +19270205, -0.18, 0.31, 0.45, 0.012 +19270207, -0.13, 0.64, 0.47, 0.012 +19270208, 0.10, 0.19, 1.03, 0.012 +19270209, 0.04, -0.88, -0.57, 0.012 +19270210, 0.08, 0.28, -0.69, 0.012 +19270211, 0.31, -0.44, -0.63, 0.012 +19270214, 0.49, -0.14, -0.29, 0.012 +19270215, 0.10, -0.27, -0.16, 0.012 +19270216, -0.02, 0.01, 1.55, 0.012 +19270217, 0.24, 0.07, 0.86, 0.012 +19270218, 0.32, -0.73, -0.12, 0.012 +19270219, 0.01, 0.38, -0.48, 0.012 +19270221, -0.17, 0.19, -0.90, 0.012 +19270223, 0.72, -0.33, -0.13, 0.012 +19270224, 0.14, 0.35, 0.09, 0.012 +19270225, 0.21, 0.24, -0.33, 0.012 +19270226, 0.07, -0.19, -0.05, 0.012 +19270228, 0.55, -0.38, 0.24, 0.012 +19270301, -0.40, -0.03, -0.55, 0.011 +19270302, -1.14, -0.14, -0.33, 0.011 +19270303, 1.02, -0.05, 0.05, 0.011 +19270304, -0.45, 0.22, -0.16, 0.011 +19270305, -0.24, 0.60, -0.46, 0.011 +19270307, -0.37, -0.10, -0.58, 0.011 +19270308, 0.12, -0.53, -0.34, 0.011 +19270309, 0.49, 0.17, 0.34, 0.011 +19270310, 0.46, 0.10, 0.46, 0.011 +19270311, 0.17, -0.25, 0.24, 0.011 +19270312, -0.04, -0.06, -0.19, 0.011 +19270314, 0.18, 0.04, -0.78, 0.011 +19270315, -0.81, -0.10, -0.44, 0.011 +19270316, 1.02, -0.50, -0.06, 0.011 +19270317, 0.42, -0.31, -0.41, 0.011 +19270318, -0.79, 0.11, -0.42, 0.011 +19270319, 0.04, 0.01, -0.21, 0.011 +19270321, 0.17, -0.54, 0.05, 0.011 +19270322, -1.06, 0.17, -0.54, 0.011 +19270323, 0.19, 0.01, 0.51, 0.011 +19270324, 0.68, -0.04, 0.06, 0.011 +19270325, 0.16, 0.45, -0.33, 0.011 +19270326, 0.34, 0.14, 0.18, 0.011 +19270328, 0.52, -0.24, 0.07, 0.011 +19270329, -0.23, -0.09, -0.41, 0.011 +19270330, -0.62, 0.11, 1.25, 0.011 +19270331, 0.30, -0.85, 0.55, 0.011 +19270401, -0.05, -0.19, -0.31, 0.010 +19270402, -0.08, 0.19, 0.02, 0.010 +19270404, 0.53, -0.21, 1.12, 0.010 +19270405, 0.59, -0.30, 0.01, 0.010 +19270406, 0.11, -0.10, -0.04, 0.010 +19270407, 0.24, -0.35, 0.33, 0.010 +19270408, 0.31, 0.35, -0.05, 0.010 +19270409, 0.03, -0.13, 0.29, 0.010 +19270411, 0.19, 0.00, -0.15, 0.010 +19270412, -0.29, 0.57, -0.12, 0.010 +19270413, 0.21, 0.13, -1.14, 0.010 +19270414, 0.09, 0.37, -0.20, 0.010 +19270416, 0.18, 0.55, 0.18, 0.010 +19270418, -0.03, -0.17, 0.75, 0.010 +19270419, 0.18, -0.08, 0.32, 0.010 +19270420, 0.27, -0.37, 0.94, 0.010 +19270421, 0.36, -0.25, -0.76, 0.010 +19270422, 0.07, -0.34, 0.04, 0.010 +19270423, -0.37, 0.24, 0.00, 0.010 +19270425, -1.56, 0.08, 0.10, 0.010 +19270426, 0.58, 0.04, -0.43, 0.010 +19270427, -0.38, 0.07, 0.20, 0.010 +19270428, -1.11, 0.19, -0.35, 0.010 +19270429, 0.48, 0.00, -0.18, 0.010 +19270430, -0.01, 0.21, -0.07, 0.010 +19270502, 0.27, 0.22, 0.48, 0.012 +19270503, 0.74, 0.02, -0.64, 0.012 +19270504, 0.78, -0.16, 0.15, 0.012 +19270505, 0.30, 0.30, -0.28, 0.012 +19270506, 0.28, -0.13, 0.87, 0.012 +19270507, 0.28, 0.26, -0.45, 0.012 +19270509, 0.20, 0.08, 0.39, 0.012 +19270510, -0.07, -0.12, 0.13, 0.012 +19270511, -0.14, -0.03, 0.04, 0.012 +19270512, -0.11, -0.33, 0.37, 0.012 +19270513, 0.49, -0.11, -0.24, 0.012 +19270514, 0.02, 0.29, 0.04, 0.012 +19270516, -0.72, 0.54, -0.20, 0.012 +19270517, 0.47, 0.08, 0.21, 0.012 +19270518, 0.51, -0.60, 0.08, 0.012 +19270519, 0.19, -0.41, -0.15, 0.012 +19270520, 0.43, -0.53, 0.32, 0.012 +19270521, 0.22, 0.16, 0.12, 0.012 +19270523, 0.15, 0.48, 0.76, 0.012 +19270524, -0.14, 0.27, 0.82, 0.012 +19270525, 0.16, 0.69, 0.47, 0.012 +19270526, 0.11, -0.08, 0.56, 0.012 +19270527, 0.44, 0.36, -0.03, 0.012 +19270528, 0.12, 0.69, 0.42, 0.012 +19270531, 0.25, -0.63, 0.41, 0.012 +19270601, 0.32, -0.07, 0.24, 0.010 +19270602, 0.08, -0.09, 0.26, 0.010 +19270603, -0.88, 0.19, -0.66, 0.010 +19270604, 0.43, 0.12, 0.20, 0.010 +19270606, 0.51, 0.19, 1.20, 0.010 +19270607, -0.29, 0.57, -0.22, 0.010 +19270608, 0.28, -0.14, 0.44, 0.010 +19270609, 0.02, 0.17, -0.74, 0.010 +19270610, -0.38, 0.14, -0.37, 0.010 +19270611, -0.11, -0.28, -0.21, 0.010 +19270614, -1.51, 0.02, -0.68, 0.010 +19270615, 0.88, 0.10, 0.23, 0.010 +19270616, 0.62, -0.36, -0.19, 0.010 +19270617, 0.16, 0.63, 1.02, 0.010 +19270618, -0.12, 0.17, 0.58, 0.010 +19270620, -0.18, 0.45, -0.59, 0.010 +19270621, -0.35, -0.31, 0.45, 0.010 +19270622, -0.01, 0.02, -0.58, 0.010 +19270623, -0.86, -0.47, -0.78, 0.010 +19270624, 0.13, -0.05, 0.30, 0.010 +19270625, -0.10, -0.09, 0.09, 0.010 +19270627, -1.22, -0.55, -0.64, 0.010 +19270628, 0.26, -0.03, -0.17, 0.010 +19270629, 0.03, 0.12, -0.50, 0.010 +19270630, -0.09, -0.06, -0.18, 0.010 +19270701, 0.65, 0.03, -0.11, 0.012 +19270702, 0.55, 0.27, 0.17, 0.012 +19270705, 0.84, -0.41, 0.14, 0.012 +19270706, 0.60, 0.23, -0.07, 0.012 +19270707, -0.25, 0.14, -0.03, 0.012 +19270708, -0.18, -0.41, 0.13, 0.012 +19270709, 0.17, 0.19, -0.10, 0.012 +19270711, 0.40, -0.50, 0.28, 0.012 +19270712, 0.33, -0.42, 0.53, 0.012 +19270713, 0.27, 0.20, -0.16, 0.012 +19270714, 0.42, -0.05, -0.79, 0.012 +19270715, 0.26, 0.00, -0.35, 0.012 +19270716, 0.16, 0.12, 0.18, 0.012 +19270718, 0.18, -0.15, 0.04, 0.012 +19270719, 0.26, -0.17, 0.40, 0.012 +19270720, 0.44, 0.12, -0.75, 0.012 +19270721, -0.04, 0.12, -0.52, 0.012 +19270722, -0.05, -0.08, -0.26, 0.012 +19270723, 0.17, 0.17, 0.16, 0.012 +19270725, 0.41, -0.37, 0.07, 0.012 +19270726, 0.25, -0.25, -0.21, 0.012 +19270727, 0.07, -0.53, -0.04, 0.012 +19270728, 0.14, -0.25, -0.24, 0.012 +19270729, 0.47, -0.27, 0.23, 0.012 +19270730, 0.47, -0.78, 0.24, 0.012 +19270801, 0.54, -0.23, 0.10, 0.010 +19270802, 0.62, -0.40, -0.29, 0.010 +19270803, -0.65, 0.44, -0.46, 0.010 +19270804, 0.93, -0.31, 0.12, 0.010 +19270805, -0.59, 0.30, -0.39, 0.010 +19270806, -0.11, 0.10, -0.36, 0.010 +19270808, -1.08, 0.63, -0.55, 0.010 +19270809, 0.94, -0.14, 0.44, 0.010 +19270810, 0.24, -0.11, -0.25, 0.010 +19270811, -1.02, -0.39, -0.19, 0.010 +19270812, -1.57, -0.40, -0.94, 0.010 +19270813, 0.89, -0.24, 0.14, 0.010 +19270815, 1.26, -0.03, 0.88, 0.010 +19270816, 0.62, 0.03, 0.09, 0.010 +19270817, 0.31, 0.50, -0.13, 0.010 +19270818, 0.03, -0.25, 0.04, 0.010 +19270819, 0.15, 0.22, -0.31, 0.010 +19270820, 0.35, 0.03, -0.34, 0.010 +19270822, 0.35, -0.18, 0.14, 0.010 +19270823, 0.05, -0.02, 0.11, 0.010 +19270824, 0.20, 0.04, -0.26, 0.010 +19270825, 0.02, -0.16, -0.77, 0.010 +19270826, 0.22, -0.27, -0.06, 0.010 +19270827, -0.11, 0.31, -0.13, 0.010 +19270829, -0.03, 0.02, 0.33, 0.010 +19270830, -0.03, -0.29, -0.72, 0.010 +19270831, -0.49, 0.05, 0.17, 0.010 +19270901, 0.80, -0.12, -0.37, 0.008 +19270902, 0.58, 0.03, 0.20, 0.008 +19270903, 0.50, -0.14, -0.32, 0.008 +19270906, 0.91, -0.65, 0.26, 0.008 +19270907, 0.45, -0.35, 0.24, 0.008 +19270908, 0.01, -0.10, 0.17, 0.008 +19270909, -0.63, -0.01, -0.58, 0.008 +19270910, 0.43, -0.07, 0.22, 0.008 +19270912, -0.36, 0.40, -0.34, 0.008 +19270913, 1.29, -0.77, -0.21, 0.008 +19270914, 0.31, -0.19, -0.22, 0.008 +19270915, 0.24, -0.18, -0.02, 0.008 +19270916, 0.08, -0.35, 0.10, 0.008 +19270917, -0.29, 0.23, -0.21, 0.008 +19270919, -0.32, -0.32, -0.04, 0.008 +19270920, 0.55, 0.09, 0.40, 0.008 +19270921, -0.15, 0.21, -0.02, 0.008 +19270922, -1.16, 0.09, -0.44, 0.008 +19270923, 0.52, -0.06, 0.12, 0.008 +19270924, 0.65, -0.33, -0.17, 0.008 +19270926, -0.91, 0.12, 0.03, 0.008 +19270927, 0.22, -0.50, 0.05, 0.008 +19270928, -0.38, -0.05, 0.46, 0.008 +19270929, 0.17, -0.10, -0.01, 0.008 +19270930, 1.25, -0.32, 0.04, 0.008 +19271001, 0.49, -0.06, 0.24, 0.010 +19271003, 0.26, -0.22, 0.55, 0.010 +19271004, -0.40, 0.32, -1.30, 0.010 +19271005, -0.29, 0.01, -0.17, 0.010 +19271006, 0.24, -0.07, 0.56, 0.010 +19271007, -0.74, 0.50, -0.74, 0.010 +19271008, -0.32, -0.12, 0.20, 0.010 +19271010, -0.51, -0.29, -0.39, 0.010 +19271011, 0.04, 0.25, -0.08, 0.010 +19271013, 0.69, 0.02, -0.89, 0.010 +19271014, -0.01, 0.65, 0.04, 0.010 +19271015, 0.02, 0.40, 0.10, 0.010 +19271017, -1.26, 0.03, -0.28, 0.010 +19271018, 0.34, -0.55, -0.09, 0.010 +19271019, -0.81, 0.20, 0.44, 0.010 +19271020, -1.02, -0.10, 0.25, 0.010 +19271021, -0.76, 0.82, -0.80, 0.010 +19271022, -0.69, 0.00, 0.29, 0.010 +19271024, 0.37, -0.10, -0.43, 0.010 +19271025, 1.60, -0.19, -0.75, 0.010 +19271026, 0.05, 0.68, 0.08, 0.010 +19271027, -0.41, 0.35, -0.16, 0.010 +19271028, -1.45, 0.21, -0.98, 0.010 +19271029, -0.50, -0.56, 0.02, 0.010 +19271031, 0.76, -0.06, -0.32, 0.010 +19271101, -0.01, 0.10, 0.15, 0.009 +19271102, 1.00, -0.52, -0.18, 0.009 +19271103, 1.12, -0.38, 0.29, 0.009 +19271104, -0.03, 0.22, 0.10, 0.009 +19271105, 0.55, 0.03, -0.02, 0.009 +19271107, 0.69, 0.35, -0.29, 0.009 +19271109, -0.78, 0.37, -0.43, 0.009 +19271110, 0.24, 0.01, -0.40, 0.009 +19271111, 0.87, -0.34, -0.31, 0.009 +19271112, 0.34, 0.16, -0.17, 0.009 +19271114, 0.51, 0.34, 0.08, 0.009 +19271115, 0.11, -0.15, 0.70, 0.009 +19271116, -0.04, 0.41, 0.12, 0.009 +19271117, 0.16, 0.31, -0.06, 0.009 +19271118, 0.61, 0.13, -0.07, 0.009 +19271119, 0.27, 0.40, -0.01, 0.009 +19271121, -0.52, 0.13, 0.41, 0.009 +19271122, 0.37, -0.11, -0.14, 0.009 +19271123, 0.28, 0.18, 0.08, 0.009 +19271125, 0.24, 0.14, 0.44, 0.009 +19271126, -0.01, 0.54, -0.02, 0.009 +19271128, -0.76, 0.14, 0.06, 0.009 +19271129, 0.65, 0.35, -0.22, 0.009 +19271130, 0.48, -0.14, -0.24, 0.009 +19271201, -0.48, -0.22, 0.05, 0.009 +19271202, 0.26, -0.57, 0.96, 0.009 +19271203, 0.36, -0.24, 0.22, 0.009 +19271205, -0.40, 0.35, 0.14, 0.009 +19271206, -0.03, 0.32, -0.24, 0.009 +19271207, -0.50, -0.12, -0.52, 0.009 +19271208, -0.86, 0.27, -0.15, 0.009 +19271209, 1.13, 0.00, -0.05, 0.009 +19271210, 0.06, 0.48, -0.20, 0.009 +19271212, 0.58, 0.79, -0.58, 0.009 +19271213, 0.38, -0.27, -0.32, 0.009 +19271214, -0.37, 0.04, -0.03, 0.009 +19271215, 0.52, 0.20, 0.21, 0.009 +19271216, 0.66, -0.26, -0.38, 0.009 +19271217, 0.05, -0.15, 0.65, 0.009 +19271219, 0.32, 0.20, -0.33, 0.009 +19271220, 0.01, -0.27, 0.21, 0.009 +19271221, -0.07, -0.09, 0.25, 0.009 +19271222, -0.06, -0.49, 0.20, 0.009 +19271223, 0.20, -0.32, 0.09, 0.009 +19271224, 0.14, -0.02, 0.41, 0.009 +19271227, 0.01, 0.24, -0.28, 0.009 +19271228, -0.57, 0.25, -0.20, 0.009 +19271229, 0.15, -0.10, -1.09, 0.009 +19271230, 0.43, 0.71, -0.03, 0.009 +19271231, 0.32, 0.19, 0.00, 0.009 +19280103, 0.45, 0.84, -0.13, 0.010 +19280104, -0.14, 0.50, -0.02, 0.010 +19280105, -0.73, -0.10, 0.26, 0.010 +19280106, 0.62, 0.54, 0.05, 0.010 +19280107, 0.11, -0.01, 0.29, 0.010 +19280109, -0.89, 0.12, -0.04, 0.010 +19280110, -0.83, -0.47, 0.11, 0.010 +19280111, 0.12, 0.35, 0.33, 0.010 +19280112, 0.50, 0.20, -0.11, 0.010 +19280113, 0.61, 0.26, 0.14, 0.010 +19280114, -0.67, 0.04, -0.03, 0.010 +19280116, -0.89, -0.50, -0.37, 0.010 +19280117, 0.17, 0.31, 0.42, 0.010 +19280118, -0.31, -0.32, -0.16, 0.010 +19280119, 0.57, 0.24, -0.12, 0.010 +19280120, 0.57, 0.13, -0.05, 0.010 +19280121, 0.21, 0.42, -0.39, 0.010 +19280123, 0.61, 0.18, -0.10, 0.010 +19280124, 0.27, 0.46, -0.33, 0.010 +19280125, -1.04, -0.29, -0.37, 0.010 +19280126, 0.52, 0.76, -0.19, 0.010 +19280127, 0.27, -0.09, -0.13, 0.010 +19280128, -0.50, 0.46, 0.16, 0.010 +19280130, -0.42, -0.39, -0.29, 0.010 +19280131, 0.32, 0.59, 0.34, 0.010 +19280201, -0.25, 0.55, -0.68, 0.014 +19280202, 0.44, 0.13, 0.19, 0.014 +19280203, -1.14, -0.47, -0.43, 0.014 +19280204, 0.05, -0.44, 0.16, 0.014 +19280206, 0.20, 0.32, 0.07, 0.014 +19280207, -0.28, -0.24, -0.70, 0.014 +19280208, 0.08, -0.04, -0.17, 0.014 +19280209, 0.46, -0.10, -0.14, 0.014 +19280210, -0.09, -0.47, -0.15, 0.014 +19280211, -0.02, 0.11, 0.52, 0.014 +19280214, -0.38, 0.56, -0.40, 0.014 +19280215, -0.28, -0.52, -0.05, 0.014 +19280216, -0.32, -0.62, 0.07, 0.014 +19280217, -1.66, -0.69, -0.57, 0.014 +19280218, -0.47, -0.61, 0.14, 0.014 +19280220, -0.16, 0.17, 0.29, 0.014 +19280221, 1.06, 0.41, 0.23, 0.014 +19280223, 0.23, 0.06, -0.10, 0.014 +19280224, 0.34, -0.31, 0.46, 0.014 +19280225, 0.11, -0.16, 0.73, 0.014 +19280227, -0.49, 0.06, -0.28, 0.014 +19280228, 0.35, 0.03, 0.38, 0.014 +19280229, 0.57, 0.25, -0.22, 0.014 +19280301, 0.25, -0.11, -0.15, 0.011 +19280302, 0.07, 0.01, -0.67, 0.011 +19280303, 0.49, 0.01, -0.64, 0.011 +19280305, 0.66, -0.10, 0.12, 0.011 +19280306, 0.39, 0.27, -0.18, 0.011 +19280307, -0.43, 0.20, -0.06, 0.011 +19280308, 0.42, -0.02, 0.55, 0.011 +19280309, 1.23, -0.58, -0.36, 0.011 +19280310, -0.27, -0.37, -0.09, 0.011 +19280312, 0.41, -0.16, -0.07, 0.011 +19280313, -0.30, 0.03, -0.02, 0.011 +19280314, 0.13, 0.00, 0.45, 0.011 +19280315, 0.72, -0.43, 0.23, 0.011 +19280316, 0.93, -0.58, 0.23, 0.011 +19280317, 0.19, 0.02, 0.47, 0.011 +19280319, 0.14, 1.20, -0.74, 0.011 +19280320, 0.42, 0.37, -0.19, 0.011 +19280321, 0.86, 0.14, 0.50, 0.011 +19280322, -0.36, -0.30, -0.37, 0.011 +19280323, 0.75, -0.40, -0.65, 0.011 +19280324, 0.07, -0.45, -0.06, 0.011 +19280326, 0.95, 0.10, -0.28, 0.011 +19280327, -0.33, -0.24, 1.08, 0.011 +19280328, 0.03, 0.45, 0.05, 0.011 +19280329, 0.19, 0.27, 0.40, 0.011 +19280330, 1.49, -0.06, -0.72, 0.011 +19280331, -0.57, 0.45, 0.13, 0.011 +19280402, -0.87, 0.71, 0.52, 0.010 +19280403, 0.60, 0.27, -0.40, 0.010 +19280404, -0.07, 0.42, 0.13, 0.010 +19280405, 1.13, -0.25, 0.25, 0.010 +19280409, 0.34, 0.98, 0.13, 0.010 +19280410, -0.73, 0.32, -0.20, 0.010 +19280411, 1.41, 0.02, 0.96, 0.010 +19280412, -0.25, 0.53, -0.42, 0.010 +19280413, 1.40, 0.03, -0.51, 0.010 +19280414, -0.44, 0.10, -0.19, 0.010 +19280416, 0.52, -0.31, 0.25, 0.010 +19280417, -0.68, 0.16, -0.29, 0.010 +19280418, 0.02, 0.18, -0.11, 0.010 +19280419, 0.58, 0.63, 0.61, 0.010 +19280420, -1.33, 0.03, 0.13, 0.010 +19280423, -0.73, -0.06, 0.39, 0.010 +19280424, 0.36, 0.05, -0.03, 0.010 +19280425, 0.73, -0.07, 1.48, 0.010 +19280426, 0.63, 0.14, 0.60, 0.010 +19280427, 1.04, -0.13, 0.47, 0.010 +19280428, 0.50, -0.27, 0.09, 0.010 +19280430, 0.06, 0.25, -0.56, 0.010 +19280501, 0.26, 0.19, 0.45, 0.015 +19280502, 0.08, 0.43, -0.31, 0.015 +19280503, 0.39, 0.20, -0.68, 0.015 +19280504, 1.18, -0.67, -0.25, 0.015 +19280507, 0.69, 0.34, -0.26, 0.015 +19280508, -0.56, -0.12, -0.32, 0.015 +19280509, 0.04, -0.29, 0.63, 0.015 +19280510, -0.17, 0.39, -0.39, 0.015 +19280511, 0.77, 0.56, -0.56, 0.015 +19280514, 0.49, 0.57, 0.07, 0.015 +19280515, -0.04, 0.80, -0.58, 0.015 +19280516, -1.52, -0.15, -0.45, 0.015 +19280517, 0.47, -0.29, -0.67, 0.015 +19280518, -0.72, 0.14, 1.18, 0.015 +19280521, -1.16, 0.60, -0.17, 0.015 +19280522, -1.41, -0.50, -0.55, 0.015 +19280523, 1.72, -0.11, -0.27, 0.015 +19280524, 0.51, 0.62, 0.30, 0.015 +19280525, 0.20, 0.32, -0.03, 0.015 +19280528, -1.47, -0.45, -0.30, 0.015 +19280529, 0.88, -0.33, -0.08, 0.015 +19280531, 0.94, 0.52, 0.18, 0.015 +19280601, 0.31, -0.05, -0.32, 0.012 +19280602, 0.64, 0.33, -0.06, 0.012 +19280604, -1.85, 0.05, -0.20, 0.012 +19280605, 0.21, 0.36, -0.10, 0.012 +19280606, -0.84, 0.40, 0.11, 0.012 +19280607, -0.52, -0.76, -0.79, 0.012 +19280608, -1.38, -0.17, -0.76, 0.012 +19280609, -1.30, -0.24, -0.27, 0.012 +19280611, -2.31, -1.14, -0.37, 0.012 +19280612, -2.33, -3.27, 0.16, 0.012 +19280613, 3.14, 0.37, 0.68, 0.012 +19280614, 0.95, 1.51, 0.94, 0.012 +19280615, -1.24, -0.19, 0.52, 0.012 +19280616, -0.03, -0.58, -0.01, 0.012 +19280618, -2.01, 0.07, -0.16, 0.012 +19280619, -0.62, -1.27, -0.17, 0.012 +19280620, 1.38, 0.08, 0.42, 0.012 +19280621, 0.15, 0.49, 0.50, 0.012 +19280622, -0.03, 0.16, 0.42, 0.012 +19280623, -0.65, 0.13, -0.25, 0.012 +19280625, 0.09, -0.67, 0.51, 0.012 +19280626, 1.00, -0.16, -0.01, 0.012 +19280627, 1.01, 0.58, -0.22, 0.012 +19280628, 0.82, 0.24, -0.24, 0.012 +19280629, 0.49, -0.10, 0.32, 0.012 +19280630, 0.12, 0.08, -0.28, 0.012 +19280702, -1.20, -0.03, -0.28, 0.013 +19280703, 1.61, -0.29, 0.13, 0.013 +19280705, 0.94, -0.03, 0.04, 0.013 +19280706, -0.32, 0.18, 0.33, 0.013 +19280707, 0.26, 0.04, 0.39, 0.013 +19280709, 0.01, 0.06, -0.46, 0.013 +19280710, -0.27, 0.10, -0.75, 0.013 +19280711, -2.33, 0.16, -0.16, 0.013 +19280712, -0.64, -0.63, 0.66, 0.013 +19280713, 0.70, -0.12, -0.09, 0.013 +19280714, -0.04, 0.28, 0.33, 0.013 +19280716, -1.23, -0.13, -0.04, 0.013 +19280717, 0.45, -0.33, -0.47, 0.013 +19280718, 0.89, -0.11, -0.46, 0.013 +19280719, -0.16, 0.34, 0.60, 0.013 +19280720, 0.11, -0.06, 0.11, 0.013 +19280721, -0.24, 0.17, 0.19, 0.013 +19280723, 0.62, -0.24, -0.36, 0.013 +19280724, 0.04, 0.16, 0.61, 0.013 +19280725, 0.43, -0.09, -0.34, 0.013 +19280726, 0.22, -0.15, 0.29, 0.013 +19280727, 0.78, -0.35, -0.79, 0.013 +19280728, 0.25, -0.18, 0.03, 0.013 +19280730, -0.13, -0.11, 0.08, 0.013 +19280731, -0.11, -0.03, -0.11, 0.013 +19280801, 0.26, -0.08, 0.01, 0.012 +19280802, -0.45, 0.11, -0.01, 0.012 +19280803, 0.22, -0.05, 0.19, 0.012 +19280804, 0.22, 0.16, 0.18, 0.012 +19280806, 0.73, -0.24, -0.32, 0.012 +19280807, -0.35, 0.11, 0.51, 0.012 +19280808, -1.12, 0.15, 0.03, 0.012 +19280809, 0.12, -0.02, -0.31, 0.012 +19280810, -0.20, 0.06, -0.04, 0.012 +19280811, 0.12, 0.08, -0.14, 0.012 +19280813, -0.05, 0.05, 0.23, 0.012 +19280814, -0.66, 0.54, 0.04, 0.012 +19280815, 1.38, -0.67, -0.31, 0.012 +19280816, 0.79, -0.22, 0.23, 0.012 +19280817, 0.29, -0.31, -0.47, 0.012 +19280818, 0.28, 0.02, 0.52, 0.012 +19280820, 0.23, 0.08, -0.07, 0.012 +19280821, 0.98, -0.40, -0.47, 0.012 +19280822, 0.14, 0.00, -0.61, 0.012 +19280823, 0.00, 0.03, 0.03, 0.012 +19280824, 1.38, -0.37, -0.17, 0.012 +19280825, 0.28, -0.11, -0.06, 0.012 +19280827, -0.29, 0.14, -0.63, 0.012 +19280828, 0.58, -0.39, -0.23, 0.012 +19280829, 0.24, 0.03, 0.09, 0.012 +19280830, 0.27, 0.02, 0.10, 0.012 +19280831, 1.15, -0.67, -0.27, 0.012 +19280901, 0.25, 0.15, 0.07, 0.011 +19280904, 0.41, -0.04, -0.10, 0.011 +19280905, 0.41, 0.01, -0.09, 0.011 +19280906, -0.40, 0.17, 0.51, 0.011 +19280907, 0.65, 0.35, -0.20, 0.011 +19280908, -0.30, 0.19, 0.04, 0.011 +19280910, -0.37, 0.23, -0.02, 0.011 +19280911, 0.63, -0.19, 0.22, 0.011 +19280912, 0.34, -0.06, 0.19, 0.011 +19280913, -0.10, 0.07, -0.31, 0.011 +19280914, 0.13, 0.13, 0.43, 0.011 +19280915, 0.58, -0.30, 0.74, 0.011 +19280917, 0.54, 0.72, 0.12, 0.011 +19280918, -0.68, 0.62, -0.68, 0.011 +19280919, -0.07, 0.15, 0.46, 0.011 +19280920, 0.15, 0.54, -0.12, 0.011 +19280921, 0.67, -0.46, 0.17, 0.011 +19280922, -0.24, 0.19, 0.69, 0.011 +19280924, 0.63, -0.43, -0.08, 0.011 +19280925, -0.07, 0.23, 0.12, 0.011 +19280926, -0.15, 0.20, -0.54, 0.011 +19280927, -1.22, -0.15, -0.01, 0.011 +19280928, 0.01, -0.11, -0.46, 0.011 +19280929, 1.03, 0.01, -0.20, 0.011 +19281001, -0.11, 0.85, -0.31, 0.016 +19281002, -0.44, 0.10, -0.05, 0.016 +19281003, -0.28, 0.56, 0.16, 0.016 +19281004, 0.25, 0.17, 0.30, 0.016 +19281005, -0.29, 0.45, -0.05, 0.016 +19281006, -0.05, 0.00, 0.20, 0.016 +19281008, -0.33, -0.14, -0.28, 0.016 +19281009, 0.12, 0.10, -1.05, 0.016 +19281010, 0.92, -0.03, -0.06, 0.016 +19281011, 0.31, 0.50, -0.85, 0.016 +19281013, 0.55, 0.41, -0.47, 0.016 +19281015, 0.38, -0.45, 0.15, 0.016 +19281016, 0.30, -0.19, 0.56, 0.016 +19281017, 0.30, 0.81, 0.23, 0.016 +19281018, 0.29, -0.30, -0.37, 0.016 +19281019, 0.45, -0.20, -0.55, 0.016 +19281020, -0.44, 0.23, -0.02, 0.016 +19281022, -0.12, 0.29, -0.61, 0.016 +19281023, 0.66, -0.09, 0.39, 0.016 +19281024, 0.22, -0.04, 0.36, 0.016 +19281025, -0.26, -0.05, 0.25, 0.016 +19281026, -1.14, -0.39, -0.05, 0.016 +19281027, 0.86, 0.17, -0.07, 0.016 +19281029, 0.69, -0.05, 0.56, 0.016 +19281030, -1.05, -0.32, -0.17, 0.016 +19281031, -0.49, -0.31, -0.56, 0.016 +19281101, 1.29, -0.24, -0.25, 0.017 +19281102, -0.10, -0.21, 0.30, 0.017 +19281103, 0.04, -0.03, -0.32, 0.017 +19281105, 1.13, -0.29, 0.22, 0.017 +19281107, 1.19, 0.01, 0.86, 0.017 +19281108, -0.25, 0.01, -0.13, 0.017 +19281109, 0.72, -0.38, 0.46, 0.017 +19281110, 0.78, -0.01, 0.48, 0.017 +19281112, 0.34, -0.46, 0.00, 0.017 +19281113, 0.07, 0.18, -0.16, 0.017 +19281114, 0.14, 0.32, -0.30, 0.017 +19281115, 0.36, -0.01, -0.65, 0.017 +19281116, 1.77, -0.77, 0.24, 0.017 +19281117, 0.10, -0.02, -0.09, 0.017 +19281119, 0.17, -0.56, 1.03, 0.017 +19281120, 1.11, -0.64, 0.97, 0.017 +19281121, -1.51, 0.47, -0.25, 0.017 +19281122, 1.39, -0.43, 0.72, 0.017 +19281123, 0.26, 0.44, -0.31, 0.017 +19281126, 0.46, 0.07, 0.67, 0.017 +19281127, 0.28, 0.89, -0.19, 0.017 +19281128, 1.10, 0.38, -0.35, 0.017 +19281130, 0.39, -0.41, -0.45, 0.017 +19281201, -0.60, 0.05, 0.66, 0.002 +19281203, -0.70, 0.37, -0.42, 0.002 +19281204, 0.23, 0.50, -0.43, 0.002 +19281205, -0.70, 0.83, -0.37, 0.002 +19281206, -3.54, 0.01, -1.35, 0.002 +19281207, -2.35, -0.50, 0.85, 0.002 +19281208, -1.89, -0.60, 0.01, 0.002 +19281210, 1.63, -1.33, 0.71, 0.002 +19281211, 2.30, 1.35, 0.37, 0.002 +19281212, -0.78, -0.19, 0.21, 0.002 +19281213, -0.34, 0.44, 0.19, 0.002 +19281214, 0.19, -0.04, -0.15, 0.002 +19281215, -0.35, 0.19, 0.10, 0.002 +19281217, -0.37, -0.31, -0.52, 0.002 +19281218, 1.07, -0.08, -0.16, 0.002 +19281219, 1.20, -0.38, 0.35, 0.002 +19281220, 0.37, -0.02, -0.19, 0.002 +19281221, 1.07, -0.32, -0.17, 0.002 +19281222, 0.12, 0.31, -0.30, 0.002 +19281224, 0.87, 0.19, -0.88, 0.002 +19281226, -0.31, 0.02, 0.25, 0.002 +19281227, 0.66, -0.78, 0.00, 0.002 +19281228, 1.34, -0.53, 0.18, 0.002 +19281229, 0.20, 0.30, 0.17, 0.002 +19281231, 1.36, -0.33, 0.57, 0.002 +19290102, 1.48, 0.44, -0.19, 0.013 +19290103, 0.10, 0.11, -0.34, 0.013 +19290104, -0.03, -0.44, 0.65, 0.013 +19290105, -0.88, 0.44, -0.23, 0.013 +19290107, -1.30, -0.37, 0.26, 0.013 +19290108, -0.23, 0.20, 0.24, 0.013 +19290109, 1.20, 0.08, 0.12, 0.013 +19290110, 0.27, 0.31, -0.21, 0.013 +19290111, -0.04, 0.21, 0.00, 0.013 +19290112, -0.28, 0.04, 0.13, 0.013 +19290114, 0.25, 0.18, 0.29, 0.013 +19290115, -0.98, -0.10, -0.08, 0.013 +19290116, 0.91, -0.16, 0.39, 0.013 +19290117, 0.71, -0.36, 0.05, 0.013 +19290118, 0.04, 0.24, 0.11, 0.013 +19290119, 0.19, -0.26, 0.32, 0.013 +19290121, 0.16, -0.18, 0.00, 0.013 +19290122, 0.59, -0.48, -0.26, 0.013 +19290123, 0.53, -0.76, -0.56, 0.013 +19290124, -0.83, 0.15, -0.67, 0.013 +19290125, 1.18, -0.61, -1.32, 0.013 +19290126, 0.34, -0.19, -0.08, 0.013 +19290128, -0.27, 0.13, 0.03, 0.013 +19290129, -0.27, -0.21, -0.31, 0.013 +19290130, 0.34, -0.74, -0.32, 0.013 +19290131, 1.36, -0.90, 0.87, 0.013 +19290201, 0.56, -0.34, 0.76, 0.018 +19290202, 0.01, 0.31, 0.74, 0.018 +19290204, -0.44, 0.71, 0.10, 0.018 +19290205, 0.22, 0.18, -0.21, 0.018 +19290206, -0.82, -0.23, -0.69, 0.018 +19290207, -2.97, -0.02, 0.40, 0.018 +19290208, -0.96, -0.57, 0.64, 0.018 +19290211, 2.18, -0.81, 0.71, 0.018 +19290213, 0.10, 0.42, -0.93, 0.018 +19290214, -0.63, -0.44, 0.51, 0.018 +19290215, -1.62, 0.59, -0.58, 0.018 +19290216, -1.40, -0.52, 0.35, 0.018 +19290218, 1.12, -0.38, 0.35, 0.018 +19290219, 0.20, 0.95, -0.33, 0.018 +19290220, 0.84, 0.32, -0.15, 0.018 +19290221, 0.73, -0.45, 0.07, 0.018 +19290225, 0.28, 0.49, -0.23, 0.018 +19290226, 0.36, 0.16, -0.29, 0.018 +19290227, 1.06, -0.31, 0.59, 0.018 +19290228, 1.01, -0.38, -0.14, 0.018 +19290301, 1.01, -0.10, 0.39, 0.014 +19290302, -0.27, -0.19, 0.63, 0.014 +19290304, -0.89, -0.05, 0.39, 0.014 +19290305, -0.68, -0.55, 0.53, 0.014 +19290306, -1.57, -0.42, -0.28, 0.014 +19290307, 0.76, -0.59, 0.38, 0.014 +19290308, 0.58, 0.01, 0.04, 0.014 +19290309, -0.01, 0.40, -0.25, 0.014 +19290311, -1.30, 0.35, -0.29, 0.014 +19290312, 0.25, -0.46, 0.06, 0.014 +19290313, 0.98, -0.30, 0.18, 0.014 +19290314, 1.55, -0.15, -0.34, 0.014 +19290315, 1.07, -0.28, -0.03, 0.014 +19290316, 0.27, 0.08, 0.04, 0.014 +19290318, -0.43, -0.03, 0.09, 0.014 +19290319, 0.02, -0.57, 0.57, 0.014 +19290320, 0.02, -0.50, 0.54, 0.014 +19290321, -0.43, 0.27, -0.62, 0.014 +19290322, -1.15, 0.11, -0.78, 0.014 +19290323, -0.98, 0.08, -0.35, 0.014 +19290325, -3.14, -0.67, -0.34, 0.014 +19290326, -1.16, -2.70, -0.01, 0.014 +19290327, 3.28, 0.74, 0.41, 0.014 +19290328, 1.63, 0.65, 0.59, 0.014 +19290401, -2.26, -0.36, -0.04, 0.014 +19290402, 1.19, 0.23, 0.39, 0.014 +19290403, -1.08, 0.40, 0.05, 0.014 +19290404, 1.20, -0.43, 0.21, 0.014 +19290405, -0.75, 0.75, -0.76, 0.014 +19290406, 0.12, -0.51, 0.65, 0.014 +19290408, -0.95, 0.26, -0.68, 0.014 +19290409, -0.87, -0.79, -0.39, 0.014 +19290410, 0.49, -0.20, 0.07, 0.014 +19290411, 1.02, -0.44, 0.57, 0.014 +19290412, 0.63, 0.56, -0.57, 0.014 +19290413, -0.02, 0.21, 0.21, 0.014 +19290415, -0.58, 0.64, -0.20, 0.014 +19290416, 0.05, -0.03, -0.25, 0.014 +19290417, 1.02, -0.46, 0.11, 0.014 +19290418, 0.38, 0.48, -0.81, 0.014 +19290419, -0.03, 0.09, -0.20, 0.014 +19290420, 0.19, -0.11, -0.41, 0.014 +19290422, 0.83, -0.38, 0.07, 0.014 +19290423, 0.44, 0.25, -0.11, 0.014 +19290424, -0.24, 0.03, 0.36, 0.014 +19290425, -0.60, 0.07, 0.20, 0.014 +19290426, -0.08, -0.16, -0.37, 0.014 +19290427, 0.55, 0.17, 0.48, 0.014 +19290429, -0.53, 0.07, 0.58, 0.014 +19290430, 1.65, -1.25, 1.43, 0.014 +19290501, 0.11, 0.28, -0.23, 0.017 +19290502, 0.14, 0.05, -0.29, 0.017 +19290503, 0.75, -0.07, -0.61, 0.017 +19290504, 0.31, -0.44, 0.15, 0.017 +19290506, -0.52, -0.14, -0.32, 0.017 +19290507, -0.68, 0.10, -0.03, 0.017 +19290508, 0.10, -0.05, -0.06, 0.017 +19290509, -0.55, -0.05, 0.00, 0.017 +19290510, 1.18, -0.21, 0.14, 0.017 +19290511, -0.34, 0.28, 0.17, 0.017 +19290513, -2.13, -0.40, -0.26, 0.017 +19290514, 0.89, -0.48, -0.65, 0.017 +19290515, -0.32, 0.05, 0.07, 0.017 +19290516, 0.07, -0.44, -0.39, 0.017 +19290517, 0.51, 0.16, -0.06, 0.017 +19290518, -0.18, -0.10, -0.13, 0.017 +19290520, -1.97, 0.41, 0.79, 0.017 +19290521, 0.05, -1.31, -0.38, 0.017 +19290522, -3.17, 0.99, -0.72, 0.017 +19290523, 1.54, -1.32, -0.17, 0.017 +19290524, -0.47, 0.61, -0.03, 0.017 +19290525, -0.37, -0.51, -0.09, 0.017 +19290527, -3.20, -0.69, -0.19, 0.017 +19290528, 1.12, -1.20, 0.22, 0.017 +19290529, 0.10, -0.22, 0.94, 0.017 +19290531, 0.57, -1.20, 0.42, 0.017 +19290601, 0.61, 0.29, 0.11, 0.021 +19290603, 1.27, -0.11, 0.66, 0.021 +19290604, 1.40, 0.40, -0.76, 0.021 +19290605, -0.31, 0.28, -0.65, 0.021 +19290606, 0.27, -0.19, 0.40, 0.021 +19290607, -0.45, -0.01, -0.43, 0.021 +19290608, -0.36, -0.15, 0.95, 0.021 +19290610, -0.54, 0.14, 0.32, 0.021 +19290611, 0.40, -0.20, -0.43, 0.021 +19290612, 0.03, 0.26, -0.34, 0.021 +19290613, 1.24, -0.50, -0.01, 0.021 +19290614, 0.31, 0.34, 0.30, 0.021 +19290615, 0.29, -0.19, 0.77, 0.021 +19290617, 1.22, -0.69, -0.57, 0.021 +19290618, 0.17, -0.04, 0.01, 0.021 +19290619, -0.65, 0.38, -0.51, 0.021 +19290620, 0.43, -0.18, -0.32, 0.021 +19290621, 0.67, -0.38, 0.45, 0.021 +19290622, 0.31, 0.05, 0.65, 0.021 +19290624, -0.21, 0.22, -0.73, 0.021 +19290625, 0.77, -0.40, -0.92, 0.021 +19290626, 0.56, -0.02, 0.03, 0.021 +19290627, 0.04, -0.05, -0.51, 0.021 +19290628, 0.94, -0.93, -0.85, 0.021 +19290629, 0.86, -0.32, -0.08, 0.021 +19290701, 0.37, -0.23, 0.31, 0.013 +19290702, 1.11, -0.94, 0.24, 0.013 +19290703, 0.33, 0.19, -0.38, 0.013 +19290705, 0.47, 0.21, -0.45, 0.013 +19290706, 0.16, -0.13, -0.09, 0.013 +19290708, 0.04, 0.64, 0.96, 0.013 +19290709, 0.11, 0.28, 0.00, 0.013 +19290710, -0.30, 0.03, -0.19, 0.013 +19290711, 0.25, -0.22, -0.39, 0.013 +19290712, 0.92, -0.78, 0.23, 0.013 +19290713, 0.40, -0.49, 1.16, 0.013 +19290715, -0.46, -0.31, 1.01, 0.013 +19290716, 0.48, -0.26, 0.08, 0.013 +19290717, 0.27, 0.06, -0.25, 0.013 +19290718, -0.12, -0.13, -0.04, 0.013 +19290719, 0.33, -0.57, 0.78, 0.013 +19290720, 0.15, -0.09, 0.18, 0.013 +19290722, -1.11, 0.17, -0.28, 0.013 +19290723, 1.03, -0.83, 0.19, 0.013 +19290724, -0.49, -0.27, 0.13, 0.013 +19290725, 0.51, -0.56, -0.73, 0.013 +19290726, -0.40, 0.00, 0.12, 0.013 +19290727, -0.44, 0.45, -0.45, 0.013 +19290729, -1.16, 0.25, 0.43, 0.013 +19290730, 0.89, -0.05, -0.01, 0.013 +19290731, 1.08, -0.21, 0.01, 0.013 +19290801, 0.81, -0.66, -0.17, 0.015 +19290802, 0.93, -1.16, -0.05, 0.015 +19290803, 0.51, -0.52, -0.63, 0.015 +19290805, -0.61, -0.50, 0.79, 0.015 +19290806, -0.47, 0.22, 0.02, 0.015 +19290807, -1.02, 0.14, 0.38, 0.015 +19290808, 0.90, -0.75, 0.08, 0.015 +19290809, -3.61, 0.26, 0.40, 0.015 +19290810, 1.59, -0.78, 0.48, 0.015 +19290812, 1.47, -0.23, 0.17, 0.015 +19290813, 0.70, -0.57, -0.22, 0.015 +19290814, 0.14, -0.52, -0.12, 0.015 +19290815, 0.29, -0.05, 0.18, 0.015 +19290816, 1.80, -0.38, -0.35, 0.015 +19290817, 0.25, 0.15, 0.87, 0.015 +19290819, 0.50, -0.69, -0.64, 0.015 +19290820, 0.30, -0.01, 0.14, 0.015 +19290821, -0.37, -0.02, -0.12, 0.015 +19290822, 0.85, -0.54, -0.54, 0.015 +19290823, 0.94, -1.24, -0.39, 0.015 +19290824, 0.22, -0.59, 0.14, 0.015 +19290826, -0.05, -0.18, 0.33, 0.015 +19290827, -0.08, 0.02, 0.01, 0.015 +19290828, -0.03, -0.12, 0.15, 0.015 +19290829, 0.84, -0.10, 0.08, 0.015 +19290830, 1.09, -0.55, -0.76, 0.015 +19290903, 0.36, -0.29, -0.53, 0.015 +19290904, -0.53, 0.10, -0.77, 0.015 +19290905, -1.91, 0.75, 0.23, 0.015 +19290906, 2.06, -1.21, -0.22, 0.015 +19290907, 0.32, -0.25, 0.23, 0.015 +19290909, -0.59, 0.10, -0.14, 0.015 +19290910, -1.72, 1.36, -0.01, 0.015 +19290911, 1.19, -1.14, 0.29, 0.015 +19290912, -1.00, 1.15, -0.05, 0.015 +19290913, 0.25, 0.12, -0.22, 0.015 +19290914, 0.22, -0.04, 0.06, 0.015 +19290916, 1.03, -0.48, -0.14, 0.015 +19290917, -0.63, 0.90, -0.27, 0.015 +19290918, 0.44, -0.96, 0.51, 0.015 +19290919, 0.01, -0.01, -0.29, 0.015 +19290920, -0.87, 0.52, -0.09, 0.015 +19290921, -0.08, 0.20, -0.13, 0.015 +19290923, -0.28, -0.17, 0.09, 0.015 +19290924, -1.53, 0.51, 0.22, 0.015 +19290925, -0.16, -0.56, 0.03, 0.015 +19290926, 0.95, 0.08, -0.50, 0.015 +19290927, -2.42, 0.62, 0.47, 0.015 +19290928, 0.30, -0.64, 0.41, 0.015 +19290930, -0.81, 0.73, 0.07, 0.015 +19291001, -0.68, -0.52, -0.11, 0.018 +19291002, 0.75, -0.07, -0.14, 0.018 +19291003, -3.67, 1.28, 0.92, 0.018 +19291004, -1.21, -1.76, 0.18, 0.018 +19291005, 3.89, -0.55, -1.09, 0.018 +19291007, 1.75, 0.17, 0.55, 0.018 +19291008, -0.01, 0.37, 0.06, 0.018 +19291009, -0.20, -0.26, 0.27, 0.018 +19291010, 1.40, -0.60, -0.50, 0.018 +19291011, -0.16, 0.46, 0.23, 0.018 +19291014, -0.51, 0.27, -0.34, 0.018 +19291015, -0.68, 0.32, 0.16, 0.018 +19291016, -3.06, 1.09, 0.91, 0.018 +19291017, 1.03, -1.67, 0.00, 0.018 +19291018, -2.32, 1.31, 1.09, 0.018 +19291019, -2.80, 0.28, 0.92, 0.018 +19291021, -1.35, -1.06, 0.31, 0.018 +19291022, 1.97, -0.39, -0.38, 0.018 +19291023, -5.65, 0.68, 0.58, 0.018 +19291024, -3.84, -3.78, 1.45, 0.018 +19291025, 1.50, 0.10, 0.21, 0.018 +19291026, -0.35, 1.17, 0.74, 0.018 +19291028, -11.29, 1.26, 3.96, 0.018 +19291029, -12.01, 0.26, 2.12, 0.018 +19291030, 12.16, -7.25, -2.10, 0.018 +19291031, 6.10, 2.51, -1.80, 0.018 +19291104, -4.29, 1.96, 1.65, 0.022 +19291106, -9.75, 1.59, 2.40, 0.022 +19291107, 2.18, -4.68, -0.40, 0.022 +19291108, 0.01, 2.63, 0.30, 0.022 +19291111, -5.60, 1.52, 1.90, 0.022 +19291112, -6.00, -1.14, 0.45, 0.022 +19291113, -5.58, -1.91, 1.18, 0.022 +19291114, 7.85, -2.84, -1.76, 0.022 +19291115, 6.23, 1.39, -2.63, 0.022 +19291118, -1.17, 2.28, 0.20, 0.022 +19291119, 2.59, -1.58, 0.02, 0.022 +19291120, 2.45, -0.35, 0.24, 0.022 +19291121, 2.14, -1.13, -0.87, 0.022 +19291122, -0.46, 0.62, 1.03, 0.022 +19291125, -1.11, 0.44, 0.93, 0.022 +19291126, -2.29, 0.88, 0.93, 0.022 +19291127, 0.98, -1.06, -0.52, 0.022 +19291202, 0.04, -0.26, -0.23, 0.015 +19291203, 2.78, -0.49, -0.82, 0.015 +19291204, 1.83, 0.04, 0.32, 0.015 +19291205, -0.42, 0.92, -0.23, 0.015 +19291206, 2.01, -1.09, -0.59, 0.015 +19291207, 1.08, -0.17, -0.37, 0.015 +19291209, -0.93, 0.68, -0.03, 0.015 +19291210, 0.35, -1.02, -0.30, 0.015 +19291211, -0.50, 0.47, -0.05, 0.015 +19291212, -4.95, 1.24, 1.03, 0.015 +19291213, 1.92, -1.73, 0.35, 0.015 +19291214, 1.21, 0.24, 0.58, 0.015 +19291216, -2.37, 1.24, 0.88, 0.015 +19291217, 0.62, -0.69, -0.33, 0.015 +19291218, -0.56, 0.15, 0.52, 0.015 +19291219, -2.41, -0.30, 0.00, 0.015 +19291220, -3.25, -1.37, 1.30, 0.015 +19291221, 1.59, -0.44, -0.49, 0.015 +19291223, -1.37, -0.30, -0.13, 0.015 +19291224, 0.45, -0.01, -0.29, 0.015 +19291226, 2.09, -0.57, -0.59, 0.015 +19291227, -0.23, -0.55, -0.07, 0.015 +19291228, -0.75, -0.02, 0.76, 0.015 +19291230, 0.75, -1.03, -1.31, 0.015 +19291231, 2.68, 0.95, -0.33, 0.015 +19300102, -0.95, 1.82, -0.68, 0.005 +19300103, 0.63, -0.49, 0.63, 0.005 +19300104, 0.71, 0.32, -0.22, 0.005 +19300106, 0.02, 0.39, -0.38, 0.005 +19300107, -0.69, 0.82, 0.44, 0.005 +19300108, -0.12, 0.26, 0.60, 0.005 +19300109, 1.25, -0.08, -0.43, 0.005 +19300110, -0.22, 0.27, 0.24, 0.005 +19300111, -0.49, 0.40, 0.39, 0.005 +19300113, 0.30, -0.30, -0.09, 0.005 +19300114, 0.18, -0.17, 0.49, 0.005 +19300115, 0.20, -0.39, -0.26, 0.005 +19300116, -0.59, -0.06, 1.26, 0.005 +19300117, -0.78, -0.16, -0.14, 0.005 +19300118, 0.23, -0.40, -0.13, 0.005 +19300120, 0.25, 0.40, -0.51, 0.005 +19300121, 0.58, -0.25, 0.17, 0.005 +19300122, 0.11, 0.61, 0.08, 0.005 +19300123, 0.94, -0.22, -0.13, 0.005 +19300124, 0.69, 0.29, -0.58, 0.005 +19300125, 0.75, 0.07, 0.58, 0.005 +19300127, 0.33, -0.21, -0.40, 0.005 +19300128, -0.54, 0.58, 0.03, 0.005 +19300129, 1.01, -0.14, -0.10, 0.005 +19300130, 0.25, -0.02, -0.46, 0.005 +19300131, 1.39, 0.01, -1.51, 0.005 +19300201, 0.79, -0.29, -0.64, 0.013 +19300203, -0.61, 0.47, 0.26, 0.013 +19300204, 0.78, -0.28, -0.27, 0.013 +19300205, 1.03, -0.30, 0.15, 0.013 +19300206, -0.81, 0.28, 0.41, 0.013 +19300207, -0.26, 0.02, 0.61, 0.013 +19300208, 0.82, -0.51, -0.01, 0.013 +19300210, -0.07, 0.16, 0.20, 0.013 +19300211, 0.55, 0.08, 0.14, 0.013 +19300213, 0.16, 0.11, -0.09, 0.013 +19300214, 0.06, 0.17, 0.95, 0.013 +19300215, -0.80, 0.43, -0.23, 0.013 +19300217, 0.59, -0.19, -0.78, 0.013 +19300218, 0.21, 0.34, 0.15, 0.013 +19300219, -0.72, 0.27, -0.17, 0.013 +19300220, -1.90, 0.26, 0.48, 0.013 +19300221, 1.14, -0.92, 0.20, 0.013 +19300224, -0.89, 0.22, -0.30, 0.013 +19300225, 0.01, -0.09, -0.32, 0.013 +19300226, 1.61, -0.59, -0.20, 0.013 +19300227, 0.25, 0.47, 0.07, 0.013 +19300228, 0.55, -0.01, -0.22, 0.013 +19300301, 0.62, 0.37, -0.64, 0.013 +19300303, -0.10, 0.76, -0.18, 0.013 +19300304, 0.50, -0.32, -0.07, 0.013 +19300305, -0.70, 0.07, 0.36, 0.013 +19300306, 0.79, -0.10, -0.60, 0.013 +19300307, 0.09, 0.55, -0.10, 0.013 +19300308, 0.12, 0.31, -0.11, 0.013 +19300310, 0.45, -0.07, -0.39, 0.013 +19300311, 0.18, -0.29, 0.04, 0.013 +19300312, -0.81, 0.38, 1.10, 0.013 +19300313, 0.41, 0.19, -0.31, 0.013 +19300314, -0.68, 0.57, 0.69, 0.013 +19300315, -0.49, 0.65, 0.37, 0.013 +19300317, 1.30, -0.23, 0.02, 0.013 +19300318, 0.97, -0.21, 0.65, 0.013 +19300319, 0.30, 0.23, -0.12, 0.013 +19300320, 0.54, -0.55, -0.24, 0.013 +19300321, 0.54, 0.12, -0.07, 0.013 +19300322, -0.88, 0.65, 0.26, 0.013 +19300324, 0.95, 0.64, -0.03, 0.013 +19300325, 0.03, -0.06, 0.09, 0.013 +19300326, 0.99, -0.69, -0.45, 0.013 +19300327, -0.17, 0.25, -0.52, 0.013 +19300328, 0.87, -0.31, 0.73, 0.013 +19300329, 0.83, 0.04, -0.42, 0.013 +19300331, 0.28, 0.25, 0.05, 0.013 +19300401, 0.76, -0.06, -0.29, 0.009 +19300402, -0.97, 0.61, -0.74, 0.009 +19300403, 0.27, -0.38, -0.17, 0.009 +19300404, 1.05, -0.23, -0.04, 0.009 +19300405, 0.50, -0.27, -0.75, 0.009 +19300407, -0.03, 0.32, 0.43, 0.009 +19300408, -0.64, -0.39, 0.19, 0.009 +19300409, 1.29, -0.45, -1.12, 0.009 +19300410, 0.06, 0.43, -0.40, 0.009 +19300411, -0.37, 0.07, 0.54, 0.009 +19300412, 0.00, 0.12, -0.41, 0.009 +19300414, -0.24, 0.73, 0.18, 0.009 +19300415, -0.02, 0.11, -0.47, 0.009 +19300416, -0.73, 0.13, -0.46, 0.009 +19300417, 0.50, -0.10, -0.25, 0.009 +19300421, -1.50, 0.51, 0.31, 0.009 +19300422, 0.46, -0.68, 0.63, 0.009 +19300423, 0.39, 0.13, 0.74, 0.009 +19300424, -0.85, 0.30, 0.65, 0.009 +19300425, -0.20, -0.24, -0.06, 0.009 +19300426, 0.03, -0.62, 0.19, 0.009 +19300428, -2.10, 0.12, 0.04, 0.009 +19300429, -0.46, -0.91, -0.17, 0.009 +19300430, 0.78, 0.57, 0.52, 0.009 +19300501, -1.95, 0.89, -0.31, 0.010 +19300502, -2.46, -0.52, 0.59, 0.010 +19300503, -3.19, -0.86, 1.99, 0.010 +19300505, -0.19, -2.40, -0.14, 0.010 +19300506, 3.14, 1.44, -1.59, 0.010 +19300507, -0.91, 0.60, 0.39, 0.010 +19300508, 0.22, -0.46, -0.57, 0.010 +19300509, 0.98, -0.42, -0.02, 0.010 +19300510, 1.38, 0.16, -0.94, 0.010 +19300512, -0.01, 0.29, -0.20, 0.010 +19300513, 1.04, -0.44, 0.25, 0.010 +19300514, 0.57, 0.38, 0.18, 0.010 +19300515, -1.26, 0.36, 0.82, 0.010 +19300516, 0.51, 0.01, 0.03, 0.010 +19300517, 0.03, -0.03, 0.40, 0.010 +19300519, -1.84, 0.27, 0.13, 0.010 +19300520, 0.13, -0.58, 0.57, 0.010 +19300521, -0.35, -0.30, -0.47, 0.010 +19300522, 0.16, 0.03, 0.16, 0.010 +19300523, 0.99, 0.18, -1.10, 0.010 +19300524, 0.57, -0.50, 0.10, 0.010 +19300526, 0.12, 0.02, -0.04, 0.010 +19300527, 0.09, -0.10, -0.50, 0.010 +19300528, 0.34, -0.19, -0.39, 0.010 +19300529, 0.49, 0.10, -0.12, 0.010 +19300602, -0.17, 0.29, 0.37, 0.011 +19300603, -0.82, -0.02, 0.41, 0.011 +19300604, 0.29, -0.37, -0.05, 0.011 +19300605, -1.41, 0.16, 0.42, 0.011 +19300606, -1.47, 0.02, 0.36, 0.011 +19300607, -1.81, -0.27, 0.57, 0.011 +19300609, -2.97, -0.57, -0.56, 0.011 +19300610, 2.18, -1.56, 0.15, 0.011 +19300611, -3.20, 0.04, 0.69, 0.011 +19300612, -0.50, -0.41, -0.63, 0.011 +19300613, 0.70, -0.21, 0.75, 0.011 +19300614, -1.77, 1.18, -0.14, 0.011 +19300616, -5.38, -0.85, 0.85, 0.011 +19300617, -0.19, -1.62, 0.63, 0.011 +19300618, -3.42, -1.67, 1.09, 0.011 +19300619, 4.27, -0.32, -1.01, 0.011 +19300620, -1.75, 1.55, -0.71, 0.011 +19300621, -2.61, 0.09, 1.69, 0.011 +19300623, 1.30, -0.96, -0.93, 0.011 +19300624, -2.60, 2.28, -0.04, 0.011 +19300625, 0.13, -1.93, -0.87, 0.011 +19300626, 2.20, 0.37, 0.31, 0.011 +19300627, -0.87, 0.58, 0.13, 0.011 +19300628, 0.33, 0.07, -0.60, 0.011 +19300630, 2.50, 0.13, -0.66, 0.011 +19300701, -0.69, 1.10, 0.87, 0.008 +19300702, 0.87, -0.72, -0.02, 0.008 +19300703, -0.94, 0.58, 0.36, 0.008 +19300707, -1.72, 0.31, -0.33, 0.008 +19300708, 0.37, -1.67, 0.13, 0.008 +19300709, 1.34, 0.53, -0.13, 0.008 +19300710, 2.15, -1.46, 0.48, 0.008 +19300711, -0.90, 1.02, -0.34, 0.008 +19300712, 1.55, -1.04, -0.23, 0.008 +19300714, 1.91, 0.17, 0.07, 0.008 +19300715, 0.45, 0.96, 0.62, 0.008 +19300716, 0.69, -0.64, 0.33, 0.008 +19300717, 0.59, 0.77, -0.30, 0.008 +19300718, 0.71, 0.36, -0.73, 0.008 +19300719, -0.81, 0.48, 0.47, 0.008 +19300721, -2.56, -0.35, 0.54, 0.008 +19300722, 1.46, -0.67, -0.77, 0.008 +19300723, 1.40, 0.52, -0.71, 0.008 +19300724, -0.99, 0.15, -0.31, 0.008 +19300725, 0.49, -0.70, -0.48, 0.008 +19300726, 0.91, -0.28, 0.00, 0.008 +19300728, 0.34, 0.19, -0.47, 0.008 +19300729, -0.77, 0.19, -0.16, 0.008 +19300730, -2.30, 0.27, 0.23, 0.008 +19300731, 0.53, -0.43, -0.66, 0.008 +19300801, -0.46, 0.15, 0.21, 0.004 +19300802, 0.45, 0.11, 0.10, 0.004 +19300804, 1.31, -0.76, -0.54, 0.004 +19300805, -0.12, 0.09, 0.14, 0.004 +19300806, -1.37, 0.54, 0.02, 0.004 +19300807, -0.73, 0.10, -0.37, 0.004 +19300808, -3.77, 0.63, 0.35, 0.004 +19300809, -0.17, -0.46, -0.58, 0.004 +19300811, 0.84, -0.56, -0.02, 0.004 +19300812, -2.26, 0.75, 0.63, 0.004 +19300813, 0.87, -1.39, 0.00, 0.004 +19300814, 0.40, 0.38, -0.30, 0.004 +19300815, 2.15, -1.57, 0.46, 0.004 +19300816, 0.01, 0.80, 0.46, 0.004 +19300818, -0.38, 0.21, -0.72, 0.004 +19300819, 0.79, -0.15, -0.19, 0.004 +19300820, 0.52, -0.37, -0.25, 0.004 +19300821, -0.61, 0.46, -0.45, 0.004 +19300822, 0.12, 0.00, 0.10, 0.004 +19300823, 0.52, -0.06, -0.24, 0.004 +19300825, -0.78, 0.27, -0.06, 0.004 +19300826, 1.16, -1.28, 0.46, 0.004 +19300827, 0.54, 0.23, -0.20, 0.004 +19300828, -0.11, -0.02, 0.15, 0.004 +19300829, 1.38, -0.41, 0.19, 0.004 +19300902, 0.05, 0.26, 0.19, 0.009 +19300903, -0.95, 0.10, 0.00, 0.009 +19300904, -0.57, -0.22, 0.02, 0.009 +19300905, 1.31, 0.32, 0.39, 0.009 +19300906, 1.18, -0.63, 0.23, 0.009 +19300908, 0.11, 0.58, -0.37, 0.009 +19300909, 0.41, 0.34, -0.80, 0.009 +19300910, 0.38, 0.38, -0.16, 0.009 +19300911, -0.97, 0.25, 1.05, 0.009 +19300912, -0.41, 0.35, -0.53, 0.009 +19300913, -0.13, -0.41, -0.03, 0.009 +19300915, -1.22, 0.26, -0.02, 0.009 +19300916, 0.17, -0.89, -0.43, 0.009 +19300917, 0.25, 0.25, -0.14, 0.009 +19300918, -1.11, 0.22, -0.02, 0.009 +19300919, -1.61, -0.35, -0.36, 0.009 +19300920, 0.25, -0.03, 0.10, 0.009 +19300922, -2.52, 0.23, -0.11, 0.009 +19300923, 0.89, -1.22, -0.94, 0.009 +19300924, -1.47, -0.10, -0.64, 0.009 +19300925, -2.00, -0.14, 0.22, 0.009 +19300926, -1.50, -0.17, -0.92, 0.009 +19300927, -0.65, -0.56, -0.22, 0.009 +19300929, -2.02, 0.23, -0.98, 0.009 +19300930, -1.54, -1.67, -1.68, 0.009 +19301001, 3.78, -0.51, 1.60, 0.003 +19301002, -1.03, 1.15, -0.56, 0.003 +19301003, 1.31, -0.40, 0.43, 0.003 +19301004, -0.87, 1.07, -0.40, 0.003 +19301006, -2.90, 0.56, -0.45, 0.003 +19301007, -0.21, -1.85, -0.28, 0.003 +19301008, -0.97, 0.61, 0.81, 0.003 +19301009, -3.89, 0.62, -0.13, 0.003 +19301010, 1.89, -3.58, -1.14, 0.003 +19301011, -2.09, 3.09, 1.38, 0.003 +19301014, 0.93, -1.89, -1.20, 0.003 +19301015, 1.76, 0.42, 0.61, 0.003 +19301016, -1.42, 0.64, 0.17, 0.003 +19301017, -3.62, 0.79, -0.60, 0.003 +19301018, -1.14, -0.91, -1.41, 0.003 +19301020, 2.84, -1.54, 0.71, 0.003 +19301021, -2.39, 1.47, -0.96, 0.003 +19301022, -0.84, -0.96, 0.18, 0.003 +19301023, 0.94, 0.27, 0.09, 0.003 +19301024, 2.81, -0.74, -0.56, 0.003 +19301025, -0.16, 1.12, 0.52, 0.003 +19301027, 0.47, -0.31, -1.11, 0.003 +19301028, 0.62, -0.15, 0.64, 0.003 +19301029, -1.31, 0.83, -0.38, 0.003 +19301030, -1.14, -0.55, 1.02, 0.003 +19301031, -1.98, 0.49, 0.01, 0.003 +19301101, 0.27, -0.61, -0.74, 0.006 +19301103, 0.29, 0.07, -0.17, 0.006 +19301105, -2.62, 1.21, -0.29, 0.006 +19301106, -0.04, -0.67, -0.59, 0.006 +19301107, -3.26, 0.41, -1.12, 0.006 +19301108, -1.19, 0.46, -0.19, 0.006 +19301110, -1.96, -0.38, -0.66, 0.006 +19301111, 0.95, -0.54, -0.67, 0.006 +19301112, 1.64, -0.44, -1.64, 0.006 +19301113, 2.40, 1.15, 0.08, 0.006 +19301114, 2.43, -0.75, 0.08, 0.006 +19301115, 1.01, 1.43, 0.62, 0.006 +19301117, -2.81, 0.91, 0.85, 0.006 +19301118, 0.69, -0.81, 0.17, 0.006 +19301119, 1.93, -0.53, 0.17, 0.006 +19301120, -0.17, 1.10, 1.03, 0.006 +19301121, 1.29, -1.24, 1.30, 0.006 +19301122, -0.94, 1.12, -0.56, 0.006 +19301124, 0.16, 0.08, -0.14, 0.006 +19301125, -1.08, 0.66, -0.05, 0.006 +19301126, -1.39, -0.20, -0.96, 0.006 +19301128, -1.22, 0.49, -0.74, 0.006 +19301129, 0.96, -0.50, 0.45, 0.006 +19301201, 1.20, -1.18, -0.48, 0.005 +19301202, 0.77, 0.61, 0.03, 0.005 +19301203, -1.26, 0.71, -0.76, 0.005 +19301204, -1.61, -0.69, -0.06, 0.005 +19301205, 0.08, -0.59, -0.41, 0.005 +19301206, -1.06, 1.07, -0.26, 0.005 +19301208, -1.43, -0.06, -1.05, 0.005 +19301209, -0.13, -0.55, -0.92, 0.005 +19301210, -1.72, -0.60, -0.60, 0.005 +19301211, -0.97, -0.54, -0.67, 0.005 +19301212, -1.08, 0.46, 0.87, 0.005 +19301213, -2.52, -0.25, -0.83, 0.005 +19301215, -0.54, -0.80, -0.58, 0.005 +19301216, -3.19, -0.56, -2.22, 0.005 +19301217, 3.83, -2.86, 1.22, 0.005 +19301218, 1.18, 1.29, 0.46, 0.005 +19301219, 1.33, -0.51, 0.93, 0.005 +19301220, 0.11, 0.65, 0.75, 0.005 +19301222, -3.08, 1.72, -0.73, 0.005 +19301223, 0.32, -2.21, -0.51, 0.005 +19301224, 1.20, 0.26, -0.43, 0.005 +19301226, -1.82, 1.25, -1.74, 0.005 +19301227, -0.74, -0.36, -0.79, 0.005 +19301229, -0.26, -1.97, -0.40, 0.005 +19301230, 2.00, -1.04, 0.42, 0.005 +19301231, 1.64, 1.43, 2.51, 0.005 +19310102, 3.49, 0.07, 0.63, 0.006 +19310103, 1.82, -0.26, 2.96, 0.006 +19310105, -0.80, 0.28, 1.07, 0.006 +19310106, 1.51, -0.26, 0.95, 0.006 +19310107, 0.05, 1.07, 1.03, 0.006 +19310108, 0.65, 0.63, 1.13, 0.006 +19310109, -0.53, 1.50, 1.38, 0.006 +19310110, 0.42, -0.79, 0.43, 0.006 +19310112, -1.71, 0.93, -1.15, 0.006 +19310113, -1.10, -0.54, -0.73, 0.006 +19310114, 0.66, 0.52, 0.52, 0.006 +19310115, -1.98, 0.65, -0.06, 0.006 +19310116, 1.17, -0.89, -0.30, 0.006 +19310117, -0.43, 0.61, 0.41, 0.006 +19310119, -0.60, 0.20, -1.24, 0.006 +19310120, 1.93, -1.15, 0.19, 0.006 +19310121, 0.05, 0.35, 0.21, 0.006 +19310122, 1.70, -0.93, 0.96, 0.006 +19310123, 1.77, 0.41, -0.29, 0.006 +19310124, -0.76, 0.31, 0.35, 0.006 +19310126, 0.71, -0.72, -0.23, 0.006 +19310127, -0.44, 0.78, 0.55, 0.006 +19310128, -1.93, 0.99, -0.47, 0.006 +19310129, 1.06, -0.91, -0.87, 0.006 +19310130, 0.24, 0.28, 0.54, 0.006 +19310131, -0.60, 0.20, -0.42, 0.006 +19310202, 0.30, -0.08, 0.04, 0.002 +19310203, 0.39, 0.08, -0.46, 0.002 +19310204, 0.46, -0.21, 0.33, 0.002 +19310205, -0.57, 0.29, -0.50, 0.002 +19310206, 0.31, 0.96, -0.27, 0.002 +19310207, 1.31, -0.52, 0.10, 0.002 +19310209, 2.44, 0.24, 0.43, 0.002 +19310210, 1.45, -0.32, 0.72, 0.002 +19310211, 0.56, 0.18, -0.92, 0.002 +19310213, -0.23, 0.33, 0.46, 0.002 +19310214, -0.16, 0.11, -0.51, 0.002 +19310216, 1.24, 0.17, 0.20, 0.002 +19310217, -1.46, 0.65, 0.22, 0.002 +19310218, 0.71, 0.36, -0.22, 0.002 +19310219, 1.15, 0.70, -0.25, 0.002 +19310220, 1.43, 0.00, -0.29, 0.002 +19310221, 1.27, -0.19, 0.67, 0.002 +19310224, 1.22, -0.59, -0.42, 0.002 +19310225, -1.00, 0.26, 0.31, 0.002 +19310226, 0.82, -0.30, 1.40, 0.002 +19310227, -0.53, 0.83, 0.69, 0.002 +19310228, -0.61, 0.05, -0.45, 0.002 +19310302, -1.91, 1.51, -1.79, 0.005 +19310303, -0.27, -0.51, 0.12, 0.005 +19310304, -1.01, 0.08, 0.29, 0.005 +19310305, 1.63, -0.64, -0.04, 0.005 +19310306, -1.73, 1.05, -0.29, 0.005 +19310307, 1.60, -1.34, 0.33, 0.005 +19310309, 0.53, 0.79, -1.23, 0.005 +19310310, -0.09, 0.17, 0.73, 0.005 +19310311, -1.14, 0.30, -0.10, 0.005 +19310312, -0.54, 0.14, -0.44, 0.005 +19310313, -0.55, -0.65, -0.16, 0.005 +19310314, 1.21, -0.13, 0.03, 0.005 +19310316, 1.19, -0.41, 0.48, 0.005 +19310317, -0.97, 0.82, -0.54, 0.005 +19310318, 1.08, -0.27, 0.01, 0.005 +19310319, 1.04, 0.95, -0.32, 0.005 +19310320, 0.25, -0.04, -0.28, 0.005 +19310321, -0.74, 0.38, 0.74, 0.005 +19310323, -0.54, 0.04, 0.13, 0.005 +19310324, 0.79, -1.14, -0.08, 0.005 +19310325, -0.45, 0.39, 0.12, 0.005 +19310326, -1.23, 0.90, -0.46, 0.005 +19310327, -1.68, 0.46, -0.10, 0.005 +19310328, -1.95, 0.02, -0.47, 0.005 +19310330, -1.10, -0.26, 0.10, 0.005 +19310331, 0.19, 0.41, -0.44, 0.005 +19310401, -1.02, 0.15, -1.22, 0.003 +19310402, -0.97, -0.06, 0.75, 0.003 +19310404, 1.78, -0.52, -0.01, 0.003 +19310406, -0.81, 0.48, 0.41, 0.003 +19310407, -1.22, -0.03, -0.99, 0.003 +19310408, 1.05, -1.30, 0.63, 0.003 +19310409, -0.33, 1.30, -1.40, 0.003 +19310410, 0.15, -0.06, 0.59, 0.003 +19310411, 0.07, 0.00, 0.18, 0.003 +19310413, 1.12, -0.55, -0.59, 0.003 +19310414, -1.00, 0.68, -0.26, 0.003 +19310415, -1.84, 0.03, -0.64, 0.003 +19310416, -1.03, -0.17, -0.21, 0.003 +19310417, -1.53, -0.52, 0.73, 0.003 +19310418, 0.73, -0.48, -0.03, 0.003 +19310420, 0.33, 0.06, -0.46, 0.003 +19310421, -2.33, 0.80, -0.45, 0.003 +19310422, -1.95, -0.25, 0.50, 0.003 +19310423, 0.03, -1.05, -1.74, 0.003 +19310424, -0.17, 0.18, -0.44, 0.003 +19310425, -1.81, 0.75, -1.35, 0.003 +19310427, -1.43, -1.84, -1.18, 0.003 +19310428, -0.74, -0.65, 0.04, 0.003 +19310429, -1.90, -0.27, 0.30, 0.003 +19310430, 4.63, -1.69, 2.00, 0.003 +19310501, -2.28, 3.20, -1.17, 0.003 +19310502, 0.79, -1.41, 0.16, 0.003 +19310504, 1.73, -0.55, -0.33, 0.003 +19310505, -1.00, -0.01, 0.49, 0.003 +19310506, 0.43, 0.10, -0.59, 0.003 +19310507, -0.24, -0.03, -1.14, 0.003 +19310508, 2.73, -0.91, 0.03, 0.003 +19310509, -1.18, 1.84, -0.14, 0.003 +19310511, -0.06, -0.55, 0.44, 0.003 +19310512, -0.97, 0.79, -0.11, 0.003 +19310513, -0.30, 0.67, -0.86, 0.003 +19310514, -2.20, 1.35, -0.64, 0.003 +19310515, -1.14, -0.43, -0.84, 0.003 +19310516, -0.52, 0.75, -0.23, 0.003 +19310518, -3.25, 1.98, -1.83, 0.003 +19310519, -0.37, -1.91, -0.05, 0.003 +19310520, -0.53, 0.37, 0.91, 0.003 +19310521, 0.91, -2.19, 0.50, 0.003 +19310522, 0.39, -0.28, 0.79, 0.003 +19310523, -0.98, 1.35, 0.13, 0.003 +19310525, -2.92, 1.33, -0.84, 0.003 +19310526, -0.22, -0.61, -0.61, 0.003 +19310527, -1.34, 0.49, 0.01, 0.003 +19310528, 0.57, -0.68, -1.25, 0.003 +19310529, -2.04, 0.96, 0.01, 0.003 +19310601, -4.37, 0.94, -0.89, 0.003 +19310602, -1.36, -0.83, -0.27, 0.003 +19310603, 6.37, -4.53, 1.40, 0.003 +19310604, 3.49, 0.85, 3.23, 0.003 +19310605, -0.44, 1.05, 0.79, 0.003 +19310606, -2.26, 1.67, -0.09, 0.003 +19310608, 2.93, -2.52, 0.56, 0.003 +19310609, -1.32, 1.09, 0.21, 0.003 +19310610, 2.13, -2.96, -0.10, 0.003 +19310611, 0.48, -1.39, 2.39, 0.003 +19310612, 0.38, -0.18, 1.42, 0.003 +19310613, -0.14, 0.87, 0.51, 0.003 +19310615, -0.57, 1.19, -1.02, 0.003 +19310616, 0.13, -0.47, 0.61, 0.003 +19310617, -0.92, 0.36, -0.60, 0.003 +19310618, -1.66, 1.65, -1.04, 0.003 +19310619, -0.29, 0.03, 0.65, 0.003 +19310620, 5.07, -3.34, 0.82, 0.003 +19310622, 3.98, -0.81, -0.01, 0.003 +19310623, -0.94, 2.09, -0.09, 0.003 +19310624, 4.15, -0.92, 3.55, 0.003 +19310625, -0.51, 1.73, -1.55, 0.003 +19310626, 2.54, -1.82, 2.05, 0.003 +19310627, 0.99, -0.39, -0.09, 0.003 +19310629, -2.21, 0.86, -1.00, 0.003 +19310630, -1.63, 0.80, -0.74, 0.003 +19310701, 1.19, -1.37, 0.50, 0.002 +19310702, -0.59, 0.16, -0.21, 0.002 +19310703, 1.97, -0.24, 0.36, 0.002 +19310706, -1.01, 0.71, -0.43, 0.002 +19310707, -3.67, 1.79, -1.90, 0.002 +19310708, -0.91, -0.03, -0.83, 0.002 +19310709, 0.87, -0.75, 0.41, 0.002 +19310710, 1.05, -0.56, 1.14, 0.002 +19310711, -1.53, 1.62, -0.80, 0.002 +19310713, -1.06, -0.50, -1.13, 0.002 +19310714, -0.71, 0.46, -0.73, 0.002 +19310715, -2.13, 0.31, -1.70, 0.002 +19310716, 2.03, -0.40, 0.93, 0.002 +19310717, 1.04, -0.47, 1.94, 0.002 +19310718, 0.05, -0.48, 0.02, 0.002 +19310720, 1.18, -0.87, 1.38, 0.002 +19310721, 1.02, -0.92, 1.76, 0.002 +19310722, -2.05, 1.58, -0.89, 0.002 +19310723, -0.16, 0.30, -0.55, 0.002 +19310724, -1.68, 0.74, -1.14, 0.002 +19310725, -0.39, 0.56, 0.57, 0.002 +19310727, 0.54, -0.81, -0.58, 0.002 +19310728, 0.92, -1.24, 1.24, 0.002 +19310729, -2.71, 1.88, -1.04, 0.002 +19310730, 0.51, -0.45, 0.25, 0.002 +19310731, -0.37, 0.36, -0.54, 0.002 +19310801, 0.63, -0.34, 0.12, 0.001 +19310803, 0.50, -0.91, 0.13, 0.001 +19310804, -0.67, 0.25, -1.26, 0.001 +19310805, -1.43, 1.06, -0.67, 0.001 +19310806, -0.54, 0.03, -0.71, 0.001 +19310807, 0.23, -0.12, -0.62, 0.001 +19310808, 0.08, 0.50, -0.15, 0.001 +19310810, -0.40, -0.30, -0.71, 0.001 +19310811, 3.05, -1.37, -0.09, 0.001 +19310812, -1.18, 1.00, 0.80, 0.001 +19310813, 1.37, -1.20, 0.06, 0.001 +19310814, 1.81, -1.05, 0.99, 0.001 +19310815, 0.99, -0.42, 0.58, 0.001 +19310817, -2.26, 1.38, -0.34, 0.001 +19310818, 0.30, -1.03, 1.57, 0.001 +19310819, 0.26, -0.32, 1.36, 0.001 +19310820, 0.19, 0.34, -0.96, 0.001 +19310821, -2.49, 1.31, -0.18, 0.001 +19310822, -0.12, -0.26, -0.31, 0.001 +19310824, -0.49, -0.29, -0.46, 0.001 +19310825, -0.32, 0.55, -1.17, 0.001 +19310826, 1.50, -1.56, 0.98, 0.001 +19310827, -0.51, 0.46, -0.21, 0.001 +19310828, 0.77, -0.49, 0.00, 0.001 +19310829, 0.65, -0.52, 0.44, 0.001 +19310831, -1.36, 1.04, -0.81, 0.001 +19310901, 0.34, 0.28, -0.95, 0.001 +19310902, -1.70, 1.06, -1.50, 0.001 +19310903, -2.13, 0.70, -1.68, 0.001 +19310904, -0.57, 0.73, -0.52, 0.001 +19310908, -2.93, 1.23, -1.90, 0.001 +19310909, -0.80, -0.79, -0.55, 0.001 +19310910, -1.06, -0.14, 0.32, 0.001 +19310911, 0.51, -1.07, -0.57, 0.001 +19310912, -2.05, 2.23, 1.03, 0.001 +19310914, -2.61, -0.13, -3.93, 0.001 +19310915, -1.29, -0.68, -0.10, 0.001 +19310916, -0.97, -0.08, 0.74, 0.001 +19310917, 1.36, -1.95, 0.12, 0.001 +19310918, -4.47, 2.93, -2.02, 0.001 +19310919, -3.38, -0.15, -1.65, 0.001 +19310921, -1.58, -3.66, 1.12, 0.001 +19310922, -0.96, -1.19, 0.30, 0.001 +19310923, 6.49, -4.40, 7.50, 0.001 +19310924, -6.80, 5.57, -1.86, 0.001 +19310925, 1.60, -4.00, -1.12, 0.001 +19310926, -1.16, 3.51, 0.60, 0.001 +19310928, -2.10, -0.74, -0.71, 0.001 +19310929, -4.08, 0.13, -0.16, 0.001 +19310930, -3.11, -0.83, -1.12, 0.001 +19311001, -1.78, -2.29, -1.00, 0.004 +19311002, 1.40, 0.36, -0.38, 0.004 +19311003, -2.86, 3.34, 0.33, 0.004 +19311005, -5.84, 1.37, -3.52, 0.004 +19311006, 11.16, -6.05, 1.36, 0.004 +19311007, -0.88, 3.58, 1.46, 0.004 +19311008, 7.91, -3.97, 3.11, 0.004 +19311009, -0.04, 1.60, 2.20, 0.004 +19311010, 0.73, 0.24, 0.12, 0.004 +19311013, -4.81, 3.22, -1.48, 0.004 +19311014, -2.19, 0.39, -1.39, 0.004 +19311015, 1.87, -1.09, 1.60, 0.004 +19311016, 3.03, -3.21, 0.26, 0.004 +19311017, 0.07, 0.66, 0.31, 0.004 +19311019, 0.74, -0.21, 0.45, 0.004 +19311020, 4.25, -1.87, 1.43, 0.004 +19311021, -0.89, 2.86, -2.41, 0.004 +19311022, -3.24, 0.46, -0.21, 0.004 +19311023, 3.10, -2.02, -1.32, 0.004 +19311024, 0.74, 0.71, 1.20, 0.004 +19311026, -2.58, 2.09, -0.28, 0.004 +19311027, -1.89, 0.69, -1.18, 0.004 +19311028, -2.70, 1.63, 0.04, 0.004 +19311029, 0.22, -0.87, 0.02, 0.004 +19311030, 2.73, -2.49, 1.65, 0.004 +19311031, 1.12, -0.64, 1.54, 0.004 +19311102, -0.21, 0.92, 0.82, 0.007 +19311104, 2.61, -0.79, -0.53, 0.007 +19311105, -0.26, 0.85, 0.05, 0.007 +19311106, 2.74, -0.19, -0.66, 0.007 +19311107, 2.53, -0.77, 2.39, 0.007 +19311109, 1.23, -0.03, 1.51, 0.007 +19311110, -1.90, 0.07, -0.47, 0.007 +19311111, -1.30, 0.30, 0.62, 0.007 +19311112, -0.26, 1.20, -0.24, 0.007 +19311113, -3.00, 2.19, -2.23, 0.007 +19311114, -1.19, 0.49, -1.67, 0.007 +19311116, -1.23, 0.29, -0.61, 0.007 +19311117, 1.20, -0.87, -1.05, 0.007 +19311118, -3.03, 2.14, -0.01, 0.007 +19311119, -0.48, -2.07, 0.52, 0.007 +19311120, -2.97, 1.58, -1.35, 0.007 +19311121, -0.55, 0.70, 0.81, 0.007 +19311123, -0.94, 0.01, -0.80, 0.007 +19311124, 1.55, -1.27, 0.30, 0.007 +19311125, -3.17, 1.80, -0.85, 0.007 +19311127, -2.49, 0.71, -1.43, 0.007 +19311128, -1.30, 0.90, -0.36, 0.007 +19311130, 3.36, -3.47, -0.27, 0.007 +19311201, -0.91, -0.15, -0.39, 0.005 +19311202, -3.11, 2.24, -1.08, 0.005 +19311203, 1.48, -3.05, -0.90, 0.005 +19311204, -1.97, 0.77, 0.01, 0.005 +19311205, 3.06, -2.65, 1.25, 0.005 +19311207, -0.19, 0.66, -1.77, 0.005 +19311208, -3.00, 1.76, -0.21, 0.005 +19311209, -2.59, 0.27, -1.30, 0.005 +19311210, -2.06, -0.79, -2.01, 0.005 +19311211, -2.76, 1.12, -0.31, 0.005 +19311212, -1.13, -0.47, -0.90, 0.005 +19311214, -2.31, 0.49, -2.09, 0.005 +19311215, 0.97, -3.00, -1.02, 0.005 +19311216, -2.11, 2.64, 0.11, 0.005 +19311217, -3.16, 0.56, -3.95, 0.005 +19311218, 7.97, -6.23, 4.75, 0.005 +19311219, 0.75, 4.00, 1.48, 0.005 +19311221, -2.62, -0.30, 2.08, 0.005 +19311222, 1.39, -1.58, -2.93, 0.005 +19311223, -3.48, 2.82, -2.15, 0.005 +19311224, 0.02, 0.90, -0.88, 0.005 +19311228, -2.67, -0.75, -1.56, 0.005 +19311229, 2.09, -2.30, -0.13, 0.005 +19311230, 1.65, -1.93, -0.22, 0.005 +19311231, 0.99, 3.46, 3.92, 0.005 +19320102, -3.47, 3.73, 2.13, 0.009 +19320104, -2.99, 1.08, -0.76, 0.009 +19320105, -0.37, -1.04, 0.34, 0.009 +19320106, 6.44, -4.30, 2.95, 0.009 +19320107, 1.99, -0.82, 4.38, 0.009 +19320108, 3.80, -2.24, 1.66, 0.009 +19320109, -1.55, 2.78, 0.20, 0.009 +19320111, 1.11, -2.03, 2.92, 0.009 +19320112, -0.90, 0.30, -0.30, 0.009 +19320113, 4.52, -2.02, 0.57, 0.009 +19320114, 1.10, 0.72, 0.19, 0.009 +19320115, -0.09, 0.79, -0.63, 0.009 +19320116, -1.59, 1.12, -0.17, 0.009 +19320118, -2.36, 1.71, -0.73, 0.009 +19320119, -0.36, -0.38, 0.11, 0.009 +19320120, 1.66, -2.35, 1.93, 0.009 +19320121, -0.06, 0.90, -0.81, 0.009 +19320122, -3.75, 2.47, -0.09, 0.009 +19320123, -0.79, -0.56, -1.47, 0.009 +19320125, 0.39, -0.03, 0.61, 0.009 +19320126, 0.91, -0.11, -1.19, 0.009 +19320127, -1.67, -0.70, -0.31, 0.009 +19320128, -1.24, 1.71, 0.40, 0.009 +19320129, -1.22, 0.95, -1.15, 0.009 +19320130, -0.32, 1.99, -0.91, 0.009 +19320201, 3.73, -4.29, 2.23, 0.010 +19320202, -1.73, 1.89, -1.01, 0.010 +19320203, 0.01, -0.99, -0.43, 0.010 +19320204, -0.73, 1.30, -1.46, 0.010 +19320205, -2.67, 1.96, -0.23, 0.010 +19320206, -0.86, 0.29, 1.12, 0.010 +19320208, -0.92, 1.16, -2.00, 0.010 +19320209, -1.22, 0.28, 0.81, 0.010 +19320210, -0.30, -0.48, 0.86, 0.010 +19320211, 7.38, -5.33, 1.03, 0.010 +19320213, 8.23, -4.49, 0.35, 0.010 +19320215, -2.79, 2.39, 0.73, 0.010 +19320216, 3.84, -2.65, -0.61, 0.010 +19320217, -3.47, 3.89, -0.53, 0.010 +19320218, 2.29, -2.14, -1.17, 0.010 +19320219, 0.16, 0.70, 0.40, 0.010 +19320220, -2.20, 1.39, -0.77, 0.010 +19320223, -3.20, 1.11, 0.08, 0.010 +19320224, 2.04, -1.42, -0.40, 0.010 +19320225, -0.68, 1.01, -0.88, 0.010 +19320226, -0.04, -0.28, 0.17, 0.010 +19320227, -0.29, 0.41, 0.55, 0.010 +19320229, -0.26, 0.79, -0.06, 0.010 +19320301, 0.39, -1.08, 0.40, 0.006 +19320302, 3.92, -2.58, 0.17, 0.006 +19320303, -0.17, 1.02, -0.07, 0.006 +19320304, 0.12, -0.17, -0.14, 0.006 +19320305, 2.49, -0.50, 0.68, 0.006 +19320307, -1.26, 0.45, 1.44, 0.006 +19320308, 1.58, -1.18, 0.70, 0.006 +19320309, -1.45, 0.89, -0.12, 0.006 +19320310, -0.80, 0.36, -1.09, 0.006 +19320311, -2.22, 1.03, 0.00, 0.006 +19320312, 0.71, -0.09, 0.22, 0.006 +19320314, -3.16, 2.01, -0.80, 0.006 +19320315, -0.32, 0.74, -0.96, 0.006 +19320316, -2.00, 0.85, -1.19, 0.006 +19320317, 1.83, -3.25, 0.62, 0.006 +19320318, -2.45, 2.17, 1.06, 0.006 +19320319, -0.70, 0.22, -1.03, 0.006 +19320321, 1.28, -1.49, -0.82, 0.006 +19320322, -0.64, 0.59, -0.14, 0.006 +19320323, -1.46, 0.53, 0.33, 0.006 +19320324, -0.92, 0.31, 0.55, 0.006 +19320326, -2.67, 1.91, -0.57, 0.006 +19320328, -0.80, -0.08, -0.81, 0.006 +19320329, 0.34, -1.10, 0.24, 0.006 +19320330, 1.66, -2.63, 1.05, 0.006 +19320331, -4.76, 3.03, -2.01, 0.006 +19320401, -1.43, 1.37, -1.96, 0.004 +19320402, -1.03, 0.71, -0.53, 0.004 +19320404, -0.88, -0.88, -2.10, 0.004 +19320405, -3.69, 2.50, -1.56, 0.004 +19320406, -2.37, -0.22, 0.14, 0.004 +19320407, -0.80, -0.26, 0.65, 0.004 +19320408, -3.94, 1.00, 0.00, 0.004 +19320409, 1.82, -1.23, 0.63, 0.004 +19320411, -3.26, 0.51, 1.75, 0.004 +19320412, -0.36, -0.83, -1.08, 0.004 +19320413, -1.24, 0.85, 0.48, 0.004 +19320414, 3.22, -4.82, 1.09, 0.004 +19320415, 2.84, -0.97, 1.65, 0.004 +19320416, -1.10, 2.71, 0.17, 0.004 +19320418, -2.79, 0.46, 0.88, 0.004 +19320419, -1.25, 0.29, -0.44, 0.004 +19320420, -0.26, -2.14, 1.33, 0.004 +19320421, 2.96, -1.12, -0.22, 0.004 +19320422, -3.77, 4.04, -1.01, 0.004 +19320423, 0.89, -2.24, 1.60, 0.004 +19320425, 0.12, -0.54, 0.38, 0.004 +19320426, 1.34, -0.90, 1.18, 0.004 +19320427, 2.15, -0.92, 0.31, 0.004 +19320428, -3.41, 2.80, -2.11, 0.004 +19320429, -2.96, 0.71, 0.61, 0.004 +19320430, 0.06, -0.25, -0.32, 0.004 +19320502, -1.31, 0.42, -1.37, 0.002 +19320503, -1.22, 0.90, -0.97, 0.002 +19320504, 0.75, -1.86, 0.07, 0.002 +19320505, -0.71, 0.40, 1.86, 0.002 +19320506, 6.16, -4.87, 0.33, 0.002 +19320507, -0.96, 2.24, 1.22, 0.002 +19320509, -1.15, 0.85, -0.19, 0.002 +19320510, 0.98, -1.60, -0.51, 0.002 +19320511, -0.15, 0.88, 0.47, 0.002 +19320512, -2.91, 2.38, -1.63, 0.002 +19320513, -3.05, 1.03, 0.79, 0.002 +19320514, -1.35, 1.90, -1.45, 0.002 +19320516, 1.64, -2.63, -0.27, 0.002 +19320517, 0.01, 0.50, -0.42, 0.002 +19320518, -1.90, 1.04, 0.65, 0.002 +19320519, 0.13, -1.69, -0.09, 0.002 +19320520, 0.00, 0.92, -0.06, 0.002 +19320521, 0.08, -1.32, -0.85, 0.002 +19320523, -0.75, 0.69, -0.11, 0.002 +19320524, -3.45, 1.55, -0.67, 0.002 +19320525, -2.98, -0.94, -2.53, 0.002 +19320526, 0.72, -3.04, 0.00, 0.002 +19320527, -4.19, 3.78, -0.62, 0.002 +19320528, 0.20, -1.30, 1.10, 0.002 +19320531, -6.82, 4.45, 0.33, 0.002 +19320601, -1.18, -1.20, 1.82, 0.001 +19320602, 4.21, -3.57, -0.25, 0.001 +19320603, 4.14, -1.97, 2.01, 0.001 +19320604, 6.41, -3.97, 1.03, 0.001 +19320606, -2.14, 1.46, 0.86, 0.001 +19320607, -3.64, 4.27, -0.83, 0.001 +19320608, -4.78, 3.04, 0.78, 0.001 +19320609, -0.30, -0.86, -2.72, 0.001 +19320610, 6.32, -5.64, 2.12, 0.001 +19320611, -0.50, 3.42, -1.21, 0.001 +19320613, -0.93, 0.08, 0.48, 0.001 +19320614, 1.96, -1.73, 1.17, 0.001 +19320615, 3.25, -2.33, -0.30, 0.001 +19320616, 0.36, 0.27, 3.73, 0.001 +19320617, -4.70, 2.88, 0.05, 0.001 +19320618, 0.28, 0.71, -0.69, 0.001 +19320620, 0.47, -1.02, -0.45, 0.001 +19320621, -2.08, 1.00, -0.67, 0.001 +19320622, -0.27, 0.74, -0.80, 0.001 +19320623, 0.95, 0.19, 0.76, 0.001 +19320624, -3.55, 3.50, -1.12, 0.001 +19320625, -0.26, 0.60, -0.75, 0.001 +19320627, -2.90, 1.08, 1.61, 0.001 +19320628, 0.11, -0.25, -1.30, 0.001 +19320629, 0.68, 0.23, -1.15, 0.001 +19320630, -1.38, -1.46, 1.63, 0.001 +19320701, 2.65, -0.28, 0.02, 0.001 +19320705, -0.99, 0.24, 2.51, 0.001 +19320706, 1.86, -1.00, -1.46, 0.001 +19320707, -2.93, 2.77, 2.22, 0.001 +19320708, -1.24, 0.85, 0.38, 0.001 +19320709, 0.94, -0.27, -0.09, 0.001 +19320711, 2.58, -2.09, 2.19, 0.001 +19320712, 0.27, -0.94, 0.19, 0.001 +19320713, 4.14, -1.27, 1.16, 0.001 +19320714, -1.83, 1.41, 0.25, 0.001 +19320715, 4.24, -3.00, 2.36, 0.001 +19320716, 0.14, 1.45, 0.60, 0.001 +19320718, -2.60, 2.36, -0.93, 0.001 +19320719, -0.42, -0.03, -0.94, 0.001 +19320720, 3.01, -2.24, 2.77, 0.001 +19320721, 2.47, -1.59, 3.67, 0.001 +19320722, 2.84, -0.96, 2.77, 0.001 +19320723, 0.21, 1.53, -0.37, 0.001 +19320725, 4.40, -2.86, 5.68, 0.001 +19320726, -0.97, 2.05, 0.97, 0.001 +19320727, 4.34, -2.20, 0.45, 0.001 +19320728, 3.35, 2.51, -0.71, 0.001 +19320729, 2.72, -1.52, 1.45, 0.001 +19320730, 0.74, 1.90, -0.33, 0.001 +19320801, -0.35, 1.64, 0.21, 0.001 +19320802, -2.53, 2.29, -1.81, 0.001 +19320803, 7.89, -6.15, 1.75, 0.001 +19320804, 1.69, 1.15, -0.45, 0.001 +19320805, 3.70, -2.48, 0.50, 0.001 +19320806, 5.91, -3.40, 2.93, 0.001 +19320808, 2.94, 2.78, 2.77, 0.001 +19320809, 0.07, 1.55, 1.99, 0.001 +19320810, 4.11, 0.49, 4.19, 0.001 +19320811, -1.38, 2.65, -0.44, 0.001 +19320812, -6.31, 3.19, 0.37, 0.001 +19320813, -1.06, -1.43, -1.88, 0.001 +19320815, 6.01, -2.34, 2.39, 0.001 +19320816, 3.43, -0.34, 2.69, 0.001 +19320817, -2.02, 0.65, -3.55, 0.001 +19320818, 1.00, -1.83, 1.21, 0.001 +19320819, -0.95, 1.77, 1.05, 0.001 +19320820, 0.26, 1.49, -0.90, 0.001 +19320822, 5.76, -0.93, 3.48, 0.001 +19320823, 2.11, 0.98, 0.74, 0.001 +19320824, 2.24, -0.25, 2.38, 0.001 +19320825, -0.44, 3.33, 2.09, 0.001 +19320826, 1.30, -0.04, 0.33, 0.001 +19320827, 1.90, 1.88, 1.28, 0.001 +19320829, 0.28, 1.52, 0.29, 0.001 +19320830, -1.34, 2.44, 0.19, 0.001 +19320831, -0.91, -2.11, -0.90, 0.001 +19320901, 0.39, 1.06, 0.75, 0.001 +19320902, 4.56, -0.01, 0.48, 0.001 +19320903, 2.31, -0.13, 0.09, 0.001 +19320906, -2.08, 1.22, 0.13, 0.001 +19320907, 3.94, -1.80, 0.28, 0.001 +19320908, -2.86, 3.51, -0.70, 0.001 +19320909, -2.15, -0.66, -1.49, 0.001 +19320910, 0.07, -1.92, 0.37, 0.001 +19320912, -6.40, 0.64, -3.57, 0.001 +19320913, -4.09, -1.17, -4.66, 0.001 +19320914, -5.14, 2.71, -2.67, 0.001 +19320915, 4.02, -4.60, 1.50, 0.001 +19320916, -0.69, 2.36, 1.96, 0.001 +19320917, -0.89, -0.32, -0.30, 0.001 +19320919, -1.57, 0.47, -0.50, 0.001 +19320920, 2.90, -2.49, 0.17, 0.001 +19320921, 10.96, -1.26, 5.21, 0.001 +19320922, -2.52, 2.53, -0.75, 0.001 +19320923, 1.34, -1.52, -0.53, 0.001 +19320924, 1.33, 0.18, 0.00, 0.001 +19320926, -4.93, 1.84, -1.29, 0.001 +19320927, 0.71, -1.05, 0.68, 0.001 +19320928, 2.36, -1.94, -0.16, 0.001 +19320929, -2.66, 1.44, -1.70, 0.001 +19320930, -0.19, -2.70, 1.25, 0.001 +19321001, 0.70, 0.24, 0.49, 0.001 +19321003, -1.35, 0.11, -1.89, 0.001 +19321004, 0.11, -0.34, -0.89, 0.001 +19321005, -7.33, 2.29, -2.21, 0.001 +19321006, 0.05, -1.95, -1.84, 0.001 +19321007, -5.04, 1.21, -3.95, 0.001 +19321008, -2.95, 1.10, -3.10, 0.001 +19321010, -5.52, 1.54, -3.57, 0.001 +19321011, 6.87, -3.89, 2.95, 0.001 +19321013, -2.49, 1.50, 0.68, 0.001 +19321014, 6.46, -3.35, 2.89, 0.001 +19321015, 0.77, 0.91, 1.04, 0.001 +19321017, -2.52, 0.31, -0.86, 0.001 +19321018, 1.57, -1.55, -0.02, 0.001 +19321019, 3.57, -2.37, 0.49, 0.001 +19321020, -1.76, 1.01, 0.87, 0.001 +19321021, -5.47, 2.31, -2.32, 0.001 +19321022, -0.13, -0.34, 1.35, 0.001 +19321024, 0.43, -1.22, -1.78, 0.001 +19321025, -0.86, -0.19, 0.14, 0.001 +19321026, 1.38, -2.35, 1.68, 0.001 +19321027, 0.98, 0.00, 0.13, 0.001 +19321028, 1.61, -0.99, 1.13, 0.001 +19321029, -1.14, 2.06, -2.50, 0.001 +19321031, -0.72, -0.60, 0.28, 0.001 +19321101, -3.63, 1.78, -1.53, 0.001 +19321102, -3.15, 0.65, -1.74, 0.001 +19321103, -0.63, -0.78, -2.95, 0.001 +19321104, 5.42, -2.40, 0.52, 0.001 +19321105, 1.17, 0.33, 1.39, 0.001 +19321107, 3.53, -0.51, 1.52, 0.001 +19321109, -3.75, 3.63, -2.08, 0.001 +19321110, 6.47, -4.45, 2.26, 0.001 +19321111, 3.66, -0.10, 0.98, 0.001 +19321112, 0.04, 2.09, -0.13, 0.001 +19321114, -2.81, 0.56, -1.23, 0.001 +19321115, -0.17, -1.91, -0.78, 0.001 +19321116, -2.90, 3.05, -2.16, 0.001 +19321117, -0.74, 0.01, -2.49, 0.001 +19321118, -0.10, 0.10, 0.38, 0.001 +19321119, 1.43, -0.96, -0.19, 0.001 +19321121, -0.54, -0.42, -0.05, 0.001 +19321122, -0.30, 0.12, -0.67, 0.001 +19321123, -4.08, 1.03, -1.19, 0.001 +19321125, -1.20, -0.55, 0.08, 0.001 +19321126, 0.48, 0.06, 1.25, 0.001 +19321128, -0.38, -0.27, -1.42, 0.001 +19321129, -0.37, -0.03, -0.98, 0.001 +19321130, -2.68, 0.42, -2.48, 0.001 +19321201, 2.36, -1.13, 0.20, 0.000 +19321202, -3.14, 1.80, -1.81, 0.000 +19321203, -0.28, -0.77, -2.00, 0.000 +19321205, 0.91, -0.49, -0.33, 0.000 +19321206, 4.39, -4.51, 1.09, 0.000 +19321207, 0.50, 0.58, 0.62, 0.000 +19321208, -0.05, 0.23, -0.92, 0.000 +19321209, 2.23, -1.76, 0.20, 0.000 +19321210, -0.55, -0.23, -0.04, 0.000 +19321212, 0.52, -1.08, 1.81, 0.000 +19321213, -1.28, 0.64, -2.53, 0.000 +19321214, 1.72, -2.27, 0.55, 0.000 +19321215, -0.57, 1.71, -2.76, 0.000 +19321216, -0.65, 0.21, -1.19, 0.000 +19321217, -0.04, 0.11, -0.06, 0.000 +19321219, -0.33, -0.96, -1.65, 0.000 +19321220, -1.99, 0.06, -1.02, 0.000 +19321221, -0.40, -0.66, -1.15, 0.000 +19321222, -3.36, 1.93, -2.28, 0.000 +19321223, -0.19, -1.57, -0.42, 0.000 +19321224, 1.28, 0.15, 1.54, 0.000 +19321227, -0.65, -1.48, -1.21, 0.000 +19321228, 0.06, 0.40, -0.35, 0.000 +19321229, 1.52, -2.62, -1.30, 0.000 +19321230, 2.72, 0.03, 6.78, 0.000 +19321231, -0.04, 3.37, 1.07, 0.000 +19330103, -0.72, 1.73, -1.08, 0.000 +19330104, 4.33, -1.92, 3.60, 0.000 +19330105, -0.28, 2.47, 0.91, 0.000 +19330106, 1.42, -0.89, 2.39, 0.000 +19330109, -1.05, 0.64, -0.47, 0.000 +19330110, 2.57, -1.73, 2.52, 0.000 +19330111, -0.21, 1.51, 0.86, 0.000 +19330112, -0.99, 0.07, -0.44, 0.000 +19330113, -0.16, -0.82, -2.24, 0.000 +19330114, -0.23, -0.22, 0.21, 0.000 +19330116, -2.24, 2.00, -1.17, 0.000 +19330117, 0.15, -1.18, -0.70, 0.000 +19330118, -1.67, 1.36, -0.07, 0.000 +19330119, 0.54, -1.31, 0.61, 0.000 +19330120, 1.21, -1.07, 0.56, 0.000 +19330121, 0.45, -0.40, 0.54, 0.000 +19330123, -0.87, 0.76, -1.22, 0.000 +19330124, -0.43, 0.90, -0.07, 0.000 +19330125, 1.43, -2.14, 0.89, 0.000 +19330126, -0.51, 1.15, -0.95, 0.000 +19330127, -0.20, -1.06, 1.25, 0.000 +19330128, -0.81, 1.64, -1.00, 0.000 +19330130, -0.06, -1.41, 0.88, 0.000 +19330131, -0.21, 0.49, 0.73, 0.000 +19330201, -2.91, 1.14, 0.21, -0.001 +19330202, -1.73, -0.92, -0.40, -0.001 +19330203, -0.06, 0.32, 0.99, -0.001 +19330204, -0.98, 0.54, -0.45, -0.001 +19330206, 0.04, -0.70, 0.59, -0.001 +19330207, 0.94, -0.54, -0.08, -0.001 +19330208, 1.08, -0.48, 0.10, -0.001 +19330209, 2.04, -0.35, 2.09, -0.001 +19330210, -1.03, 0.42, -0.10, -0.001 +19330211, 0.34, -1.04, 0.93, -0.001 +19330214, -4.69, -0.47, -1.92, -0.001 +19330215, -0.10, 0.52, -0.22, -0.001 +19330216, -2.03, 0.34, -0.65, -0.001 +19330217, 1.49, -2.00, 1.26, -0.001 +19330218, -0.32, 2.25, -0.32, -0.001 +19330220, -2.70, 1.08, -1.44, -0.001 +19330221, -0.62, 0.15, -0.69, -0.001 +19330223, -4.01, 1.06, -1.52, -0.001 +19330224, 2.98, -3.11, 0.34, -0.001 +19330225, -4.73, 2.63, -1.80, -0.001 +19330227, -1.32, -2.56, -0.23, -0.001 +19330228, 2.16, -1.96, 0.51, -0.001 +19330301, 1.58, -0.56, 1.75, 0.002 +19330302, -1.80, 0.97, -1.09, 0.002 +19330303, 3.07, -1.68, 2.14, 0.002 +19330315, 15.76, 1.43, 8.17, 0.002 +19330316, 1.47, 3.38, 3.34, 0.002 +19330317, -3.48, 0.05, -0.96, 0.002 +19330318, -0.26, -0.07, -0.70, 0.002 +19330320, -1.37, 0.00, 0.95, 0.002 +19330321, -4.41, 1.62, -3.91, 0.002 +19330322, -1.21, -0.95, 0.05, 0.002 +19330323, 1.70, -1.58, 2.97, 0.002 +19330324, -0.38, 0.20, -0.35, 0.002 +19330325, -0.57, 0.16, -0.87, 0.002 +19330327, -2.02, -0.30, 0.45, 0.002 +19330328, 1.62, -2.22, 0.38, 0.002 +19330329, -1.85, 1.70, -0.71, 0.002 +19330330, -0.48, -0.87, -1.64, 0.002 +19330331, -2.73, 2.40, -1.48, 0.002 +19330401, 0.50, -0.74, -0.13, 0.004 +19330403, -0.09, -0.70, -0.68, 0.004 +19330404, 0.33, 0.09, -0.20, 0.004 +19330405, 1.00, 2.58, -2.74, 0.004 +19330406, 1.84, -1.19, 3.10, 0.004 +19330407, 0.97, 0.03, 0.60, 0.004 +19330408, 1.34, -1.42, 2.06, 0.004 +19330410, 4.85, -0.25, 0.07, 0.004 +19330411, -0.74, 1.56, -0.36, 0.004 +19330412, -1.49, -0.24, -2.10, 0.004 +19330413, 3.54, -1.47, 0.68, 0.004 +19330415, -0.25, 2.28, 0.55, 0.004 +19330417, -2.01, 1.82, -2.33, 0.004 +19330418, 1.90, 0.11, 2.50, 0.004 +19330419, 7.00, -1.61, 6.68, 0.004 +19330420, 8.22, -0.40, 1.55, 0.004 +19330421, -3.57, 0.60, 3.53, 0.004 +19330422, 3.63, -3.21, 1.28, 0.004 +19330424, 2.41, 3.08, 0.15, 0.004 +19330425, -2.24, 2.05, -2.94, 0.004 +19330426, 0.47, -0.47, 2.89, 0.004 +19330427, -0.79, 0.74, -1.19, 0.004 +19330428, 1.26, -0.84, -2.28, 0.004 +19330429, 5.96, 0.51, 2.69, 0.004 +19330501, 1.41, 1.77, 0.64, 0.002 +19330502, 0.04, 0.92, 1.47, 0.002 +19330503, -0.21, 1.82, -0.03, 0.002 +19330504, 3.08, -0.30, 3.09, 0.002 +19330505, 1.07, 2.82, -1.51, 0.002 +19330506, -2.78, 0.85, -0.96, 0.002 +19330508, -1.47, 0.70, -0.78, 0.002 +19330509, 0.61, 0.07, -3.24, 0.002 +19330510, 4.83, 0.01, 2.34, 0.002 +19330511, 3.17, 1.56, 1.87, 0.002 +19330512, 0.22, -0.50, 2.13, 0.002 +19330513, -1.80, 1.60, 0.36, 0.002 +19330515, -1.00, 2.59, -0.80, 0.002 +19330516, 1.94, 3.14, -1.77, 0.002 +19330517, 1.41, 1.86, 1.31, 0.002 +19330518, -0.38, 1.21, 1.56, 0.002 +19330519, -0.52, 0.51, 2.43, 0.002 +19330520, -1.70, -0.29, -0.94, 0.002 +19330522, -0.20, -0.71, -1.10, 0.002 +19330523, 3.57, 1.68, 0.44, 0.002 +19330524, 2.07, 1.47, 0.23, 0.002 +19330525, -0.54, 1.27, -1.23, 0.002 +19330526, 2.89, 1.42, -0.75, 0.002 +19330527, 3.64, -0.27, 2.02, 0.002 +19330529, 1.67, 0.60, 3.29, 0.002 +19330531, -0.99, -0.05, 3.63, 0.002 +19330601, 1.34, 1.25, 1.88, 0.001 +19330602, 3.87, 0.63, 0.66, 0.001 +19330603, -2.50, 1.90, -1.35, 0.001 +19330605, 1.98, 0.53, 0.71, 0.001 +19330606, -0.30, 0.98, -0.91, 0.001 +19330607, 1.63, 1.22, 1.09, 0.001 +19330608, 0.41, 0.93, -1.41, 0.001 +19330609, 1.04, -0.91, -0.66, 0.001 +19330610, 0.75, 0.28, -1.32, 0.001 +19330612, 3.50, -2.31, 3.44, 0.001 +19330613, -2.48, 0.87, -1.00, 0.001 +19330614, -1.49, -1.84, -2.07, 0.001 +19330615, -6.30, 0.63, -2.34, 0.001 +19330616, 0.20, -3.73, -1.30, 0.001 +19330617, 1.66, 2.01, 3.56, 0.001 +19330619, 7.26, 2.49, 5.13, 0.001 +19330620, -1.36, 0.80, -1.08, 0.001 +19330621, 0.85, -0.49, 0.76, 0.001 +19330622, -3.54, -0.25, -1.93, 0.001 +19330623, 2.94, 0.32, -1.22, 0.001 +19330624, 0.46, 1.12, -0.10, 0.001 +19330626, 2.63, -0.43, 1.87, 0.001 +19330627, 1.01, 0.73, -0.71, 0.001 +19330628, -1.14, 0.98, -2.97, 0.001 +19330629, -0.95, 0.41, -0.35, 0.001 +19330630, 1.61, -0.43, 1.64, 0.001 +19330701, 2.42, 0.27, 2.64, 0.001 +19330703, 3.53, -1.73, 3.40, 0.001 +19330705, -0.49, -0.75, 1.79, 0.001 +19330706, 2.55, -0.03, 3.05, 0.001 +19330707, 0.50, -0.51, 1.45, 0.001 +19330708, -0.16, 1.16, -0.47, 0.001 +19330710, -0.77, 0.16, -0.21, 0.001 +19330711, -0.98, 1.57, -1.00, 0.001 +19330712, 1.18, -1.03, 0.86, 0.001 +19330713, 1.38, 0.48, 0.28, 0.001 +19330714, -1.22, 0.85, -0.54, 0.001 +19330715, 0.59, -0.64, 0.11, 0.001 +19330717, 1.96, 1.31, 0.51, 0.001 +19330718, 0.38, 0.34, 0.70, 0.001 +19330719, -4.80, -0.58, -1.33, 0.001 +19330720, -8.49, 0.67, -3.28, 0.001 +19330721, -9.21, -3.08, -4.58, 0.001 +19330722, 0.25, -3.37, -1.59, 0.001 +19330724, 8.02, 1.18, 6.01, 0.001 +19330725, -1.34, 3.30, 0.80, 0.001 +19330726, 2.26, -0.61, 0.25, 0.001 +19330727, 0.80, 0.15, 1.38, 0.001 +19330728, -2.05, 1.46, -0.74, 0.001 +19330731, -4.70, -1.21, -3.48, 0.001 +19330801, 2.89, -1.12, 2.48, 0.001 +19330802, 2.35, -0.23, 1.11, 0.001 +19330803, -0.86, 1.52, -0.97, 0.001 +19330804, -2.09, 0.58, -0.53, 0.001 +19330807, -0.58, -0.76, -1.08, 0.001 +19330808, 2.93, -1.83, 0.72, 0.001 +19330809, 3.98, -0.08, 2.20, 0.001 +19330810, -1.19, 1.17, -0.70, 0.001 +19330811, -0.24, -0.65, -0.26, 0.001 +19330814, -1.21, -0.03, -1.13, 0.001 +19330815, 0.04, 0.66, 0.02, 0.001 +19330816, -2.55, -0.24, -1.52, 0.001 +19330817, 5.36, -1.95, 1.70, 0.001 +19330818, -1.47, 1.66, -1.18, 0.001 +19330821, 1.85, -0.78, 1.24, 0.001 +19330822, 1.40, -0.89, 0.57, 0.001 +19330823, -1.03, 0.79, -0.01, 0.001 +19330824, 0.63, -1.55, 0.33, 0.001 +19330825, 3.44, -1.68, 2.16, 0.001 +19330828, -0.16, 0.54, -0.56, 0.001 +19330829, -0.78, -0.89, -0.31, 0.001 +19330830, -0.85, 0.38, 0.06, 0.001 +19330831, -0.02, 0.46, -1.21, 0.001 +19330901, 1.29, -0.36, -0.11, 0.001 +19330905, -3.13, 1.55, -1.08, 0.001 +19330906, -0.15, -0.75, -1.94, 0.001 +19330907, -1.09, 0.93, -0.09, 0.001 +19330908, -0.03, -0.91, -0.45, 0.001 +19330909, -0.06, 0.55, -0.50, 0.001 +19330911, 4.00, -1.79, 2.19, 0.001 +19330912, -0.40, 1.16, -0.63, 0.001 +19330913, 0.42, -0.30, 0.15, 0.001 +19330914, 0.40, 0.14, 0.42, 0.001 +19330915, -2.68, 1.13, -2.36, 0.001 +19330916, 2.44, -1.70, 1.69, 0.001 +19330918, -0.89, 1.12, -0.64, 0.001 +19330919, 0.15, -1.58, 0.56, 0.001 +19330920, -2.76, 1.72, -2.45, 0.001 +19330921, -6.13, 0.28, -5.44, 0.001 +19330922, 1.97, -2.28, 0.72, 0.001 +19330923, 1.50, 0.77, 1.55, 0.001 +19330925, -1.98, 0.25, -1.59, 0.001 +19330926, -0.87, 1.01, 0.60, 0.001 +19330927, -4.16, 1.03, -2.95, 0.001 +19330928, 1.27, -2.54, 0.11, 0.001 +19330929, -0.50, 1.31, 0.42, 0.001 +19330930, 0.76, -1.78, -0.86, 0.001 +19331002, -1.79, 2.46, -0.74, 0.000 +19331003, 0.37, -1.35, 0.03, 0.000 +19331004, 5.70, -1.90, 3.87, 0.000 +19331005, -0.90, 1.04, -0.97, 0.000 +19331006, -1.02, 0.23, -1.41, 0.000 +19331007, 0.67, -0.42, 0.35, 0.000 +19331009, 1.65, -0.96, 1.29, 0.000 +19331010, -0.84, 1.15, -0.97, 0.000 +19331011, -0.08, 0.50, -1.25, 0.000 +19331013, -3.38, 1.38, -2.23, 0.000 +19331014, -0.06, -0.61, -0.83, 0.000 +19331016, -5.99, 1.88, -4.16, 0.000 +19331017, 2.61, -3.85, 0.30, 0.000 +19331018, -4.30, 1.87, -2.46, 0.000 +19331019, -4.58, 0.75, -5.98, 0.000 +19331020, 2.50, -3.17, 3.06, 0.000 +19331021, -3.03, 1.96, -1.97, 0.000 +19331023, 5.01, -0.27, 5.03, 0.000 +19331024, 3.69, -2.72, 3.98, 0.000 +19331025, 2.75, 0.92, 2.18, 0.000 +19331026, -2.01, 1.02, -1.27, 0.000 +19331027, 1.26, -1.20, 0.45, 0.000 +19331028, -1.29, 1.21, -0.97, 0.000 +19331030, -3.60, 1.42, -2.55, 0.000 +19331031, -0.96, -2.08, -0.13, 0.000 +19331101, 1.17, -1.33, 0.52, 0.001 +19331102, 1.56, -0.55, 0.87, 0.001 +19331103, 3.13, -1.59, 1.90, 0.001 +19331104, -0.17, 0.66, 1.16, 0.001 +19331106, -0.80, 0.45, -1.00, 0.001 +19331108, 3.53, -1.81, 1.50, 0.001 +19331109, 0.75, 2.12, 0.64, 0.001 +19331110, -1.34, -0.57, -1.49, 0.001 +19331111, 1.05, -1.06, 1.17, 0.001 +19331113, -0.16, 1.10, -0.08, 0.001 +19331114, -0.78, 0.27, 0.04, 0.001 +19331115, -0.86, -0.31, -2.70, 0.001 +19331116, 4.41, -2.62, 2.63, 0.001 +19331117, -0.95, 1.36, -1.22, 0.001 +19331118, 0.08, 0.33, -0.24, 0.001 +19331120, 2.63, -2.06, 0.99, 0.001 +19331121, -1.05, 1.01, 0.43, 0.001 +19331122, -0.60, -0.73, -0.89, 0.001 +19331123, -1.64, 0.18, -0.60, 0.001 +19331124, 1.16, 0.43, 0.87, 0.001 +19331125, 0.28, -0.22, -0.47, 0.001 +19331127, -3.22, 1.08, -2.14, 0.001 +19331128, -0.08, -0.90, -0.60, 0.001 +19331129, 1.79, -1.41, 1.34, 0.001 +19331201, 0.40, 0.10, -0.35, 0.001 +19331202, 0.01, -0.10, -0.26, 0.001 +19331204, -0.20, 0.13, -0.56, 0.001 +19331205, 2.85, -0.47, 1.83, 0.001 +19331206, -0.55, 0.36, 0.90, 0.001 +19331207, 0.74, 0.04, 0.49, 0.001 +19331208, -0.94, 0.62, -1.08, 0.001 +19331209, 1.91, -0.88, 2.25, 0.001 +19331211, 0.31, 0.64, 0.92, 0.001 +19331212, -0.42, 0.64, -1.05, 0.001 +19331213, -0.99, -0.22, -0.81, 0.001 +19331214, 0.29, 0.53, 0.19, 0.001 +19331215, -1.38, 0.28, -1.30, 0.001 +19331216, -1.72, 1.27, -2.02, 0.001 +19331218, -1.31, -1.78, 0.39, 0.001 +19331219, -0.28, -0.64, -1.19, 0.001 +19331220, -1.77, -0.87, -1.43, 0.001 +19331221, -0.05, -0.04, -0.66, 0.001 +19331222, 2.72, -0.69, 3.31, 0.001 +19331223, -0.35, 0.59, -0.99, 0.001 +19331226, -2.29, -0.43, -1.62, 0.001 +19331227, 0.75, -1.51, -0.72, 0.001 +19331228, 3.46, 1.58, 1.73, 0.001 +19331229, -0.30, 0.88, 0.36, 0.001 +19331230, 1.16, 0.42, 0.21, 0.001 +19340102, 0.13, 0.61, 1.16, 0.002 +19340103, -1.21, 0.55, 0.04, 0.002 +19340104, -0.33, -0.62, -0.16, 0.002 +19340105, -1.13, 1.31, -1.61, 0.002 +19340106, -0.30, 0.15, 0.24, 0.002 +19340108, -0.04, -0.56, -0.68, 0.002 +19340109, 1.15, -0.33, 1.47, 0.002 +19340110, 2.65, -0.49, 0.75, 0.002 +19340111, 0.56, 0.48, 0.47, 0.002 +19340112, -0.73, 2.12, 0.54, 0.002 +19340113, -0.08, -0.66, 0.44, 0.002 +19340115, 5.49, -0.79, 4.88, 0.002 +19340116, 0.52, 1.22, 1.04, 0.002 +19340117, -0.04, 0.85, 0.78, 0.002 +19340118, -0.13, -0.01, 0.59, 0.002 +19340119, 2.68, 0.74, 2.59, 0.002 +19340120, 0.21, 0.93, 0.67, 0.002 +19340122, -0.30, 0.63, -0.66, 0.002 +19340123, 1.38, 0.65, 0.52, 0.002 +19340124, 0.66, 0.44, 0.83, 0.002 +19340125, -0.23, 0.56, -1.11, 0.002 +19340126, -0.42, 0.56, 0.23, 0.002 +19340127, -0.18, -0.02, -0.21, 0.002 +19340129, 1.77, 0.59, 1.59, 0.002 +19340130, 1.38, 0.70, 1.21, 0.002 +19340131, -1.25, 0.89, -1.97, 0.002 +19340201, 2.34, -0.19, 2.28, 0.001 +19340202, -0.10, -0.40, 1.09, 0.001 +19340203, 1.23, -0.01, 1.53, 0.001 +19340205, 1.82, 0.50, 0.63, 0.001 +19340206, -0.09, 0.96, -0.26, 0.001 +19340207, -2.92, 0.00, -1.97, 0.001 +19340208, 0.57, 0.12, 1.13, 0.001 +19340209, -2.58, 0.72, -1.08, 0.001 +19340210, -0.56, -1.39, -0.82, 0.001 +19340213, 0.71, 0.72, 1.58, 0.001 +19340214, 0.84, 0.12, 0.50, 0.001 +19340215, 1.96, 1.14, 2.68, 0.001 +19340216, 0.32, 1.57, 0.06, 0.001 +19340217, 0.31, -0.24, 0.72, 0.001 +19340219, -1.58, 0.69, -0.89, 0.001 +19340220, 0.41, 0.32, 0.00, 0.001 +19340221, 0.35, 0.55, 0.31, 0.001 +19340223, -2.55, -0.16, -2.11, 0.001 +19340224, -1.49, -0.24, -1.67, 0.001 +19340226, -2.01, -0.80, -2.25, 0.001 +19340227, 0.79, 0.12, 1.04, 0.001 +19340228, -0.04, 1.15, -0.08, 0.001 +19340301, -0.25, -0.38, -0.29, 0.001 +19340302, 3.04, -0.03, 2.20, 0.001 +19340303, -0.10, 0.53, -0.15, 0.001 +19340305, -0.41, 0.40, -0.43, 0.001 +19340306, -0.95, 0.50, -0.31, 0.001 +19340307, -2.49, -0.01, -1.48, 0.001 +19340308, 1.57, -0.06, 0.20, 0.001 +19340309, -0.29, 0.80, 0.13, 0.001 +19340310, 0.10, 0.00, 0.01, 0.001 +19340312, 1.70, -0.39, 0.36, 0.001 +19340313, 0.17, 0.53, 0.30, 0.001 +19340314, 0.01, 0.52, -0.15, 0.001 +19340315, -1.45, 0.29, -1.74, 0.001 +19340316, 0.29, 0.38, -0.30, 0.001 +19340317, -0.92, 0.51, -0.40, 0.001 +19340319, -2.31, -0.48, -1.54, 0.001 +19340320, 1.49, -0.72, 0.33, 0.001 +19340321, -1.63, 0.35, -0.54, 0.001 +19340322, 1.64, -0.71, 0.37, 0.001 +19340323, -0.61, 0.89, -0.40, 0.001 +19340324, 1.47, -0.53, 0.26, 0.001 +19340326, 0.01, 0.12, 0.25, 0.001 +19340327, -2.77, -0.80, -1.72, 0.001 +19340328, 0.26, 0.72, 0.71, 0.001 +19340329, 1.54, -0.02, 1.15, 0.001 +19340331, 1.27, 0.00, 0.96, 0.001 +19340402, 0.27, 1.07, 0.15, 0.000 +19340403, 0.90, -0.20, 0.68, 0.000 +19340404, 0.43, 0.96, -0.13, 0.000 +19340405, 0.18, -0.14, -0.89, 0.000 +19340406, 0.29, -1.01, 0.37, 0.000 +19340407, -0.12, -0.05, 0.47, 0.000 +19340409, -0.36, 0.21, 0.26, 0.000 +19340410, 1.31, -0.31, 0.64, 0.000 +19340411, 0.06, 0.10, -0.10, 0.000 +19340412, -0.24, -0.11, -0.20, 0.000 +19340413, -0.26, 0.42, -0.59, 0.000 +19340414, -0.11, -0.03, 0.03, 0.000 +19340416, -1.57, -0.15, -1.65, 0.000 +19340417, 0.99, -0.13, -0.05, 0.000 +19340418, 1.47, 0.85, 0.20, 0.000 +19340419, 0.09, -0.06, 0.14, 0.000 +19340420, 1.29, 0.31, 0.73, 0.000 +19340421, -0.31, 1.03, -0.30, 0.000 +19340423, -0.43, 0.09, 0.04, 0.000 +19340424, -0.72, 0.01, 0.04, 0.000 +19340425, -0.47, 0.17, 0.01, 0.000 +19340426, -1.35, 0.12, -0.51, 0.000 +19340427, 0.14, -0.28, -0.05, 0.000 +19340428, -0.83, 0.31, -0.89, 0.000 +19340430, -2.35, -0.32, -2.15, 0.000 +19340501, -0.19, -0.79, 0.19, 0.000 +19340502, -1.98, 0.53, -0.67, 0.000 +19340503, 0.20, -0.31, -0.45, 0.000 +19340504, 0.28, 1.09, 1.02, 0.000 +19340505, -1.59, -0.22, -0.85, 0.000 +19340507, -3.47, -0.66, -3.72, 0.000 +19340508, 2.14, -1.50, 2.85, 0.000 +19340509, -1.30, 0.94, -0.71, 0.000 +19340510, -2.18, -0.35, -1.94, 0.000 +19340511, -0.98, 1.04, -0.58, 0.000 +19340512, -1.45, -0.91, -1.88, 0.000 +19340514, 0.24, -1.55, -0.06, 0.000 +19340515, 2.02, 0.57, 0.88, 0.000 +19340516, -0.36, 1.09, 0.56, 0.000 +19340517, 4.09, -0.88, 2.97, 0.000 +19340518, -0.96, 1.20, -0.41, 0.000 +19340519, -0.13, -0.05, 0.16, 0.000 +19340521, 0.27, 0.18, -0.65, 0.000 +19340522, -1.78, 0.49, -1.35, 0.000 +19340523, -1.12, -0.18, -0.34, 0.000 +19340524, 0.40, -0.31, 0.66, 0.000 +19340525, 1.03, 0.08, -0.07, 0.000 +19340526, 0.68, -0.09, -0.39, 0.000 +19340528, 0.70, -0.55, 0.94, 0.000 +19340529, -0.43, 0.22, -0.97, 0.000 +19340531, -1.40, 0.61, -1.11, 0.000 +19340601, -2.10, 0.47, -0.99, 0.000 +19340602, -0.34, -0.50, -0.09, 0.000 +19340604, 1.44, -0.70, 0.68, 0.000 +19340605, 2.14, -0.57, 1.36, 0.000 +19340606, 0.31, 0.17, 0.39, 0.000 +19340607, -0.20, 0.00, -1.24, 0.000 +19340608, 4.22, -1.47, 3.06, 0.000 +19340609, 0.56, 0.50, 1.02, 0.000 +19340611, -1.17, 0.02, -1.56, 0.000 +19340612, 1.23, -0.34, 1.04, 0.000 +19340613, 0.08, -0.20, -0.79, 0.000 +19340614, -1.61, 0.91, -0.91, 0.000 +19340615, 1.71, -1.74, 0.20, 0.000 +19340616, 1.42, -0.50, 1.05, 0.000 +19340618, -0.02, 0.16, -0.62, 0.000 +19340619, -1.57, 0.87, -1.07, 0.000 +19340620, -0.98, 0.33, -0.70, 0.000 +19340621, -0.80, 0.36, 0.01, 0.000 +19340622, -2.02, -0.29, -1.12, 0.000 +19340623, 0.70, 0.03, -0.22, 0.000 +19340625, -0.87, 0.58, -1.33, 0.000 +19340626, 1.83, -1.73, 0.18, 0.000 +19340627, -0.06, 0.67, 0.27, 0.000 +19340628, 0.52, -0.65, 0.21, 0.000 +19340629, -1.60, 1.12, -0.77, 0.000 +19340630, 0.07, 0.18, -0.45, 0.000 +19340702, -1.21, -0.18, -1.05, 0.000 +19340703, -0.12, -0.45, -0.08, 0.000 +19340705, 1.55, -1.04, 0.69, 0.000 +19340706, 0.76, -0.13, 0.28, 0.000 +19340707, -0.12, 0.26, -0.40, 0.000 +19340709, -0.07, 0.21, -0.62, 0.000 +19340710, 0.83, -0.48, 0.67, 0.000 +19340711, 0.43, 0.10, -0.27, 0.000 +19340712, -0.75, 0.89, -1.94, 0.000 +19340713, 0.01, -0.21, -0.06, 0.000 +19340714, 0.14, 0.72, -0.73, 0.000 +19340716, -2.03, -0.06, -1.33, 0.000 +19340717, -0.41, -1.51, 0.25, 0.000 +19340718, 1.39, -0.27, -0.23, 0.000 +19340719, -0.98, 0.23, 0.11, 0.000 +19340720, -2.59, -0.66, -1.84, 0.000 +19340721, -0.44, -1.57, -0.77, 0.000 +19340723, -3.39, -1.87, -2.66, 0.000 +19340724, -1.07, -0.70, -1.97, 0.000 +19340725, 0.63, -1.80, 1.44, 0.000 +19340726, -7.13, -1.81, -3.19, 0.000 +19340727, 2.29, -1.66, 1.42, 0.000 +19340728, 1.50, 3.73, 1.06, 0.000 +19340730, -0.53, -0.08, -0.25, 0.000 +19340731, 0.18, 0.25, -0.73, 0.000 +19340801, 3.02, 1.63, 0.47, 0.000 +19340802, 0.46, 0.68, 0.74, 0.000 +19340803, -0.96, 1.32, -0.93, 0.000 +19340804, -1.83, 0.74, -0.90, 0.000 +19340806, -0.46, -0.79, -0.01, 0.000 +19340807, -0.31, 0.67, -1.14, 0.000 +19340808, 1.75, -0.28, 1.28, 0.000 +19340809, 3.00, -0.30, 0.32, 0.000 +19340810, -1.65, 1.65, -0.53, 0.000 +19340811, -0.05, -0.52, -0.35, 0.000 +19340813, 2.44, -0.81, 1.31, 0.000 +19340814, -0.83, 1.05, -1.25, 0.000 +19340815, -0.14, 0.40, 0.05, 0.000 +19340816, 0.74, -0.16, 0.18, 0.000 +19340817, -0.74, 0.17, -0.18, 0.000 +19340818, -0.27, 0.11, 0.32, 0.000 +19340820, -0.41, 0.34, -1.19, 0.000 +19340821, 2.21, -1.72, 2.15, 0.000 +19340822, 2.25, 0.72, 1.11, 0.000 +19340823, -0.49, 0.36, 0.50, 0.000 +19340824, 1.51, -1.14, 1.16, 0.000 +19340825, 0.24, 0.44, 0.88, 0.000 +19340827, -1.42, 1.27, -0.56, 0.000 +19340828, -0.46, -0.39, -1.15, 0.000 +19340829, -0.60, 1.03, -0.43, 0.000 +19340830, -1.22, -0.71, -0.72, 0.000 +19340831, -0.03, -0.65, -0.27, 0.000 +19340901, 0.02, 0.37, 0.04, 0.000 +19340904, -0.65, -0.40, -0.33, 0.000 +19340905, 1.41, -0.71, 1.20, 0.000 +19340906, -1.40, 1.44, -0.94, 0.000 +19340907, -1.13, -0.78, -0.69, 0.000 +19340908, -0.18, 0.21, -0.05, 0.000 +19340910, -2.17, 0.92, -1.06, 0.000 +19340911, -0.05, -1.75, 0.80, 0.000 +19340912, 0.42, 0.19, -0.63, 0.000 +19340913, -0.26, -0.31, -0.30, 0.000 +19340914, -2.62, 0.23, -0.90, 0.000 +19340915, 0.39, -1.05, 0.22, 0.000 +19340917, -0.62, -0.41, -0.60, 0.000 +19340918, 0.69, 0.17, 0.00, 0.000 +19340919, 2.57, -0.77, 1.21, 0.000 +19340920, 0.01, 0.93, 0.65, 0.000 +19340921, 1.92, 0.07, 0.10, 0.000 +19340922, 0.24, 0.41, 0.16, 0.000 +19340924, -0.76, 0.30, -0.41, 0.000 +19340925, 2.47, -1.69, 1.21, 0.000 +19340926, -0.32, 1.47, -1.10, 0.000 +19340927, 0.94, -0.03, 0.30, 0.000 +19340928, -1.00, 0.57, 0.03, 0.000 +19340929, 0.04, -1.00, 0.06, 0.000 +19341001, -2.55, 0.98, -1.62, 0.000 +19341002, 0.49, -0.25, 0.46, 0.000 +19341003, -0.19, 0.51, 0.23, 0.000 +19341004, -0.24, -1.05, -0.38, 0.000 +19341005, 1.87, 0.98, -0.07, 0.000 +19341006, -0.21, 0.26, 0.19, 0.000 +19341008, -0.59, 0.20, -0.88, 0.000 +19341009, -0.84, 0.42, -0.76, 0.000 +19341010, 2.29, -0.56, 1.34, 0.000 +19341011, 1.56, 0.60, 0.95, 0.000 +19341013, -1.01, 0.63, -0.59, 0.000 +19341015, -0.70, 0.48, -0.74, 0.000 +19341016, 0.72, -0.27, 0.29, 0.000 +19341017, 0.22, -0.27, -0.79, 0.000 +19341018, -0.20, 0.00, -0.19, 0.000 +19341019, -0.54, -0.62, 0.62, 0.000 +19341020, 0.23, 0.32, -0.13, 0.000 +19341022, -0.20, 0.40, -0.83, 0.000 +19341023, -0.40, -0.53, -0.36, 0.000 +19341024, 1.58, -1.96, 2.95, 0.000 +19341025, -1.78, 1.88, -1.85, 0.000 +19341026, -1.47, -0.19, -1.51, 0.000 +19341027, 0.08, -0.35, 0.05, 0.000 +19341029, -0.47, -0.03, -0.57, 0.000 +19341030, 0.42, -0.71, -0.16, 0.000 +19341031, 0.40, -0.11, -0.49, 0.000 +19341101, -0.38, -0.21, -0.82, 0.000 +19341102, 1.16, 0.94, -0.59, 0.000 +19341103, 0.77, 0.91, 0.00, 0.000 +19341105, 0.83, 0.53, -0.16, 0.000 +19341107, 1.52, -0.81, 1.82, 0.000 +19341108, -0.39, 1.14, -0.48, 0.000 +19341109, 1.70, 0.09, -0.21, 0.000 +19341110, 0.34, 0.99, 0.55, 0.000 +19341113, -0.48, 0.73, -1.23, 0.000 +19341114, -0.06, 0.03, 0.16, 0.000 +19341115, 0.47, 1.61, -0.21, 0.000 +19341116, -0.84, 0.15, -2.03, 0.000 +19341117, -0.47, 0.88, 0.08, 0.000 +19341119, 0.18, 0.64, -0.12, 0.000 +19341120, 0.07, -1.03, -1.15, 0.000 +19341121, -0.09, 0.44, -0.75, 0.000 +19341122, 0.36, -0.13, 0.20, 0.000 +19341123, 1.32, 0.03, 0.76, 0.000 +19341124, 1.03, 0.18, 0.75, 0.000 +19341126, 0.91, -0.84, 1.60, 0.000 +19341127, -0.66, 0.54, 0.23, 0.000 +19341128, 0.89, -1.29, -0.36, 0.000 +19341130, -0.07, 0.36, 0.14, 0.000 +19341201, -0.07, 0.27, -0.20, 0.000 +19341203, -0.88, 0.28, -0.24, 0.000 +19341204, 0.86, -0.74, 0.72, 0.000 +19341205, 0.91, 0.93, -0.03, 0.000 +19341206, -0.02, 1.12, -0.54, 0.000 +19341207, -0.74, 0.07, 0.03, 0.000 +19341208, -0.53, -0.22, -0.36, 0.000 +19341210, -0.10, 0.14, -0.60, 0.000 +19341211, -1.77, -0.44, 0.18, 0.000 +19341212, 0.02, 0.08, -0.51, 0.000 +19341213, -0.40, 0.36, 0.25, 0.000 +19341214, -0.16, 0.75, -0.48, 0.000 +19341215, 0.17, -0.46, 0.53, 0.000 +19341217, 0.27, -0.44, 0.24, 0.000 +19341218, -0.02, 0.50, -0.65, 0.000 +19341219, -1.39, 0.41, -0.46, 0.000 +19341220, -0.18, -0.99, -0.05, 0.000 +19341221, 0.09, -0.34, -0.54, 0.000 +19341222, -0.03, 0.59, -1.27, 0.000 +19341224, 0.73, -0.22, -0.04, 0.000 +19341226, -0.60, 0.18, -0.43, 0.000 +19341227, -0.10, 0.01, -0.50, 0.000 +19341228, 3.37, 0.18, 1.61, 0.000 +19341229, 0.46, 0.85, 0.71, 0.000 +19341231, 0.64, 0.38, -0.40, 0.000 +19350102, 0.26, 0.45, -0.38, 0.001 +19350103, 0.58, 1.14, 0.61, 0.001 +19350104, -0.49, -0.03, 0.50, 0.001 +19350105, 0.66, 0.14, 0.85, 0.001 +19350107, 0.33, 0.11, 1.06, 0.001 +19350108, -0.91, 0.41, 0.35, 0.001 +19350109, -0.24, -0.52, -0.44, 0.001 +19350110, -0.10, 0.02, -0.48, 0.001 +19350111, -2.10, -0.67, -1.16, 0.001 +19350112, -0.92, 0.28, -0.45, 0.001 +19350114, 0.31, 0.35, -0.16, 0.001 +19350115, -2.22, -0.71, -1.29, 0.001 +19350116, 1.38, -0.40, 0.03, 0.001 +19350117, 0.51, 0.89, 0.24, 0.001 +19350118, 0.55, 0.72, 0.07, 0.001 +19350119, 0.55, -0.12, 1.31, 0.001 +19350121, 0.23, 0.28, -0.51, 0.001 +19350122, -0.67, -0.14, -0.55, 0.001 +19350123, 0.05, -0.21, -0.24, 0.001 +19350124, -0.44, 0.00, 0.17, 0.001 +19350125, 0.40, 0.18, -0.36, 0.001 +19350126, -0.25, 0.28, -0.44, 0.001 +19350128, -1.36, -0.83, -0.79, 0.001 +19350129, -0.77, -0.33, -0.61, 0.001 +19350130, 0.47, -0.15, 0.48, 0.001 +19350131, 0.78, -0.08, 0.46, 0.001 +19350201, -0.32, 0.58, -0.39, 0.001 +19350202, 0.27, -0.73, 0.29, 0.001 +19350204, -0.83, 0.80, -0.86, 0.001 +19350205, -0.96, -0.66, -1.08, 0.001 +19350206, -1.08, -0.33, -0.62, 0.001 +19350207, 0.94, -0.65, 0.96, 0.001 +19350208, 1.64, 0.73, -0.27, 0.001 +19350209, 0.41, 0.68, 0.87, 0.001 +19350211, -0.41, 0.04, -0.85, 0.001 +19350213, 0.12, -0.02, -0.32, 0.001 +19350214, 0.04, 0.18, 0.00, 0.001 +19350215, 0.65, 0.63, -0.53, 0.001 +19350216, -0.18, 0.07, -0.86, 0.001 +19350218, 2.90, -1.31, 2.92, 0.001 +19350219, -1.31, 1.47, -1.04, 0.001 +19350220, -1.28, 0.39, -1.02, 0.001 +19350221, -0.02, -0.38, -0.73, 0.001 +19350223, -1.50, 0.75, -1.97, 0.001 +19350225, -0.16, -0.64, -0.55, 0.001 +19350226, -0.94, -0.99, -2.42, 0.001 +19350227, 0.28, -1.42, 1.25, 0.001 +19350228, -0.13, 1.38, -0.27, 0.001 +19350301, 0.49, -0.10, 0.47, 0.000 +19350302, 0.20, 0.55, -0.47, 0.000 +19350304, -0.55, 0.20, -0.87, 0.000 +19350305, -2.52, 0.20, -1.87, 0.000 +19350306, -0.65, -1.21, -0.63, 0.000 +19350307, 1.07, -0.61, 0.29, 0.000 +19350308, -0.14, 0.63, -0.34, 0.000 +19350309, -0.62, 0.55, 0.48, 0.000 +19350311, -1.64, -0.55, -1.67, 0.000 +19350312, -1.78, -0.62, -1.46, 0.000 +19350313, 0.08, -1.98, 0.28, 0.000 +19350314, -1.18, -0.44, -1.06, 0.000 +19350315, 1.70, -0.70, -0.41, 0.000 +19350316, -0.16, 1.25, 0.76, 0.000 +19350318, -1.03, 0.16, -0.85, 0.000 +19350319, 1.35, -0.12, 0.56, 0.000 +19350320, -0.04, 0.66, -0.56, 0.000 +19350321, 1.70, -1.11, 1.79, 0.000 +19350322, 1.14, -0.51, 1.83, 0.000 +19350323, -0.72, 1.43, -0.68, 0.000 +19350325, -0.40, -0.26, -0.51, 0.000 +19350326, -0.83, 0.49, -0.82, 0.000 +19350327, 0.77, -1.26, 1.22, 0.000 +19350328, -0.11, 0.27, -1.01, 0.000 +19350329, 0.07, -0.58, -0.28, 0.000 +19350330, 0.21, -0.01, 0.81, 0.000 +19350401, 0.63, -0.77, 1.40, 0.001 +19350402, -0.36, 0.65, -1.18, 0.001 +19350403, -0.45, -0.44, -0.39, 0.001 +19350404, 1.14, -1.76, 2.27, 0.001 +19350405, 2.06, -0.65, 1.80, 0.001 +19350406, 0.53, 0.33, 1.19, 0.001 +19350408, -0.24, 1.24, -1.08, 0.001 +19350409, 1.68, -0.75, 1.51, 0.001 +19350410, -0.18, 1.75, -1.09, 0.001 +19350411, -0.62, 0.13, -0.72, 0.001 +19350412, 0.97, -1.47, 1.66, 0.001 +19350413, 1.09, 0.03, 0.76, 0.001 +19350415, 0.61, 0.66, -1.04, 0.001 +19350416, 0.21, 0.19, -0.31, 0.001 +19350417, -1.17, 0.63, -0.73, 0.001 +19350418, 1.28, -0.63, -0.03, 0.001 +19350420, 1.98, -0.01, 0.39, 0.001 +19350422, 0.50, 0.81, 0.07, 0.001 +19350423, 0.24, -0.99, 0.62, 0.001 +19350424, -0.75, 0.39, 0.06, 0.001 +19350425, 1.23, -0.99, 0.24, 0.001 +19350426, -0.35, -0.08, 0.16, 0.001 +19350427, -0.71, -0.37, -0.44, 0.001 +19350429, 0.41, -0.06, -0.64, 0.001 +19350430, -0.95, 0.42, -0.36, 0.001 +19350501, -0.37, 0.25, 0.52, 0.001 +19350502, 0.35, -0.37, 0.04, 0.001 +19350503, 1.32, -0.63, -0.06, 0.001 +19350504, 0.73, -0.52, -0.02, 0.001 +19350506, -0.64, 0.41, -0.06, 0.001 +19350507, -0.48, 0.38, -1.85, 0.001 +19350508, 2.48, -1.07, 0.83, 0.001 +19350509, 0.88, 0.34, 0.95, 0.001 +19350510, 0.50, -0.58, 0.22, 0.001 +19350511, 0.40, -0.76, 0.88, 0.001 +19350513, 0.01, 0.39, 0.42, 0.001 +19350514, 0.00, 0.51, -0.43, 0.001 +19350515, 0.49, -0.50, 0.12, 0.001 +19350516, 1.84, 0.62, 1.43, 0.001 +19350517, -0.33, -0.33, 0.22, 0.001 +19350518, -1.05, 0.70, -0.45, 0.001 +19350520, 0.07, -0.01, -0.36, 0.001 +19350521, 0.79, 0.10, -0.28, 0.001 +19350522, 0.56, -0.92, 0.00, 0.001 +19350523, 0.32, 0.67, 0.31, 0.001 +19350524, -0.28, -0.26, 0.89, 0.001 +19350525, -0.42, -0.88, 1.31, 0.001 +19350527, 0.61, -0.79, 0.56, 0.001 +19350528, -2.12, -0.39, -1.03, 0.001 +19350529, -1.33, -0.55, -0.22, 0.001 +19350531, -0.87, 0.15, -0.11, 0.001 +19350601, -0.76, -1.19, -0.04, 0.000 +19350603, 1.40, -0.18, -0.40, 0.000 +19350604, 2.25, -0.82, 0.63, 0.000 +19350605, 0.35, 0.41, -0.41, 0.000 +19350606, -0.58, -0.10, -0.58, 0.000 +19350607, 0.48, -0.62, 0.31, 0.000 +19350608, 0.75, -0.02, 0.21, 0.000 +19350610, 0.46, 0.42, -1.11, 0.000 +19350611, 1.18, -0.61, 1.31, 0.000 +19350612, -0.67, 1.60, -0.60, 0.000 +19350613, 0.47, -0.46, -0.22, 0.000 +19350614, 0.98, -0.39, 0.47, 0.000 +19350615, 0.42, -0.32, 0.76, 0.000 +19350617, -0.26, 0.28, -0.79, 0.000 +19350618, 0.29, -0.10, 0.73, 0.000 +19350619, -0.59, -0.19, -0.63, 0.000 +19350620, -0.75, -0.14, -0.49, 0.000 +19350621, 1.94, -0.29, 0.49, 0.000 +19350622, 1.03, -0.38, 0.00, 0.000 +19350624, -0.47, 0.32, -0.53, 0.000 +19350625, -1.31, 0.14, -0.24, 0.000 +19350626, -1.08, 0.43, -0.32, 0.000 +19350627, -0.29, -0.18, -0.47, 0.000 +19350628, 0.79, -0.36, 0.44, 0.000 +19350629, -0.16, 0.24, 0.08, 0.000 +19350701, 0.45, -0.30, 0.26, 0.001 +19350702, 0.06, -0.18, -0.93, 0.001 +19350703, 0.48, -0.44, 0.61, 0.001 +19350705, 1.01, -0.35, 0.58, 0.001 +19350706, 0.18, 0.46, -0.41, 0.001 +19350708, 1.02, 0.04, -0.61, 0.001 +19350709, -0.19, 0.15, 0.74, 0.001 +19350710, 0.58, 0.07, 0.12, 0.001 +19350711, -1.00, 0.69, -1.09, 0.001 +19350712, 0.69, -0.14, 0.09, 0.001 +19350713, -0.04, 0.36, 0.16, 0.001 +19350715, -0.16, 0.15, 2.04, 0.001 +19350716, 0.10, -0.42, -1.31, 0.001 +19350717, 0.74, 0.50, -0.19, 0.001 +19350718, 0.07, 0.59, 0.04, 0.001 +19350719, -0.82, 0.69, -0.74, 0.001 +19350720, 0.23, -0.24, 0.24, 0.001 +19350722, 1.36, -0.61, 1.42, 0.001 +19350723, 0.02, 0.12, 0.71, 0.001 +19350724, 0.47, -0.01, 0.14, 0.001 +19350725, -0.81, 0.48, -0.25, 0.001 +19350726, 0.55, -0.09, 0.59, 0.001 +19350727, 0.92, -0.31, 1.18, 0.001 +19350729, 1.08, -0.20, 2.40, 0.001 +19350730, -0.57, 0.70, -0.89, 0.001 +19350731, 0.94, -0.34, 1.40, 0.001 +19350801, -0.29, 0.90, -0.03, 0.000 +19350802, -0.60, -0.01, -0.03, 0.000 +19350803, 1.28, -0.93, 1.60, 0.000 +19350805, 0.63, 0.92, 0.91, 0.000 +19350806, -0.17, 0.69, 0.53, 0.000 +19350807, -0.27, -0.29, -0.69, 0.000 +19350808, 0.33, 0.56, -0.20, 0.000 +19350809, 1.80, -0.67, 1.55, 0.000 +19350810, 0.82, -0.11, 1.01, 0.000 +19350812, 0.21, 0.14, 2.62, 0.000 +19350813, 0.60, 0.38, 2.21, 0.000 +19350814, 0.21, 0.52, -0.42, 0.000 +19350815, -0.65, 0.99, -1.29, 0.000 +19350816, 0.80, -0.35, 1.94, 0.000 +19350817, 0.39, 0.40, 1.44, 0.000 +19350819, -1.87, 0.96, -2.29, 0.000 +19350820, -0.02, -0.92, 0.80, 0.000 +19350821, 0.76, 1.37, 0.41, 0.000 +19350822, 0.48, -0.16, 0.58, 0.000 +19350823, -0.01, 1.30, -0.79, 0.000 +19350824, -1.78, -0.60, -2.57, 0.000 +19350826, 1.06, -0.25, 0.66, 0.000 +19350827, -2.40, 0.08, -3.21, 0.000 +19350828, -0.22, -0.32, 0.10, 0.000 +19350829, 0.47, 0.93, 0.71, 0.000 +19350830, 0.29, -0.21, 0.39, 0.000 +19350831, 0.79, 0.38, 0.02, 0.000 +19350903, -0.75, -0.17, -0.41, 0.001 +19350904, 1.12, -0.77, 0.21, 0.001 +19350905, 1.06, 0.71, 1.90, 0.001 +19350906, 1.08, -0.05, 0.47, 0.001 +19350907, 0.71, -0.25, 0.42, 0.001 +19350909, 0.18, -0.11, -0.81, 0.001 +19350910, 0.58, 0.28, -1.12, 0.001 +19350911, 0.44, 0.17, 0.31, 0.001 +19350912, -0.84, -0.05, -0.26, 0.001 +19350913, 0.08, 0.17, 0.32, 0.001 +19350914, -0.16, -0.18, -0.38, 0.001 +19350916, -0.42, -0.31, -0.17, 0.001 +19350917, 0.28, -0.07, -0.35, 0.001 +19350918, 0.72, 0.44, 0.47, 0.001 +19350919, -1.64, 0.06, -0.56, 0.001 +19350920, -2.40, 0.20, -1.65, 0.001 +19350921, 0.21, -0.11, 0.07, 0.001 +19350923, 0.76, 0.18, 0.79, 0.001 +19350924, 1.03, 0.45, 0.23, 0.001 +19350925, 0.39, 0.14, 0.00, 0.001 +19350926, 0.05, -0.07, -0.73, 0.001 +19350927, -0.09, 0.60, -0.42, 0.001 +19350928, 0.13, 0.64, -0.85, 0.001 +19350930, 0.17, -0.33, -1.31, 0.001 +19351001, -0.92, 0.21, -0.60, 0.000 +19351002, -3.05, -0.96, -2.12, 0.000 +19351003, 1.19, 0.10, -0.26, 0.000 +19351004, 0.76, 1.21, 0.77, 0.000 +19351005, 0.71, 0.32, 0.63, 0.000 +19351007, 0.62, -0.32, 1.23, 0.000 +19351008, -0.49, 0.25, -1.03, 0.000 +19351009, 0.29, -0.09, 0.17, 0.000 +19351010, 1.86, 0.98, 0.44, 0.000 +19351011, 0.27, -0.38, -0.27, 0.000 +19351014, 1.06, -0.48, -0.56, 0.000 +19351015, 0.70, -0.39, 0.75, 0.000 +19351016, -0.25, 0.25, -1.33, 0.000 +19351017, -0.35, 0.43, -0.70, 0.000 +19351018, -0.25, 0.57, -0.80, 0.000 +19351019, 1.40, -0.06, -0.33, 0.000 +19351021, 1.19, 0.65, -0.88, 0.000 +19351022, 0.15, -0.78, 2.52, 0.000 +19351023, 0.75, 0.02, -0.21, 0.000 +19351024, 0.19, 0.09, -0.86, 0.000 +19351025, 0.90, 0.89, 0.10, 0.000 +19351026, 0.70, 0.11, 0.23, 0.000 +19351028, -0.45, -0.01, 0.58, 0.000 +19351029, -0.15, -0.18, 0.43, 0.000 +19351030, -0.69, -0.33, -0.30, 0.000 +19351031, 0.78, 0.36, 0.44, 0.000 +19351101, 1.02, 0.68, 0.19, 0.001 +19351102, 0.02, 0.06, 0.27, 0.001 +19351104, 0.28, -0.18, 0.50, 0.001 +19351106, 1.62, -0.66, 0.37, 0.001 +19351107, -0.30, -0.11, -0.55, 0.001 +19351108, 0.60, -0.23, 0.47, 0.001 +19351109, 0.01, -0.13, -0.47, 0.001 +19351112, -0.99, -0.36, -1.01, 0.001 +19351113, 1.20, 0.10, 2.00, 0.001 +19351114, 1.57, 0.03, 1.97, 0.001 +19351115, 0.45, 0.44, 0.16, 0.001 +19351116, 0.63, 0.18, 0.68, 0.001 +19351118, -0.38, 0.71, 0.19, 0.001 +19351119, 1.26, 0.21, 0.70, 0.001 +19351120, -0.91, -0.41, -0.08, 0.001 +19351121, 1.07, 0.98, 2.17, 0.001 +19351122, -1.69, 0.12, -0.82, 0.001 +19351123, 1.64, 1.29, 2.25, 0.001 +19351125, -0.83, 0.79, 0.25, 0.001 +19351126, -1.41, -0.38, 0.00, 0.001 +19351127, 0.89, 0.54, 2.23, 0.001 +19351129, -0.93, 0.16, -0.46, 0.001 +19351130, 0.01, 0.22, 0.19, 0.001 +19351202, -1.24, 0.39, 0.40, 0.001 +19351203, 2.14, -0.62, 1.07, 0.001 +19351204, 0.97, 0.15, 1.94, 0.001 +19351205, 0.05, 0.32, -0.30, 0.001 +19351206, -0.05, 0.05, -0.25, 0.001 +19351207, 0.84, -0.21, 0.81, 0.001 +19351209, 0.29, -0.15, 0.12, 0.001 +19351210, -1.20, 0.07, -1.37, 0.001 +19351211, 0.34, 0.47, -0.13, 0.001 +19351212, -0.93, -0.06, -0.91, 0.001 +19351213, -0.95, 0.04, -0.98, 0.001 +19351214, 0.28, 0.21, 0.09, 0.001 +19351216, -0.87, -0.19, -0.75, 0.001 +19351217, 0.76, -0.19, 0.00, 0.001 +19351218, -0.07, 0.15, 0.37, 0.001 +19351219, -0.55, 0.33, -1.41, 0.001 +19351220, 0.48, -0.93, 0.08, 0.001 +19351221, 0.58, 0.58, 0.43, 0.001 +19351223, 0.24, -0.42, -0.10, 0.001 +19351224, 0.63, -0.67, 0.78, 0.001 +19351226, 0.38, 0.54, 0.22, 0.001 +19351227, -0.09, 0.07, -1.05, 0.001 +19351228, -0.54, -0.68, 0.07, 0.001 +19351230, 1.87, 0.35, 1.17, 0.001 +19351231, 1.21, 0.52, 0.77, 0.001 +19360102, 0.32, 1.37, 0.19, 0.001 +19360103, 0.89, 0.32, 1.45, 0.001 +19360104, -0.28, 0.40, 0.50, 0.001 +19360106, -0.59, -0.51, -0.61, 0.001 +19360107, 1.37, -0.28, 2.13, 0.001 +19360108, 0.78, -0.07, -0.08, 0.001 +19360109, -0.36, 0.51, -0.53, 0.001 +19360110, 0.89, 1.89, 0.49, 0.001 +19360111, -0.21, 0.50, 0.13, 0.001 +19360113, 0.28, -0.73, 1.61, 0.001 +19360114, 0.51, 0.46, 0.55, 0.001 +19360115, -0.55, 0.25, -0.26, 0.001 +19360116, 0.36, 0.74, 1.23, 0.001 +19360117, -0.12, 0.48, -0.84, 0.001 +19360118, -0.77, -0.46, -0.99, 0.001 +19360120, -0.59, 0.11, -0.91, 0.001 +19360121, -0.47, -0.52, -0.28, 0.001 +19360122, 2.00, 0.52, 2.37, 0.001 +19360123, 0.95, 0.02, 1.79, 0.001 +19360124, -0.16, 0.05, -0.91, 0.001 +19360125, 0.36, -0.83, 0.14, 0.001 +19360127, 0.51, 0.35, 0.80, 0.001 +19360128, 0.08, -0.11, 0.27, 0.001 +19360129, 0.75, 0.21, 0.16, 0.001 +19360130, -0.49, 0.06, 0.68, 0.001 +19360131, 1.29, 0.16, 1.03, 0.001 +19360201, -0.18, -0.19, -0.45, 0.001 +19360203, 0.95, -0.10, 0.62, 0.001 +19360204, 0.38, 0.46, -0.11, 0.001 +19360205, -0.20, 0.13, 0.29, 0.001 +19360206, 0.38, 0.58, 0.19, 0.001 +19360207, -0.13, 0.01, 0.37, 0.001 +19360208, 0.11, 0.20, -0.03, 0.001 +19360210, 0.61, -0.28, 1.18, 0.001 +19360211, 0.91, -1.16, 1.42, 0.001 +19360213, 0.47, -0.80, 0.22, 0.001 +19360214, -0.21, 0.19, -0.27, 0.001 +19360215, 0.39, -0.05, 0.68, 0.001 +19360217, -1.15, -0.56, -0.55, 0.001 +19360218, 0.94, 0.97, 1.08, 0.001 +19360219, -0.35, 0.18, -1.25, 0.001 +19360220, 1.17, -0.38, 1.64, 0.001 +19360221, -0.09, 0.60, -0.16, 0.001 +19360224, -0.76, 0.27, -0.20, 0.001 +19360225, -1.83, -0.15, -0.80, 0.001 +19360226, -0.39, 0.50, -0.44, 0.001 +19360227, 2.19, 0.01, 2.33, 0.001 +19360228, -0.28, 0.20, -0.51, 0.001 +19360229, -0.39, 0.26, -0.46, 0.001 +19360302, 0.92, 0.00, 0.92, 0.001 +19360303, 1.30, 0.20, -0.80, 0.001 +19360304, 0.14, -0.02, 0.44, 0.001 +19360305, 0.34, 0.21, 0.01, 0.001 +19360306, 0.36, 0.10, -0.78, 0.001 +19360307, -0.65, 0.33, -0.57, 0.001 +19360309, -2.62, 0.00, -1.53, 0.001 +19360310, 0.99, -0.65, 0.81, 0.001 +19360311, 1.12, 1.33, -0.46, 0.001 +19360312, -2.44, -0.59, -1.16, 0.001 +19360313, -1.89, -1.00, -0.34, 0.001 +19360314, 2.47, 0.77, 1.23, 0.001 +19360316, -0.28, -0.10, 0.62, 0.001 +19360317, 1.73, -0.04, 0.63, 0.001 +19360318, -0.33, -0.22, -0.54, 0.001 +19360319, 0.82, -0.07, -0.48, 0.001 +19360320, -0.25, -0.04, -0.15, 0.001 +19360321, -0.49, 0.55, -0.30, 0.001 +19360323, 0.68, 0.18, 0.76, 0.001 +19360324, -0.49, -0.14, -0.34, 0.001 +19360325, 0.71, -0.06, -0.46, 0.001 +19360326, -0.29, -0.44, 0.83, 0.001 +19360327, -1.34, -0.72, 0.20, 0.001 +19360328, 0.09, 0.72, -0.04, 0.001 +19360330, -0.08, 0.43, -0.08, 0.001 +19360331, 0.59, 0.03, -0.05, 0.001 +19360401, 1.42, -0.06, 0.74, 0.001 +19360402, 0.88, -0.70, 1.03, 0.001 +19360403, -0.26, 0.15, -0.70, 0.001 +19360404, 0.75, -0.64, 0.89, 0.001 +19360406, 0.43, -0.58, 0.86, 0.001 +19360407, -0.42, -0.99, -0.58, 0.001 +19360408, -0.04, -0.80, 0.79, 0.001 +19360409, -0.37, -0.65, 0.72, 0.001 +19360411, 0.29, 0.25, 0.48, 0.001 +19360413, -0.19, 0.22, 0.66, 0.001 +19360414, -1.74, -0.35, -0.98, 0.001 +19360415, 0.82, 0.33, -0.19, 0.001 +19360416, -0.40, -0.56, 0.43, 0.001 +19360417, -0.56, -0.03, -0.83, 0.001 +19360418, -0.85, -0.66, -0.16, 0.001 +19360420, -2.17, -0.65, -1.18, 0.001 +19360421, -0.22, -0.49, -0.59, 0.001 +19360422, 1.35, 0.61, 1.12, 0.001 +19360423, -2.70, -0.32, -1.39, 0.001 +19360424, 0.06, 0.00, -0.40, 0.001 +19360425, 0.61, 0.34, -0.17, 0.001 +19360427, -3.69, -1.54, -2.57, 0.001 +19360428, -0.21, 0.45, 1.02, 0.001 +19360429, -2.40, 0.90, -2.39, 0.001 +19360430, 1.37, -0.89, 1.41, 0.001 +19360501, 0.74, 1.04, -0.42, 0.001 +19360502, -0.43, 0.07, 0.00, 0.001 +19360504, 0.26, 0.14, -0.05, 0.001 +19360505, 1.22, 0.39, 0.32, 0.001 +19360506, 1.16, -0.33, 1.26, 0.001 +19360507, -1.75, 0.13, -0.89, 0.001 +19360508, -0.07, 0.08, -0.90, 0.001 +19360509, 0.64, 0.02, 0.37, 0.001 +19360511, -0.80, 0.27, -0.81, 0.001 +19360512, -0.04, -0.29, -0.03, 0.001 +19360513, 0.86, -0.45, 0.77, 0.001 +19360514, 2.40, 0.44, 1.02, 0.001 +19360515, 0.08, 0.14, -0.09, 0.001 +19360516, -0.02, -0.26, 0.32, 0.001 +19360518, -0.40, 0.17, -0.65, 0.001 +19360519, -2.18, -0.41, -1.13, 0.001 +19360520, 0.68, -0.28, -0.10, 0.001 +19360521, -0.21, 0.22, 0.36, 0.001 +19360522, 0.81, -0.27, 0.86, 0.001 +19360523, 0.77, 0.15, 0.71, 0.001 +19360525, 0.12, -0.51, 0.00, 0.001 +19360526, 1.26, -0.10, 0.88, 0.001 +19360527, 0.01, 0.38, 0.86, 0.001 +19360528, -0.54, 0.09, -0.95, 0.001 +19360529, 0.64, -0.08, 0.88, 0.001 +19360601, -0.04, -0.15, -0.21, 0.001 +19360602, -0.19, -0.39, -0.24, 0.001 +19360603, -0.20, 0.36, -0.77, 0.001 +19360604, -1.21, 0.18, -0.47, 0.001 +19360605, -0.11, -0.48, -0.38, 0.001 +19360606, 0.45, -0.04, 0.75, 0.001 +19360608, 0.91, -0.17, 0.17, 0.001 +19360609, 0.91, -0.21, 0.44, 0.001 +19360610, 0.45, 0.05, 0.16, 0.001 +19360611, 1.14, -0.64, 0.18, 0.001 +19360612, -0.90, 0.42, -0.33, 0.001 +19360613, 0.58, -0.79, 0.11, 0.001 +19360615, 0.07, 0.35, -0.48, 0.001 +19360616, 0.98, -0.84, 1.23, 0.001 +19360617, -0.18, 0.33, -0.02, 0.001 +19360618, 0.26, -0.44, 0.20, 0.001 +19360619, -0.60, 0.11, -1.03, 0.001 +19360620, 0.35, -0.18, 0.12, 0.001 +19360622, 0.94, -0.16, 0.64, 0.001 +19360623, -0.35, -0.10, -0.26, 0.001 +19360624, 0.78, 0.13, 0.31, 0.001 +19360625, -0.86, -0.04, -0.49, 0.001 +19360626, -0.41, -0.09, -0.10, 0.001 +19360627, 0.11, -0.21, 0.09, 0.001 +19360629, -0.34, 0.09, -0.64, 0.001 +19360630, -0.11, -0.40, 0.02, 0.001 +19360701, 0.26, -0.67, -0.10, 0.001 +19360702, -0.15, -0.18, -0.04, 0.001 +19360703, 0.69, 0.06, -0.13, 0.001 +19360706, -0.49, 0.27, -0.47, 0.001 +19360707, -0.81, -0.15, -0.19, 0.001 +19360708, 0.60, -0.26, 0.66, 0.001 +19360709, 1.17, 0.34, 0.33, 0.001 +19360710, 1.73, -0.07, 0.77, 0.001 +19360711, 0.53, 0.58, 0.29, 0.001 +19360713, 0.27, 0.25, 0.24, 0.001 +19360714, 1.05, 0.04, 0.20, 0.001 +19360715, -0.03, -0.21, 0.80, 0.001 +19360716, 0.08, 0.31, -0.03, 0.001 +19360717, 0.31, 0.00, -0.12, 0.001 +19360718, 0.54, -0.10, 0.22, 0.001 +19360720, 0.36, -0.30, 0.09, 0.001 +19360721, 0.50, 0.09, -0.44, 0.001 +19360722, -0.43, -0.23, -0.14, 0.001 +19360723, 0.33, 0.64, 0.75, 0.001 +19360724, -0.21, 0.49, 0.27, 0.001 +19360725, 0.62, -0.20, -0.17, 0.001 +19360727, 0.77, -0.66, 0.62, 0.001 +19360728, -0.09, -0.33, -0.08, 0.001 +19360729, -0.70, 0.61, -0.39, 0.001 +19360730, 0.41, 0.27, -0.26, 0.001 +19360731, -0.76, 0.58, -0.11, 0.001 +19360801, 0.03, -0.12, 0.13, 0.001 +19360803, 0.23, -0.19, -0.58, 0.001 +19360804, -0.01, -0.12, -0.08, 0.001 +19360805, -0.46, 0.28, -0.06, 0.001 +19360806, 0.36, 0.11, 0.25, 0.001 +19360807, 1.17, 0.03, 0.88, 0.001 +19360808, 0.70, -0.55, 0.75, 0.001 +19360810, -0.21, -0.53, 0.10, 0.001 +19360811, -0.56, 0.22, -0.50, 0.001 +19360812, 0.46, 0.02, 0.90, 0.001 +19360813, -0.30, 0.30, 0.48, 0.001 +19360814, -1.12, 0.29, -0.05, 0.001 +19360815, 0.15, 0.07, 0.08, 0.001 +19360817, -0.58, 0.45, -0.38, 0.001 +19360818, 0.22, -0.11, -0.12, 0.001 +19360819, 0.48, 0.20, 0.77, 0.001 +19360820, -0.50, 0.57, -0.80, 0.001 +19360821, -2.67, -0.09, -1.14, 0.001 +19360822, 0.87, -0.09, 0.76, 0.001 +19360824, 0.76, -0.43, 0.42, 0.001 +19360825, 0.35, 0.31, 0.11, 0.001 +19360826, -0.64, -0.08, -0.20, 0.001 +19360827, 1.68, -0.31, 0.89, 0.001 +19360828, 0.35, -0.03, 0.82, 0.001 +19360829, 0.16, 0.35, 1.08, 0.001 +19360831, 0.18, 0.10, -0.56, 0.001 +19360901, -0.17, 0.31, 0.42, 0.000 +19360902, 0.35, 0.38, 0.10, 0.000 +19360903, -0.21, 0.28, -0.24, 0.000 +19360904, 0.61, 0.05, 0.40, 0.000 +19360905, 0.57, 0.32, 0.39, 0.000 +19360908, 0.89, -0.63, 0.48, 0.000 +19360909, -0.51, 0.56, -0.34, 0.000 +19360910, 0.08, 0.40, -0.08, 0.000 +19360911, -0.12, -0.03, -0.04, 0.000 +19360912, -0.27, 0.16, -0.18, 0.000 +19360914, -0.55, 0.07, -0.44, 0.000 +19360915, -0.21, -0.15, 0.21, 0.000 +19360916, -0.98, 0.50, -0.37, 0.000 +19360917, 0.70, -0.43, 0.22, 0.000 +19360918, 0.90, 0.39, 0.45, 0.000 +19360919, 0.64, 0.07, 0.65, 0.000 +19360921, 0.16, 0.32, -0.28, 0.000 +19360922, 0.22, -0.23, -0.24, 0.000 +19360923, -0.31, -0.05, -0.55, 0.000 +19360924, 0.06, -0.20, 0.38, 0.000 +19360925, -1.44, -0.05, -0.30, 0.000 +19360926, 0.93, 0.32, 0.53, 0.000 +19360928, 0.32, 0.33, -0.01, 0.000 +19360929, -0.18, 0.16, -0.36, 0.000 +19360930, -0.44, 0.19, 0.12, 0.000 +19361001, 0.13, 0.55, -0.16, 0.001 +19361002, 1.75, 0.24, 1.27, 0.001 +19361003, 0.93, -0.18, 0.37, 0.001 +19361005, 0.12, 0.06, 0.12, 0.001 +19361006, 0.67, -0.29, -0.22, 0.001 +19361007, 0.29, -0.76, 0.38, 0.001 +19361008, 0.49, -0.11, 0.44, 0.001 +19361009, 0.38, 0.46, -0.43, 0.001 +19361010, 0.51, 0.02, -0.05, 0.001 +19361013, -0.16, -0.60, 0.34, 0.001 +19361014, -0.27, 0.02, -0.12, 0.001 +19361015, -0.11, 0.16, 0.40, 0.001 +19361016, 1.00, 0.24, 0.62, 0.001 +19361017, 0.45, 0.20, -0.04, 0.001 +19361019, 0.13, -0.27, 0.04, 0.001 +19361020, -0.13, -0.87, -0.33, 0.001 +19361021, 0.36, 0.00, 0.43, 0.001 +19361022, -0.68, -0.21, -0.61, 0.001 +19361023, 0.36, 0.14, -0.42, 0.001 +19361024, 0.11, 0.14, 0.04, 0.001 +19361026, -2.26, -0.03, -0.49, 0.001 +19361027, 1.45, -0.05, 0.30, 0.001 +19361028, 0.15, 0.20, -0.03, 0.001 +19361029, 1.20, -0.47, 0.71, 0.001 +19361030, 0.15, -0.58, 0.01, 0.001 +19361031, 0.04, -0.20, -0.14, 0.001 +19361102, -0.30, 0.04, 0.21, 0.000 +19361104, 1.66, 1.07, -0.43, 0.000 +19361105, 1.11, 0.38, 0.10, 0.000 +19361106, -0.54, 1.04, -0.71, 0.000 +19361107, 1.26, 0.13, 0.26, 0.000 +19361109, 0.40, 0.87, 0.15, 0.000 +19361110, -0.24, 0.50, -0.23, 0.000 +19361112, -0.83, 0.44, -1.66, 0.000 +19361113, -0.81, 0.31, -1.04, 0.000 +19361114, -0.45, 0.88, -0.04, 0.000 +19361116, 1.38, 0.16, 0.85, 0.000 +19361117, 1.36, 0.59, 0.67, 0.000 +19361118, -0.39, -0.08, -0.33, 0.000 +19361119, -0.71, 0.06, -0.47, 0.000 +19361120, -0.90, -0.26, -0.35, 0.000 +19361121, 0.75, 0.20, 0.54, 0.000 +19361123, -2.08, -0.14, -0.46, 0.000 +19361124, 1.55, 0.09, 0.37, 0.000 +19361125, -0.21, 0.64, 0.22, 0.000 +19361127, 1.54, 0.54, 1.60, 0.000 +19361128, 0.20, 0.55, -0.01, 0.000 +19361130, -0.37, 0.44, -0.15, 0.000 +19361201, -0.60, 0.65, -0.51, 0.000 +19361202, -0.88, 0.17, 0.30, 0.000 +19361203, 0.51, -0.13, 0.63, 0.000 +19361204, 0.06, -0.27, -0.43, 0.000 +19361205, 0.13, 0.42, 0.08, 0.000 +19361207, -0.66, 0.35, -0.27, 0.000 +19361208, 0.16, 0.20, 0.47, 0.000 +19361209, 0.41, 0.30, 0.89, 0.000 +19361210, 0.77, 0.60, 0.77, 0.000 +19361211, -0.24, 1.05, -0.31, 0.000 +19361212, 0.13, 0.15, 0.44, 0.000 +19361214, 0.77, -0.26, 0.34, 0.000 +19361215, -0.10, -0.30, 0.09, 0.000 +19361216, -0.19, -0.52, -0.16, 0.000 +19361217, -0.45, 0.43, -0.18, 0.000 +19361218, -0.96, -0.49, -0.14, 0.000 +19361219, -0.92, -0.43, -0.15, 0.000 +19361221, -1.17, 0.77, -0.12, 0.000 +19361222, 1.13, 0.10, 0.56, 0.000 +19361223, 1.01, 0.31, -0.26, 0.000 +19361224, 0.29, 0.35, 0.23, 0.000 +19361228, -0.67, -0.61, 0.38, 0.000 +19361229, 0.22, -0.44, 0.84, 0.000 +19361230, 1.82, 0.33, 0.65, 0.000 +19361231, -0.29, 0.71, -0.38, 0.000 +19370102, -0.83, 0.19, -0.06, 0.000 +19370104, -0.49, 0.20, 0.49, 0.000 +19370105, 0.78, 0.03, 0.41, 0.000 +19370106, 0.15, -0.11, 0.26, 0.000 +19370107, 1.82, 0.40, 0.50, 0.000 +19370108, 0.38, 0.69, 0.56, 0.000 +19370109, -0.05, 0.54, 0.14, 0.000 +19370111, 0.49, 0.39, 0.98, 0.000 +19370112, 0.02, -0.04, -0.25, 0.000 +19370113, 0.17, 0.31, 0.25, 0.000 +19370114, 0.10, 0.43, -1.14, 0.000 +19370115, 0.30, 0.30, 0.27, 0.000 +19370116, 0.64, 0.41, 0.13, 0.000 +19370118, -0.37, -0.05, -0.28, 0.000 +19370119, -0.73, -0.37, -0.23, 0.000 +19370120, 1.06, 0.60, 0.73, 0.000 +19370121, 0.59, 0.05, 0.09, 0.000 +19370122, -0.48, 0.44, 0.35, 0.000 +19370123, 0.23, -0.10, -0.15, 0.000 +19370125, -0.64, -0.30, -1.02, 0.000 +19370126, -1.39, -0.62, -0.53, 0.000 +19370127, 0.60, 0.49, 0.24, 0.000 +19370128, 0.03, 0.23, 0.24, 0.000 +19370129, 0.57, 0.10, 0.34, 0.000 +19370130, 0.41, 0.04, 0.34, 0.000 +19370201, 0.27, 0.14, 0.08, 0.001 +19370202, 0.68, -0.59, 0.31, 0.001 +19370203, 0.59, -0.04, 1.13, 0.001 +19370204, 0.09, 0.21, -0.30, 0.001 +19370205, -1.37, -0.38, -0.50, 0.001 +19370206, 0.87, 0.86, 0.84, 0.001 +19370208, 0.48, 0.54, 0.65, 0.001 +19370209, -0.32, 0.04, -0.57, 0.001 +19370210, 0.72, -0.02, 1.19, 0.001 +19370211, 0.45, -0.70, -0.40, 0.001 +19370213, -0.17, 0.37, -0.51, 0.001 +19370215, -0.71, 0.23, -0.35, 0.001 +19370216, 0.10, -0.11, 0.47, 0.001 +19370217, -0.13, 0.08, 0.57, 0.001 +19370218, 0.29, -0.09, 0.66, 0.001 +19370219, 0.50, -0.19, 1.03, 0.001 +19370220, -0.13, -0.09, 0.50, 0.001 +19370223, -1.79, -0.34, -0.62, 0.001 +19370224, 0.31, 0.33, 0.10, 0.001 +19370225, -0.15, 0.65, -0.15, 0.001 +19370226, 0.27, 0.21, 0.25, 0.001 +19370227, 0.31, -0.27, 0.08, 0.001 +19370301, 0.16, 0.02, 0.55, 0.001 +19370302, 0.95, -0.11, 0.21, 0.001 +19370303, 1.11, -0.63, 1.56, 0.001 +19370304, -0.60, -0.17, -0.31, 0.001 +19370305, 0.91, -0.26, 1.21, 0.001 +19370306, 0.33, -0.06, 0.67, 0.001 +19370308, -0.42, -0.14, 0.35, 0.001 +19370309, 0.12, -0.36, 0.34, 0.001 +19370310, 0.54, -0.11, 0.54, 0.001 +19370311, -1.00, -0.36, -0.45, 0.001 +19370312, -0.35, 0.59, 0.35, 0.001 +19370313, -0.14, 0.38, -0.19, 0.001 +19370315, -0.61, 1.51, 1.61, 0.001 +19370316, 0.43, 0.33, 1.10, 0.001 +19370317, -0.36, -0.01, 1.56, 0.001 +19370318, -1.91, -0.42, -1.23, 0.001 +19370319, -0.06, 0.33, -0.01, 0.001 +19370320, -0.20, 0.01, 0.11, 0.001 +19370322, -2.66, -0.65, -1.75, 0.001 +19370323, 1.30, -0.05, 1.41, 0.001 +19370324, 0.89, 0.17, 0.17, 0.001 +19370325, -0.07, 0.19, -0.42, 0.001 +19370327, 0.35, 0.05, 0.53, 0.001 +19370329, -0.44, 0.17, 0.00, 0.001 +19370330, 1.34, -0.82, 1.24, 0.001 +19370331, 0.21, 0.20, -0.43, 0.001 +19370401, -0.88, -0.01, -0.66, 0.001 +19370402, -1.20, -0.70, -0.93, 0.001 +19370403, 0.39, 0.26, 0.45, 0.001 +19370405, 0.40, -0.10, 0.10, 0.001 +19370406, -0.65, 0.11, -0.52, 0.001 +19370407, -2.97, -0.70, -1.14, 0.001 +19370408, 0.23, -0.32, 0.39, 0.001 +19370409, 0.41, 0.53, -0.01, 0.001 +19370410, -0.13, 0.47, -0.19, 0.001 +19370412, 0.50, -0.44, 0.33, 0.001 +19370413, 1.11, 0.63, 0.05, 0.001 +19370414, 0.15, 0.11, 0.05, 0.001 +19370415, -0.35, -0.09, 0.04, 0.001 +19370416, -0.43, -0.26, -0.29, 0.001 +19370417, -0.27, 0.40, -0.63, 0.001 +19370419, 0.41, -0.39, 0.57, 0.001 +19370420, 0.28, -0.20, 0.21, 0.001 +19370421, 1.07, -0.55, -0.44, 0.001 +19370422, -1.18, 0.32, -0.28, 0.001 +19370423, -1.49, 0.09, -0.03, 0.001 +19370424, -0.88, -0.72, -0.12, 0.001 +19370426, -3.18, -1.04, -1.47, 0.001 +19370427, 1.28, -0.81, 0.42, 0.001 +19370428, -2.91, -1.48, -1.20, 0.001 +19370429, 0.30, 0.51, -0.32, 0.001 +19370430, 2.62, 0.39, 1.90, 0.001 +19370501, 0.18, 0.62, -0.22, 0.003 +19370503, 0.27, -0.20, -0.21, 0.003 +19370504, 1.26, -0.13, -0.08, 0.003 +19370505, -0.74, 0.20, -0.10, 0.003 +19370506, 0.48, -0.65, 1.06, 0.003 +19370507, -0.14, 0.70, 0.00, 0.003 +19370508, -0.26, 0.00, -0.41, 0.003 +19370510, -1.83, 0.21, -1.20, 0.003 +19370511, -0.09, -0.29, -0.29, 0.003 +19370512, -0.29, -0.04, 0.12, 0.003 +19370513, -2.97, -1.89, -1.11, 0.003 +19370514, 0.97, 0.10, 0.47, 0.003 +19370515, 0.26, 0.16, 0.03, 0.003 +19370517, -1.14, 0.37, -0.74, 0.003 +19370518, 1.01, -0.66, 0.71, 0.003 +19370519, -0.05, 0.51, -0.58, 0.003 +19370520, 2.17, 0.01, 0.41, 0.003 +19370521, 0.27, 0.33, -0.44, 0.003 +19370522, 1.02, -0.01, 0.65, 0.003 +19370524, 0.03, -0.13, -0.03, 0.003 +19370525, -1.08, 0.42, -0.98, 0.003 +19370526, -0.20, -0.09, -0.06, 0.003 +19370527, 0.05, -0.17, -0.40, 0.003 +19370528, 0.12, -0.03, -0.01, 0.003 +19370601, -1.35, -1.10, 0.04, 0.001 +19370602, 0.64, -0.22, 0.09, 0.001 +19370603, 0.14, -0.31, -0.44, 0.001 +19370604, 1.02, 0.44, 0.12, 0.001 +19370605, 0.15, 0.15, 0.08, 0.001 +19370607, -0.50, 0.00, -0.36, 0.001 +19370608, 0.33, -0.10, 0.30, 0.001 +19370609, -0.55, 0.35, 0.06, 0.001 +19370610, -0.39, -0.23, -0.02, 0.001 +19370611, -1.29, -0.28, -0.47, 0.001 +19370612, -0.80, -0.31, -0.24, 0.001 +19370614, -2.42, -0.74, -0.93, 0.001 +19370615, 1.01, 0.26, -0.09, 0.001 +19370616, -0.93, -0.31, -0.36, 0.001 +19370617, 0.89, -1.18, -0.20, 0.001 +19370618, 0.75, 0.32, 0.12, 0.001 +19370619, -0.18, 0.22, -0.20, 0.001 +19370621, -0.72, -0.06, -0.74, 0.001 +19370622, -0.18, 0.53, -0.67, 0.001 +19370623, 0.64, -0.33, 0.51, 0.001 +19370624, 0.43, -0.12, 0.28, 0.001 +19370625, -0.47, 0.12, -0.26, 0.001 +19370626, -0.90, 0.14, -0.55, 0.001 +19370628, -1.52, -0.65, -0.29, 0.001 +19370629, 0.22, -0.18, 0.35, 0.001 +19370630, 1.75, -0.42, 0.73, 0.001 +19370701, 0.64, 0.34, 0.28, 0.001 +19370702, 1.18, 0.45, 0.73, 0.001 +19370706, 2.96, 0.26, 1.04, 0.001 +19370707, 0.87, 1.33, 0.18, 0.001 +19370708, 0.23, 0.38, 0.98, 0.001 +19370709, -0.20, 0.41, -0.01, 0.001 +19370710, -0.26, 0.14, -0.26, 0.001 +19370712, 1.32, 0.02, 0.41, 0.001 +19370713, -0.49, -0.19, -0.45, 0.001 +19370714, 0.14, -0.32, -0.71, 0.001 +19370715, 0.42, -0.56, -0.08, 0.001 +19370716, -0.25, -0.20, -0.27, 0.001 +19370717, 0.09, -0.04, -0.14, 0.001 +19370719, 1.27, -0.37, 0.08, 0.001 +19370720, 0.91, -0.58, 0.70, 0.001 +19370721, -0.57, 0.45, -0.75, 0.001 +19370722, 0.31, 0.14, 0.19, 0.001 +19370723, 0.22, -0.17, -0.48, 0.001 +19370724, 0.65, -0.56, 0.29, 0.001 +19370726, -0.18, 0.42, -0.04, 0.001 +19370727, -0.20, -0.10, -0.19, 0.001 +19370728, -1.20, 0.26, -0.39, 0.001 +19370729, -0.27, 0.00, -0.23, 0.001 +19370730, 0.27, -0.87, -0.40, 0.001 +19370731, 0.79, 0.16, 0.37, 0.001 +19370802, 0.18, 0.26, 0.23, 0.001 +19370803, -0.55, 0.33, -0.49, 0.001 +19370804, 0.40, -0.10, 0.91, 0.001 +19370805, -0.41, 0.37, -0.07, 0.001 +19370806, -0.34, -0.10, -0.58, 0.001 +19370807, 0.68, -0.40, 0.35, 0.001 +19370809, 0.31, 0.04, 0.08, 0.001 +19370810, -0.18, -0.20, -0.29, 0.001 +19370811, -0.05, -0.06, -0.57, 0.001 +19370812, 0.49, -0.42, 0.58, 0.001 +19370813, 0.80, -0.01, -0.32, 0.001 +19370814, 0.27, 0.26, -0.07, 0.001 +19370816, -0.64, 0.21, -0.68, 0.001 +19370817, -0.34, 0.19, -0.16, 0.001 +19370818, -0.82, 0.48, -0.15, 0.001 +19370819, -1.21, -0.24, -0.05, 0.001 +19370820, -1.09, -0.13, -0.35, 0.001 +19370821, 0.48, 0.08, 0.44, 0.001 +19370823, -0.78, 0.57, -0.15, 0.001 +19370824, 0.61, -0.69, 0.19, 0.001 +19370825, -0.46, 0.14, -0.56, 0.001 +19370826, -1.73, -0.05, -0.34, 0.001 +19370827, -1.42, -0.20, 0.18, 0.001 +19370828, 0.25, 0.18, -0.14, 0.001 +19370830, 0.83, -0.72, 0.25, 0.001 +19370831, -0.23, 0.66, -0.59, 0.001 +19370901, -2.35, 0.10, -0.67, 0.001 +19370902, -1.25, -0.44, 0.05, 0.001 +19370903, 0.61, -0.22, 0.47, 0.001 +19370904, 0.44, -0.42, 0.15, 0.001 +19370907, -5.49, -1.70, -1.78, 0.001 +19370908, -0.98, -2.76, -0.84, 0.001 +19370909, 2.16, -0.19, 1.35, 0.001 +19370910, -4.98, -0.97, -1.01, 0.001 +19370911, 0.94, -1.69, 0.28, 0.001 +19370913, -1.51, -1.12, -0.60, 0.001 +19370914, 3.56, 2.03, 0.66, 0.001 +19370915, 0.12, 1.57, -0.09, 0.001 +19370916, 1.53, -0.53, 1.04, 0.001 +19370917, -1.90, 0.46, -1.56, 0.001 +19370918, -2.66, 0.96, -0.04, 0.001 +19370920, -0.98, -1.37, -0.22, 0.001 +19370921, 0.75, -0.24, -0.12, 0.001 +19370922, 0.31, -0.05, 0.41, 0.001 +19370923, -2.11, 0.30, -0.92, 0.001 +19370924, -4.41, -1.94, -0.41, 0.001 +19370925, -0.89, -2.09, -0.71, 0.001 +19370927, 3.34, -1.45, 1.08, 0.001 +19370928, 1.42, 1.95, -0.57, 0.001 +19370929, 0.42, 0.29, -1.24, 0.001 +19370930, 0.07, 1.59, 0.30, 0.001 +19371001, -0.36, 0.11, -0.06, 0.001 +19371002, 0.39, 0.19, 0.62, 0.001 +19371004, -1.01, 0.56, -0.93, 0.001 +19371005, -5.24, -0.57, 0.44, 0.001 +19371006, 2.01, -1.95, -0.56, 0.001 +19371007, -0.20, 1.90, -0.78, 0.001 +19371008, -2.20, 0.05, -0.69, 0.001 +19371009, -0.05, -1.01, -0.04, 0.001 +19371011, -3.87, -0.69, -2.40, 0.001 +19371013, -0.91, -3.73, 0.26, 0.001 +19371014, -1.47, -0.01, -0.55, 0.001 +19371015, -1.43, -2.08, 0.41, 0.001 +19371016, -0.02, -1.99, 0.32, 0.001 +19371018, -8.20, -0.63, 0.28, 0.001 +19371019, 0.47, -7.04, -2.43, 0.001 +19371020, 8.67, 8.21, 3.10, 0.001 +19371021, 2.66, 4.60, 2.56, 0.001 +19371022, -2.17, 2.16, -0.21, 0.001 +19371023, -4.32, -0.02, -2.18, 0.001 +19371025, 5.26, -0.04, -0.50, 0.001 +19371026, -1.29, 1.44, -0.30, 0.001 +19371027, -0.30, -0.72, 0.26, 0.001 +19371028, 2.50, 2.10, 1.27, 0.001 +19371029, 2.59, 0.94, 1.11, 0.001 +19371030, -0.01, 0.51, 0.21, 0.001 +19371101, -1.96, 0.12, -0.13, 0.001 +19371103, -4.18, -0.32, -1.57, 0.001 +19371104, -0.78, -0.29, 0.23, 0.001 +19371105, 0.20, 0.57, -0.03, 0.001 +19371106, -2.55, -0.18, -0.59, 0.001 +19371108, -0.44, -1.38, 0.50, 0.001 +19371109, 1.64, -0.02, 1.45, 0.001 +19371110, 5.00, -0.93, 0.60, 0.001 +19371112, 0.23, 1.45, -0.31, 0.001 +19371113, 0.12, -0.30, 0.42, 0.001 +19371115, -2.42, 0.79, -0.41, 0.001 +19371116, -0.88, -1.29, 0.30, 0.001 +19371117, -0.47, 0.59, -0.51, 0.001 +19371118, -1.83, -0.37, -0.46, 0.001 +19371119, -5.15, -1.05, -0.10, 0.001 +19371120, 1.98, -1.31, 0.72, 0.001 +19371122, -4.08, 1.98, -0.24, 0.001 +19371123, 0.57, -2.20, 0.83, 0.001 +19371124, -1.70, 1.13, -0.90, 0.001 +19371126, 3.96, -1.15, 1.67, 0.001 +19371127, 4.60, 0.09, -0.28, 0.001 +19371129, -1.41, 0.10, -0.83, 0.001 +19371130, 1.65, -0.19, 0.21, 0.001 +19371201, -1.13, -0.37, -1.18, 0.000 +19371202, 1.62, -1.61, 0.98, 0.000 +19371203, 1.64, 0.50, -0.03, 0.000 +19371204, 0.16, 0.05, -0.27, 0.000 +19371206, -1.40, 0.10, -0.80, 0.000 +19371207, 1.15, -1.28, 0.02, 0.000 +19371208, 1.02, 0.44, 0.97, 0.000 +19371209, -1.43, 0.27, -0.54, 0.000 +19371210, -0.93, -0.16, -0.11, 0.000 +19371211, 0.02, -0.28, 0.46, 0.000 +19371213, -2.74, 0.50, -0.63, 0.000 +19371214, 0.26, -0.93, 0.19, 0.000 +19371215, 0.58, -0.82, 0.19, 0.000 +19371216, 1.20, -0.92, -0.09, 0.000 +19371217, -0.56, -0.50, -0.29, 0.000 +19371218, 1.10, -0.98, 0.57, 0.000 +19371220, 1.39, -0.61, 0.38, 0.000 +19371221, 0.31, -0.74, 0.04, 0.000 +19371222, -1.26, 0.18, -0.60, 0.000 +19371223, -0.72, -1.02, -0.23, 0.000 +19371224, -0.26, 0.26, 0.21, 0.000 +19371227, -2.88, -0.65, -0.27, 0.000 +19371228, -3.28, -0.75, -0.03, 0.000 +19371229, 0.53, -2.09, 0.29, 0.000 +19371230, 1.70, 1.78, 0.18, 0.000 +19371231, -0.24, 1.03, 0.34, 0.000 +19380103, 0.17, 2.08, -0.15, 0.000 +19380104, 3.19, -1.28, -0.04, 0.000 +19380105, -0.06, 1.91, -0.69, 0.000 +19380106, 3.83, 0.05, 0.31, 0.000 +19380107, -0.47, 1.89, 0.20, 0.000 +19380108, 2.26, 0.63, 0.50, 0.000 +19380110, 1.88, 1.63, 0.06, 0.000 +19380111, 0.70, 0.52, -0.19, 0.000 +19380112, -0.66, 0.97, 0.04, 0.000 +19380113, -1.13, -0.12, -0.32, 0.000 +19380114, 0.04, -0.71, 0.03, 0.000 +19380115, 1.71, -0.02, 0.08, 0.000 +19380117, -1.79, 0.36, -0.77, 0.000 +19380118, -0.83, -0.22, -0.41, 0.000 +19380119, -1.09, -0.66, -0.40, 0.000 +19380120, 1.49, -0.07, 0.37, 0.000 +19380121, -1.37, 0.66, -0.24, 0.000 +19380122, -0.55, -0.29, -0.44, 0.000 +19380124, -0.16, -0.06, 0.97, 0.000 +19380125, -1.17, -0.12, -0.67, 0.000 +19380126, -3.60, -1.37, 0.17, 0.000 +19380127, -1.42, -0.13, -0.61, 0.000 +19380128, -1.11, -0.37, -0.11, 0.000 +19380129, -0.14, 1.02, 0.30, 0.000 +19380131, 1.06, -1.34, 0.64, 0.000 +19380201, 1.57, -0.06, 0.15, 0.000 +19380202, -1.10, 0.86, -0.68, 0.000 +19380203, -3.76, -0.20, 0.73, 0.000 +19380204, 1.63, -1.11, -0.57, 0.000 +19380205, 1.73, 0.63, 0.28, 0.000 +19380207, -1.16, 1.30, -0.43, 0.000 +19380208, 3.11, -1.70, 0.34, 0.000 +19380209, -0.16, 0.84, -0.34, 0.000 +19380210, 0.67, -0.09, 0.00, 0.000 +19380211, -0.38, -0.26, 0.17, 0.000 +19380214, 0.80, -0.69, 0.03, 0.000 +19380215, -0.76, 0.98, -0.79, 0.000 +19380216, -0.32, 0.09, 0.12, 0.000 +19380217, 2.36, -0.26, -0.10, 0.000 +19380218, -1.10, 0.59, -0.30, 0.000 +19380219, 1.14, -0.88, -0.36, 0.000 +19380221, 1.47, -0.57, 0.36, 0.000 +19380223, 2.44, -0.26, 0.43, 0.000 +19380224, -1.05, 0.41, -0.37, 0.000 +19380225, 0.56, 0.33, 0.35, 0.000 +19380226, -0.40, -0.14, -0.35, 0.000 +19380228, -1.31, 0.43, -0.49, 0.000 +19380301, 0.79, -0.62, 0.08, 0.000 +19380302, -0.82, 0.43, -0.64, 0.000 +19380303, -0.78, 0.09, -0.17, 0.000 +19380304, -0.71, 0.30, -0.70, 0.000 +19380305, -0.25, -0.46, 0.26, 0.000 +19380307, -1.73, 0.47, -0.47, 0.000 +19380308, -0.52, -1.23, -0.14, 0.000 +19380309, 0.02, 0.27, -0.14, 0.000 +19380310, -0.91, 0.56, -0.46, 0.000 +19380311, -1.72, 0.01, -0.09, 0.000 +19380312, 0.26, -0.87, 0.07, 0.000 +19380314, 1.28, -0.25, -0.26, 0.000 +19380315, 2.46, -0.11, -0.49, 0.000 +19380316, -3.63, 0.62, -0.45, 0.000 +19380317, -0.80, -0.22, -0.11, 0.000 +19380318, -3.36, -1.54, -0.63, 0.000 +19380319, 1.94, -0.57, 0.38, 0.000 +19380321, -0.11, 0.70, -0.12, 0.000 +19380322, -2.69, -0.40, -0.12, 0.000 +19380323, -2.29, -1.76, -0.34, 0.000 +19380324, 0.31, -0.29, 0.42, 0.000 +19380325, -5.11, -0.42, -0.81, 0.000 +19380326, -2.01, -0.87, -0.41, 0.000 +19380328, 0.77, -0.45, 0.43, 0.000 +19380329, -5.11, 1.12, -1.40, 0.000 +19380330, -0.72, 0.02, 1.47, 0.000 +19380331, -1.22, -0.19, 0.49, 0.000 +19380401, 4.16, 0.11, 1.20, 0.000 +19380402, 3.78, 1.42, -0.33, 0.000 +19380404, 0.65, 1.25, 0.67, 0.000 +19380405, 1.91, -0.35, 0.24, 0.000 +19380406, -1.62, 0.76, -0.82, 0.000 +19380407, -0.61, 0.43, -0.14, 0.000 +19380408, 4.12, -0.82, -0.52, 0.000 +19380409, 5.73, 0.20, 0.55, 0.000 +19380411, -2.41, 1.26, 0.40, 0.000 +19380412, 0.41, -1.62, 0.28, 0.000 +19380413, 0.43, 0.92, -1.13, 0.000 +19380414, 1.23, -0.12, -0.35, 0.000 +19380416, 3.74, 0.64, 0.24, 0.000 +19380418, -1.70, 0.64, -0.67, 0.000 +19380419, -2.33, 0.53, -0.20, 0.000 +19380420, -0.50, -0.71, 0.26, 0.000 +19380421, 0.55, 0.32, -0.13, 0.000 +19380422, 2.65, -0.39, 0.53, 0.000 +19380423, -0.62, 0.73, -0.07, 0.000 +19380425, -1.46, 0.08, 0.04, 0.000 +19380426, -1.65, 0.48, 0.36, 0.000 +19380427, 0.72, -0.51, 0.17, 0.000 +19380428, -2.50, 0.30, -0.28, 0.000 +19380429, -0.31, -1.21, -0.25, 0.000 +19380430, -0.16, 0.93, 0.52, 0.000 +19380502, -1.24, -0.18, 0.09, 0.000 +19380503, 2.20, -1.04, -0.23, 0.000 +19380504, 1.21, -0.58, 0.54, 0.000 +19380505, -0.02, 0.06, -0.50, 0.000 +19380506, 3.58, -2.36, 1.49, 0.000 +19380507, 0.12, 1.06, -0.39, 0.000 +19380509, 1.48, -0.65, 0.02, 0.000 +19380510, -1.10, 1.59, -0.12, 0.000 +19380511, 0.50, -0.11, 0.35, 0.000 +19380512, -0.56, -0.09, -0.07, 0.000 +19380513, -1.16, 0.52, -0.26, 0.000 +19380514, -0.03, 0.13, -0.01, 0.000 +19380516, -1.36, 0.73, -0.78, 0.000 +19380517, 0.38, -1.06, -0.09, 0.000 +19380518, 0.41, 0.16, -0.24, 0.000 +19380519, -1.52, 0.35, -0.82, 0.000 +19380520, -0.45, -0.30, 0.50, 0.000 +19380521, -1.19, 0.48, -0.70, 0.000 +19380523, 0.40, -0.89, 0.54, 0.000 +19380524, -1.20, 0.56, -0.52, 0.000 +19380525, -1.50, 0.20, 0.42, 0.000 +19380526, -2.47, -0.27, -0.51, 0.000 +19380527, -0.21, -0.97, 1.12, 0.000 +19380528, 1.18, 0.24, -0.06, 0.000 +19380531, -1.15, -0.29, 0.08, 0.000 +19380601, 2.44, -0.61, -0.02, 0.000 +19380602, -0.05, 0.56, 0.18, 0.000 +19380603, -0.97, 0.27, -0.29, 0.000 +19380604, 1.94, -0.72, -0.35, 0.000 +19380606, 0.79, -0.12, -0.25, 0.000 +19380607, -0.33, 1.01, -0.60, 0.000 +19380608, 0.31, -0.89, -0.44, 0.000 +19380609, 2.01, -0.54, 0.44, 0.000 +19380610, -0.87, 0.51, -0.58, 0.000 +19380611, -0.31, 0.04, 0.75, 0.000 +19380613, -1.81, 1.29, -0.44, 0.000 +19380614, 0.72, -1.06, -0.15, 0.000 +19380615, 0.42, 0.77, -1.24, 0.000 +19380616, 0.77, -0.66, 0.27, 0.000 +19380617, -0.65, 0.08, 0.32, 0.000 +19380618, 0.07, 0.14, -0.24, 0.000 +19380620, 4.69, -1.43, 0.70, 0.000 +19380621, 2.38, 0.76, 0.36, 0.000 +19380622, 2.77, 0.57, 0.08, 0.000 +19380623, 2.78, 1.08, 0.76, 0.000 +19380624, 1.03, 0.19, -0.51, 0.000 +19380625, 1.91, -0.49, 0.80, 0.000 +19380627, -0.63, 1.89, -0.58, 0.000 +19380628, -0.28, -0.64, -0.19, 0.000 +19380629, 4.27, -0.20, 0.61, 0.000 +19380630, -1.48, 1.25, 1.04, 0.000 +19380701, 2.53, -0.92, 1.45, 0.000 +19380702, 1.72, 0.83, 0.97, 0.000 +19380705, -1.45, 0.23, -0.27, 0.000 +19380706, 1.38, 0.74, 0.05, 0.000 +19380707, -0.08, 1.49, 1.30, 0.000 +19380708, -1.34, 0.38, -0.45, 0.000 +19380709, 0.41, -0.43, -0.16, 0.000 +19380711, -1.53, 0.48, -1.13, 0.000 +19380712, 2.34, -0.26, 0.92, 0.000 +19380713, -0.04, 2.00, -0.14, 0.000 +19380714, -1.12, -0.45, -0.47, 0.000 +19380715, 1.19, -0.76, 0.51, 0.000 +19380716, 0.88, 0.61, 0.29, 0.000 +19380718, 1.72, 0.62, 0.18, 0.000 +19380719, 2.22, -0.29, 0.65, 0.000 +19380720, -0.66, 0.25, 0.58, 0.000 +19380721, -0.09, 0.35, 0.55, 0.000 +19380722, 0.23, 0.84, 0.30, 0.000 +19380723, 1.37, 0.00, 0.32, 0.000 +19380725, 0.51, 0.82, -1.31, 0.000 +19380726, -0.98, 0.20, -0.66, 0.000 +19380727, -2.98, -1.60, -1.16, 0.000 +19380728, 1.59, 0.24, 0.08, 0.000 +19380729, -0.80, 1.02, -0.41, 0.000 +19380730, 0.32, -0.27, 0.30, 0.000 +19380801, -0.75, -0.72, -0.30, 0.000 +19380802, 0.71, 0.17, 0.30, 0.000 +19380803, -0.73, -0.01, -1.24, 0.000 +19380804, 0.51, -0.66, -0.40, 0.000 +19380805, 1.94, 0.00, 0.97, 0.000 +19380806, 1.06, 0.59, 0.36, 0.000 +19380808, -0.73, -0.31, -0.32, 0.000 +19380809, -0.66, -0.76, -0.10, 0.000 +19380810, -0.80, 0.21, -0.55, 0.000 +19380811, -2.27, -0.53, -0.72, 0.000 +19380812, -1.90, -1.32, -1.43, 0.000 +19380813, -0.44, -0.28, 0.27, 0.000 +19380815, 0.56, 0.46, -0.04, 0.000 +19380816, 1.18, -0.17, 0.17, 0.000 +19380817, 0.16, 0.27, -0.37, 0.000 +19380818, -0.23, -0.22, -0.32, 0.000 +19380819, 1.37, -0.28, 0.59, 0.000 +19380820, 0.14, 0.24, 0.27, 0.000 +19380822, -0.44, 0.10, -0.44, 0.000 +19380823, 2.13, 0.37, 0.20, 0.000 +19380824, 0.18, 1.18, 0.00, 0.000 +19380825, 0.48, -0.30, 0.53, 0.000 +19380826, -0.73, 0.47, -0.21, 0.000 +19380827, -0.99, -0.31, -0.45, 0.000 +19380829, -3.54, -0.73, -1.22, 0.000 +19380830, 1.15, -0.12, 0.37, 0.000 +19380831, 0.11, 0.18, -0.73, 0.000 +19380901, -0.91, -0.62, -0.66, 0.001 +19380902, 2.03, -0.51, 0.59, 0.001 +19380903, 0.90, 0.67, 0.14, 0.001 +19380906, -1.00, -0.21, -0.15, 0.001 +19380907, 1.26, 0.12, 0.41, 0.001 +19380908, -0.70, 0.33, -0.61, 0.001 +19380909, -1.91, -0.62, -0.43, 0.001 +19380910, -1.06, -0.13, -0.11, 0.001 +19380912, 1.05, -0.90, -0.04, 0.001 +19380913, -4.54, 0.85, -3.06, 0.001 +19380914, -2.06, -4.96, -1.42, 0.001 +19380915, 3.47, 0.67, 1.45, 0.001 +19380916, -1.87, 0.06, -0.72, 0.001 +19380917, -2.24, -0.82, -1.17, 0.001 +19380919, 2.71, 1.82, 1.46, 0.001 +19380920, 3.49, 0.77, 1.04, 0.001 +19380921, 0.53, 0.57, 1.17, 0.001 +19380922, -1.47, 0.05, -0.63, 0.001 +19380923, -2.83, -0.93, -1.04, 0.001 +19380924, -0.67, -1.33, 0.23, 0.001 +19380926, -2.68, 0.13, -1.22, 0.001 +19380927, -0.13, 0.49, -0.43, 0.001 +19380928, 3.86, 0.23, 1.70, 0.001 +19380929, 3.49, 0.67, 1.33, 0.001 +19380930, 2.75, 1.34, 1.32, 0.001 +19381001, 1.66, 0.35, 1.32, 0.000 +19381003, 0.81, 1.41, -0.74, 0.000 +19381004, 0.01, 0.31, -0.52, 0.000 +19381005, 2.82, 0.33, 2.40, 0.000 +19381006, -0.26, 0.71, -0.13, 0.000 +19381007, 0.04, -0.26, 0.58, 0.000 +19381008, 1.01, 0.27, 1.33, 0.000 +19381010, -0.22, 0.68, -0.56, 0.000 +19381011, -0.58, -0.07, -0.07, 0.000 +19381013, 2.41, -0.15, 0.82, 0.000 +19381014, -0.55, -0.04, -0.47, 0.000 +19381015, 0.83, -0.40, 0.22, 0.000 +19381017, -1.17, -0.03, -0.58, 0.000 +19381018, 0.97, 0.48, 0.52, 0.000 +19381019, -1.18, 0.67, -0.01, 0.000 +19381020, 1.22, -1.13, 0.64, 0.000 +19381021, 0.23, 1.04, 0.01, 0.000 +19381022, 1.07, -0.01, 0.68, 0.000 +19381024, 0.19, 0.27, -0.20, 0.000 +19381025, 0.10, 0.44, 0.35, 0.000 +19381026, -0.94, 0.16, -0.23, 0.000 +19381027, 0.25, -0.55, 0.29, 0.000 +19381028, -1.00, -0.06, 0.06, 0.000 +19381029, -0.33, 0.25, -0.44, 0.000 +19381031, 0.26, 0.53, -0.55, 0.000 +19381101, -0.26, 0.57, 0.32, -0.003 +19381102, 0.17, -0.56, 0.16, -0.003 +19381103, 0.25, -0.30, 1.24, -0.003 +19381104, -0.20, 0.17, -0.58, -0.003 +19381105, 0.29, -0.01, 0.04, -0.003 +19381107, 1.57, 0.57, 0.08, -0.003 +19381109, 2.42, -0.63, 0.91, -0.003 +19381110, -0.37, 0.28, -0.43, -0.003 +19381112, 0.49, 0.16, 0.91, -0.003 +19381114, -1.73, 1.01, -1.04, -0.003 +19381115, -0.53, -0.57, 0.01, -0.003 +19381116, -2.25, -0.43, -1.01, -0.003 +19381117, 0.87, -0.26, 0.28, -0.003 +19381118, -1.82, -0.80, -0.89, -0.003 +19381119, 0.26, 0.15, 0.42, -0.003 +19381121, -0.07, -0.16, -0.60, -0.003 +19381122, -0.59, 0.29, -0.88, -0.003 +19381123, 0.35, -0.34, 0.68, -0.003 +19381125, 0.23, 0.07, 0.17, -0.003 +19381126, -1.32, -0.15, -1.06, -0.003 +19381128, -1.66, -1.13, -1.15, -0.003 +19381129, 0.32, 0.21, 0.00, -0.003 +19381130, 1.98, -0.78, 1.37, -0.003 +19381201, -0.34, 0.72, -0.25, 0.000 +19381202, -0.95, -0.31, -1.29, 0.000 +19381203, -0.02, 0.10, -0.47, 0.000 +19381205, -0.39, -0.43, -0.49, 0.000 +19381206, 0.63, -0.03, 0.66, 0.000 +19381207, 0.26, 0.26, -0.44, 0.000 +19381208, -0.92, -0.57, -1.00, 0.000 +19381209, -0.54, -0.20, -0.95, 0.000 +19381210, 0.65, -0.42, 0.37, 0.000 +19381212, 0.42, -0.09, -0.25, 0.000 +19381213, 0.75, -0.76, 0.53, 0.000 +19381214, 2.00, 0.07, 0.64, 0.000 +19381215, 0.28, 0.48, 0.14, 0.000 +19381216, -0.47, -0.54, -0.90, 0.000 +19381217, -0.33, -0.35, -0.40, 0.000 +19381219, -0.58, 0.04, -0.15, 0.000 +19381220, -0.29, -0.82, -0.52, 0.000 +19381221, -0.79, -0.44, -0.22, 0.000 +19381222, 0.55, -0.76, 0.75, 0.000 +19381223, 0.83, 0.23, 1.11, 0.000 +19381224, 0.41, -0.02, 1.11, 0.000 +19381227, -0.93, -0.34, -0.79, 0.000 +19381228, 0.76, -0.32, 0.37, 0.000 +19381229, 2.31, 1.15, 2.25, 0.000 +19381230, 0.53, 0.92, 0.26, 0.000 +19381231, 0.41, 0.83, 0.58, 0.000 +19390103, -0.70, 0.54, -0.41, 0.000 +19390104, 0.93, 0.77, 1.23, 0.000 +19390105, -1.06, -0.05, -1.25, 0.000 +19390106, 0.06, -0.14, 0.53, 0.000 +19390107, -0.99, 0.11, -0.31, 0.000 +19390109, -0.91, -0.27, -0.74, 0.000 +19390110, 0.18, 0.43, -0.10, 0.000 +19390111, -1.67, -0.38, -0.91, 0.000 +19390112, -0.77, -1.03, -0.37, 0.000 +19390113, -0.57, 0.45, -0.47, 0.000 +19390114, 1.99, -0.30, 1.72, 0.000 +19390116, -0.07, 0.31, 0.04, 0.000 +19390117, 0.53, -0.22, 0.07, 0.000 +19390118, 0.03, 0.29, 0.10, 0.000 +19390119, 0.75, -0.15, 0.44, 0.000 +19390120, -0.15, 0.22, -0.29, 0.000 +19390121, -1.95, -0.05, -1.42, 0.000 +19390123, -4.02, -0.67, -2.17, 0.000 +19390124, -0.04, -1.66, 0.50, 0.000 +19390125, -0.22, 0.89, -0.44, 0.000 +19390126, -2.74, -0.60, -1.68, 0.000 +19390127, 2.08, -1.28, 0.71, 0.000 +19390128, -0.26, 0.17, -0.41, 0.000 +19390130, 2.38, -0.66, 1.07, 0.000 +19390131, 1.34, 1.69, 0.74, 0.000 +19390201, -1.00, 0.52, 0.15, 0.000 +19390202, 1.84, -0.87, 0.64, 0.000 +19390203, -0.59, 0.72, -0.47, 0.000 +19390204, 0.78, 0.31, 0.25, 0.000 +19390206, 0.34, -0.07, -0.46, 0.000 +19390207, -0.93, -0.38, -0.57, 0.000 +19390208, 0.95, -0.38, 0.85, 0.000 +19390209, -1.04, 0.39, -0.61, 0.000 +19390210, 0.08, -0.62, -0.21, 0.000 +19390211, 0.64, 0.13, 0.23, 0.000 +19390214, -0.31, 0.00, -0.67, 0.000 +19390215, 0.21, -0.26, 0.22, 0.000 +19390216, 0.96, 0.35, 0.46, 0.000 +19390217, -0.55, 0.35, -0.81, 0.000 +19390218, 0.67, -0.25, 0.87, 0.000 +19390220, -2.24, 0.08, -0.59, 0.000 +19390221, 0.15, -0.37, 0.17, 0.000 +19390223, 0.28, 0.18, 0.23, 0.000 +19390224, 2.07, 0.35, 1.22, 0.000 +19390225, 0.76, 0.48, 0.47, 0.000 +19390227, -0.06, -0.05, 0.29, 0.000 +19390228, 0.55, -0.02, 1.27, 0.000 +19390301, -0.08, -0.31, -0.14, 0.000 +19390302, -0.01, -0.06, -0.22, 0.000 +19390303, 1.25, -0.29, 0.47, 0.000 +19390304, 0.21, 0.62, -0.17, 0.000 +19390306, -0.69, 0.03, -1.15, 0.000 +19390307, 0.45, -0.11, 0.05, 0.000 +19390308, 1.61, -0.10, 1.12, 0.000 +19390309, -0.06, 0.65, -0.60, 0.000 +19390310, 0.64, 0.22, -0.62, 0.000 +19390311, -0.37, 0.02, -0.97, 0.000 +19390313, -0.68, -0.11, -0.48, 0.000 +19390314, 0.36, -0.28, 0.11, 0.000 +19390315, -2.34, -0.05, -1.11, 0.000 +19390316, 0.06, 0.17, 0.28, 0.000 +19390317, -2.85, -0.86, -1.61, 0.000 +19390318, -1.70, -0.34, -0.57, 0.000 +19390320, -0.55, 0.12, -0.09, 0.000 +19390321, 1.58, 0.03, 0.51, 0.000 +19390322, -2.94, -1.11, -1.26, 0.000 +19390323, 1.08, 0.36, 0.94, 0.000 +19390324, 1.37, 0.50, 0.99, 0.000 +19390325, -0.30, 0.18, -0.65, 0.000 +19390327, -0.16, 0.00, -0.59, 0.000 +19390328, -1.35, -0.69, -0.41, 0.000 +19390329, 0.57, 0.05, 0.54, 0.000 +19390330, -2.86, -0.16, -1.65, 0.000 +19390331, -4.71, -3.72, -2.17, 0.000 +19390401, 1.80, -0.56, 2.24, 0.000 +19390403, 0.08, 1.02, -0.14, 0.000 +19390404, -2.02, -0.43, -0.90, 0.000 +19390405, 0.78, 0.89, 0.00, 0.000 +19390406, -3.28, -1.31, -1.14, 0.000 +19390408, -4.13, -1.47, -2.19, 0.000 +19390410, 1.74, -0.08, 1.58, 0.000 +19390411, -0.19, 0.52, 1.01, 0.000 +19390412, 2.81, 1.86, 0.73, 0.000 +19390413, 1.11, 0.67, -0.59, 0.000 +19390414, -1.20, -0.69, -0.84, 0.000 +19390415, 3.07, 0.34, 2.16, 0.000 +19390417, -1.81, -0.45, -1.32, 0.000 +19390418, -1.15, 0.66, -0.54, 0.000 +19390419, 1.12, -0.04, -0.18, 0.000 +19390420, 1.18, 0.24, 0.85, 0.000 +19390421, 0.28, 0.67, -0.28, 0.000 +19390422, -0.05, -0.07, -0.30, 0.000 +19390424, -0.88, 0.05, -0.75, 0.000 +19390425, 0.06, -0.10, 0.87, 0.000 +19390426, 0.64, -0.35, -0.25, 0.000 +19390427, 0.90, -0.14, 0.14, 0.000 +19390428, -0.78, 0.48, -0.19, 0.000 +19390429, 0.02, 0.25, 0.19, 0.000 +19390501, -0.37, 0.54, -0.08, 0.000 +19390502, 1.12, 0.15, 0.29, 0.000 +19390503, 2.04, 0.31, 0.64, 0.000 +19390504, -0.11, 0.49, -0.25, 0.000 +19390505, -0.32, -0.12, -0.52, 0.000 +19390506, 0.25, 0.22, 0.38, 0.000 +19390508, -0.25, -0.14, -0.11, 0.000 +19390509, 1.65, -0.14, 0.81, 0.000 +19390510, -0.57, 0.94, -0.58, 0.000 +19390511, 0.03, -0.30, -0.32, 0.000 +19390512, -0.49, 0.22, 0.04, 0.000 +19390513, 0.17, -0.09, -0.48, 0.000 +19390515, 0.18, -0.10, -0.20, 0.000 +19390516, -2.16, 0.10, -0.97, 0.000 +19390517, -0.69, -0.31, -0.32, 0.000 +19390518, 0.25, 0.02, -0.42, 0.000 +19390519, 0.79, 0.01, 0.36, 0.000 +19390520, 0.66, -0.06, 0.65, 0.000 +19390522, 0.81, -0.79, 0.02, 0.000 +19390523, -0.40, 0.76, -0.63, 0.000 +19390524, 2.39, -0.25, 1.29, 0.000 +19390525, 0.29, 0.68, -0.19, 0.000 +19390526, 0.40, -0.03, 0.06, 0.000 +19390527, 0.52, 0.10, 1.14, 0.000 +19390529, 0.72, 0.06, 0.05, 0.000 +19390531, -0.24, 0.29, -0.04, 0.000 +19390601, -1.32, -0.25, -0.85, 0.000 +19390602, 0.48, 0.10, -0.26, 0.000 +19390603, 0.23, 0.35, 0.00, 0.000 +19390605, -0.04, -0.12, -0.11, 0.000 +19390606, 1.08, -0.26, 0.49, 0.000 +19390607, 0.27, 0.23, -0.78, 0.000 +19390608, -0.19, 0.05, -0.10, 0.000 +19390609, 1.15, 0.12, -0.22, 0.000 +19390610, -0.04, 0.18, -0.15, 0.000 +19390612, -0.85, -0.08, -0.50, 0.000 +19390613, -0.58, -0.68, -0.07, 0.000 +19390614, -0.49, 0.15, -0.47, 0.000 +19390615, -1.92, 0.58, -0.86, 0.000 +19390616, 0.04, 0.00, -0.22, 0.000 +19390617, 0.53, 0.10, 0.31, 0.000 +19390619, 0.72, -0.25, -0.05, 0.000 +19390620, 0.84, -0.13, 0.29, 0.000 +19390621, 0.03, 0.37, -0.23, 0.000 +19390622, -0.39, 0.10, -0.59, 0.000 +19390623, 0.23, 0.24, 0.40, 0.000 +19390624, -0.11, 0.42, 0.20, 0.000 +19390626, -1.77, -0.48, -0.82, 0.000 +19390627, 0.24, -0.48, 0.49, 0.000 +19390628, -1.62, 0.16, -0.91, 0.000 +19390629, -2.36, -0.61, -0.91, 0.000 +19390630, 0.43, -0.85, 0.18, 0.000 +19390701, 0.96, -0.02, 0.38, 0.000 +19390703, 0.37, 0.34, 0.10, 0.000 +19390705, 1.42, -0.68, 0.05, 0.000 +19390706, 0.21, 0.31, -0.14, 0.000 +19390707, -0.30, 0.04, -0.02, 0.000 +19390708, -0.01, -0.01, -0.29, 0.000 +19390710, 0.33, -0.25, -0.25, 0.000 +19390711, 0.97, -0.13, 0.71, 0.000 +19390712, 1.74, 0.70, -0.47, 0.000 +19390713, 0.69, 1.40, -0.23, 0.000 +19390714, -0.49, -0.18, -0.19, 0.000 +19390715, 0.23, -0.33, 0.21, 0.000 +19390717, 3.57, 0.68, 0.48, 0.000 +19390718, 0.73, 1.57, 0.24, 0.000 +19390719, -0.95, 0.37, -0.64, 0.000 +19390720, -1.08, -0.30, -0.09, 0.000 +19390721, 1.71, 0.40, 0.73, 0.000 +19390722, 1.07, 0.03, 0.69, 0.000 +19390724, -0.63, 0.39, -0.07, 0.000 +19390725, -0.41, 0.24, -0.14, 0.000 +19390726, 0.57, -0.87, -0.30, 0.000 +19390727, 0.15, 0.21, 0.60, 0.000 +19390728, -0.30, 0.47, -0.96, 0.000 +19390729, -0.24, -0.45, -0.02, 0.000 +19390731, -0.43, -0.03, -0.27, 0.000 +19390801, 0.06, -0.37, -0.02, 0.000 +19390802, 0.86, 0.01, 0.45, 0.000 +19390803, -0.18, 0.59, 0.03, 0.000 +19390804, -1.75, -1.05, -0.45, 0.000 +19390805, 0.45, 0.21, 0.15, 0.000 +19390807, -1.00, -0.42, -0.38, 0.000 +19390808, 0.22, 0.01, 0.07, 0.000 +19390809, -0.69, -0.37, -0.15, 0.000 +19390810, -1.68, -0.36, -0.75, 0.000 +19390811, 0.03, 0.05, 0.11, 0.000 +19390812, 0.89, 0.07, 0.62, 0.000 +19390814, 0.89, 0.24, -0.60, 0.000 +19390815, 0.93, 0.15, -0.12, 0.000 +19390816, -2.11, -1.08, -0.04, 0.000 +19390817, -0.26, -0.43, 0.10, 0.000 +19390818, -1.80, -0.77, -0.41, 0.000 +19390819, -0.37, 0.02, 0.05, 0.000 +19390821, -2.04, -1.66, -0.15, 0.000 +19390822, 1.55, 0.54, -0.58, 0.000 +19390823, -2.69, -0.92, 0.23, 0.000 +19390824, -0.51, -1.61, -0.17, 0.000 +19390825, 1.98, 0.39, -0.14, 0.000 +19390826, 2.18, 0.87, 0.59, 0.000 +19390828, -1.76, 0.32, -1.10, 0.000 +19390829, 2.14, 0.83, 0.44, 0.000 +19390830, -0.48, 0.40, 0.06, 0.000 +19390831, -1.50, -0.51, -0.43, 0.000 +19390901, 0.44, -0.02, 0.38, 0.000 +19390902, 2.14, 4.52, 0.85, 0.000 +19390905, 8.79, 8.07, 8.43, 0.000 +19390906, -0.62, -0.71, 0.79, 0.000 +19390907, 0.29, 0.38, -0.46, 0.000 +19390908, 1.97, 0.97, 1.73, 0.000 +19390909, 0.41, 1.17, 0.39, 0.000 +19390911, 2.27, 2.36, 1.85, 0.000 +19390912, 0.62, -1.02, 1.43, 0.000 +19390913, -0.78, 0.57, 0.01, 0.000 +19390914, 0.21, 0.22, -0.68, 0.000 +19390915, -0.09, -0.32, -0.06, 0.000 +19390916, -1.10, -0.79, -0.08, 0.000 +19390918, -3.11, -1.28, -2.39, 0.000 +19390919, 3.35, 1.53, 1.75, 0.000 +19390920, 0.10, 0.69, 0.65, 0.000 +19390921, 0.82, 0.53, 0.88, 0.000 +19390922, -0.46, 0.10, 0.35, 0.000 +19390923, 0.42, -0.15, 0.15, 0.000 +19390925, -0.09, 0.64, 0.38, 0.000 +19390926, 0.89, -0.17, 1.80, 0.000 +19390927, -0.03, -0.06, 0.39, 0.000 +19390928, -1.35, -0.28, -0.37, 0.000 +19390929, -0.83, -1.25, -1.06, 0.000 +19390930, 1.94, 1.27, 1.14, 0.000 +19391002, -0.88, -0.22, -0.21, 0.000 +19391003, -0.96, -0.66, -1.32, 0.000 +19391004, -0.04, -0.91, -0.25, 0.000 +19391005, 0.35, 0.81, -0.46, 0.000 +19391006, -0.09, 0.27, 0.53, 0.000 +19391007, -0.82, -0.96, -0.68, 0.000 +19391009, 0.20, -0.30, -0.68, 0.000 +19391010, 0.46, 0.80, 0.17, 0.000 +19391011, 0.50, -0.60, 0.31, 0.000 +19391013, -0.50, 0.47, -0.47, 0.000 +19391014, -0.20, -0.53, 0.16, 0.000 +19391016, 0.23, -0.12, -0.37, 0.000 +19391017, 2.61, 1.88, 1.16, 0.000 +19391018, -0.40, 0.16, -0.52, 0.000 +19391019, -0.06, -0.09, -0.71, 0.000 +19391020, -0.41, -0.51, -0.31, 0.000 +19391021, 0.67, 0.30, 0.06, 0.000 +19391023, -0.19, 0.10, -0.08, 0.000 +19391024, 0.29, 0.35, -0.82, 0.000 +19391025, 1.06, 0.91, 0.63, 0.000 +19391026, -0.66, 0.05, -0.27, 0.000 +19391027, -0.38, -0.56, 0.03, 0.000 +19391028, -0.25, 0.31, -0.43, 0.000 +19391030, -0.13, -0.26, -0.11, 0.000 +19391031, -0.88, -0.60, -0.28, 0.000 +19391101, -0.08, -0.55, -0.26, 0.000 +19391102, 0.11, 0.46, -0.46, 0.000 +19391103, 0.86, 0.64, -0.13, 0.000 +19391104, -0.16, 1.47, -0.46, 0.000 +19391106, -0.60, -0.85, -0.50, 0.000 +19391108, -0.71, -0.86, -0.43, 0.000 +19391109, -1.12, -1.08, -0.41, 0.000 +19391110, 0.28, -0.16, -0.84, 0.000 +19391113, 0.02, 0.27, -0.14, 0.000 +19391114, 0.61, -0.41, 0.41, 0.000 +19391115, -0.21, 0.05, -0.36, 0.000 +19391116, 1.10, 0.04, 0.07, 0.000 +19391117, -0.29, 0.00, 0.12, 0.000 +19391118, 0.34, -0.35, -0.44, 0.000 +19391120, 0.05, -0.03, 0.06, 0.000 +19391121, -0.63, -0.28, -0.46, 0.000 +19391122, -0.13, -0.38, -0.60, 0.000 +19391124, -1.11, -0.57, -0.39, 0.000 +19391125, 0.04, -0.53, -0.04, 0.000 +19391127, 0.08, 0.13, -0.80, 0.000 +19391128, -0.16, -0.24, -0.23, 0.000 +19391129, -1.08, -0.67, -0.56, 0.000 +19391130, -0.90, -1.47, -0.21, 0.000 +19391201, 0.73, 0.67, 0.03, 0.000 +19391202, 0.11, 0.62, 0.03, 0.000 +19391204, -0.11, -0.29, -0.68, 0.000 +19391205, 0.10, -0.21, -0.23, 0.000 +19391206, 1.41, 0.84, -0.01, 0.000 +19391207, 0.29, 0.74, -0.44, 0.000 +19391208, -0.65, -0.20, -0.10, 0.000 +19391209, -0.06, 0.17, -0.37, 0.000 +19391211, -0.83, -0.43, -0.83, 0.000 +19391212, -0.23, -0.58, -0.22, 0.000 +19391213, 1.32, 0.61, 1.17, 0.000 +19391214, -0.07, 0.14, -0.99, 0.000 +19391215, 0.09, -0.48, -0.35, 0.000 +19391216, -0.07, -0.10, 0.41, 0.000 +19391218, -0.17, 0.09, -0.43, 0.000 +19391219, -0.26, -0.26, -1.04, 0.000 +19391220, 0.31, -0.37, -0.01, 0.000 +19391221, 0.03, 0.05, -0.38, 0.000 +19391222, 0.34, -0.60, 0.15, 0.000 +19391223, 0.10, 0.26, 0.15, 0.000 +19391226, -0.39, -0.22, -0.85, 0.000 +19391227, -0.63, -0.71, -0.01, 0.000 +19391228, 0.87, 0.74, 0.85, 0.000 +19391229, 0.58, 0.18, -0.24, 0.000 +19391230, 0.22, 0.24, 0.47, 0.000 +19400102, 1.07, 0.99, 0.80, 0.000 +19400103, 1.15, 0.87, 1.07, 0.000 +19400104, -0.28, 0.18, -0.15, 0.000 +19400105, -0.52, -0.13, -0.46, 0.000 +19400106, -0.08, 0.30, 0.19, 0.000 +19400108, 0.11, 0.25, -0.06, 0.000 +19400109, -0.87, -0.40, -0.66, 0.000 +19400110, 0.15, 0.19, 0.47, 0.000 +19400111, -1.34, -0.81, -0.09, 0.000 +19400112, -1.62, -0.74, -0.32, 0.000 +19400113, -0.36, -0.20, -0.28, 0.000 +19400115, -0.39, -0.70, 0.27, 0.000 +19400116, 0.65, 0.28, -0.20, 0.000 +19400117, 0.21, 0.18, -0.03, 0.000 +19400118, -0.24, -0.44, -0.37, 0.000 +19400119, 0.21, -0.20, -0.70, 0.000 +19400120, -0.08, 0.12, 0.36, 0.000 +19400122, -0.30, -0.07, -0.13, 0.000 +19400123, 0.19, -0.12, -0.54, 0.000 +19400124, 1.17, 0.29, 0.48, 0.000 +19400125, -0.42, 0.71, -0.22, 0.000 +19400126, 0.01, 0.29, -0.78, 0.000 +19400127, -0.10, 0.15, 0.83, 0.000 +19400129, -0.09, -0.05, -0.02, 0.000 +19400130, -0.41, -0.34, 0.00, 0.000 +19400131, -0.22, -0.28, -0.19, 0.000 +19400201, -0.05, 0.13, 0.03, 0.000 +19400202, 0.15, 0.49, -0.43, 0.000 +19400203, 0.24, -0.10, 0.12, 0.000 +19400205, -0.38, -0.05, -0.10, 0.000 +19400206, 0.64, -0.18, 0.23, 0.000 +19400207, 0.44, 0.06, -0.13, 0.000 +19400208, 1.13, 0.84, 0.82, 0.000 +19400209, 0.25, 0.61, 0.09, 0.000 +19400210, -0.18, -0.62, -0.22, 0.000 +19400213, -0.10, -0.18, -0.56, 0.000 +19400214, -0.14, -0.07, -0.24, 0.000 +19400215, 0.11, 0.53, -0.18, 0.000 +19400216, 0.04, 0.31, 0.39, 0.000 +19400217, 0.29, 0.56, 0.35, 0.000 +19400219, -0.16, -0.04, 0.00, 0.000 +19400220, 0.32, -0.14, -0.24, 0.000 +19400221, -0.08, 0.75, 0.15, 0.000 +19400223, -0.48, -0.10, -0.15, 0.000 +19400224, -0.49, -0.31, -0.37, 0.000 +19400226, -0.06, -0.59, -0.06, 0.000 +19400227, -0.15, -0.12, 0.44, 0.000 +19400228, 0.13, 0.39, -0.43, 0.000 +19400229, -0.02, 0.29, 0.21, 0.000 +19400301, -0.30, -0.10, -0.08, 0.000 +19400302, 0.01, 0.13, -0.06, 0.000 +19400304, 0.23, -0.03, 0.08, 0.000 +19400305, 0.36, 0.31, -0.28, 0.000 +19400306, 0.70, 0.63, 0.22, 0.000 +19400307, 0.26, 0.24, -0.42, 0.000 +19400308, -0.19, 0.27, -0.26, 0.000 +19400309, 0.03, -0.24, 0.26, 0.000 +19400311, 0.16, 0.00, -0.16, 0.000 +19400312, 0.03, -0.51, 0.21, 0.000 +19400313, -0.14, -0.23, -0.30, 0.000 +19400314, -0.07, -0.09, -0.55, 0.000 +19400315, -1.19, -0.82, 0.01, 0.000 +19400316, -0.48, -0.93, 0.02, 0.000 +19400318, -0.06, -0.15, -0.32, 0.000 +19400319, 0.68, 0.53, -0.18, 0.000 +19400320, 0.58, 1.17, 0.02, 0.000 +19400321, -0.03, 0.33, 0.11, 0.000 +19400323, -0.01, 0.31, -0.08, 0.000 +19400325, -0.20, -0.60, -0.09, 0.000 +19400326, -0.22, -0.03, -0.08, 0.000 +19400327, 1.27, 1.11, 0.25, 0.000 +19400328, -0.15, 0.30, -0.23, 0.000 +19400329, 0.37, -0.67, 0.14, 0.000 +19400330, 0.44, 0.38, 0.52, 0.000 +19400401, -0.16, 0.13, -0.35, 0.000 +19400402, 0.25, -0.06, -0.03, 0.000 +19400403, 1.36, 0.83, 1.36, 0.000 +19400404, 0.71, 0.22, 0.83, 0.000 +19400405, -0.28, -0.08, 0.04, 0.000 +19400406, 0.60, 0.19, 0.32, 0.000 +19400408, 0.11, 0.36, 0.15, 0.000 +19400409, -0.75, 0.70, -0.70, 0.000 +19400410, -0.60, -0.30, 0.16, 0.000 +19400411, 0.24, 0.23, 0.23, 0.000 +19400412, -0.62, -0.01, -0.64, 0.000 +19400413, 0.18, 0.25, -0.59, 0.000 +19400415, 0.09, 1.03, 0.02, 0.000 +19400416, -1.20, -0.78, -0.34, 0.000 +19400417, 0.26, 0.61, 0.01, 0.000 +19400418, -0.74, -0.29, 0.23, 0.000 +19400419, -0.10, -0.14, -0.37, 0.000 +19400420, 0.63, 1.02, 0.34, 0.000 +19400422, 0.24, 0.25, 0.03, 0.000 +19400423, 0.52, 0.39, -0.03, 0.000 +19400424, -0.33, -0.11, -0.03, 0.000 +19400425, 0.08, 0.14, 0.10, 0.000 +19400426, -0.69, -0.81, -0.25, 0.000 +19400427, 0.14, 0.41, -0.30, 0.000 +19400429, 0.23, 0.19, 0.10, 0.000 +19400430, 0.10, -0.42, -0.34, 0.000 +19400501, -1.05, -0.56, -0.51, -0.001 +19400502, 0.47, 0.44, 0.16, -0.001 +19400503, 0.10, 0.05, -0.38, -0.001 +19400504, -0.18, -0.33, 0.30, -0.001 +19400506, -0.11, -0.17, -0.16, -0.001 +19400507, 0.14, -0.18, -0.08, -0.001 +19400508, 0.09, -0.05, 0.26, -0.001 +19400509, 0.23, 0.04, 0.44, -0.001 +19400510, -2.55, -1.17, -0.54, -0.001 +19400511, 0.11, 0.14, 0.18, -0.001 +19400513, -5.58, -3.97, -1.37, -0.001 +19400514, -7.21, -3.36, -0.28, -0.001 +19400515, 0.46, -1.87, -3.21, -0.001 +19400516, 1.49, 3.76, 0.47, -0.001 +19400517, -4.40, -1.62, 0.03, -0.001 +19400518, -1.94, -0.40, -2.19, -0.001 +19400520, 0.48, 1.79, 1.22, -0.001 +19400521, -6.99, -5.14, -1.03, -0.001 +19400522, 0.17, 2.05, 0.00, -0.001 +19400523, 0.32, -0.34, 1.30, -0.001 +19400524, -0.20, 0.87, 0.70, -0.001 +19400525, 1.17, 1.45, 0.21, -0.001 +19400527, 1.72, 1.35, 0.45, -0.001 +19400528, -2.40, -2.08, -0.58, -0.001 +19400529, 1.35, 1.60, 1.07, -0.001 +19400531, 0.42, 0.50, -1.12, -0.001 +19400601, -0.29, 0.03, 0.25, 0.000 +19400603, -1.06, -0.06, 0.42, 0.000 +19400604, 0.96, 0.11, -0.04, 0.000 +19400605, -1.67, -0.91, -0.41, 0.000 +19400606, 1.10, 0.16, -0.45, 0.000 +19400607, 1.06, 0.40, 1.06, 0.000 +19400608, -0.17, 0.02, -0.35, 0.000 +19400610, -2.94, -0.97, 1.09, 0.000 +19400611, 3.80, 1.17, -1.30, 0.000 +19400612, 4.81, 1.33, 1.66, 0.000 +19400613, -1.63, -0.34, -1.12, 0.000 +19400614, 1.87, 0.54, 0.27, 0.000 +19400615, 0.84, 0.06, 0.70, 0.000 +19400617, -0.66, -1.77, -0.98, 0.000 +19400618, 0.58, 1.00, 1.34, 0.000 +19400619, 0.35, -0.79, -0.33, 0.000 +19400620, -0.70, 0.10, 0.47, 0.000 +19400621, 0.02, -0.03, 0.24, 0.000 +19400622, 0.44, -0.31, 0.52, 0.000 +19400624, 0.82, -0.70, 0.16, 0.000 +19400625, -2.36, -0.39, 0.44, 0.000 +19400626, -0.66, -1.09, -0.10, 0.000 +19400627, 1.06, 0.24, 0.75, 0.000 +19400628, 1.29, 0.63, 0.46, 0.000 +19400629, -0.07, -0.06, -0.28, 0.000 +19400701, -0.59, 0.20, 0.09, 0.000 +19400702, -0.15, 0.17, -0.24, 0.000 +19400703, 0.20, 0.06, -0.03, 0.000 +19400705, 0.48, 0.27, -0.12, 0.000 +19400706, 0.22, -0.36, 0.83, 0.000 +19400708, -0.20, -0.12, -0.47, 0.000 +19400709, -0.17, -0.24, 0.52, 0.000 +19400710, 0.05, -0.01, 0.03, 0.000 +19400711, 0.07, 0.22, -0.01, 0.000 +19400712, -0.08, 0.06, -0.47, 0.000 +19400713, 0.06, 0.06, 0.19, 0.000 +19400715, 0.33, 0.13, -0.25, 0.000 +19400716, 0.99, 0.35, 0.10, 0.000 +19400717, -0.22, 0.32, -0.65, 0.000 +19400718, 0.13, -0.31, -0.22, 0.000 +19400719, -0.64, 0.43, 0.01, 0.000 +19400720, -0.21, 0.07, -0.14, 0.000 +19400722, -0.05, -0.17, 0.30, 0.000 +19400723, 0.07, -0.42, 0.04, 0.000 +19400724, -0.44, 0.07, 0.01, 0.000 +19400725, 0.06, -0.21, -0.14, 0.000 +19400726, 0.37, -0.08, 0.14, 0.000 +19400727, 0.19, 0.24, -0.15, 0.000 +19400729, 0.53, -0.59, 0.18, 0.000 +19400730, 2.20, 0.18, 0.39, 0.000 +19400731, -0.05, 0.66, -0.63, 0.000 +19400801, -0.10, 0.16, -0.51, 0.000 +19400802, 0.02, -0.06, -0.10, 0.000 +19400803, 0.08, 0.08, 0.23, 0.000 +19400805, -0.12, -0.21, -0.44, 0.000 +19400806, -0.75, 0.00, 0.25, 0.000 +19400807, -0.16, -0.26, 0.03, 0.000 +19400808, 0.13, -0.02, -0.46, 0.000 +19400809, 0.64, -0.25, 0.26, 0.000 +19400810, 0.58, -0.13, 0.00, 0.000 +19400812, 0.20, -0.67, 0.02, 0.000 +19400813, -3.16, 0.40, -0.70, 0.000 +19400814, -0.37, -0.01, 0.12, 0.000 +19400815, 0.60, 0.23, -0.17, 0.000 +19400816, -1.41, -0.03, 0.23, 0.000 +19400817, 0.71, -0.15, 0.15, 0.000 +19400819, 0.02, -0.01, -0.17, 0.000 +19400820, 0.97, -0.67, 0.29, 0.000 +19400821, 1.37, 0.15, -0.27, 0.000 +19400822, 0.83, 0.41, 0.04, 0.000 +19400823, -1.07, 0.07, -0.46, 0.000 +19400824, 0.19, -0.11, 0.17, 0.000 +19400826, 0.06, -0.12, -0.13, 0.000 +19400827, -0.12, 0.00, 0.27, 0.000 +19400828, 1.21, 0.10, 0.76, 0.000 +19400829, -0.18, -0.06, -0.19, 0.000 +19400830, 1.60, 0.33, 0.79, 0.000 +19400831, 0.56, 0.68, 0.61, 0.000 +19400903, 0.32, 0.55, 0.20, 0.000 +19400904, 1.65, -0.31, 0.19, 0.000 +19400905, 1.70, 1.14, 0.95, 0.000 +19400906, -0.41, 0.28, -0.67, 0.000 +19400907, -0.16, -0.01, 0.18, 0.000 +19400909, -2.36, -0.97, -0.75, 0.000 +19400910, -0.10, 0.20, -0.49, 0.000 +19400911, -0.53, 0.40, -0.18, 0.000 +19400912, -1.12, -0.12, -0.86, 0.000 +19400913, 0.09, -0.20, 0.34, 0.000 +19400914, 0.56, -0.05, 0.35, 0.000 +19400916, 0.65, 0.06, 0.13, 0.000 +19400917, 0.77, -0.28, 0.06, 0.000 +19400918, 0.67, 0.23, -0.04, 0.000 +19400919, -0.07, 0.20, 0.05, 0.000 +19400920, 0.00, -0.01, -0.39, 0.000 +19400921, 0.61, 0.60, 0.62, 0.000 +19400923, 1.95, 0.80, 0.86, 0.000 +19400924, -0.25, 0.24, -0.59, 0.000 +19400925, -0.15, 0.01, -0.12, 0.000 +19400926, -0.54, -0.17, -0.59, 0.000 +19400927, -1.57, -0.10, -1.53, 0.000 +19400928, 0.63, 0.33, 0.54, 0.000 +19400930, 0.15, 0.34, 0.79, 0.000 +19401001, 1.23, 0.26, 0.47, 0.000 +19401002, 0.42, 0.30, 1.24, 0.000 +19401003, 0.11, 0.40, -0.38, 0.000 +19401004, -0.63, -0.42, -0.24, 0.000 +19401005, 0.09, -0.01, 0.16, 0.000 +19401007, -0.45, 0.21, 0.06, 0.000 +19401008, -1.39, -0.37, -0.64, 0.000 +19401009, -0.54, -0.23, 0.05, 0.000 +19401010, -0.05, 0.35, 0.24, 0.000 +19401011, 0.52, -0.15, -0.01, 0.000 +19401014, -0.28, 0.76, 0.06, 0.000 +19401015, 0.45, -1.30, -0.06, 0.000 +19401016, 0.53, 0.76, 0.01, 0.000 +19401017, 0.50, -0.23, 0.42, 0.000 +19401018, 0.04, 0.10, 0.79, 0.000 +19401019, -0.11, 0.23, -0.15, 0.000 +19401021, -0.53, 0.28, 0.16, 0.000 +19401022, 0.45, -0.34, 0.42, 0.000 +19401023, 0.61, 0.29, 0.35, 0.000 +19401024, -0.54, -0.08, 0.02, 0.000 +19401025, -0.04, -0.17, 0.48, 0.000 +19401026, 0.81, -0.12, 0.05, 0.000 +19401028, -0.28, -0.23, -0.18, 0.000 +19401029, 0.25, 0.06, 0.09, 0.000 +19401030, 0.64, -0.41, 0.34, 0.000 +19401031, 1.24, 0.40, 0.77, 0.000 +19401101, 0.10, 0.39, -0.13, 0.000 +19401102, 0.34, -0.58, 0.28, 0.000 +19401104, 0.28, -0.16, -0.16, 0.000 +19401106, -2.85, 0.85, -1.84, 0.000 +19401107, 4.78, 1.40, 3.09, 0.000 +19401108, -0.58, 0.46, 0.03, 0.000 +19401109, 1.37, 0.71, 0.61, 0.000 +19401112, -0.45, -0.20, 0.21, 0.000 +19401113, -0.41, -0.05, 0.20, 0.000 +19401114, 0.48, -0.08, 0.79, 0.000 +19401115, -1.00, -0.03, -0.50, 0.000 +19401116, -0.74, -0.34, -0.32, 0.000 +19401118, -0.03, 0.19, -0.11, 0.000 +19401119, -0.08, -0.19, -0.13, 0.000 +19401120, -1.78, -0.16, -1.03, 0.000 +19401122, 0.17, 0.18, 0.82, 0.000 +19401123, -0.02, -0.04, 0.24, 0.000 +19401125, -0.01, -0.07, 0.03, 0.000 +19401126, -0.28, 0.12, -0.48, 0.000 +19401127, -1.62, -0.41, -1.48, 0.000 +19401128, 0.23, 0.24, 0.71, 0.000 +19401129, 0.12, -0.44, 0.12, 0.000 +19401130, 0.56, 0.24, -0.45, 0.000 +19401202, -0.04, 0.27, -0.22, 0.000 +19401203, -0.28, -0.19, -0.53, 0.000 +19401204, 0.02, -0.12, -0.62, 0.000 +19401205, -0.29, -0.36, 0.10, 0.000 +19401206, 0.24, -0.20, -0.03, 0.000 +19401207, 0.73, 0.32, 0.03, 0.000 +19401209, 0.13, 0.04, -0.31, 0.000 +19401210, -0.06, -0.22, -0.20, 0.000 +19401211, 0.29, 0.21, 0.36, 0.000 +19401212, 0.26, -0.23, 0.16, 0.000 +19401213, 0.21, 0.06, 0.92, 0.000 +19401214, 0.01, -0.30, -0.27, 0.000 +19401216, -0.79, -0.27, -0.58, 0.000 +19401217, -0.42, -0.36, -0.23, 0.000 +19401218, -0.70, -0.14, -0.41, 0.000 +19401219, -0.36, -0.42, 0.06, 0.000 +19401220, 0.06, 0.08, -0.18, 0.000 +19401221, 0.10, 0.05, 0.29, 0.000 +19401223, -0.38, 0.45, -0.29, 0.000 +19401224, 0.42, -0.71, 0.41, 0.000 +19401226, -0.10, 0.26, -0.40, 0.000 +19401227, 0.37, -0.65, 0.37, 0.000 +19401228, 0.36, -0.02, -0.04, 0.000 +19401230, 0.62, 0.07, 0.23, 0.000 +19401231, 0.30, 0.19, 0.47, 0.000 +19410102, -0.34, 0.89, 0.35, 0.000 +19410103, 1.25, -0.47, 0.88, 0.000 +19410104, 0.24, 0.86, 0.30, 0.000 +19410106, 0.31, 0.75, 0.02, 0.000 +19410107, -0.14, -0.16, -0.30, 0.000 +19410108, 0.28, 0.00, 1.21, 0.000 +19410109, 0.49, -0.24, 1.78, 0.000 +19410110, 0.21, 0.61, -0.09, 0.000 +19410111, -0.20, 0.10, -0.27, 0.000 +19410113, -0.12, 0.08, 0.09, 0.000 +19410114, -0.46, -0.38, 0.00, 0.000 +19410115, -0.57, 0.45, -0.25, 0.000 +19410116, -1.26, -0.07, -0.65, 0.000 +19410117, -0.16, -0.68, 0.52, 0.000 +19410118, 0.02, 0.48, 0.04, 0.000 +19410120, -0.27, 0.50, -0.41, 0.000 +19410121, -0.79, -0.51, 0.56, 0.000 +19410122, 0.47, -0.18, 0.86, 0.000 +19410123, -0.01, 0.29, 0.07, 0.000 +19410124, 0.19, -0.15, 0.00, 0.000 +19410125, 0.25, -0.15, 0.12, 0.000 +19410127, 0.02, 0.17, 0.24, 0.000 +19410128, -0.45, -0.01, -0.20, 0.000 +19410129, -1.73, -0.04, -0.76, 0.000 +19410130, -1.53, -0.95, -0.89, 0.000 +19410131, 0.06, -0.13, 0.81, 0.000 +19410201, -0.57, -0.19, -0.68, 0.000 +19410203, -0.55, -0.26, -0.51, 0.000 +19410204, -0.10, -0.13, 1.07, 0.000 +19410205, 1.46, 0.12, 0.95, 0.000 +19410206, 0.38, 0.23, -0.12, 0.000 +19410207, -0.16, -0.11, -0.16, 0.000 +19410208, 0.20, 0.16, -0.31, 0.000 +19410210, -0.21, 0.22, 0.39, 0.000 +19410211, -1.11, 0.18, -0.97, 0.000 +19410213, -1.38, -1.29, 0.08, 0.000 +19410214, -2.71, -0.65, -0.58, 0.000 +19410215, 0.45, -0.28, 0.26, 0.000 +19410217, 0.52, 0.43, 0.33, 0.000 +19410218, -0.30, -0.15, -0.11, 0.000 +19410219, -1.00, -0.66, -0.40, 0.000 +19410220, 1.63, 0.53, 0.71, 0.000 +19410221, 0.50, -0.03, 0.24, 0.000 +19410224, 0.85, -0.34, 0.06, 0.000 +19410225, 0.63, 0.08, -0.52, 0.000 +19410226, 0.06, 0.61, 0.28, 0.000 +19410227, -0.34, -0.29, 0.35, 0.000 +19410228, 0.38, 0.29, 0.64, 0.000 +19410301, -0.22, 0.53, -0.32, 0.000 +19410303, -0.83, -0.27, -0.55, 0.000 +19410304, 0.39, -0.38, 0.67, 0.000 +19410305, -0.34, 0.76, 0.05, 0.000 +19410306, 1.34, -0.55, 0.43, 0.000 +19410307, -0.23, 0.64, -0.41, 0.000 +19410308, 0.04, -0.21, 0.47, 0.000 +19410310, 1.65, 0.60, 0.24, 0.000 +19410311, -0.42, 0.45, -0.34, 0.000 +19410312, -0.10, -0.20, -0.09, 0.000 +19410313, -0.38, 0.16, -0.17, 0.000 +19410314, 0.10, -0.13, 0.18, 0.000 +19410315, 0.59, 0.25, 0.63, 0.000 +19410317, 0.01, -0.04, 0.14, 0.000 +19410318, 0.18, -0.07, 0.23, 0.000 +19410319, -0.21, 0.25, 0.01, 0.000 +19410320, -0.01, -0.43, 0.38, 0.000 +19410321, -0.76, -0.01, -0.63, 0.000 +19410322, -0.45, -0.12, -0.05, 0.000 +19410324, 0.32, -0.59, 0.66, 0.000 +19410325, 0.22, -0.33, 0.32, 0.000 +19410326, -0.18, 0.10, 0.28, 0.000 +19410327, 0.61, -0.31, 0.35, 0.000 +19410328, -0.59, 0.46, -0.66, 0.000 +19410329, -0.08, -0.23, 0.60, 0.000 +19410331, 0.24, -0.25, 0.60, 0.000 +19410401, 0.18, 0.02, 0.37, 0.000 +19410402, 0.22, -0.21, -0.02, 0.000 +19410403, 1.37, -0.07, 2.03, 0.000 +19410404, -0.03, 0.43, -0.02, 0.000 +19410405, -0.31, 0.03, -0.34, 0.000 +19410407, -0.47, -0.36, -0.19, 0.000 +19410408, -1.96, -0.43, -1.78, 0.000 +19410409, -1.10, -0.25, -0.13, 0.000 +19410410, -0.16, 0.12, -0.12, 0.000 +19410412, -0.94, -0.15, 0.24, 0.000 +19410414, 0.21, -0.21, 0.50, 0.000 +19410415, -0.33, 0.25, -0.47, 0.000 +19410416, 0.05, -0.60, 0.45, 0.000 +19410417, -0.17, 0.28, 0.10, 0.000 +19410418, -1.37, -0.13, -0.61, 0.000 +19410419, -0.28, -0.46, 0.38, 0.000 +19410421, -0.24, -0.61, 0.47, 0.000 +19410422, -0.25, 0.16, 0.06, 0.000 +19410423, 0.61, -0.57, 1.04, 0.000 +19410424, 0.72, 0.45, 0.84, 0.000 +19410425, -0.62, 0.04, -0.15, 0.000 +19410426, -0.02, 0.27, 0.36, 0.000 +19410428, 0.15, -0.12, 0.22, 0.000 +19410429, 0.31, 0.02, 0.87, 0.000 +19410430, -1.09, 0.34, -0.39, 0.000 +19410501, -0.10, -0.12, -0.07, 0.000 +19410502, 0.43, -0.07, 0.87, 0.000 +19410503, 0.22, -0.18, 0.76, 0.000 +19410505, -0.05, -0.05, 0.33, 0.000 +19410506, 1.49, 0.19, 1.35, 0.000 +19410507, -0.34, 0.35, -0.89, 0.000 +19410508, -0.05, -0.56, 0.25, 0.000 +19410509, 0.11, 0.25, -0.06, 0.000 +19410510, 0.98, -0.26, 1.11, 0.000 +19410512, -0.26, -0.09, -0.42, 0.000 +19410513, -0.06, -0.19, -0.54, 0.000 +19410514, -0.24, -0.14, -0.67, 0.000 +19410515, -1.24, 0.75, -1.04, 0.000 +19410516, 0.21, -1.02, 0.25, 0.000 +19410517, 0.28, 0.06, 0.44, 0.000 +19410519, 0.05, -0.21, -0.25, 0.000 +19410520, 1.20, -0.85, 0.42, 0.000 +19410521, 0.22, 0.54, -0.06, 0.000 +19410522, -0.96, 0.13, -0.33, 0.000 +19410523, 0.02, -0.21, 0.23, 0.000 +19410524, 0.09, 0.00, 0.01, 0.000 +19410526, -0.94, 0.39, -0.33, 0.000 +19410527, 0.41, -0.18, -0.23, 0.000 +19410528, 0.11, 0.02, 0.08, 0.000 +19410529, 0.09, 0.16, -0.01, 0.000 +19410531, -0.29, 0.62, -0.52, 0.000 +19410602, 0.33, -0.27, -0.14, 0.000 +19410603, 0.95, -0.64, 0.38, 0.000 +19410604, 0.35, 0.04, 0.15, 0.000 +19410605, 0.49, 0.42, -0.20, 0.000 +19410606, -0.16, -0.18, -0.11, 0.000 +19410607, 0.61, 0.13, -0.12, 0.000 +19410609, 0.86, 0.08, -0.29, 0.000 +19410610, 1.43, 0.50, 0.16, 0.000 +19410611, 0.09, 0.45, -0.23, 0.000 +19410612, 0.53, -0.21, 0.31, 0.000 +19410613, -0.26, 0.21, -0.40, 0.000 +19410614, -0.16, 0.40, 0.20, 0.000 +19410616, -0.19, 0.17, -0.32, 0.000 +19410617, 0.64, 0.08, -0.14, 0.000 +19410618, 0.29, 0.16, 0.07, 0.000 +19410619, -0.19, -0.17, 0.14, 0.000 +19410620, -0.87, 0.36, -0.18, 0.000 +19410621, 0.18, -0.11, 0.22, 0.000 +19410623, 1.29, 0.18, 0.33, 0.000 +19410624, -0.46, -0.23, 0.40, 0.000 +19410625, 0.19, -0.26, 0.28, 0.000 +19410626, 0.48, 0.04, 0.30, 0.000 +19410627, -0.37, -0.06, -0.04, 0.000 +19410628, -0.06, 0.05, -0.21, 0.000 +19410630, -0.28, 0.12, 0.03, 0.000 +19410701, -0.23, -0.07, -0.23, 0.001 +19410702, 0.70, -0.63, 0.22, 0.001 +19410703, 0.44, -0.22, 0.84, 0.001 +19410705, 0.19, 0.42, 0.27, 0.001 +19410707, 1.40, 0.17, 0.37, 0.001 +19410708, 1.52, 1.06, 0.41, 0.001 +19410709, 0.03, 0.90, -0.66, 0.001 +19410710, 0.06, 0.16, 0.32, 0.001 +19410711, 0.13, 0.38, 0.38, 0.001 +19410712, 0.04, 0.12, -0.08, 0.001 +19410714, 0.17, -0.18, 1.00, 0.001 +19410715, 0.20, 0.25, -0.02, 0.001 +19410716, -0.41, -0.24, -0.35, 0.001 +19410717, -0.61, 0.22, -0.41, 0.001 +19410718, 0.25, -0.23, -0.26, 0.001 +19410719, 0.34, 0.20, 0.05, 0.001 +19410721, 1.34, 0.08, 1.96, 0.001 +19410722, -0.01, 0.09, 0.37, 0.001 +19410723, -0.13, 0.23, 0.22, 0.001 +19410724, -0.27, 0.53, 0.13, 0.001 +19410725, -0.16, 0.41, -0.04, 0.001 +19410726, 0.48, 0.34, 0.93, 0.001 +19410728, 0.83, 0.95, 1.01, 0.001 +19410729, -0.32, -0.15, -0.42, 0.001 +19410730, -0.19, 0.02, 0.61, 0.001 +19410731, -0.07, 0.38, -0.01, 0.001 +19410801, -0.27, -0.10, 0.53, 0.000 +19410802, -0.05, 0.53, -0.84, 0.000 +19410804, 0.15, -0.37, 0.22, 0.000 +19410805, -0.10, -0.46, -0.24, 0.000 +19410806, -0.01, 0.19, -0.35, 0.000 +19410807, 0.02, -0.11, -0.05, 0.000 +19410808, -0.65, 0.10, -0.34, 0.000 +19410809, -0.70, -0.27, -0.51, 0.000 +19410811, -0.38, -0.87, -0.54, 0.000 +19410812, -0.13, 0.03, 0.38, 0.000 +19410813, -0.09, 0.33, -0.27, 0.000 +19410814, 0.20, -0.17, 1.08, 0.000 +19410815, -0.76, 0.10, -0.47, 0.000 +19410816, 0.21, -0.36, 0.34, 0.000 +19410818, 0.40, 0.34, 0.08, 0.000 +19410819, 0.04, 0.05, -0.09, 0.000 +19410820, 0.45, -0.12, 0.62, 0.000 +19410821, 0.01, 0.31, 0.11, 0.000 +19410822, -0.04, -0.04, -0.47, 0.000 +19410823, 0.06, 0.02, 0.00, 0.000 +19410825, 0.08, -0.19, -0.17, 0.000 +19410826, 0.57, 0.29, -0.15, 0.000 +19410827, 0.19, -0.13, 0.23, 0.000 +19410828, 0.33, 0.19, -0.41, 0.000 +19410829, 0.07, 0.15, 0.03, 0.000 +19410830, 0.24, 0.17, 0.20, 0.000 +19410902, 0.30, -0.22, -0.27, 0.000 +19410903, -0.34, -0.04, -0.03, 0.000 +19410904, -0.12, 0.04, -0.40, 0.000 +19410905, -0.12, 0.35, 0.15, 0.000 +19410906, 0.10, 0.13, -0.12, 0.000 +19410908, 0.18, 0.17, 0.17, 0.000 +19410909, -0.28, -0.28, -0.33, 0.000 +19410910, -0.58, 0.22, -0.17, 0.000 +19410911, 0.60, -0.26, 1.24, 0.000 +19410912, 0.12, 0.21, 0.01, 0.000 +19410913, 0.11, 0.04, -0.02, 0.000 +19410915, 0.05, 0.04, 0.01, 0.000 +19410916, 0.22, -0.03, 0.06, 0.000 +19410917, 1.36, -0.02, 0.05, 0.000 +19410918, -0.39, 0.45, 0.19, 0.000 +19410919, -0.82, -0.15, -0.99, 0.000 +19410920, -0.35, 0.04, -0.52, 0.000 +19410922, 0.22, -0.52, 0.42, 0.000 +19410923, 0.32, -0.35, 0.13, 0.000 +19410924, -0.48, 0.26, -0.57, 0.000 +19410925, -1.49, -1.43, -0.49, 0.000 +19410926, -0.38, -0.09, 0.33, 0.000 +19410927, 0.35, 0.16, 0.58, 0.000 +19410929, 0.08, 0.21, 0.20, 0.000 +19410930, 0.50, 0.09, 0.14, 0.000 +19411001, -0.01, -0.09, -0.14, 0.000 +19411002, -0.26, 0.34, 0.30, 0.000 +19411003, -0.16, -0.30, 0.38, 0.000 +19411004, 0.15, -0.14, 0.26, 0.000 +19411006, -0.17, 0.04, -0.17, 0.000 +19411007, -1.10, -0.37, -0.46, 0.000 +19411008, -0.05, -0.15, -0.04, 0.000 +19411009, -1.26, -0.53, -0.84, 0.000 +19411010, -0.01, -0.03, 0.41, 0.000 +19411011, 0.08, 0.14, 0.79, 0.000 +19411014, -0.46, -0.30, -0.56, 0.000 +19411015, -0.52, 0.02, 0.02, 0.000 +19411016, -1.67, -0.72, -0.77, 0.000 +19411017, 0.33, -0.51, 0.26, 0.000 +19411018, 0.95, 0.49, 0.81, 0.000 +19411020, 0.06, -0.07, 0.23, 0.000 +19411021, 0.76, -0.03, 0.25, 0.000 +19411022, -0.44, 0.28, -0.38, 0.000 +19411023, 0.33, -0.36, 0.97, 0.000 +19411024, 0.53, 0.33, 0.09, 0.000 +19411025, -0.29, 0.43, -0.37, 0.000 +19411027, -0.88, -0.26, -0.19, 0.000 +19411028, 0.03, 0.09, 0.52, 0.000 +19411029, -0.24, -0.24, 0.13, 0.000 +19411030, -0.10, 0.13, 0.61, 0.000 +19411031, -0.95, -0.27, -0.31, 0.000 +19411101, 0.31, 0.09, 0.37, 0.000 +19411103, 0.47, -0.59, 0.26, 0.000 +19411105, 0.70, -0.36, 0.62, 0.000 +19411106, -0.76, -0.08, -0.36, 0.000 +19411107, -0.19, 0.52, -0.45, 0.000 +19411108, 0.08, -0.17, 0.03, 0.000 +19411110, -0.59, 0.07, -0.83, 0.000 +19411112, -1.67, -0.31, -0.66, 0.000 +19411113, 0.08, -0.73, 0.44, 0.000 +19411114, 0.78, -0.24, 0.07, 0.000 +19411115, 0.14, 0.29, 0.42, 0.000 +19411117, -0.21, -0.23, -0.20, 0.000 +19411118, -0.13, -0.11, 0.03, 0.000 +19411119, 0.46, 0.10, 0.21, 0.000 +19411121, 0.56, 0.22, 0.81, 0.000 +19411122, 0.16, 0.05, -0.27, 0.000 +19411124, 0.19, 0.03, 0.24, 0.000 +19411125, -0.52, -0.27, -0.42, 0.000 +19411126, -0.77, 0.17, -0.72, 0.000 +19411127, -0.23, 0.16, -0.17, 0.000 +19411128, -0.58, -0.12, -0.26, 0.000 +19411129, -0.23, 0.38, 0.29, 0.000 +19411201, -0.35, -0.14, 0.13, 0.000 +19411202, 1.53, -0.79, 0.27, 0.000 +19411203, 0.81, -0.55, -0.29, 0.000 +19411204, 0.29, 0.32, 0.12, 0.000 +19411205, -0.37, -0.13, -0.37, 0.000 +19411206, 0.58, -0.06, -0.29, 0.000 +19411208, -4.15, -1.80, -2.84, 0.000 +19411209, -3.49, -2.30, -3.78, 0.000 +19411210, -0.70, -0.11, -0.09, 0.000 +19411211, 1.95, 1.53, 1.63, 0.000 +19411212, -0.36, 1.13, -0.68, 0.000 +19411213, 0.30, 0.31, -0.23, 0.000 +19411215, 0.51, -0.35, 0.52, 0.000 +19411216, -0.07, -0.13, 0.86, 0.000 +19411217, -1.81, -0.38, -0.52, 0.000 +19411218, -0.83, -0.60, 0.73, 0.000 +19411219, -0.02, 0.42, 0.77, 0.000 +19411220, -0.19, 0.12, -0.15, 0.000 +19411222, -0.95, 0.38, -0.52, 0.000 +19411223, -0.41, -0.09, 0.10, 0.000 +19411224, 0.29, 0.22, -0.15, 0.000 +19411226, -0.44, -0.24, -0.29, 0.000 +19411227, 0.44, 0.16, 0.31, 0.000 +19411229, -0.48, -0.89, -0.88, 0.000 +19411230, 3.65, -0.27, 0.81, 0.000 +19411231, -0.47, 1.45, -1.20, 0.000 +19420102, 1.87, 1.89, 2.52, 0.001 +19420103, 1.19, 1.57, 1.10, 0.001 +19420105, 1.00, 0.31, -0.54, 0.001 +19420106, -0.40, 0.37, -1.01, 0.001 +19420107, -0.66, 0.35, 0.94, 0.001 +19420108, -1.36, 1.05, 0.54, 0.001 +19420109, -0.24, 0.95, 1.13, 0.001 +19420110, -0.47, 0.14, -0.01, 0.001 +19420112, 0.42, 0.08, 0.62, 0.001 +19420113, 1.71, -0.60, 0.46, 0.001 +19420114, 0.24, 0.31, 0.00, 0.001 +19420115, -0.13, 0.06, 0.11, 0.001 +19420116, -0.90, 0.44, -0.01, 0.001 +19420117, -0.32, -0.07, 0.58, 0.001 +19420119, 0.27, 0.00, 0.96, 0.001 +19420120, -0.11, 0.14, 0.91, 0.001 +19420121, -1.30, -0.37, -0.58, 0.001 +19420122, 0.01, 0.04, 0.02, 0.001 +19420123, 0.16, 0.02, 0.66, 0.001 +19420124, 0.34, 0.07, 0.60, 0.001 +19420126, 0.98, 0.04, 0.93, 0.001 +19420127, 0.12, 0.42, -0.21, 0.001 +19420128, -0.46, -0.03, -0.05, 0.001 +19420129, -0.11, 0.02, 0.22, 0.001 +19420130, -0.55, 0.22, 0.05, 0.001 +19420131, -0.45, -0.22, -0.31, 0.001 +19420202, 0.33, -0.16, -0.10, 0.001 +19420203, 0.31, -0.27, 0.05, 0.001 +19420204, 0.63, 0.20, 0.61, 0.001 +19420205, -0.17, 0.40, 0.39, 0.001 +19420206, -0.83, 0.44, -0.28, 0.001 +19420207, 0.02, -0.10, 0.11, 0.001 +19420209, -1.11, 0.02, -0.85, 0.001 +19420210, -1.42, -0.68, -1.33, 0.001 +19420211, -0.21, -0.07, 0.30, 0.001 +19420213, 0.09, 0.44, -0.07, 0.001 +19420214, 0.52, -0.04, 0.51, 0.001 +19420216, -0.23, 0.04, 0.20, 0.001 +19420217, -1.64, 0.54, -0.65, 0.001 +19420218, -0.02, 0.07, 0.07, 0.001 +19420219, 0.28, 0.17, 0.27, 0.001 +19420220, -0.27, 0.46, 0.17, 0.001 +19420221, 0.23, 0.08, -0.22, 0.001 +19420224, 0.26, 0.11, 0.14, 0.001 +19420225, -0.55, 0.33, 0.02, 0.001 +19420226, 0.44, -0.27, 0.07, 0.001 +19420227, 0.78, -0.18, -0.18, 0.001 +19420228, 0.15, 0.23, -0.29, 0.001 +19420302, -0.97, 0.33, -0.43, 0.000 +19420303, 1.17, -0.81, 0.02, 0.000 +19420304, -0.89, 0.48, -0.09, 0.000 +19420305, -1.50, 0.36, -0.59, 0.000 +19420306, -2.50, 0.45, -0.46, 0.000 +19420307, 0.53, -0.25, 0.79, 0.000 +19420309, -0.12, 0.18, -0.09, 0.000 +19420310, -0.75, 0.38, -0.11, 0.000 +19420311, -1.65, 0.70, -0.54, 0.000 +19420312, -0.01, -0.31, 0.68, 0.000 +19420313, 0.47, 0.15, -0.40, 0.000 +19420314, 0.02, 0.42, -0.20, 0.000 +19420316, 0.87, -0.87, 0.13, 0.000 +19420317, 1.60, -0.71, 1.17, 0.000 +19420318, -0.63, 0.56, -0.29, 0.000 +19420319, -0.18, -0.04, 0.45, 0.000 +19420320, -0.77, 0.48, -0.28, 0.000 +19420321, 0.09, -0.09, -0.04, 0.000 +19420323, 0.18, -0.07, 0.34, 0.000 +19420324, 0.61, -0.16, -0.20, 0.000 +19420325, -0.58, 0.07, -0.29, 0.000 +19420326, -0.40, -0.08, 0.29, 0.000 +19420327, -0.98, 0.24, 0.01, 0.000 +19420328, -0.01, 0.04, 0.13, 0.000 +19420330, 0.12, 0.07, -0.03, 0.000 +19420331, -0.43, 0.34, -0.55, 0.000 +19420401, 0.40, -0.46, 0.25, 0.000 +19420402, 0.78, -0.03, 0.31, 0.000 +19420404, 0.13, 0.32, -0.34, 0.000 +19420406, 1.16, -0.82, 0.36, 0.000 +19420407, -0.25, 0.21, 0.30, 0.000 +19420408, -0.58, 0.02, -0.21, 0.000 +19420409, -1.36, 0.09, -0.58, 0.000 +19420410, -0.03, -0.08, -0.10, 0.000 +19420411, -0.28, 0.23, 0.23, 0.000 +19420413, -0.04, -0.20, 0.30, 0.000 +19420414, -1.64, -0.40, -1.78, 0.000 +19420415, 0.17, -0.39, 0.29, 0.000 +19420416, -0.11, 0.33, -0.01, 0.000 +19420417, -1.55, 0.34, 0.43, 0.000 +19420418, 0.67, -0.17, 0.62, 0.000 +19420420, 0.36, -0.17, -0.28, 0.000 +19420421, 0.22, 0.48, 0.39, 0.000 +19420422, -0.28, 0.23, 0.25, 0.000 +19420423, -2.20, 0.43, -0.30, 0.000 +19420424, -0.84, 0.28, 0.02, 0.000 +19420425, 0.20, 0.40, 0.01, 0.000 +19420427, -0.66, -0.19, 0.91, 0.000 +19420428, -0.96, -0.05, 0.44, 0.000 +19420429, 1.52, -0.92, 0.68, 0.000 +19420430, 0.81, 0.04, 0.07, 0.000 +19420501, 0.70, -0.55, -0.24, 0.001 +19420502, 0.68, -0.23, 0.55, 0.001 +19420504, 0.20, -0.37, 0.11, 0.001 +19420505, 0.33, -0.32, -0.21, 0.001 +19420506, -0.25, -0.34, 0.43, 0.001 +19420507, 0.81, -0.35, -0.28, 0.001 +19420508, 0.21, 0.28, 0.14, 0.001 +19420509, 0.56, 0.17, -0.35, 0.001 +19420511, 0.59, -0.47, -0.14, 0.001 +19420512, -0.65, 0.43, -0.47, 0.001 +19420513, -1.23, 0.26, -0.15, 0.001 +19420514, 0.20, -0.59, -0.25, 0.001 +19420515, 0.76, -0.53, 0.13, 0.001 +19420516, 0.70, -0.13, 0.11, 0.001 +19420518, -0.11, 0.07, -0.17, 0.001 +19420519, -0.59, 0.50, -0.11, 0.001 +19420520, 0.14, -0.40, -1.20, 0.001 +19420521, 1.63, -0.98, 0.39, 0.001 +19420522, -0.20, 0.19, 0.30, 0.001 +19420523, 0.06, 0.41, -0.75, 0.001 +19420525, -0.20, 0.10, -0.25, 0.001 +19420526, 0.08, 0.07, -0.04, 0.001 +19420527, 1.49, -0.88, 0.17, 0.001 +19420528, 0.13, 0.04, -0.29, 0.001 +19420529, -0.20, 0.50, 0.03, 0.001 +19420601, 0.40, 0.00, 0.01, 0.001 +19420602, -0.12, 0.21, -0.60, 0.001 +19420603, 0.66, -0.19, 0.09, 0.001 +19420604, 1.58, -0.32, -0.72, 0.001 +19420605, 0.53, 0.11, 0.59, 0.001 +19420606, 0.43, -0.07, 0.16, 0.001 +19420608, 0.81, -0.52, -0.30, 0.001 +19420609, -0.27, 0.16, -0.35, 0.001 +19420610, -0.92, 0.13, 0.11, 0.001 +19420611, 0.20, -0.05, -0.09, 0.001 +19420612, -0.46, 0.18, 0.01, 0.001 +19420613, 0.40, -0.10, 0.11, 0.001 +19420615, 0.21, -0.21, -0.25, 0.001 +19420616, 0.08, 0.11, 0.33, 0.001 +19420617, 1.32, -0.99, 0.36, 0.001 +19420618, -0.16, 0.77, -0.07, 0.001 +19420619, -0.92, 0.20, -0.50, 0.001 +19420620, -0.33, 0.21, 0.52, 0.001 +19420622, -1.32, -0.50, -0.14, 0.001 +19420623, 0.13, 0.07, 0.23, 0.001 +19420624, -0.26, 0.24, -0.27, 0.001 +19420625, 0.08, -0.05, 0.11, 0.001 +19420626, -0.10, 0.02, 0.43, 0.001 +19420627, 0.32, -0.03, 0.42, 0.001 +19420629, 0.26, -0.38, 0.14, 0.001 +19420630, 0.13, -0.31, 0.11, 0.001 +19420701, -0.38, 0.42, -0.19, 0.001 +19420702, 1.02, -0.58, 0.32, 0.001 +19420703, 0.92, -0.04, 0.47, 0.001 +19420706, 1.33, -0.63, 0.04, 0.001 +19420707, -0.21, 0.50, 0.06, 0.001 +19420708, 1.95, -0.85, 0.58, 0.001 +19420709, 1.10, 0.84, 0.13, 0.001 +19420710, -0.21, 0.02, 0.03, 0.001 +19420711, -0.05, 0.06, 0.09, 0.001 +19420713, -0.55, 0.05, 0.04, 0.001 +19420714, 0.57, -0.53, -0.18, 0.001 +19420715, 0.25, 0.51, -0.15, 0.001 +19420716, -0.03, -0.18, -0.04, 0.001 +19420717, -0.83, 0.40, -0.16, 0.001 +19420718, -0.25, 0.06, 0.12, 0.001 +19420720, 0.49, -0.60, 0.03, 0.001 +19420721, 0.23, -0.16, -0.15, 0.001 +19420722, -0.12, 0.16, 0.34, 0.001 +19420723, -1.20, 0.34, -0.36, 0.001 +19420724, -0.02, -0.20, 0.59, 0.001 +19420725, 0.11, 0.03, 0.39, 0.001 +19420727, 0.08, 0.05, 0.17, 0.001 +19420728, -0.16, -0.01, 0.28, 0.001 +19420729, -1.10, 0.67, -0.53, 0.001 +19420730, 0.10, -0.12, 0.22, 0.001 +19420731, 0.44, -0.38, 0.24, 0.001 +19420801, 0.08, 0.39, 0.52, 0.001 +19420803, 0.28, -0.62, 0.09, 0.001 +19420804, -0.17, 0.23, 0.18, 0.001 +19420805, -0.71, 0.26, -0.86, 0.001 +19420806, -0.09, -0.10, -0.20, 0.001 +19420807, 0.26, -0.22, -0.01, 0.001 +19420808, -0.11, 0.22, -0.31, 0.001 +19420810, -0.08, -0.14, 0.14, 0.001 +19420811, 0.33, -0.33, 0.09, 0.001 +19420812, 0.12, -0.27, 0.61, 0.001 +19420813, 0.44, -0.26, 0.21, 0.001 +19420814, 0.50, 0.20, 0.25, 0.001 +19420815, 0.25, -0.07, -0.13, 0.001 +19420817, 0.35, 0.04, 0.69, 0.001 +19420818, 0.73, -0.42, 0.36, 0.001 +19420819, 0.09, 0.44, 0.23, 0.001 +19420820, -0.21, 0.29, 0.47, 0.001 +19420821, 0.31, -0.03, 0.32, 0.001 +19420822, 0.14, 0.08, 0.30, 0.001 +19420824, 0.00, -0.25, -0.42, 0.001 +19420825, -0.57, 0.09, -0.39, 0.001 +19420826, -1.07, 0.20, -0.85, 0.001 +19420827, 0.40, 0.11, 0.29, 0.001 +19420828, 0.34, 0.00, -0.14, 0.001 +19420829, 0.08, 0.22, -0.21, 0.001 +19420831, 0.10, -0.10, 0.08, 0.001 +19420901, -0.08, 0.01, -0.32, 0.001 +19420902, 0.02, 0.30, -0.07, 0.001 +19420903, 0.07, -0.02, 0.16, 0.001 +19420904, 0.01, -0.15, 0.60, 0.001 +19420905, 0.16, 0.02, 0.29, 0.001 +19420908, 0.56, -0.47, 0.04, 0.001 +19420909, -0.14, 0.17, -0.14, 0.001 +19420910, -0.55, 0.34, -0.12, 0.001 +19420911, -0.46, 0.03, -0.06, 0.001 +19420912, 0.03, 0.17, -0.01, 0.001 +19420914, 0.00, 0.07, 0.43, 0.001 +19420915, 0.40, -0.14, 0.05, 0.001 +19420916, 0.16, 0.04, 0.14, 0.001 +19420917, -0.04, 0.08, 0.89, 0.001 +19420918, 0.58, -0.13, -0.23, 0.001 +19420919, -0.03, 0.31, 0.58, 0.001 +19420921, 0.08, 0.12, -0.16, 0.001 +19420922, 0.33, -0.21, 0.46, 0.001 +19420923, 0.54, 0.17, 0.00, 0.001 +19420924, 1.12, 0.27, 0.77, 0.001 +19420925, 0.30, 0.38, -0.32, 0.001 +19420926, -0.13, -0.17, -0.46, 0.001 +19420928, -0.01, -0.17, 0.12, 0.001 +19420929, -0.20, -0.25, 0.00, 0.001 +19420930, -0.11, -0.14, -0.32, 0.001 +19421001, 0.65, -0.12, 1.18, 0.001 +19421002, 1.20, 0.11, 0.88, 0.001 +19421003, 0.46, 0.11, 0.67, 0.001 +19421005, 0.69, -0.07, -0.01, 0.001 +19421006, 0.04, -0.32, 0.68, 0.001 +19421007, 0.19, 0.54, -0.29, 0.001 +19421008, 1.56, 0.27, 0.73, 0.001 +19421009, 0.38, 0.25, 0.60, 0.001 +19421010, 0.88, -0.63, 0.48, 0.001 +19421013, 0.53, 0.07, 0.43, 0.001 +19421014, -0.31, 0.25, -0.14, 0.001 +19421015, -1.21, 0.49, -0.43, 0.001 +19421016, 0.41, 0.33, 0.15, 0.001 +19421017, -0.13, 0.40, -0.45, 0.001 +19421019, 0.19, -0.28, 0.07, 0.001 +19421020, 1.05, -0.27, 0.04, 0.001 +19421021, 0.01, 0.55, -0.25, 0.001 +19421022, 0.17, -0.01, -0.05, 0.001 +19421023, -0.07, 0.30, 0.18, 0.001 +19421024, 0.31, -0.05, 0.43, 0.001 +19421026, 0.30, -0.02, 0.67, 0.001 +19421027, -1.01, -0.24, -0.99, 0.001 +19421028, -0.60, -0.08, -0.08, 0.001 +19421029, 0.06, 0.01, 0.26, 0.001 +19421030, 0.35, -0.21, 0.42, 0.001 +19421031, 0.56, 0.12, 0.78, 0.001 +19421102, 0.65, 0.14, 0.44, 0.001 +19421104, -0.26, 0.09, -0.64, 0.001 +19421105, 0.12, -0.11, -0.11, 0.001 +19421106, 1.06, 0.26, -0.29, 0.001 +19421107, 0.68, -0.16, 0.28, 0.001 +19421109, 0.31, 0.22, -0.35, 0.001 +19421110, -0.52, -0.05, 0.00, 0.001 +19421112, 0.04, -0.36, -0.25, 0.001 +19421113, -0.34, 0.21, -0.44, 0.001 +19421114, 0.02, 0.00, -0.10, 0.001 +19421116, -0.86, -0.09, -0.61, 0.001 +19421117, -0.90, -0.27, -0.32, 0.001 +19421118, 0.19, -0.25, -0.37, 0.001 +19421119, 0.13, -0.08, -0.15, 0.001 +19421120, 0.84, -0.24, 0.27, 0.001 +19421121, 0.16, 0.27, -0.08, 0.001 +19421123, -1.11, 0.31, -0.38, 0.001 +19421124, -0.21, -0.57, -0.57, 0.001 +19421125, -0.08, -0.43, 0.37, 0.001 +19421127, 0.39, -0.13, -0.12, 0.001 +19421128, 0.08, 0.23, -0.20, 0.001 +19421130, -0.21, -0.53, -0.71, 0.001 +19421201, 0.13, -0.09, -0.19, 0.001 +19421202, 0.36, -0.19, 0.04, 0.001 +19421203, 0.28, -0.08, 0.25, 0.001 +19421204, -0.13, -0.14, -0.11, 0.001 +19421205, 0.12, -0.05, 0.24, 0.001 +19421207, -0.35, -0.08, -1.01, 0.001 +19421208, 0.52, -0.31, 0.29, 0.001 +19421209, -0.05, -0.34, -0.32, 0.001 +19421210, 0.11, 0.01, -0.35, 0.001 +19421211, 0.09, -0.04, -0.07, 0.001 +19421212, 0.23, 0.17, 0.55, 0.001 +19421214, 0.09, 0.11, -0.86, 0.001 +19421215, 0.37, -0.32, 0.32, 0.001 +19421216, 0.55, -0.19, 0.59, 0.001 +19421217, 1.81, -0.15, 2.05, 0.001 +19421218, -0.02, 0.72, -0.52, 0.001 +19421219, -0.05, -0.22, 0.00, 0.001 +19421221, -0.08, -0.10, -0.29, 0.001 +19421222, -0.03, -0.12, -0.43, 0.001 +19421223, 0.21, -0.31, -0.61, 0.001 +19421224, 0.46, -0.54, 0.38, 0.001 +19421226, 0.24, 0.12, 0.23, 0.001 +19421228, -0.85, -0.08, -0.90, 0.001 +19421229, -0.20, -0.55, -0.21, 0.001 +19421230, 1.02, 0.01, 0.04, 0.001 +19421231, 0.22, 0.34, 1.54, 0.001 +19430102, 0.78, 0.99, 0.60, 0.001 +19430104, 0.85, 0.62, 1.30, 0.001 +19430105, -0.36, 0.56, -0.36, 0.001 +19430106, 0.04, 0.18, -0.05, 0.001 +19430107, -0.04, 0.41, 0.35, 0.001 +19430108, 0.21, 0.22, 0.56, 0.001 +19430109, 0.24, 0.53, -0.13, 0.001 +19430111, 0.30, 0.19, 0.04, 0.001 +19430112, -0.24, 0.15, 0.01, 0.001 +19430113, 0.27, 0.19, 0.47, 0.001 +19430114, 0.51, 0.53, 1.11, 0.001 +19430115, 0.93, 0.44, 0.72, 0.001 +19430116, 0.19, 0.58, 0.31, 0.001 +19430118, -0.06, 0.40, 0.36, 0.001 +19430119, -0.87, -0.54, -1.20, 0.001 +19430120, 0.00, 0.29, 0.35, 0.001 +19430121, 1.17, 0.88, 0.24, 0.001 +19430122, 0.15, -0.02, -0.18, 0.001 +19430123, 0.28, 0.06, 0.03, 0.001 +19430125, 0.91, 0.01, 0.13, 0.001 +19430126, 0.48, -0.07, 0.20, 0.001 +19430127, -0.21, 0.32, 0.80, 0.001 +19430128, 0.24, 0.35, 1.15, 0.001 +19430129, 0.83, 0.46, 0.38, 0.001 +19430130, 0.33, 0.14, 0.10, 0.001 +19430201, 0.36, -0.03, 0.38, 0.001 +19430202, 0.04, 0.47, -0.28, 0.001 +19430203, -0.45, -0.57, -0.24, 0.001 +19430204, -0.08, 0.55, 0.18, 0.001 +19430205, 0.58, 0.27, 0.09, 0.001 +19430206, 0.08, 0.01, -0.02, 0.001 +19430208, -0.23, -0.44, -0.13, 0.001 +19430209, 0.70, 0.34, 0.17, 0.001 +19430210, 0.99, 0.81, 1.15, 0.001 +19430211, 0.26, 0.97, 0.79, 0.001 +19430213, 0.47, 0.59, 0.71, 0.001 +19430215, 0.83, 0.87, 1.05, 0.001 +19430216, -0.18, -0.20, 0.02, 0.001 +19430217, 0.17, 0.03, 0.20, 0.001 +19430218, -1.08, -0.48, -1.82, 0.001 +19430219, -0.10, -0.28, 0.56, 0.001 +19430220, 1.14, 0.50, 0.69, 0.001 +19430223, 0.79, 0.14, 0.89, 0.001 +19430224, 0.68, 0.03, 0.52, 0.001 +19430225, 0.61, 0.34, 0.98, 0.001 +19430226, 0.07, 0.28, 0.19, 0.001 +19430227, 0.36, 0.24, -0.06, 0.001 +19430301, -0.55, 0.26, -0.26, 0.001 +19430302, -0.61, 0.05, 0.16, 0.001 +19430303, 1.26, 0.49, 2.11, 0.001 +19430304, 0.32, 0.22, -0.35, 0.001 +19430305, 0.33, 0.34, -0.19, 0.001 +19430306, 0.21, 0.17, -0.07, 0.001 +19430308, -0.16, 0.34, -0.04, 0.001 +19430309, -0.66, -0.16, -0.43, 0.001 +19430310, -0.40, 0.21, -0.40, 0.001 +19430311, 1.12, 0.75, 1.73, 0.001 +19430312, 0.61, 0.58, 1.16, 0.001 +19430313, 0.09, 0.16, -0.06, 0.001 +19430315, -0.01, -0.22, -0.35, 0.001 +19430316, -0.37, -0.18, -0.37, 0.001 +19430317, -0.69, -0.69, -0.97, 0.001 +19430318, 0.11, 0.67, 0.59, 0.001 +19430319, -0.29, 0.73, -0.99, 0.001 +19430320, -0.09, -0.08, 0.04, 0.001 +19430322, 0.29, 0.21, 1.16, 0.001 +19430323, 0.47, 0.59, 0.08, 0.001 +19430324, 0.46, 0.43, -0.14, 0.001 +19430325, 1.83, 0.19, 0.82, 0.001 +19430326, 0.72, -0.19, 0.29, 0.001 +19430327, 0.15, -0.39, -0.30, 0.001 +19430329, 1.27, 0.43, 1.46, 0.001 +19430330, 0.71, -0.54, 0.25, 0.001 +19430331, -0.16, 0.33, 0.26, 0.001 +19430401, 0.11, 0.43, 1.24, 0.001 +19430402, -0.42, 0.02, 0.61, 0.001 +19430403, 0.14, 0.66, 1.13, 0.001 +19430405, 1.39, 0.79, 2.12, 0.001 +19430406, 0.34, -0.06, -0.23, 0.001 +19430407, -0.52, -0.58, -0.21, 0.001 +19430408, -0.40, 0.72, -0.19, 0.001 +19430409, -3.65, -1.67, -3.57, 0.001 +19430410, -0.08, -0.48, 0.72, 0.001 +19430412, -0.06, 0.53, 0.03, 0.001 +19430413, -0.15, -0.20, -0.45, 0.001 +19430414, 1.35, 1.06, 1.94, 0.001 +19430415, 0.83, 0.27, 0.90, 0.001 +19430416, -0.19, 0.09, -0.37, 0.001 +19430417, 0.40, -0.06, 0.45, 0.001 +19430419, 0.00, 0.35, 0.19, 0.001 +19430420, -0.44, 0.15, -0.22, 0.001 +19430421, 0.89, 0.19, 0.94, 0.001 +19430422, 0.33, 0.05, 0.46, 0.001 +19430424, 0.16, -0.11, 0.64, 0.001 +19430426, 0.01, 0.06, -0.25, 0.001 +19430427, -0.11, -0.39, -0.86, 0.001 +19430428, -0.12, -0.05, -0.16, 0.001 +19430429, 1.02, 0.18, 1.52, 0.001 +19430430, 0.08, 0.18, -0.31, 0.001 +19430501, 0.58, 0.35, 0.99, 0.001 +19430503, 1.32, 0.56, 1.36, 0.001 +19430504, 0.52, 0.94, -0.57, 0.001 +19430505, 0.54, 0.02, 1.23, 0.001 +19430506, 0.33, 0.48, 0.05, 0.001 +19430507, -1.25, -0.27, -1.69, 0.001 +19430508, 1.01, 0.56, 1.48, 0.001 +19430510, 0.38, 1.19, 0.28, 0.001 +19430511, -0.34, -0.01, -0.33, 0.001 +19430512, -0.35, -0.55, -0.36, 0.001 +19430513, -0.33, -0.21, 0.00, 0.001 +19430514, -0.96, -0.73, -0.83, 0.001 +19430515, 0.34, 0.85, 0.62, 0.001 +19430517, -0.01, 0.30, -0.36, 0.001 +19430518, 0.66, -0.17, 0.02, 0.001 +19430519, 1.06, 0.77, 1.15, 0.001 +19430520, -0.08, 0.23, -0.18, 0.001 +19430521, -0.04, -0.57, -0.14, 0.001 +19430522, 0.02, 0.65, 0.05, 0.001 +19430524, -0.07, -0.29, -0.61, 0.001 +19430525, 0.25, -0.52, 0.98, 0.001 +19430526, 0.88, -0.16, 0.02, 0.001 +19430527, 0.35, 0.55, -0.25, 0.001 +19430528, 0.27, 0.00, 0.12, 0.001 +19430529, 0.56, 0.16, 0.13, 0.001 +19430601, 0.37, -0.08, 0.09, 0.001 +19430602, -0.08, -0.24, -0.75, 0.001 +19430603, 0.55, -0.02, 0.53, 0.001 +19430604, -0.30, 0.22, -0.23, 0.001 +19430605, 0.66, 0.61, 0.18, 0.001 +19430607, -0.75, -0.06, -0.75, 0.001 +19430608, -0.57, -0.11, -0.74, 0.001 +19430609, 0.20, -0.07, 0.25, 0.001 +19430610, 0.21, 0.25, -0.50, 0.001 +19430611, -0.30, 0.17, -0.31, 0.001 +19430612, -0.15, -0.25, -0.38, 0.001 +19430614, -1.61, -1.12, -1.50, 0.001 +19430615, 0.23, -0.16, 0.68, 0.001 +19430616, 0.41, 0.16, 0.63, 0.001 +19430617, 0.16, 0.23, 0.23, 0.001 +19430618, -0.17, 0.12, -0.34, 0.001 +19430619, -0.02, -0.29, -0.01, 0.001 +19430621, -0.72, -0.63, -0.80, 0.001 +19430622, 0.21, 0.02, 0.45, 0.001 +19430623, 0.78, 0.42, 0.75, 0.001 +19430624, 0.54, -0.08, -0.02, 0.001 +19430625, 1.12, 0.24, 0.99, 0.001 +19430626, 0.42, 0.02, 0.32, 0.001 +19430628, 0.44, -0.07, 0.30, 0.001 +19430629, -0.33, -0.26, -0.16, 0.001 +19430630, 0.55, 0.01, 0.47, 0.001 +19430701, 0.17, 0.11, 0.96, 0.001 +19430702, 0.02, 0.21, -0.37, 0.001 +19430703, 0.15, 0.01, 0.13, 0.001 +19430706, 0.00, 0.00, -0.54, 0.001 +19430707, -0.23, -0.33, -0.38, 0.001 +19430708, 0.20, -0.11, 0.45, 0.001 +19430709, 0.37, -0.16, 0.62, 0.001 +19430710, 0.13, 0.01, 0.08, 0.001 +19430712, 0.51, -0.44, 0.58, 0.001 +19430713, 0.75, 0.09, 0.44, 0.001 +19430714, 0.56, -0.25, 0.61, 0.001 +19430715, -0.67, 0.14, -0.99, 0.001 +19430716, -0.09, -0.33, 0.41, 0.001 +19430717, 0.09, 0.04, 0.10, 0.001 +19430719, -0.06, -0.16, -0.55, 0.001 +19430720, -0.71, -0.25, -1.27, 0.001 +19430721, 0.11, -0.21, 0.65, 0.001 +19430722, 0.18, 0.33, 0.73, 0.001 +19430723, 0.02, 0.05, 0.02, 0.001 +19430724, 0.09, 0.03, 0.09, 0.001 +19430726, -1.50, -0.51, -2.09, 0.001 +19430727, -2.75, 0.11, -1.60, 0.001 +19430728, -0.57, -1.26, 0.79, 0.001 +19430729, 1.61, 0.99, 1.48, 0.001 +19430730, -1.83, -0.38, -1.56, 0.001 +19430731, -1.31, -0.27, -0.97, 0.001 +19430802, -1.77, 0.26, -1.13, 0.001 +19430803, 1.48, -1.13, 0.56, 0.001 +19430804, 0.85, 0.41, 0.34, 0.001 +19430805, -0.26, 0.01, -0.32, 0.001 +19430806, -0.86, 0.13, -0.75, 0.001 +19430807, -0.11, -0.14, -0.34, 0.001 +19430809, 0.02, -0.19, 0.46, 0.001 +19430810, 1.08, 0.09, 0.83, 0.001 +19430811, 0.67, 0.32, 0.17, 0.001 +19430812, -0.45, 0.05, 0.10, 0.001 +19430813, 0.55, -0.16, -0.37, 0.001 +19430814, 0.12, 0.24, 0.60, 0.001 +19430816, -0.05, 0.41, 0.08, 0.001 +19430817, 0.40, -0.32, -0.06, 0.001 +19430818, 0.43, -0.21, -0.32, 0.001 +19430819, -0.03, 0.02, -0.47, 0.001 +19430820, -0.91, 0.21, -0.68, 0.001 +19430821, -0.82, -0.03, -0.56, 0.001 +19430823, -0.86, -0.59, -1.11, 0.001 +19430824, 0.59, -0.33, 0.99, 0.001 +19430825, 0.41, 0.17, 0.58, 0.001 +19430826, 0.21, 0.06, 0.26, 0.001 +19430827, -0.38, 0.18, -0.58, 0.001 +19430828, 0.10, -0.07, 0.35, 0.001 +19430830, 0.04, -0.04, 0.07, 0.001 +19430831, 0.92, 0.03, 0.95, 0.001 +19430901, 0.39, 0.27, 0.47, 0.001 +19430902, 0.04, -0.08, -0.65, 0.001 +19430903, -0.15, 0.02, -0.21, 0.001 +19430904, 0.22, 0.14, 0.07, 0.001 +19430907, 0.07, -0.43, 0.11, 0.001 +19430908, -0.48, -0.07, -0.95, 0.001 +19430909, 0.99, 0.62, 1.08, 0.001 +19430910, 0.13, 0.45, 0.39, 0.001 +19430911, 0.02, 0.01, 0.19, 0.001 +19430913, -0.13, 0.08, -0.50, 0.001 +19430914, -0.23, -0.33, -0.11, 0.001 +19430915, 0.21, 0.22, 0.49, 0.001 +19430916, 0.37, -0.05, 0.35, 0.001 +19430917, 1.00, 0.00, 1.04, 0.001 +19430918, 0.82, 0.36, 0.65, 0.001 +19430920, 0.41, 0.45, -0.19, 0.001 +19430921, 0.02, -0.60, 0.11, 0.001 +19430922, -0.33, 0.04, -0.31, 0.001 +19430923, -0.60, 0.02, -0.26, 0.001 +19430924, 0.04, -0.03, 0.35, 0.001 +19430925, 0.01, 0.34, -0.08, 0.001 +19430927, -0.75, -0.08, -1.22, 0.001 +19430928, -0.13, 0.23, 0.21, 0.001 +19430929, 0.18, -0.12, 0.10, 0.001 +19430930, 0.29, -0.19, 0.30, 0.001 +19431001, 0.15, 0.16, 0.29, 0.001 +19431002, -0.05, 0.25, -0.04, 0.001 +19431004, -0.50, -0.29, -0.64, 0.001 +19431005, -0.41, 0.06, -0.23, 0.001 +19431006, -1.02, -0.27, -0.42, 0.001 +19431007, -1.21, 0.05, -0.55, 0.001 +19431008, 0.29, -0.08, 0.68, 0.001 +19431009, 0.53, -0.16, 0.75, 0.001 +19431011, -0.63, -0.13, -0.58, 0.001 +19431013, -0.17, -0.48, -0.22, 0.001 +19431014, 0.54, 0.04, 0.59, 0.001 +19431015, 0.54, 0.40, 0.41, 0.001 +19431016, 0.36, -0.07, 0.22, 0.001 +19431018, -0.08, 0.09, -0.20, 0.001 +19431019, 0.36, 0.18, 0.67, 0.001 +19431020, 0.24, 0.05, 0.06, 0.001 +19431021, -0.68, 0.57, -0.51, 0.001 +19431022, 0.39, -0.30, 0.41, 0.001 +19431023, 0.02, 0.09, 0.28, 0.001 +19431025, -0.11, -0.10, -0.38, 0.001 +19431026, 0.29, 0.35, 0.62, 0.001 +19431027, 0.60, 0.24, 1.05, 0.001 +19431028, -0.13, 0.00, -0.44, 0.001 +19431029, -0.47, 0.04, -0.51, 0.001 +19431030, 0.04, -0.08, 0.47, 0.001 +19431101, -0.07, -0.14, -0.60, 0.001 +19431103, -1.00, -0.60, -1.34, 0.001 +19431104, -1.03, -0.35, -1.08, 0.001 +19431105, -0.43, 0.31, 0.04, 0.001 +19431106, -0.02, 0.04, -0.09, 0.001 +19431108, -3.23, -1.73, -3.58, 0.001 +19431109, 0.53, -0.12, 1.68, 0.001 +19431110, 1.12, 0.71, 0.93, 0.001 +19431112, -0.55, -0.14, 0.16, 0.001 +19431113, -0.20, 0.06, -0.08, 0.001 +19431115, 0.10, 0.26, 0.68, 0.001 +19431116, -0.32, 0.23, 0.35, 0.001 +19431117, -0.58, -0.36, -0.53, 0.001 +19431118, 0.38, -0.04, 0.22, 0.001 +19431119, 1.26, 0.19, 1.47, 0.001 +19431120, 0.57, 0.43, 0.15, 0.001 +19431122, -0.27, 0.18, -0.06, 0.001 +19431123, -0.12, 0.13, -0.14, 0.001 +19431124, -0.25, 0.03, -1.07, 0.001 +19431126, -0.71, -0.39, -0.98, 0.001 +19431127, -0.31, -0.02, -0.19, 0.001 +19431129, -1.00, -0.07, 0.02, 0.001 +19431130, 0.11, -0.18, 0.00, 0.001 +19431201, 0.95, 0.31, 0.82, 0.001 +19431202, 0.79, 0.03, 0.44, 0.001 +19431203, 0.18, 0.09, 0.20, 0.001 +19431204, 0.17, 0.14, 0.07, 0.001 +19431206, 0.47, -0.10, 0.39, 0.001 +19431207, 0.78, 0.30, -0.06, 0.001 +19431208, 1.06, 0.72, 1.00, 0.001 +19431209, -0.25, 0.18, -0.33, 0.001 +19431210, 0.64, -0.14, -0.20, 0.001 +19431211, 0.23, 0.13, 0.07, 0.001 +19431213, -0.33, -0.24, -0.55, 0.001 +19431214, -0.28, -0.08, -0.03, 0.001 +19431215, 0.08, 0.19, 0.27, 0.001 +19431216, 0.41, -0.27, -0.23, 0.001 +19431217, 0.40, 0.04, 1.19, 0.001 +19431218, 0.38, 0.29, 0.13, 0.001 +19431220, 0.22, 0.26, -0.11, 0.001 +19431221, -0.30, 0.22, -0.60, 0.001 +19431222, -0.08, 0.13, -0.19, 0.001 +19431223, -0.04, -0.03, 0.17, 0.001 +19431224, 0.15, 0.15, 0.32, 0.001 +19431227, -0.09, 0.34, -0.34, 0.001 +19431228, -0.84, 0.03, -1.12, 0.001 +19431229, -0.20, -0.38, 0.46, 0.001 +19431230, 1.64, 0.00, 1.53, 0.001 +19431231, 0.08, 0.74, -0.34, 0.001 +19440103, -0.12, 0.09, 0.03, 0.001 +19440104, 1.04, -0.29, 1.15, 0.001 +19440105, 0.96, 0.63, 0.32, 0.001 +19440106, -0.23, 0.25, -0.01, 0.001 +19440107, -0.12, 0.53, 0.00, 0.001 +19440108, 0.03, -0.02, 0.06, 0.001 +19440110, -0.19, 0.20, 0.05, 0.001 +19440111, 0.54, 0.05, 0.30, 0.001 +19440112, -0.60, 0.13, -0.35, 0.001 +19440113, -0.26, 0.04, 0.11, 0.001 +19440114, 0.63, 0.56, 0.48, 0.001 +19440115, 0.47, 0.16, 0.41, 0.001 +19440117, -0.29, -0.04, -0.50, 0.001 +19440118, -0.22, -0.41, 0.10, 0.001 +19440119, -0.02, -0.13, -0.52, 0.001 +19440120, 0.11, 0.39, 0.36, 0.001 +19440121, 0.22, 0.18, 0.42, 0.001 +19440122, 0.23, -0.04, 0.09, 0.001 +19440124, -0.16, 0.28, -0.39, 0.001 +19440125, -0.11, -0.23, -0.28, 0.001 +19440126, -0.87, 0.11, -1.01, 0.001 +19440127, -0.11, -0.01, 0.04, 0.001 +19440128, 0.49, -0.13, 0.90, 0.001 +19440129, 0.11, 0.18, 0.23, 0.001 +19440131, 0.23, 0.05, 0.26, 0.001 +19440201, 0.09, 0.25, -0.11, 0.001 +19440202, -0.17, 0.07, 0.16, 0.001 +19440203, -0.79, 0.27, -0.45, 0.001 +19440204, -0.64, 0.00, -0.60, 0.001 +19440205, 0.20, 0.09, 0.74, 0.001 +19440207, -0.34, -0.03, 0.30, 0.001 +19440208, 0.55, -0.29, 0.16, 0.001 +19440209, -0.01, -0.06, 0.10, 0.001 +19440210, 0.61, -0.27, 1.08, 0.001 +19440211, -0.10, 0.27, 0.04, 0.001 +19440214, 0.08, 0.20, -0.27, 0.001 +19440215, 0.53, -0.17, 0.77, 0.001 +19440216, -0.08, 0.15, -0.49, 0.001 +19440217, 0.39, -0.27, 0.83, 0.001 +19440218, -0.36, 0.29, -0.48, 0.001 +19440219, -0.03, -0.01, 0.06, 0.001 +19440221, 0.03, 0.09, -0.15, 0.001 +19440223, 0.61, -0.26, 1.13, 0.001 +19440224, 0.20, 0.18, -0.03, 0.001 +19440225, 0.04, 0.11, -0.19, 0.001 +19440226, 0.00, -0.06, 0.14, 0.001 +19440228, 0.16, -0.51, -0.46, 0.001 +19440229, -0.60, -0.11, -1.43, 0.001 +19440301, 0.35, -0.15, 0.57, 0.001 +19440302, 0.21, 0.35, 0.24, 0.001 +19440303, 0.11, -0.06, -0.49, 0.001 +19440304, 0.03, 0.00, -0.12, 0.001 +19440306, 0.32, -0.13, 0.56, 0.001 +19440307, 0.67, 0.34, 0.41, 0.001 +19440308, 0.74, 0.04, -0.28, 0.001 +19440309, -0.13, 0.16, 0.17, 0.001 +19440310, 0.45, 0.32, 0.01, 0.001 +19440311, 0.27, 0.09, 0.42, 0.001 +19440313, 0.70, -0.08, 0.55, 0.001 +19440314, -0.23, -0.29, -0.07, 0.001 +19440315, 0.40, 0.08, 0.61, 0.001 +19440316, 0.24, 0.38, 0.58, 0.001 +19440317, 0.16, -0.07, 0.52, 0.001 +19440318, -0.29, 0.21, 0.24, 0.001 +19440320, -0.41, 0.08, -0.41, 0.001 +19440321, 0.32, 0.02, 1.03, 0.001 +19440322, -0.08, 0.29, -0.32, 0.001 +19440323, -0.83, 0.37, -0.42, 0.001 +19440324, 0.24, -0.22, 0.29, 0.001 +19440325, 0.00, 0.17, -0.11, 0.001 +19440327, -0.17, 0.08, -0.38, 0.001 +19440328, -1.24, -0.74, -1.55, 0.001 +19440329, -0.21, -0.27, 0.09, 0.001 +19440330, 0.67, 0.56, 0.77, 0.001 +19440331, 0.18, 0.13, 0.45, 0.001 +19440401, 0.04, -0.05, -0.17, 0.001 +19440403, -0.61, -0.08, -0.75, 0.001 +19440404, 0.05, -0.23, 0.16, 0.001 +19440405, 0.24, 0.15, 0.35, 0.001 +19440406, 0.31, -0.01, 0.06, 0.001 +19440408, 0.20, 0.06, 0.22, 0.001 +19440410, -0.07, -0.26, 0.19, 0.001 +19440411, 0.02, -0.14, 0.64, 0.001 +19440412, -0.52, -0.04, -0.46, 0.001 +19440413, -0.31, -0.25, -0.33, 0.001 +19440414, 0.01, 0.18, -0.05, 0.001 +19440415, 0.18, -0.12, 0.07, 0.001 +19440417, -0.28, 0.15, -0.30, 0.001 +19440418, -1.60, -0.79, -2.03, 0.001 +19440419, -0.40, -0.09, 0.08, 0.001 +19440420, 0.77, 0.25, 0.99, 0.001 +19440421, 0.16, -0.01, 0.20, 0.001 +19440422, -0.06, 0.05, 0.00, 0.001 +19440424, -0.95, -0.35, -1.15, 0.001 +19440425, 0.01, -0.35, 0.14, 0.001 +19440426, 0.52, -0.03, 0.63, 0.001 +19440427, 0.29, 0.15, 0.37, 0.001 +19440428, 0.31, 0.39, 0.15, 0.001 +19440429, 0.03, 0.14, -0.02, 0.001 +19440501, 0.68, -0.19, 0.17, 0.001 +19440502, -0.14, 0.38, -0.51, 0.001 +19440503, 0.47, -0.06, 0.25, 0.001 +19440504, -0.05, 0.19, -0.48, 0.001 +19440505, 0.52, 0.06, 0.59, 0.001 +19440506, 0.17, 0.00, -0.21, 0.001 +19440508, -0.18, 0.19, -0.02, 0.001 +19440509, 0.17, -0.11, 0.07, 0.001 +19440510, 0.16, -0.03, -0.20, 0.001 +19440511, 0.14, 0.03, 0.04, 0.001 +19440512, -0.64, -0.27, -1.09, 0.001 +19440513, 0.03, -0.23, 0.28, 0.001 +19440515, 0.17, 0.01, 0.22, 0.001 +19440516, 0.17, 0.23, 0.54, 0.001 +19440517, 0.67, 0.15, 0.66, 0.001 +19440518, 0.25, 0.17, 0.33, 0.001 +19440519, 0.19, 0.09, -0.21, 0.001 +19440520, 0.09, 0.18, 0.20, 0.001 +19440522, 0.04, 0.16, -0.39, 0.001 +19440523, 0.32, -0.01, 0.31, 0.001 +19440524, 0.38, 0.14, 0.29, 0.001 +19440525, -0.06, 0.05, -0.40, 0.001 +19440526, 0.29, 0.13, 0.12, 0.001 +19440527, 0.23, 0.07, 0.28, 0.001 +19440529, 0.22, 0.25, -0.01, 0.001 +19440531, 0.68, -0.02, 0.13, 0.001 +19440601, -0.03, 0.06, -0.10, 0.001 +19440602, -0.06, -0.07, -0.42, 0.001 +19440603, 0.03, -0.06, 0.01, 0.001 +19440605, -0.53, 0.11, -0.68, 0.001 +19440606, 0.45, -0.22, -0.05, 0.001 +19440607, -0.15, -0.10, -0.70, 0.001 +19440608, -0.24, 0.41, -0.34, 0.001 +19440609, 0.09, 0.16, 0.49, 0.001 +19440610, 0.48, 0.01, 0.37, 0.001 +19440612, 1.43, 0.33, 1.13, 0.001 +19440613, 0.77, 0.12, 0.29, 0.001 +19440614, 0.14, -0.02, -0.54, 0.001 +19440615, 0.54, 0.45, -0.39, 0.001 +19440616, 0.82, 0.18, 0.94, 0.001 +19440617, 0.34, -0.03, 0.35, 0.001 +19440619, 0.54, 0.08, 0.19, 0.001 +19440620, -0.07, -0.05, 0.20, 0.001 +19440621, -0.33, 0.09, -0.01, 0.001 +19440622, 0.01, 0.24, -0.03, 0.001 +19440623, 0.09, 0.65, 0.21, 0.001 +19440624, 0.07, 0.14, 0.17, 0.001 +19440626, 0.58, 0.45, 0.24, 0.001 +19440627, 0.46, 0.33, 0.02, 0.001 +19440628, -0.31, 0.33, 0.14, 0.001 +19440629, -0.03, 0.22, -0.01, 0.001 +19440630, 0.28, -0.04, 0.27, 0.001 +19440701, 0.10, 0.31, 0.04, 0.001 +19440703, 0.77, 0.17, 0.75, 0.001 +19440705, 0.43, 0.44, 0.52, 0.001 +19440706, -0.28, -0.45, -0.33, 0.001 +19440707, 0.22, 0.03, 0.09, 0.001 +19440708, 0.55, 0.15, 0.57, 0.001 +19440710, 0.36, 0.46, -0.39, 0.001 +19440711, -0.17, -0.34, -0.39, 0.001 +19440712, 0.12, 0.30, 0.24, 0.001 +19440713, -0.19, -0.41, 0.14, 0.001 +19440714, 0.00, 0.07, -0.04, 0.001 +19440715, 0.02, 0.57, 0.35, 0.001 +19440717, -1.00, -0.80, -0.47, 0.001 +19440718, -0.81, -0.15, -0.49, 0.001 +19440719, 0.82, 0.72, 0.84, 0.001 +19440720, -0.64, -0.28, -0.84, 0.001 +19440721, -1.33, -0.88, -1.08, 0.001 +19440722, -0.92, -0.39, -0.84, 0.001 +19440724, 0.14, 0.13, 0.39, 0.001 +19440725, 0.89, 0.69, 0.93, 0.001 +19440726, -0.15, 0.57, -0.16, 0.001 +19440727, 0.09, -0.38, 0.08, 0.001 +19440728, -0.46, 0.05, -0.23, 0.001 +19440729, 0.05, -0.14, 0.14, 0.001 +19440731, -0.06, 0.18, -0.16, 0.001 +19440801, 0.45, 0.17, 0.42, 0.001 +19440802, 0.24, 0.23, -0.01, 0.001 +19440803, -0.57, -0.16, -0.66, 0.001 +19440804, -0.75, 0.03, -0.60, 0.001 +19440805, 0.05, 0.11, -0.50, 0.001 +19440807, 0.13, 0.47, -0.86, 0.001 +19440808, -0.35, -0.13, 0.05, 0.001 +19440809, 0.31, -0.27, 0.35, 0.001 +19440810, 0.60, 0.10, 0.66, 0.001 +19440811, 0.52, 0.44, 0.21, 0.001 +19440812, 0.25, 0.18, 0.16, 0.001 +19440814, 0.18, 0.04, -0.04, 0.001 +19440815, -0.10, 0.33, -0.61, 0.001 +19440816, 0.66, -0.01, 0.41, 0.001 +19440817, 0.75, 0.35, 0.29, 0.001 +19440818, 0.36, 0.09, 0.01, 0.001 +19440821, -0.27, -0.09, -0.35, 0.001 +19440822, -0.70, -0.44, -0.41, 0.001 +19440823, 0.12, 0.27, -0.07, 0.001 +19440824, -0.55, -0.58, -0.34, 0.001 +19440825, -0.05, 0.25, 0.06, 0.001 +19440828, -0.09, 0.14, -0.10, 0.001 +19440829, 0.14, 0.45, -0.46, 0.001 +19440830, 0.35, 0.32, 0.75, 0.001 +19440831, -0.11, 0.04, 0.08, 0.001 +19440901, 0.28, 0.18, -0.16, 0.001 +19440905, -0.64, -0.13, -0.80, 0.001 +19440906, -2.19, -0.51, -1.62, 0.001 +19440907, -0.32, -0.41, 0.31, 0.001 +19440908, 0.04, 0.84, 0.17, 0.001 +19440909, -0.21, -0.03, -0.01, 0.001 +19440911, 0.55, -0.25, -0.03, 0.001 +19440912, 0.32, 0.21, -0.44, 0.001 +19440913, -0.94, -0.53, -0.63, 0.001 +19440914, -0.58, -0.32, -0.19, 0.001 +19440915, 0.87, 0.41, 0.21, 0.001 +19440916, 0.44, 0.08, 0.65, 0.001 +19440918, 0.12, -0.11, -0.36, 0.001 +19440919, 0.79, 0.00, 0.72, 0.001 +19440920, 0.20, 0.44, 0.00, 0.001 +19440921, -0.24, -0.06, -0.32, 0.001 +19440922, 0.19, 0.19, -0.06, 0.001 +19440923, 0.27, -0.08, 0.24, 0.001 +19440925, 0.53, 0.30, 0.35, 0.001 +19440926, -0.09, 0.05, -0.31, 0.001 +19440927, 0.05, 0.05, 0.37, 0.001 +19440928, -0.10, 0.19, 0.02, 0.001 +19440929, 0.34, -0.15, 0.62, 0.001 +19440930, 0.39, 0.15, 0.17, 0.001 +19441002, 0.23, 0.38, 0.27, 0.001 +19441003, -0.08, -0.18, -0.11, 0.001 +19441004, 0.45, 0.03, 0.07, 0.001 +19441005, 0.64, -0.24, 0.65, 0.001 +19441006, 0.17, 0.00, -0.02, 0.001 +19441007, 0.20, -0.01, 0.16, 0.001 +19441009, -0.73, 0.01, -0.56, 0.001 +19441010, 0.12, -0.20, 0.03, 0.001 +19441011, 0.51, 0.15, -0.15, 0.001 +19441013, -0.02, 0.16, 0.03, 0.001 +19441014, 0.03, 0.08, -0.14, 0.001 +19441016, -0.39, -0.22, -0.32, 0.001 +19441017, 0.27, -0.08, -0.09, 0.001 +19441018, 0.56, 0.19, 0.23, 0.001 +19441019, -0.16, 0.33, -0.20, 0.001 +19441020, -0.22, 0.04, 0.14, 0.001 +19441021, 0.11, 0.02, 0.13, 0.001 +19441023, -1.37, -0.46, -0.64, 0.001 +19441024, 0.11, -0.20, 0.20, 0.001 +19441025, 0.00, 0.13, -0.10, 0.001 +19441026, -0.65, -0.25, -0.30, 0.001 +19441027, 0.16, 0.04, 0.30, 0.001 +19441028, 0.32, 0.09, -0.04, 0.001 +19441030, -0.28, -0.28, -0.01, 0.001 +19441031, 0.22, 0.32, 0.18, 0.001 +19441101, 0.23, -0.01, 0.15, 0.001 +19441102, 0.52, -0.11, 0.32, 0.001 +19441103, 0.05, 0.23, 0.36, 0.001 +19441104, 0.10, -0.06, 0.00, 0.001 +19441106, 0.27, -0.17, -0.14, 0.001 +19441108, -0.20, 0.13, -0.08, 0.001 +19441109, 0.44, 0.06, 0.35, 0.001 +19441110, 0.30, 0.17, 0.68, 0.001 +19441113, -0.75, -0.26, -0.31, 0.001 +19441114, -1.04, -0.48, -0.71, 0.001 +19441115, -0.13, 0.03, 0.25, 0.001 +19441116, 0.28, -0.05, 0.47, 0.001 +19441117, -0.06, -0.33, 0.06, 0.001 +19441118, 0.10, 0.19, -0.08, 0.001 +19441120, 0.19, 0.02, -0.07, 0.001 +19441121, 0.55, 0.35, 0.41, 0.001 +19441122, 0.14, -0.05, 0.06, 0.001 +19441124, -0.26, 0.14, -0.26, 0.001 +19441125, 0.10, 0.00, 0.10, 0.001 +19441127, 0.14, -0.19, 0.38, 0.001 +19441128, 0.13, 0.22, 0.16, 0.001 +19441129, 0.57, 0.37, -0.01, 0.001 +19441130, 0.04, 0.19, 0.21, 0.001 +19441201, 0.03, 0.16, 0.03, 0.001 +19441202, 0.20, 0.33, 0.56, 0.001 +19441204, 0.60, 0.12, 0.95, 0.001 +19441205, 0.32, -0.02, 0.08, 0.001 +19441206, 0.08, 0.15, 0.19, 0.001 +19441207, 0.33, 0.37, 0.35, 0.001 +19441208, 0.67, 0.04, 0.53, 0.001 +19441209, 0.47, 0.05, 0.02, 0.001 +19441211, 0.23, 0.01, 0.30, 0.001 +19441212, -0.12, -0.02, -0.16, 0.001 +19441213, -0.18, 0.11, -0.33, 0.001 +19441214, 0.28, 0.14, 0.49, 0.001 +19441215, 0.81, -0.07, 1.05, 0.001 +19441216, 0.02, 0.15, -0.09, 0.001 +19441218, -0.50, -0.03, -0.12, 0.001 +19441219, 0.11, -0.26, 0.90, 0.001 +19441220, -0.66, -0.08, -0.53, 0.001 +19441221, -0.23, 0.13, -0.18, 0.001 +19441222, 0.34, 0.05, 1.19, 0.001 +19441223, 0.09, 0.19, -0.10, 0.001 +19441226, -0.56, 0.18, -0.14, 0.001 +19441227, -0.79, -0.46, -0.67, 0.001 +19441228, 1.09, 0.03, 0.98, 0.001 +19441229, 1.31, 0.39, 0.39, 0.001 +19441230, 0.09, 0.51, -0.09, 0.001 +19450102, 0.29, -0.09, 0.22, 0.001 +19450103, 0.94, 0.14, 0.56, 0.001 +19450104, 0.28, -0.11, 0.54, 0.001 +19450105, -0.14, 0.09, -0.29, 0.001 +19450106, -0.14, 0.03, -0.09, 0.001 +19450108, 1.15, 0.21, 1.54, 0.001 +19450109, 0.03, -0.13, 0.35, 0.001 +19450110, 0.60, 0.01, 0.81, 0.001 +19450111, -0.01, -0.04, 0.07, 0.001 +19450112, -0.22, -0.15, -0.27, 0.001 +19450113, 0.07, 0.31, -0.07, 0.001 +19450115, -0.58, 0.30, -1.48, 0.001 +19450116, 0.00, 0.11, -0.05, 0.001 +19450117, 0.75, 0.70, 0.27, 0.001 +19450118, -0.46, 0.13, -0.35, 0.001 +19450119, -0.86, -0.22, -0.54, 0.001 +19450120, -0.65, -0.18, -0.94, 0.001 +19450122, -0.33, 0.16, 0.03, 0.001 +19450123, -0.42, -0.06, -0.37, 0.001 +19450124, 0.06, 0.03, 0.32, 0.001 +19450125, 0.74, 0.32, 0.26, 0.001 +19450126, 0.79, 0.19, 0.81, 0.001 +19450127, 0.41, 0.04, 0.14, 0.001 +19450129, 0.13, 0.10, 0.10, 0.001 +19450130, -0.59, 0.08, -0.83, 0.001 +19450131, 0.18, 0.39, 0.09, 0.001 +19450201, 0.33, 0.19, 0.68, 0.001 +19450202, 0.81, 0.12, 0.43, 0.001 +19450203, 0.32, 0.22, 0.38, 0.001 +19450205, 0.42, 0.46, -0.01, 0.001 +19450206, 0.18, 0.04, 0.17, 0.001 +19450207, 0.25, 0.12, 0.13, 0.001 +19450208, 0.05, -0.12, 0.25, 0.001 +19450209, -0.46, -0.28, -0.56, 0.001 +19450210, 0.19, 0.33, 0.30, 0.001 +19450213, 1.21, -0.19, 0.87, 0.001 +19450214, 0.55, 0.06, 0.27, 0.001 +19450215, 0.65, -0.07, 0.78, 0.001 +19450216, -0.05, 0.07, -0.27, 0.001 +19450217, 0.08, 0.06, -0.14, 0.001 +19450219, 0.60, 0.38, 0.74, 0.001 +19450220, 0.22, -0.01, -0.02, 0.001 +19450221, -0.08, -0.34, 0.10, 0.001 +19450223, -0.15, 0.11, -0.27, 0.001 +19450224, -0.25, -0.11, -0.53, 0.001 +19450226, -0.21, -0.23, -0.09, 0.001 +19450227, 0.69, 0.38, 0.27, 0.001 +19450228, 0.71, 0.28, 0.64, 0.001 +19450301, 0.31, 0.47, 0.72, 0.001 +19450302, -0.52, -0.31, -0.76, 0.001 +19450303, -0.06, 0.00, 0.13, 0.001 +19450305, 0.49, -0.16, 0.10, 0.001 +19450306, 0.47, -0.14, 0.41, 0.001 +19450307, -0.05, -0.23, -0.25, 0.001 +19450308, -1.77, -1.24, -1.35, 0.001 +19450309, -1.88, -0.43, -0.71, 0.001 +19450310, 0.64, 0.33, 0.58, 0.001 +19450312, 0.61, 0.52, 0.60, 0.001 +19450313, -0.03, -0.30, -0.07, 0.001 +19450314, 0.24, 0.31, 0.13, 0.001 +19450315, 0.46, -0.30, 0.35, 0.001 +19450316, 0.16, 0.18, 0.03, 0.001 +19450317, 0.07, -0.07, 0.11, 0.001 +19450319, -0.62, -0.18, -0.48, 0.001 +19450320, -1.12, -0.16, -0.88, 0.001 +19450321, -1.04, -0.57, 0.07, 0.001 +19450322, 0.01, 0.36, 0.10, 0.001 +19450323, 0.34, 0.04, 0.17, 0.001 +19450324, -0.71, 0.20, -0.64, 0.001 +19450326, -1.76, -0.66, -1.53, 0.001 +19450327, 0.46, 0.06, 0.85, 0.001 +19450328, 0.86, 0.31, 0.43, 0.001 +19450329, 0.27, 0.28, 0.22, 0.001 +19450331, 0.26, -0.03, 0.09, 0.001 +19450402, 0.78, 0.02, 0.21, 0.001 +19450403, 0.27, -0.29, 0.22, 0.001 +19450404, -0.12, -0.16, 0.03, 0.001 +19450405, -0.78, -0.05, -1.03, 0.001 +19450406, 0.49, -0.26, 0.47, 0.001 +19450407, 0.47, 0.08, 0.41, 0.001 +19450409, -0.15, 0.13, -0.25, 0.001 +19450410, 0.51, 0.02, 0.51, 0.001 +19450411, 1.08, 0.22, 0.51, 0.001 +19450412, 0.25, 0.32, 0.06, 0.001 +19450413, 0.71, -0.45, 0.30, 0.001 +19450416, 1.79, 0.18, 0.66, 0.001 +19450417, 0.16, 0.18, -0.01, 0.001 +19450418, 0.83, -0.07, 0.39, 0.001 +19450419, -0.58, 0.14, -0.12, 0.001 +19450420, -0.06, -0.03, 0.09, 0.001 +19450421, 0.30, 0.23, 0.35, 0.001 +19450423, 0.48, 0.05, 0.18, 0.001 +19450424, 0.47, -0.18, 0.43, 0.001 +19450425, -0.16, -0.07, -0.11, 0.001 +19450426, -0.30, -0.10, -0.56, 0.001 +19450427, 0.42, 0.20, 0.63, 0.001 +19450428, 0.47, 0.05, 0.16, 0.001 +19450430, 0.24, 0.27, -0.65, 0.001 +19450501, -0.42, -0.41, -0.80, 0.001 +19450502, -0.10, -0.16, -0.19, 0.001 +19450503, 0.68, 0.33, 0.26, 0.001 +19450504, 0.41, 0.11, -0.03, 0.001 +19450505, 0.23, 0.41, -0.33, 0.001 +19450507, 0.00, 0.35, -0.27, 0.001 +19450508, -0.08, 0.25, 0.51, 0.001 +19450509, -0.86, -0.37, -0.60, 0.001 +19450510, -1.12, -0.08, -0.53, 0.001 +19450511, 0.15, 0.41, 0.39, 0.001 +19450512, 0.57, -0.02, 0.48, 0.001 +19450514, -0.35, -0.02, -0.22, 0.001 +19450515, 0.27, 0.14, 0.08, 0.001 +19450516, 0.36, 0.34, 0.31, 0.001 +19450517, 0.49, -0.05, 0.47, 0.001 +19450518, 0.52, 0.08, 0.04, 0.001 +19450519, 0.15, 0.17, 0.08, 0.001 +19450521, -0.39, -0.17, -0.15, 0.001 +19450522, -0.10, 0.24, -0.13, 0.001 +19450523, -0.81, -0.27, -0.01, 0.001 +19450524, 0.07, -0.07, 0.42, 0.001 +19450525, 0.67, 0.40, 0.39, 0.001 +19450526, 0.47, 0.01, 0.08, 0.001 +19450528, 0.78, 0.01, 0.26, 0.001 +19450529, 0.56, -0.17, 0.21, 0.001 +19450531, -0.42, 0.03, -0.35, 0.001 +19450601, 0.15, 0.00, 0.82, 0.001 +19450602, 0.09, 0.10, 0.44, 0.001 +19450604, 0.02, 0.35, 0.04, 0.001 +19450605, 0.09, 0.06, -0.11, 0.001 +19450606, -0.46, 0.14, -0.17, 0.001 +19450607, 0.12, 0.36, 0.38, 0.001 +19450608, -0.04, 0.64, 0.24, 0.001 +19450609, 0.02, 0.16, 0.10, 0.001 +19450611, -0.27, 0.06, -0.33, 0.001 +19450612, 0.13, 0.15, 0.29, 0.001 +19450613, 0.42, 0.28, 0.14, 0.001 +19450614, 0.49, 0.27, 0.76, 0.001 +19450615, 0.24, 0.29, 0.52, 0.001 +19450616, 0.11, -0.25, 1.02, 0.001 +19450618, -0.27, 0.13, 0.28, 0.001 +19450619, 0.11, -0.13, 0.37, 0.001 +19450620, 0.55, 0.08, 0.31, 0.001 +19450621, 0.46, 0.15, 0.51, 0.001 +19450622, -0.06, 0.03, -0.28, 0.001 +19450623, 0.16, 0.17, -0.08, 0.001 +19450625, 0.42, 0.02, 0.37, 0.001 +19450626, 0.19, 0.09, 0.06, 0.001 +19450627, -0.03, 0.12, -0.33, 0.001 +19450628, -2.00, -0.85, -1.61, 0.001 +19450629, -0.85, -0.01, -0.06, 0.001 +19450630, 0.60, 0.67, 0.60, 0.001 +19450702, 0.41, 0.04, -0.03, 0.001 +19450703, 0.05, 0.10, 0.19, 0.001 +19450705, -1.28, -0.32, -0.76, 0.001 +19450706, 0.30, -0.55, 0.11, 0.001 +19450709, 0.91, -0.15, 0.46, 0.001 +19450710, 0.35, 0.39, 0.00, 0.001 +19450711, -0.39, -0.03, -0.46, 0.001 +19450712, 0.19, -0.14, 0.32, 0.001 +19450713, -0.34, -0.24, -0.45, 0.001 +19450716, -0.73, -0.04, -0.55, 0.001 +19450717, -2.05, -0.65, -1.17, 0.001 +19450718, -0.35, -0.18, 0.15, 0.001 +19450719, 0.65, 0.44, 0.18, 0.001 +19450720, 0.01, 0.03, -0.13, 0.001 +19450723, -0.81, -0.21, -0.53, 0.001 +19450724, 0.11, -0.26, 0.04, 0.001 +19450725, 0.92, 0.14, 0.32, 0.001 +19450726, -1.80, -0.04, -1.33, 0.001 +19450727, 0.33, -0.04, 0.66, 0.001 +19450730, 0.91, 0.23, 0.36, 0.001 +19450731, 0.44, -0.01, -0.06, 0.001 +19450801, 0.06, -0.12, -0.06, 0.001 +19450802, -0.34, -0.11, 0.00, 0.001 +19450803, 0.50, -0.03, 0.13, 0.001 +19450806, 0.11, 0.06, -0.59, 0.001 +19450807, -1.32, -0.30, -0.77, 0.001 +19450808, 0.30, 0.12, 0.04, 0.001 +19450809, 1.70, 0.45, 0.30, 0.001 +19450810, -0.01, 0.55, -1.37, 0.001 +19450813, -0.90, 0.13, -1.15, 0.001 +19450814, 0.69, 0.46, -0.18, 0.001 +19450817, -0.35, 0.00, -1.14, 0.001 +19450820, -1.34, -0.39, -0.87, 0.001 +19450821, 0.29, -0.16, 0.03, 0.001 +19450822, 0.68, 0.16, 0.16, 0.001 +19450823, 1.77, 0.08, 0.62, 0.001 +19450824, 1.20, 0.23, -0.01, 0.001 +19450827, 1.49, 0.06, 0.59, 0.001 +19450828, 0.23, -0.01, -0.09, 0.001 +19450829, 0.00, 0.02, -0.09, 0.001 +19450830, 0.34, 0.11, 0.34, 0.001 +19450831, 1.01, 0.25, 0.04, 0.001 +19450904, 0.07, 0.17, -0.20, 0.001 +19450905, 0.08, -0.23, -0.23, 0.001 +19450906, 1.16, -0.06, -0.04, 0.001 +19450907, 0.15, 0.44, -0.73, 0.001 +19450908, 0.08, -0.17, -0.18, 0.001 +19450910, 0.23, 0.12, 0.19, 0.001 +19450911, 0.36, -0.06, 0.26, 0.001 +19450912, 0.56, 0.13, 0.15, 0.001 +19450913, 0.06, 0.12, 0.26, 0.001 +19450914, -0.44, -0.11, -0.07, 0.001 +19450915, -1.39, -0.16, -0.32, 0.001 +19450917, -0.44, 0.13, 0.09, 0.001 +19450918, 1.82, 0.44, 0.37, 0.001 +19450919, 0.99, 0.53, 0.12, 0.001 +19450920, 0.47, 0.00, 0.09, 0.001 +19450921, -0.32, 0.18, 0.20, 0.001 +19450922, -0.12, -0.11, 0.00, 0.001 +19450924, 0.06, 0.06, 0.28, 0.001 +19450925, 0.15, 0.19, 0.43, 0.001 +19450926, -0.10, -0.02, -0.09, 0.001 +19450927, -0.20, -0.19, 0.00, 0.001 +19450928, 0.86, 0.30, 0.12, 0.001 +19450929, 0.62, -0.02, -0.28, 0.001 +19451001, 0.84, -0.03, 0.48, 0.001 +19451002, 0.14, -0.06, -0.30, 0.001 +19451003, 0.00, 0.10, -0.31, 0.001 +19451004, 0.06, 0.26, -0.27, 0.001 +19451005, 0.43, 0.04, -0.04, 0.001 +19451006, 0.51, -0.09, 0.22, 0.001 +19451008, 0.50, 0.36, 0.40, 0.001 +19451009, 0.23, -0.05, 0.16, 0.001 +19451010, 0.43, 0.28, 0.30, 0.001 +19451011, 0.01, 0.25, 0.14, 0.001 +19451015, 0.35, 0.01, 0.06, 0.001 +19451016, 0.00, 0.18, 0.34, 0.001 +19451017, 0.36, 0.07, 0.29, 0.001 +19451018, 0.24, 0.16, 0.20, 0.001 +19451019, -0.84, -0.27, -0.92, 0.001 +19451020, 0.26, -0.12, 0.64, 0.001 +19451022, 0.49, 0.10, 0.00, 0.001 +19451023, -0.75, -0.07, -0.35, 0.001 +19451024, -1.21, -0.17, -0.25, 0.001 +19451025, 0.58, 0.43, 0.22, 0.001 +19451026, 0.54, 0.52, 0.12, 0.001 +19451029, -0.71, -0.04, 0.04, 0.001 +19451030, -0.06, 0.00, 0.42, 0.001 +19451031, 1.44, 0.43, 0.52, 0.001 +19451101, 1.26, 0.15, 0.14, 0.001 +19451102, 0.15, 0.38, -0.50, 0.001 +19451103, 0.15, 0.32, 0.19, 0.001 +19451105, 0.60, 0.36, 0.43, 0.001 +19451107, 1.18, 0.16, 0.11, 0.001 +19451108, -0.11, 0.24, -0.36, 0.001 +19451109, 0.03, 0.12, 0.40, 0.001 +19451110, 0.04, -0.06, 0.29, 0.001 +19451113, -0.33, -0.23, -0.01, 0.001 +19451114, -0.30, -0.01, 0.45, 0.001 +19451115, 0.74, 0.27, 0.64, 0.001 +19451116, 0.73, 0.21, -0.04, 0.001 +19451117, 0.09, 0.16, 0.48, 0.001 +19451119, -0.14, 0.02, 0.59, 0.001 +19451120, 0.49, 0.08, 0.85, 0.001 +19451121, -1.15, 0.16, -0.33, 0.001 +19451123, -0.96, 0.20, -0.28, 0.001 +19451124, -0.68, -0.03, -0.10, 0.001 +19451126, 1.28, 0.05, 0.68, 0.001 +19451127, 1.28, -0.06, 0.43, 0.001 +19451128, -0.18, 0.54, -0.16, 0.001 +19451129, 0.11, 0.52, -0.19, 0.001 +19451130, 1.05, 0.38, 0.45, 0.001 +19451201, 0.59, 0.53, -0.12, 0.001 +19451203, 0.88, 0.35, -0.32, 0.001 +19451204, -0.10, 0.46, 0.04, 0.001 +19451205, 0.11, 0.29, -0.10, 0.001 +19451206, 0.72, 0.45, -0.39, 0.001 +19451207, 0.31, 0.18, 0.04, 0.001 +19451208, 0.45, 0.20, 0.07, 0.001 +19451210, 0.28, 0.47, 0.22, 0.001 +19451211, -0.19, 0.01, -0.34, 0.001 +19451212, -1.46, -0.42, -0.69, 0.001 +19451213, -0.39, -0.33, 0.03, 0.001 +19451214, 0.22, 0.22, 0.06, 0.001 +19451215, 0.35, 0.20, 0.27, 0.001 +19451217, -2.56, -1.15, -1.30, 0.001 +19451218, 0.72, -0.10, 0.54, 0.001 +19451219, 0.15, 0.64, -0.15, 0.001 +19451220, -0.57, -0.11, -0.11, 0.001 +19451221, -0.09, 0.08, -0.07, 0.001 +19451222, 1.04, 0.33, 0.26, 0.001 +19451226, 1.20, 0.23, 0.26, 0.001 +19451227, -0.64, 0.06, 0.21, 0.001 +19451228, 0.07, -0.15, -0.05, 0.001 +19451229, 0.27, -0.13, -0.19, 0.001 +19451231, -0.03, -0.13, -0.45, 0.001 +19460102, -0.51, -0.07, -0.29, 0.001 +19460103, -0.27, -0.45, -0.39, 0.001 +19460104, -0.17, 0.41, 0.33, 0.001 +19460105, 0.35, 0.04, 0.11, 0.001 +19460107, 0.13, 0.22, 0.10, 0.001 +19460108, 2.10, 0.67, 0.85, 0.001 +19460109, 1.46, 0.31, 0.12, 0.001 +19460110, 0.62, 0.06, -0.08, 0.001 +19460111, 0.31, 0.13, 0.21, 0.001 +19460112, -0.50, -0.33, -0.04, 0.001 +19460114, 1.45, 0.61, 0.48, 0.001 +19460115, 0.22, 0.03, -0.36, 0.001 +19460116, 0.15, 0.06, 0.45, 0.001 +19460117, -0.26, 0.30, -0.25, 0.001 +19460118, -0.18, 0.17, -0.16, 0.001 +19460119, -0.83, 0.22, 0.31, 0.001 +19460121, -1.76, -0.27, -0.22, 0.001 +19460122, 0.62, 0.58, 0.72, 0.001 +19460123, 1.12, 0.88, 0.15, 0.001 +19460124, 0.41, 0.60, -0.36, 0.001 +19460125, -0.14, -0.05, 0.13, 0.001 +19460126, 0.11, 0.38, 0.26, 0.001 +19460128, 2.29, -0.01, 0.18, 0.001 +19460129, 0.23, -0.01, 0.18, 0.001 +19460130, -0.48, -0.37, -0.41, 0.001 +19460131, -0.25, -0.37, 0.12, 0.001 +19460201, 0.57, -0.12, 0.72, 0.001 +19460202, 0.54, 0.37, -0.15, 0.001 +19460204, -0.54, 0.12, -0.07, 0.001 +19460205, 0.36, -0.06, 0.64, 0.001 +19460206, -0.63, 0.06, -0.28, 0.001 +19460207, -0.05, -0.19, 0.35, 0.001 +19460208, -0.31, 0.01, -0.35, 0.001 +19460209, -0.83, -0.23, -0.50, 0.001 +19460211, -0.59, 0.21, -0.81, 0.001 +19460213, -1.16, -0.50, 0.09, 0.001 +19460214, 0.76, 0.90, 0.17, 0.001 +19460215, 1.87, 0.44, 0.18, 0.001 +19460216, 0.99, 0.12, -0.23, 0.001 +19460218, -1.45, -0.22, -0.59, 0.001 +19460219, -3.30, -1.08, -0.63, 0.001 +19460220, -1.68, -0.17, 0.09, 0.001 +19460221, 2.03, 0.71, 0.33, 0.001 +19460225, -4.47, -1.06, -0.77, 0.001 +19460226, -0.48, -0.44, 0.40, 0.001 +19460227, 2.06, 0.73, 0.41, 0.001 +19460228, 0.55, -0.22, -0.27, 0.001 +19460301, -0.20, 0.40, -0.15, 0.001 +19460302, -0.60, -0.49, -0.31, 0.001 +19460304, -0.10, -0.25, 0.17, 0.001 +19460305, 1.21, 0.08, -0.31, 0.001 +19460306, -0.33, -0.16, 0.03, 0.001 +19460307, 0.77, 0.11, -0.20, 0.001 +19460308, 0.77, 0.15, -0.07, 0.001 +19460309, 0.27, 0.07, 0.00, 0.001 +19460311, -0.89, -0.05, -0.21, 0.001 +19460312, 0.32, -0.29, 0.18, 0.001 +19460313, -1.64, -0.87, -0.38, 0.001 +19460314, -0.06, 0.22, -0.09, 0.001 +19460315, 1.07, 0.15, 0.44, 0.001 +19460316, 1.08, 0.12, 0.01, 0.001 +19460318, 0.73, 0.45, -0.02, 0.001 +19460319, -0.39, 0.37, -0.35, 0.001 +19460320, 0.79, -0.44, 0.33, 0.001 +19460321, 0.59, 0.52, 0.17, 0.001 +19460322, 0.26, 0.16, -0.19, 0.001 +19460323, 0.38, -0.03, 0.10, 0.001 +19460325, 1.50, 0.19, 0.12, 0.001 +19460326, 0.01, 0.19, -0.26, 0.001 +19460327, -0.64, -0.39, 0.08, 0.001 +19460328, -0.12, -0.02, 0.18, 0.001 +19460329, 0.75, 0.25, 0.35, 0.001 +19460330, 0.28, -0.11, 0.03, 0.001 +19460401, -0.11, -0.12, -0.20, 0.001 +19460402, 0.11, 0.31, -0.03, 0.001 +19460403, 1.46, 0.32, 0.27, 0.001 +19460404, 1.07, 0.70, 0.03, 0.001 +19460405, -0.06, 0.12, -0.10, 0.001 +19460406, 0.22, -0.10, -0.09, 0.001 +19460408, 0.05, -0.06, -0.33, 0.001 +19460409, 1.09, -0.09, -0.15, 0.001 +19460410, -0.19, 0.18, 0.13, 0.001 +19460411, -0.26, -0.34, -0.08, 0.001 +19460412, -0.03, 0.15, -0.10, 0.001 +19460413, -0.49, 0.10, -0.17, 0.001 +19460415, 0.00, 0.11, -0.14, 0.001 +19460416, 1.23, 0.02, 0.19, 0.001 +19460417, 0.04, 0.24, 0.10, 0.001 +19460418, 0.38, 0.28, 0.51, 0.001 +19460420, 0.06, 0.23, 0.14, 0.001 +19460422, -0.08, -0.07, -0.21, 0.001 +19460423, -0.25, -0.32, 0.10, 0.001 +19460424, -0.75, -0.19, -0.28, 0.001 +19460425, -0.55, 0.13, -0.11, 0.001 +19460426, 0.23, 0.21, 0.51, 0.001 +19460427, 0.65, 0.17, 0.40, 0.001 +19460429, 0.10, 0.18, 0.01, 0.001 +19460430, 0.28, 0.13, 0.05, 0.001 +19460501, -0.23, -0.11, 0.17, 0.001 +19460502, -0.38, 0.22, -0.22, 0.001 +19460503, -0.78, -0.10, -0.22, 0.001 +19460504, -0.39, -0.25, -0.07, 0.001 +19460506, -0.69, -0.33, 0.39, 0.001 +19460507, 1.50, 0.56, 0.53, 0.001 +19460508, 0.12, 0.31, -0.27, 0.001 +19460509, 0.13, 0.53, 0.32, 0.001 +19460510, 1.52, 0.74, 0.64, 0.001 +19460511, 0.50, -0.08, -0.32, 0.001 +19460513, -0.12, 0.15, -0.37, 0.001 +19460514, -0.24, -0.10, -0.04, 0.001 +19460515, -0.61, -0.32, 0.23, 0.001 +19460516, 0.54, 0.06, -0.03, 0.001 +19460517, -0.06, 0.29, -0.62, 0.001 +19460518, -0.43, -0.15, -0.23, 0.001 +19460520, 0.71, -0.12, 0.31, 0.001 +19460521, 0.29, 0.18, 0.47, 0.001 +19460522, 0.48, 0.02, 0.48, 0.001 +19460523, -0.07, 0.03, -0.03, 0.001 +19460524, -0.02, 0.00, -0.07, 0.001 +19460527, 0.88, 0.20, 0.05, 0.001 +19460528, 1.14, 0.04, 0.29, 0.001 +19460529, 0.18, -0.12, -0.29, 0.001 +19460531, -0.06, -0.23, -0.01, 0.001 +19460603, -0.57, -0.04, -0.15, 0.001 +19460604, -0.57, -0.29, -0.20, 0.001 +19460605, -0.61, -0.14, -0.16, 0.001 +19460606, -0.02, -0.26, 0.08, 0.001 +19460607, 0.13, 0.08, -0.11, 0.001 +19460610, 0.18, 0.31, 0.15, 0.001 +19460611, -0.91, 0.14, -0.11, 0.001 +19460612, 0.08, -0.41, 0.21, 0.001 +19460613, 0.57, -0.09, 0.13, 0.001 +19460614, -0.14, 0.15, -0.06, 0.001 +19460617, 0.08, 0.00, 0.32, 0.001 +19460618, -1.57, -0.32, -0.46, 0.001 +19460619, -0.62, -0.30, 0.26, 0.001 +19460620, -2.06, -0.16, -0.47, 0.001 +19460621, 0.79, -0.08, -0.21, 0.001 +19460624, 0.34, -0.11, 0.18, 0.001 +19460625, -0.64, -0.12, -0.57, 0.001 +19460626, -0.36, -0.71, -0.03, 0.001 +19460627, 1.77, 0.54, 0.52, 0.001 +19460628, 0.24, 0.21, 0.09, 0.001 +19460701, 0.68, 0.08, -0.05, 0.001 +19460702, -0.23, -0.50, 0.09, 0.001 +19460703, -0.11, -0.04, 0.24, 0.001 +19460705, -0.17, -0.03, -0.27, 0.001 +19460708, -0.25, -0.14, 0.17, 0.001 +19460709, 0.37, -0.14, 0.01, 0.001 +19460710, 0.27, -0.01, 0.10, 0.001 +19460711, -0.48, -0.09, -0.23, 0.001 +19460712, -0.85, -0.43, -0.22, 0.001 +19460715, -1.75, -0.66, 0.07, 0.001 +19460716, -0.20, -0.35, 0.47, 0.001 +19460717, 0.50, 0.31, 0.14, 0.001 +19460718, -0.05, 0.38, -0.28, 0.001 +19460719, -0.40, -0.25, -0.13, 0.001 +19460722, -0.39, -0.36, -0.46, 0.001 +19460723, -2.99, -0.93, -0.28, 0.001 +19460724, 0.02, -0.12, 0.30, 0.001 +19460725, 0.71, 0.46, 0.26, 0.001 +19460726, 0.59, 0.32, 0.34, 0.001 +19460729, 0.40, 0.03, 0.22, 0.001 +19460730, 0.60, 0.05, -0.32, 0.001 +19460731, 1.09, 0.48, -0.11, 0.001 +19460801, 0.50, 0.02, 0.08, 0.001 +19460802, 0.09, -0.04, -0.12, 0.001 +19460805, -0.50, 0.23, 0.22, 0.001 +19460806, -0.35, -0.14, 0.05, 0.001 +19460807, 0.84, -0.03, 0.26, 0.001 +19460808, 0.50, -0.17, 0.08, 0.001 +19460809, -0.25, 0.03, -0.03, 0.001 +19460812, 0.13, -0.11, -0.08, 0.001 +19460813, 0.62, -0.30, 0.09, 0.001 +19460814, -0.05, -0.13, -0.07, 0.001 +19460815, -0.96, -0.01, -0.24, 0.001 +19460816, -0.81, -0.27, 0.44, 0.001 +19460819, -0.27, -0.07, 0.29, 0.001 +19460820, 0.61, 0.11, -0.02, 0.001 +19460821, -0.78, 0.06, -0.19, 0.001 +19460822, -1.60, -0.90, -0.39, 0.001 +19460823, 0.58, 0.36, 0.07, 0.001 +19460826, -0.57, 0.02, -0.32, 0.001 +19460827, -3.30, -1.35, 0.10, 0.001 +19460828, -0.95, -0.03, 0.10, 0.001 +19460829, 0.37, 0.83, 0.05, 0.001 +19460830, -0.48, -0.01, 0.30, 0.001 +19460903, -6.90, -1.74, -0.91, 0.001 +19460904, -0.76, -1.05, -0.27, 0.001 +19460905, 3.49, 0.89, 0.20, 0.001 +19460906, -1.09, 0.18, -0.19, 0.001 +19460909, -5.29, -1.78, -0.67, 0.001 +19460910, -2.52, -0.58, -0.31, 0.001 +19460911, 2.95, -0.05, 0.37, 0.001 +19460912, 0.12, 0.45, 0.49, 0.001 +19460913, 1.85, 0.38, -0.12, 0.001 +19460916, 0.75, 0.55, 0.35, 0.001 +19460917, -0.68, -0.31, -0.06, 0.001 +19460918, -3.19, -1.43, -0.56, 0.001 +19460919, -2.91, -0.68, -0.87, 0.001 +19460920, 2.37, -0.02, 0.31, 0.001 +19460923, -1.60, 0.86, 0.13, 0.001 +19460924, 1.72, -0.98, 0.36, 0.001 +19460925, 2.38, 0.94, -0.12, 0.001 +19460926, 1.09, -0.05, 0.32, 0.001 +19460927, -0.69, 0.13, -0.03, 0.001 +19460930, -1.08, -0.34, -0.40, 0.001 +19461001, -0.32, 0.05, 0.07, 0.001 +19461002, 0.95, -0.14, -0.02, 0.001 +19461003, -0.44, -0.35, -0.15, 0.001 +19461004, -1.12, 0.08, 0.19, 0.001 +19461005, -0.66, 0.31, -0.03, 0.001 +19461007, -0.10, -0.46, 0.48, 0.001 +19461008, -1.09, 0.36, -0.16, 0.001 +19461009, -2.86, -1.02, -0.11, 0.001 +19461010, 1.23, -0.57, 0.71, 0.001 +19461011, 2.07, 0.65, 0.36, 0.001 +19461014, 0.95, 0.24, -0.24, 0.001 +19461015, 3.84, 0.63, 0.47, 0.001 +19461016, -0.22, 1.10, -0.21, 0.001 +19461017, -1.75, -0.69, -0.30, 0.001 +19461018, -0.25, -0.08, 0.30, 0.001 +19461019, -0.16, -0.02, 0.22, 0.001 +19461021, 0.25, -0.08, 0.37, 0.001 +19461022, -0.60, -0.04, 0.15, 0.001 +19461023, -0.91, -0.23, -0.18, 0.001 +19461024, 0.11, 0.22, 0.60, 0.001 +19461025, -0.50, -0.15, 0.34, 0.001 +19461026, -0.08, 0.29, -0.18, 0.001 +19461028, -1.75, 0.12, -0.43, 0.001 +19461029, -0.91, -0.26, 0.11, 0.001 +19461030, -0.06, -0.56, 0.60, 0.001 +19461031, 3.23, 0.79, 0.58, 0.001 +19461101, 1.85, 1.00, 0.10, 0.001 +19461102, 0.62, 0.02, 0.17, 0.001 +19461104, 0.76, 0.01, -0.20, 0.001 +19461106, -3.71, 0.24, -0.73, 0.001 +19461107, 0.44, -0.57, 0.54, 0.001 +19461108, 0.58, -0.08, 0.62, 0.001 +19461109, 0.98, 0.29, 0.56, 0.001 +19461112, -0.45, 0.23, -0.80, 0.001 +19461113, -0.79, -0.61, 0.57, 0.001 +19461114, 0.55, 0.10, 0.04, 0.001 +19461115, -0.93, -0.07, -0.09, 0.001 +19461116, -0.08, -0.07, 0.05, 0.001 +19461118, -0.92, -0.23, -0.23, 0.001 +19461119, -0.42, -0.40, 0.09, 0.001 +19461120, -0.67, -0.21, 0.09, 0.001 +19461121, -1.74, -0.46, -0.32, 0.001 +19461122, -0.51, -0.01, 0.39, 0.001 +19461123, 1.61, 0.37, 0.21, 0.001 +19461125, -0.29, -0.14, 0.27, 0.001 +19461126, 1.28, -0.14, 0.31, 0.001 +19461127, 0.89, 0.18, -0.20, 0.001 +19461129, 1.02, -0.18, 0.27, 0.001 +19461130, 0.07, 0.37, -0.13, 0.001 +19461202, -1.54, -0.20, -0.25, 0.001 +19461203, 0.38, -0.27, 0.31, 0.001 +19461204, 1.76, 0.17, -0.21, 0.001 +19461205, -0.55, -0.28, -0.03, 0.001 +19461206, 0.44, 0.12, -0.11, 0.001 +19461207, 0.81, 0.99, 0.35, 0.001 +19461209, 3.11, -0.29, -0.31, 0.001 +19461210, -0.05, 0.15, -0.28, 0.001 +19461211, 0.15, -0.44, -0.03, 0.001 +19461212, -1.15, -0.02, -0.28, 0.001 +19461213, 0.16, -0.45, 0.31, 0.001 +19461214, 0.58, 0.18, -0.09, 0.001 +19461216, -0.08, 0.30, -0.15, 0.001 +19461217, -0.41, 0.10, -0.06, 0.001 +19461218, 0.23, -0.53, -0.02, 0.001 +19461219, 1.47, 0.68, -0.20, 0.001 +19461220, 0.30, 0.55, -0.24, 0.001 +19461221, 0.21, 0.13, 0.18, 0.001 +19461223, -0.75, 0.04, -0.08, 0.001 +19461224, -0.16, -0.05, 0.19, 0.001 +19461226, -0.79, -0.09, -0.14, 0.001 +19461227, -0.15, -0.55, -0.12, 0.001 +19461228, 0.38, 0.22, 0.05, 0.001 +19461230, -0.14, -0.26, -0.10, 0.001 +19461231, 0.75, -0.12, -0.03, 0.001 +19470102, -0.58, 0.59, 0.07, 0.001 +19470103, 0.14, -0.45, -0.63, 0.001 +19470104, 0.28, 0.58, 0.06, 0.001 +19470106, 0.84, 0.23, -0.07, 0.001 +19470107, -0.72, -0.35, 0.02, 0.001 +19470108, 0.17, -0.24, -0.21, 0.001 +19470109, 0.21, 0.31, -0.16, 0.001 +19470110, -1.21, -0.50, 0.01, 0.001 +19470111, -1.30, -0.11, -0.10, 0.001 +19470113, -1.62, -0.78, -0.03, 0.001 +19470114, 0.32, 0.07, 0.07, 0.001 +19470115, -0.52, 0.13, 0.00, 0.001 +19470116, -0.09, -0.52, 0.15, 0.001 +19470117, 1.70, 0.53, 0.16, 0.001 +19470118, 1.07, 0.99, -0.36, 0.001 +19470120, -1.10, -0.02, 0.24, 0.001 +19470121, -0.33, -0.21, -0.04, 0.001 +19470122, 0.29, 0.16, 0.21, 0.001 +19470123, 0.81, 0.33, -0.07, 0.001 +19470124, 0.28, 0.42, 0.07, 0.001 +19470125, -0.04, 0.14, -0.42, 0.001 +19470127, 0.70, -0.40, -0.06, 0.001 +19470128, 0.66, 0.34, 0.02, 0.001 +19470129, 1.16, 0.29, 0.33, 0.001 +19470130, -0.17, 0.35, -0.05, 0.001 +19470131, 0.37, 0.32, 0.08, 0.001 +19470201, 0.59, 0.38, 0.69, 0.001 +19470203, 0.31, 0.04, 0.24, 0.001 +19470204, 0.09, -0.23, -0.62, 0.001 +19470205, 0.24, -0.20, -0.35, 0.001 +19470206, -0.18, -0.06, -0.14, 0.001 +19470207, 1.42, 0.35, 0.95, 0.001 +19470208, 0.37, 0.26, -0.26, 0.001 +19470210, -0.70, 0.05, -0.65, 0.001 +19470211, 0.45, 0.23, -0.02, 0.001 +19470213, -1.03, 0.06, 0.13, 0.001 +19470214, -0.19, 0.05, 0.14, 0.001 +19470215, -0.01, 0.24, -0.20, 0.001 +19470217, 0.15, -0.10, 0.04, 0.001 +19470218, -0.14, -0.03, 0.20, 0.001 +19470219, -0.78, -0.27, -0.15, 0.001 +19470220, 0.21, -0.10, 0.15, 0.001 +19470221, 0.37, 0.27, 0.01, 0.001 +19470224, -0.68, -0.06, 0.10, 0.001 +19470225, -1.34, -0.83, -0.10, 0.001 +19470226, -1.13, -0.22, -0.10, 0.001 +19470227, 1.23, 0.61, 0.07, 0.001 +19470228, -0.37, 0.29, 0.03, 0.001 +19470301, 0.04, -0.04, -0.02, 0.001 +19470303, -0.36, -0.22, 0.00, 0.001 +19470304, -0.05, 0.03, 0.36, 0.001 +19470305, 1.11, 0.07, 0.11, 0.001 +19470306, 0.41, -0.11, 0.03, 0.001 +19470307, -2.95, -0.26, -0.25, 0.001 +19470308, -0.51, -0.43, 0.00, 0.001 +19470310, -0.44, 0.05, -0.06, 0.001 +19470311, -0.92, -0.50, 0.21, 0.001 +19470312, 0.73, 0.11, 0.33, 0.001 +19470313, -0.04, 0.22, -0.05, 0.001 +19470314, -1.18, -0.55, 0.11, 0.001 +19470315, -0.12, 0.00, -0.14, 0.001 +19470317, 0.34, -0.07, -0.15, 0.001 +19470318, 0.94, -0.24, 0.16, 0.001 +19470319, 0.54, 0.20, -0.10, 0.001 +19470320, -0.22, -0.26, -0.08, 0.001 +19470321, 0.92, -0.43, 0.10, 0.001 +19470322, 0.24, 0.24, 0.02, 0.001 +19470324, -0.65, 0.16, -0.13, 0.001 +19470325, -0.66, -0.13, 0.02, 0.001 +19470326, 1.11, -0.28, 0.15, 0.001 +19470327, 1.32, 0.54, 0.07, 0.001 +19470328, -0.27, 0.32, -0.02, 0.001 +19470329, -0.21, 0.07, -0.06, 0.001 +19470331, -0.71, -0.08, 0.01, 0.001 +19470401, 0.11, -0.32, 0.28, 0.001 +19470402, 0.04, 0.05, -0.05, 0.001 +19470403, -0.33, -0.19, -0.06, 0.001 +19470405, -0.03, 0.00, 0.35, 0.001 +19470407, -0.90, -0.31, -0.16, 0.001 +19470408, -1.23, -0.32, -0.42, 0.001 +19470409, -0.10, -0.08, 0.01, 0.001 +19470410, 0.14, 0.15, 0.14, 0.001 +19470411, -0.67, -0.44, -0.47, 0.001 +19470412, -1.07, -0.37, 0.12, 0.001 +19470414, -2.95, -1.33, -0.15, 0.001 +19470415, -0.03, -0.42, 0.11, 0.001 +19470416, 0.96, 0.40, -0.03, 0.001 +19470417, 0.11, 0.26, -0.05, 0.001 +19470418, -1.20, -0.62, -0.15, 0.001 +19470419, 1.11, -0.50, 0.38, 0.001 +19470421, 0.79, 0.93, 0.46, 0.001 +19470422, 0.58, -0.25, -0.14, 0.001 +19470423, 0.09, 0.26, 0.20, 0.001 +19470424, -0.55, -0.36, 0.16, 0.001 +19470425, -0.83, -0.24, 0.21, 0.001 +19470426, 0.10, -0.13, -0.15, 0.001 +19470428, -0.05, 0.12, 0.08, 0.001 +19470429, -0.15, -0.55, 0.24, 0.001 +19470430, 1.24, 0.11, 0.02, 0.001 +19470501, 0.85, 0.06, 0.13, 0.001 +19470502, 0.48, 0.09, -0.53, 0.001 +19470503, 0.21, -0.20, -0.11, 0.001 +19470505, 0.02, -0.05, 0.05, 0.001 +19470506, -1.00, -0.46, 0.03, 0.001 +19470507, -0.06, -0.67, 0.13, 0.001 +19470508, -0.49, 0.02, -0.05, 0.001 +19470509, -0.19, -0.62, 0.09, 0.001 +19470510, 0.20, 0.08, 0.13, 0.001 +19470512, -1.09, -0.16, -0.08, 0.001 +19470513, -1.71, -0.59, -0.33, 0.001 +19470514, -0.47, -0.38, 0.12, 0.001 +19470515, 0.75, 0.19, -0.25, 0.001 +19470516, -1.98, -0.90, -0.04, 0.001 +19470517, -1.47, -0.39, -0.60, 0.001 +19470519, 0.05, -0.74, 0.25, 0.001 +19470520, 0.52, 0.51, -0.34, 0.001 +19470521, 1.44, -0.31, 0.42, 0.001 +19470522, 0.96, 1.04, 0.44, 0.001 +19470523, 0.39, 0.19, 0.06, 0.001 +19470524, 0.00, -0.14, 0.32, 0.001 +19470526, -0.55, 0.11, -0.33, 0.001 +19470527, -0.11, -0.44, 0.41, 0.001 +19470528, 1.61, 0.23, 0.50, 0.001 +19470529, 0.79, 0.28, -0.01, 0.001 +19470602, -0.98, -0.30, 0.20, 0.001 +19470603, 1.03, -0.22, -0.32, 0.001 +19470604, -0.34, 0.06, 0.05, 0.001 +19470605, -0.02, -0.27, -0.08, 0.001 +19470606, 0.52, -0.08, 0.07, 0.001 +19470609, -0.36, -0.04, -0.21, 0.001 +19470610, 0.68, -0.52, 0.01, 0.001 +19470611, 2.29, 0.68, 0.49, 0.001 +19470612, -0.15, 0.49, -0.45, 0.001 +19470613, 1.02, 0.06, -0.21, 0.001 +19470616, 0.00, -0.02, -0.15, 0.001 +19470617, -0.27, -0.09, -0.18, 0.001 +19470618, -0.06, 0.08, -0.04, 0.001 +19470619, 1.00, 0.07, 0.09, 0.001 +19470620, 0.50, 0.48, 0.39, 0.001 +19470623, 0.54, 0.22, -0.32, 0.001 +19470624, -1.76, 0.11, -0.19, 0.001 +19470625, 0.71, -0.82, 0.13, 0.001 +19470626, 0.44, -0.07, 0.41, 0.001 +19470627, 0.05, 0.06, 0.05, 0.001 +19470630, 0.39, -0.15, -0.30, 0.001 +19470701, 1.47, -0.09, 1.00, 0.001 +19470702, 0.17, 0.83, 0.20, 0.001 +19470703, 1.08, 0.23, 0.63, 0.001 +19470707, 0.26, 0.28, -0.18, 0.001 +19470708, 0.41, 0.63, 0.14, 0.001 +19470709, -0.68, 0.08, -0.27, 0.001 +19470710, 0.78, -0.06, 0.48, 0.001 +19470711, 1.14, 0.45, 0.34, 0.001 +19470714, 0.78, 0.63, 0.21, 0.001 +19470715, -0.16, -0.12, -0.18, 0.001 +19470716, -0.12, 0.00, -0.16, 0.001 +19470717, -0.67, 0.02, 0.07, 0.001 +19470718, 0.21, -0.48, -0.05, 0.001 +19470721, -0.16, 0.00, 0.47, 0.001 +19470722, 0.09, -0.14, 0.18, 0.001 +19470723, 0.69, 0.14, 0.33, 0.001 +19470724, 1.05, 0.14, 0.70, 0.001 +19470725, -0.08, 0.29, -0.16, 0.001 +19470728, -0.76, -0.12, -0.51, 0.001 +19470729, -2.03, -0.78, -0.87, 0.001 +19470730, -0.65, -0.60, -0.25, 0.001 +19470731, 1.32, 0.13, 0.63, 0.001 +19470801, 0.24, -0.16, -0.13, 0.001 +19470804, -1.04, -0.18, -0.47, 0.001 +19470805, 0.26, -0.03, 0.19, 0.001 +19470806, -0.38, -0.12, -0.20, 0.001 +19470807, 0.12, -0.43, 0.25, 0.001 +19470808, -1.07, 0.04, -0.53, 0.001 +19470811, -0.51, 0.03, 0.24, 0.001 +19470812, 0.85, 0.50, 0.63, 0.001 +19470813, -0.07, 0.23, -0.33, 0.001 +19470814, 0.20, -0.01, 0.55, 0.001 +19470815, 0.82, 0.06, 0.58, 0.001 +19470818, -0.26, 0.19, -0.01, 0.001 +19470819, -0.30, -0.17, -0.29, 0.001 +19470820, -0.43, -0.06, -0.27, 0.001 +19470821, 0.29, -0.06, 0.02, 0.001 +19470822, 0.22, -0.02, 0.16, 0.001 +19470825, -1.49, -0.07, -0.54, 0.001 +19470826, 0.03, -0.01, 0.38, 0.001 +19470827, 0.17, 0.31, -0.23, 0.001 +19470828, -0.07, 0.38, 0.10, 0.001 +19470829, 0.70, -0.10, 0.12, 0.001 +19470902, 0.50, 0.03, 0.05, 0.003 +19470903, -0.10, 0.44, 0.11, 0.003 +19470904, -1.30, -0.18, -0.93, 0.003 +19470905, -0.21, -0.10, 0.42, 0.003 +19470908, -1.34, 0.26, -0.70, 0.003 +19470909, 0.16, -0.15, 0.69, 0.003 +19470910, 0.90, -0.02, 0.44, 0.003 +19470911, 0.37, 0.42, -0.06, 0.003 +19470912, -0.28, 0.11, -0.36, 0.003 +19470915, -0.40, 0.00, 0.10, 0.003 +19470916, 0.82, -0.01, 0.78, 0.003 +19470917, 1.43, 0.62, 0.48, 0.003 +19470918, -0.30, 0.24, -0.53, 0.003 +19470919, -0.20, -0.11, -0.24, 0.003 +19470922, -0.13, -0.07, 0.24, 0.003 +19470923, -1.27, 0.24, -0.45, 0.003 +19470924, 0.26, 0.04, 0.61, 0.003 +19470925, -0.56, 0.14, -0.13, 0.003 +19470926, -0.14, -0.01, 0.00, 0.003 +19470929, 0.44, -0.31, 0.46, 0.003 +19470930, 0.86, 0.04, 0.42, 0.003 +19471001, 0.49, 0.49, 0.42, 0.002 +19471002, 0.00, -0.03, -0.07, 0.002 +19471003, 0.67, 0.37, 0.40, 0.002 +19471004, 0.18, 0.20, 0.20, 0.002 +19471006, 0.07, 0.03, -0.28, 0.002 +19471007, -0.02, 0.10, -0.04, 0.002 +19471008, -0.55, 0.33, -0.39, 0.002 +19471009, 0.47, -0.20, 0.37, 0.002 +19471010, 0.32, 0.61, 0.05, 0.002 +19471011, 0.14, 0.54, 0.37, 0.002 +19471014, 1.38, 0.15, 0.63, 0.002 +19471015, 0.36, 0.31, -0.35, 0.002 +19471016, 0.08, -0.02, -0.20, 0.002 +19471017, 0.11, -0.38, -0.07, 0.002 +19471018, 0.44, -0.38, 0.34, 0.002 +19471020, 0.70, 0.16, 0.51, 0.002 +19471021, -0.14, -0.20, -0.12, 0.002 +19471022, -0.26, 0.18, -0.08, 0.002 +19471023, 0.12, -0.08, -0.01, 0.002 +19471024, -1.30, -0.41, -0.80, 0.002 +19471025, 0.14, 0.00, 0.18, 0.002 +19471027, 0.02, -0.30, 0.10, 0.002 +19471028, 0.07, -0.08, -0.08, 0.002 +19471029, -0.41, -0.28, -0.48, 0.002 +19471030, -1.24, -0.79, -0.50, 0.002 +19471031, 0.64, 0.23, 0.05, 0.002 +19471101, 0.22, 0.01, 0.03, 0.003 +19471103, -0.14, -0.20, 0.03, 0.003 +19471105, -0.57, -0.23, -0.39, 0.003 +19471106, 0.05, -0.35, -0.08, 0.003 +19471107, -0.20, 0.18, 0.04, 0.003 +19471108, 0.03, -0.01, -0.01, 0.003 +19471110, 0.35, -0.27, 0.21, 0.003 +19471112, -0.21, -0.12, 0.07, 0.003 +19471113, -0.64, -0.07, -0.36, 0.003 +19471114, 0.04, -0.11, 0.36, 0.003 +19471115, 0.14, -0.07, 0.14, 0.003 +19471117, -0.07, -0.34, 0.32, 0.003 +19471118, 0.76, 0.45, 0.68, 0.003 +19471119, 0.31, 0.39, 0.04, 0.003 +19471120, 0.34, -0.49, 0.26, 0.003 +19471121, -0.34, 0.31, 0.03, 0.003 +19471122, -0.10, 0.08, -0.30, 0.003 +19471124, -0.51, -0.08, -0.17, 0.003 +19471125, -0.30, -0.34, 0.21, 0.003 +19471126, -0.15, -0.05, 0.20, 0.003 +19471128, -0.87, -0.28, -0.06, 0.003 +19471129, -0.15, -0.19, -0.11, 0.003 +19471201, 0.55, -0.23, 0.23, 0.003 +19471202, 0.22, -0.21, 0.36, 0.003 +19471203, -0.74, -0.14, -0.22, 0.003 +19471204, -0.58, -0.16, 0.00, 0.003 +19471205, -1.40, -0.06, -0.30, 0.003 +19471206, 0.02, 0.15, 0.28, 0.003 +19471208, 0.79, -0.09, 0.59, 0.003 +19471209, 0.45, 0.13, 0.49, 0.003 +19471210, 0.23, 0.22, 0.04, 0.003 +19471211, 0.14, -0.48, -0.07, 0.003 +19471212, 0.65, 0.14, 0.44, 0.003 +19471213, 0.64, 0.16, 0.63, 0.003 +19471215, 0.57, 0.21, 0.55, 0.003 +19471216, -0.11, -0.46, 0.03, 0.003 +19471217, 0.33, 0.05, 0.61, 0.003 +19471218, -0.08, -0.14, 0.04, 0.003 +19471219, 0.39, 0.01, 0.03, 0.003 +19471220, 0.83, -0.02, 0.66, 0.003 +19471222, -0.22, 0.00, -0.07, 0.003 +19471223, 0.33, -0.48, 0.47, 0.003 +19471224, -0.07, 0.08, -0.20, 0.003 +19471226, -0.75, -0.55, -0.35, 0.003 +19471227, -0.16, -0.05, -0.24, 0.003 +19471229, -0.41, -0.40, -0.29, 0.003 +19471230, 0.88, -0.12, 0.21, 0.003 +19471231, 0.51, 0.05, -0.27, 0.003 +19480102, 0.41, 0.63, 0.83, 0.003 +19480105, -0.90, 0.74, -0.79, 0.003 +19480106, -0.60, 0.04, -0.28, 0.003 +19480107, 0.60, -0.08, 0.67, 0.003 +19480108, 0.58, 0.26, 0.50, 0.003 +19480109, -0.36, 0.30, 0.08, 0.003 +19480110, 0.06, -0.18, 0.07, 0.003 +19480112, -0.61, 0.07, -0.08, 0.003 +19480113, -1.36, 0.11, -0.89, 0.003 +19480114, -0.12, 0.28, 0.22, 0.003 +19480115, -0.30, 0.29, 0.07, 0.003 +19480116, 0.01, 0.14, 0.51, 0.003 +19480117, -0.05, 0.00, -0.28, 0.003 +19480119, -1.30, -0.34, -0.60, 0.003 +19480120, 0.05, 0.11, 0.46, 0.003 +19480121, -0.98, 0.12, -0.62, 0.003 +19480122, -0.77, -0.01, 0.45, 0.003 +19480123, -0.26, 0.24, 0.11, 0.003 +19480124, 0.03, 0.07, 0.25, 0.003 +19480126, -0.16, -0.07, 0.13, 0.003 +19480127, 0.16, 0.16, 0.40, 0.003 +19480128, 0.80, -0.02, 0.35, 0.003 +19480129, 0.98, -0.19, 0.11, 0.003 +19480130, 0.03, -0.11, -0.23, 0.003 +19480131, 0.10, 0.03, 0.00, 0.003 +19480202, 0.00, 0.05, -0.12, 0.003 +19480203, -0.58, -0.13, -0.26, 0.003 +19480204, -1.82, -0.55, -0.57, 0.003 +19480205, -1.09, -0.09, -0.06, 0.003 +19480206, 0.17, 0.04, 0.24, 0.003 +19480207, 0.62, 0.02, 0.39, 0.003 +19480209, 0.00, -0.05, -0.31, 0.003 +19480210, -2.76, -0.62, -1.18, 0.003 +19480211, -0.27, -0.66, -0.01, 0.003 +19480213, -0.03, 0.17, 0.34, 0.003 +19480214, 0.18, 0.32, 0.22, 0.003 +19480216, 1.29, -0.23, 0.22, 0.003 +19480217, 0.22, 0.11, -0.13, 0.003 +19480218, -0.14, -0.24, 0.09, 0.003 +19480219, -0.22, 0.16, -0.04, 0.003 +19480220, -0.42, -0.28, -0.07, 0.003 +19480221, 0.16, 0.34, 0.24, 0.003 +19480224, 0.14, -0.30, 0.19, 0.003 +19480225, 0.59, 0.11, 0.46, 0.003 +19480226, -0.51, 0.00, -0.12, 0.003 +19480227, -0.44, -0.26, 0.12, 0.003 +19480228, 0.52, 0.34, 0.52, 0.003 +19480301, 0.50, 0.12, 0.42, 0.003 +19480302, 0.58, -0.39, 0.64, 0.003 +19480303, 0.27, 0.02, 0.27, 0.003 +19480304, -0.29, -0.03, -0.53, 0.003 +19480305, 0.12, 0.02, 0.00, 0.003 +19480306, 0.43, 0.18, 0.09, 0.003 +19480308, -0.67, -0.01, 0.07, 0.003 +19480309, -0.61, -0.41, -0.16, 0.003 +19480310, 0.43, 0.27, 0.69, 0.003 +19480311, -0.02, 0.19, -0.02, 0.003 +19480312, 0.01, -0.20, 0.26, 0.003 +19480313, 0.45, 0.02, 0.21, 0.003 +19480315, -0.03, -0.04, -0.07, 0.003 +19480316, -1.66, -0.39, -0.95, 0.003 +19480317, 0.69, -0.16, 0.97, 0.003 +19480318, 0.77, 0.62, 0.59, 0.003 +19480319, 1.61, -0.17, 0.71, 0.003 +19480320, 2.22, 0.36, 0.64, 0.003 +19480322, 0.51, 0.73, -1.23, 0.003 +19480323, 0.06, -0.02, -0.03, 0.003 +19480324, 0.02, -0.04, 0.42, 0.003 +19480325, 0.37, -0.29, 0.41, 0.003 +19480327, -0.19, 0.16, 0.01, 0.003 +19480329, -0.11, -0.31, 0.00, 0.003 +19480330, 0.95, -0.23, 0.36, 0.003 +19480331, 1.46, 0.16, 0.44, 0.003 +19480401, 0.22, -0.31, 0.01, 0.003 +19480402, 0.12, -0.15, -0.53, 0.003 +19480403, 0.12, -0.02, -0.18, 0.003 +19480405, 0.25, 0.06, -0.08, 0.003 +19480406, 0.49, -0.42, 0.24, 0.003 +19480407, -0.21, -0.12, 0.16, 0.003 +19480408, 0.29, -0.23, 0.54, 0.003 +19480409, 0.10, 0.34, 0.49, 0.003 +19480410, 0.09, -0.11, 0.09, 0.003 +19480412, -0.19, 0.17, -0.29, 0.003 +19480413, 0.01, -0.12, 0.08, 0.003 +19480414, 0.01, -0.17, 0.47, 0.003 +19480415, 0.82, 0.13, 0.89, 0.003 +19480416, 0.40, 0.31, -0.10, 0.003 +19480417, -0.07, 0.04, -0.32, 0.003 +19480419, 0.53, -0.09, 1.01, 0.003 +19480420, -0.13, -0.30, -0.28, 0.003 +19480421, 0.45, -0.60, 1.01, 0.003 +19480422, 0.83, -0.24, 0.44, 0.003 +19480423, 0.47, 0.45, 0.45, 0.003 +19480424, -0.11, 0.37, -0.21, 0.003 +19480426, -1.13, 0.05, -1.02, 0.003 +19480427, 0.16, 0.00, 0.57, 0.003 +19480428, 0.25, -0.07, 0.23, 0.003 +19480429, 0.02, -0.19, 0.38, 0.003 +19480430, -0.18, -0.35, -0.05, 0.003 +19480501, -0.24, 0.09, -0.33, 0.003 +19480503, 0.72, -0.35, 0.78, 0.003 +19480504, 0.09, 0.09, 0.05, 0.003 +19480505, -0.57, -0.05, -0.94, 0.003 +19480506, 0.64, 0.01, 0.70, 0.003 +19480507, 0.50, 0.17, -0.37, 0.003 +19480508, 0.26, 0.01, 0.07, 0.003 +19480510, 0.25, -0.58, 0.77, 0.003 +19480511, 0.45, 0.11, -0.34, 0.003 +19480512, 0.19, 0.01, 0.07, 0.003 +19480513, 0.57, 0.31, 0.00, 0.003 +19480514, 2.02, 0.79, 0.22, 0.003 +19480515, 0.95, 0.72, -0.89, 0.003 +19480517, 0.37, 0.44, -0.41, 0.003 +19480518, -0.97, -0.27, -0.25, 0.003 +19480519, 0.18, -0.04, 0.24, 0.003 +19480520, 0.79, 0.46, 0.59, 0.003 +19480521, 0.32, 0.12, 0.08, 0.003 +19480522, 0.18, 0.02, 0.11, 0.003 +19480524, -0.13, -0.14, -0.46, 0.003 +19480525, -0.35, -0.56, -0.55, 0.003 +19480526, 0.85, -0.07, 0.05, 0.003 +19480527, -0.11, -0.22, -0.52, 0.003 +19480528, 0.16, -0.18, 0.18, 0.003 +19480601, 0.17, -0.53, 0.11, 0.004 +19480602, 0.22, -0.38, 0.27, 0.004 +19480603, -0.32, -0.19, -0.40, 0.004 +19480604, -0.75, 0.06, -0.44, 0.004 +19480607, -0.27, -0.39, 0.11, 0.004 +19480608, 1.52, 0.14, 1.43, 0.004 +19480609, 0.52, 0.24, 0.09, 0.004 +19480610, 0.11, -0.21, 0.49, 0.004 +19480611, 0.17, -0.19, 0.11, 0.004 +19480614, 0.02, 0.01, 0.26, 0.004 +19480615, 0.30, -0.52, 0.08, 0.004 +19480616, -0.50, -0.11, -0.07, 0.004 +19480617, -0.11, 0.01, 0.58, 0.004 +19480618, -0.20, -0.18, 0.11, 0.004 +19480621, -0.89, -0.47, -0.35, 0.004 +19480622, -0.07, -0.05, 0.80, 0.004 +19480623, 0.79, 0.64, 0.32, 0.004 +19480624, -0.13, 0.60, -0.13, 0.004 +19480625, -0.36, 0.05, -0.19, 0.004 +19480628, -1.15, -0.32, -0.98, 0.004 +19480629, 0.36, -0.04, 0.26, 0.004 +19480630, 0.50, -0.02, 0.38, 0.004 +19480701, -0.21, 0.03, -0.17, 0.004 +19480702, 0.68, -0.40, 0.61, 0.004 +19480706, 0.12, 0.12, 0.21, 0.004 +19480707, -0.28, 0.01, 0.04, 0.004 +19480708, 0.05, -0.12, 0.22, 0.004 +19480709, 0.57, 0.08, 0.22, 0.004 +19480712, -0.03, 0.26, 0.41, 0.004 +19480713, -0.46, 0.04, 0.05, 0.004 +19480714, 0.13, -0.22, 0.27, 0.004 +19480715, -1.62, 0.23, -1.17, 0.004 +19480716, -1.40, 0.08, -0.38, 0.004 +19480719, -3.17, -0.07, -0.77, 0.004 +19480720, 1.43, -0.20, 0.54, 0.004 +19480721, 0.52, 0.10, -0.18, 0.004 +19480722, 0.63, -0.22, 0.17, 0.004 +19480723, 0.34, -0.02, -0.05, 0.004 +19480726, -0.71, 0.20, -0.46, 0.004 +19480727, 0.86, -0.86, 0.60, 0.004 +19480728, -0.41, 0.42, 0.19, 0.004 +19480729, -0.73, 0.21, -0.12, 0.004 +19480730, -1.44, -0.03, -0.07, 0.004 +19480802, -0.02, -0.27, -0.05, 0.004 +19480803, 0.10, 0.02, 0.19, 0.004 +19480804, 1.29, -0.60, 0.60, 0.004 +19480805, -0.16, 0.17, -0.33, 0.004 +19480806, 0.09, -0.28, 0.37, 0.004 +19480809, -0.81, 0.23, -0.43, 0.004 +19480810, -0.94, 0.17, -0.49, 0.004 +19480811, -0.74, -0.77, -0.35, 0.004 +19480812, 0.36, 0.23, -0.10, 0.004 +19480813, -0.01, 0.08, -0.23, 0.004 +19480816, 0.11, -0.19, -0.10, 0.004 +19480817, 1.02, -0.13, 0.46, 0.004 +19480818, 0.01, 0.30, -0.31, 0.004 +19480819, 0.18, -0.47, 0.30, 0.004 +19480820, 0.67, -0.25, 0.22, 0.004 +19480823, -1.02, 0.32, -0.42, 0.004 +19480824, 0.32, -0.12, 0.45, 0.004 +19480825, -0.17, 0.13, -0.30, 0.004 +19480826, 0.11, -0.18, 0.12, 0.004 +19480827, 0.50, -0.06, 0.30, 0.004 +19480830, -0.45, 0.39, 0.00, 0.004 +19480831, -0.15, 0.15, 0.41, 0.004 +19480901, 1.24, -0.15, 0.57, 0.002 +19480902, 0.68, -0.02, 0.23, 0.002 +19480903, -0.06, -0.13, -0.21, 0.002 +19480907, 0.41, -0.18, 0.39, 0.002 +19480908, -1.45, 0.20, -1.10, 0.002 +19480909, -1.63, 0.04, -0.68, 0.002 +19480910, -0.06, -0.33, -0.01, 0.002 +19480913, -0.74, 0.29, -0.08, 0.002 +19480914, 0.79, -0.38, 0.37, 0.002 +19480915, -0.07, 0.37, -0.17, 0.002 +19480916, 0.04, -0.11, 0.20, 0.002 +19480917, -0.49, -0.02, -0.35, 0.002 +19480920, -1.81, -0.09, -1.11, 0.002 +19480921, 0.61, -0.63, 0.36, 0.002 +19480922, 0.50, 0.12, 0.51, 0.002 +19480923, -0.33, 0.32, -0.34, 0.002 +19480924, 0.17, -0.25, 0.04, 0.002 +19480927, -2.30, 0.22, -1.21, 0.002 +19480928, 0.92, -0.67, 0.42, 0.002 +19480929, 0.96, -0.08, 0.36, 0.002 +19480930, -0.33, 0.20, 0.07, 0.002 +19481001, 1.00, -0.58, 0.21, 0.002 +19481002, 0.52, 0.11, 0.44, 0.002 +19481004, 0.54, -0.03, 0.00, 0.002 +19481005, -0.36, -0.03, -0.38, 0.002 +19481006, 0.33, 0.06, 0.21, 0.002 +19481007, 0.56, -0.08, 0.17, 0.002 +19481008, -0.17, 0.01, -0.17, 0.002 +19481009, 0.06, 0.07, 0.11, 0.002 +19481011, -0.04, -0.18, -0.56, 0.002 +19481013, 0.95, -0.27, 0.63, 0.002 +19481014, 0.32, 0.10, 0.00, 0.002 +19481015, -0.06, 0.02, 0.04, 0.002 +19481016, 0.22, -0.08, 0.24, 0.002 +19481018, 0.27, -0.03, 0.16, 0.002 +19481019, 0.40, -0.10, 0.15, 0.002 +19481020, 0.47, 0.26, 0.20, 0.002 +19481021, 0.13, 0.11, 0.41, 0.002 +19481022, 1.37, -0.12, 0.45, 0.002 +19481023, 0.31, 0.20, 0.13, 0.002 +19481025, -0.54, -0.02, -0.61, 0.002 +19481026, -0.06, -0.15, -0.23, 0.002 +19481027, -0.15, -0.21, -0.57, 0.002 +19481028, -0.67, -0.02, -0.41, 0.002 +19481029, 0.21, -0.35, -0.17, 0.002 +19481030, 0.23, -0.11, 0.12, 0.002 +19481101, 0.78, 0.18, 0.38, 0.002 +19481103, -4.43, -0.77, -1.63, 0.002 +19481104, 1.51, 0.68, 0.14, 0.002 +19481105, -3.94, 0.10, -1.79, 0.002 +19481106, 0.36, 0.03, 0.47, 0.002 +19481108, 0.20, -0.11, 0.29, 0.002 +19481109, -3.01, 0.00, -1.66, 0.002 +19481110, -0.19, -0.36, 0.13, 0.002 +19481112, 0.39, 0.30, 0.08, 0.002 +19481113, 0.24, -0.02, -0.14, 0.002 +19481115, 1.14, -0.20, 0.53, 0.002 +19481116, 0.31, 0.05, 0.02, 0.002 +19481117, -0.31, -0.06, -0.11, 0.002 +19481118, 0.27, 0.11, -0.25, 0.002 +19481119, 0.41, -0.04, 0.34, 0.002 +19481120, 0.17, 0.05, 0.16, 0.002 +19481122, -0.63, 0.00, -0.65, 0.002 +19481123, -0.23, -0.40, -0.05, 0.002 +19481124, -1.48, -0.11, -0.42, 0.002 +19481126, -0.03, -0.07, -0.12, 0.002 +19481127, -0.05, 0.20, -0.08, 0.002 +19481129, -0.70, -0.02, -0.26, 0.002 +19481130, -0.31, -0.12, 0.21, 0.002 +19481201, 1.57, -0.45, 0.73, 0.002 +19481202, 0.36, 0.33, 0.19, 0.002 +19481203, 0.55, -0.23, 0.10, 0.002 +19481204, 0.80, -0.20, 0.41, 0.002 +19481206, 0.13, -0.10, 0.08, 0.002 +19481207, 0.05, -0.03, -0.47, 0.002 +19481208, -0.16, 0.02, -0.27, 0.002 +19481209, -0.27, -0.13, -0.35, 0.002 +19481210, 0.17, -0.25, -0.23, 0.002 +19481211, 0.74, -0.08, 0.60, 0.002 +19481213, -0.05, 0.00, 0.06, 0.002 +19481214, -0.50, -0.24, -0.61, 0.002 +19481215, -0.35, 0.02, -0.35, 0.002 +19481216, -0.24, -0.16, -0.42, 0.002 +19481217, 0.20, -0.08, -0.09, 0.002 +19481218, -0.05, 0.29, -0.16, 0.002 +19481220, 0.10, -0.39, -0.32, 0.002 +19481221, -0.22, -0.02, 0.04, 0.002 +19481222, 0.02, -0.11, 0.12, 0.002 +19481223, 0.09, 0.05, -0.01, 0.002 +19481224, 0.66, -0.09, 0.54, 0.002 +19481227, -0.38, -0.08, -0.76, 0.002 +19481228, -0.71, -0.76, 0.18, 0.002 +19481229, 1.12, -0.20, -0.14, 0.002 +19481230, 0.07, 0.13, -0.49, 0.002 +19481231, -0.47, 0.00, -0.26, 0.002 +19490103, -1.38, 0.77, -0.14, 0.004 +19490104, 0.42, 0.29, 0.81, 0.004 +19490105, 1.01, 0.18, 0.25, 0.004 +19490106, 1.99, 0.14, 0.36, 0.004 +19490107, 0.80, 0.75, 0.15, 0.004 +19490108, 0.05, 0.00, -0.23, 0.004 +19490110, -0.69, 0.12, -0.61, 0.004 +19490111, 0.04, -0.05, 0.02, 0.004 +19490112, -0.07, 0.17, -0.06, 0.004 +19490113, -0.53, 0.01, -0.12, 0.004 +19490114, -0.83, -0.26, -0.22, 0.004 +19490115, 0.20, 0.01, 0.30, 0.004 +19490117, 0.28, -0.20, -0.06, 0.004 +19490118, 0.27, 0.24, -0.02, 0.004 +19490119, 0.29, -0.12, 0.34, 0.004 +19490120, 0.45, -0.03, 0.10, 0.004 +19490121, -0.14, 0.22, -0.04, 0.004 +19490122, 0.15, 0.08, -0.07, 0.004 +19490124, -0.32, 0.04, 0.32, 0.004 +19490125, -0.65, 0.06, -0.17, 0.004 +19490126, -0.30, -0.16, 0.27, 0.004 +19490127, -0.39, 0.00, 0.14, 0.004 +19490128, -0.40, -0.25, -0.39, 0.004 +19490129, 0.17, -0.08, 0.18, 0.004 +19490131, -0.14, -0.12, 0.08, 0.004 +19490201, 0.50, -0.33, -0.10, 0.004 +19490202, 0.18, 0.13, 0.07, 0.004 +19490203, -0.24, 0.02, -0.22, 0.004 +19490204, -1.32, 0.14, -0.58, 0.004 +19490205, -1.48, 0.10, -0.81, 0.004 +19490207, -0.71, -0.08, -0.26, 0.004 +19490208, -0.14, -0.27, 0.43, 0.004 +19490209, 0.59, -0.19, 0.20, 0.004 +19490210, -1.18, 0.18, -0.24, 0.004 +19490211, 0.00, -0.40, 0.16, 0.004 +19490214, 0.16, -0.04, 0.15, 0.004 +19490215, 0.40, -0.12, -0.01, 0.004 +19490216, 0.57, -0.33, 0.06, 0.004 +19490217, 0.85, -0.13, 0.28, 0.004 +19490218, -0.21, 0.23, -0.11, 0.004 +19490219, -0.13, -0.04, -0.09, 0.004 +19490221, -0.25, -0.16, -0.27, 0.004 +19490223, -0.71, -0.03, -0.52, 0.004 +19490224, -0.91, 0.03, -0.31, 0.004 +19490225, -0.18, -0.08, 0.38, 0.004 +19490226, 0.42, 0.00, 0.21, 0.004 +19490228, 0.87, -0.58, 0.68, 0.004 +19490301, 0.52, 0.15, 0.33, 0.004 +19490302, -0.01, 0.05, -0.18, 0.004 +19490303, -0.06, 0.28, -0.34, 0.004 +19490304, 0.22, -0.35, -0.05, 0.004 +19490305, 0.89, -0.07, 0.34, 0.004 +19490307, 0.49, 0.12, 0.24, 0.004 +19490308, 0.35, 0.21, 0.08, 0.004 +19490309, -0.16, 0.00, -0.22, 0.004 +19490310, 0.11, -0.11, -0.04, 0.004 +19490311, 0.92, -0.20, 0.27, 0.004 +19490312, 0.34, 0.26, 0.32, 0.004 +19490314, 0.00, -0.16, -0.05, 0.004 +19490315, -0.63, 0.22, -0.39, 0.004 +19490316, -0.38, -0.05, -0.08, 0.004 +19490317, 0.38, -0.20, 0.29, 0.004 +19490318, -0.22, 0.26, -0.09, 0.004 +19490319, -0.03, 0.14, 0.00, 0.004 +19490321, -0.21, 0.11, 0.32, 0.004 +19490322, -0.75, -0.14, -1.03, 0.004 +19490323, 0.95, -0.63, 0.67, 0.004 +19490324, 0.36, 0.46, 0.33, 0.004 +19490325, -0.50, -0.01, -0.34, 0.004 +19490326, 0.07, 0.14, 0.05, 0.004 +19490328, 0.10, 0.03, -0.16, 0.004 +19490329, 1.76, 0.51, 1.12, 0.004 +19490330, 0.27, 1.07, 0.26, 0.004 +19490331, -0.79, 0.27, -0.33, 0.004 +19490401, -0.64, 0.01, -0.22, 0.004 +19490402, 0.30, 0.12, 0.06, 0.004 +19490404, 0.12, -0.28, 0.01, 0.004 +19490405, 0.05, 0.05, -0.02, 0.004 +19490406, -0.20, 0.01, 0.12, 0.004 +19490407, -0.26, -0.25, -0.13, 0.004 +19490408, 0.15, -0.32, 0.30, 0.004 +19490409, 0.28, 0.20, 0.30, 0.004 +19490411, -0.21, 0.19, -0.35, 0.004 +19490412, 0.10, 0.06, 0.04, 0.004 +19490413, -0.05, -0.11, -0.27, 0.004 +19490414, -0.18, 0.00, -0.10, 0.004 +19490416, 0.30, -0.07, 0.02, 0.004 +19490418, 0.11, -0.41, -0.43, 0.004 +19490419, -0.32, 0.11, -0.21, 0.004 +19490420, -0.19, -0.07, 0.00, 0.004 +19490421, -1.47, 0.00, -0.66, 0.004 +19490422, 0.05, -0.11, 0.22, 0.004 +19490423, 0.40, 0.08, 0.22, 0.004 +19490425, -0.27, 0.20, 0.18, 0.004 +19490426, 0.35, -0.02, 0.28, 0.004 +19490427, 0.06, -0.05, -0.38, 0.004 +19490428, -0.52, 0.16, -0.36, 0.004 +19490429, -0.02, -0.34, -0.07, 0.004 +19490430, 0.20, -0.04, 0.27, 0.004 +19490502, 0.15, -0.19, -0.08, 0.004 +19490503, 0.37, -0.58, -0.16, 0.004 +19490504, 0.95, 0.02, 0.20, 0.004 +19490505, 0.04, 0.25, -0.19, 0.004 +19490506, -0.37, -0.10, -0.19, 0.004 +19490507, -0.03, 0.15, -0.05, 0.004 +19490509, -0.24, -0.17, -0.38, 0.004 +19490510, -0.17, -0.12, -0.21, 0.004 +19490511, 0.15, 0.10, 0.10, 0.004 +19490512, 0.26, 0.01, 0.18, 0.004 +19490513, 0.11, -0.01, 0.37, 0.004 +19490514, 0.26, 0.24, 0.60, 0.004 +19490516, 0.24, 0.07, -0.07, 0.004 +19490517, -0.26, 0.24, -0.44, 0.004 +19490518, -0.20, -0.04, 0.00, 0.004 +19490519, -0.59, -0.20, -0.50, 0.004 +19490520, -0.39, -0.03, -0.26, 0.004 +19490521, 0.02, 0.28, 0.11, 0.004 +19490523, -0.85, 0.02, -0.17, 0.004 +19490524, -0.58, -0.17, -0.45, 0.004 +19490525, 0.26, -0.42, 0.43, 0.004 +19490526, 0.09, 0.28, -0.04, 0.004 +19490527, -0.18, -0.13, -0.07, 0.004 +19490531, -2.01, -0.28, -1.22, 0.004 +19490601, -0.24, -0.11, 0.52, 0.004 +19490602, 0.11, 0.39, -0.29, 0.004 +19490603, -0.55, -0.17, 0.11, 0.004 +19490606, -1.53, -0.08, -0.85, 0.004 +19490607, 0.17, -0.01, 0.40, 0.004 +19490608, 0.67, 0.14, 0.49, 0.004 +19490609, -0.03, -0.07, -0.09, 0.004 +19490610, -0.72, -0.01, -0.70, 0.004 +19490613, -1.84, -0.57, -1.29, 0.004 +19490614, 0.34, -0.31, 0.18, 0.004 +19490615, 1.68, -0.09, 0.80, 0.004 +19490616, -0.15, 0.43, -0.11, 0.004 +19490617, 0.11, -0.17, -0.20, 0.004 +19490620, 1.20, -0.57, 0.55, 0.004 +19490621, 0.17, 0.28, -0.44, 0.004 +19490622, -0.11, 0.03, -0.06, 0.004 +19490623, 0.61, 0.05, 0.20, 0.004 +19490624, 0.12, 0.03, 0.07, 0.004 +19490627, -0.04, 0.04, -0.47, 0.004 +19490628, -0.85, -0.15, -0.11, 0.004 +19490629, 0.58, -0.05, -0.18, 0.004 +19490630, 0.49, 0.11, -0.25, 0.004 +19490701, 0.71, 0.07, 0.67, 0.004 +19490705, 0.45, -0.04, -0.12, 0.004 +19490706, 0.87, -0.06, 0.46, 0.004 +19490707, -0.03, 0.16, -0.35, 0.004 +19490708, 0.02, 0.28, -0.17, 0.004 +19490711, 0.11, 0.11, -0.24, 0.004 +19490712, 0.50, -0.12, -0.02, 0.004 +19490713, 0.97, -0.07, 0.78, 0.004 +19490714, 0.27, 0.11, -0.06, 0.004 +19490715, -0.25, 0.00, 0.04, 0.004 +19490718, 0.30, -0.10, -0.01, 0.004 +19490719, 0.72, -0.26, 0.49, 0.004 +19490720, 0.41, 0.20, 0.06, 0.004 +19490721, -0.38, 0.18, -0.30, 0.004 +19490722, 0.02, -0.02, -0.15, 0.004 +19490725, 0.27, 0.21, 0.14, 0.004 +19490726, 0.58, -0.09, 0.28, 0.004 +19490727, 0.14, 0.00, -0.25, 0.004 +19490728, -0.18, -0.10, -0.66, 0.004 +19490729, -0.09, 0.07, -0.22, 0.004 +19490801, 0.52, -0.40, -0.01, 0.004 +19490802, 0.31, 0.02, 0.25, 0.004 +19490803, -0.01, -0.03, -0.06, 0.004 +19490804, -0.03, -0.05, -0.15, 0.004 +19490805, 1.15, -0.47, 0.70, 0.004 +19490808, 1.07, 0.59, 0.26, 0.004 +19490809, -0.37, 0.45, -0.04, 0.004 +19490810, 0.61, 0.31, 0.35, 0.004 +19490811, -0.25, 0.33, -0.38, 0.004 +19490812, -0.27, -0.08, -0.24, 0.004 +19490815, -0.27, -0.03, -0.25, 0.004 +19490816, 0.37, -0.33, 0.03, 0.004 +19490817, 1.04, -0.14, 0.51, 0.004 +19490818, 0.39, 0.12, 0.14, 0.004 +19490819, -0.45, 0.29, -0.68, 0.004 +19490822, -0.35, -0.11, -0.04, 0.004 +19490823, -1.22, 0.16, -0.40, 0.004 +19490824, 0.09, 0.01, -0.08, 0.004 +19490825, 0.26, 0.05, 0.01, 0.004 +19490826, 0.18, -0.22, -0.15, 0.004 +19490829, -0.69, 0.09, -0.52, 0.004 +19490830, 0.38, -0.31, 0.06, 0.004 +19490831, 0.14, -0.13, 0.16, 0.004 +19490901, 0.69, -0.09, 0.16, 0.004 +19490902, 0.05, -0.14, 0.10, 0.004 +19490906, -0.14, -0.08, -0.46, 0.004 +19490907, 0.63, -0.28, 0.07, 0.004 +19490908, 0.23, -0.02, 0.04, 0.004 +19490909, -0.11, 0.14, -0.30, 0.004 +19490912, 0.83, -0.47, 0.52, 0.004 +19490913, 1.46, 0.34, 1.02, 0.004 +19490914, -0.10, 0.36, -0.15, 0.004 +19490915, -0.51, 0.21, -0.70, 0.004 +19490916, 0.29, 0.23, 0.38, 0.004 +19490919, -0.64, 0.16, -0.30, 0.004 +19490920, -2.20, 0.14, -0.56, 0.004 +19490921, 1.43, -0.20, 0.74, 0.004 +19490922, 0.61, 0.33, 0.65, 0.004 +19490923, 0.44, -0.24, 0.11, 0.004 +19490926, -0.25, 0.09, -0.52, 0.004 +19490927, -0.70, 0.25, -0.72, 0.004 +19490928, 0.92, 0.21, 0.42, 0.004 +19490929, 0.26, 0.21, -0.22, 0.004 +19490930, -0.09, -0.13, 0.02, 0.004 +19491001, -0.42, 0.10, -0.09, 0.004 +19491003, 0.49, -0.18, -0.15, 0.004 +19491004, 0.83, 0.32, -0.20, 0.004 +19491005, 0.40, 0.33, 0.22, 0.004 +19491006, 0.30, 0.13, 0.18, 0.004 +19491007, 0.13, 0.13, -0.17, 0.004 +19491008, 0.10, 0.43, 0.15, 0.004 +19491010, -0.11, 0.18, 0.10, 0.004 +19491011, 0.83, -0.19, 0.67, 0.004 +19491013, 0.04, 0.04, 0.12, 0.004 +19491014, -0.25, -0.03, -0.24, 0.004 +19491015, -0.08, 0.39, -0.17, 0.004 +19491017, -0.99, -0.34, -0.46, 0.004 +19491018, 0.78, 0.17, 0.37, 0.004 +19491019, 0.43, 0.06, 0.12, 0.004 +19491020, -0.13, -0.20, -0.13, 0.004 +19491021, -0.09, 0.14, 0.00, 0.004 +19491022, 0.03, 0.04, 0.04, 0.004 +19491024, 0.00, 0.16, -0.15, 0.004 +19491025, 0.44, -0.11, 0.11, 0.004 +19491026, 0.84, -0.10, 0.15, 0.004 +19491027, 0.44, 0.18, 0.33, 0.004 +19491028, -0.52, -0.24, -0.73, 0.004 +19491029, 0.03, -0.34, -0.13, 0.004 +19491031, -0.39, -0.06, -0.39, 0.004 +19491101, 0.74, -0.30, 0.07, 0.004 +19491102, 0.92, -0.52, 0.35, 0.004 +19491103, -0.17, 0.07, -0.04, 0.004 +19491104, 0.01, -0.08, 0.22, 0.004 +19491105, 0.14, 0.06, 0.02, 0.004 +19491107, -0.21, 0.08, -0.19, 0.004 +19491109, -0.07, -0.13, -1.01, 0.004 +19491110, -0.10, -0.26, -0.13, 0.004 +19491112, 0.00, 0.07, -0.16, 0.004 +19491114, -0.67, -0.06, -0.38, 0.004 +19491115, -0.62, -0.22, -0.33, 0.004 +19491116, 0.54, 0.01, 0.13, 0.004 +19491117, 0.77, 0.08, -0.08, 0.004 +19491118, 1.04, -0.27, 0.31, 0.004 +19491119, 0.22, 0.45, 0.13, 0.004 +19491121, -0.57, 0.08, -0.10, 0.004 +19491122, 0.32, -0.12, 0.22, 0.004 +19491123, 0.19, -0.11, 0.08, 0.004 +19491125, -0.55, 0.19, -0.26, 0.004 +19491126, 0.11, -0.16, 0.14, 0.004 +19491128, -0.37, 0.44, -0.17, 0.004 +19491129, -0.10, -0.34, 0.30, 0.004 +19491130, 0.30, 0.13, 0.00, 0.004 +19491201, 0.60, -0.04, 0.47, 0.004 +19491202, 0.94, 0.13, 0.79, 0.004 +19491203, 0.67, 0.23, 0.47, 0.004 +19491205, 0.20, 0.22, -0.71, 0.004 +19491206, -0.09, 0.09, -0.26, 0.004 +19491207, 0.12, 0.26, 0.30, 0.004 +19491208, 0.12, 0.27, 0.10, 0.004 +19491209, -0.01, 0.05, -0.15, 0.004 +19491210, 0.15, 0.08, -0.19, 0.004 +19491212, 0.57, -0.22, 0.32, 0.004 +19491213, 0.60, 0.18, 0.27, 0.004 +19491214, 0.36, 0.24, 0.35, 0.004 +19491215, 0.22, -0.22, -0.10, 0.004 +19491216, -0.08, 0.35, 0.04, 0.004 +19491217, -0.05, 0.14, 0.11, 0.004 +19491219, -0.20, -0.09, -0.04, 0.004 +19491220, -0.54, -0.01, -0.74, 0.004 +19491221, -0.14, -0.24, -0.23, 0.004 +19491222, 0.78, -0.11, 0.38, 0.004 +19491223, 0.19, 0.27, 0.05, 0.004 +19491227, -0.51, -0.46, -0.33, 0.004 +19491228, 0.49, -0.02, 0.32, 0.004 +19491229, 0.21, 0.20, 0.14, 0.004 +19491230, 0.47, 0.29, 0.37, 0.004 +19491231, -0.07, 0.38, -0.06, 0.004 +19500103, -0.59, 0.41, 0.29, 0.004 +19500104, 1.09, 0.41, 1.18, 0.004 +19500105, 0.40, 0.69, -0.12, 0.004 +19500106, 0.24, 0.42, 0.08, 0.004 +19500107, 0.64, 0.59, 0.45, 0.004 +19500109, 0.13, 0.64, 0.45, 0.004 +19500110, -0.35, 0.00, 0.20, 0.004 +19500111, 0.42, 0.48, 0.29, 0.004 +19500112, -1.82, -0.68, -1.77, 0.004 +19500113, -0.50, -0.20, 0.44, 0.004 +19500114, 0.15, 0.83, -0.07, 0.004 +19500116, 0.18, -0.16, -0.08, 0.004 +19500117, 0.76, 0.18, -0.08, 0.004 +19500118, -0.07, -0.10, 0.16, 0.004 +19500119, 0.18, -0.34, 0.06, 0.004 +19500120, 0.23, 0.08, -0.44, 0.004 +19500121, 0.11, -0.17, 0.02, 0.004 +19500123, -0.19, -0.13, 0.05, 0.004 +19500124, -0.32, -0.03, -0.60, 0.004 +19500125, -0.60, -0.22, -0.35, 0.004 +19500126, 0.14, 0.37, 0.31, 0.004 +19500127, 0.37, 0.14, -0.14, 0.004 +19500128, 0.33, 0.23, -0.16, 0.004 +19500130, 0.68, -0.08, 0.30, 0.004 +19500131, 0.14, -0.09, -0.20, 0.004 +19500201, 0.01, -0.04, 0.00, 0.004 +19500202, 0.98, -0.09, -0.20, 0.004 +19500203, 0.33, -0.37, 0.29, 0.004 +19500204, 0.24, 0.06, -0.22, 0.004 +19500206, -0.24, -0.04, -0.01, 0.004 +19500207, -0.41, -0.38, -0.19, 0.004 +19500208, 0.11, 0.07, 0.00, 0.004 +19500209, 0.43, 0.21, -0.07, 0.004 +19500210, -0.21, -0.05, -0.64, 0.004 +19500211, -0.07, 0.44, -0.28, 0.004 +19500214, -0.62, 0.32, -0.69, 0.004 +19500215, 0.08, 0.21, 0.76, 0.004 +19500216, -0.16, -0.09, -0.31, 0.004 +19500217, 0.64, 0.11, 0.49, 0.004 +19500218, 0.42, 0.22, 0.44, 0.004 +19500220, -0.13, -0.07, 0.05, 0.004 +19500221, -0.15, -0.13, -0.05, 0.004 +19500223, 0.15, -0.12, -0.21, 0.004 +19500224, 0.35, 0.02, 0.03, 0.004 +19500225, -0.08, 0.04, 0.11, 0.004 +19500227, 0.14, -0.15, -0.05, 0.004 +19500228, -0.34, -0.15, -0.03, 0.004 +19500301, 0.34, -0.05, 0.24, 0.004 +19500302, 0.04, -0.05, -0.18, 0.004 +19500303, 0.37, 0.07, 0.50, 0.004 +19500304, 0.27, 0.22, 0.11, 0.004 +19500306, 0.06, -0.11, -0.22, 0.004 +19500307, -0.67, -0.61, -0.18, 0.004 +19500308, 0.19, -0.17, 0.12, 0.004 +19500309, -0.61, 0.01, -0.32, 0.004 +19500310, -0.06, -0.22, -0.34, 0.004 +19500311, 0.26, 0.22, 0.23, 0.004 +19500313, -0.05, 0.02, -0.29, 0.004 +19500314, 0.53, -0.29, 0.11, 0.004 +19500315, 1.31, 0.07, 0.70, 0.004 +19500316, 0.29, 0.09, 0.02, 0.004 +19500317, -0.18, -0.38, -0.47, 0.004 +19500318, 0.20, -0.06, 0.21, 0.004 +19500320, -0.14, 0.05, -0.01, 0.004 +19500321, 0.04, -0.23, -0.29, 0.004 +19500322, 0.55, -0.34, 0.11, 0.004 +19500323, 0.07, -0.23, -0.33, 0.004 +19500324, -0.03, -0.35, -0.47, 0.004 +19500325, 0.27, 0.38, -0.34, 0.004 +19500327, -0.83, -0.09, -0.86, 0.004 +19500328, 0.30, 0.10, -0.10, 0.004 +19500329, -0.35, 0.01, -0.03, 0.004 +19500330, -0.92, 0.31, -0.79, 0.004 +19500331, 0.04, 0.20, 0.11, 0.004 +19500401, 0.27, 0.27, 0.62, 0.004 +19500403, 0.87, -0.21, 0.33, 0.004 +19500404, 0.17, -0.17, -0.01, 0.004 +19500405, 0.33, -0.10, -0.37, 0.004 +19500406, 0.93, 0.10, 0.14, 0.004 +19500408, 0.24, 0.07, 0.04, 0.004 +19500410, 0.06, -0.03, 0.10, 0.004 +19500411, -0.56, -0.16, -0.74, 0.004 +19500412, 0.95, 0.39, 0.36, 0.004 +19500413, 0.12, 0.20, -0.14, 0.004 +19500414, -0.14, 0.23, -0.92, 0.004 +19500415, -0.43, 0.07, -0.19, 0.004 +19500417, -0.07, 0.21, 0.35, 0.004 +19500418, 0.40, -0.41, 0.88, 0.004 +19500419, 0.13, 0.39, 0.03, 0.004 +19500420, -0.69, 0.15, -0.42, 0.004 +19500421, 0.34, 0.56, 0.07, 0.004 +19500422, 0.10, 0.20, 0.25, 0.004 +19500424, -0.77, -0.02, -0.03, 0.004 +19500425, 0.02, -0.05, 0.21, 0.004 +19500426, -0.17, -0.27, 0.06, 0.004 +19500427, 0.58, 0.03, 0.45, 0.004 +19500428, 0.62, 0.27, -0.11, 0.004 +19500429, 0.59, 0.19, 0.35, 0.004 +19500501, 0.59, -0.02, 0.27, 0.004 +19500502, -0.44, -0.42, -0.17, 0.004 +19500503, 0.70, -0.05, 0.45, 0.004 +19500504, -0.56, -0.52, 0.05, 0.004 +19500505, 0.43, 0.03, 0.36, 0.004 +19500506, 0.55, -0.24, 0.36, 0.004 +19500508, -0.03, 0.02, -0.06, 0.004 +19500509, 0.36, 0.02, 0.17, 0.004 +19500510, 0.01, -0.37, -0.25, 0.004 +19500511, 0.23, -0.24, 0.31, 0.004 +19500512, -0.41, 0.19, -0.50, 0.004 +19500513, 0.16, 0.28, -0.11, 0.004 +19500515, 0.18, -0.05, 0.16, 0.004 +19500516, 0.73, -0.19, 0.35, 0.004 +19500517, 0.40, -0.09, -0.12, 0.004 +19500518, 0.33, -0.23, -0.20, 0.004 +19500519, 0.62, -0.16, 0.53, 0.004 +19500520, 0.20, 0.09, 0.08, 0.004 +19500522, -0.45, 0.03, -0.59, 0.004 +19500523, 0.33, -0.12, -0.05, 0.004 +19500524, -0.11, -0.11, -0.57, 0.004 +19500525, -0.03, -0.24, 0.24, 0.004 +19500526, -0.01, -0.04, 0.23, 0.004 +19500527, -0.05, 0.04, 0.14, 0.004 +19500529, 0.33, 0.03, -0.20, 0.004 +19500531, 0.21, 0.31, -0.42, 0.004 +19500601, -0.11, -0.15, -0.25, 0.004 +19500602, 0.05, -0.04, -0.17, 0.004 +19500605, -0.86, -0.47, -0.55, 0.004 +19500606, 0.71, -0.52, -0.15, 0.004 +19500607, 0.43, 0.54, -0.01, 0.004 +19500608, 0.80, -0.18, 0.14, 0.004 +19500609, 0.56, -0.39, 0.41, 0.004 +19500612, 0.46, -0.50, 0.01, 0.004 +19500613, -0.51, -0.14, 0.11, 0.004 +19500614, -1.13, 0.19, -0.35, 0.004 +19500615, -0.03, -0.04, 0.28, 0.004 +19500616, 0.02, 0.14, 0.04, 0.004 +19500619, -0.38, 0.19, -0.45, 0.004 +19500620, -0.28, -0.12, -0.23, 0.004 +19500621, 0.87, 0.18, 0.38, 0.004 +19500622, 0.75, -0.14, 0.19, 0.004 +19500623, 0.08, -0.13, 0.22, 0.004 +19500626, -5.27, -0.15, -1.34, 0.004 +19500627, -1.04, -1.69, 0.26, 0.004 +19500628, 1.26, 1.02, 0.69, 0.004 +19500629, -3.54, 0.35, -0.71, 0.004 +19500630, 1.31, -0.47, 0.77, 0.004 +19500703, -0.55, 0.13, -0.30, 0.005 +19500705, 0.84, -0.68, 1.01, 0.005 +19500706, 0.69, 0.44, 0.40, 0.005 +19500707, -1.13, 0.26, -0.09, 0.005 +19500710, -0.49, -0.22, 1.59, 0.005 +19500711, -1.44, 0.63, 2.41, 0.005 +19500712, -2.40, 0.09, 0.47, 0.005 +19500713, -0.98, -0.18, 0.63, 0.005 +19500714, 1.29, 0.11, 0.17, 0.005 +19500717, -0.84, 0.09, 0.39, 0.005 +19500718, 2.27, -0.94, 0.75, 0.005 +19500719, 1.72, 0.02, 0.59, 0.005 +19500720, 1.47, 0.17, 1.66, 0.005 +19500721, 0.19, 0.40, 1.03, 0.005 +19500724, -0.58, 0.48, 0.91, 0.005 +19500725, -1.33, 0.24, 1.33, 0.005 +19500726, 0.32, -0.20, 0.58, 0.005 +19500727, 1.20, 0.04, 0.81, 0.005 +19500728, 0.83, -0.02, -1.37, 0.005 +19500731, 0.41, -0.29, 0.07, 0.005 +19500801, 0.79, -0.08, -0.12, 0.004 +19500802, -0.03, 0.12, -0.80, 0.004 +19500803, 0.28, 0.44, 0.19, 0.004 +19500804, 0.52, -0.05, -0.11, 0.004 +19500807, 1.16, -0.40, 0.24, 0.004 +19500808, 0.20, -0.21, -1.02, 0.004 +19500809, 0.56, -0.36, 0.05, 0.004 +19500810, 0.21, 0.05, -0.06, 0.004 +19500811, -0.58, 0.21, -0.31, 0.004 +19500814, 0.12, 0.12, 0.25, 0.004 +19500815, 0.26, 0.21, 0.20, 0.004 +19500816, 0.31, 0.13, 0.55, 0.004 +19500817, 1.00, -0.15, 0.45, 0.004 +19500818, 0.58, -0.13, 0.04, 0.004 +19500821, 0.15, 0.32, -0.67, 0.004 +19500822, -0.18, -0.18, -0.26, 0.004 +19500823, 0.72, -0.01, 0.56, 0.004 +19500824, 0.01, 0.30, -0.29, 0.004 +19500825, -1.17, 0.21, -0.28, 0.004 +19500828, 0.02, 0.21, 0.30, 0.004 +19500829, 0.23, -0.02, 0.03, 0.004 +19500830, -0.29, -0.08, -0.32, 0.004 +19500831, -0.10, 0.04, 0.06, 0.004 +19500901, 0.50, -0.27, 0.15, 0.005 +19500905, 0.47, -0.26, -0.15, 0.005 +19500906, -0.56, 0.03, -0.13, 0.005 +19500907, 0.36, -0.06, 0.34, 0.005 +19500908, 0.80, 0.19, 0.29, 0.005 +19500911, -0.66, 0.04, -0.22, 0.005 +19500912, 1.13, -0.34, 1.11, 0.005 +19500913, 1.05, 0.17, 0.20, 0.005 +19500914, 0.44, 0.02, 0.41, 0.005 +19500915, 0.39, -0.08, -0.48, 0.005 +19500918, 0.27, -0.31, -0.45, 0.005 +19500919, -0.33, -0.05, -0.27, 0.005 +19500920, -0.50, 0.14, -0.10, 0.005 +19500921, 0.81, 0.06, 0.51, 0.005 +19500922, 0.54, 0.29, 0.16, 0.005 +19500925, -0.20, 0.42, -0.49, 0.005 +19500926, -1.22, 0.30, -1.48, 0.005 +19500927, 1.26, -0.19, -0.24, 0.005 +19500928, 0.12, 0.20, -0.09, 0.005 +19500929, 0.09, 0.24, -0.08, 0.005 +19501002, 0.95, -0.10, 0.87, 0.005 +19501003, -0.21, -0.01, -0.04, 0.005 +19501004, 1.21, -0.39, 0.20, 0.005 +19501005, -0.35, 0.28, -0.36, 0.005 +19501006, 0.80, -0.47, 0.59, 0.005 +19501007, 0.29, 0.09, 0.24, 0.005 +19501009, -0.83, -0.11, -0.57, 0.005 +19501010, -0.72, 0.50, -0.01, 0.005 +19501011, 0.53, 0.01, 0.78, 0.005 +19501013, 0.10, 0.18, 0.19, 0.005 +19501014, -0.46, -0.10, 0.01, 0.005 +19501016, -0.05, 0.07, 0.03, 0.005 +19501017, 0.77, 0.13, 0.58, 0.005 +19501018, 0.64, 0.11, 0.38, 0.005 +19501019, -0.02, 0.17, -0.03, 0.005 +19501020, -0.17, -0.06, -0.39, 0.005 +19501021, 0.24, 0.06, 0.08, 0.005 +19501023, -0.07, 0.13, 0.21, 0.005 +19501024, 0.21, -0.03, -0.35, 0.005 +19501025, -0.13, 0.03, 0.02, 0.005 +19501026, -2.07, -0.28, -0.96, 0.005 +19501027, 0.57, -0.13, 0.44, 0.005 +19501028, 0.19, 0.02, 0.68, 0.005 +19501030, -0.91, 0.01, -1.03, 0.005 +19501031, -0.63, -0.69, -0.06, 0.005 +19501101, 0.41, -0.02, 0.44, 0.005 +19501102, 0.93, 0.02, 0.17, 0.005 +19501103, 0.33, -0.33, -0.30, 0.005 +19501104, -0.34, 0.03, -0.32, 0.005 +19501106, -2.17, -0.48, -0.76, 0.005 +19501108, 1.47, 0.30, 0.65, 0.005 +19501109, 1.33, -0.20, 0.94, 0.005 +19501110, 0.73, -0.34, 0.13, 0.005 +19501113, 0.43, -0.07, 0.29, 0.005 +19501114, 0.24, -0.24, 0.27, 0.005 +19501115, -0.16, 0.22, -0.06, 0.005 +19501116, -0.20, -0.02, 0.32, 0.005 +19501117, 0.83, -0.18, 1.30, 0.005 +19501118, 0.50, 0.05, 0.23, 0.005 +19501120, 0.02, 0.13, 0.02, 0.005 +19501121, -0.01, 0.14, 0.02, 0.005 +19501122, 1.06, -0.24, 0.33, 0.005 +19501124, 0.74, -0.01, -0.14, 0.005 +19501125, -0.09, 0.19, -0.29, 0.005 +19501127, -0.30, 0.17, 0.03, 0.005 +19501128, -2.81, -0.16, -1.10, 0.005 +19501129, -0.86, 0.27, 0.82, 0.005 +19501130, 0.75, -0.08, 0.24, 0.005 +19501201, 0.76, -0.18, 0.73, 0.005 +19501202, -0.61, 0.27, -0.31, 0.005 +19501204, -2.78, -0.13, -1.18, 0.005 +19501205, 1.54, -0.26, 1.58, 0.005 +19501206, 0.86, -0.04, 0.87, 0.005 +19501207, -0.17, -0.12, 0.05, 0.005 +19501208, 0.27, 0.14, 1.20, 0.005 +19501209, 0.37, 0.19, 0.51, 0.005 +19501211, 0.93, -0.31, 0.27, 0.005 +19501212, 0.06, -0.04, -0.16, 0.005 +19501213, 0.02, -0.40, 0.08, 0.005 +19501214, -1.04, 0.35, -0.41, 0.005 +19501215, -0.40, 0.24, 0.84, 0.005 +19501216, 1.58, -0.25, 1.78, 0.005 +19501218, 1.03, 0.13, 0.80, 0.005 +19501219, 0.53, 0.08, 0.65, 0.005 +19501220, 0.27, 0.70, 0.17, 0.005 +19501221, 0.14, 0.52, -0.38, 0.005 +19501222, 0.34, 0.32, -0.27, 0.005 +19501226, -0.79, -0.34, -0.52, 0.005 +19501227, 1.98, 0.11, 0.79, 0.005 +19501228, 0.53, 0.19, 0.60, 0.005 +19501229, -0.05, 0.15, -0.56, 0.005 +19501230, 0.14, 0.15, -0.22, 0.005 +19510102, 1.57, 0.03, 0.77, 0.005 +19510103, -0.28, 0.08, -0.17, 0.005 +19510104, 0.69, 0.24, 1.04, 0.005 +19510105, 0.04, 0.03, -0.02, 0.005 +19510106, -0.08, 0.23, -0.44, 0.005 +19510108, 0.48, 0.19, 0.37, 0.005 +19510109, 0.56, 0.35, 0.16, 0.005 +19510110, -1.32, -0.50, -1.22, 0.005 +19510111, 1.60, 0.35, 1.29, 0.005 +19510112, -0.30, -0.17, -0.44, 0.005 +19510113, 0.09, -0.04, 0.09, 0.005 +19510115, 0.53, 0.10, 0.42, 0.005 +19510116, 0.70, -0.03, 0.54, 0.005 +19510117, 0.55, -0.18, 0.33, 0.005 +19510118, -0.28, 0.44, -0.06, 0.005 +19510119, -0.13, 0.24, -0.36, 0.005 +19510120, 0.15, 0.21, -0.08, 0.005 +19510122, -1.00, -0.10, -0.44, 0.005 +19510123, 0.32, 0.08, -0.25, 0.005 +19510124, -0.31, 0.07, -0.27, 0.005 +19510125, -0.68, -0.30, -0.32, 0.005 +19510126, 1.00, 0.50, 1.14, 0.005 +19510127, 1.05, 0.23, 0.81, 0.005 +19510129, 0.69, -0.25, 0.56, 0.005 +19510130, 0.25, -0.49, 0.25, 0.005 +19510131, -0.25, 0.35, -0.11, 0.005 +19510201, 0.60, 0.08, 0.17, 0.005 +19510202, 0.75, 0.09, -0.30, 0.005 +19510203, 0.37, 0.02, -0.07, 0.005 +19510205, 0.34, -0.37, -0.01, 0.005 +19510206, -0.34, 0.04, -0.42, 0.005 +19510207, -0.27, 0.09, 0.03, 0.005 +19510208, 0.53, 0.08, 0.12, 0.005 +19510209, 0.46, 0.09, 0.07, 0.005 +19510210, 0.14, 0.02, 0.19, 0.005 +19510213, 0.10, -0.34, -0.29, 0.005 +19510214, -0.30, -0.16, -0.18, 0.005 +19510215, -0.22, 0.26, -0.50, 0.005 +19510216, 0.39, 0.09, 0.09, 0.005 +19510217, 0.07, 0.06, -0.02, 0.005 +19510219, -1.16, 0.19, -0.87, 0.005 +19510220, -0.21, -0.04, 0.31, 0.005 +19510221, 0.44, 0.14, 0.02, 0.005 +19510223, 0.25, 0.13, -0.16, 0.005 +19510224, 0.20, -0.02, 0.05, 0.005 +19510226, -0.03, 0.11, -0.36, 0.005 +19510227, -0.84, -0.28, -0.83, 0.005 +19510228, 0.15, -0.19, 0.15, 0.005 +19510301, 0.33, -0.03, 0.45, 0.004 +19510302, 0.42, 0.14, 0.03, 0.004 +19510303, -0.03, 0.18, -0.22, 0.004 +19510305, -0.55, 0.04, -0.44, 0.004 +19510306, -0.19, -0.17, -0.32, 0.004 +19510307, 0.40, -0.02, 0.07, 0.004 +19510308, 0.34, 0.17, -0.32, 0.004 +19510309, 0.07, 0.19, -0.13, 0.004 +19510310, -0.20, 0.15, 0.05, 0.004 +19510312, -0.95, -0.32, -0.48, 0.004 +19510313, -1.57, -0.22, -1.38, 0.004 +19510314, -0.87, 0.21, -0.07, 0.004 +19510315, 0.13, -0.33, -0.26, 0.004 +19510316, 1.61, 0.25, 0.82, 0.004 +19510317, 0.21, 0.18, -0.12, 0.004 +19510319, -0.55, -0.01, -0.27, 0.004 +19510320, -0.16, -0.10, -0.48, 0.004 +19510321, 0.57, 0.05, 0.29, 0.004 +19510322, 0.33, -0.27, -0.20, 0.004 +19510324, -1.08, -0.01, -0.98, 0.004 +19510326, 0.09, -0.35, 0.04, 0.004 +19510327, 0.06, 0.08, -0.17, 0.004 +19510328, -1.13, -0.52, -0.68, 0.004 +19510329, 0.26, -0.04, 0.15, 0.004 +19510330, 0.62, -0.09, 0.30, 0.004 +19510331, -0.27, 0.19, 0.06, 0.004 +19510402, -0.53, -0.31, -0.39, 0.005 +19510403, -0.21, 0.17, 0.07, 0.005 +19510404, 0.45, -0.45, 0.80, 0.005 +19510405, 1.40, 0.00, 1.09, 0.005 +19510406, 0.35, 0.17, 0.16, 0.005 +19510407, -0.09, 0.18, -0.41, 0.005 +19510409, 0.04, 0.06, -0.03, 0.005 +19510410, -0.18, 0.08, -0.33, 0.005 +19510411, -0.18, -0.20, -0.53, 0.005 +19510412, 0.98, -0.10, 0.71, 0.005 +19510413, 1.30, -0.26, 0.93, 0.005 +19510414, 0.39, 0.04, 0.42, 0.005 +19510416, -0.50, -0.12, -0.03, 0.005 +19510417, 0.15, 0.04, 0.02, 0.005 +19510418, 0.37, 0.01, 0.02, 0.005 +19510419, -0.46, -0.04, 0.00, 0.005 +19510420, -0.05, 0.04, -0.24, 0.005 +19510421, 0.02, -0.01, 0.25, 0.005 +19510423, -0.03, -0.16, -0.08, 0.005 +19510424, -0.45, 0.02, -0.39, 0.005 +19510425, 0.14, -0.20, 0.37, 0.005 +19510426, 0.87, -0.06, 0.66, 0.005 +19510427, 0.91, -0.31, 0.53, 0.005 +19510428, 0.16, 0.10, 0.00, 0.005 +19510430, -0.04, -0.15, -0.41, 0.005 +19510501, 0.32, -0.18, 0.12, 0.005 +19510502, 0.28, -0.06, 0.11, 0.005 +19510503, 0.73, -0.42, 0.90, 0.005 +19510504, 0.05, 0.00, -0.20, 0.005 +19510505, -0.29, 0.20, -0.03, 0.005 +19510507, -0.20, -0.07, -0.40, 0.005 +19510508, 0.35, -0.09, -0.17, 0.005 +19510509, 0.22, -0.03, 0.39, 0.005 +19510510, -0.51, 0.22, -0.31, 0.005 +19510511, -0.52, 0.26, -0.19, 0.005 +19510512, -0.56, 0.16, -0.15, 0.005 +19510514, -0.08, -0.03, -0.01, 0.005 +19510515, -1.53, 0.08, -0.41, 0.005 +19510516, -0.31, 0.17, 0.24, 0.005 +19510517, 0.96, -0.24, 0.34, 0.005 +19510518, -1.59, 0.21, -1.37, 0.005 +19510519, 0.07, -0.16, -0.05, 0.005 +19510521, -0.42, -0.05, -0.52, 0.005 +19510522, -0.32, 0.07, -0.13, 0.005 +19510523, -0.65, 0.23, -0.46, 0.005 +19510524, -0.41, -0.10, -0.02, 0.005 +19510525, 0.09, 0.52, 0.12, 0.005 +19510526, 0.18, -0.04, -0.02, 0.005 +19510528, 0.51, -0.06, 0.24, 0.005 +19510529, 0.73, -0.34, 0.31, 0.005 +19510531, 0.55, -0.26, 0.35, 0.005 +19510601, -0.15, -0.24, -0.04, 0.006 +19510604, -0.96, 0.10, -0.92, 0.006 +19510605, 0.17, -0.11, 0.13, 0.006 +19510606, 0.89, -0.06, 0.63, 0.006 +19510607, 0.50, 0.05, 0.47, 0.006 +19510608, -0.19, -0.09, -0.19, 0.006 +19510611, 0.50, -0.26, 0.41, 0.006 +19510612, -0.41, 0.17, -0.63, 0.006 +19510613, 0.08, -0.24, -0.29, 0.006 +19510614, 0.96, -0.44, 0.35, 0.006 +19510615, 0.65, -0.43, 0.35, 0.006 +19510618, -0.05, -0.23, -0.33, 0.006 +19510619, -0.11, -0.22, 0.04, 0.006 +19510620, -0.45, 0.32, -0.43, 0.006 +19510621, -0.57, 0.01, -0.28, 0.006 +19510622, -0.79, 0.16, -0.31, 0.006 +19510625, -1.54, -0.42, -1.50, 0.006 +19510626, 0.24, 0.20, -0.23, 0.006 +19510627, 0.45, -0.08, 0.23, 0.006 +19510628, -1.09, -0.23, -0.70, 0.006 +19510629, -0.74, 0.03, -0.84, 0.006 +19510702, 0.60, -0.29, 0.35, 0.006 +19510703, 0.70, 0.12, 0.31, 0.006 +19510705, 1.55, -0.31, 0.60, 0.006 +19510706, 0.00, 0.13, -0.32, 0.006 +19510709, 0.23, -0.25, -0.18, 0.006 +19510710, -0.37, -0.02, -0.19, 0.006 +19510711, 0.21, -0.03, 0.46, 0.006 +19510712, 0.44, -0.14, -0.07, 0.006 +19510713, 0.69, -0.15, -0.02, 0.006 +19510716, -0.74, 0.23, -0.66, 0.006 +19510717, 0.65, -0.66, 0.18, 0.006 +19510718, -0.04, 0.08, -0.18, 0.006 +19510719, 0.08, 0.10, -0.08, 0.006 +19510720, 0.16, 0.15, 0.36, 0.006 +19510723, 0.83, -0.57, 0.37, 0.006 +19510724, 1.20, -0.66, 0.65, 0.006 +19510725, -0.18, 0.34, 0.16, 0.006 +19510726, 0.50, 0.07, 0.22, 0.006 +19510727, 0.28, -0.03, 0.18, 0.006 +19510730, 0.59, -0.43, -0.23, 0.006 +19510731, -0.64, 0.40, 0.03, 0.006 +19510801, 0.67, 0.01, 0.82, 0.006 +19510802, 1.03, -0.09, 0.04, 0.006 +19510803, 0.16, -0.01, -0.33, 0.006 +19510806, 0.66, -0.41, 0.36, 0.006 +19510807, -0.03, 0.20, -0.22, 0.006 +19510808, -0.17, 0.15, -0.22, 0.006 +19510809, -0.36, 0.30, -0.17, 0.006 +19510810, -0.17, 0.00, -0.33, 0.006 +19510813, 0.12, 0.26, -0.34, 0.006 +19510814, -0.08, -0.10, -0.04, 0.006 +19510815, 0.39, -0.14, 0.57, 0.006 +19510816, 0.52, 0.11, 0.04, 0.006 +19510817, 0.27, 0.10, 0.18, 0.006 +19510820, -0.07, 0.05, -0.34, 0.006 +19510821, -0.38, 0.08, -0.31, 0.006 +19510822, -0.46, 0.16, -0.43, 0.006 +19510823, 0.62, -0.09, 0.28, 0.006 +19510824, 0.02, 0.14, 0.07, 0.006 +19510827, -0.15, 0.02, -0.32, 0.006 +19510828, 0.09, 0.21, 0.14, 0.006 +19510829, 0.77, -0.08, 0.14, 0.006 +19510830, 0.67, -0.06, 0.13, 0.006 +19510831, 0.10, 0.14, 0.17, 0.006 +19510904, 0.10, 0.12, 0.16, 0.006 +19510905, 0.77, -0.11, -0.07, 0.006 +19510906, 0.32, -0.22, 0.34, 0.006 +19510907, 0.42, -0.17, 0.15, 0.006 +19510910, 0.43, 0.10, 0.21, 0.006 +19510911, -0.46, 0.20, -0.37, 0.006 +19510912, 0.62, -0.04, 0.35, 0.006 +19510913, 0.28, -0.03, 0.14, 0.006 +19510914, -0.05, 0.22, -0.07, 0.006 +19510917, -0.31, 0.36, -0.29, 0.006 +19510918, -0.08, 0.11, -0.40, 0.006 +19510919, 0.07, 0.51, 0.09, 0.006 +19510920, -0.15, 0.25, 0.34, 0.006 +19510921, -0.75, 0.31, -0.02, 0.006 +19510924, -0.48, 0.22, 0.33, 0.006 +19510925, 0.35, -0.09, 0.13, 0.006 +19510926, 0.15, 0.04, 0.00, 0.006 +19510927, -0.48, -0.07, -0.25, 0.006 +19510928, -0.05, 0.16, -0.16, 0.006 +19511001, 0.61, -0.06, 0.17, 0.006 +19511002, 0.66, -0.19, 0.31, 0.006 +19511003, 0.60, 0.26, 0.43, 0.006 +19511004, -0.14, 0.27, -0.08, 0.006 +19511005, 0.13, 0.32, 0.26, 0.006 +19511006, 0.02, 0.10, 0.09, 0.006 +19511008, -0.10, 0.31, -0.36, 0.006 +19511009, -0.48, 0.10, -0.04, 0.006 +19511010, -0.23, 0.17, -0.12, 0.006 +19511011, 0.45, -0.36, 0.22, 0.006 +19511013, 0.28, 0.04, 0.24, 0.006 +19511015, 0.19, -0.34, -0.09, 0.006 +19511016, -0.39, -0.23, -0.31, 0.006 +19511017, -0.26, 0.03, -0.29, 0.006 +19511018, -0.13, 0.07, 0.11, 0.006 +19511019, -1.40, -0.04, -0.27, 0.006 +19511020, -0.91, 0.28, -0.02, 0.006 +19511022, -1.82, -0.01, 0.19, 0.006 +19511023, 0.64, -0.09, 0.55, 0.006 +19511024, 0.72, -0.07, 0.39, 0.006 +19511025, -0.49, -0.04, -0.23, 0.006 +19511026, -0.75, 0.13, -0.26, 0.006 +19511027, -1.59, 0.19, -0.63, 0.006 +19511029, 0.85, -0.63, 0.58, 0.006 +19511030, 0.01, 0.02, -0.23, 0.006 +19511031, 1.03, -0.45, -0.32, 0.006 +19511101, 0.66, -0.13, 0.14, 0.005 +19511102, -0.72, 0.13, -0.35, 0.005 +19511103, -0.86, 0.28, -0.43, 0.005 +19511105, 0.08, -0.18, 0.09, 0.005 +19511107, -0.86, 0.01, -0.04, 0.005 +19511108, 0.19, -0.14, 0.15, 0.005 +19511109, 1.11, -0.05, 0.25, 0.005 +19511110, 0.49, 0.02, 0.07, 0.005 +19511113, -0.18, 0.10, -0.23, 0.005 +19511114, 0.27, -0.13, 0.16, 0.005 +19511115, -0.05, 0.14, 0.10, 0.005 +19511116, -0.11, -0.13, 0.38, 0.005 +19511117, 0.03, 0.10, 0.01, 0.005 +19511119, -0.37, 0.16, -0.17, 0.005 +19511120, -0.19, -0.09, -0.30, 0.005 +19511121, -0.08, 0.09, 0.13, 0.005 +19511123, -1.03, 0.10, -0.18, 0.005 +19511124, -0.37, 0.14, -0.18, 0.005 +19511126, 0.59, -0.26, 0.24, 0.005 +19511127, 0.78, -0.34, -0.08, 0.005 +19511128, -0.14, 0.32, -0.11, 0.005 +19511129, 0.43, -0.26, 0.14, 0.005 +19511130, 0.94, -0.18, 0.14, 0.005 +19511201, 0.25, 0.01, 0.10, 0.005 +19511203, 0.34, -0.06, -0.50, 0.005 +19511204, 0.41, -0.37, -0.02, 0.005 +19511205, 0.04, 0.17, -0.29, 0.005 +19511206, 0.90, -0.43, 0.46, 0.005 +19511207, 0.20, -0.14, 0.25, 0.005 +19511208, 0.10, -0.05, 0.00, 0.005 +19511210, 0.01, -0.06, -0.11, 0.005 +19511211, -0.47, 0.11, -0.37, 0.005 +19511212, 0.12, -0.11, -0.18, 0.005 +19511213, 0.30, 0.04, -0.23, 0.005 +19511214, -0.02, 0.01, -0.16, 0.005 +19511215, -0.06, 0.10, -0.14, 0.005 +19511217, 0.14, -0.21, -0.04, 0.005 +19511218, 0.12, -0.24, -0.27, 0.005 +19511219, 0.28, -0.35, 0.36, 0.005 +19511220, 0.01, -0.04, 0.04, 0.005 +19511221, -0.22, 0.01, 0.04, 0.005 +19511222, 0.00, 0.06, 0.10, 0.005 +19511224, -0.04, 0.11, -0.30, 0.005 +19511226, -0.62, 0.08, -0.18, 0.005 +19511227, 0.85, -0.40, 0.36, 0.005 +19511228, 0.44, -0.13, -0.25, 0.005 +19511229, -0.04, 0.02, -0.02, 0.005 +19511231, 0.27, -0.34, -0.19, 0.005 +19520102, 0.16, 0.40, 0.26, 0.006 +19520103, 0.15, 0.07, 0.27, 0.006 +19520104, 0.18, 0.22, 0.08, 0.006 +19520105, 0.07, 0.12, -0.01, 0.006 +19520107, -0.15, -0.06, -0.04, 0.006 +19520108, -0.43, -0.28, -0.21, 0.006 +19520109, -0.28, 0.09, -0.17, 0.006 +19520110, 0.60, -0.23, 0.18, 0.006 +19520111, 0.42, -0.39, 0.25, 0.006 +19520112, 0.40, -0.23, 0.10, 0.006 +19520114, 0.20, -0.35, 0.18, 0.006 +19520115, -0.44, -0.01, -0.16, 0.006 +19520116, 0.29, 0.02, 0.38, 0.006 +19520117, 0.40, -0.01, 0.06, 0.006 +19520118, 0.15, -0.07, 0.47, 0.006 +19520119, 0.27, -0.13, 0.36, 0.006 +19520121, 0.41, -0.43, -0.08, 0.006 +19520122, 0.50, -0.29, -0.30, 0.006 +19520123, -0.35, 0.11, -0.18, 0.006 +19520124, 0.13, -0.01, -0.06, 0.006 +19520125, 0.11, 0.23, 0.02, 0.006 +19520126, 0.09, 0.05, -0.11, 0.006 +19520128, 0.09, 0.06, 0.35, 0.006 +19520129, -0.01, 0.34, 0.11, 0.006 +19520130, -1.07, 0.23, -0.03, 0.006 +19520131, -0.42, -0.03, -0.21, 0.006 +19520201, 0.59, -0.05, -0.18, 0.005 +19520202, 0.36, -0.24, 0.13, 0.005 +19520204, -1.12, 0.40, -0.37, 0.005 +19520205, -0.26, 0.13, -0.19, 0.005 +19520206, 0.32, 0.11, -0.25, 0.005 +19520207, 0.17, 0.01, 0.10, 0.005 +19520208, 0.51, -0.13, 0.08, 0.005 +19520209, 0.04, 0.23, 0.06, 0.005 +19520211, -0.32, -0.13, 0.23, 0.005 +19520213, -0.67, 0.24, -0.17, 0.005 +19520214, -0.25, -0.08, 0.16, 0.005 +19520215, -0.01, 0.00, -0.13, 0.005 +19520216, -0.06, 0.10, 0.06, 0.005 +19520218, -0.40, -0.07, 0.04, 0.005 +19520219, -1.46, 0.24, -0.13, 0.005 +19520220, -1.12, 0.15, -0.06, 0.005 +19520221, 0.32, 0.24, 0.22, 0.005 +19520223, 0.65, -0.39, 0.51, 0.005 +19520225, -0.29, 0.19, -0.21, 0.005 +19520226, -0.50, 0.24, -0.35, 0.005 +19520227, 0.20, -0.19, 0.28, 0.005 +19520228, 0.71, -0.24, -0.27, 0.005 +19520229, -0.06, 0.05, -0.19, 0.005 +19520301, 0.08, 0.04, -0.14, 0.004 +19520303, 0.26, -0.14, 0.12, 0.004 +19520304, 1.31, -0.55, 0.18, 0.004 +19520305, 0.23, 0.05, 0.33, 0.004 +19520306, -0.01, -0.03, 0.05, 0.004 +19520307, 0.21, -0.21, 0.46, 0.004 +19520308, 0.29, -0.19, 0.24, 0.004 +19520310, -0.49, 0.27, -0.68, 0.004 +19520311, 0.22, -0.25, 0.10, 0.004 +19520312, 0.26, -0.09, 0.17, 0.004 +19520313, 0.05, 0.03, 0.16, 0.004 +19520314, 0.24, -0.36, 0.10, 0.004 +19520315, 0.20, -0.27, 0.00, 0.004 +19520317, 0.10, -0.23, -0.09, 0.004 +19520318, -0.14, -0.05, -0.02, 0.004 +19520319, -0.24, 0.19, -0.07, 0.004 +19520320, 0.35, -0.32, 0.65, 0.004 +19520321, 0.07, 0.09, 0.20, 0.004 +19520322, -0.01, 0.03, -0.17, 0.004 +19520324, -0.11, 0.03, -0.18, 0.004 +19520325, -0.42, 0.40, -0.16, 0.004 +19520326, -0.07, -0.11, 0.35, 0.004 +19520327, 0.77, -0.50, 0.21, 0.004 +19520328, 0.59, -0.33, -0.06, 0.004 +19520329, 0.56, -0.33, 0.44, 0.004 +19520331, 0.07, -0.09, -0.04, 0.004 +19520401, -0.77, 0.14, -0.20, 0.005 +19520402, -0.08, 0.16, 0.01, 0.005 +19520403, 0.09, -0.15, 0.02, 0.005 +19520404, -0.51, 0.11, -0.26, 0.005 +19520405, -0.15, 0.12, 0.09, 0.005 +19520407, -0.93, 0.19, -0.13, 0.005 +19520408, 0.56, -0.34, 0.25, 0.005 +19520409, -0.01, 0.14, -0.13, 0.005 +19520410, 0.35, -0.17, 0.22, 0.005 +19520412, 0.05, 0.16, 0.05, 0.005 +19520414, -0.74, -0.14, -0.23, 0.005 +19520415, -1.08, 0.09, -0.54, 0.005 +19520416, -0.14, 0.44, -0.17, 0.005 +19520417, -0.86, 0.11, -0.18, 0.005 +19520418, 0.40, 0.02, 0.51, 0.005 +19520419, 0.06, 0.13, 0.12, 0.005 +19520421, 0.70, -0.57, 0.47, 0.005 +19520422, -0.44, 0.21, -0.27, 0.005 +19520423, -0.45, 0.20, -0.07, 0.005 +19520424, -0.42, -0.07, 0.15, 0.005 +19520425, 0.42, -0.18, 0.48, 0.005 +19520426, 0.14, 0.10, 0.18, 0.005 +19520428, -0.22, -0.24, -0.03, 0.005 +19520429, -0.34, -0.22, 0.18, 0.005 +19520430, -0.69, 0.25, -0.56, 0.005 +19520501, -0.69, -0.18, -0.53, 0.005 +19520502, 1.42, -0.24, 0.67, 0.005 +19520503, 0.30, -0.01, -0.14, 0.005 +19520505, 0.28, -0.31, 0.00, 0.005 +19520506, 0.25, -0.09, -0.06, 0.005 +19520507, 0.63, -0.35, 0.09, 0.005 +19520508, 0.28, 0.17, -0.04, 0.005 +19520509, 0.03, -0.07, -0.10, 0.005 +19520510, -0.09, 0.29, -0.06, 0.005 +19520512, -0.14, -0.05, -0.09, 0.005 +19520513, 0.17, -0.16, -0.16, 0.005 +19520514, -0.34, 0.20, -0.21, 0.005 +19520515, -0.35, -0.15, 0.12, 0.005 +19520516, 0.05, 0.15, -0.26, 0.005 +19520517, 0.02, 0.19, -0.08, 0.005 +19520519, 0.14, -0.32, -0.01, 0.005 +19520520, 0.51, -0.04, 0.09, 0.005 +19520521, 0.27, 0.04, 0.17, 0.005 +19520522, 0.63, -0.15, 0.29, 0.005 +19520523, -0.08, 0.08, 0.07, 0.005 +19520524, -0.01, 0.15, -0.06, 0.005 +19520526, 0.21, -0.13, 0.12, 0.005 +19520527, -0.19, 0.03, 0.09, 0.005 +19520528, -0.14, 0.14, 0.08, 0.005 +19520529, 0.01, -0.19, 0.10, 0.005 +19520602, -0.13, -0.06, -0.20, 0.007 +19520603, -0.08, -0.18, 0.14, 0.007 +19520604, 0.56, -0.13, 0.37, 0.007 +19520605, 0.63, -0.29, 0.47, 0.007 +19520606, 0.55, 0.03, -0.07, 0.007 +19520609, 0.38, -0.16, 0.10, 0.007 +19520610, -0.33, 0.27, -0.59, 0.007 +19520611, 0.25, -0.16, 0.35, 0.007 +19520612, 0.04, 0.00, -0.03, 0.007 +19520613, 0.20, -0.08, -0.16, 0.007 +19520616, -0.15, 0.18, -0.25, 0.007 +19520617, 0.07, -0.16, -0.01, 0.007 +19520618, 0.23, -0.02, 0.08, 0.007 +19520619, 0.31, -0.17, 0.23, 0.007 +19520620, 0.14, 0.03, -0.07, 0.007 +19520623, -0.11, -0.04, 0.17, 0.007 +19520624, 0.07, -0.29, -0.10, 0.007 +19520625, 0.35, -0.20, 0.50, 0.007 +19520626, 0.21, -0.02, 0.12, 0.007 +19520627, 0.23, -0.03, 0.06, 0.007 +19520630, 0.36, -0.10, 0.11, 0.007 +19520701, 0.53, -0.20, -0.18, 0.007 +19520702, -0.18, 0.20, -0.29, 0.007 +19520703, 0.00, 0.12, -0.07, 0.007 +19520707, -0.36, 0.17, -0.14, 0.007 +19520708, 0.05, -0.13, -0.19, 0.007 +19520709, -0.28, 0.27, -0.04, 0.007 +19520710, -0.20, -0.04, -0.12, 0.007 +19520711, 0.50, -0.22, 0.40, 0.007 +19520714, 0.07, 0.11, -0.11, 0.007 +19520715, 0.48, -0.31, 0.19, 0.007 +19520716, -0.11, -0.03, 0.15, 0.007 +19520717, -0.35, 0.05, -0.06, 0.007 +19520718, -0.65, 0.15, 0.16, 0.007 +19520721, 0.22, -0.11, -0.24, 0.007 +19520722, 0.21, 0.05, -0.12, 0.007 +19520723, 0.42, -0.21, -0.02, 0.007 +19520724, 0.33, -0.16, 0.45, 0.007 +19520725, -0.24, 0.36, -0.43, 0.007 +19520728, -0.03, 0.00, -0.04, 0.007 +19520729, 0.20, -0.11, -0.04, 0.007 +19520730, 0.21, -0.22, 0.23, 0.007 +19520731, 0.11, -0.13, 0.19, 0.007 +19520801, 0.06, 0.08, -0.12, 0.007 +19520804, -0.13, 0.07, -0.25, 0.007 +19520805, 0.04, -0.07, 0.00, 0.007 +19520806, 0.15, 0.11, -0.02, 0.007 +19520807, 0.25, -0.13, 0.25, 0.007 +19520808, -0.01, 0.20, -0.11, 0.007 +19520811, 0.03, 0.12, -0.22, 0.007 +19520812, -0.70, 0.26, -0.09, 0.007 +19520813, -0.02, -0.04, 0.11, 0.007 +19520814, -0.02, 0.08, 0.01, 0.007 +19520815, -0.20, 0.14, 0.07, 0.007 +19520818, -1.02, 0.30, -0.17, 0.007 +19520819, 0.01, -0.04, -0.03, 0.007 +19520820, 0.22, -0.06, 0.00, 0.007 +19520821, 0.14, 0.05, -0.05, 0.007 +19520822, 0.00, 0.08, 0.06, 0.007 +19520825, -0.37, 0.19, -0.02, 0.007 +19520826, -0.07, -0.02, 0.18, 0.007 +19520827, 0.36, -0.01, -0.09, 0.007 +19520828, 0.24, -0.08, 0.32, 0.007 +19520829, 0.29, -0.06, 0.20, 0.007 +19520902, 0.34, -0.14, 0.11, 0.008 +19520903, 0.21, 0.06, -0.35, 0.008 +19520904, -0.09, 0.09, -0.27, 0.008 +19520905, -0.12, 0.08, -0.28, 0.008 +19520908, -0.43, 0.20, -0.38, 0.008 +19520909, -1.06, 0.28, -0.10, 0.008 +19520910, -0.44, -0.12, 0.08, 0.008 +19520911, 0.14, 0.21, 0.04, 0.008 +19520912, -0.21, 0.20, -0.10, 0.008 +19520915, -0.95, 0.39, -0.19, 0.008 +19520916, 0.41, -0.23, 0.00, 0.008 +19520917, 0.26, 0.01, 0.15, 0.008 +19520918, -0.18, 0.17, -0.08, 0.008 +19520919, 0.21, -0.08, 0.18, 0.008 +19520922, 0.10, 0.03, 0.00, 0.008 +19520923, 0.34, -0.31, 0.32, 0.008 +19520924, 0.32, 0.06, -0.32, 0.008 +19520925, -0.01, -0.05, -0.03, 0.008 +19520926, -0.27, 0.25, -0.01, 0.008 +19520929, -0.06, -0.05, -0.14, 0.008 +19520930, -0.55, 0.10, -0.14, 0.008 +19521001, -0.25, -0.04, 0.03, 0.006 +19521002, -0.01, 0.00, 0.00, 0.006 +19521003, -0.18, 0.12, 0.11, 0.006 +19521006, -0.27, 0.11, -0.05, 0.006 +19521007, 0.04, -0.05, -0.02, 0.006 +19521008, 0.49, -0.19, 0.04, 0.006 +19521009, 0.02, 0.05, -0.02, 0.006 +19521010, -0.01, 0.18, -0.26, 0.006 +19521014, -0.35, 0.00, -0.26, 0.006 +19521015, -1.45, 0.11, -0.26, 0.006 +19521016, -0.63, -0.15, 0.07, 0.006 +19521017, 1.14, -0.18, 0.35, 0.006 +19521020, -0.32, 0.23, -0.35, 0.006 +19521021, -0.16, -0.08, -0.01, 0.006 +19521022, -0.97, 0.27, -0.05, 0.006 +19521023, 0.32, -0.36, 0.00, 0.006 +19521024, 0.41, -0.13, 0.08, 0.006 +19521027, 0.12, -0.23, -0.04, 0.006 +19521028, 0.04, -0.03, -0.11, 0.006 +19521029, 0.05, -0.22, -0.13, 0.006 +19521030, -0.02, 0.03, 0.03, 0.006 +19521031, 1.36, -0.55, 0.40, 0.006 +19521103, 0.56, -0.24, -0.16, 0.006 +19521105, 0.52, 0.02, -0.28, 0.006 +19521106, 0.38, -0.55, -0.37, 0.006 +19521107, 0.40, 0.05, 0.07, 0.006 +19521110, 0.00, 0.07, 0.04, 0.006 +19521112, -0.16, 0.32, -0.17, 0.006 +19521113, 0.09, 0.11, -0.20, 0.006 +19521114, 0.01, 0.04, -0.07, 0.006 +19521117, 0.19, -0.14, 0.25, 0.006 +19521118, 1.42, -0.36, 0.11, 0.006 +19521119, 0.71, -0.05, 0.33, 0.006 +19521120, -0.15, 0.22, 0.41, 0.006 +19521121, 0.00, 0.24, 0.09, 0.006 +19521124, 0.63, -0.15, 0.55, 0.006 +19521125, 0.12, -0.02, -0.23, 0.006 +19521126, 0.61, -0.24, 0.20, 0.006 +19521128, 0.49, -0.02, 0.35, 0.006 +19521201, 0.13, -0.04, 0.18, 0.007 +19521202, 0.27, -0.27, -0.19, 0.007 +19521203, -0.04, 0.08, -0.22, 0.007 +19521204, -0.32, 0.21, 0.00, 0.007 +19521205, 0.15, -0.18, 0.18, 0.007 +19521208, 0.41, -0.19, 0.00, 0.007 +19521209, 0.42, -0.23, -0.05, 0.007 +19521210, 0.03, -0.09, -0.40, 0.007 +19521211, 0.00, 0.05, -0.13, 0.007 +19521212, 0.31, -0.18, 0.43, 0.007 +19521215, 0.09, -0.05, 0.19, 0.007 +19521216, -0.04, -0.18, -0.02, 0.007 +19521217, -0.12, 0.13, -0.10, 0.007 +19521218, 0.00, 0.14, 0.21, 0.007 +19521219, 0.40, -0.53, 0.42, 0.007 +19521222, 0.42, -0.40, 0.25, 0.007 +19521223, -0.35, 0.10, 0.24, 0.007 +19521224, 0.06, 0.19, 0.12, 0.007 +19521226, 0.14, 0.27, -0.25, 0.007 +19521229, 0.34, -0.24, -0.29, 0.007 +19521230, 0.48, -0.25, -0.06, 0.007 +19521231, 0.10, 0.21, -0.33, 0.007 +19530102, 0.06, 0.48, 0.62, 0.008 +19530105, 0.45, 0.46, 0.10, 0.008 +19530106, -0.52, 0.36, 0.17, 0.008 +19530107, -0.33, 0.27, -0.12, 0.008 +19530108, -0.04, 0.43, 0.51, 0.008 +19530109, -0.86, 0.22, -0.10, 0.008 +19530112, -0.64, 0.44, 0.08, 0.008 +19530113, 0.57, 0.10, 0.04, 0.008 +19530114, 0.09, 0.19, -0.10, 0.008 +19530115, 0.16, 0.05, 0.14, 0.008 +19530116, -0.43, 0.05, -0.12, 0.008 +19530119, -0.07, 0.23, 0.19, 0.008 +19530120, 0.42, 0.06, 0.01, 0.008 +19530121, -0.14, 0.07, -0.01, 0.008 +19530122, 0.05, 0.20, -0.05, 0.008 +19530123, -0.13, 0.08, 0.14, 0.008 +19530126, -0.15, -0.01, 0.06, 0.008 +19530127, 0.19, -0.10, 0.10, 0.008 +19530128, 0.20, 0.03, -0.15, 0.008 +19530129, 0.32, 0.14, -0.06, 0.008 +19530130, 0.49, -0.26, -0.20, 0.008 +19530202, 0.20, 0.00, -0.34, 0.008 +19530203, 0.06, -0.03, -0.21, 0.008 +19530204, -0.10, 0.38, -0.03, 0.008 +19530205, -0.80, 0.02, -0.01, 0.008 +19530206, -0.83, 0.16, -0.64, 0.008 +19530209, -0.37, 0.15, 0.21, 0.008 +19530210, -0.14, 0.33, -0.13, 0.008 +19530211, 0.10, 0.04, 0.34, 0.008 +19530213, 0.43, -0.02, -0.02, 0.008 +19530216, -0.16, 0.27, 0.08, 0.008 +19530217, -0.48, 0.11, -0.18, 0.008 +19530218, 0.01, 0.04, 0.34, 0.008 +19530219, 0.28, 0.00, 0.26, 0.008 +19530220, 0.16, 0.00, -0.07, 0.008 +19530224, 0.62, 0.29, 0.49, 0.008 +19530225, 0.59, 0.38, -0.14, 0.008 +19530226, 0.21, -0.01, 0.04, 0.008 +19530227, -0.01, 0.07, -0.02, 0.008 +19530302, 0.06, 0.05, 0.17, 0.008 +19530303, 0.36, 0.03, -0.05, 0.008 +19530304, -0.84, 0.11, -0.13, 0.008 +19530305, 0.09, 0.06, 0.15, 0.008 +19530306, 0.36, -0.07, -0.12, 0.008 +19530309, 0.06, 0.16, -0.02, 0.008 +19530310, 0.19, -0.10, 0.07, 0.008 +19530311, 0.69, -0.22, 0.11, 0.008 +19530312, 0.00, -0.20, 0.04, 0.008 +19530313, 0.22, -0.10, 0.24, 0.008 +19530316, 0.15, -0.03, 0.29, 0.008 +19530317, 0.30, -0.14, -0.01, 0.008 +19530318, -0.03, 0.41, -0.17, 0.008 +19530319, 0.06, 0.08, -0.15, 0.008 +19530320, -0.08, 0.17, -0.11, 0.008 +19530323, -0.60, -0.09, 0.00, 0.008 +19530324, 0.54, -0.14, 0.17, 0.008 +19530325, -0.15, 0.29, -0.36, 0.008 +19530326, -0.45, -0.02, -0.19, 0.008 +19530327, 0.27, -0.02, -0.03, 0.008 +19530330, -1.53, -0.25, -0.74, 0.008 +19530331, -1.11, -0.16, 0.03, 0.008 +19530401, 0.07, 0.11, 0.17, 0.008 +19530402, -0.03, 0.19, -0.10, 0.008 +19530406, -2.13, 0.12, -0.49, 0.008 +19530407, 0.28, -0.22, 0.57, 0.008 +19530408, 0.72, 0.27, 0.18, 0.008 +19530409, -0.40, 0.12, 0.09, 0.008 +19530410, -0.17, 0.04, 0.10, 0.008 +19530413, -0.19, 0.06, 0.20, 0.008 +19530414, 0.28, -0.30, 0.37, 0.008 +19530415, 0.49, -0.01, 0.24, 0.008 +19530416, -0.23, -0.04, -0.21, 0.008 +19530417, -0.94, 0.07, -0.21, 0.008 +19530420, 0.19, -0.46, 0.37, 0.008 +19530421, -0.14, 0.39, -0.08, 0.008 +19530422, -0.75, 0.25, -0.19, 0.008 +19530423, -1.19, 0.04, 0.27, 0.008 +19530424, 0.01, -0.17, -0.02, 0.008 +19530427, 0.47, -0.03, 0.44, 0.008 +19530428, 0.47, -0.47, 0.16, 0.008 +19530429, 0.53, 0.15, -0.27, 0.008 +19530430, -0.14, 0.15, -0.01, 0.008 +19530501, 0.40, -0.17, -0.26, 0.008 +19530504, 0.91, -0.31, 0.16, 0.008 +19530505, 0.10, 0.15, -0.41, 0.008 +19530506, 0.16, -0.12, -0.08, 0.008 +19530507, -0.40, 0.03, -0.22, 0.008 +19530508, 0.23, -0.13, 0.22, 0.008 +19530511, 0.06, 0.07, -0.07, 0.008 +19530512, -0.47, 0.17, 0.13, 0.008 +19530513, -0.07, -0.03, -0.10, 0.008 +19530514, 0.47, -0.13, 0.34, 0.008 +19530515, 0.07, 0.08, 0.06, 0.008 +19530518, -0.19, 0.09, -0.03, 0.008 +19530519, -0.20, 0.03, 0.03, 0.008 +19530520, 0.94, -0.24, 0.54, 0.008 +19530521, 0.29, 0.00, -0.04, 0.008 +19530522, -0.01, 0.07, 0.09, 0.008 +19530525, -0.11, -0.07, 0.06, 0.008 +19530526, -0.30, -0.09, 0.11, 0.008 +19530527, -0.79, 0.34, -0.38, 0.008 +19530528, -0.72, 0.13, -0.16, 0.008 +19530529, 0.16, 0.05, 0.25, 0.008 +19530601, -1.40, 0.26, -0.35, 0.008 +19530602, 0.14, -0.58, 0.16, 0.008 +19530603, -0.04, 0.29, -0.02, 0.008 +19530604, -0.82, -0.11, -0.26, 0.008 +19530605, 0.18, -0.07, 0.07, 0.008 +19530608, -0.20, 0.01, 0.00, 0.008 +19530609, -1.93, -0.18, -0.30, 0.008 +19530610, -0.09, -0.50, 0.52, 0.008 +19530611, 0.85, 0.06, 0.02, 0.008 +19530612, 0.32, 0.05, -0.19, 0.008 +19530615, -0.82, 0.02, -0.36, 0.008 +19530616, -0.30, -0.23, 0.06, 0.008 +19530617, 1.23, -0.39, 0.29, 0.008 +19530618, 0.01, 0.15, 0.00, 0.008 +19530619, 0.00, -0.08, 0.06, 0.008 +19530622, 0.52, -0.06, 0.05, 0.008 +19530623, 0.56, -0.36, 0.14, 0.008 +19530624, -0.11, 0.07, -0.25, 0.008 +19530625, 0.40, -0.16, 0.00, 0.008 +19530626, -0.06, -0.11, 0.03, 0.008 +19530629, -0.16, 0.10, -0.05, 0.008 +19530630, -0.12, -0.16, -0.05, 0.008 +19530701, 0.39, -0.22, 0.20, 0.006 +19530702, 0.35, 0.05, -0.07, 0.006 +19530703, 0.26, -0.12, 0.20, 0.006 +19530706, 0.12, -0.03, -0.37, 0.006 +19530707, 0.36, -0.26, 0.26, 0.006 +19530708, 0.04, -0.04, 0.11, 0.006 +19530709, -0.33, 0.15, -0.16, 0.006 +19530710, -0.11, 0.05, -0.24, 0.006 +19530713, -0.97, 0.08, -0.14, 0.006 +19530714, -0.13, -0.23, 0.08, 0.006 +19530715, 0.29, -0.02, 0.01, 0.006 +19530716, 0.22, 0.12, -0.24, 0.006 +19530717, 0.49, -0.26, 0.40, 0.006 +19530720, -0.47, -0.02, 0.05, 0.006 +19530721, -0.23, 0.10, 0.03, 0.006 +19530722, 0.10, -0.16, -0.09, 0.006 +19530723, 0.20, 0.04, 0.12, 0.006 +19530724, 0.04, 0.24, -0.20, 0.006 +19530727, -0.58, 0.28, -0.38, 0.006 +19530728, 0.05, -0.40, 0.05, 0.006 +19530729, 0.54, -0.13, 0.25, 0.006 +19530730, 0.92, -0.21, 0.02, 0.006 +19530731, 0.84, -0.09, -0.08, 0.006 +19530803, 0.38, 0.07, -0.27, 0.008 +19530804, -0.02, 0.07, -0.13, 0.008 +19530805, 0.18, 0.06, -0.06, 0.008 +19530806, 0.40, -0.13, -0.17, 0.008 +19530807, -0.04, 0.09, -0.24, 0.008 +19530810, -0.08, 0.19, -0.46, 0.008 +19530811, -0.06, -0.07, -0.18, 0.008 +19530812, 0.43, -0.29, 0.08, 0.008 +19530813, -0.02, 0.25, -0.23, 0.008 +19530814, -0.33, 0.04, -0.23, 0.008 +19530817, -0.24, 0.00, -0.28, 0.008 +19530818, -0.48, 0.18, -0.27, 0.008 +19530819, -0.63, -0.31, -0.11, 0.008 +19530820, 0.04, 0.07, 0.25, 0.008 +19530821, 0.15, 0.01, -0.03, 0.008 +19530824, -1.11, 0.12, -0.53, 0.008 +19530825, -0.54, -0.14, 0.25, 0.008 +19530826, -0.27, 0.43, -0.22, 0.008 +19530827, -0.41, -0.21, -0.23, 0.008 +19530828, -0.23, -0.04, -0.04, 0.008 +19530831, -1.75, 0.00, -0.63, 0.008 +19530901, 0.42, -0.48, 0.15, 0.008 +19530902, 0.65, 0.18, 0.05, 0.008 +19530903, -0.24, -0.06, -0.27, 0.008 +19530904, 0.27, -0.03, 0.13, 0.008 +19530908, 0.21, -0.14, -0.15, 0.008 +19530909, 0.03, 0.06, -0.06, 0.008 +19530910, -0.86, 0.11, -0.66, 0.008 +19530911, -1.41, -0.22, -0.68, 0.008 +19530914, -1.82, -0.46, -0.49, 0.008 +19530915, 0.71, -1.32, 0.32, 0.008 +19530916, 0.73, 0.74, 0.39, 0.008 +19530917, 0.07, 0.16, -0.21, 0.008 +19530918, -0.58, 0.13, -0.24, 0.008 +19530921, -0.25, -0.07, 0.05, 0.008 +19530922, 1.32, -0.41, 0.35, 0.008 +19530923, 0.36, 0.26, 0.24, 0.008 +19530924, 0.01, 0.28, -0.13, 0.008 +19530925, 0.28, 0.20, -0.36, 0.008 +19530928, 0.60, -0.20, 0.36, 0.008 +19530929, 0.12, 0.28, -0.75, 0.008 +19530930, -0.35, 0.15, -0.42, 0.008 +19531001, 0.60, -0.18, -0.26, 0.006 +19531002, 0.39, -0.18, -0.22, 0.006 +19531005, -0.40, -0.04, -0.16, 0.006 +19531006, -0.50, -0.15, 0.16, 0.006 +19531007, 0.73, -0.17, 0.01, 0.006 +19531008, 0.22, 0.14, -0.13, 0.006 +19531009, 0.06, 0.10, -0.03, 0.006 +19531013, -0.20, 0.10, 0.10, 0.006 +19531014, 0.45, -0.17, -0.26, 0.006 +19531015, 1.18, -0.19, 0.63, 0.006 +19531016, 0.59, 0.07, 0.42, 0.006 +19531019, 0.16, -0.34, 0.20, 0.006 +19531020, 0.07, 0.16, -0.39, 0.006 +19531021, 0.02, -0.14, -0.01, 0.006 +19531022, 0.33, -0.01, -0.38, 0.006 +19531023, 0.10, 0.11, -0.20, 0.006 +19531026, -0.24, 0.16, -0.20, 0.006 +19531027, -0.30, -0.07, -0.07, 0.006 +19531028, 0.21, -0.17, 0.22, 0.006 +19531029, 0.99, -0.36, 0.40, 0.006 +19531030, 0.05, 0.00, -0.01, 0.006 +19531102, 0.43, -0.23, -0.32, 0.004 +19531104, 0.11, -0.29, -0.30, 0.004 +19531105, 0.70, -0.16, 0.33, 0.004 +19531106, 0.06, 0.09, 0.40, 0.004 +19531109, -0.09, -0.07, 0.15, 0.004 +19531110, -0.54, 0.14, -0.06, 0.004 +19531112, 0.30, -0.32, 0.10, 0.004 +19531113, 0.24, 0.25, -0.13, 0.004 +19531116, -0.55, 0.36, -0.20, 0.004 +19531117, -0.41, 0.11, -0.21, 0.004 +19531118, 0.22, -0.09, 0.18, 0.004 +19531119, 0.46, 0.01, -0.22, 0.004 +19531120, 0.06, 0.05, -0.17, 0.004 +19531123, -0.14, -0.39, -0.13, 0.004 +19531124, 0.52, -0.56, -0.03, 0.004 +19531125, 0.26, -0.01, 0.20, 0.004 +19531127, 0.63, -0.05, 0.12, 0.004 +19531130, 0.55, -0.14, 0.15, 0.004 +19531201, 0.11, -0.10, 0.11, 0.006 +19531202, 0.63, -0.08, -0.14, 0.006 +19531203, 0.20, -0.33, 0.08, 0.006 +19531204, -0.11, 0.26, -0.25, 0.006 +19531207, -0.18, 0.14, -0.26, 0.006 +19531208, -0.36, -0.14, -0.14, 0.006 +19531209, -0.01, 0.11, -0.22, 0.006 +19531210, -0.14, 0.15, -0.01, 0.006 +19531211, -0.02, -0.12, -0.01, 0.006 +19531214, -0.23, -0.13, 0.15, 0.006 +19531215, 0.00, -0.21, -0.34, 0.006 +19531216, 0.89, -0.43, 0.09, 0.006 +19531217, -0.07, 0.13, 0.09, 0.006 +19531218, 0.27, -0.11, -0.17, 0.006 +19531221, -0.17, 0.08, -0.36, 0.006 +19531222, -0.80, 0.11, -0.24, 0.006 +19531223, -0.08, 0.13, 0.20, 0.006 +19531224, 0.39, -0.01, 0.28, 0.006 +19531228, -0.44, -0.13, -0.50, 0.006 +19531229, -0.66, -0.16, -0.34, 0.006 +19531230, 0.68, -0.23, -0.31, 0.006 +19531231, 0.13, 0.20, -0.58, 0.006 +19540104, 0.73, 0.50, 1.28, 0.005 +19540105, 0.65, 0.37, 0.61, 0.005 +19540106, 0.19, 0.20, -0.08, 0.005 +19540107, -0.33, 0.41, -0.30, 0.005 +19540108, -0.40, 0.14, -0.08, 0.005 +19540111, -0.50, 0.09, -0.13, 0.005 +19540112, 0.51, -0.19, 0.30, 0.005 +19540113, 0.52, -0.03, 0.09, 0.005 +19540114, 0.46, 0.01, 0.24, 0.005 +19540115, 0.89, -0.26, 0.35, 0.005 +19540118, 0.08, 0.11, 0.15, 0.005 +19540119, 0.72, -0.44, 0.55, 0.005 +19540120, 0.27, 0.12, -0.03, 0.005 +19540121, -0.01, 0.05, -0.07, 0.005 +19540122, 0.23, -0.08, 0.06, 0.005 +19540125, 0.35, -0.27, 0.14, 0.005 +19540126, 0.74, -0.14, -0.27, 0.005 +19540127, -0.28, 0.08, 0.08, 0.005 +19540128, 0.03, -0.07, -0.02, 0.005 +19540129, 0.18, -0.17, 0.47, 0.005 +19540201, -0.22, 0.04, -0.23, 0.004 +19540202, -0.14, -0.09, 0.08, 0.004 +19540203, 0.56, -0.23, 0.10, 0.004 +19540204, 0.66, -0.23, -0.04, 0.004 +19540205, 0.34, -0.15, 0.00, 0.004 +19540208, -0.02, 0.18, 0.09, 0.004 +19540209, 0.03, 0.03, -0.07, 0.004 +19540210, -0.15, 0.31, 0.17, 0.004 +19540211, -0.13, 0.02, 0.00, 0.004 +19540212, 0.32, -0.04, 0.09, 0.004 +19540215, -0.33, 0.20, 0.10, 0.004 +19540216, -0.78, 0.19, -0.34, 0.004 +19540217, 0.27, -0.27, 0.23, 0.004 +19540218, 0.49, 0.04, -0.21, 0.004 +19540219, -0.12, 0.13, 0.13, 0.004 +19540223, -0.33, -0.04, -0.13, 0.004 +19540224, -0.06, -0.11, -0.01, 0.004 +19540225, 0.42, 0.01, -0.02, 0.004 +19540226, 0.87, -0.17, -0.21, 0.004 +19540301, 0.52, -0.28, -0.10, 0.003 +19540302, 0.25, -0.09, -0.31, 0.003 +19540303, 0.03, -0.08, 0.24, 0.003 +19540304, 0.25, -0.36, 0.17, 0.003 +19540305, 0.43, -0.13, 0.15, 0.003 +19540308, -0.21, 0.07, -0.19, 0.003 +19540309, 0.21, -0.05, -0.21, 0.003 +19540310, 0.30, 0.19, -0.10, 0.003 +19540311, 0.46, 0.01, -0.21, 0.003 +19540312, -0.09, 0.07, -0.19, 0.003 +19540315, -0.33, 0.12, -0.21, 0.003 +19540316, 0.03, 0.09, 0.06, 0.003 +19540317, 0.11, -0.19, 0.59, 0.003 +19540318, 0.52, 0.00, 0.10, 0.003 +19540319, 0.38, -0.01, -0.02, 0.003 +19540322, -0.05, 0.06, -0.23, 0.003 +19540323, -0.69, -0.02, -0.34, 0.003 +19540324, -0.47, 0.16, -0.18, 0.003 +19540325, -0.09, 0.14, -0.11, 0.003 +19540326, 0.62, 0.07, -0.13, 0.003 +19540329, 0.40, -0.06, -0.28, 0.003 +19540330, 0.30, 0.19, -0.05, 0.003 +19540331, 0.77, -0.36, 0.14, 0.003 +19540401, 0.72, -0.46, 0.27, 0.004 +19540402, 0.09, 0.07, -0.34, 0.004 +19540405, 0.06, 0.12, -0.42, 0.004 +19540406, -0.91, 0.13, 0.00, 0.004 +19540407, 0.55, -0.09, -0.01, 0.004 +19540408, 0.72, -0.24, 0.54, 0.004 +19540409, 0.44, -0.02, 0.14, 0.004 +19540412, -0.07, -0.19, -0.14, 0.004 +19540413, 0.18, -0.20, 0.27, 0.004 +19540414, 0.71, -0.46, -0.21, 0.004 +19540415, 0.40, -0.27, -0.26, 0.004 +19540419, -0.53, 0.00, -0.29, 0.004 +19540420, 0.04, -0.03, -0.31, 0.004 +19540421, -0.09, 0.06, 0.03, 0.004 +19540422, 0.21, -0.05, -0.30, 0.004 +19540423, 0.40, -0.25, 0.43, 0.004 +19540426, 0.11, -0.29, 0.18, 0.004 +19540427, -0.41, -0.09, -0.03, 0.004 +19540428, 0.23, -0.13, -0.15, 0.004 +19540429, 1.22, -0.65, 0.58, 0.004 +19540430, 0.13, -0.37, -0.29, 0.004 +19540503, -0.12, -0.12, -0.16, 0.003 +19540504, 0.12, -0.32, 0.17, 0.003 +19540505, -0.04, 0.16, -0.03, 0.003 +19540506, 0.52, -0.18, 0.02, 0.003 +19540507, 0.40, 0.02, -0.01, 0.003 +19540510, 0.09, 0.06, 0.19, 0.003 +19540511, -0.35, 0.11, -0.13, 0.003 +19540512, 0.76, -0.06, 0.39, 0.003 +19540513, -0.26, 0.31, 0.45, 0.003 +19540514, 0.49, -0.11, 0.33, 0.003 +19540517, 0.22, -0.22, 0.28, 0.003 +19540518, 0.16, 0.14, 0.14, 0.003 +19540519, -0.20, 0.11, 0.25, 0.003 +19540520, 0.35, -0.05, 0.38, 0.003 +19540521, 0.51, 0.28, -0.02, 0.003 +19540524, 0.04, 0.10, -0.20, 0.003 +19540525, -0.23, 0.05, -0.13, 0.003 +19540526, 0.54, -0.07, 0.47, 0.003 +19540527, -0.20, 0.16, -0.21, 0.003 +19540528, 0.26, 0.00, 0.20, 0.003 +19540601, 0.18, 0.25, -0.10, 0.003 +19540602, -0.18, 0.27, -0.43, 0.003 +19540603, 0.06, 0.16, 0.13, 0.003 +19540604, -0.19, 0.16, -0.15, 0.003 +19540607, -0.13, 0.00, -0.06, 0.003 +19540608, -2.04, 0.56, -0.26, 0.003 +19540609, -0.45, 0.13, 0.31, 0.003 +19540610, 0.56, 0.45, 0.02, 0.003 +19540611, 0.66, -0.29, 0.75, 0.003 +19540614, 0.06, -0.06, -0.09, 0.003 +19540615, 0.75, -0.63, 0.39, 0.003 +19540616, 0.74, -0.06, -0.06, 0.003 +19540617, -0.10, 0.06, -0.05, 0.003 +19540618, 0.04, 0.02, 0.15, 0.003 +19540621, 0.17, -0.06, -0.22, 0.003 +19540622, 0.10, -0.25, -0.14, 0.003 +19540623, 0.17, -0.29, -0.04, 0.003 +19540624, 0.58, -0.26, 0.25, 0.003 +19540625, 0.08, 0.10, -0.03, 0.003 +19540628, 0.62, -0.31, -0.59, 0.003 +19540629, 0.00, -0.01, 0.03, 0.003 +19540630, -0.54, 0.47, 0.19, 0.003 +19540701, 0.02, 0.23, -0.20, 0.002 +19540702, 0.99, -0.36, 0.07, 0.002 +19540706, 0.86, -0.19, -0.18, 0.002 +19540707, 0.02, -0.07, 0.10, 0.002 +19540708, -0.15, 0.06, 0.02, 0.002 +19540709, 0.47, -0.09, 0.36, 0.002 +19540712, 0.10, 0.12, 0.70, 0.002 +19540713, -0.27, 0.08, 0.46, 0.002 +19540714, 0.26, 0.17, 0.35, 0.002 +19540715, 0.30, 0.25, 0.23, 0.002 +19540716, -0.38, 0.47, 0.00, 0.002 +19540719, -0.30, 0.36, -0.21, 0.002 +19540720, -0.25, 0.43, 0.13, 0.002 +19540721, 0.75, -0.30, 0.48, 0.002 +19540722, 0.80, -0.40, 0.79, 0.002 +19540723, 0.18, -0.12, 0.39, 0.002 +19540726, 0.02, 0.34, -0.39, 0.002 +19540727, 0.43, -0.11, 0.63, 0.002 +19540728, 0.23, 0.03, 0.03, 0.002 +19540729, 0.37, 0.05, -0.11, 0.002 +19540730, 0.42, 0.07, 0.23, 0.002 +19540802, 0.28, 0.12, 0.28, 0.002 +19540803, 0.25, -0.22, 0.15, 0.002 +19540804, 0.01, 0.46, -0.24, 0.002 +19540805, -0.19, 0.73, -0.21, 0.002 +19540806, -1.21, 0.17, -0.62, 0.002 +19540809, -0.42, 0.49, 0.30, 0.002 +19540810, 0.85, 0.06, 0.61, 0.002 +19540811, 0.86, -0.01, 0.53, 0.002 +19540812, -0.16, 0.30, -0.35, 0.002 +19540813, 0.28, -0.06, 0.29, 0.002 +19540816, 0.73, -0.41, 0.46, 0.002 +19540817, -0.01, 0.01, -0.55, 0.002 +19540818, 0.10, 0.13, -0.23, 0.002 +19540819, 0.27, -0.20, -0.42, 0.002 +19540820, 0.12, -0.01, 0.17, 0.002 +19540823, -0.66, 0.53, -0.13, 0.002 +19540824, -0.36, 0.20, -0.40, 0.002 +19540825, -0.60, 0.03, -0.32, 0.002 +19540826, -0.30, 0.09, 0.05, 0.002 +19540827, 0.24, 0.09, -0.05, 0.002 +19540830, -0.94, 0.11, -0.47, 0.002 +19540831, -1.48, 0.12, -0.23, 0.002 +19540901, 0.82, 0.02, 0.35, 0.004 +19540902, 0.64, -0.12, -0.14, 0.004 +19540903, 0.64, 0.01, 0.55, 0.004 +19540907, 0.47, -0.32, 0.55, 0.004 +19540908, 0.12, -0.20, -0.11, 0.004 +19540909, 0.23, -0.22, 0.42, 0.004 +19540910, 0.34, 0.01, 0.40, 0.004 +19540913, 0.65, -0.28, 0.60, 0.004 +19540914, 0.32, -0.20, -0.31, 0.004 +19540915, -0.16, -0.06, -0.30, 0.004 +19540916, 0.35, 0.02, 0.26, 0.004 +19540917, 0.62, -0.09, -0.14, 0.004 +19540920, -0.37, 0.08, -0.46, 0.004 +19540921, 0.55, -0.33, 0.21, 0.004 +19540922, 0.59, -0.29, 0.13, 0.004 +19540923, 0.41, -0.42, -0.25, 0.004 +19540924, 0.50, -0.29, 0.02, 0.004 +19540927, 0.20, -0.19, -0.57, 0.004 +19540928, 0.12, -0.34, -0.41, 0.004 +19540929, -0.41, 0.38, -0.10, 0.004 +19540930, -0.41, 0.40, -0.05, 0.004 +19541001, 0.12, -0.03, 0.29, 0.003 +19541004, 0.50, -0.18, 0.00, 0.003 +19541005, 0.34, -0.14, 0.02, 0.003 +19541006, 0.24, -0.22, 0.14, 0.003 +19541007, -0.21, -0.05, 0.56, 0.003 +19541008, -0.02, 0.07, 0.04, 0.003 +19541011, -0.64, 0.40, 0.19, 0.003 +19541012, -0.37, 0.12, -0.32, 0.003 +19541013, -0.06, 0.15, 0.04, 0.003 +19541014, -1.15, 0.37, -0.50, 0.003 +19541015, -0.32, 0.29, 0.52, 0.003 +19541018, 0.32, -0.35, 0.17, 0.003 +19541019, 0.30, -0.18, 0.39, 0.003 +19541020, 0.61, -0.04, 0.38, 0.003 +19541021, 0.13, -0.09, 0.07, 0.003 +19541022, 0.12, 0.27, -0.22, 0.003 +19541025, -0.57, -0.14, -0.47, 0.003 +19541026, -0.07, 0.06, 0.03, 0.003 +19541027, 0.00, 0.07, -0.08, 0.003 +19541028, -0.23, 0.15, -0.38, 0.003 +19541029, -0.70, 0.06, -0.15, 0.003 +19541101, 0.45, -0.52, 0.13, 0.003 +19541103, 1.98, -0.47, 0.28, 0.003 +19541104, 1.01, -0.19, 0.07, 0.003 +19541105, -0.03, -0.09, 0.15, 0.003 +19541108, 0.87, -0.23, 0.70, 0.003 +19541109, 0.38, -0.10, 0.12, 0.003 +19541110, 0.35, 0.07, -0.04, 0.003 +19541111, 0.74, -0.22, 0.58, 0.003 +19541112, 0.30, -0.11, 0.47, 0.003 +19541115, -0.07, 0.00, -0.08, 0.003 +19541116, 0.51, -0.34, 0.47, 0.003 +19541117, 0.34, -0.22, 0.68, 0.003 +19541118, -0.47, 0.41, -0.66, 0.003 +19541119, 0.32, 0.58, 0.30, 0.003 +19541122, 0.56, -0.04, 0.52, 0.003 +19541123, 1.18, -0.38, 0.17, 0.003 +19541124, 0.25, -0.20, 0.26, 0.003 +19541126, 0.73, -0.34, 0.15, 0.003 +19541129, 0.25, -0.25, -0.03, 0.003 +19541130, -0.59, 0.21, -0.26, 0.003 +19541201, -0.47, 0.22, -0.27, 0.004 +19541202, 0.68, 0.42, 0.30, 0.004 +19541203, 0.93, 0.33, 0.15, 0.004 +19541206, 0.70, 0.18, 0.20, 0.004 +19541207, 0.24, -0.03, 0.40, 0.004 +19541208, 0.00, 0.10, 0.16, 0.004 +19541209, -0.34, 0.10, -0.09, 0.004 +19541210, -0.18, 0.61, 0.32, 0.004 +19541213, -0.14, 0.04, 0.40, 0.004 +19541214, -0.70, 0.24, -0.24, 0.004 +19541215, 0.42, -0.66, 0.86, 0.004 +19541216, 0.95, -0.27, 0.54, 0.004 +19541217, 0.61, -0.09, 0.51, 0.004 +19541220, 0.72, -0.12, 0.10, 0.004 +19541221, 0.15, 0.21, 0.00, 0.004 +19541222, -0.03, 0.33, 0.12, 0.004 +19541223, 0.10, 0.14, 0.39, 0.004 +19541227, -0.66, -0.05, 0.05, 0.004 +19541228, 0.91, -0.09, 1.10, 0.004 +19541229, 0.81, -0.02, 0.41, 0.004 +19541230, 0.08, 0.27, -0.06, 0.004 +19541231, 0.61, 0.14, -0.01, 0.004 +19550103, 1.08, -0.43, -0.18, 0.004 +19550104, -0.42, 0.24, -0.16, 0.004 +19550105, -2.12, 0.21, -1.27, 0.004 +19550106, -1.37, 0.20, -0.24, 0.004 +19550107, 1.11, 0.32, 1.28, 0.004 +19550110, 1.43, 0.01, 0.62, 0.004 +19550111, -0.18, 0.18, -0.35, 0.004 +19550112, -0.22, -0.04, 0.25, 0.004 +19550113, -0.49, 0.27, -0.15, 0.004 +19550114, -0.38, 0.45, -0.05, 0.004 +19550117, -1.90, 0.63, -0.73, 0.004 +19550118, 0.67, -0.33, 0.53, 0.004 +19550119, 0.49, 0.43, -0.10, 0.004 +19550120, 0.26, 0.12, -0.49, 0.004 +19550121, 0.66, -0.17, 0.57, 0.004 +19550124, 0.13, -0.25, 0.16, 0.004 +19550125, -0.11, -0.34, 0.42, 0.004 +19550126, 0.71, -0.90, 1.25, 0.004 +19550127, 0.16, 0.26, -0.01, 0.004 +19550128, 0.42, -0.13, 0.38, 0.004 +19550131, 0.75, -0.54, 0.49, 0.004 +19550201, 0.42, -0.33, -0.51, 0.004 +19550202, -0.10, 0.09, -0.32, 0.004 +19550203, -0.11, 0.56, 0.30, 0.004 +19550204, 1.03, -0.44, -0.42, 0.004 +19550207, 0.28, 0.30, -0.50, 0.004 +19550208, -0.80, 0.12, -0.54, 0.004 +19550209, 1.07, -0.17, 1.09, 0.004 +19550210, 0.78, 0.04, 0.08, 0.004 +19550211, 0.17, -0.17, -0.12, 0.004 +19550214, -0.25, 0.50, 0.14, 0.004 +19550215, 0.31, 0.33, -0.07, 0.004 +19550216, -0.26, 0.39, -0.04, 0.004 +19550217, 0.13, 0.29, 0.12, 0.004 +19550218, 0.27, 0.00, 0.24, 0.004 +19550221, 0.06, 0.35, 0.17, 0.004 +19550223, 0.07, -0.19, 0.33, 0.004 +19550224, -0.49, -0.22, -0.03, 0.004 +19550225, -0.10, 0.38, -0.14, 0.004 +19550228, 0.51, -0.35, 0.88, 0.004 +19550301, 0.32, -0.36, 0.51, 0.004 +19550302, 0.80, -0.05, 0.65, 0.004 +19550303, 0.27, 0.01, -0.63, 0.004 +19550304, 0.39, -0.25, -0.01, 0.004 +19550307, -0.39, 0.11, -0.26, 0.004 +19550308, -1.83, 0.08, -0.79, 0.004 +19550309, -1.22, -0.71, 0.18, 0.004 +19550310, 0.79, 0.66, 0.42, 0.004 +19550311, -1.54, 0.06, -0.43, 0.004 +19550314, -2.43, -0.20, -0.31, 0.004 +19550315, 1.91, -0.13, 1.03, 0.004 +19550316, 0.94, 0.34, 0.18, 0.004 +19550317, 0.42, -0.03, 0.08, 0.004 +19550318, 0.15, 0.22, -0.41, 0.004 +19550321, -0.54, 0.16, -0.13, 0.004 +19550322, 0.53, -0.43, 0.86, 0.004 +19550323, 1.19, 0.08, 0.31, 0.004 +19550324, 0.84, -0.38, 0.14, 0.004 +19550325, 0.27, -0.17, 0.04, 0.004 +19550328, -0.34, 0.01, 0.05, 0.004 +19550329, 0.09, 0.09, 0.67, 0.004 +19550330, -0.88, 0.17, -0.74, 0.004 +19550331, 0.22, 0.12, 0.58, 0.004 +19550401, 0.83, -0.44, 0.66, 0.005 +19550404, -0.15, 0.24, -0.36, 0.005 +19550405, 0.38, -0.30, 0.25, 0.005 +19550406, 0.18, -0.11, 0.19, 0.005 +19550407, 0.40, -0.25, 0.11, 0.005 +19550411, 0.22, -0.27, -0.32, 0.005 +19550412, 0.44, -0.26, 0.36, 0.005 +19550413, 0.28, -0.07, -0.13, 0.005 +19550414, 0.08, 0.14, -0.33, 0.005 +19550415, 0.40, 0.13, 0.49, 0.005 +19550418, 0.60, -0.52, -0.12, 0.005 +19550419, -0.16, -0.13, 0.26, 0.005 +19550420, 0.18, 0.01, 0.18, 0.005 +19550421, -0.08, -0.04, 0.04, 0.005 +19550422, -0.75, 0.04, -0.26, 0.005 +19550425, 0.26, -0.14, 0.84, 0.005 +19550426, 0.57, -0.40, -0.01, 0.005 +19550427, -0.40, 0.10, -0.63, 0.005 +19550428, -0.81, 0.47, -0.52, 0.005 +19550429, 0.60, 0.03, 0.17, 0.005 +19550502, 0.13, -0.41, -0.02, 0.007 +19550503, -0.85, -0.24, -0.76, 0.007 +19550504, 0.12, 0.01, 0.38, 0.007 +19550505, 0.47, 0.09, 0.04, 0.007 +19550506, 0.30, 0.03, 0.40, 0.007 +19550509, 0.11, -0.13, 0.00, 0.007 +19550510, -0.20, -0.20, -0.46, 0.007 +19550511, -0.93, 0.27, -0.33, 0.007 +19550512, -0.58, 0.32, -0.49, 0.007 +19550513, 0.57, 0.07, 0.42, 0.007 +19550516, -1.02, 0.12, -0.68, 0.007 +19550517, -0.05, 0.12, 0.07, 0.007 +19550518, 0.77, -0.02, 0.64, 0.007 +19550519, 0.67, 0.10, 0.09, 0.007 +19550520, 0.66, -0.10, 0.19, 0.007 +19550523, -0.64, 0.34, -0.55, 0.007 +19550524, 0.11, -0.12, 0.19, 0.007 +19550525, 0.48, -0.12, 0.23, 0.007 +19550526, 0.70, -0.50, 0.38, 0.007 +19550527, 0.14, 0.03, -0.40, 0.007 +19550531, 0.03, 0.02, -0.15, 0.007 +19550601, 0.18, -0.21, -0.34, 0.005 +19550602, 0.29, -0.24, 0.15, 0.005 +19550603, 0.64, -0.46, 0.58, 0.005 +19550606, 0.53, -0.71, 0.87, 0.005 +19550607, 0.69, -0.54, 0.56, 0.005 +19550608, 0.52, -0.38, 0.17, 0.005 +19550609, -0.51, 0.17, -0.72, 0.005 +19550610, 0.51, -0.33, 0.48, 0.005 +19550613, 0.89, -0.79, 0.19, 0.005 +19550614, -0.02, -0.02, -0.14, 0.005 +19550615, 0.68, -0.18, -0.04, 0.005 +19550616, 0.15, 0.10, -0.08, 0.005 +19550617, 0.28, -0.09, 0.27, 0.005 +19550620, 0.23, -0.10, -0.31, 0.005 +19550621, 0.45, -0.14, -0.14, 0.005 +19550622, 0.19, -0.12, 0.47, 0.005 +19550623, 0.11, -0.06, -0.36, 0.005 +19550624, 0.11, 0.08, -0.24, 0.005 +19550627, 0.08, -0.34, 0.50, 0.005 +19550628, -0.35, 0.28, -0.46, 0.005 +19550629, 0.13, -0.17, 0.28, 0.005 +19550630, 0.56, -0.19, 0.16, 0.005 +19550701, 0.39, -0.12, 0.12, 0.005 +19550705, 0.91, -0.54, -0.23, 0.005 +19550706, 1.20, -1.44, -1.03, 0.005 +19550707, -1.39, 0.07, 0.16, 0.005 +19550708, -0.10, 0.08, 0.01, 0.005 +19550711, 0.47, -0.07, 0.37, 0.005 +19550712, -0.13, 0.20, -0.06, 0.005 +19550713, -0.95, 0.32, 0.38, 0.005 +19550714, 0.21, 0.00, 0.38, 0.005 +19550715, 0.42, 0.02, 0.33, 0.005 +19550718, -0.15, -0.17, 0.08, 0.005 +19550719, -0.58, 0.48, -0.02, 0.005 +19550720, 0.23, 0.20, 0.34, 0.005 +19550721, 0.76, 0.13, -0.20, 0.005 +19550722, 0.71, -0.29, 0.35, 0.005 +19550725, 0.48, -0.10, -0.23, 0.005 +19550726, -0.01, -0.38, 0.14, 0.005 +19550727, 0.05, -0.11, 0.00, 0.005 +19550728, -0.48, 0.27, -0.15, 0.005 +19550729, -0.13, 0.10, -0.12, 0.005 +19550801, -1.14, 0.28, 0.01, 0.007 +19550802, 0.11, 0.18, 0.08, 0.007 +19550803, 0.21, 0.10, -0.16, 0.007 +19550804, -1.24, 0.31, -0.12, 0.007 +19550805, 0.53, 0.02, -0.06, 0.007 +19550808, -0.49, -0.09, 0.05, 0.007 +19550809, -1.04, 0.15, -0.12, 0.007 +19550810, 0.14, 0.04, -0.19, 0.007 +19550811, 0.84, -0.39, 0.57, 0.007 +19550812, 0.28, 0.00, -0.17, 0.007 +19550815, -0.15, 0.00, 0.11, 0.007 +19550816, -0.53, 0.10, 0.29, 0.007 +19550817, -0.04, -0.24, 0.24, 0.007 +19550818, -0.01, 0.05, 0.15, 0.007 +19550819, 0.14, -0.01, 0.07, 0.007 +19550822, -0.11, -0.19, 0.12, 0.007 +19550823, 0.94, -0.64, 0.27, 0.007 +19550824, 0.38, 0.00, 0.15, 0.007 +19550825, 0.45, -0.03, -0.07, 0.007 +19550826, 0.39, 0.00, -0.20, 0.007 +19550829, 0.08, 0.06, -0.16, 0.007 +19550830, 0.02, 0.00, -0.17, 0.007 +19550831, 0.50, -0.09, -0.12, 0.007 +19550901, 0.28, -0.01, -0.22, 0.008 +19550902, 0.43, -0.09, 0.09, 0.008 +19550906, 0.56, -0.24, 0.01, 0.008 +19550907, 0.03, -0.22, 0.43, 0.008 +19550908, 0.19, 0.20, 0.04, 0.008 +19550909, 0.13, 0.08, 0.16, 0.008 +19550912, 0.45, -0.12, -0.35, 0.008 +19550913, 0.63, -0.46, -0.48, 0.008 +19550914, 0.23, -0.09, 0.35, 0.008 +19550915, -0.13, 0.26, 0.01, 0.008 +19550916, 0.44, -0.03, -0.12, 0.008 +19550919, 0.02, 0.00, -0.23, 0.008 +19550920, -0.04, 0.14, 0.03, 0.008 +19550921, 0.43, -0.15, -0.17, 0.008 +19550922, 0.04, 0.03, 0.10, 0.008 +19550923, 0.39, -0.29, 0.22, 0.008 +19550926, -6.52, 0.40, -0.48, 0.008 +19550927, 2.17, -0.36, -0.56, 0.008 +19550928, 1.27, 0.45, -0.20, 0.008 +19550929, -0.61, 0.52, 0.32, 0.008 +19550930, -0.50, 0.32, -0.11, 0.008 +19551003, -2.24, 0.57, 0.02, 0.009 +19551004, 0.48, 0.08, -0.07, 0.009 +19551005, 0.51, 0.04, 0.20, 0.009 +19551006, -0.41, 0.36, -0.21, 0.009 +19551007, -0.77, -0.01, -0.13, 0.009 +19551010, -2.56, 0.53, -0.24, 0.009 +19551011, -0.73, 0.04, 0.34, 0.009 +19551012, 1.37, -0.26, 0.04, 0.009 +19551013, -0.14, -0.03, 0.01, 0.009 +19551014, -0.16, -0.05, 0.33, 0.009 +19551017, 0.31, -0.09, 0.27, 0.009 +19551018, 0.42, -0.07, -0.01, 0.009 +19551019, 0.82, -0.17, -0.01, 0.009 +19551020, 0.93, -0.10, -0.28, 0.009 +19551021, 0.10, -0.04, 0.27, 0.009 +19551024, 0.57, -0.31, 0.02, 0.009 +19551025, -0.48, 0.17, 0.11, 0.009 +19551026, -0.62, 0.39, -0.09, 0.009 +19551027, -0.21, 0.20, -0.30, 0.009 +19551028, 0.27, -0.02, -0.08, 0.009 +19551031, -0.08, 0.19, -0.12, 0.009 +19551101, 0.02, -0.10, -0.11, 0.008 +19551102, 0.18, -0.05, 0.15, 0.008 +19551103, 1.40, -0.63, -0.14, 0.008 +19551104, 1.34, -0.71, -0.17, 0.008 +19551107, 0.58, -0.15, -0.04, 0.008 +19551109, 0.85, -0.52, -0.31, 0.008 +19551110, -0.12, 0.09, 0.31, 0.008 +19551111, 0.78, -0.04, 0.07, 0.008 +19551114, 1.45, -0.71, -0.57, 0.008 +19551115, 0.14, -0.21, -0.12, 0.008 +19551116, -0.24, 0.14, 0.37, 0.008 +19551117, -0.40, 0.40, -0.10, 0.008 +19551118, -0.16, 0.16, -0.19, 0.008 +19551121, -0.59, 0.28, 0.47, 0.008 +19551122, 0.84, -0.42, 0.20, 0.008 +19551123, 0.28, -0.29, -0.02, 0.008 +19551125, 0.35, -0.25, 0.61, 0.008 +19551128, -0.41, 0.26, 0.33, 0.008 +19551129, 0.34, 0.06, -0.10, 0.008 +19551130, 0.23, 0.34, -0.20, 0.008 +19551201, -0.15, 0.38, -0.13, 0.009 +19551202, 0.27, 0.17, -0.19, 0.009 +19551205, 0.51, 0.00, -0.30, 0.009 +19551206, 0.10, 0.28, -0.11, 0.009 +19551207, -0.13, 0.55, -0.62, 0.009 +19551208, 0.45, 0.04, -0.19, 0.009 +19551209, 0.05, 0.16, 0.22, 0.009 +19551212, -0.67, 0.12, 0.14, 0.009 +19551213, 0.01, 0.05, 0.19, 0.009 +19551214, -0.63, 0.54, -0.18, 0.009 +19551215, 0.02, 0.02, -0.14, 0.009 +19551216, 0.32, 0.10, -0.18, 0.009 +19551219, -0.09, 0.25, -0.07, 0.009 +19551220, -0.09, 0.09, -0.25, 0.009 +19551221, 0.82, -0.35, -0.08, 0.009 +19551222, 0.22, 0.16, -0.06, 0.009 +19551223, 0.16, -0.12, 0.16, 0.009 +19551227, -0.27, -0.02, 0.31, 0.009 +19551228, -0.24, -0.01, -0.05, 0.009 +19551229, 0.05, -0.25, -0.18, 0.009 +19551230, 0.81, -0.13, -0.52, 0.009 +19560103, -0.65, 0.13, 0.09, 0.010 +19560104, -0.53, 0.33, -0.17, 0.010 +19560105, 0.12, 0.42, -0.04, 0.010 +19560106, 0.45, -0.11, 0.35, 0.010 +19560109, -1.27, 0.24, 0.02, 0.010 +19560110, -0.75, 0.00, 0.07, 0.010 +19560111, 0.62, 0.21, -0.11, 0.010 +19560112, 0.61, -0.01, -0.02, 0.010 +19560113, -0.04, -0.07, 0.10, 0.010 +19560116, -1.02, 0.31, -0.24, 0.010 +19560117, 0.47, -0.22, 0.00, 0.010 +19560118, -0.81, 0.27, -0.16, 0.010 +19560119, -1.02, 0.23, -0.01, 0.010 +19560120, -0.72, 0.10, -0.02, 0.010 +19560123, -0.37, -0.18, 0.05, 0.010 +19560124, 1.28, -0.25, 0.20, 0.010 +19560125, 0.36, -0.15, 0.13, 0.010 +19560126, -0.54, 0.05, 0.42, 0.010 +19560127, -0.24, -0.11, 0.01, 0.010 +19560130, 0.21, -0.02, -0.06, 0.010 +19560131, 0.82, -0.73, 0.53, 0.010 +19560201, 0.58, -0.25, -0.22, 0.010 +19560202, 0.20, -0.10, -0.32, 0.010 +19560203, 0.91, -0.47, -0.55, 0.010 +19560206, -0.01, 0.15, -0.26, 0.010 +19560207, -0.21, -0.01, 0.15, 0.010 +19560208, -1.02, 0.22, -0.20, 0.010 +19560209, -1.00, 0.34, 0.22, 0.010 +19560210, 0.27, -0.08, 0.13, 0.010 +19560213, -0.10, 0.02, 0.08, 0.010 +19560214, -0.38, 0.12, 0.06, 0.010 +19560215, 1.17, -0.06, 0.07, 0.010 +19560216, -0.16, 0.22, 0.10, 0.010 +19560217, 1.43, -0.65, 0.37, 0.010 +19560220, 0.08, 0.09, 0.49, 0.010 +19560221, 0.18, 0.05, -0.01, 0.010 +19560223, 1.07, -0.24, -0.20, 0.010 +19560224, 0.68, -0.44, -0.01, 0.010 +19560227, -0.06, 0.14, -0.12, 0.010 +19560228, 0.39, -0.12, -0.21, 0.010 +19560229, -0.26, 0.04, -0.09, 0.010 +19560301, 0.59, -0.22, -0.08, 0.007 +19560302, 0.72, -0.31, 0.29, 0.007 +19560305, 0.61, -0.02, 0.13, 0.007 +19560306, -0.08, 0.17, -0.42, 0.007 +19560307, 0.00, 0.28, 0.03, 0.007 +19560308, 0.35, -0.10, 0.19, 0.007 +19560309, 1.13, -0.22, -0.11, 0.007 +19560312, 0.73, -0.38, -0.16, 0.007 +19560313, 0.00, 0.03, -0.18, 0.007 +19560314, 0.61, -0.39, 0.01, 0.007 +19560315, 0.60, -0.24, -0.29, 0.007 +19560316, 0.05, -0.13, 0.00, 0.007 +19560319, 0.58, -0.36, 0.00, 0.007 +19560320, 0.26, -0.47, 0.22, 0.007 +19560321, -0.88, 0.55, 0.08, 0.007 +19560322, 0.60, -0.31, 0.08, 0.007 +19560323, 0.44, -0.13, -0.13, 0.007 +19560326, 0.03, 0.15, -0.12, 0.007 +19560327, -0.55, 0.21, -0.36, 0.007 +19560328, 0.38, -0.18, 0.38, 0.007 +19560329, 0.25, -0.25, 0.32, 0.007 +19560402, 0.66, -0.54, -0.13, 0.009 +19560403, -0.26, 0.16, -0.37, 0.009 +19560404, 0.27, -0.08, -0.12, 0.009 +19560405, -0.43, 0.15, 0.08, 0.009 +19560406, 0.51, -0.18, 0.03, 0.009 +19560409, -0.50, 0.44, -0.11, 0.009 +19560410, -1.33, 0.55, -0.09, 0.009 +19560411, 0.78, -0.18, 0.02, 0.009 +19560412, -0.56, 0.51, 0.17, 0.009 +19560413, 0.05, 0.21, 0.35, 0.009 +19560416, -0.02, -0.03, 0.11, 0.009 +19560417, -0.06, 0.00, -0.16, 0.009 +19560418, -0.21, 0.15, -0.08, 0.009 +19560419, -0.36, 0.06, -0.08, 0.009 +19560420, 0.47, -0.37, 0.44, 0.009 +19560423, -0.04, -0.05, 0.32, 0.009 +19560424, -0.83, 0.34, -0.05, 0.009 +19560425, -0.26, 0.02, 0.53, 0.009 +19560426, 0.78, -0.28, -0.25, 0.009 +19560427, 0.96, -0.36, -0.28, 0.009 +19560430, 0.68, -0.49, -0.50, 0.009 +19560501, -0.31, 0.06, -0.32, 0.010 +19560502, 0.05, 0.26, -0.21, 0.010 +19560503, 0.43, -0.17, 0.29, 0.010 +19560504, 0.52, 0.03, -0.29, 0.010 +19560507, -0.30, 0.10, -0.15, 0.010 +19560508, -0.29, -0.08, 0.24, 0.010 +19560509, 0.02, -0.10, 0.57, 0.010 +19560510, -1.35, 0.44, -0.34, 0.010 +19560511, 0.19, 0.42, -0.22, 0.010 +19560514, -1.10, 0.36, -0.39, 0.010 +19560515, -0.54, -0.05, 0.24, 0.010 +19560516, -0.16, 0.18, 0.34, 0.010 +19560517, 0.73, -0.24, -0.08, 0.010 +19560518, -0.28, 0.24, 0.24, 0.010 +19560521, -1.04, 0.09, -0.27, 0.010 +19560522, -1.26, 0.37, -0.14, 0.010 +19560523, -0.39, 0.38, -0.10, 0.010 +19560524, -1.29, -0.10, -0.02, 0.010 +19560525, 0.02, -0.28, 0.13, 0.010 +19560528, -1.21, -0.25, -0.31, 0.010 +19560529, 2.24, -0.25, -0.54, 0.010 +19560531, 0.08, 0.13, -0.04, 0.010 +19560601, 0.49, -0.28, -0.23, 0.009 +19560604, 0.45, -0.35, 0.01, 0.009 +19560605, 0.08, 0.19, -0.05, 0.009 +19560606, -0.34, 0.10, -0.11, 0.009 +19560607, 0.60, -0.13, -0.08, 0.009 +19560608, -1.75, -0.41, 0.01, 0.009 +19560611, 1.19, -0.06, 0.00, 0.009 +19560612, 1.28, -0.55, -0.17, 0.009 +19560613, 0.25, 0.29, 0.08, 0.009 +19560614, -0.24, -0.03, 0.26, 0.009 +19560615, 0.19, -0.07, -0.14, 0.009 +19560618, -0.60, 0.48, -0.02, 0.009 +19560619, 0.34, -0.26, -0.32, 0.009 +19560620, 0.27, -0.07, -0.26, 0.009 +19560621, 0.48, -0.23, 0.20, 0.009 +19560622, -0.10, 0.15, -0.12, 0.009 +19560625, -0.42, 0.20, -0.20, 0.009 +19560626, 0.58, -0.16, -0.04, 0.009 +19560627, 0.60, -0.01, -0.24, 0.009 +19560628, 0.13, -0.30, 0.15, 0.009 +19560629, -0.01, 0.05, -0.01, 0.009 +19560702, 0.01, -0.16, -0.16, 0.010 +19560703, 0.61, -0.19, -0.32, 0.010 +19560705, 0.82, -0.23, -0.11, 0.010 +19560706, 0.45, -0.22, 0.07, 0.010 +19560709, 0.36, 0.05, 0.07, 0.010 +19560710, 0.41, 0.08, -0.06, 0.010 +19560711, 0.24, 0.12, 0.08, 0.010 +19560712, -0.25, 0.16, 0.20, 0.010 +19560713, 0.47, -0.15, 0.19, 0.010 +19560716, 0.68, -0.47, -0.12, 0.010 +19560717, 0.36, -0.15, -0.01, 0.010 +19560718, -0.07, -0.12, 0.17, 0.010 +19560719, 0.02, -0.02, -0.04, 0.010 +19560720, 0.21, 0.06, -0.05, 0.010 +19560723, 0.06, -0.28, 0.18, 0.010 +19560724, -0.10, 0.07, 0.22, 0.010 +19560725, 0.19, -0.18, 0.03, 0.010 +19560726, 0.21, 0.01, -0.27, 0.010 +19560727, -0.66, 0.18, -0.10, 0.010 +19560730, 0.00, -0.07, 0.11, 0.010 +19560731, 0.66, -0.17, -0.02, 0.010 +19560801, 0.13, -0.03, -0.05, 0.007 +19560802, 0.52, 0.07, -0.69, 0.007 +19560803, -0.16, 0.03, -0.12, 0.007 +19560806, -1.40, 0.39, 0.15, 0.007 +19560807, 0.74, -0.22, 0.05, 0.007 +19560808, 0.59, -0.07, -0.25, 0.007 +19560809, 0.11, 0.15, 0.05, 0.007 +19560810, -0.43, 0.06, -0.11, 0.007 +19560813, -0.76, 0.15, 0.08, 0.007 +19560814, 0.36, -0.13, -0.08, 0.007 +19560815, -0.02, 0.14, -0.08, 0.007 +19560816, -0.10, 0.09, -0.17, 0.007 +19560817, -0.01, 0.19, -0.03, 0.007 +19560820, -0.94, 0.28, 0.18, 0.007 +19560821, -1.08, -0.08, 0.17, 0.007 +19560822, -0.42, 0.40, 0.31, 0.007 +19560823, 0.83, -0.13, -0.30, 0.007 +19560824, 0.07, 0.28, -0.14, 0.007 +19560827, -0.56, 0.21, -0.05, 0.007 +19560828, -0.36, 0.21, 0.12, 0.007 +19560829, -0.40, 0.09, 0.35, 0.007 +19560830, -0.93, -0.03, 0.08, 0.007 +19560831, 1.05, -0.11, -0.18, 0.007 +19560904, 0.75, -0.17, -0.29, 0.010 +19560905, 0.36, 0.03, -0.42, 0.010 +19560906, 0.11, 0.02, -0.06, 0.010 +19560907, -0.53, 0.34, 0.07, 0.010 +19560910, -0.41, 0.16, 0.10, 0.010 +19560911, -0.64, 0.26, 0.00, 0.010 +19560912, -0.54, 0.03, 0.11, 0.010 +19560913, -0.17, 0.13, -0.10, 0.010 +19560914, 0.40, -0.64, 0.98, 0.010 +19560917, -0.21, 0.02, 0.05, 0.010 +19560918, -0.78, 0.29, 0.06, 0.010 +19560919, -0.93, 0.36, 0.39, 0.010 +19560920, -0.26, -0.05, 0.21, 0.010 +19560921, 0.69, 0.10, 0.17, 0.010 +19560924, -0.54, 0.24, -0.17, 0.010 +19560925, -1.38, 0.15, 0.33, 0.010 +19560926, -0.05, -0.27, 0.50, 0.010 +19560927, -0.43, 0.44, -0.28, 0.010 +19560928, -0.68, 0.19, 0.19, 0.010 +19561001, -1.52, 0.13, -0.04, 0.011 +19561002, 1.73, -0.33, -0.13, 0.011 +19561003, 1.49, -0.50, -0.31, 0.011 +19561004, -0.05, 0.19, -0.21, 0.011 +19561005, 0.36, 0.00, 0.34, 0.011 +19561008, 0.01, -0.03, 0.12, 0.011 +19561009, -0.47, 0.33, -0.20, 0.011 +19561010, 1.04, -0.53, -0.16, 0.011 +19561011, 0.14, 0.22, -0.19, 0.011 +19561012, 0.26, -0.04, 0.28, 0.011 +19561015, 0.02, -0.01, -0.03, 0.011 +19561016, -0.38, -0.02, 0.48, 0.011 +19561017, -0.70, 0.35, 0.24, 0.011 +19561018, 0.16, -0.19, 0.19, 0.011 +19561019, -0.03, 0.16, 0.45, 0.011 +19561022, -0.20, -0.13, -0.01, 0.011 +19561023, -0.07, 0.09, -0.22, 0.011 +19561024, -0.39, 0.18, -0.29, 0.011 +19561025, -0.30, 0.02, 0.03, 0.011 +19561026, 0.88, -0.21, 0.13, 0.011 +19561029, 0.17, 0.25, -0.59, 0.011 +19561030, -0.20, -0.12, 0.18, 0.011 +19561031, -1.37, 0.12, -0.13, 0.011 +19561101, 1.75, -0.63, 0.18, 0.010 +19561102, 0.83, -0.22, -0.27, 0.010 +19561105, 1.39, -0.64, -0.35, 0.010 +19561107, -0.62, 0.45, -0.02, 0.010 +19561108, -0.74, 0.11, 0.13, 0.010 +19561109, -0.49, 0.49, -0.23, 0.010 +19561112, 0.50, -0.11, 0.36, 0.010 +19561113, -0.03, 0.05, 0.53, 0.010 +19561114, -0.65, -0.04, 0.42, 0.010 +19561115, -0.50, 0.54, 0.42, 0.010 +19561116, -0.08, 0.03, 0.19, 0.010 +19561119, -1.02, 0.30, 0.22, 0.010 +19561120, -0.59, 0.04, 0.17, 0.010 +19561121, -0.23, -0.07, -0.16, 0.010 +19561123, 0.94, -0.46, -0.06, 0.010 +19561126, -0.32, 0.47, 0.34, 0.010 +19561127, 0.03, -0.15, 0.05, 0.010 +19561128, -0.99, 0.54, -0.08, 0.010 +19561129, -0.25, -0.32, 0.10, 0.010 +19561130, 1.51, -0.71, -0.25, 0.010 +19561203, 1.57, -0.69, -0.18, 0.012 +19561204, -0.07, 0.30, -0.85, 0.012 +19561205, 0.94, -0.25, -0.21, 0.012 +19561206, 0.52, -0.63, 0.58, 0.012 +19561207, 0.26, 0.13, -0.18, 0.012 +19561210, -0.30, 0.37, 0.04, 0.012 +19561211, -0.45, 0.37, -0.07, 0.012 +19561212, -0.63, 0.70, -0.33, 0.012 +19561213, 0.68, -0.19, 0.37, 0.012 +19561214, 0.19, 0.31, -0.47, 0.012 +19561217, -0.05, -0.03, -0.06, 0.012 +19561218, 0.01, -0.09, -0.22, 0.012 +19561219, -0.27, 0.15, -0.28, 0.012 +19561220, -0.62, 0.23, -0.02, 0.012 +19561221, 0.59, -0.30, 0.41, 0.012 +19561226, 0.24, -0.12, -0.34, 0.012 +19561227, -0.08, -0.09, -0.21, 0.012 +19561228, 0.24, -0.07, 0.06, 0.012 +19561231, 0.36, -0.17, -0.11, 0.012 +19570102, -0.73, 0.65, 0.84, 0.012 +19570103, 0.79, -0.02, 0.25, 0.012 +19570104, 0.17, 0.10, 0.43, 0.012 +19570107, -0.46, 0.32, 0.66, 0.012 +19570108, -0.13, 0.46, 0.05, 0.012 +19570109, -0.19, 0.37, 0.19, 0.012 +19570110, 0.37, 0.32, 0.27, 0.012 +19570111, -0.10, 0.45, 0.12, 0.012 +19570114, -0.72, 0.33, -0.19, 0.012 +19570115, -1.11, 0.37, 0.19, 0.012 +19570116, -0.06, 0.20, 0.09, 0.012 +19570117, -0.30, -0.21, -0.02, 0.012 +19570118, -1.22, 0.25, -0.04, 0.012 +19570121, -0.34, 0.01, -0.23, 0.012 +19570122, 0.32, 0.25, -0.09, 0.012 +19570123, 0.56, -0.23, 0.20, 0.012 +19570124, 0.24, 0.14, -0.15, 0.012 +19570125, -0.51, -0.15, -0.04, 0.012 +19570128, -0.69, -0.09, -0.06, 0.012 +19570129, 0.23, 0.03, 0.30, 0.012 +19570130, 0.53, -0.43, 0.08, 0.012 +19570131, -0.27, 0.34, -0.04, 0.012 +19570201, -0.39, -0.03, -0.16, 0.013 +19570204, -0.19, 0.22, -0.10, 0.013 +19570205, -1.26, -0.16, -0.16, 0.013 +19570206, 0.15, -0.09, 0.23, 0.013 +19570207, -0.36, 0.05, -0.13, 0.013 +19570208, -0.42, -0.03, -0.11, 0.013 +19570211, -1.73, 0.15, -0.60, 0.013 +19570212, -0.54, -0.30, 0.18, 0.013 +19570213, 1.55, -0.14, 0.13, 0.013 +19570214, 0.05, 0.06, 0.01, 0.013 +19570215, 1.23, -0.27, -0.17, 0.013 +19570218, -0.22, 0.46, -0.37, 0.013 +19570219, 0.20, -0.25, -0.08, 0.013 +19570220, 0.45, -0.37, -0.11, 0.013 +19570221, -0.39, 0.10, -0.02, 0.013 +19570225, 0.01, -0.14, 0.20, 0.013 +19570226, 0.19, -0.09, -0.02, 0.013 +19570227, -0.18, -0.03, 0.41, 0.013 +19570228, -0.19, 0.08, 0.18, 0.013 +19570301, 0.89, -0.39, -0.13, 0.011 +19570304, 0.68, -0.15, -0.15, 0.011 +19570305, 0.42, -0.24, -0.08, 0.011 +19570306, 0.31, 0.02, -0.44, 0.011 +19570307, -0.26, 0.44, -0.23, 0.011 +19570308, -0.35, -0.02, 0.08, 0.011 +19570311, -0.54, 0.43, -0.04, 0.011 +19570312, -0.02, -0.13, 0.11, 0.011 +19570313, 0.56, 0.21, 0.02, 0.011 +19570314, 0.09, -0.12, 0.10, 0.011 +19570315, 0.13, 0.18, 0.02, 0.011 +19570318, -0.40, 0.03, -0.04, 0.011 +19570319, 0.36, 0.02, -0.10, 0.011 +19570320, 0.13, 0.39, -0.04, 0.011 +19570321, 0.03, -0.17, 0.04, 0.011 +19570322, -0.16, 0.07, 0.36, 0.011 +19570325, -0.42, 0.09, 0.08, 0.011 +19570326, 0.15, -0.13, -0.12, 0.011 +19570327, 0.30, -0.13, -0.06, 0.011 +19570328, 0.34, -0.08, 0.12, 0.011 +19570329, -0.14, -0.02, -0.03, 0.011 +19570401, -0.01, -0.17, -0.12, 0.012 +19570402, 0.59, -0.23, -0.10, 0.012 +19570403, 0.35, 0.01, 0.07, 0.012 +19570404, -0.24, 0.12, -0.11, 0.012 +19570405, 0.07, 0.12, -0.36, 0.012 +19570408, 0.03, 0.04, -0.29, 0.012 +19570409, 0.84, -0.40, -0.21, 0.012 +19570410, 0.53, -0.28, 0.28, 0.012 +19570411, 0.08, 0.20, -0.20, 0.012 +19570412, 0.19, -0.01, 0.00, 0.012 +19570415, -0.12, -0.04, 0.18, 0.012 +19570416, 0.07, -0.06, -0.10, 0.012 +19570417, 0.22, -0.11, -0.26, 0.012 +19570418, 0.69, -0.18, -0.04, 0.012 +19570422, 0.10, 0.13, -0.04, 0.012 +19570423, 0.56, -0.46, 0.42, 0.012 +19570424, 0.16, -0.18, -0.09, 0.012 +19570425, -0.32, -0.07, 0.28, 0.012 +19570426, -0.12, -0.07, 0.03, 0.012 +19570429, 0.38, 0.07, -0.45, 0.012 +19570430, 0.11, 0.00, -0.34, 0.012 +19570501, 0.55, -0.29, -0.33, 0.012 +19570502, 0.73, -0.40, -0.14, 0.012 +19570503, -0.07, 0.32, -0.06, 0.012 +19570506, -0.13, -0.03, 0.01, 0.012 +19570507, -0.17, 0.03, -0.15, 0.012 +19570508, 0.40, 0.10, -0.34, 0.012 +19570509, 0.13, 0.24, -0.09, 0.012 +19570510, 0.43, -0.03, -0.29, 0.012 +19570513, 0.71, -0.33, -0.42, 0.012 +19570514, -0.43, 0.25, 0.02, 0.012 +19570515, 0.24, 0.08, -0.34, 0.012 +19570516, 0.42, -0.17, 0.46, 0.012 +19570517, 0.29, -0.14, 0.13, 0.012 +19570520, 0.27, -0.26, -0.25, 0.012 +19570521, 0.07, -0.11, -0.03, 0.012 +19570522, -0.34, -0.03, 0.17, 0.012 +19570523, -0.09, -0.01, 0.10, 0.012 +19570524, 0.13, -0.19, 0.17, 0.012 +19570527, -0.89, 0.18, -0.10, 0.012 +19570528, -0.14, 0.03, 0.21, 0.012 +19570529, 0.83, -0.27, -0.30, 0.012 +19570531, 0.45, -0.06, -0.39, 0.012 +19570603, -0.19, 0.04, -0.08, 0.012 +19570604, -0.13, 0.00, 0.06, 0.012 +19570605, 0.02, 0.00, -0.03, 0.012 +19570606, 0.63, -0.38, -0.33, 0.012 +19570607, 0.03, -0.01, 0.03, 0.012 +19570610, -0.65, 0.00, 0.29, 0.012 +19570611, 1.26, -0.01, -0.16, 0.012 +19570612, 0.16, -0.23, 0.28, 0.012 +19570613, 0.16, 0.06, -0.18, 0.012 +19570614, -0.02, 0.11, -0.18, 0.012 +19570617, 0.16, -0.10, -0.18, 0.012 +19570618, -0.44, 0.42, -0.47, 0.012 +19570619, -0.92, 0.60, -0.07, 0.012 +19570620, -0.57, 0.19, 0.15, 0.012 +19570621, -0.58, 0.13, 0.35, 0.012 +19570624, -0.74, -0.09, 0.46, 0.012 +19570625, 0.66, -0.02, -0.05, 0.012 +19570626, -0.16, 0.07, 0.19, 0.012 +19570627, 0.36, -0.24, -0.04, 0.012 +19570628, 0.23, 0.02, -0.11, 0.012 +19570701, 0.18, -0.40, 0.22, 0.013 +19570702, 0.86, -0.41, -0.33, 0.013 +19570703, 0.79, -0.10, -0.33, 0.013 +19570705, 0.77, -0.07, -0.41, 0.013 +19570708, 0.37, -0.15, -0.31, 0.013 +19570709, -0.26, -0.07, 0.44, 0.013 +19570710, 0.67, -0.47, 0.31, 0.013 +19570711, -0.39, 0.06, 0.36, 0.013 +19570712, 0.41, -0.16, 0.00, 0.013 +19570715, 0.07, -0.30, 0.28, 0.013 +19570716, -0.49, 0.13, 0.29, 0.013 +19570717, -0.59, 0.33, -0.16, 0.013 +19570718, -0.10, 0.33, -0.35, 0.013 +19570719, 0.02, 0.16, -0.23, 0.013 +19570722, -0.22, 0.18, -0.01, 0.013 +19570723, -0.12, -0.15, 0.49, 0.013 +19570724, 0.07, 0.01, 0.00, 0.013 +19570725, -0.01, -0.10, 0.34, 0.013 +19570726, -0.34, 0.03, -0.09, 0.013 +19570729, -1.12, 0.14, -0.07, 0.013 +19570730, 0.12, 0.11, -0.02, 0.013 +19570731, 0.00, 0.16, -0.04, 0.013 +19570801, -0.25, 0.11, -0.13, 0.011 +19570802, -0.09, -0.11, 0.51, 0.011 +19570805, -0.85, 0.25, 0.19, 0.011 +19570806, -1.10, 0.20, 0.23, 0.011 +19570807, 0.83, -0.47, -0.29, 0.011 +19570808, -0.32, 0.66, -0.49, 0.011 +19570809, 0.02, -0.30, 0.14, 0.011 +19570812, -1.10, 0.25, 0.16, 0.011 +19570813, -0.02, 0.00, -0.28, 0.011 +19570814, -1.25, 0.05, 0.29, 0.011 +19570815, 0.08, -0.28, 0.14, 0.011 +19570816, 0.15, 0.01, 0.06, 0.011 +19570819, -1.92, 0.32, 0.36, 0.011 +19570820, 0.75, -0.50, -0.18, 0.011 +19570821, 0.56, -0.02, -0.39, 0.011 +19570822, -0.67, 0.11, 0.46, 0.011 +19570823, -1.40, -0.03, 0.32, 0.011 +19570826, -1.42, 0.08, 0.12, 0.011 +19570827, 1.54, 0.00, -0.96, 0.011 +19570828, 0.12, 0.22, -0.47, 0.011 +19570829, -0.46, -0.04, -0.03, 0.011 +19570830, 1.65, -0.48, -0.32, 0.011 +19570903, 0.44, 0.21, -0.22, 0.013 +19570904, -0.85, 0.32, 0.01, 0.013 +19570905, -0.36, 0.00, -0.02, 0.013 +19570906, -0.27, 0.20, 0.35, 0.013 +19570909, -0.85, 0.09, 0.03, 0.013 +19570910, -0.88, 0.13, -0.05, 0.013 +19570911, 0.75, -0.61, -0.06, 0.013 +19570912, 1.23, -0.28, -0.44, 0.013 +19570913, -0.05, 0.35, 0.14, 0.013 +19570916, -0.47, 0.09, 0.07, 0.013 +19570917, 0.15, -0.03, -0.19, 0.013 +19570918, 0.13, -0.13, 0.22, 0.013 +19570919, -0.61, 0.33, 0.06, 0.013 +19570920, -1.58, -0.02, 0.45, 0.013 +19570923, -2.13, -0.18, 0.16, 0.013 +19570924, 0.64, -0.11, -0.27, 0.013 +19570925, -1.27, -0.44, 0.18, 0.013 +19570926, 0.22, -0.09, -0.03, 0.013 +19570927, -0.03, 0.62, 0.06, 0.013 +19570930, -0.33, -0.36, 0.44, 0.013 +19571001, 0.73, -0.47, -0.37, 0.013 +19571002, 0.84, -0.12, -0.02, 0.013 +19571003, 0.04, -0.29, 0.50, 0.013 +19571004, -0.71, 0.32, 0.28, 0.013 +19571007, -1.89, 0.10, 0.60, 0.013 +19571008, -0.80, -0.60, -0.18, 0.013 +19571009, 0.18, 0.25, -0.08, 0.013 +19571010, -2.51, -0.36, 0.47, 0.013 +19571011, -0.12, -0.27, -0.56, 0.013 +19571014, 0.71, 0.24, -1.12, 0.013 +19571015, 1.05, -0.07, 0.01, 0.013 +19571016, -0.77, 0.14, 0.10, 0.013 +19571017, -1.80, -0.48, 0.30, 0.013 +19571018, -0.87, -0.14, 0.07, 0.013 +19571021, -3.04, -0.53, 0.00, 0.013 +19571022, -0.56, -0.63, -0.67, 0.013 +19571023, 4.42, -0.27, -1.06, 0.013 +19571024, 0.10, 0.78, -0.01, 0.013 +19571025, -0.34, -0.07, -0.09, 0.013 +19571028, -0.43, -0.36, 0.32, 0.013 +19571029, 0.63, -0.15, -0.23, 0.013 +19571030, 0.86, 0.04, -0.01, 0.013 +19571031, 0.12, 0.30, -0.29, 0.013 +19571101, -1.42, 0.64, 0.07, 0.015 +19571104, -0.07, -0.10, -0.29, 0.015 +19571106, 0.20, 0.67, -0.66, 0.015 +19571107, 0.56, 0.13, -0.26, 0.015 +19571108, -1.01, 0.37, 0.00, 0.015 +19571111, -0.12, 0.16, 0.00, 0.015 +19571112, -1.18, 0.45, 0.40, 0.015 +19571113, -0.17, -0.13, -0.02, 0.015 +19571114, -0.62, -0.14, -0.12, 0.015 +19571115, 2.65, -0.49, -0.43, 0.015 +19571118, -0.80, 0.13, -0.24, 0.015 +19571119, -0.62, 0.04, -0.90, 0.015 +19571120, 0.41, -0.07, 0.22, 0.015 +19571121, 1.37, -0.68, 0.15, 0.015 +19571122, 1.01, 0.07, 0.01, 0.015 +19571125, 0.80, -0.47, -0.27, 0.015 +19571126, -2.59, 0.37, 0.59, 0.015 +19571127, 2.85, -0.61, -1.25, 0.015 +19571129, 1.20, -0.03, 0.10, 0.015 +19571202, -0.81, 0.47, -0.13, 0.011 +19571203, 0.05, -0.09, -0.33, 0.011 +19571204, 0.43, -0.13, -0.49, 0.011 +19571205, 0.05, 0.00, -0.17, 0.011 +19571206, -0.60, 0.38, 0.06, 0.011 +19571209, -0.75, 0.20, -0.36, 0.011 +19571210, -0.84, 0.06, 0.04, 0.011 +19571211, -0.16, -0.33, -0.28, 0.011 +19571212, 0.14, -0.54, 1.21, 0.011 +19571213, 0.45, -0.17, 0.03, 0.011 +19571216, -1.46, 0.32, -0.11, 0.011 +19571217, -1.71, 0.07, 0.41, 0.011 +19571218, -0.10, -0.52, 0.22, 0.011 +19571219, 1.01, -0.40, -0.41, 0.011 +19571220, -0.83, 0.39, -0.12, 0.011 +19571223, -0.07, -0.26, -0.73, 0.011 +19571224, 0.11, 0.19, 0.03, 0.011 +19571226, 1.03, -0.37, -0.18, 0.011 +19571227, -0.34, 0.08, -0.26, 0.011 +19571230, -0.55, -0.35, -0.33, 0.011 +19571231, 1.02, 0.01, 0.08, 0.011 +19580102, 0.97, 0.62, 1.19, 0.013 +19580103, 1.35, 0.39, 0.99, 0.013 +19580106, -0.43, 0.66, 0.29, 0.013 +19580107, 0.80, 0.19, -0.21, 0.013 +19580108, 0.00, 0.18, 0.24, 0.013 +19580109, -0.61, 0.73, -0.16, 0.013 +19580110, -0.89, 0.43, 0.05, 0.013 +19580113, 0.29, -0.03, -0.13, 0.013 +19580114, 0.45, 0.00, 0.12, 0.013 +19580115, 0.83, -0.26, -0.17, 0.013 +19580116, 0.20, 0.42, 0.51, 0.013 +19580117, 0.11, -0.11, 0.63, 0.013 +19580120, 0.55, 0.20, -0.37, 0.013 +19580121, -0.06, 0.62, -0.18, 0.013 +19580122, -0.22, 0.13, 0.13, 0.013 +19580123, 0.40, 0.11, 0.11, 0.013 +19580124, 0.87, -0.13, 0.31, 0.013 +19580127, -0.22, -0.09, 0.55, 0.013 +19580128, 0.03, -0.01, -0.27, 0.013 +19580129, 0.57, -0.32, 0.29, 0.013 +19580130, -0.44, 0.37, -0.01, 0.013 +19580131, 0.02, -0.06, 0.07, 0.013 +19580203, 0.77, 0.01, -0.09, 0.006 +19580204, 1.04, -0.24, -0.07, 0.006 +19580205, -0.48, 0.20, 0.14, 0.006 +19580206, -0.22, -0.03, 0.09, 0.006 +19580207, -0.76, 0.19, -0.25, 0.006 +19580210, -0.57, 0.16, 0.10, 0.006 +19580211, -0.81, 0.36, 0.02, 0.006 +19580212, -0.41, -0.17, 0.32, 0.006 +19580213, 0.03, 0.20, 0.10, 0.006 +19580214, 0.93, -0.49, 0.18, 0.006 +19580217, -0.53, 0.53, 0.15, 0.006 +19580218, 0.17, -0.19, 0.11, 0.006 +19580219, 0.02, 0.13, -0.25, 0.006 +19580220, -0.57, 0.31, 0.14, 0.006 +19580221, -0.09, -0.06, -0.18, 0.006 +19580224, -0.54, 0.10, -0.12, 0.006 +19580225, -0.10, -0.34, 0.06, 0.006 +19580226, 0.78, -0.09, -0.02, 0.006 +19580227, -0.52, 0.30, -0.25, 0.006 +19580228, 0.36, -0.20, 0.11, 0.006 +19580303, 0.68, -0.25, -0.46, 0.004 +19580304, 0.42, 0.17, -0.37, 0.004 +19580305, 0.44, -0.13, 0.14, 0.004 +19580306, 1.16, -0.50, 0.07, 0.004 +19580307, 0.18, 0.27, -0.34, 0.004 +19580310, 0.20, -0.21, 0.12, 0.004 +19580311, 0.81, -0.10, -0.13, 0.004 +19580312, -0.16, 0.13, 0.01, 0.004 +19580313, 0.08, 0.34, 0.43, 0.004 +19580314, -0.14, 0.07, -0.08, 0.004 +19580317, -0.81, 0.34, 0.22, 0.004 +19580318, -0.20, -0.09, -0.31, 0.004 +19580319, 0.49, 0.19, 0.01, 0.004 +19580320, -0.01, 0.30, -0.06, 0.004 +19580321, 0.73, -0.13, 0.08, 0.004 +19580324, 0.26, -0.25, 0.18, 0.004 +19580325, -0.21, 0.05, -0.16, 0.004 +19580326, -0.25, 0.19, 0.12, 0.004 +19580327, -0.28, 0.10, -0.03, 0.004 +19580328, 0.14, 0.12, -0.30, 0.004 +19580331, -0.30, 0.00, 0.00, 0.004 +19580401, -0.39, -0.25, 0.01, 0.004 +19580402, -0.77, 0.15, 0.28, 0.004 +19580403, -0.27, 0.14, 0.15, 0.004 +19580407, -0.39, -0.05, 0.18, 0.004 +19580408, 0.75, 0.03, -0.06, 0.004 +19580409, 0.06, 0.22, 0.23, 0.004 +19580410, 0.13, 0.11, 0.30, 0.004 +19580411, 0.17, -0.10, 0.45, 0.004 +19580414, 0.58, -0.15, -0.10, 0.004 +19580415, 0.96, -0.37, 0.01, 0.004 +19580416, -0.73, 0.30, 0.11, 0.004 +19580417, 0.33, -0.30, 0.95, 0.004 +19580418, 1.00, -0.28, -0.66, 0.004 +19580421, 0.47, -0.30, 0.38, 0.004 +19580422, -0.35, 0.33, -0.07, 0.004 +19580423, 0.13, 0.26, -0.33, 0.004 +19580424, 0.77, -0.06, -0.07, 0.004 +19580425, 0.49, -0.10, -0.38, 0.004 +19580428, -0.37, 0.26, -0.01, 0.004 +19580429, -0.44, -0.06, 0.12, 0.004 +19580430, 0.95, -0.38, -0.09, 0.004 +19580501, 0.15, 0.07, -0.21, 0.005 +19580502, 0.41, 0.07, -0.07, 0.005 +19580505, 0.24, -0.01, 0.29, 0.005 +19580506, 0.60, -0.23, 0.16, 0.005 +19580507, -0.12, 0.11, -0.10, 0.005 +19580508, 0.18, 0.01, 0.06, 0.005 +19580509, 0.09, 0.13, 0.24, 0.005 +19580512, -0.40, 0.45, -0.16, 0.005 +19580513, -0.21, 0.63, -0.34, 0.005 +19580514, -1.11, 0.19, 0.10, 0.005 +19580515, 0.54, -0.19, 0.36, 0.005 +19580516, 0.06, -0.01, 0.00, 0.005 +19580519, -0.25, 0.19, -0.02, 0.005 +19580520, 0.84, 0.02, -0.28, 0.005 +19580521, -0.07, 0.33, 0.06, 0.005 +19580522, 0.52, 0.21, -0.10, 0.005 +19580523, 0.27, 0.26, -0.20, 0.005 +19580526, 0.00, 0.01, 0.30, 0.005 +19580527, -0.12, 0.02, -0.16, 0.005 +19580528, 0.12, -0.03, 0.01, 0.005 +19580529, 0.57, -0.05, -0.24, 0.005 +19580602, 0.47, -0.05, -0.34, 0.001 +19580603, 0.34, -0.20, 0.21, 0.001 +19580604, 0.07, 0.00, -0.09, 0.001 +19580605, 0.17, -0.27, 0.36, 0.001 +19580606, 0.22, 0.17, -0.03, 0.001 +19580609, -0.09, -0.11, -0.33, 0.001 +19580610, -0.19, -0.03, 0.00, 0.001 +19580611, 0.07, -0.14, 0.37, 0.001 +19580612, 0.56, 0.02, -0.33, 0.001 +19580613, 0.60, 0.00, 0.25, 0.001 +19580616, 0.39, -0.06, 0.02, 0.001 +19580617, 0.30, -0.09, 0.09, 0.001 +19580618, -0.36, 0.10, 0.07, 0.001 +19580619, -1.14, 0.39, -0.12, 0.001 +19580620, 0.54, -0.23, 0.16, 0.001 +19580623, -0.35, 0.02, 0.15, 0.001 +19580624, -0.33, 0.25, 0.03, 0.001 +19580625, 0.24, -0.02, 0.26, 0.001 +19580626, 0.50, 0.09, -0.21, 0.001 +19580627, 0.28, 0.14, 0.27, 0.001 +19580630, 0.64, -0.22, -0.30, 0.001 +19580701, 0.09, -0.18, -0.05, 0.003 +19580702, 0.10, 0.12, -0.04, 0.003 +19580703, 0.35, 0.24, -0.02, 0.003 +19580707, 0.30, -0.19, 0.15, 0.003 +19580708, -0.52, -0.04, 0.20, 0.003 +19580709, -0.33, 0.04, -0.24, 0.003 +19580710, 0.46, -0.16, -0.17, 0.003 +19580711, 0.64, -0.21, 0.62, 0.003 +19580714, -1.25, 0.27, -0.12, 0.003 +19580715, 0.13, -0.31, 0.34, 0.003 +19580716, 0.22, 0.19, 0.03, 0.003 +19580717, 0.74, -0.25, 0.52, 0.003 +19580718, 0.40, -0.49, 0.30, 0.003 +19580721, 1.16, -0.28, -0.15, 0.003 +19580722, 0.16, 0.19, -0.30, 0.003 +19580723, 0.01, 0.48, 0.10, 0.003 +19580724, 0.53, 0.16, 0.35, 0.003 +19580725, 0.68, 0.05, 0.49, 0.003 +19580728, 0.34, 0.25, 0.25, 0.003 +19580729, -0.27, 0.43, -0.09, 0.003 +19580730, 0.39, 0.18, 0.63, 0.003 +19580731, -0.01, -0.01, 0.18, 0.003 +19580801, 0.76, -0.07, 0.29, 0.002 +19580804, 0.92, -0.35, 0.62, 0.002 +19580805, -0.49, -0.09, -0.46, 0.002 +19580806, -0.43, -0.21, -0.23, 0.002 +19580807, 0.71, 0.09, 0.64, 0.002 +19580808, 0.53, 0.04, -0.20, 0.002 +19580811, 0.35, -0.21, 0.02, 0.002 +19580812, -0.80, 0.14, -0.30, 0.002 +19580813, 0.22, 0.02, 0.40, 0.002 +19580814, 0.23, 0.23, 0.03, 0.002 +19580815, -0.88, 0.45, -0.61, 0.002 +19580818, -0.54, 0.06, -0.12, 0.002 +19580819, 0.18, -0.03, 0.37, 0.002 +19580820, 0.14, 0.14, 0.09, 0.002 +19580821, 0.60, 0.11, -0.18, 0.002 +19580822, 0.20, 0.21, 0.06, 0.002 +19580825, 0.08, 0.01, -0.02, 0.002 +19580826, 0.38, -0.08, 0.10, 0.002 +19580827, 0.04, 0.38, 0.03, 0.002 +19580828, -0.50, 0.16, -0.26, 0.002 +19580829, 0.23, 0.14, 0.02, 0.002 +19580902, 0.51, 0.34, -0.18, 0.009 +19580903, 0.39, -0.04, -0.19, 0.009 +19580904, -0.17, 0.15, -0.19, 0.009 +19580905, -0.11, 0.19, -0.11, 0.009 +19580908, 0.38, 0.20, -0.12, 0.009 +19580909, 0.53, -0.01, 0.06, 0.009 +19580910, -0.26, 0.03, 0.01, 0.009 +19580911, 0.65, -0.19, 0.09, 0.009 +19580912, -0.25, 0.10, 0.06, 0.009 +19580915, 0.85, -0.53, 0.60, 0.009 +19580916, 0.65, -0.54, 0.33, 0.009 +19580917, -0.08, -0.07, 0.16, 0.009 +19580918, -0.44, 0.19, 0.44, 0.009 +19580919, 0.66, 0.06, 0.91, 0.009 +19580922, -0.41, 0.41, -0.11, 0.009 +19580923, 0.65, -0.14, -0.05, 0.009 +19580924, 0.38, -0.25, 0.39, 0.009 +19580925, -0.39, -0.15, 0.30, 0.009 +19580926, 0.22, 0.39, -0.14, 0.009 +19580929, 0.42, 0.16, 0.47, 0.009 +19580930, 0.36, -0.17, 0.05, 0.009 +19581001, -0.21, -0.24, -0.28, 0.008 +19581002, 0.32, 0.09, 0.06, 0.008 +19581003, 0.41, -0.14, 0.40, 0.008 +19581006, 0.55, -0.19, 0.15, 0.008 +19581007, 0.51, -0.33, -0.36, 0.008 +19581008, 0.12, -0.14, -0.25, 0.008 +19581009, 0.04, 0.20, 0.29, 0.008 +19581010, 0.59, 0.10, -0.01, 0.008 +19581013, 0.36, 0.17, -0.37, 0.008 +19581014, -0.73, -0.03, -1.00, 0.008 +19581015, -1.18, 0.46, -0.74, 0.008 +19581016, 0.76, -0.30, 0.36, 0.008 +19581017, 0.92, 0.50, -0.19, 0.008 +19581020, -0.28, 0.52, -0.12, 0.008 +19581021, -0.04, -0.05, 0.02, 0.008 +19581022, -0.32, 0.22, 0.33, 0.008 +19581023, -0.17, 0.00, 0.74, 0.008 +19581024, -0.22, 0.01, 0.25, 0.008 +19581027, -0.76, -0.20, 0.05, 0.008 +19581028, 0.44, 0.02, 0.58, 0.008 +19581029, 1.11, 0.17, 0.12, 0.008 +19581030, 0.16, 0.15, -0.85, 0.008 +19581031, 0.16, 0.03, -0.25, 0.008 +19581103, 0.41, -0.56, -0.05, 0.006 +19581105, 1.04, -0.08, -0.29, 0.006 +19581106, 0.62, -0.20, -0.48, 0.006 +19581107, -0.14, -0.01, 0.13, 0.006 +19581110, 0.67, -0.28, 0.36, 0.006 +19581111, 0.78, -0.03, 0.08, 0.006 +19581112, 0.15, 0.28, -0.43, 0.006 +19581113, -0.37, 0.35, 0.01, 0.006 +19581114, 0.50, 0.31, -0.16, 0.006 +19581117, 0.26, 0.07, -0.12, 0.006 +19581118, -0.15, 0.17, -0.26, 0.006 +19581119, 0.17, 0.30, -0.20, 0.006 +19581120, 0.06, 0.32, -0.52, 0.006 +19581121, -0.91, 0.49, -0.05, 0.006 +19581124, -2.43, 0.07, -0.18, 0.006 +19581125, -0.61, 0.34, 0.24, 0.006 +19581126, 1.83, 0.25, 0.44, 0.006 +19581128, 1.15, 0.19, 0.28, 0.006 +19581201, 0.41, 0.08, -0.31, 0.011 +19581202, -0.39, 0.30, -0.61, 0.011 +19581203, 0.16, -0.02, -0.01, 0.011 +19581204, 0.07, 0.07, 0.29, 0.011 +19581205, -0.06, 0.12, -0.01, 0.011 +19581208, 0.21, -0.13, -0.02, 0.011 +19581209, 0.52, -0.27, -0.17, 0.011 +19581210, 1.15, -0.23, -0.19, 0.011 +19581211, -0.26, 0.10, 0.04, 0.011 +19581212, -0.15, 0.10, 0.11, 0.011 +19581215, 0.25, -0.30, -0.05, 0.011 +19581216, 0.32, -0.14, -0.09, 0.011 +19581217, 0.63, -0.68, 0.17, 0.011 +19581218, 0.34, -0.40, 0.04, 0.011 +19581219, -0.18, 0.03, -0.15, 0.011 +19581222, -0.64, -0.03, 0.00, 0.011 +19581223, -0.52, 0.18, 0.36, 0.011 +19581224, 1.37, -0.32, 0.36, 0.011 +19581229, 0.89, -0.21, -0.21, 0.011 +19581230, 0.42, -0.08, -0.02, 0.011 +19581231, 0.47, -0.19, 0.48, 0.011 +19590102, 0.40, -0.02, 0.70, 0.010 +19590105, 0.35, -0.27, 0.32, 0.010 +19590106, -0.09, 0.10, 0.06, 0.010 +19590107, -1.19, 0.27, -0.07, 0.010 +19590108, 0.96, -0.22, 0.75, 0.010 +19590109, 0.69, 0.12, 0.15, 0.010 +19590112, 0.09, 0.35, -0.10, 0.010 +19590113, -0.49, 0.40, 0.38, 0.010 +19590114, 0.28, 0.12, 0.40, 0.010 +19590115, 0.37, 0.01, 0.66, 0.010 +19590116, 0.01, 0.09, 0.23, 0.010 +19590119, -0.17, 0.56, -0.01, 0.010 +19590120, 0.12, 0.39, -0.30, 0.010 +19590121, 0.55, 0.09, -0.09, 0.010 +19590122, -0.20, -0.18, -0.21, 0.010 +19590123, 0.10, 0.13, 0.35, 0.010 +19590126, -0.47, 0.42, -0.57, 0.010 +19590127, 0.01, 0.03, -0.09, 0.010 +19590128, -1.10, -0.06, -0.19, 0.010 +19590129, 0.08, 0.40, 0.14, 0.010 +19590130, 0.43, 0.21, 0.42, 0.010 +19590202, -0.31, 0.18, -0.28, 0.010 +19590203, 0.14, -0.07, 0.41, 0.010 +19590204, -0.30, -0.11, 0.07, 0.010 +19590205, -0.38, -0.08, 0.15, 0.010 +19590206, -0.68, 0.10, 0.19, 0.010 +19590209, -1.36, 0.11, -0.30, 0.010 +19590210, 1.40, -0.03, 0.27, 0.010 +19590211, 0.07, 0.24, 0.36, 0.010 +19590212, -0.56, 0.41, 0.26, 0.010 +19590213, 0.79, 0.10, 0.02, 0.010 +19590216, 0.22, 0.25, 0.31, 0.010 +19590217, -0.30, 0.24, 0.26, 0.010 +19590218, 0.46, 0.16, 0.11, 0.010 +19590219, 0.91, -0.14, 0.11, 0.010 +19590220, 0.86, -0.35, -0.06, 0.010 +19590224, -0.03, 0.21, 0.13, 0.010 +19590225, -0.32, -0.03, -0.24, 0.010 +19590226, 0.25, 0.30, -0.54, 0.010 +19590227, 0.14, 0.00, -0.19, 0.010 +19590302, 0.52, -0.03, -0.47, 0.010 +19590303, 0.88, -0.51, 0.15, 0.010 +19590304, 0.13, -0.10, 0.21, 0.010 +19590305, 0.20, 0.10, 0.14, 0.010 +19590306, -0.35, 0.37, -0.38, 0.010 +19590309, -0.04, 0.34, -0.03, 0.010 +19590310, 0.32, 0.09, 0.18, 0.010 +19590311, 0.19, 0.11, 0.23, 0.010 +19590312, 0.44, -0.11, 0.51, 0.010 +19590313, 0.10, 0.23, 0.27, 0.010 +19590316, -1.07, 0.13, -0.26, 0.010 +19590317, 0.83, 0.33, -0.06, 0.010 +19590318, -0.14, 0.44, -0.08, 0.010 +19590319, -0.13, 0.07, 0.11, 0.010 +19590320, 0.09, 0.11, -0.42, 0.010 +19590323, -0.92, -0.11, -0.31, 0.010 +19590324, 0.18, -0.09, 0.21, 0.010 +19590325, -0.14, 0.39, -0.31, 0.010 +19590326, -0.13, 0.01, 0.00, 0.010 +19590330, -0.61, 0.01, 0.01, 0.010 +19590331, -0.04, -0.36, -0.09, 0.010 +19590401, 0.36, -0.37, -0.05, 0.009 +19590402, 0.57, -0.21, 0.81, 0.009 +19590403, 0.77, -0.06, -0.22, 0.009 +19590406, 0.20, -0.13, -0.15, 0.009 +19590407, -0.13, 0.03, 0.18, 0.009 +19590408, -0.49, 0.08, 0.16, 0.009 +19590409, -0.03, 0.01, 0.21, 0.009 +19590410, 0.15, 0.04, 0.38, 0.009 +19590413, 0.33, -0.13, -0.11, 0.009 +19590414, 0.54, -0.24, 0.11, 0.009 +19590415, 0.40, 0.11, -0.01, 0.009 +19590416, 0.65, -0.54, -0.02, 0.009 +19590417, 0.80, -0.48, -0.42, 0.009 +19590420, 0.35, -0.44, -0.23, 0.009 +19590421, -0.11, 0.21, -0.61, 0.009 +19590422, -0.62, 0.44, -0.38, 0.009 +19590423, -0.24, 0.29, -0.10, 0.009 +19590424, 0.55, 0.50, -0.58, 0.009 +19590427, 0.36, -0.14, -0.16, 0.009 +19590428, -0.33, 0.00, -0.21, 0.009 +19590429, -0.30, 0.42, 0.07, 0.009 +19590430, -0.19, 0.00, 0.15, 0.009 +19590501, 0.13, 0.30, 0.19, 0.010 +19590504, 0.03, -0.01, 0.00, 0.010 +19590505, 0.18, -0.05, -0.43, 0.010 +19590506, -0.15, 0.31, -0.61, 0.010 +19590507, -1.26, -0.25, -0.30, 0.010 +19590508, 0.80, 0.29, 0.53, 0.010 +19590511, 0.42, -0.35, 0.26, 0.010 +19590512, 0.11, -0.31, 0.31, 0.010 +19590513, 0.52, -0.36, 0.46, 0.010 +19590514, 0.66, -0.36, 0.40, 0.010 +19590515, -0.36, 0.32, -0.13, 0.010 +19590518, -0.07, -0.44, 0.32, 0.010 +19590519, 0.23, -0.19, -0.12, 0.010 +19590520, -0.33, 0.14, -0.10, 0.010 +19590521, 0.07, -0.19, 0.68, 0.010 +19590522, 0.35, -0.18, 0.39, 0.010 +19590525, -0.45, 0.03, -0.20, 0.010 +19590526, -0.08, -0.27, 0.05, 0.010 +19590527, 0.21, 0.01, 0.10, 0.010 +19590528, 0.30, -0.09, -0.16, 0.010 +19590529, 0.44, -0.47, 0.25, 0.010 +19590601, -0.12, 0.10, -0.44, 0.011 +19590602, -0.66, -0.13, 0.16, 0.011 +19590603, 0.00, 0.37, 0.04, 0.011 +19590604, -1.09, 0.20, -0.14, 0.011 +19590605, -0.13, -0.09, 0.29, 0.011 +19590608, -1.39, -0.15, 0.11, 0.011 +19590609, -0.64, -0.06, 0.08, 0.011 +19590610, 1.47, 0.21, 0.59, 0.011 +19590611, 0.17, 0.11, 0.30, 0.011 +19590612, 0.02, -0.06, 0.35, 0.011 +19590615, -0.49, 0.00, 0.46, 0.011 +19590616, -0.67, 0.25, -0.17, 0.011 +19590617, 0.93, -0.29, 0.12, 0.011 +19590618, -0.05, 0.47, 0.31, 0.011 +19590619, 0.18, 0.06, -0.49, 0.011 +19590622, -0.02, -0.14, 0.32, 0.011 +19590623, -0.07, -0.03, 0.07, 0.011 +19590624, 0.46, -0.27, 0.50, 0.011 +19590625, 0.54, -0.03, -0.60, 0.011 +19590626, 0.40, 0.13, -0.63, 0.011 +19590629, 0.68, 0.07, -0.08, 0.011 +19590630, 0.23, -0.02, 0.20, 0.011 +19590701, 0.79, -0.15, 0.19, 0.011 +19590702, 0.48, -0.15, 0.25, 0.011 +19590706, 0.55, -0.29, 0.04, 0.011 +19590707, 0.49, -0.63, -0.06, 0.011 +19590708, 0.12, 0.07, 0.26, 0.011 +19590709, -0.23, 0.07, 0.29, 0.011 +19590710, 0.04, 0.11, 0.45, 0.011 +19590713, -0.90, 0.52, -0.25, 0.011 +19590714, 0.29, 0.19, -0.16, 0.011 +19590715, 0.12, 0.29, -0.18, 0.011 +19590716, -0.37, 0.11, -0.21, 0.011 +19590717, -0.29, 0.40, -0.35, 0.011 +19590720, -0.49, 0.17, -0.05, 0.011 +19590721, 0.83, -0.12, -0.01, 0.011 +19590722, 0.35, 0.23, 0.07, 0.011 +19590723, 0.11, -0.09, 0.11, 0.011 +19590724, 0.01, 0.24, -0.15, 0.011 +19590727, 0.51, -0.32, -0.04, 0.011 +19590728, 0.51, -0.43, -0.06, 0.011 +19590729, 0.43, -0.50, 0.07, 0.011 +19590730, -0.24, 0.01, 0.02, 0.011 +19590731, 0.02, -0.08, 0.09, 0.011 +19590803, 0.29, -0.05, 0.13, 0.009 +19590804, -0.20, 0.00, -0.14, 0.009 +19590805, -0.42, -0.19, 0.17, 0.009 +19590806, -0.15, -0.32, 0.49, 0.009 +19590807, -0.62, 0.18, 0.25, 0.009 +19590810, -1.90, -0.37, -0.22, 0.009 +19590811, 1.20, 0.02, -0.28, 0.009 +19590812, -0.17, 0.42, -0.07, 0.009 +19590813, -0.21, 0.10, 0.16, 0.009 +19590814, 0.24, 0.03, -0.01, 0.009 +19590817, -0.21, 0.14, -0.02, 0.009 +19590818, -0.90, -0.11, 0.03, 0.009 +19590819, -0.58, -0.18, -0.25, 0.009 +19590820, 1.42, -0.20, 0.11, 0.009 +19590821, -0.07, 0.23, -0.17, 0.009 +19590824, -0.41, 0.15, -0.13, 0.009 +19590825, 0.24, 0.02, -0.14, 0.009 +19590826, 0.15, -0.04, 0.37, 0.009 +19590827, 0.93, -0.59, -0.21, 0.009 +19590828, -0.19, 0.22, 0.30, 0.009 +19590831, 0.20, -0.31, 0.17, 0.009 +19590901, -1.20, 0.13, 0.07, 0.015 +19590902, 0.04, -0.24, 0.21, 0.015 +19590903, -1.16, -0.01, -0.15, 0.015 +19590904, 0.56, -0.24, -0.35, 0.015 +19590908, -1.40, -0.18, 0.06, 0.015 +19590909, -0.79, -0.19, 0.02, 0.015 +19590910, -0.57, 0.33, -0.14, 0.015 +19590911, 0.75, 0.20, 0.38, 0.015 +19590914, -0.69, 0.22, -0.65, 0.015 +19590915, -0.64, -0.27, 0.33, 0.015 +19590916, 0.05, 0.15, -0.12, 0.015 +19590917, -0.49, -0.03, -0.19, 0.015 +19590918, -0.70, -0.14, -0.11, 0.015 +19590921, -1.52, -0.38, 0.38, 0.015 +19590922, -0.27, -0.02, 0.11, 0.015 +19590923, 1.37, 0.21, 0.01, 0.015 +19590924, 1.64, 0.17, 0.20, 0.015 +19590925, -0.03, 0.09, -0.44, 0.015 +19590928, 0.66, -0.02, 0.05, 0.015 +19590929, 0.57, -0.35, 0.42, 0.015 +19590930, -1.02, 0.44, 0.49, 0.015 +19591001, 0.14, 0.20, 0.32, 0.014 +19591002, 0.41, 0.09, -0.64, 0.014 +19591005, -0.13, 0.06, -0.39, 0.014 +19591006, -0.06, 0.13, 0.05, 0.014 +19591007, -0.19, 0.34, 0.01, 0.014 +19591008, -0.18, 0.44, -0.10, 0.014 +19591009, 0.35, -0.06, -0.08, 0.014 +19591012, 0.55, 0.01, -0.17, 0.014 +19591013, -0.30, -0.01, -0.13, 0.014 +19591014, -0.74, -0.06, 0.41, 0.014 +19591015, 0.27, -0.19, 0.23, 0.014 +19591016, 0.81, 0.14, 0.04, 0.014 +19591019, -0.55, 0.29, -0.13, 0.014 +19591020, -0.61, 0.00, 0.06, 0.014 +19591021, -0.18, 0.22, -0.08, 0.014 +19591022, -0.93, 0.42, -0.25, 0.014 +19591023, 1.07, -0.33, -0.11, 0.014 +19591026, 0.63, -0.13, -0.15, 0.014 +19591027, 0.79, -0.79, -0.54, 0.014 +19591028, 0.05, -0.05, -0.37, 0.014 +19591029, -0.10, 0.27, -0.01, 0.014 +19591030, 0.18, 0.28, -0.11, 0.014 +19591102, -0.15, 0.25, -0.30, 0.013 +19591104, -0.15, 0.02, 0.03, 0.013 +19591105, 0.10, -0.05, -0.35, 0.013 +19591106, 0.54, -0.23, 0.48, 0.013 +19591109, -0.15, 0.05, -0.04, 0.013 +19591110, 0.03, 0.45, -0.25, 0.013 +19591111, 0.06, 0.37, -0.25, 0.013 +19591112, -0.50, 0.30, -0.23, 0.013 +19591113, -0.55, 0.42, -0.16, 0.013 +19591116, -1.03, 0.54, -0.47, 0.013 +19591117, 0.25, -0.21, -0.48, 0.013 +19591118, 1.03, -0.50, 0.29, 0.013 +19591119, -0.09, -0.03, 0.03, 0.013 +19591120, 0.07, 0.23, -0.18, 0.013 +19591123, 0.17, 0.21, -1.01, 0.013 +19591124, 0.44, -0.07, -0.42, 0.013 +19591125, 0.16, -0.18, -0.13, 0.013 +19591127, 0.47, -0.18, 0.28, 0.013 +19591130, 0.93, -0.17, -0.05, 0.013 +19591201, 0.68, -0.26, -0.34, 0.015 +19591202, -0.21, 0.03, 0.05, 0.015 +19591203, 0.27, 0.17, 0.18, 0.015 +19591204, 0.22, 0.34, -0.10, 0.015 +19591207, 0.28, 0.07, 0.08, 0.015 +19591208, 0.54, -0.32, 0.18, 0.015 +19591209, -0.64, -0.05, 0.47, 0.015 +19591210, 0.09, -0.18, -0.02, 0.015 +19591211, -0.18, 0.47, -0.15, 0.015 +19591214, 0.25, -0.32, 0.34, 0.015 +19591215, -0.29, -0.15, 0.22, 0.015 +19591216, 0.13, 0.01, -0.05, 0.015 +19591217, -0.14, 0.34, -0.01, 0.015 +19591218, 0.45, -0.19, -0.07, 0.015 +19591221, 0.09, 0.07, -0.16, 0.015 +19591222, -0.17, 0.36, 0.03, 0.015 +19591223, -0.27, 0.23, -0.37, 0.015 +19591224, 0.09, 0.02, 0.17, 0.015 +19591228, -0.13, -0.35, -0.29, 0.015 +19591229, 0.40, -0.42, -0.19, 0.015 +19591230, 0.79, -0.36, 0.05, 0.015 +19591231, 0.19, -0.07, -0.05, 0.015 +19600104, -0.03, 0.60, 0.70, 0.017 +19600105, 0.78, -0.40, 0.54, 0.017 +19600106, -0.47, 0.13, 0.36, 0.017 +19600107, -0.65, 0.37, 0.08, 0.017 +19600108, -0.33, 0.18, 0.10, 0.017 +19600111, -1.15, 0.48, 0.32, 0.017 +19600112, -0.58, 0.01, 0.45, 0.017 +19600113, -0.53, 0.38, 0.04, 0.017 +19600114, 0.56, -0.20, 0.13, 0.017 +19600115, 0.01, 0.38, 0.15, 0.017 +19600118, -0.84, 0.22, -0.23, 0.017 +19600119, -1.00, 0.01, 0.25, 0.017 +19600120, -0.30, 0.18, 0.07, 0.017 +19600121, 0.22, 0.03, 0.22, 0.017 +19600122, 0.28, 0.04, -0.25, 0.017 +19600125, -1.05, -0.14, -0.10, 0.017 +19600126, 0.15, -0.18, 0.16, 0.017 +19600127, -0.28, -0.03, 0.13, 0.017 +19600128, -1.00, 0.42, -0.18, 0.017 +19600129, -0.97, -0.28, -0.07, 0.017 +19600201, 0.50, -0.50, -0.22, 0.014 +19600202, 1.54, -0.17, -0.43, 0.014 +19600203, -0.83, 0.31, -0.02, 0.014 +19600204, -0.08, -0.08, 0.19, 0.014 +19600205, -0.49, -0.30, -0.02, 0.014 +19600208, -1.01, 0.07, -0.05, 0.014 +19600209, 0.89, -0.10, -0.04, 0.014 +19600210, -0.57, 0.36, 0.09, 0.014 +19600211, -0.51, 0.25, 0.40, 0.014 +19600212, 0.45, -0.37, 0.17, 0.014 +19600215, -0.50, 0.24, 0.10, 0.014 +19600216, -0.88, -0.24, -0.23, 0.014 +19600217, 0.63, 0.04, -0.21, 0.014 +19600218, 1.37, 0.08, -0.49, 0.014 +19600219, 0.72, -0.09, 0.14, 0.014 +19600223, -0.50, 0.43, -0.21, 0.014 +19600224, -0.29, 0.27, -0.19, 0.014 +19600225, 0.45, 0.03, 0.09, 0.014 +19600226, 0.42, 0.20, -0.54, 0.014 +19600229, -0.08, 0.08, -0.51, 0.014 +19600301, -0.15, 0.12, -0.21, 0.015 +19600302, -0.71, -0.05, -0.14, 0.015 +19600303, -1.54, -0.06, -0.32, 0.015 +19600304, -0.39, -0.48, -0.59, 0.015 +19600307, -1.10, 0.17, -0.14, 0.015 +19600308, -0.94, -0.26, -0.15, 0.015 +19600309, 1.10, -0.16, 0.34, 0.015 +19600310, -0.34, 0.52, 0.31, 0.015 +19600311, 0.73, 0.10, -0.05, 0.015 +19600314, 0.18, 0.04, -0.12, 0.015 +19600315, 0.78, -0.30, 0.06, 0.015 +19600316, 0.52, 0.11, 0.04, 0.015 +19600317, -0.18, 0.21, -0.28, 0.015 +19600318, 0.06, 0.09, -0.25, 0.015 +19600321, 0.09, -0.30, -0.22, 0.015 +19600322, 0.36, -0.44, -0.04, 0.015 +19600323, 0.76, -0.32, -0.26, 0.015 +19600324, 0.41, -0.12, 0.42, 0.015 +19600325, 0.00, 0.12, -0.29, 0.015 +19600328, -0.24, -0.01, 0.00, 0.015 +19600329, -0.20, 0.25, -0.40, 0.015 +19600330, -0.16, 0.31, -0.41, 0.015 +19600331, -0.63, -0.02, -0.22, 0.015 +19600401, 0.20, -0.10, -0.17, 0.010 +19600404, 0.18, -0.13, -0.33, 0.010 +19600405, 0.54, -0.39, -0.20, 0.010 +19600406, 1.01, -0.41, -0.07, 0.010 +19600407, 0.07, 0.19, -0.05, 0.010 +19600408, -0.21, 0.09, 0.26, 0.010 +19600411, -0.39, -0.04, 0.10, 0.010 +19600412, 0.22, -0.15, -0.10, 0.010 +19600413, -0.03, 0.22, -0.44, 0.010 +19600414, 0.26, 0.09, -0.25, 0.010 +19600418, 0.23, -0.17, -0.30, 0.010 +19600419, -0.74, 0.06, 0.04, 0.010 +19600420, -1.17, 0.49, 0.15, 0.010 +19600421, 0.34, -0.03, -0.22, 0.010 +19600422, -0.27, 0.34, -0.10, 0.010 +19600425, -1.02, 0.17, -0.09, 0.010 +19600426, 0.36, -0.03, -0.44, 0.010 +19600427, -0.03, -0.07, -0.03, 0.010 +19600428, -0.86, -0.08, 0.03, 0.010 +19600429, -0.35, 0.23, -0.09, 0.010 +19600502, -0.51, -0.18, -0.40, 0.013 +19600503, 1.36, -0.53, -0.14, 0.013 +19600504, 0.41, -0.07, -0.06, 0.013 +19600505, -0.33, 0.15, -0.24, 0.013 +19600506, -0.12, 0.37, -0.15, 0.013 +19600509, 0.11, 0.17, -0.57, 0.013 +19600510, -0.58, 0.23, -0.48, 0.013 +19600511, 0.23, -0.33, 0.03, 0.013 +19600512, 0.54, 0.39, -0.01, 0.013 +19600513, 0.89, 0.15, 0.21, 0.013 +19600516, -0.08, 0.27, -0.38, 0.013 +19600517, 0.37, -0.17, 0.01, 0.013 +19600518, 0.02, -0.43, -0.11, 0.013 +19600519, 0.43, -0.06, 0.11, 0.013 +19600520, 0.20, -0.15, 0.69, 0.013 +19600523, -0.08, 0.02, 0.25, 0.013 +19600524, -0.06, 0.50, -0.46, 0.013 +19600525, -0.04, 0.55, -0.57, 0.013 +19600526, 0.08, 0.13, -0.61, 0.013 +19600527, 0.07, 0.09, 0.12, 0.013 +19600531, 0.16, 0.10, -0.91, 0.013 +19600601, 0.16, -0.19, -0.43, 0.011 +19600602, 0.36, -0.65, 0.47, 0.011 +19600603, 0.19, -0.25, 0.31, 0.011 +19600606, 1.12, -0.77, 0.63, 0.011 +19600607, 0.96, -0.29, -0.09, 0.011 +19600608, 0.75, 0.13, 0.14, 0.011 +19600609, 0.11, -0.09, -0.07, 0.011 +19600610, 0.06, -0.01, -0.08, 0.011 +19600613, 0.06, 0.03, 0.01, 0.011 +19600614, -0.01, 0.03, -0.56, 0.011 +19600615, -0.54, 0.48, -0.11, 0.011 +19600616, -0.10, 0.32, -0.32, 0.011 +19600617, -0.10, 0.20, -0.19, 0.011 +19600620, -0.38, 0.38, -0.14, 0.011 +19600621, -0.10, -0.33, 0.32, 0.011 +19600622, 0.21, -0.16, 0.72, 0.011 +19600623, 0.46, -0.21, 0.12, 0.011 +19600624, 0.15, -0.03, 0.02, 0.011 +19600627, -0.56, 0.52, -0.37, 0.011 +19600628, -0.70, 0.28, -0.38, 0.011 +19600629, 0.04, 0.10, -0.35, 0.011 +19600630, -0.06, 0.20, -0.06, 0.011 +19600701, 0.24, 0.27, -0.13, 0.007 +19600705, -0.11, -0.14, 0.03, 0.007 +19600706, -0.16, -0.37, 0.37, 0.007 +19600707, 0.53, 0.02, 0.01, 0.007 +19600708, 0.26, -0.12, 0.23, 0.007 +19600711, -0.89, 0.21, 0.11, 0.007 +19600712, -1.07, -0.07, 0.71, 0.007 +19600713, -0.26, 0.06, 0.44, 0.007 +19600714, 0.01, -0.06, -0.33, 0.007 +19600715, -0.05, 0.10, 0.27, 0.007 +19600718, -0.62, -0.25, 0.49, 0.007 +19600719, 0.02, -0.06, 0.12, 0.007 +19600720, -0.15, 0.43, -0.23, 0.007 +19600721, -0.87, 0.31, 0.09, 0.007 +19600722, -0.69, -0.23, 0.37, 0.007 +19600725, -1.11, -0.13, -0.18, 0.007 +19600726, 0.70, -0.16, -0.20, 0.007 +19600727, -0.66, -0.19, 0.16, 0.007 +19600728, 0.81, -0.07, 0.21, 0.007 +19600729, 1.74, -0.08, -0.43, 0.007 +19600801, -0.05, -0.04, -0.06, 0.007 +19600802, -0.82, 0.04, 0.18, 0.007 +19600803, -0.53, 0.29, -0.11, 0.007 +19600804, 0.31, -0.33, -0.04, 0.007 +19600805, 1.04, -0.11, 0.05, 0.007 +19600808, 0.19, 0.02, 0.16, 0.007 +19600809, 0.56, -0.42, 0.53, 0.007 +19600810, 0.42, 0.14, 0.10, 0.007 +19600811, 0.41, 0.29, -0.15, 0.007 +19600812, 0.68, 0.17, -0.08, 0.007 +19600815, -0.02, -0.06, 0.09, 0.007 +19600816, 0.24, 0.29, -0.23, 0.007 +19600817, 0.30, 0.14, -0.25, 0.007 +19600818, -0.01, 0.00, -0.08, 0.007 +19600819, 0.32, -0.28, 0.11, 0.007 +19600822, 0.28, -0.14, 0.02, 0.007 +19600823, 0.91, -0.40, 0.26, 0.007 +19600824, 0.50, -0.16, 0.03, 0.007 +19600825, -0.43, 0.26, 0.20, 0.007 +19600826, -0.29, 0.41, -0.10, 0.007 +19600829, -0.23, 0.06, -0.10, 0.007 +19600830, -1.02, 0.65, -0.54, 0.007 +19600831, 0.22, 0.04, -0.14, 0.007 +19600901, 0.22, 0.13, -0.23, 0.008 +19600902, -0.10, 0.09, 0.11, 0.008 +19600906, -0.90, -0.12, 0.10, 0.008 +19600907, -1.22, 0.07, 0.31, 0.008 +19600908, -0.04, 0.09, 0.17, 0.008 +19600909, 0.60, -0.13, 0.04, 0.008 +19600912, -0.65, -0.04, -0.07, 0.008 +19600913, 0.16, -0.28, 0.19, 0.008 +19600914, -0.75, 0.06, -0.18, 0.008 +19600915, -0.40, -0.21, 0.07, 0.008 +19600916, -0.18, -0.06, 0.39, 0.008 +19600919, -2.29, -0.22, 0.67, 0.008 +19600920, 0.28, -0.14, -0.23, 0.008 +19600921, 1.05, 0.02, -0.32, 0.008 +19600922, -0.38, 0.29, -0.02, 0.008 +19600923, -0.91, 0.10, -0.03, 0.008 +19600926, -1.48, -0.60, 0.73, 0.008 +19600927, -0.29, 0.04, -0.05, 0.008 +19600928, -0.87, -0.33, 0.21, 0.008 +19600929, 0.28, -0.14, 0.07, 0.008 +19600930, 1.78, 0.18, -0.27, 0.008 +19601003, -0.27, -0.17, 0.10, 0.010 +19601004, -0.75, -0.26, 0.25, 0.010 +19601005, 0.69, -0.59, 0.38, 0.010 +19601006, 0.59, 0.20, -0.10, 0.010 +19601007, 0.55, -0.26, -0.13, 0.010 +19601010, 0.13, -0.07, -0.19, 0.010 +19601011, 0.10, -0.28, 0.25, 0.010 +19601012, -0.13, -0.20, 0.45, 0.010 +19601013, 0.83, -0.41, 0.07, 0.010 +19601014, 0.53, -0.01, -0.03, 0.010 +19601017, -0.36, 0.13, 0.26, 0.010 +19601018, -0.52, 0.16, 0.04, 0.010 +19601019, -0.21, -0.09, 0.14, 0.010 +19601020, -0.80, -0.03, 0.29, 0.010 +19601021, -1.00, -0.30, 0.60, 0.010 +19601024, -1.29, -0.81, 0.47, 0.010 +19601025, -0.75, -0.24, 0.28, 0.010 +19601026, 1.43, -0.16, -0.53, 0.010 +19601027, 1.12, -0.29, -0.20, 0.010 +19601028, -0.46, 0.10, 0.12, 0.010 +19601031, -0.08, -0.50, 0.13, 0.010 +19601101, 0.99, -0.12, -0.57, 0.007 +19601102, 0.52, -0.22, 0.38, 0.007 +19601103, 0.42, -0.17, 0.45, 0.007 +19601104, 0.85, -0.17, -0.15, 0.007 +19601107, 0.40, -0.29, -0.14, 0.007 +19601109, 0.42, -0.40, -0.15, 0.007 +19601110, 1.42, 0.60, -0.75, 0.007 +19601111, -0.44, 0.78, -0.07, 0.007 +19601114, -0.39, 0.09, 0.03, 0.007 +19601115, 0.49, -0.25, -0.06, 0.007 +19601116, -0.17, 0.02, -0.23, 0.007 +19601117, -0.26, -0.06, 0.04, 0.007 +19601118, 0.52, -0.08, -0.35, 0.007 +19601121, 0.28, -0.24, -0.07, 0.007 +19601122, -0.34, 0.35, -0.54, 0.007 +19601123, 0.23, 0.16, -0.07, 0.007 +19601125, 0.66, 0.01, -0.48, 0.007 +19601128, -0.12, 0.31, -0.03, 0.007 +19601129, -0.33, -0.06, 0.15, 0.007 +19601130, -0.51, 0.06, 0.23, 0.007 +19601201, -0.39, 0.00, -0.03, 0.007 +19601202, 0.16, 0.50, -0.30, 0.007 +19601205, -0.19, -0.05, 0.04, 0.007 +19601206, 0.46, -0.28, -0.03, 0.007 +19601207, 0.94, -0.11, -0.17, 0.007 +19601208, 0.22, -0.04, 0.00, 0.007 +19601209, 0.89, -0.01, -0.16, 0.007 +19601212, 0.38, 0.03, -0.27, 0.007 +19601213, 0.13, -0.05, -0.30, 0.007 +19601214, -0.08, 0.22, -0.33, 0.007 +19601215, -0.20, 0.32, 0.22, 0.007 +19601216, 0.91, -0.62, -0.01, 0.007 +19601219, -0.13, 0.15, -0.43, 0.007 +19601220, -0.07, 0.10, -0.34, 0.007 +19601221, 0.72, -0.69, 0.04, 0.007 +19601222, -0.26, -0.14, 0.87, 0.007 +19601223, 0.06, 0.17, -0.06, 0.007 +19601227, 0.14, -0.41, 0.10, 0.007 +19601228, 0.40, -0.30, 0.12, 0.007 +19601229, 0.48, -0.27, 0.23, 0.007 +19601230, 0.06, -0.04, 0.04, 0.007 +19610103, -0.88, 0.44, 0.75, 0.009 +19610104, 1.31, -0.17, 0.42, 0.009 +19610105, 0.39, 0.50, 0.76, 0.009 +19610106, -0.11, 0.27, 0.12, 0.009 +19610109, 0.59, 0.32, 0.74, 0.009 +19610110, 0.25, 0.13, 0.08, 0.009 +19610111, 0.29, 0.03, 0.13, 0.009 +19610112, 0.29, 0.20, 0.26, 0.009 +19610113, 0.42, -0.19, -0.01, 0.009 +19610116, -0.04, 0.11, -0.06, 0.009 +19610117, -0.36, 0.22, 0.22, 0.009 +19610118, 0.65, 0.28, 0.31, 0.009 +19610119, 0.16, -0.15, 0.36, 0.009 +19610120, 0.36, 0.16, -0.11, 0.009 +19610123, 0.51, -0.05, 0.18, 0.009 +19610124, 0.23, -0.31, -0.38, 0.009 +19610125, 0.07, -0.26, 0.01, 0.009 +19610126, 0.11, -0.27, -0.28, 0.009 +19610127, 0.93, -0.19, 0.15, 0.009 +19610130, 1.17, -0.38, -0.39, 0.009 +19610131, -0.31, -0.08, 0.16, 0.009 +19610201, 0.31, 0.08, 0.13, 0.008 +19610202, 0.68, 0.28, -0.12, 0.008 +19610203, -0.16, 0.26, 0.10, 0.008 +19610206, -0.60, 0.39, 0.03, 0.008 +19610207, -0.03, 0.39, 0.04, 0.008 +19610208, 0.95, 0.20, 0.23, 0.008 +19610209, -0.22, 0.30, 0.24, 0.008 +19610210, -0.79, 0.25, -0.19, 0.008 +19610213, -0.54, 0.48, -0.08, 0.008 +19610214, 0.57, 0.38, -0.20, 0.008 +19610215, 0.75, -0.17, 0.67, 0.008 +19610216, 0.61, -0.19, 0.19, 0.008 +19610217, -0.25, 0.47, -0.08, 0.008 +19610220, 0.43, 0.07, -0.12, 0.008 +19610221, 0.10, 0.36, -0.35, 0.008 +19610223, 0.42, 0.07, -0.16, 0.008 +19610224, 0.36, 0.07, -0.22, 0.008 +19610227, 0.77, 0.14, -0.21, 0.008 +19610228, 0.19, -0.02, -0.53, 0.008 +19610301, -0.01, 0.02, -0.30, 0.009 +19610302, 0.65, 0.00, -0.09, 0.009 +19610303, 0.14, 0.16, -0.19, 0.009 +19610306, 0.16, 0.08, -0.28, 0.009 +19610307, -0.72, 0.40, 0.05, 0.009 +19610308, 0.06, 0.47, -0.73, 0.009 +19610309, 0.07, 0.38, 0.71, 0.009 +19610310, 0.07, 0.08, 0.00, 0.009 +19610313, 0.25, 0.02, -0.03, 0.009 +19610314, -0.40, 0.30, -0.15, 0.009 +19610315, 0.37, -0.06, 0.08, 0.009 +19610316, 0.99, -0.10, -0.04, 0.009 +19610317, 0.58, 0.04, -0.35, 0.009 +19610320, 0.42, 0.13, -0.03, 0.009 +19610321, -0.15, 0.19, 0.57, 0.009 +19610322, -0.10, 0.22, 0.52, 0.009 +19610323, -0.32, -0.30, -0.09, 0.009 +19610324, -0.13, -0.11, 0.06, 0.009 +19610327, -0.07, 0.51, 0.07, 0.009 +19610328, 0.06, 0.59, 0.10, 0.009 +19610329, 0.77, -0.11, -0.54, 0.009 +19610330, 0.23, 0.15, -0.16, 0.009 +19610403, 0.78, 0.16, -0.12, 0.009 +19610404, 0.02, -0.09, -0.30, 0.009 +19610405, -0.31, -0.41, 0.48, 0.009 +19610406, 0.27, -0.35, 0.27, 0.009 +19610407, 0.51, 0.05, 0.04, 0.009 +19610410, 0.82, -0.13, 0.00, 0.009 +19610411, 0.04, -0.27, -0.17, 0.009 +19610412, -0.46, 0.04, 0.11, 0.009 +19610413, 0.01, 0.10, -0.11, 0.009 +19610414, 0.22, 0.29, 0.08, 0.009 +19610417, 0.47, 0.21, 0.17, 0.009 +19610418, -0.74, 0.34, 0.02, 0.009 +19610419, -0.51, 0.02, 0.36, 0.009 +19610420, -0.02, 0.35, -0.05, 0.009 +19610421, -0.02, 0.20, 0.32, 0.009 +19610424, -2.21, -0.39, 0.12, 0.009 +19610425, 1.46, -0.11, -0.02, 0.009 +19610426, 0.43, 0.23, 0.37, 0.009 +19610427, -0.12, 0.18, 0.30, 0.009 +19610428, -0.30, -0.31, 0.18, 0.009 +19610501, -0.21, -0.04, 0.08, 0.008 +19610502, 0.76, -0.10, -0.11, 0.008 +19610503, 0.80, -0.02, 0.26, 0.008 +19610504, 0.39, 0.08, 0.24, 0.008 +19610505, 0.15, 0.29, -0.27, 0.008 +19610508, -0.06, 0.67, -0.12, 0.008 +19610509, 0.11, 0.21, -0.01, 0.008 +19610510, -0.03, 0.07, 0.05, 0.008 +19610511, 0.03, 0.39, -0.46, 0.008 +19610512, 0.12, 0.08, 0.14, 0.008 +19610515, 0.55, -0.04, 0.38, 0.008 +19610516, 0.44, -0.08, 0.35, 0.008 +19610517, 0.33, -0.39, 0.50, 0.008 +19610518, -0.63, -0.44, -0.15, 0.008 +19610519, 0.46, 0.06, -0.17, 0.008 +19610522, -0.65, 0.21, 0.28, 0.008 +19610523, -0.17, -0.01, 0.06, 0.008 +19610524, -0.52, 0.36, 0.04, 0.008 +19610525, -0.30, 0.52, 0.17, 0.008 +19610526, 0.68, 0.21, -0.58, 0.008 +19610531, 0.12, -0.14, -0.23, 0.008 +19610601, -0.02, -0.44, -0.28, 0.009 +19610602, 0.20, -0.17, -0.37, 0.009 +19610605, 0.51, -0.44, 0.00, 0.009 +19610606, -0.26, -0.23, 0.02, 0.009 +19610607, -0.42, -0.63, 0.47, 0.009 +19610608, 0.07, -0.09, -0.35, 0.009 +19610609, 0.01, 0.51, -0.08, 0.009 +19610612, -0.70, 0.10, -0.14, 0.009 +19610613, -0.54, -0.08, 0.12, 0.009 +19610614, 0.22, -0.04, -0.15, 0.009 +19610615, -0.44, -0.08, -0.11, 0.009 +19610616, -0.79, -0.14, -0.30, 0.009 +19610619, -0.93, -0.40, 0.07, 0.009 +19610620, 0.84, -0.25, 0.15, 0.009 +19610621, 0.04, -0.07, 0.22, 0.009 +19610622, -0.41, -0.06, 0.00, 0.009 +19610623, 0.34, -0.20, -0.04, 0.009 +19610626, -1.07, 0.25, 0.14, 0.009 +19610627, -0.01, -0.17, -0.30, 0.009 +19610628, 0.21, 0.02, 0.44, 0.009 +19610629, -0.12, 0.03, 0.18, 0.009 +19610630, 0.17, 0.02, 0.15, 0.009 +19610703, 0.84, -0.36, -0.08, 0.009 +19610705, 0.62, 0.32, -0.31, 0.009 +19610706, 0.29, 0.30, 0.08, 0.009 +19610707, -0.07, 0.02, -0.25, 0.009 +19610710, -0.07, -0.03, 0.03, 0.009 +19610711, -0.12, -0.26, 0.40, 0.009 +19610712, -0.60, -0.42, 0.33, 0.009 +19610713, -0.68, 0.03, -0.09, 0.009 +19610714, 0.62, -0.16, -0.03, 0.009 +19610717, -0.78, 0.15, -0.17, 0.009 +19610718, -0.60, -0.29, -0.04, 0.009 +19610719, 0.38, -0.24, -0.33, 0.009 +19610720, 0.04, -0.23, 0.11, 0.009 +19610721, 0.20, -0.07, 0.19, 0.009 +19610724, -0.06, -0.14, -0.01, 0.009 +19610725, 0.57, -0.02, 0.01, 0.009 +19610726, 0.87, -0.10, 0.50, 0.009 +19610727, 1.10, -0.18, 0.05, 0.009 +19610728, 0.15, -0.12, -0.41, 0.009 +19610731, 0.09, -0.08, -0.06, 0.009 +19610801, 0.87, -0.24, -0.28, 0.006 +19610802, -0.55, 0.01, 0.46, 0.006 +19610803, 0.53, -0.10, -0.17, 0.006 +19610804, 0.61, -0.31, 0.39, 0.006 +19610807, 0.11, -0.24, -0.10, 0.006 +19610808, 0.20, -0.21, 0.06, 0.006 +19610809, 0.00, -0.03, -0.07, 0.006 +19610810, 0.35, -0.11, -0.15, 0.006 +19610811, 0.20, 0.09, -0.46, 0.006 +19610814, -0.53, -0.01, 0.14, 0.006 +19610815, -0.20, -0.03, -0.13, 0.006 +19610816, 0.33, -0.08, 0.01, 0.006 +19610817, 0.52, -0.03, 0.04, 0.006 +19610818, 0.27, 0.01, 0.27, 0.006 +19610821, 0.16, -0.41, -0.05, 0.006 +19610822, 0.01, -0.03, 0.11, 0.006 +19610823, -0.61, -0.19, 0.40, 0.006 +19610824, -0.55, 0.15, -0.19, 0.006 +19610825, 0.13, 0.11, -0.03, 0.006 +19610828, 0.04, 0.15, -0.25, 0.006 +19610829, -0.08, -0.02, 0.03, 0.006 +19610830, 0.43, -0.01, -0.20, 0.006 +19610831, 0.33, -0.16, -0.13, 0.006 +19610901, 0.21, 0.17, -0.23, 0.008 +19610905, -0.34, 0.15, -0.12, 0.008 +19610906, 0.66, -0.44, -0.12, 0.008 +19610907, -0.22, -0.45, 0.25, 0.008 +19610908, -0.68, -0.26, 0.10, 0.008 +19610911, -0.83, 0.01, 0.22, 0.008 +19610912, 0.97, -0.06, -0.16, 0.008 +19610913, 0.02, 0.01, -0.23, 0.008 +19610914, -0.75, 0.25, -0.01, 0.008 +19610915, 0.10, 0.07, -0.12, 0.008 +19610918, -0.65, -0.23, -0.19, 0.008 +19610919, -0.80, 0.07, 0.06, 0.008 +19610920, 0.46, -0.28, 0.43, 0.008 +19610921, 0.04, -0.02, 0.09, 0.008 +19610922, -0.42, -0.14, 0.37, 0.008 +19610925, -1.42, -0.08, 0.33, 0.008 +19610926, 0.02, -0.19, -0.12, 0.008 +19610927, 1.02, -0.06, -0.66, 0.008 +19610928, 0.20, 0.09, -0.24, 0.008 +19610929, 0.28, 0.30, -0.28, 0.008 +19611002, 0.03, -0.05, -0.33, 0.008 +19611003, -0.08, -0.25, 0.17, 0.008 +19611004, 0.66, 0.13, 0.45, 0.008 +19611005, 0.85, -0.16, -0.21, 0.008 +19611006, 0.27, -0.04, 0.11, 0.008 +19611009, 0.01, -0.22, 0.07, 0.008 +19611010, 0.26, -0.11, -0.23, 0.008 +19611011, -0.01, -0.02, 0.53, 0.008 +19611012, -0.01, 0.18, -0.10, 0.008 +19611013, -0.14, 0.15, -0.04, 0.008 +19611016, -0.26, 0.13, -0.25, 0.008 +19611017, 0.10, 0.06, -0.04, 0.008 +19611018, 0.47, -0.22, 0.25, 0.008 +19611019, 0.21, -0.40, -0.01, 0.008 +19611020, 0.02, -0.10, -0.06, 0.008 +19611023, -0.61, -0.08, 0.06, 0.008 +19611024, -0.15, -0.24, -0.22, 0.008 +19611025, 0.48, -0.22, -0.22, 0.008 +19611026, 0.21, -0.09, -0.12, 0.008 +19611027, -0.14, 0.09, 0.09, 0.008 +19611030, 0.10, -0.02, 0.20, 0.008 +19611031, 0.30, -0.14, -0.02, 0.008 +19611101, 0.21, 0.07, -0.04, 0.008 +19611102, 0.50, -0.09, -0.18, 0.008 +19611103, 0.57, 0.07, -0.03, 0.008 +19611106, 0.79, -0.10, -0.36, 0.008 +19611108, 1.17, 0.07, -0.09, 0.008 +19611109, -0.02, 0.18, 0.07, 0.008 +19611110, 0.44, 0.24, -0.50, 0.008 +19611113, 0.33, 0.29, -0.60, 0.008 +19611114, 0.54, -0.08, -0.41, 0.008 +19611115, -0.03, -0.10, -0.10, 0.008 +19611116, -0.02, 0.04, -0.21, 0.008 +19611117, 0.02, 0.12, 0.13, 0.008 +19611120, 0.16, -0.12, 0.07, 0.008 +19611121, 0.08, 0.14, -0.04, 0.008 +19611122, -0.07, 0.20, 0.26, 0.008 +19611124, 0.25, 0.35, 0.05, 0.008 +19611127, -0.02, 0.09, 0.06, 0.008 +19611128, 0.00, 0.10, 0.07, 0.008 +19611129, -0.06, -0.27, 0.26, 0.008 +19611130, -0.48, -0.06, 0.47, 0.008 +19611201, 0.60, 0.06, 0.04, 0.009 +19611204, 0.22, -0.09, 0.38, 0.009 +19611205, -0.12, -0.33, -0.01, 0.009 +19611206, 0.12, -0.25, 0.17, 0.009 +19611207, -0.38, 0.14, 0.16, 0.009 +19611208, 0.46, -0.27, -0.08, 0.009 +19611211, 0.37, -0.29, 0.24, 0.009 +19611212, 0.30, -0.29, -0.21, 0.009 +19611213, -0.16, 0.10, -0.16, 0.009 +19611214, -0.72, -0.19, 0.43, 0.009 +19611215, -0.03, 0.08, -0.02, 0.009 +19611218, -0.38, -0.02, 0.39, 0.009 +19611219, -0.65, 0.26, -0.02, 0.009 +19611220, -0.19, 0.38, -0.08, 0.009 +19611221, -0.34, 0.20, 0.31, 0.009 +19611222, 0.04, -0.02, 0.16, 0.009 +19611226, 0.06, -0.29, 0.53, 0.009 +19611227, 0.79, -0.23, -0.40, 0.009 +19611228, 0.01, -0.10, -0.34, 0.009 +19611229, -0.16, 0.21, 0.20, 0.009 +19620102, -0.80, 0.88, 0.57, 0.011 +19620103, 0.24, 0.22, 0.97, 0.011 +19620104, -0.83, 0.01, 0.66, 0.011 +19620105, -1.34, 0.08, 0.32, 0.011 +19620108, -0.75, 0.22, 0.32, 0.011 +19620109, 0.02, -0.12, 0.35, 0.011 +19620110, -0.24, 0.01, -0.21, 0.011 +19620111, 0.61, -0.05, 0.08, 0.011 +19620112, 0.33, 0.18, 0.24, 0.011 +19620115, -0.24, 0.08, 0.07, 0.011 +19620116, -0.53, 0.18, 0.05, 0.011 +19620117, -1.01, 0.25, 0.39, 0.011 +19620118, 0.05, 0.14, -0.05, 0.011 +19620119, 0.56, 0.41, 0.24, 0.011 +19620122, -0.02, -0.09, -0.16, 0.011 +19620123, -0.69, 0.13, 0.09, 0.011 +19620124, 0.20, -0.39, 0.08, 0.011 +19620125, -0.13, 0.18, 0.29, 0.011 +19620126, -0.29, -0.03, 0.51, 0.011 +19620129, -0.33, -0.23, 0.36, 0.011 +19620130, 0.33, -0.10, 0.24, 0.011 +19620131, 0.94, -0.14, -0.26, 0.011 +19620201, 0.55, -0.54, 0.22, 0.011 +19620202, 0.77, -0.25, 0.01, 0.011 +19620205, 0.16, 0.02, 0.07, 0.011 +19620206, 0.22, 0.04, -0.23, 0.011 +19620207, 0.70, -0.23, 0.18, 0.011 +19620208, 0.18, 0.08, -0.15, 0.011 +19620209, -0.10, 0.05, -0.13, 0.011 +19620212, -0.04, -0.04, 0.30, 0.011 +19620213, 0.02, 0.20, 0.02, 0.011 +19620214, -0.05, -0.02, 0.13, 0.011 +19620215, 0.42, -0.32, 0.28, 0.011 +19620216, -0.23, 0.26, 0.12, 0.011 +19620219, -0.24, -0.18, 0.38, 0.011 +19620220, 0.33, -0.24, 0.11, 0.011 +19620221, -0.49, 0.15, -0.13, 0.011 +19620223, -0.21, -0.07, 0.03, 0.011 +19620226, -0.50, -0.10, 0.03, 0.011 +19620227, 0.14, -0.12, -0.08, 0.011 +19620228, 0.16, 0.16, -0.32, 0.011 +19620301, 0.32, 0.00, -0.05, 0.009 +19620302, -0.07, 0.30, 0.00, 0.009 +19620305, -0.22, 0.12, -0.21, 0.009 +19620306, -0.33, 0.35, -0.22, 0.009 +19620307, -0.12, 0.00, -0.21, 0.009 +19620308, 0.73, -0.08, -0.26, 0.009 +19620309, 0.29, 0.19, -0.10, 0.009 +19620312, -0.02, 0.23, -0.29, 0.009 +19620313, 0.28, -0.30, 0.18, 0.009 +19620314, 0.40, -0.27, -0.10, 0.009 +19620315, 0.17, -0.10, -0.12, 0.009 +19620316, -0.08, 0.15, -0.05, 0.009 +19620319, -0.19, 0.02, 0.14, 0.009 +19620320, -0.26, -0.08, 0.08, 0.009 +19620321, -0.21, 0.03, 0.08, 0.009 +19620322, -0.14, 0.40, -0.37, 0.009 +19620323, 0.08, -0.07, -0.21, 0.009 +19620326, -0.76, 0.23, -0.16, 0.009 +19620327, -0.27, -0.12, 0.31, 0.009 +19620328, 0.49, -0.11, 0.15, 0.009 +19620329, -0.09, 0.13, -0.21, 0.009 +19620330, -0.66, -0.35, -0.01, 0.009 +19620402, -0.31, -0.01, -0.13, 0.011 +19620403, -0.83, -0.11, -0.01, 0.011 +19620404, -0.54, -0.04, 0.07, 0.011 +19620405, 0.61, -0.12, -0.05, 0.011 +19620406, -0.09, 0.23, 0.05, 0.011 +19620409, -0.79, -0.35, -0.10, 0.011 +19620410, 0.32, -0.13, 0.03, 0.011 +19620411, -0.20, 0.22, 0.08, 0.011 +19620412, -1.07, -0.10, -0.01, 0.011 +19620413, 0.13, -0.19, 0.11, 0.011 +19620416, -0.38, -0.15, 0.13, 0.011 +19620417, 0.51, -0.39, 0.24, 0.011 +19620418, 0.54, 0.10, 0.23, 0.011 +19620419, 0.48, 0.11, -0.17, 0.011 +19620423, -0.13, 0.09, -0.52, 0.011 +19620424, -0.12, 0.13, -0.11, 0.011 +19620425, -1.14, 0.09, 0.06, 0.011 +19620426, -0.96, -0.18, -0.14, 0.011 +19620427, -1.09, 0.09, 0.38, 0.011 +19620430, -1.69, -0.17, 0.08, 0.011 +19620501, 0.81, -0.12, 0.22, 0.011 +19620502, 0.47, 0.29, 0.04, 0.011 +19620503, 0.82, -0.42, -0.20, 0.011 +19620504, -0.48, -0.06, -0.15, 0.011 +19620507, -0.31, -0.19, 0.30, 0.011 +19620508, -1.20, -0.15, 0.45, 0.011 +19620509, -1.32, 0.15, 0.15, 0.011 +19620510, -1.10, -0.28, 0.09, 0.011 +19620511, -1.47, -0.11, 0.37, 0.011 +19620514, 0.76, -0.01, 0.02, 0.011 +19620515, 1.76, 0.35, -0.27, 0.011 +19620516, -0.07, -0.32, 0.14, 0.011 +19620517, -0.63, -0.23, 0.32, 0.011 +19620518, -0.12, -0.19, 0.02, 0.011 +19620521, -0.39, 0.06, -0.06, 0.011 +19620522, -2.01, -0.07, 0.14, 0.011 +19620523, -2.00, -0.67, 0.70, 0.011 +19620524, -0.88, -0.41, 0.46, 0.011 +19620525, -1.89, -0.46, 0.17, 0.011 +19620528, -7.00, 0.75, 1.53, 0.011 +19620529, 4.95, -3.87, -1.53, 0.011 +19620531, 2.78, 2.37, -0.25, 0.011 +19620601, -0.33, 0.28, 0.16, 0.009 +19620604, -3.61, -0.44, 0.92, 0.009 +19620605, 0.48, -0.65, 0.17, 0.009 +19620606, 1.42, 0.45, -0.01, 0.009 +19620607, 0.01, 0.44, -0.23, 0.009 +19620608, 0.04, 0.06, -0.16, 0.009 +19620611, -1.09, -0.08, 0.62, 0.009 +19620612, -2.59, -0.32, 0.61, 0.009 +19620613, -1.58, -0.33, 0.27, 0.009 +19620614, -2.10, -0.38, 0.62, 0.009 +19620615, 2.99, -0.29, -0.55, 0.009 +19620618, -0.42, 0.48, 0.27, 0.009 +19620619, -0.26, -0.11, 0.21, 0.009 +19620620, -1.40, 0.37, 0.15, 0.009 +19620621, -2.24, 0.13, 0.58, 0.009 +19620622, -1.70, -0.19, -0.44, 0.009 +19620625, -0.34, -0.35, -0.75, 0.009 +19620626, -0.37, 0.65, 0.37, 0.009 +19620627, 0.54, -0.49, -0.27, 0.009 +19620628, 3.39, -0.22, -0.23, 0.009 +19620629, 0.61, 0.36, 0.27, 0.009 +19620702, 2.07, -0.59, -0.73, 0.013 +19620703, 1.14, 0.20, -0.42, 0.013 +19620705, 0.60, -0.13, 0.02, 0.013 +19620706, -1.08, -0.06, 0.66, 0.013 +19620709, 0.67, -0.08, -0.40, 0.013 +19620710, 1.25, 1.32, -0.06, 0.013 +19620711, 0.98, 0.20, -0.65, 0.013 +19620712, 0.53, 1.06, -0.29, 0.013 +19620713, -0.30, 0.35, -0.38, 0.013 +19620716, 0.01, 0.30, -0.72, 0.013 +19620717, -1.77, -0.16, 0.98, 0.013 +19620718, -1.03, -0.31, 0.35, 0.013 +19620719, 0.39, 0.06, -0.33, 0.013 +19620720, 0.61, -0.37, -0.01, 0.013 +19620723, -0.06, 0.20, -0.34, 0.013 +19620724, -0.84, 0.04, 0.45, 0.013 +19620725, 0.17, -0.42, -0.25, 0.013 +19620726, 0.45, 0.10, -0.21, 0.013 +19620727, 0.73, -0.27, -0.13, 0.013 +19620730, 1.01, -0.05, -0.52, 0.013 +19620731, 0.63, 0.04, -0.35, 0.013 +19620801, -0.74, 0.16, 0.49, 0.010 +19620802, 0.35, -0.03, -0.63, 0.010 +19620803, 0.21, -0.07, 0.26, 0.010 +19620806, -0.63, 0.11, 0.30, 0.010 +19620807, -0.61, -0.05, 0.20, 0.010 +19620808, 0.33, 0.03, -0.17, 0.010 +19620809, -0.12, 0.13, 0.09, 0.010 +19620810, 0.16, -0.13, 0.10, 0.010 +19620813, 0.21, 0.04, -0.25, 0.010 +19620814, 0.99, -0.30, -0.51, 0.010 +19620815, 0.71, 0.45, -0.09, 0.010 +19620816, 0.04, 0.52, -0.50, 0.010 +19620817, 0.61, -0.10, -0.32, 0.010 +19620820, 0.60, 0.30, -0.36, 0.010 +19620821, -0.36, -0.20, 0.37, 0.010 +19620822, 1.17, 0.01, -0.32, 0.010 +19620823, -0.12, -0.09, 0.08, 0.010 +19620824, -0.13, 0.30, -0.01, 0.010 +19620827, -0.05, 0.07, 0.03, 0.010 +19620828, -1.11, -0.26, 0.37, 0.010 +19620829, -0.18, -0.02, 0.07, 0.010 +19620830, -0.01, 0.14, -0.27, 0.010 +19620831, 0.81, 0.19, -0.15, 0.010 +19620904, -0.97, 0.05, 0.31, 0.011 +19620905, -0.71, -0.29, 0.48, 0.011 +19620906, 0.37, -0.02, -0.17, 0.011 +19620907, 0.01, -0.07, 0.12, 0.011 +19620910, 0.07, -0.36, -0.18, 0.011 +19620911, 0.25, -0.19, -0.19, 0.011 +19620912, 0.43, -0.03, -0.31, 0.011 +19620913, -0.25, -0.14, 0.17, 0.011 +19620914, 0.30, -0.19, 0.12, 0.011 +19620917, 0.26, 0.04, -0.76, 0.011 +19620918, -0.07, 0.04, -0.22, 0.011 +19620919, -0.19, -0.28, 0.05, 0.011 +19620920, -0.67, -0.06, 0.09, 0.011 +19620921, -1.44, -0.34, 0.54, 0.011 +19620924, -1.85, -0.16, 0.85, 0.011 +19620925, 0.54, -0.05, -0.40, 0.011 +19620926, -1.41, -0.25, 0.86, 0.011 +19620927, -0.65, -0.03, 0.39, 0.011 +19620928, 0.67, -0.24, -0.47, 0.011 +19621001, -1.28, -0.26, 0.44, 0.011 +19621002, 1.04, -0.20, -0.58, 0.011 +19621003, 0.14, -0.14, 0.43, 0.011 +19621004, 0.80, -0.45, -0.21, 0.011 +19621005, 0.61, -0.06, -0.18, 0.011 +19621008, 0.01, 0.15, 0.10, 0.011 +19621009, 0.30, -0.12, -0.30, 0.011 +19621010, -0.01, 0.12, -0.06, 0.011 +19621011, -0.30, -0.13, 0.08, 0.011 +19621012, -0.18, -0.18, 0.29, 0.011 +19621015, 0.46, -0.24, -0.35, 0.011 +19621016, -0.32, -0.13, 0.27, 0.011 +19621017, -0.46, -0.39, 0.29, 0.011 +19621018, -0.94, -0.19, 0.01, 0.011 +19621019, -1.35, -0.10, 0.45, 0.011 +19621022, -1.17, -0.55, 0.35, 0.011 +19621023, -2.68, -0.09, 1.01, 0.011 +19621024, 2.83, -1.44, -1.35, 0.011 +19621025, -0.77, 0.56, 1.06, 0.011 +19621026, -0.30, -0.27, 0.24, 0.011 +19621029, 2.19, 0.20, -0.56, 0.011 +19621030, 1.49, -0.09, -0.49, 0.011 +19621031, -0.01, -0.04, 0.27, 0.011 +19621101, 1.01, -0.24, -0.31, 0.010 +19621102, 1.07, 0.05, -0.27, 0.010 +19621105, 1.03, 0.16, -0.07, 0.010 +19621107, 0.69, 0.08, 0.25, 0.010 +19621108, -0.59, 0.19, 0.70, 0.010 +19621109, 0.98, 0.26, 0.22, 0.010 +19621112, 1.38, 0.72, 0.11, 0.010 +19621113, -0.19, -0.01, -0.13, 0.010 +19621114, 1.20, 0.22, -0.15, 0.010 +19621115, -0.27, 0.02, 0.10, 0.010 +19621116, 0.30, -0.11, 0.23, 0.010 +19621119, -0.47, -0.19, 0.26, 0.010 +19621120, 0.99, -0.38, 0.45, 0.010 +19621121, 0.69, 0.18, -0.14, 0.010 +19621123, 1.17, -0.08, 0.00, 0.010 +19621126, -0.28, 0.09, -0.12, 0.010 +19621127, 0.71, 0.53, -0.05, 0.010 +19621128, 0.74, 0.45, -0.38, 0.010 +19621129, 0.44, 0.14, -0.30, 0.010 +19621130, -0.22, 0.26, 0.49, 0.010 +19621203, -0.40, -0.01, 0.19, 0.012 +19621204, 1.08, -0.04, -0.19, 0.012 +19621205, 0.41, -0.09, -0.47, 0.012 +19621206, 0.08, -0.06, -0.36, 0.012 +19621207, 0.20, -0.53, -0.15, 0.012 +19621210, -1.30, -0.58, -0.04, 0.012 +19621211, 0.04, -0.33, 0.35, 0.012 +19621212, 0.46, 0.05, -0.03, 0.012 +19621213, -0.36, -0.17, 0.15, 0.012 +19621214, 0.20, -0.26, 0.02, 0.012 +19621217, -0.38, -0.13, -0.38, 0.012 +19621218, -0.48, -0.59, 0.43, 0.012 +19621219, 0.76, -0.46, -0.11, 0.012 +19621220, 0.31, -0.01, 0.08, 0.012 +19621221, -0.23, -0.22, 0.23, 0.012 +19621224, -0.06, -0.06, 0.12, 0.012 +19621226, 0.61, -0.10, 0.23, 0.012 +19621227, -0.16, -0.03, 0.08, 0.012 +19621228, 0.05, -0.06, -0.13, 0.012 +19621231, 0.23, -0.14, 0.32, 0.012 +19630102, -0.54, 0.94, 0.33, 0.011 +19630103, 1.66, 0.99, -0.24, 0.011 +19630104, 0.68, 0.64, 0.01, 0.011 +19630107, 0.06, 0.33, 0.28, 0.011 +19630108, 0.90, -0.03, 0.23, 0.011 +19630109, -0.16, 0.10, 0.08, 0.011 +19630110, 0.19, 0.21, -0.10, 0.011 +19630111, 0.25, -0.04, -0.16, 0.011 +19630114, 0.57, 0.07, 0.23, 0.011 +19630115, -0.10, -0.02, 0.33, 0.011 +19630116, -0.69, 0.10, 0.00, 0.011 +19630117, 0.66, 0.07, -0.21, 0.011 +19630118, 0.02, 0.07, -0.06, 0.011 +19630121, 0.14, -0.03, -0.17, 0.011 +19630122, 0.26, 0.41, -0.04, 0.011 +19630123, 0.22, 0.10, 0.29, 0.011 +19630124, 0.16, 0.24, 0.27, 0.011 +19630125, 0.25, -0.36, 0.32, 0.011 +19630128, 0.40, -0.39, 0.13, 0.011 +19630129, 0.02, -0.32, 0.36, 0.011 +19630130, -0.56, -0.12, 0.14, 0.011 +19630131, 0.44, -0.08, 0.06, 0.011 +19630201, 0.18, 0.08, 0.32, 0.012 +19630204, -0.20, 0.03, -0.21, 0.012 +19630205, -0.07, -0.35, 0.33, 0.012 +19630206, 0.48, 0.25, -0.18, 0.012 +19630207, -0.29, -0.02, 0.44, 0.012 +19630208, 0.04, -0.04, -0.09, 0.012 +19630211, -0.50, 0.08, 0.51, 0.012 +19630212, 0.04, -0.12, 0.05, 0.012 +19630213, 0.47, 0.29, 0.54, 0.012 +19630214, 0.30, 0.21, 0.16, 0.012 +19630215, 0.14, -0.11, -0.11, 0.012 +19630218, 0.15, -0.28, 0.23, 0.012 +19630219, -0.42, -0.04, 0.03, 0.012 +19630220, -0.51, 0.08, 0.10, 0.012 +19630221, 0.11, 0.11, -0.02, 0.012 +19630225, -0.60, 0.15, 0.15, 0.012 +19630226, 0.09, 0.24, -0.21, 0.012 +19630227, -0.65, 0.10, 0.11, 0.012 +19630228, -1.14, -0.18, 0.05, 0.012 +19630301, -0.34, -0.27, 0.17, 0.011 +19630304, 0.91, 0.01, 0.11, 0.011 +19630305, -0.03, -0.34, 0.11, 0.011 +19630306, 0.17, -0.25, 0.00, 0.011 +19630307, 0.58, -0.21, -0.03, 0.011 +19630308, 0.13, -0.09, 0.09, 0.011 +19630311, 0.21, -0.31, -0.06, 0.011 +19630312, 0.24, -0.12, 0.04, 0.011 +19630313, 0.31, -0.21, 0.38, 0.011 +19630314, -0.45, 0.09, -0.19, 0.011 +19630315, 0.39, -0.43, 0.27, 0.011 +19630318, -0.44, -0.05, -0.13, 0.011 +19630319, -0.23, -0.31, 0.14, 0.011 +19630320, 0.71, -0.08, 0.34, 0.011 +19630321, -0.13, 0.03, -0.01, 0.011 +19630322, 0.44, -0.06, 0.38, 0.011 +19630325, 0.03, -0.07, 0.16, 0.011 +19630326, 0.26, -0.19, 0.06, 0.011 +19630327, 0.40, 0.15, -0.17, 0.011 +19630328, -0.13, 0.09, 0.00, 0.011 +19630329, 0.00, 0.07, 0.42, 0.011 +19630401, 0.36, -0.20, 0.35, 0.012 +19630402, -0.03, -0.02, 0.04, 0.012 +19630403, 0.71, -0.44, -0.07, 0.012 +19630404, 0.62, -0.16, -0.28, 0.012 +19630405, 0.56, -0.12, 0.02, 0.012 +19630408, 0.33, 0.05, -0.22, 0.012 +19630409, -0.08, -0.01, -0.09, 0.012 +19630410, -0.26, -0.09, 0.34, 0.012 +19630411, 0.66, -0.11, 0.27, 0.012 +19630415, 0.38, -0.46, 0.20, 0.012 +19630416, 0.08, -0.03, 0.06, 0.012 +19630417, -0.23, 0.09, -0.14, 0.012 +19630418, 0.08, -0.10, 0.49, 0.012 +19630419, 0.47, 0.14, 0.17, 0.012 +19630422, 0.05, -0.04, 0.06, 0.012 +19630423, 0.36, -0.01, -0.05, 0.012 +19630424, 0.26, 0.08, 0.04, 0.012 +19630425, 0.06, -0.05, -0.10, 0.012 +19630426, -0.06, 0.25, -0.06, 0.012 +19630429, -0.08, -0.11, -0.18, 0.012 +19630430, 0.21, 0.08, 0.11, 0.012 +19630501, 0.25, -0.04, -0.03, 0.011 +19630502, 0.25, -0.08, 0.08, 0.011 +19630503, -0.18, 0.25, -0.07, 0.011 +19630506, -0.64, 0.36, -0.22, 0.011 +19630507, -0.04, 0.25, -0.17, 0.011 +19630508, 0.78, -0.03, -0.03, 0.011 +19630509, 0.43, -0.04, 0.20, 0.011 +19630510, 0.31, 0.18, -0.15, 0.011 +19630513, 0.03, 0.25, -0.04, 0.011 +19630514, -0.28, 0.59, 0.44, 0.011 +19630515, 0.25, 0.06, 0.27, 0.011 +19630516, -0.23, -0.12, 0.56, 0.011 +19630517, 0.08, 0.06, 0.09, 0.011 +19630520, -0.40, 0.25, 0.61, 0.011 +19630521, 0.23, -0.08, 0.38, 0.011 +19630522, 0.04, 0.09, 0.30, 0.011 +19630523, -0.08, 0.13, -0.16, 0.011 +19630524, -0.11, -0.08, -0.11, 0.011 +19630527, -0.11, -0.24, 0.03, 0.011 +19630528, 0.18, -0.21, 0.09, 0.011 +19630529, 0.43, -0.18, 0.39, 0.011 +19630531, 0.55, -0.34, -0.07, 0.011 +19630603, -0.08, 0.06, -0.09, 0.011 +19630604, -0.01, 0.02, -0.04, 0.011 +19630605, -0.25, 0.04, 0.29, 0.011 +19630606, 0.01, -0.26, 0.27, 0.011 +19630607, -0.19, 0.17, -0.14, 0.011 +19630610, -0.56, 0.05, -0.28, 0.011 +19630611, 0.10, 0.00, -0.24, 0.011 +19630612, 0.49, 0.06, -0.33, 0.011 +19630613, -0.26, 0.14, 0.12, 0.011 +19630614, 0.07, 0.15, -0.32, 0.011 +19630617, -0.39, 0.15, 0.22, 0.011 +19630618, 0.13, -0.14, 0.08, 0.011 +19630619, 0.07, 0.26, 0.16, 0.011 +19630620, -0.10, -0.14, 0.03, 0.011 +19630621, 0.31, 0.18, 0.34, 0.011 +19630624, -0.09, -0.05, 0.29, 0.011 +19630625, -0.24, -0.19, 0.14, 0.011 +19630626, -0.92, -0.30, 0.23, 0.011 +19630627, -0.49, -0.26, -0.11, 0.011 +19630628, 0.40, -0.20, 0.10, 0.011 +19630701, -0.67, 0.16, -0.32, 0.012 +19630702, 0.79, -0.28, 0.27, 0.012 +19630703, 0.63, -0.18, -0.09, 0.012 +19630705, 0.40, 0.10, -0.28, 0.012 +19630708, -0.63, 0.04, -0.18, 0.012 +19630709, 0.45, 0.01, 0.10, 0.012 +19630710, -0.18, 0.15, 0.01, 0.012 +19630711, -0.16, 0.19, -0.30, 0.012 +19630712, -0.12, 0.01, -0.11, 0.012 +19630715, -0.62, 0.02, -0.03, 0.012 +19630716, -0.07, -0.13, 0.14, 0.012 +19630717, -0.33, -0.15, 0.15, 0.012 +19630718, -0.54, 0.29, 0.05, 0.012 +19630719, -0.23, -0.02, -0.05, 0.012 +19630722, -0.70, -0.11, -0.31, 0.012 +19630723, 0.01, -0.07, -0.20, 0.012 +19630724, 0.46, -0.09, -0.01, 0.012 +19630725, -0.04, 0.04, 0.26, 0.012 +19630726, 0.35, -0.20, 0.07, 0.012 +19630729, 0.11, -0.29, 0.26, 0.012 +19630730, 0.84, -0.24, -0.27, 0.012 +19630731, -0.13, 0.18, -0.01, 0.012 +19630801, -0.08, -0.12, -0.12, 0.011 +19630802, 0.29, -0.23, 0.15, 0.011 +19630805, 0.57, -0.41, 0.16, 0.011 +19630806, 0.60, -0.40, 0.25, 0.011 +19630807, -0.19, 0.01, 0.17, 0.011 +19630808, 0.14, 0.03, -0.25, 0.011 +19630809, 0.60, -0.09, -0.06, 0.011 +19630812, 0.24, 0.10, 0.41, 0.011 +19630813, 0.27, -0.30, -0.03, 0.011 +19630814, 0.30, -0.05, 0.21, 0.011 +19630815, 0.43, -0.30, 0.37, 0.011 +19630816, 0.15, 0.11, 0.10, 0.011 +19630819, -0.05, 0.07, -0.10, 0.011 +19630820, -0.05, 0.06, -0.25, 0.011 +19630821, -0.11, 0.36, -0.12, 0.011 +19630822, 0.39, 0.12, 0.09, 0.011 +19630823, 0.34, -0.02, 0.10, 0.011 +19630826, 0.18, -0.21, 0.14, 0.011 +19630827, -0.44, 0.11, -0.05, 0.011 +19630828, 0.77, -0.04, 0.44, 0.011 +19630829, 0.18, 0.15, 0.02, 0.011 +19630830, 0.44, 0.12, -0.09, 0.011 +19630903, 0.23, 0.11, 0.06, 0.014 +19630904, -0.01, 0.10, -0.06, 0.014 +19630905, 0.47, -0.06, 0.11, 0.014 +19630906, -0.27, -0.17, -0.01, 0.014 +19630909, -0.36, -0.26, -0.01, 0.014 +19630910, 0.52, -0.21, 0.42, 0.014 +19630911, 0.24, -0.21, 0.20, 0.014 +19630912, -0.09, 0.10, -0.11, 0.014 +19630913, 0.02, 0.40, -0.15, 0.014 +19630916, -0.16, 0.10, 0.19, 0.014 +19630917, 0.03, -0.14, 0.17, 0.014 +19630918, -0.43, 0.10, -0.24, 0.014 +19630919, 0.52, -0.44, 0.17, 0.014 +19630920, 0.04, -0.05, -0.01, 0.014 +19630923, -0.50, -0.01, -0.21, 0.014 +19630924, 0.35, -0.40, 0.13, 0.014 +19630925, -0.58, -0.31, -0.08, 0.014 +19630926, -0.81, 0.52, -0.35, 0.014 +19630927, -0.18, 0.32, -0.22, 0.014 +19630930, -0.60, 0.25, 0.08, 0.014 +19631001, 0.65, -0.25, 0.25, 0.013 +19631002, 0.10, -0.05, 0.00, 0.013 +19631003, 0.67, -0.39, 0.85, 0.013 +19631004, 0.00, 0.01, 0.06, 0.013 +19631007, -0.23, 0.21, -0.02, 0.013 +19631008, -0.14, 0.05, 0.25, 0.013 +19631009, -0.61, 0.18, -0.05, 0.013 +19631010, 0.08, 0.00, 0.15, 0.013 +19631011, 0.13, 0.38, 0.08, 0.013 +19631014, 0.05, 0.03, 0.07, 0.013 +19631015, 0.17, -0.21, 0.14, 0.013 +19631016, 0.89, -0.31, 0.27, 0.013 +19631017, 0.14, 0.13, -0.25, 0.013 +19631018, 0.09, 0.17, -0.24, 0.013 +19631021, 0.03, -0.06, -0.30, 0.013 +19631022, -0.54, 0.43, -0.46, 0.013 +19631023, 0.03, -0.07, -0.05, 0.013 +19631024, 0.35, -0.17, 0.47, 0.013 +19631025, 0.85, -0.22, -0.89, 0.013 +19631028, 0.41, -0.68, -0.28, 0.013 +19631029, -0.04, -0.20, -0.07, 0.013 +19631030, -0.79, 0.46, -0.06, 0.013 +19631031, 0.21, -0.04, 0.11, 0.013 +19631101, -0.18, 0.18, 0.19, 0.015 +19631104, -0.43, -0.06, 0.36, 0.015 +19631106, -0.77, 0.05, 0.25, 0.015 +19631107, 0.33, -0.01, -0.04, 0.015 +19631108, 0.54, 0.03, 0.12, 0.015 +19631111, 0.20, 0.24, 0.15, 0.015 +19631112, -0.37, 0.33, -0.29, 0.015 +19631113, 0.05, 0.05, -0.08, 0.015 +19631114, -0.41, 0.20, -0.03, 0.015 +19631115, -0.75, 0.33, 0.00, 0.015 +19631118, -0.74, 0.16, -0.23, 0.015 +19631119, 0.10, -0.29, 0.35, 0.015 +19631120, 0.76, -0.93, -0.35, 0.015 +19631121, -1.25, -0.13, 0.03, 0.015 +19631122, -2.90, -0.55, 0.05, 0.015 +19631126, 3.94, -1.34, 0.87, 0.015 +19631127, -0.16, 0.38, 0.13, 0.015 +19631129, 1.34, 0.16, 0.31, 0.015 +19631202, 0.53, -0.28, -0.21, 0.014 +19631203, -0.05, 0.01, -0.20, 0.014 +19631204, 0.25, 0.01, 0.12, 0.014 +19631205, 0.57, -0.68, 0.12, 0.014 +19631206, -0.32, 0.13, 0.08, 0.014 +19631209, -0.11, -0.04, -0.16, 0.014 +19631210, 0.06, -0.18, 0.20, 0.014 +19631211, -0.14, 0.04, 0.09, 0.014 +19631212, -0.03, -0.17, -0.07, 0.014 +19631213, 0.16, -0.08, 0.11, 0.014 +19631216, 0.25, -0.45, -0.03, 0.014 +19631217, 0.44, -0.58, 0.06, 0.014 +19631218, -0.18, -0.31, 0.57, 0.014 +19631219, -0.33, -0.04, -0.44, 0.014 +19631220, -0.20, -0.19, 0.11, 0.014 +19631223, -0.60, 0.28, -0.07, 0.014 +19631224, 0.23, 0.23, -0.15, 0.014 +19631226, 0.47, 0.16, 0.08, 0.014 +19631227, 0.16, 0.10, -0.14, 0.014 +19631230, 0.10, -0.27, -0.17, 0.014 +19631231, 0.56, 0.39, -0.11, 0.014 +19640102, 0.60, 0.59, 0.59, 0.013 +19640103, 0.17, 0.12, 0.38, 0.013 +19640106, 0.23, 0.12, 0.02, 0.013 +19640107, 0.04, 0.08, 0.76, 0.013 +19640108, 0.34, 0.04, -0.15, 0.013 +19640109, 0.30, 0.03, -0.32, 0.013 +19640110, -0.04, -0.04, -0.12, 0.013 +19640113, -0.10, 0.00, 0.45, 0.013 +19640114, 0.15, -0.34, 0.64, 0.013 +19640115, 0.24, -0.28, -0.11, 0.013 +19640116, -0.10, 0.25, -0.32, 0.013 +19640117, -0.02, 0.34, -0.03, 0.013 +19640120, -0.21, 0.15, -0.54, 0.013 +19640121, 0.26, -0.47, 0.07, 0.013 +19640122, 0.48, -0.21, 0.41, 0.013 +19640123, 0.09, -0.12, 0.16, 0.013 +19640124, 0.04, 0.24, 0.18, 0.013 +19640127, -0.11, -0.30, 0.06, 0.013 +19640128, -0.01, -0.25, 0.18, 0.013 +19640129, -0.58, -0.03, -0.15, 0.013 +19640130, 0.04, 0.12, -0.30, 0.013 +19640131, 0.38, -0.27, -0.19, 0.013 +19640203, 0.00, -0.06, 0.06, 0.014 +19640204, -0.13, -0.21, -0.20, 0.014 +19640205, -0.08, 0.01, 0.29, 0.014 +19640206, 0.24, 0.10, -0.23, 0.014 +19640207, 0.37, 0.04, 0.12, 0.014 +19640210, -0.13, 0.17, -0.22, 0.014 +19640211, 0.33, 0.03, -0.14, 0.014 +19640212, 0.30, 0.03, 0.18, 0.014 +19640213, 0.08, 0.02, -0.06, 0.014 +19640214, -0.04, 0.10, 0.23, 0.014 +19640217, 0.03, 0.09, 0.27, 0.014 +19640218, 0.01, -0.26, 0.53, 0.014 +19640219, 0.11, -0.04, 0.05, 0.014 +19640220, 0.09, -0.03, 0.70, 0.014 +19640224, 0.10, -0.10, 0.46, 0.014 +19640225, 0.04, -0.12, 0.17, 0.014 +19640226, 0.28, 0.08, 0.22, 0.014 +19640227, -0.27, 0.26, -0.08, 0.014 +19640228, 0.21, -0.01, 0.42, 0.014 +19640302, 0.22, -0.06, 0.32, 0.015 +19640303, 0.26, -0.28, -0.25, 0.015 +19640304, -0.20, 0.02, -0.11, 0.015 +19640305, 0.00, 0.06, 0.22, 0.015 +19640306, 0.32, 0.41, 0.01, 0.015 +19640309, 0.01, 0.04, 0.42, 0.015 +19640310, 0.28, -0.40, 0.25, 0.015 +19640311, 0.40, -0.26, 0.19, 0.015 +19640312, 0.18, -0.06, 0.17, 0.015 +19640313, 0.09, 0.04, 0.10, 0.015 +19640316, 0.03, 0.01, -0.22, 0.015 +19640317, 0.19, -0.02, 0.25, 0.015 +19640318, 0.10, -0.11, 0.50, 0.015 +19640319, -0.09, 0.07, 0.02, 0.015 +19640320, -0.42, 0.33, 0.10, 0.015 +19640323, 0.01, 0.39, -0.07, 0.015 +19640324, -0.18, 0.07, 0.30, 0.015 +19640325, 0.24, 0.22, 0.60, 0.015 +19640326, 0.26, 0.10, 0.66, 0.015 +19640330, -0.10, 0.08, 0.06, 0.015 +19640331, -0.19, 0.23, -0.30, 0.015 +19640401, 0.34, 0.04, 0.65, 0.013 +19640402, 0.57, 0.00, 0.29, 0.013 +19640403, 0.22, 0.07, -0.41, 0.013 +19640406, 0.07, 0.08, 0.28, 0.013 +19640407, -0.34, 0.26, -0.44, 0.013 +19640408, 0.01, 0.34, 0.17, 0.013 +19640409, 0.00, 0.24, -0.16, 0.013 +19640410, 0.19, 0.16, 0.10, 0.013 +19640413, -0.08, -0.05, -0.21, 0.013 +19640414, 0.19, -0.25, -0.13, 0.013 +19640415, 0.11, -0.01, -0.56, 0.013 +19640416, 0.08, -0.20, -0.07, 0.013 +19640417, 0.38, -0.40, 0.27, 0.013 +19640420, -0.07, -0.19, -0.17, 0.013 +19640421, -0.01, -0.08, -0.10, 0.013 +19640422, -0.05, -0.18, 0.21, 0.013 +19640423, -0.16, -0.30, -0.03, 0.013 +19640424, -0.77, -0.14, -0.41, 0.013 +19640427, -0.54, -0.04, 0.22, 0.013 +19640428, 0.64, -0.27, 0.77, 0.013 +19640429, -0.40, -0.21, -0.70, 0.013 +19640430, -0.25, -0.26, -0.04, 0.013 +19640501, 0.78, -0.16, 0.32, 0.013 +19640504, 0.45, 0.05, 0.22, 0.013 +19640505, 0.46, -0.51, 0.12, 0.013 +19640506, 0.26, -0.22, 0.19, 0.013 +19640507, 0.11, -0.14, 0.73, 0.013 +19640508, -0.18, 0.00, 0.11, 0.013 +19640511, -0.03, 0.03, 0.01, 0.013 +19640512, 0.32, -0.08, 0.04, 0.013 +19640513, -0.25, 0.01, -0.17, 0.013 +19640514, -0.11, 0.27, -0.02, 0.013 +19640515, 0.15, -0.21, -0.06, 0.013 +19640518, -0.33, 0.01, -0.21, 0.013 +19640519, -0.44, 0.34, -0.15, 0.013 +19640520, 0.42, -0.24, 0.43, 0.013 +19640521, 0.07, 0.04, -0.20, 0.013 +19640522, 0.05, 0.14, 0.08, 0.013 +19640525, -0.12, -0.14, 0.07, 0.013 +19640526, -0.17, 0.09, 0.15, 0.013 +19640527, -0.15, -0.27, 0.23, 0.013 +19640528, 0.16, 0.11, 0.01, 0.013 +19640601, -0.35, 0.01, 0.04, 0.014 +19640602, -0.52, -0.06, -0.07, 0.014 +19640603, -0.26, -0.22, 0.19, 0.014 +19640604, -1.03, 0.03, -0.33, 0.014 +19640605, 0.42, -0.16, 0.16, 0.014 +19640608, -0.46, 0.06, -0.16, 0.014 +19640609, 0.56, -0.24, 0.46, 0.014 +19640610, 0.37, 0.04, -0.20, 0.014 +19640611, 0.30, 0.08, -0.36, 0.014 +19640612, -0.23, 0.15, 0.10, 0.014 +19640615, 0.45, -0.03, 0.05, 0.014 +19640616, 0.51, -0.06, 0.35, 0.014 +19640617, 0.51, -0.10, 0.12, 0.014 +19640618, 0.00, 0.01, 0.09, 0.014 +19640619, 0.10, -0.01, 0.11, 0.014 +19640622, 0.25, -0.28, 0.36, 0.014 +19640623, -0.38, 0.34, -0.24, 0.014 +19640624, 0.35, 0.03, 0.23, 0.014 +19640625, 0.20, -0.06, -0.02, 0.014 +19640626, 0.26, 0.17, 0.15, 0.014 +19640629, 0.18, 0.02, -0.17, 0.014 +19640630, 0.03, 0.00, -0.16, 0.014 +19640701, 0.62, -0.26, 0.38, 0.013 +19640702, 0.39, 0.13, -0.26, 0.013 +19640706, 0.41, -0.15, -0.09, 0.013 +19640707, 0.15, -0.17, 0.10, 0.013 +19640708, 0.02, 0.08, 0.11, 0.013 +19640709, 0.13, 0.33, -0.11, 0.013 +19640710, 0.19, -0.01, 0.43, 0.013 +19640713, -0.07, 0.08, 0.04, 0.013 +19640714, -0.29, 0.19, 0.09, 0.013 +19640715, 0.37, 0.00, -0.35, 0.013 +19640716, 0.31, -0.18, 0.18, 0.013 +19640717, 0.44, -0.13, -0.27, 0.013 +19640720, -0.31, 0.18, 0.09, 0.013 +19640721, -0.19, 0.21, -0.13, 0.013 +19640722, 0.02, -0.03, 0.01, 0.013 +19640723, -0.03, 0.17, 0.12, 0.013 +19640724, -0.03, -0.02, -0.05, 0.013 +19640727, -0.48, -0.15, 0.28, 0.013 +19640728, -0.24, 0.04, 0.05, 0.013 +19640729, 0.13, -0.06, -0.02, 0.013 +19640730, 0.13, -0.08, -0.01, 0.013 +19640731, 0.07, 0.05, 0.10, 0.013 +19640803, -0.24, -0.29, 0.23, 0.013 +19640804, -1.13, -0.09, -0.05, 0.013 +19640805, 0.16, -0.38, 0.05, 0.013 +19640806, -0.87, 0.43, -0.09, 0.013 +19640807, 0.56, -0.01, -0.14, 0.013 +19640810, 0.02, 0.12, -0.20, 0.013 +19640811, -0.01, 0.09, 0.17, 0.013 +19640812, 0.50, 0.16, -0.05, 0.013 +19640813, 0.28, 0.01, 0.14, 0.013 +19640814, -0.10, 0.20, 0.04, 0.013 +19640817, -0.01, -0.09, -0.20, 0.013 +19640818, 0.06, -0.16, 0.34, 0.013 +19640819, -0.09, 0.01, 0.04, 0.013 +19640820, -0.44, -0.03, -0.26, 0.013 +19640821, 0.16, 0.09, -0.08, 0.013 +19640824, -0.20, 0.01, 0.51, 0.013 +19640825, -0.50, 0.15, -0.33, 0.013 +19640826, -0.18, -0.02, -0.02, 0.013 +19640827, 0.48, -0.27, 0.03, 0.013 +19640828, 0.32, -0.05, -0.13, 0.013 +19640831, -0.21, 0.27, -0.07, 0.013 +19640901, 0.46, -0.20, 0.53, 0.013 +19640902, 0.20, 0.14, 0.18, 0.013 +19640903, 0.25, -0.15, -0.22, 0.013 +19640904, 0.21, 0.02, 0.03, 0.013 +19640908, 0.12, 0.00, -0.01, 0.013 +19640909, 0.19, -0.23, 0.33, 0.013 +19640910, 0.08, -0.06, 0.23, 0.013 +19640911, 0.33, -0.29, 0.34, 0.013 +19640914, -0.24, -0.05, 0.39, 0.013 +19640915, -0.24, 0.11, -0.09, 0.013 +19640916, 0.27, -0.10, 0.22, 0.013 +19640917, 0.59, -0.17, 0.21, 0.013 +19640918, -0.34, 0.16, -0.23, 0.013 +19640921, 0.40, -0.13, 0.13, 0.013 +19640922, 0.04, 0.18, -0.22, 0.013 +19640923, 0.01, 0.12, 0.21, 0.013 +19640924, 0.10, -0.12, 0.03, 0.013 +19640925, 0.20, 0.09, -0.36, 0.013 +19640928, 0.07, -0.04, -0.08, 0.013 +19640929, -0.01, 0.00, -0.09, 0.013 +19640930, -0.03, 0.16, -0.09, 0.013 +19641001, -0.14, 0.08, 0.11, 0.013 +19641002, 0.24, -0.24, 0.16, 0.013 +19641005, 0.41, -0.27, 0.38, 0.013 +19641006, 0.02, -0.09, 0.16, 0.013 +19641007, -0.02, -0.12, 0.09, 0.013 +19641008, 0.24, -0.03, 0.18, 0.013 +19641009, 0.19, 0.01, 0.09, 0.013 +19641012, 0.06, 0.21, -0.07, 0.013 +19641013, -0.25, 0.03, 0.35, 0.013 +19641014, -0.17, 0.03, 0.14, 0.013 +19641015, -0.70, -0.38, -0.17, 0.013 +19641016, 0.70, 0.38, 0.06, 0.013 +19641019, 0.13, 0.30, 0.16, 0.013 +19641020, 0.25, -0.03, 0.29, 0.013 +19641021, -0.06, -0.03, 0.00, 0.013 +19641022, -0.16, 0.11, 0.04, 0.013 +19641023, 0.20, -0.09, 0.01, 0.013 +19641026, -0.17, 0.23, 0.23, 0.013 +19641027, -0.04, 0.02, -0.11, 0.013 +19641028, -0.35, 0.06, -0.53, 0.013 +19641029, 0.05, 0.08, -0.16, 0.013 +19641030, 0.18, 0.20, -0.26, 0.013 +19641102, 0.43, -0.15, -0.28, 0.015 +19641104, -0.04, -0.09, 0.21, 0.015 +19641105, 0.00, -0.10, -0.52, 0.015 +19641106, 0.19, -0.16, -0.13, 0.015 +19641109, -0.05, 0.05, -0.49, 0.015 +19641110, -0.41, 0.09, -0.20, 0.015 +19641111, 0.26, -0.14, 0.53, 0.015 +19641112, 0.18, 0.20, 0.24, 0.015 +19641113, 0.10, 0.35, -0.27, 0.015 +19641116, 0.43, 0.01, -0.53, 0.015 +19641117, 0.45, -0.31, 0.04, 0.015 +19641118, 0.24, -0.08, -0.02, 0.015 +19641119, -0.01, 0.01, -0.32, 0.015 +19641120, 0.10, 0.03, -0.03, 0.015 +19641123, -0.24, 0.12, 0.05, 0.015 +19641124, -0.26, 0.08, 0.03, 0.015 +19641125, -0.21, 0.35, -0.12, 0.015 +19641127, -0.31, 0.18, -0.12, 0.015 +19641130, -0.87, 0.16, -0.14, 0.015 +19641201, -1.00, 0.17, -0.20, 0.014 +19641202, 0.28, -0.28, 0.01, 0.014 +19641203, 0.39, -0.05, 0.13, 0.014 +19641204, 0.18, 0.02, -0.18, 0.014 +19641207, -0.01, -0.02, -0.18, 0.014 +19641208, -0.37, -0.08, -0.57, 0.014 +19641209, -0.67, -0.20, -0.10, 0.014 +19641210, -0.04, -0.12, 0.19, 0.014 +19641211, 0.22, 0.09, 0.03, 0.014 +19641214, -0.26, 0.17, -0.31, 0.014 +19641215, -0.35, -0.18, -0.18, 0.014 +19641216, 0.40, 0.15, -0.26, 0.014 +19641217, 0.36, 0.03, 0.26, 0.014 +19641218, 0.47, -0.01, -0.05, 0.014 +19641221, 0.07, 0.03, -0.09, 0.014 +19641222, -0.07, 0.04, -0.32, 0.014 +19641223, -0.20, 0.13, -0.22, 0.014 +19641224, 0.01, 0.09, 0.08, 0.014 +19641228, -0.11, 0.02, -0.18, 0.014 +19641229, -0.31, -0.09, 0.03, 0.014 +19641230, 0.57, -0.07, -0.26, 0.014 +19641231, 0.49, -0.10, -0.13, 0.014 +19650104, -0.45, 0.71, -0.09, 0.014 +19650105, 0.49, 0.39, -0.10, 0.014 +19650106, 0.34, 0.19, 0.44, 0.014 +19650107, 0.40, 0.07, 0.18, 0.014 +19650108, 0.17, 0.17, -0.20, 0.014 +19650111, 0.06, 0.07, 0.09, 0.014 +19650112, 0.28, 0.20, -0.09, 0.014 +19650113, 0.28, 0.22, -0.02, 0.014 +19650114, 0.00, 0.04, 0.23, 0.014 +19650115, 0.41, -0.18, 0.17, 0.014 +19650118, 0.28, -0.10, -0.22, 0.014 +19650119, 0.16, -0.26, 0.17, 0.014 +19650120, -0.03, 0.01, 0.08, 0.014 +19650121, -0.10, 0.15, -0.08, 0.014 +19650122, 0.24, 0.04, 0.11, 0.014 +19650125, 0.16, 0.29, 0.07, 0.014 +19650126, 0.10, 0.06, -0.07, 0.014 +19650127, 0.28, 0.18, -0.28, 0.014 +19650128, 0.26, 0.01, -0.13, 0.014 +19650129, 0.13, 0.32, -0.06, 0.014 +19650201, 0.03, 0.12, -0.06, 0.016 +19650202, 0.05, 0.03, -0.03, 0.016 +19650203, 0.14, 0.22, -0.16, 0.016 +19650204, 0.00, 0.42, -0.26, 0.016 +19650205, -0.25, 0.39, -0.06, 0.016 +19650208, -0.32, 0.08, 0.18, 0.016 +19650209, 0.31, 0.10, 0.07, 0.016 +19650210, -0.84, -0.05, -0.03, 0.016 +19650211, -0.99, 0.33, -0.03, 0.016 +19650212, 0.66, 0.24, 0.04, 0.016 +19650215, -0.05, 0.27, 0.32, 0.016 +19650216, -0.35, 0.33, 0.12, 0.016 +19650217, 0.14, 0.24, -0.03, 0.016 +19650218, 0.31, 0.34, -0.02, 0.016 +19650219, 0.20, 0.34, -0.11, 0.016 +19650223, 0.48, 0.00, 0.66, 0.016 +19650224, 0.63, -0.08, 0.02, 0.016 +19650225, 0.07, -0.03, -0.04, 0.016 +19650226, 0.25, 0.09, -0.44, 0.016 +19650301, -0.14, 0.39, 0.00, 0.016 +19650302, 0.18, 0.13, -0.04, 0.016 +19650303, -0.05, 0.27, -0.19, 0.016 +19650304, -0.29, 0.27, -0.14, 0.016 +19650305, -0.19, 0.06, 0.01, 0.016 +19650308, 0.04, 0.20, 0.25, 0.016 +19650309, -0.16, -0.08, 0.13, 0.016 +19650310, -0.10, 0.16, -0.16, 0.016 +19650311, 0.38, 0.10, -0.31, 0.016 +19650312, 0.30, -0.18, 0.30, 0.016 +19650315, 0.06, -0.02, 0.20, 0.016 +19650316, -0.11, 0.00, 0.21, 0.016 +19650317, -0.15, 0.14, 0.02, 0.016 +19650318, -0.26, 0.24, -0.27, 0.016 +19650319, -0.01, -0.07, 0.11, 0.016 +19650322, -0.01, 0.03, 0.25, 0.016 +19650323, 0.04, -0.01, 0.08, 0.016 +19650324, 0.18, -0.01, 0.46, 0.016 +19650325, -0.29, 0.09, 0.11, 0.016 +19650326, -0.70, 0.04, -0.10, 0.016 +19650329, -0.24, -0.20, 0.01, 0.016 +19650330, 0.19, 0.05, -0.02, 0.016 +19650331, 0.01, 0.18, 0.14, 0.016 +19650401, 0.16, 0.05, -0.18, 0.015 +19650402, 0.25, 0.13, 0.22, 0.015 +19650405, 0.01, 0.04, 0.00, 0.015 +19650406, -0.04, 0.05, -0.05, 0.015 +19650407, 0.06, 0.15, -0.07, 0.015 +19650408, 0.52, 0.18, 0.00, 0.015 +19650409, 0.56, 0.05, 0.03, 0.015 +19650412, 0.44, -0.05, 0.11, 0.015 +19650413, 0.12, 0.04, 0.31, 0.015 +19650414, 0.18, 0.17, -0.25, 0.015 +19650415, -0.06, 0.36, -0.02, 0.015 +19650419, 0.36, 0.07, -0.39, 0.015 +19650420, -0.03, 0.20, 0.13, 0.015 +19650421, -0.23, -0.01, 0.01, 0.015 +19650422, 0.45, -0.16, -0.10, 0.015 +19650423, 0.13, 0.14, -0.11, 0.015 +19650426, 0.00, 0.01, 0.42, 0.015 +19650427, 0.17, -0.20, 0.41, 0.015 +19650428, -0.05, -0.27, 0.50, 0.015 +19650429, -0.07, 0.21, -0.16, 0.015 +19650430, 0.13, 0.01, -0.13, 0.015 +19650503, 0.08, -0.31, -0.16, 0.016 +19650504, 0.27, -0.31, -0.06, 0.016 +19650505, 0.24, -0.40, 0.24, 0.016 +19650506, 0.24, -0.04, -0.20, 0.016 +19650507, -0.07, 0.03, -0.06, 0.016 +19650510, -0.12, 0.22, -0.10, 0.016 +19650511, -0.09, -0.05, -0.19, 0.016 +19650512, 0.37, 0.10, -0.38, 0.016 +19650513, 0.32, 0.31, -0.26, 0.016 +19650514, -0.16, 0.37, -0.12, 0.016 +19650517, -0.54, 0.25, 0.30, 0.016 +19650518, -0.07, 0.08, 0.14, 0.016 +19650519, 0.20, 0.12, -0.14, 0.016 +19650520, -0.53, -0.11, -0.08, 0.016 +19650521, -0.46, 0.13, -0.03, 0.016 +19650524, -0.74, -0.15, 0.11, 0.016 +19650525, 0.54, 0.02, -0.33, 0.016 +19650526, -0.27, -0.20, 0.03, 0.016 +19650527, -0.58, -0.09, -0.14, 0.016 +19650528, 0.61, 0.02, -0.15, 0.016 +19650601, -0.70, -0.01, 0.18, 0.016 +19650602, -0.78, -0.36, -0.52, 0.016 +19650603, -0.24, 0.07, -0.09, 0.016 +19650604, 0.21, 0.07, -0.03, 0.016 +19650607, -0.35, -0.31, 0.13, 0.016 +19650608, -1.07, -0.20, 0.00, 0.016 +19650609, -1.04, -0.27, 0.56, 0.016 +19650610, -0.43, -0.69, 0.15, 0.016 +19650611, 0.42, 0.01, -0.06, 0.016 +19650614, -1.36, -0.70, -0.10, 0.016 +19650615, 0.47, -0.10, -0.12, 0.016 +19650616, 0.89, 0.57, 0.12, 0.016 +19650617, 0.59, -0.04, 0.21, 0.016 +19650618, -0.44, -0.04, -0.01, 0.016 +19650621, -0.38, -0.17, -0.10, 0.016 +19650622, 0.18, -0.05, 0.00, 0.016 +19650623, -0.64, -0.04, 0.04, 0.016 +19650624, -1.35, -0.77, 0.08, 0.016 +19650625, -0.64, -0.33, -0.05, 0.016 +19650628, -1.88, -1.49, 0.07, 0.016 +19650629, 0.79, -0.75, -0.16, 0.016 +19650630, 2.20, 1.16, 0.11, 0.016 +19650701, 0.46, 0.38, 0.02, 0.015 +19650702, 0.81, 0.15, -0.06, 0.015 +19650706, -0.18, 0.26, -0.01, 0.015 +19650707, -0.34, -0.17, 0.11, 0.015 +19650708, 0.80, 0.01, -0.20, 0.015 +19650709, 0.40, 0.40, -0.03, 0.015 +19650712, 0.00, 0.06, 0.22, 0.015 +19650713, -0.13, -0.08, -0.24, 0.015 +19650714, 0.29, 0.20, 0.13, 0.015 +19650715, -0.10, 0.26, -0.01, 0.015 +19650716, -0.04, 0.06, -0.06, 0.015 +19650719, -0.09, 0.13, -0.27, 0.015 +19650720, -1.24, -0.30, 0.23, 0.015 +19650721, -0.55, -0.08, 0.24, 0.015 +19650722, -0.23, 0.16, 0.18, 0.015 +19650723, 0.24, -0.18, 0.29, 0.015 +19650726, -0.03, 0.12, 0.03, 0.015 +19650727, -0.18, -0.01, 0.20, 0.015 +19650728, 0.16, -0.48, 0.86, 0.015 +19650729, 0.72, -0.12, 0.53, 0.015 +19650730, 0.67, 0.08, -0.03, 0.015 +19650802, 0.20, 0.21, -0.34, 0.015 +19650803, 0.12, 0.05, -0.23, 0.015 +19650804, 0.41, 0.21, 0.10, 0.015 +19650805, 0.02, 0.27, -0.03, 0.015 +19650806, 0.35, 0.01, -0.33, 0.015 +19650809, -0.14, 0.39, -0.12, 0.015 +19650810, 0.04, 0.38, -0.14, 0.015 +19650811, 0.33, 0.13, 0.11, 0.015 +19650812, 0.29, 0.28, -0.09, 0.015 +19650813, 0.43, -0.19, 0.26, 0.015 +19650816, 0.11, -0.08, 0.24, 0.015 +19650817, 0.16, 0.09, -0.27, 0.015 +19650818, 0.02, 0.11, 0.24, 0.015 +19650819, -0.24, -0.30, -0.02, 0.015 +19650820, -0.08, -0.04, 0.20, 0.015 +19650823, -0.13, 0.06, 0.03, 0.015 +19650824, 0.18, 0.22, -0.31, 0.015 +19650825, 0.14, 0.22, -0.26, 0.015 +19650826, 0.37, -0.10, 0.21, 0.015 +19650827, 0.12, 0.23, -0.01, 0.015 +19650830, 0.04, 0.28, -0.08, 0.015 +19650831, -0.05, 0.29, -0.06, 0.015 +19650901, 0.05, 0.06, -0.20, 0.015 +19650902, 0.54, 0.03, 0.05, 0.015 +19650903, 0.46, 0.08, 0.10, 0.015 +19650907, 0.32, 0.13, -0.47, 0.015 +19650908, 0.28, 0.04, -0.15, 0.015 +19650909, 0.24, 0.08, 0.08, 0.015 +19650910, 0.23, 0.08, -0.34, 0.015 +19650913, 0.25, 0.14, -0.15, 0.015 +19650914, -0.44, -0.28, 0.14, 0.015 +19650915, 0.47, -0.12, 0.08, 0.015 +19650916, 0.52, -0.27, 0.48, 0.015 +19650917, 0.03, 0.06, -0.08, 0.015 +19650920, 0.04, 0.16, 0.07, 0.015 +19650921, -0.27, 0.07, -0.06, 0.015 +19650922, 0.47, 0.22, 0.11, 0.015 +19650923, -0.39, -0.29, 0.07, 0.015 +19650924, 0.23, 0.05, 0.60, 0.015 +19650927, 0.58, 0.09, -0.17, 0.015 +19650928, -0.24, 0.27, 0.11, 0.015 +19650929, -0.47, -0.04, -0.14, 0.015 +19650930, -0.07, 0.06, -0.24, 0.015 +19651001, -0.06, 0.17, 0.09, 0.015 +19651004, 0.24, 0.47, 0.07, 0.015 +19651005, 0.56, -0.04, 0.31, 0.015 +19651006, -0.08, -0.10, -0.31, 0.015 +19651007, -0.05, 0.39, -0.01, 0.015 +19651008, 0.48, 0.57, 0.39, 0.015 +19651011, 0.57, 0.19, -0.05, 0.015 +19651012, -0.05, 0.37, -0.16, 0.015 +19651013, 0.01, -0.01, 0.56, 0.015 +19651014, -0.15, 0.38, 0.23, 0.015 +19651015, 0.22, 0.26, 0.04, 0.015 +19651018, 0.27, 0.26, -0.09, 0.015 +19651019, 0.11, 0.00, -0.44, 0.015 +19651020, -0.01, 0.18, 0.11, 0.015 +19651021, 0.15, 0.25, -0.03, 0.015 +19651022, -0.05, -0.17, -0.05, 0.015 +19651025, -0.40, -0.35, 0.07, 0.015 +19651026, 0.50, -0.13, 0.23, 0.015 +19651027, 0.36, -0.22, 0.20, 0.015 +19651028, -0.31, 0.00, 0.14, 0.015 +19651029, 0.26, -0.07, 0.19, 0.015 +19651101, -0.10, -0.08, 0.27, 0.017 +19651103, 0.10, 0.24, -0.26, 0.017 +19651104, 0.19, 0.09, -0.16, 0.017 +19651105, 0.11, 0.29, -0.33, 0.017 +19651108, -0.34, 0.12, -0.27, 0.017 +19651109, -0.24, 0.19, 0.31, 0.017 +19651110, -0.09, 0.16, -0.03, 0.017 +19651111, 0.27, 0.13, -0.06, 0.017 +19651112, 0.49, 0.49, -0.32, 0.017 +19651115, 0.11, 0.58, -0.23, 0.017 +19651116, -0.13, 0.42, -0.04, 0.017 +19651117, 0.15, -0.67, 0.14, 0.017 +19651118, -0.35, 0.54, 0.12, 0.017 +19651119, 0.03, 0.34, 0.10, 0.017 +19651122, -0.53, 0.28, 0.10, 0.017 +19651123, 0.17, 0.18, 0.03, 0.017 +19651124, 0.19, 0.29, 0.17, 0.017 +19651126, 0.26, 0.45, 0.19, 0.017 +19651129, -0.15, 0.42, 0.28, 0.017 +19651130, -0.15, 0.12, 0.19, 0.017 +19651201, -0.03, 0.34, 0.29, 0.015 +19651202, -0.24, 0.31, 0.06, 0.015 +19651203, 0.07, 0.20, -0.19, 0.015 +19651206, -0.79, -0.33, -0.31, 0.015 +19651207, 0.95, 0.56, 0.35, 0.015 +19651208, -0.07, 0.43, -0.25, 0.015 +19651209, 0.29, 0.45, -0.15, 0.015 +19651210, 0.28, 0.21, -0.06, 0.015 +19651213, 0.10, 0.47, -0.13, 0.015 +19651214, 0.06, -0.21, 0.46, 0.015 +19651215, 0.18, -0.08, 0.73, 0.015 +19651216, 0.16, 0.09, 0.49, 0.015 +19651217, 0.04, 0.12, 0.69, 0.015 +19651220, -0.53, -0.25, 0.04, 0.015 +19651221, 0.34, -0.04, 0.51, 0.015 +19651222, 0.16, -0.91, 0.20, 0.015 +19651223, -0.16, -0.02, -0.29, 0.015 +19651227, -0.66, 0.06, -0.15, 0.015 +19651228, -0.05, -0.06, -0.18, 0.015 +19651229, 0.29, 0.38, -0.03, 0.015 +19651230, 0.36, 0.26, -0.27, 0.015 +19651231, 0.26, 0.05, 0.14, 0.015 +19660103, -0.22, 0.57, 0.29, 0.018 +19660104, 0.10, 0.32, 0.18, 0.018 +19660105, 0.57, -0.31, 0.71, 0.018 +19660106, 0.18, -0.37, 0.55, 0.018 +19660107, 0.10, 0.11, -0.07, 0.018 +19660110, 0.20, 0.29, 0.06, 0.018 +19660111, 0.05, 0.38, -0.29, 0.018 +19660112, -0.15, 0.34, -0.07, 0.018 +19660113, 0.22, 0.42, 0.27, 0.018 +19660114, 0.15, 0.00, 0.12, 0.018 +19660117, 0.33, 0.33, 0.15, 0.018 +19660118, 0.18, 0.05, 0.09, 0.018 +19660119, -0.28, 0.01, 0.12, 0.018 +19660120, -0.29, 0.29, 0.13, 0.018 +19660121, 0.08, 0.16, -0.24, 0.018 +19660124, 0.25, 0.27, 0.33, 0.018 +19660125, 0.18, 0.11, 0.43, 0.018 +19660126, -0.12, 0.19, 0.10, 0.018 +19660127, -0.03, 0.12, 0.33, 0.018 +19660128, -0.33, 0.45, 0.09, 0.018 +19660131, -0.45, 0.19, -0.22, 0.018 +19660201, -0.81, -0.82, -0.43, 0.018 +19660202, 0.40, 0.21, 0.43, 0.018 +19660203, 0.15, 0.10, -0.32, 0.018 +19660204, 0.59, -0.11, 0.48, 0.018 +19660207, 0.34, 0.20, 0.28, 0.018 +19660208, -0.03, -0.25, 0.09, 0.018 +19660209, 0.57, 0.65, -0.02, 0.018 +19660210, -0.17, 0.48, 0.00, 0.018 +19660211, 0.01, 0.49, -0.01, 0.018 +19660214, -0.11, 0.31, 0.18, 0.018 +19660215, -0.43, 0.00, 0.29, 0.018 +19660216, 0.03, 0.38, -0.11, 0.018 +19660217, -0.51, 0.18, -0.31, 0.018 +19660218, -0.22, 0.55, 0.16, 0.018 +19660221, -0.56, 0.37, -0.09, 0.018 +19660223, -0.42, 0.24, -0.15, 0.018 +19660224, -0.52, 0.14, 0.24, 0.018 +19660225, 0.32, 0.44, -0.14, 0.018 +19660228, 0.16, 0.96, -0.21, 0.018 +19660301, -1.29, -0.17, -0.21, 0.017 +19660302, -1.03, -0.11, -0.17, 0.017 +19660303, 0.39, 0.64, 0.16, 0.017 +19660304, -0.28, 0.30, -0.34, 0.017 +19660307, -1.29, -0.36, -0.16, 0.017 +19660308, 0.04, -0.48, -0.30, 0.017 +19660309, 0.89, 0.44, -0.11, 0.017 +19660310, -0.01, -0.29, -0.23, 0.017 +19660311, -0.08, 0.27, 0.32, 0.017 +19660314, -1.11, -0.32, -0.40, 0.017 +19660315, -0.74, -1.18, -0.31, 0.017 +19660316, 0.54, -0.02, 0.04, 0.017 +19660317, 0.31, -0.06, 0.28, 0.017 +19660318, 0.48, 0.24, 0.49, 0.017 +19660321, 0.82, 0.52, 0.55, 0.017 +19660322, 0.27, 0.11, 0.06, 0.017 +19660323, -0.32, 0.41, -0.46, 0.017 +19660324, 0.18, 0.36, -0.54, 0.017 +19660325, 0.33, 0.39, -0.50, 0.017 +19660328, 0.16, 0.47, 0.53, 0.017 +19660329, -0.41, -0.15, -0.31, 0.017 +19660330, -0.87, -0.01, -0.25, 0.017 +19660331, 0.55, -0.07, -0.32, 0.017 +19660401, 0.76, -0.15, 0.19, 0.017 +19660404, 0.90, -0.07, 0.70, 0.017 +19660405, 0.58, 0.01, 0.57, 0.017 +19660406, 0.25, 0.16, 0.02, 0.017 +19660407, 0.30, 0.68, -0.45, 0.017 +19660411, 0.10, 0.87, -0.61, 0.017 +19660412, -0.29, 0.28, -0.10, 0.017 +19660413, 0.09, 0.55, -0.22, 0.017 +19660414, 0.30, -0.12, 0.07, 0.017 +19660415, 0.09, 0.19, 0.34, 0.017 +19660418, -0.43, -0.07, 0.40, 0.017 +19660419, 0.02, 0.65, 0.12, 0.017 +19660420, 0.51, 0.19, 0.05, 0.017 +19660421, 0.34, -0.10, -0.11, 0.017 +19660422, -0.20, -0.30, 0.13, 0.017 +19660425, -0.18, 0.09, -0.02, 0.017 +19660426, -0.11, 0.01, -0.28, 0.017 +19660427, -0.29, 0.25, -0.37, 0.017 +19660428, -0.67, -0.13, -0.36, 0.017 +19660429, 0.02, 0.53, -0.30, 0.017 +19660502, -0.11, -0.08, -0.15, 0.020 +19660503, -1.12, -0.55, -0.13, 0.020 +19660504, -0.55, -0.32, 0.26, 0.020 +19660505, -1.74, -1.24, -0.04, 0.020 +19660506, -0.27, -1.21, 0.47, 0.020 +19660509, -1.60, -0.48, -0.28, 0.020 +19660510, 0.86, 0.13, -0.29, 0.020 +19660511, 0.18, 0.08, -0.28, 0.020 +19660512, -1.26, -0.70, -0.29, 0.020 +19660513, -0.96, -0.77, -0.17, 0.020 +19660516, -1.50, -1.23, -0.27, 0.020 +19660517, -0.92, -1.12, -0.37, 0.020 +19660518, 1.88, 0.88, 0.39, 0.020 +19660519, -0.12, 0.10, -0.38, 0.020 +19660520, 0.50, 0.21, -0.05, 0.020 +19660523, 0.89, 0.59, -0.35, 0.020 +19660524, 0.73, 0.57, 0.12, 0.020 +19660525, 0.39, 0.15, 0.15, 0.020 +19660526, 0.04, -0.25, 0.25, 0.020 +19660527, 0.30, 0.27, -0.10, 0.020 +19660531, -1.34, 0.01, -0.13, 0.020 +19660601, -0.01, -0.09, -0.19, 0.017 +19660602, -0.06, 0.20, 0.17, 0.017 +19660603, 0.11, 0.03, 0.18, 0.017 +19660606, -0.74, -0.20, -0.05, 0.017 +19660607, -0.70, -0.25, -0.14, 0.017 +19660608, 0.15, 0.18, 0.23, 0.017 +19660609, 0.72, 0.45, -0.17, 0.017 +19660610, 1.09, 0.21, 0.75, 0.017 +19660613, 0.48, 0.42, 0.10, 0.017 +19660614, 0.33, 0.23, -0.24, 0.017 +19660615, -0.38, 0.48, -0.17, 0.017 +19660616, -0.23, 0.37, -0.14, 0.017 +19660617, 0.01, 0.17, -0.25, 0.017 +19660620, -0.05, -0.03, 0.04, 0.017 +19660621, 0.35, 0.29, 0.01, 0.017 +19660622, 0.18, 0.35, 0.01, 0.017 +19660623, -0.40, -0.37, 0.28, 0.017 +19660624, 0.01, -0.25, 0.46, 0.017 +19660627, -0.63, -0.28, -0.02, 0.017 +19660628, -0.48, 0.01, -0.11, 0.017 +19660629, -1.01, -0.30, -0.19, 0.017 +19660630, -0.18, -0.58, -0.04, 0.017 +19660701, 0.99, 0.24, -0.23, 0.018 +19660705, 0.13, 0.03, 0.01, 0.018 +19660706, 1.39, -0.33, -0.50, 0.018 +19660707, 0.35, 0.05, -0.04, 0.018 +19660708, 0.16, 0.11, 0.16, 0.018 +19660711, -0.15, 0.18, -0.07, 0.018 +19660712, -0.50, 0.22, 0.15, 0.018 +19660713, -0.62, 0.21, 0.11, 0.018 +19660714, 0.55, -0.03, -0.31, 0.018 +19660715, 0.29, -0.02, 0.19, 0.018 +19660718, -0.13, -0.15, 0.19, 0.018 +19660719, -0.73, -0.09, 0.18, 0.018 +19660720, -0.89, 0.29, 0.20, 0.018 +19660721, -0.04, -0.22, 0.08, 0.018 +19660722, -0.11, 0.14, 0.19, 0.018 +19660725, -1.93, -0.46, 0.33, 0.018 +19660726, -0.26, -0.70, 0.04, 0.018 +19660727, 0.48, 0.07, 0.11, 0.018 +19660728, -0.36, 0.09, 0.03, 0.018 +19660729, -0.20, -0.08, 0.15, 0.018 +19660801, -1.53, -0.29, 0.27, 0.018 +19660802, 0.04, -0.27, -0.12, 0.018 +19660803, 0.99, 0.11, -0.34, 0.018 +19660804, 0.91, -0.41, 0.27, 0.018 +19660805, 0.13, 0.19, -0.32, 0.018 +19660808, -0.18, -0.12, -0.20, 0.018 +19660809, -0.19, 0.35, -0.20, 0.018 +19660810, -0.42, -0.03, -0.07, 0.018 +19660811, -0.06, 0.18, -0.51, 0.018 +19660812, 0.23, 0.25, -0.35, 0.018 +19660815, -0.49, 0.18, -0.02, 0.018 +19660816, -1.27, -0.02, 0.33, 0.018 +19660817, -0.58, -0.29, -0.03, 0.018 +19660818, -1.27, -0.01, 0.04, 0.018 +19660819, -0.76, -0.50, 0.18, 0.018 +19660822, -1.82, -0.34, 0.27, 0.018 +19660823, -0.13, 0.13, -0.04, 0.018 +19660824, 1.16, -0.15, -0.10, 0.018 +19660825, -1.26, -0.02, 0.59, 0.018 +19660826, -2.23, -0.69, 0.77, 0.018 +19660829, -2.57, -1.19, 0.85, 0.018 +19660830, 1.61, -0.60, -1.09, 0.018 +19660831, 1.62, 0.07, 0.34, 0.018 +19660901, 0.66, -0.26, -0.06, 0.019 +19660902, -0.33, 0.02, 0.23, 0.019 +19660906, -0.52, 0.12, -0.02, 0.019 +19660907, -0.91, -0.50, 0.44, 0.019 +19660908, -0.37, -0.05, 0.14, 0.019 +19660909, 0.31, 0.12, -0.20, 0.019 +19660912, 2.13, -0.06, -0.66, 0.019 +19660913, 0.58, 0.27, -0.05, 0.019 +19660914, 0.90, -0.39, -0.82, 0.019 +19660915, 1.01, -0.44, -0.27, 0.019 +19660916, -0.04, 0.16, -0.01, 0.019 +19660919, -0.47, 0.28, 0.24, 0.019 +19660920, -0.68, 0.33, 0.29, 0.019 +19660921, -1.69, 0.04, 0.79, 0.019 +19660922, 0.21, -0.26, -0.29, 0.019 +19660923, -0.30, 0.13, 0.17, 0.019 +19660926, 0.21, -0.04, -0.28, 0.019 +19660927, 0.28, -0.13, -0.07, 0.019 +19660928, -1.17, 0.17, 0.71, 0.019 +19660929, -1.07, -0.38, 0.43, 0.019 +19660930, 0.28, -0.16, -0.31, 0.019 +19661003, -2.17, -0.29, 1.12, 0.022 +19661004, 0.07, -1.30, 0.20, 0.022 +19661005, -0.58, -0.53, 0.34, 0.022 +19661006, -1.01, -0.99, 0.64, 0.022 +19661007, -1.26, -0.68, 0.71, 0.022 +19661010, 1.69, -0.71, -1.32, 0.022 +19661011, 0.48, -0.02, 0.59, 0.022 +19661012, 2.63, -1.08, -0.25, 0.022 +19661013, -0.01, 0.83, -0.45, 0.022 +19661014, -0.30, 0.28, 0.30, 0.022 +19661017, 1.09, -0.55, -0.42, 0.022 +19661018, 1.62, -0.37, -0.56, 0.022 +19661019, -0.75, 0.29, 0.54, 0.022 +19661020, -0.31, 0.04, 0.03, 0.022 +19661021, 0.31, -0.50, -0.40, 0.022 +19661024, 0.23, -0.27, -0.01, 0.022 +19661025, 0.51, -0.67, 0.00, 0.022 +19661026, 0.85, -0.06, 0.42, 0.022 +19661027, 0.80, -0.48, 0.87, 0.022 +19661028, 0.04, 0.36, 0.32, 0.022 +19661031, -0.04, 0.14, 0.11, 0.022 +19661101, 0.84, -0.02, -0.38, 0.020 +19661102, 0.13, 0.16, -0.64, 0.020 +19661103, -0.32, 0.31, -0.21, 0.020 +19661104, 0.39, -0.05, -0.31, 0.020 +19661107, -0.05, 0.18, -0.20, 0.020 +19661109, 0.82, 0.17, -0.55, 0.020 +19661110, 0.63, 0.37, -0.52, 0.020 +19661111, 0.10, 0.59, -0.12, 0.020 +19661114, -0.53, 0.38, -0.03, 0.020 +19661115, 0.41, 0.09, -0.30, 0.020 +19661116, 0.86, 0.27, -0.11, 0.020 +19661117, -0.66, 0.44, 0.15, 0.020 +19661118, -0.61, 0.30, 0.06, 0.020 +19661121, -1.37, -0.03, 0.07, 0.020 +19661122, -0.50, -0.09, -0.25, 0.020 +19661123, 0.76, 0.22, -0.38, 0.020 +19661125, 0.79, 0.17, 0.05, 0.020 +19661128, -0.04, 0.11, -0.39, 0.020 +19661129, -0.29, 0.26, -0.22, 0.020 +19661130, 0.08, 0.25, -0.16, 0.020 +19661201, -0.39, 0.33, -0.21, 0.019 +19661202, 0.03, 0.12, -0.06, 0.019 +19661205, 0.07, -0.02, -0.35, 0.019 +19661206, 0.68, -0.34, -0.18, 0.019 +19661207, 1.01, -0.15, -0.61, 0.019 +19661208, 0.37, 0.18, -0.22, 0.019 +19661209, 0.22, 0.19, -0.21, 0.019 +19661212, 0.98, 0.04, -0.39, 0.019 +19661213, -0.28, 0.10, -0.01, 0.019 +19661214, -0.01, 0.73, -0.59, 0.019 +19661215, -1.04, 0.44, 0.35, 0.019 +19661216, 0.02, 0.34, 0.08, 0.019 +19661219, -0.27, 0.13, -0.20, 0.019 +19661220, -0.39, -0.14, 0.24, 0.019 +19661221, 0.52, 0.08, 0.25, 0.019 +19661222, 0.38, 0.09, 0.50, 0.019 +19661223, -0.25, 0.17, 0.49, 0.019 +19661227, -0.54, 0.10, 0.39, 0.019 +19661228, -0.48, -0.27, 0.11, 0.019 +19661229, -0.39, -0.36, 0.06, 0.019 +19661230, -0.08, 0.10, -0.53, 0.019 +19670103, 0.08, 0.92, 0.71, 0.020 +19670104, 0.16, -0.12, 0.25, 0.020 +19670105, 1.30, 0.53, 0.33, 0.020 +19670106, 0.72, 0.68, 0.14, 0.020 +19670109, 0.84, 0.52, 0.36, 0.020 +19670110, 0.00, 0.24, 0.13, 0.020 +19670111, 0.84, 0.18, 0.59, 0.020 +19670112, 0.54, 0.13, 0.24, 0.020 +19670113, 0.68, 0.17, -0.09, 0.020 +19670116, -0.19, 0.34, 0.23, 0.020 +19670117, 1.13, 0.01, -0.33, 0.020 +19670118, 0.52, -0.20, 0.09, 0.020 +19670119, 0.04, 0.20, 0.31, 0.020 +19670120, 0.37, 1.02, -0.13, 0.020 +19670123, 0.34, 0.31, -0.44, 0.020 +19670124, 0.20, 0.35, -0.30, 0.020 +19670125, -0.69, 0.40, -0.22, 0.020 +19670126, 0.03, 0.51, -0.03, 0.020 +19670127, 0.48, 0.46, -0.27, 0.020 +19670130, 0.56, 0.58, 0.07, 0.020 +19670131, -0.08, 0.19, 0.37, 0.020 +19670201, -0.15, 0.32, 0.03, 0.019 +19670202, 0.34, 0.38, 0.18, 0.019 +19670203, 0.71, 0.50, -0.01, 0.019 +19670206, -0.15, 0.24, 0.25, 0.019 +19670207, -0.18, 0.12, -0.28, 0.019 +19670208, 0.88, 0.33, -0.45, 0.019 +19670209, -0.39, -0.33, -0.14, 0.019 +19670210, 0.26, 0.31, -0.13, 0.019 +19670213, 0.14, 0.40, 0.11, 0.019 +19670214, 0.73, 0.12, -0.06, 0.019 +19670215, 0.05, -0.10, -0.35, 0.019 +19670216, -0.43, 0.24, -0.12, 0.019 +19670217, 0.02, 0.04, 0.03, 0.019 +19670220, -0.50, 0.29, -0.09, 0.019 +19670221, 0.00, 0.47, -0.37, 0.019 +19670223, 0.13, 0.00, -0.03, 0.019 +19670224, 0.08, 0.03, -0.02, 0.019 +19670227, -1.10, -0.34, -0.09, 0.019 +19670228, 0.38, 0.29, -0.58, 0.019 +19670301, 0.98, 0.04, -0.05, 0.018 +19670302, 0.52, -0.03, -0.22, 0.018 +19670303, 0.16, 0.27, -0.40, 0.018 +19670306, -0.13, 0.35, 0.29, 0.018 +19670307, 0.16, 0.34, -0.07, 0.018 +19670308, 0.17, 0.31, -0.25, 0.018 +19670309, 0.29, 0.30, 0.01, 0.018 +19670310, 0.37, -0.29, 0.69, 0.018 +19670313, -0.48, 0.00, -0.08, 0.018 +19670314, -0.11, 0.11, -0.19, 0.018 +19670315, 0.89, -0.31, 0.35, 0.018 +19670316, 0.90, -0.39, -0.26, 0.018 +19670317, 0.13, 0.12, -0.07, 0.018 +19670320, -0.01, 0.23, -0.15, 0.018 +19670321, -0.29, -0.07, 0.03, 0.018 +19670322, 0.28, 0.08, -0.16, 0.018 +19670323, 0.68, -0.19, 0.26, 0.018 +19670327, -0.06, 0.22, -0.21, 0.018 +19670328, 0.09, 0.01, 0.15, 0.018 +19670329, -0.13, 0.06, 0.13, 0.018 +19670330, 0.04, 0.30, -0.10, 0.018 +19670331, -0.51, 0.08, 0.58, 0.018 +19670403, -1.13, -0.16, 0.18, 0.016 +19670404, 0.01, 0.37, -0.29, 0.016 +19670405, 0.63, 0.04, 0.05, 0.016 +19670406, 0.20, -0.04, 0.14, 0.016 +19670407, -0.62, -0.25, 0.43, 0.016 +19670410, -1.24, -0.55, 0.38, 0.016 +19670411, 0.71, 0.25, -0.11, 0.016 +19670412, -0.11, 0.10, 0.12, 0.016 +19670413, 0.65, 0.05, -0.35, 0.016 +19670414, 1.01, -0.19, -0.79, 0.016 +19670417, 0.64, -0.26, -0.07, 0.016 +19670418, 0.85, 0.13, -0.09, 0.016 +19670419, 0.12, -0.07, -0.11, 0.016 +19670420, 0.19, 0.26, -0.25, 0.016 +19670421, 0.26, 0.43, -0.21, 0.016 +19670424, 0.27, -0.28, -0.27, 0.016 +19670425, 0.55, -0.17, -0.20, 0.016 +19670426, -0.12, 0.28, -0.43, 0.016 +19670427, 0.81, 0.20, -0.55, 0.016 +19670428, 0.15, 0.30, 0.06, 0.016 +19670501, -0.08, 0.39, -0.24, 0.015 +19670502, -0.02, 0.52, 0.06, 0.015 +19670503, 0.28, 0.51, -0.10, 0.015 +19670504, 0.33, -0.08, -0.26, 0.015 +19670505, 0.12, -0.05, 0.37, 0.015 +19670508, 0.21, -0.33, 0.19, 0.015 +19670509, -1.04, -0.48, 0.67, 0.015 +19670510, -0.13, 0.46, 0.04, 0.015 +19670511, 0.49, 0.59, -0.29, 0.015 +19670512, -0.20, 0.41, -0.10, 0.015 +19670515, -0.74, 0.26, 0.19, 0.015 +19670516, 0.48, 0.16, -0.12, 0.015 +19670517, -0.27, 0.22, 0.24, 0.015 +19670518, -0.19, 0.43, 0.17, 0.015 +19670519, -0.42, 0.20, -0.13, 0.015 +19670522, -0.34, 0.28, -0.22, 0.015 +19670523, -0.43, 0.08, -0.15, 0.015 +19670524, -1.20, -0.42, 0.18, 0.015 +19670525, 0.99, -0.07, -0.22, 0.015 +19670526, -0.11, -0.13, 0.35, 0.015 +19670529, -0.48, 0.23, -0.07, 0.015 +19670531, -1.67, -0.95, 0.05, 0.015 +19670601, 1.18, 0.00, -0.13, 0.012 +19670602, -0.40, 0.44, -0.02, 0.012 +19670605, -1.65, -1.37, 0.08, 0.012 +19670606, 2.02, 0.79, -0.32, 0.012 +19670607, 0.86, 0.43, 0.08, 0.012 +19670608, 0.57, 0.35, -0.05, 0.012 +19670609, 0.26, 0.41, 0.10, 0.012 +19670612, 0.63, 0.51, -0.23, 0.012 +19670613, 0.60, 0.03, 0.05, 0.012 +19670614, -0.17, 0.40, -0.09, 0.012 +19670615, 0.17, 0.47, -0.03, 0.012 +19670616, 0.03, 0.13, 0.19, 0.012 +19670619, 0.03, 0.47, -0.18, 0.012 +19670620, -0.03, 0.32, 0.11, 0.012 +19670621, -0.25, 0.24, 0.06, 0.012 +19670622, -0.20, 0.41, -0.09, 0.012 +19670623, 0.07, 0.38, 0.15, 0.012 +19670626, -0.40, -0.05, 0.25, 0.012 +19670627, -0.34, 0.41, 0.13, 0.012 +19670628, 0.07, 0.56, 0.14, 0.012 +19670629, -0.47, -0.15, 0.32, 0.012 +19670630, -0.14, 0.54, 0.34, 0.012 +19670703, 0.35, 0.36, -0.02, 0.016 +19670705, 0.53, 0.27, -0.22, 0.016 +19670706, -0.06, 0.31, -0.26, 0.016 +19670707, 0.47, 0.57, -0.09, 0.016 +19670710, 0.46, 0.27, 0.20, 0.016 +19670711, 0.43, -0.31, 0.17, 0.016 +19670712, -0.03, 0.20, 0.01, 0.016 +19670713, 0.06, 0.39, 0.12, 0.016 +19670714, 0.37, 0.31, 0.48, 0.016 +19670717, 0.07, 0.06, 0.38, 0.016 +19670718, 0.71, -0.32, 0.66, 0.016 +19670719, 0.09, -0.02, 0.44, 0.016 +19670720, 0.14, -0.34, 0.48, 0.016 +19670721, 0.04, -0.30, 0.18, 0.016 +19670724, -0.37, -0.33, 0.19, 0.016 +19670725, 0.02, 0.36, 0.13, 0.016 +19670726, 0.42, 0.25, -0.20, 0.016 +19670727, 0.34, 0.53, -0.16, 0.016 +19670728, 0.17, 0.36, 0.15, 0.016 +19670731, 0.28, 0.31, -0.17, 0.016 +19670801, 0.62, -0.44, 0.53, 0.014 +19670802, 0.34, -0.46, 0.23, 0.014 +19670803, -0.18, 0.02, -0.23, 0.014 +19670804, 0.26, 0.53, -0.18, 0.014 +19670807, -0.16, 0.17, 0.07, 0.014 +19670808, 0.09, -0.11, 0.40, 0.014 +19670809, 0.11, -0.02, 0.21, 0.014 +19670810, -0.27, -0.05, 0.11, 0.014 +19670811, -0.48, -0.01, 0.14, 0.014 +19670814, -0.50, -0.27, -0.07, 0.014 +19670815, 0.11, 0.01, 0.06, 0.014 +19670816, -0.25, -0.10, 0.07, 0.014 +19670817, 0.13, 0.31, 0.13, 0.014 +19670818, 0.17, 0.21, -0.04, 0.014 +19670821, -0.50, 0.21, -0.01, 0.014 +19670822, -0.54, -0.02, 0.21, 0.014 +19670823, -0.10, -0.02, -0.13, 0.014 +19670824, -0.52, 0.15, 0.04, 0.014 +19670825, -0.42, -0.19, -0.01, 0.014 +19670828, 0.03, 0.15, 0.00, 0.014 +19670829, 0.25, -0.12, 0.25, 0.014 +19670830, 0.28, 0.43, -0.21, 0.014 +19670831, 0.65, 0.07, -0.08, 0.014 +19670901, 0.15, 0.37, 0.04, 0.016 +19670905, 0.53, -0.08, -0.03, 0.016 +19670906, 0.17, 0.20, -0.14, 0.016 +19670907, -0.06, 0.11, 0.05, 0.016 +19670908, 0.01, 0.47, -0.35, 0.016 +19670911, 0.15, 0.24, -0.32, 0.016 +19670912, 0.49, -0.03, -0.01, 0.016 +19670913, 0.97, -0.49, 0.30, 0.016 +19670914, 0.14, 0.04, 0.12, 0.016 +19670915, 0.06, 0.13, -0.12, 0.016 +19670918, 0.26, 0.19, 0.03, 0.016 +19670919, -0.44, -0.10, -0.20, 0.016 +19670920, 0.05, 0.61, -0.02, 0.016 +19670921, 0.56, -0.06, -0.35, 0.016 +19670922, 0.28, 0.41, -0.10, 0.016 +19670925, 0.49, -0.18, -0.49, 0.016 +19670926, -0.87, -0.19, 0.23, 0.016 +19670927, 0.05, 0.38, -0.40, 0.016 +19670928, 0.07, 0.42, -0.59, 0.016 +19670929, -0.01, 0.55, 0.00, 0.016 +19671002, -0.40, 0.24, 0.01, 0.018 +19671003, 0.32, 0.26, -0.51, 0.018 +19671004, -0.13, 0.28, -0.24, 0.018 +19671005, 0.20, 0.22, -0.29, 0.018 +19671006, 0.57, 0.33, -0.41, 0.018 +19671009, 0.20, 0.21, -0.02, 0.018 +19671010, -0.73, -0.29, 0.40, 0.018 +19671011, -0.45, -0.04, -0.08, 0.018 +19671012, -0.61, 0.09, -0.03, 0.018 +19671013, 0.22, 0.33, 0.09, 0.018 +19671016, -0.81, -0.03, -0.02, 0.018 +19671017, -0.19, 0.16, -0.21, 0.018 +19671018, 0.24, 0.11, -0.07, 0.018 +19671019, 0.09, -0.09, -0.58, 0.018 +19671020, -0.12, -0.23, -0.21, 0.018 +19671023, -0.48, -0.21, -0.29, 0.018 +19671024, -0.57, -0.33, -0.01, 0.018 +19671025, 0.14, 0.01, -0.35, 0.018 +19671026, 0.43, 0.45, -0.70, 0.018 +19671027, 0.02, 0.02, -0.04, 0.018 +19671030, -0.17, 0.19, -0.17, 0.018 +19671031, -0.90, -0.22, 0.23, 0.018 +19671101, -1.22, 0.27, -0.08, 0.018 +19671102, -0.49, -0.17, -0.09, 0.018 +19671103, -0.48, 0.49, -0.25, 0.018 +19671106, -0.31, 0.11, -0.24, 0.018 +19671108, -0.38, 0.14, 0.20, 0.018 +19671109, 0.41, -0.37, -0.09, 0.018 +19671110, 0.58, -0.14, 0.09, 0.018 +19671113, -0.31, -0.60, 0.28, 0.018 +19671114, -0.73, -0.90, 0.44, 0.018 +19671115, 0.41, -0.53, -0.24, 0.018 +19671116, 0.95, 0.29, -0.52, 0.018 +19671117, 0.35, 0.64, -0.17, 0.018 +19671120, -1.39, -0.96, -0.04, 0.018 +19671121, 1.71, 0.97, -0.56, 0.018 +19671122, 0.66, 0.53, -0.50, 0.018 +19671124, 0.21, -0.18, -0.14, 0.018 +19671127, 0.35, 0.33, -0.43, 0.018 +19671128, 0.50, 0.12, 0.13, 0.018 +19671129, 0.05, 0.19, 0.22, 0.018 +19671130, -0.45, 0.00, 0.25, 0.018 +19671201, 0.54, 0.55, -0.13, 0.017 +19671204, 0.64, 0.53, -0.08, 0.017 +19671205, 0.11, -0.12, -0.13, 0.017 +19671206, 0.36, 0.13, -0.16, 0.017 +19671207, -0.09, 0.06, 0.38, 0.017 +19671208, -0.09, 0.40, -0.30, 0.017 +19671211, -0.17, 0.78, -0.25, 0.017 +19671212, -0.01, 0.50, -0.36, 0.017 +19671213, 0.43, 0.44, -0.48, 0.017 +19671214, 0.16, 0.39, 0.23, 0.017 +19671215, -0.57, -0.18, 0.51, 0.017 +19671218, -0.29, 0.36, -0.08, 0.017 +19671219, -0.10, 0.29, -0.32, 0.017 +19671220, 0.57, -0.04, 0.02, 0.017 +19671221, 0.25, 0.20, 0.14, 0.017 +19671222, -0.12, 0.42, 0.34, 0.017 +19671226, 0.15, 0.31, 0.27, 0.017 +19671227, 0.67, 0.13, -0.22, 0.017 +19671228, -0.05, -0.09, 0.27, 0.017 +19671229, 0.64, 0.24, 0.02, 0.017 +19680102, -0.26, 0.23, 1.20, 0.018 +19680103, -0.56, -0.09, 0.84, 0.018 +19680104, -0.30, -0.02, 0.71, 0.018 +19680105, 0.64, 0.52, 0.42, 0.018 +19680108, 0.70, 0.12, 0.17, 0.018 +19680109, -0.15, -0.04, -0.06, 0.018 +19680110, 0.14, 0.33, 0.05, 0.018 +19680111, 0.26, 0.89, 0.26, 0.018 +19680112, 0.20, 0.71, -0.15, 0.018 +19680115, -0.15, 0.51, -0.07, 0.018 +19680116, -0.56, 0.54, 0.23, 0.018 +19680117, -0.10, 0.67, -0.08, 0.018 +19680118, -0.01, 0.59, 0.13, 0.018 +19680119, -0.34, 0.09, -0.16, 0.018 +19680122, -1.38, -0.44, 0.25, 0.018 +19680123, -0.51, -0.13, -0.30, 0.018 +19680124, -0.41, 0.24, 0.09, 0.018 +19680125, 0.05, -0.27, -0.02, 0.018 +19680126, 0.21, 0.67, 0.02, 0.018 +19680129, -0.16, 0.02, 0.03, 0.018 +19680130, -0.56, -0.73, 0.75, 0.018 +19680131, -0.83, -0.38, 0.48, 0.018 +19680201, 0.28, -0.51, 0.29, 0.020 +19680202, -0.34, -0.07, 0.36, 0.020 +19680205, -0.47, -0.37, 0.28, 0.020 +19680206, 0.07, -0.10, 0.09, 0.020 +19680207, 0.15, -0.01, 0.04, 0.020 +19680208, -1.42, -0.96, 0.07, 0.020 +19680209, -1.19, -0.68, 0.17, 0.020 +19680213, -1.05, -0.89, 0.28, 0.020 +19680214, 1.25, 0.35, -0.77, 0.020 +19680215, 0.24, 0.54, 0.24, 0.020 +19680216, -0.39, 0.02, 0.34, 0.020 +19680219, 0.35, 0.17, -0.36, 0.020 +19680220, 0.62, 0.44, -0.23, 0.020 +19680221, 0.42, 0.27, -0.47, 0.020 +19680223, -0.48, -0.25, 0.24, 0.020 +19680226, -0.79, -0.62, 0.23, 0.020 +19680227, 0.40, -0.02, -0.11, 0.020 +19680228, -0.54, 0.14, 0.11, 0.020 +19680229, -0.88, -0.44, 0.31, 0.020 +19680301, -0.45, -0.66, 0.21, 0.018 +19680304, -1.55, -1.13, 0.96, 0.018 +19680305, -0.42, -0.97, -0.18, 0.018 +19680306, 1.80, 0.57, -0.25, 0.018 +19680307, -0.16, 0.49, 0.01, 0.018 +19680308, -0.10, -0.12, 0.04, 0.018 +19680311, 1.35, 0.54, -0.29, 0.018 +19680312, 0.18, 0.55, -0.21, 0.018 +19680313, -0.18, 0.34, 0.19, 0.018 +19680314, -2.09, -0.89, 0.19, 0.018 +19680315, 0.77, -0.38, -0.37, 0.018 +19680318, 0.65, 0.59, -0.41, 0.018 +19680319, -0.64, 0.06, 0.28, 0.018 +19680320, -0.08, -0.07, -0.16, 0.018 +19680321, -0.81, -0.25, 0.23, 0.018 +19680322, 0.01, -0.35, 0.17, 0.018 +19680325, -0.13, -0.19, 0.02, 0.018 +19680326, 0.66, 0.23, -0.44, 0.018 +19680327, 0.85, 0.27, -0.50, 0.018 +19680328, -0.08, 0.10, 0.12, 0.018 +19680329, 0.70, 0.11, -0.32, 0.018 +19680401, 2.38, -0.46, -0.79, 0.021 +19680402, 0.20, 0.14, 0.08, 0.021 +19680403, 0.87, -0.17, -0.21, 0.021 +19680404, 0.46, 0.15, 0.14, 0.021 +19680405, -0.54, 0.33, 0.09, 0.021 +19680408, 1.73, 0.00, -0.10, 0.021 +19680410, 0.73, 0.01, -0.14, 0.021 +19680411, 0.95, 0.15, 0.26, 0.021 +19680415, 0.20, 0.60, -0.04, 0.021 +19680416, 0.15, 0.78, 0.05, 0.021 +19680417, 0.30, 0.54, 0.41, 0.021 +19680418, 0.31, 0.40, 0.50, 0.021 +19680419, -1.23, 0.14, -0.45, 0.021 +19680422, -0.49, 0.39, -0.26, 0.021 +19680423, 1.28, 0.53, -0.51, 0.021 +19680424, 0.27, 0.49, -0.02, 0.021 +19680425, 0.34, 0.39, -0.06, 0.021 +19680426, 0.34, 0.26, -0.13, 0.021 +19680429, 0.30, 0.16, 0.06, 0.021 +19680430, 0.14, 0.29, 0.25, 0.021 +19680501, 0.32, 0.09, 0.21, 0.020 +19680502, 0.62, -0.01, -0.13, 0.020 +19680503, 0.08, 0.00, -0.38, 0.020 +19680506, -0.18, 0.24, 0.24, 0.020 +19680507, 0.57, 0.30, 0.35, 0.020 +19680508, 0.06, 0.43, -0.18, 0.020 +19680509, -0.52, -0.11, -0.08, 0.020 +19680510, 0.34, 0.71, 0.10, 0.020 +19680513, -0.17, 0.58, -0.06, 0.020 +19680514, -0.07, 0.19, 0.19, 0.020 +19680515, -0.06, 0.28, 0.03, 0.020 +19680516, -0.44, 0.02, 0.41, 0.020 +19680517, -0.59, 0.30, 0.38, 0.020 +19680520, -0.47, 0.04, 0.08, 0.020 +19680521, 0.58, 0.49, -0.07, 0.020 +19680522, 0.32, 0.64, 0.27, 0.020 +19680523, -0.13, 0.46, -0.23, 0.020 +19680524, 0.31, 0.26, 0.32, 0.020 +19680527, -0.04, 0.79, -0.30, 0.020 +19680528, 0.62, 0.18, -0.47, 0.020 +19680529, 0.32, 0.13, -0.02, 0.020 +19680531, 0.76, 0.09, 0.20, 0.020 +19680603, 1.25, -0.06, -0.33, 0.025 +19680604, 0.53, 0.30, 0.32, 0.025 +19680605, -0.47, -0.19, 0.20, 0.025 +19680606, 0.90, 0.42, 0.01, 0.025 +19680607, 0.67, 0.39, -0.17, 0.025 +19680610, 0.10, -0.02, -0.12, 0.025 +19680611, 0.23, 0.20, 0.28, 0.025 +19680613, -0.44, -0.13, -0.24, 0.025 +19680614, -0.16, -0.08, -0.11, 0.025 +19680617, -1.12, -0.43, -0.02, 0.025 +19680618, -0.12, 0.14, -0.06, 0.025 +19680620, 0.51, -0.29, -0.10, 0.025 +19680621, 0.14, -0.15, 0.26, 0.025 +19680624, -0.39, -0.32, 0.32, 0.025 +19680625, -0.44, -0.35, -0.03, 0.025 +19680627, -0.17, 0.04, -0.04, 0.025 +19680628, -0.34, 0.36, 0.43, 0.025 +19680701, -0.23, 0.01, 0.60, 0.028 +19680702, 0.41, 0.35, -0.41, 0.028 +19680703, 1.25, 0.46, -0.53, 0.028 +19680708, 1.06, 0.29, -0.36, 0.028 +19680709, 0.27, 0.00, 0.27, 0.028 +19680711, 0.10, 0.07, 0.37, 0.028 +19680712, -0.06, 0.14, 0.32, 0.028 +19680715, -0.17, 0.19, 0.35, 0.028 +19680716, -0.54, 0.16, 0.40, 0.028 +19680718, -0.35, -0.07, 0.27, 0.028 +19680719, -0.94, -0.24, 1.09, 0.028 +19680722, -1.43, -0.94, 1.42, 0.028 +19680723, -0.25, -0.35, -0.09, 0.028 +19680725, -1.30, -0.18, 0.88, 0.028 +19680726, 0.27, -0.48, 0.22, 0.028 +19680729, -0.88, -0.63, 0.71, 0.028 +19680730, 0.11, -0.06, -0.10, 0.028 +19680801, -0.54, 0.12, -0.05, 0.023 +19680802, -0.56, 0.02, 0.05, 0.023 +19680805, 0.39, 0.38, -0.34, 0.023 +19680806, 0.45, 0.37, -0.10, 0.023 +19680808, -0.25, 0.05, 0.47, 0.023 +19680809, 0.03, -0.10, 0.19, 0.023 +19680812, 0.99, 0.34, -0.48, 0.023 +19680813, 0.45, 0.04, -0.02, 0.023 +19680815, -0.39, 0.48, 0.30, 0.023 +19680816, 0.59, 0.02, 0.03, 0.023 +19680819, 0.34, 0.34, 0.09, 0.023 +19680820, 0.00, 0.21, -0.13, 0.023 +19680822, -0.32, -0.05, -0.11, 0.023 +19680823, 0.03, 0.34, 0.32, 0.023 +19680826, 0.23, -0.21, 0.28, 0.023 +19680827, -0.19, 0.05, 0.18, 0.023 +19680829, -0.12, -0.15, 0.13, 0.023 +19680830, 0.21, 0.09, 0.18, 0.023 +19680903, 0.37, -0.28, 0.27, 0.025 +19680904, 0.61, -0.07, 0.13, 0.025 +19680905, 0.70, -0.02, -0.27, 0.025 +19680906, 0.42, 0.20, -0.45, 0.025 +19680909, 0.13, 0.43, 0.04, 0.025 +19680910, -0.50, 0.08, 0.44, 0.025 +19680912, -0.20, 0.39, 0.08, 0.025 +19680913, 0.37, 0.36, -0.47, 0.025 +19680916, 0.38, 0.05, 0.05, 0.025 +19680917, 0.24, -0.01, -0.08, 0.025 +19680919, 0.16, 0.22, -0.12, 0.025 +19680920, 0.11, -0.02, 0.57, 0.025 +19680923, 0.56, -0.05, -0.21, 0.025 +19680924, 0.37, 0.38, -0.43, 0.025 +19680926, -0.19, 0.13, 0.19, 0.025 +19680927, 0.08, 0.56, 0.25, 0.025 +19680930, 0.42, 0.23, 0.28, 0.025 +19681001, 0.16, 0.37, 0.26, 0.024 +19681003, 0.34, -0.09, 0.47, 0.024 +19681004, 0.26, -0.42, 0.17, 0.024 +19681007, -0.03, -0.17, -0.07, 0.024 +19681008, -0.05, -0.34, 0.19, 0.024 +19681010, -0.42, 0.21, -0.09, 0.024 +19681011, 0.00, 0.38, 0.05, 0.024 +19681014, 0.16, 0.04, 0.05, 0.024 +19681015, 0.19, 0.14, 0.22, 0.024 +19681017, 0.49, -0.05, -0.16, 0.024 +19681018, 0.69, -0.30, -0.04, 0.024 +19681021, 0.14, -0.09, 0.28, 0.024 +19681022, -0.34, 0.12, 0.21, 0.024 +19681024, -0.63, 0.42, 0.32, 0.024 +19681025, 0.31, 0.00, 0.35, 0.024 +19681028, -0.33, -0.12, 0.13, 0.024 +19681029, -0.57, -0.30, 0.12, 0.024 +19681031, 0.05, -0.25, 0.38, 0.024 +19681101, -0.37, -0.14, 0.04, 0.025 +19681104, 0.01, -0.19, -0.42, 0.025 +19681106, 0.18, 0.06, 0.19, 0.025 +19681107, 0.27, -0.22, -0.42, 0.025 +19681108, 0.52, 0.30, 0.03, 0.025 +19681112, 0.74, 0.21, -0.27, 0.025 +19681113, 0.56, 0.32, -0.35, 0.025 +19681114, 0.10, 0.47, -0.18, 0.025 +19681115, 0.56, 0.16, 0.14, 0.025 +19681118, 0.16, -0.02, 0.23, 0.025 +19681119, 0.29, 0.14, 0.11, 0.025 +19681121, -0.05, 0.33, 0.22, 0.025 +19681122, 0.45, 0.28, -0.01, 0.025 +19681125, 0.26, 0.21, -0.05, 0.025 +19681126, 0.66, -0.12, 0.04, 0.025 +19681127, 0.42, 0.35, -0.28, 0.025 +19681129, 0.56, 0.10, 0.12, 0.025 +19681202, -0.19, 0.46, -0.40, 0.024 +19681203, -0.10, 0.16, -0.16, 0.024 +19681205, -0.28, 0.36, 0.15, 0.024 +19681206, 0.26, 0.27, -0.01, 0.024 +19681209, -0.18, 0.65, -0.18, 0.024 +19681210, -0.19, 0.27, 0.09, 0.024 +19681212, -0.05, 0.23, 0.32, 0.024 +19681213, 0.28, 0.17, 0.25, 0.024 +19681216, -0.40, 0.07, 0.06, 0.024 +19681217, -0.46, -0.11, -0.23, 0.024 +19681219, 0.23, -0.08, -0.22, 0.024 +19681220, -0.49, 0.59, -0.04, 0.024 +19681223, -1.05, 0.19, 0.25, 0.024 +19681224, -0.13, 0.13, -0.11, 0.024 +19681226, 0.12, 0.06, 0.13, 0.024 +19681227, -0.39, 0.19, 0.40, 0.024 +19681230, -1.04, -0.49, 0.01, 0.024 +19681231, 0.08, 0.39, -0.25, 0.024 +19690102, 0.08, 0.30, -0.04, 0.024 +19690103, -0.01, -0.05, -0.02, 0.024 +19690106, -1.51, -0.30, 0.45, 0.024 +19690107, -1.37, -1.00, 0.01, 0.024 +19690108, -0.51, -0.37, -0.07, 0.024 +19690109, 0.40, 0.11, 0.02, 0.024 +19690110, -0.30, -0.07, 0.45, 0.024 +19690113, -0.73, -0.94, 0.47, 0.024 +19690114, 0.73, 0.01, -0.23, 0.024 +19690115, 0.60, 0.54, -0.03, 0.024 +19690116, 0.55, 0.30, 0.06, 0.024 +19690117, -0.10, 0.34, -0.09, 0.024 +19690120, -0.20, 0.43, 0.11, 0.024 +19690121, -0.13, 0.09, -0.02, 0.024 +19690122, 0.39, 0.30, -0.21, 0.024 +19690123, 0.52, 0.43, -0.05, 0.024 +19690124, -0.06, 0.07, 0.01, 0.024 +19690127, -0.01, -0.05, 0.19, 0.024 +19690128, 0.02, -0.05, 0.34, 0.024 +19690129, 0.07, -0.28, 0.64, 0.024 +19690130, -0.03, -0.21, 0.06, 0.024 +19690131, 0.37, -0.38, -0.35, 0.024 +19690203, -0.09, -0.07, 0.43, 0.026 +19690204, 0.00, -0.05, 0.29, 0.026 +19690205, 0.14, -0.38, 0.16, 0.026 +19690206, 0.32, -0.35, -0.15, 0.026 +19690207, 0.09, 0.08, -0.16, 0.026 +19690211, 0.08, 0.12, -0.11, 0.026 +19690212, -0.05, 0.01, -0.39, 0.026 +19690213, 0.03, -0.15, -0.22, 0.026 +19690214, -0.11, 0.00, 0.01, 0.026 +19690217, -1.28, -0.54, 0.63, 0.026 +19690218, -1.20, -0.59, -0.04, 0.026 +19690219, -0.81, -0.21, 0.30, 0.026 +19690220, -0.96, -0.42, 0.06, 0.026 +19690224, -1.27, -0.73, 0.32, 0.026 +19690225, -0.75, -0.46, -0.19, 0.026 +19690226, 0.41, -0.13, -0.33, 0.026 +19690227, -0.47, -0.26, 0.23, 0.026 +19690228, -0.05, -0.08, 0.06, 0.026 +19690303, 0.17, -0.34, -0.18, 0.023 +19690304, 0.99, 0.07, 0.14, 0.023 +19690305, 0.33, 0.09, -0.24, 0.023 +19690306, -1.18, -0.29, 0.63, 0.023 +19690307, -0.18, -0.76, 0.40, 0.023 +19690310, 0.35, 0.13, -0.44, 0.023 +19690311, 0.40, 0.19, 0.09, 0.023 +19690312, -0.29, 0.00, 0.22, 0.023 +19690313, -0.71, -0.22, 0.28, 0.023 +19690314, -0.51, -0.34, 0.21, 0.023 +19690317, 0.21, -0.26, -0.59, 0.023 +19690318, 0.29, 0.37, -0.11, 0.023 +19690319, 0.71, 0.06, -0.25, 0.023 +19690320, 0.62, 0.33, -0.12, 0.023 +19690321, -0.20, 0.32, 0.23, 0.023 +19690324, -0.16, 0.11, -0.01, 0.023 +19690325, 0.12, 0.01, -0.24, 0.023 +19690326, 0.64, -0.19, 0.07, 0.023 +19690327, 0.68, 0.12, -0.15, 0.023 +19690328, 0.39, 0.36, -0.30, 0.023 +19690401, -0.14, 0.07, 0.44, 0.025 +19690402, -0.71, -0.25, 0.31, 0.025 +19690403, -0.09, -0.04, 0.16, 0.025 +19690407, -0.88, -0.24, -0.17, 0.025 +19690408, 0.21, -0.10, 0.37, 0.025 +19690409, 0.79, -0.10, -0.43, 0.025 +19690410, 0.45, -0.07, 0.10, 0.025 +19690411, 0.09, 0.08, 0.08, 0.025 +19690414, -0.14, -0.18, 0.03, 0.025 +19690415, -0.10, -0.13, -0.17, 0.025 +19690416, -0.90, 0.04, 0.36, 0.025 +19690417, 0.11, -0.10, 0.08, 0.025 +19690418, 0.38, -0.33, 0.22, 0.025 +19690421, -0.77, -0.27, 0.23, 0.025 +19690422, 0.16, -0.12, -0.31, 0.025 +19690423, 0.10, 0.28, 0.00, 0.025 +19690424, 0.42, -0.04, -0.04, 0.025 +19690425, 0.45, 0.11, -0.08, 0.025 +19690428, 0.34, -0.06, -0.14, 0.025 +19690429, 0.83, 0.23, -0.50, 0.025 +19690430, 0.86, 0.43, -0.50, 0.025 +19690501, -0.10, 0.35, -0.02, 0.023 +19690502, 0.46, -0.04, 0.09, 0.023 +19690505, 0.45, 0.30, -0.27, 0.023 +19690506, 0.45, -0.09, -0.13, 0.023 +19690507, -0.21, -0.17, 0.33, 0.023 +19690508, 0.34, -0.15, -0.21, 0.023 +19690509, 0.09, -0.15, 0.18, 0.023 +19690512, -0.19, -0.18, 0.07, 0.023 +19690513, 0.40, 0.02, -0.18, 0.023 +19690514, 0.68, -0.39, 0.09, 0.023 +19690515, -0.30, 0.06, 0.21, 0.023 +19690516, 0.02, -0.18, -0.17, 0.023 +19690519, -0.87, 0.22, 0.26, 0.023 +19690520, -0.84, 0.13, 0.22, 0.023 +19690521, 0.42, 0.04, -0.17, 0.023 +19690522, 0.19, -0.20, 0.31, 0.023 +19690523, -0.02, -0.06, -0.10, 0.023 +19690526, -0.20, 0.03, -0.05, 0.023 +19690527, -0.79, -0.05, 0.19, 0.023 +19690528, -0.26, 0.18, -0.32, 0.023 +19690529, 0.23, 0.08, 0.11, 0.023 +19690602, -0.54, 0.02, -0.03, 0.024 +19690603, -0.34, -0.30, 0.11, 0.024 +19690604, -0.05, -0.04, -0.05, 0.024 +19690605, 0.08, -0.12, -0.16, 0.024 +19690606, -0.69, -0.11, -0.19, 0.024 +19690609, -0.98, -0.11, -0.26, 0.024 +19690610, -0.79, -0.04, -0.06, 0.024 +19690611, -1.00, -0.34, 0.22, 0.024 +19690612, -1.42, -0.55, 0.29, 0.024 +19690613, 0.31, -0.25, -0.15, 0.024 +19690616, -0.40, -0.44, 0.06, 0.024 +19690617, -0.52, -0.67, -0.23, 0.024 +19690618, -0.22, -0.14, 0.16, 0.024 +19690619, -0.87, -0.79, 0.09, 0.024 +19690620, -0.74, -0.68, 0.53, 0.024 +19690623, -0.65, -0.94, -0.22, 0.024 +19690624, 1.09, -0.08, -0.53, 0.024 +19690625, -0.41, -0.24, 0.26, 0.024 +19690626, 0.17, -0.32, -0.62, 0.024 +19690627, 0.07, 0.02, -0.14, 0.024 +19690630, 0.46, 0.25, -0.17, 0.024 +19690701, 0.46, 0.35, -0.59, 0.025 +19690702, 0.86, 0.37, -0.46, 0.025 +19690703, 0.74, 0.41, -0.35, 0.025 +19690707, -0.68, -0.04, 0.55, 0.025 +19690708, -1.38, 0.04, 0.46, 0.025 +19690709, -0.80, -0.22, 0.10, 0.025 +19690710, -1.61, -0.41, 0.44, 0.025 +19690711, 0.29, -0.60, 0.05, 0.025 +19690714, -1.37, -0.25, 0.69, 0.025 +19690715, -0.43, -0.53, 0.13, 0.025 +19690716, 1.07, 0.08, -0.60, 0.025 +19690717, 0.53, -0.20, -0.07, 0.025 +19690718, -0.78, 0.23, 0.34, 0.025 +19690722, -1.57, 0.11, 0.63, 0.025 +19690723, -0.53, -0.67, -0.42, 0.025 +19690724, -0.42, -0.17, 0.38, 0.025 +19690725, -1.03, -0.29, 0.61, 0.025 +19690728, -2.26, -1.59, 1.47, 0.025 +19690729, -0.93, -0.64, 0.41, 0.025 +19690730, 0.52, 0.13, -1.09, 0.025 +19690731, 2.22, 0.50, -1.26, 0.025 +19690801, 1.97, 0.64, -0.43, 0.024 +19690804, -0.53, -0.02, 0.31, 0.024 +19690805, 0.42, -0.37, -0.41, 0.024 +19690806, 0.65, 0.24, -0.57, 0.024 +19690807, 0.09, -0.05, 0.03, 0.024 +19690808, -0.03, -0.08, 0.19, 0.024 +19690811, -0.59, 0.07, 0.12, 0.024 +19690812, -0.82, -0.19, 0.27, 0.024 +19690813, 0.03, -0.30, -0.51, 0.024 +19690814, 0.75, 0.37, -0.99, 0.024 +19690815, 0.81, -0.19, -0.38, 0.024 +19690818, 0.72, 0.40, -0.60, 0.024 +19690819, 0.54, 0.34, -0.43, 0.024 +19690820, -0.02, -0.06, 0.18, 0.024 +19690821, 0.25, 0.04, -0.27, 0.024 +19690822, 0.65, -0.03, -0.25, 0.024 +19690825, -0.93, 0.20, 0.62, 0.024 +19690826, -0.74, -0.14, 0.15, 0.024 +19690827, 0.27, 0.11, -0.39, 0.024 +19690828, 0.41, -0.21, -0.38, 0.024 +19690829, 0.74, -0.04, 0.00, 0.024 +19690902, -0.11, -0.08, 0.42, 0.030 +19690903, -0.71, -0.17, 0.41, 0.030 +19690904, -0.87, 0.01, -0.15, 0.030 +19690905, -0.65, -0.05, 0.01, 0.030 +19690908, -1.07, -0.15, 0.38, 0.030 +19690909, 0.74, -0.24, -0.46, 0.030 +19690910, 1.64, -0.10, -0.77, 0.030 +19690911, -0.70, 0.50, 0.13, 0.030 +19690912, 0.05, -0.13, -0.13, 0.030 +19690915, 0.62, 0.32, -0.67, 0.030 +19690916, 0.12, 0.19, -0.66, 0.030 +19690917, -0.31, 0.11, -0.44, 0.030 +19690918, 0.28, 0.19, -0.55, 0.030 +19690919, 0.35, 0.40, -0.94, 0.030 +19690922, 0.41, -0.09, -0.67, 0.030 +19690923, -0.01, 0.18, 0.10, 0.030 +19690924, -0.19, -0.11, 0.13, 0.030 +19690925, -0.75, 0.15, 0.66, 0.030 +19690926, -0.70, 0.15, 0.18, 0.030 +19690929, -0.73, 0.12, 0.09, 0.030 +19690930, -0.32, 0.08, -0.38, 0.030 +19691001, -0.63, 0.12, 0.23, 0.026 +19691002, 0.86, -0.08, -0.76, 0.026 +19691003, -0.08, -0.17, 0.18, 0.026 +19691006, 0.17, -0.01, -0.49, 0.026 +19691007, -0.23, 0.05, 0.06, 0.026 +19691008, -0.53, -0.12, 0.11, 0.026 +19691009, 0.33, -0.19, -0.49, 0.026 +19691010, 0.65, 0.26, -0.65, 0.026 +19691013, 1.25, 0.84, -0.72, 0.026 +19691014, 1.28, 0.10, 0.08, 0.026 +19691015, 0.04, 0.55, 0.20, 0.026 +19691016, 0.69, 0.28, -0.08, 0.026 +19691017, -0.09, 0.47, -0.12, 0.026 +19691020, 0.30, 0.36, 0.02, 0.026 +19691021, 0.79, 0.40, -0.22, 0.026 +19691022, 0.61, 0.08, 0.21, 0.026 +19691023, -0.33, 0.05, 0.08, 0.026 +19691024, 0.69, 0.05, -0.88, 0.026 +19691027, -0.10, 0.42, -0.12, 0.026 +19691028, -0.31, -0.14, 0.17, 0.026 +19691029, -0.90, 0.01, 0.52, 0.026 +19691030, 0.17, 0.17, -0.28, 0.026 +19691031, 0.34, 0.06, -0.03, 0.026 +19691103, -0.07, -0.23, 0.25, 0.027 +19691104, 0.07, 0.20, -0.49, 0.027 +19691105, 0.46, -0.11, -0.39, 0.027 +19691106, 0.14, -0.14, -0.18, 0.027 +19691107, 0.65, -0.26, -0.06, 0.027 +19691110, 0.06, -0.17, 0.05, 0.027 +19691111, -0.37, -0.04, 0.29, 0.027 +19691112, -0.17, 0.11, -0.16, 0.027 +19691113, -0.59, -0.38, 0.35, 0.027 +19691114, -0.43, -0.12, 0.13, 0.027 +19691117, -0.79, -0.28, 0.15, 0.027 +19691118, -0.09, -0.44, -0.07, 0.027 +19691119, -0.55, -0.30, 0.55, 0.027 +19691120, -1.12, -0.52, 0.37, 0.027 +19691121, -0.69, -0.19, 0.35, 0.027 +19691124, -1.08, -0.35, -0.10, 0.027 +19691125, -0.25, 0.16, -0.54, 0.027 +19691126, 0.36, 0.21, -0.95, 0.027 +19691128, 0.64, 0.26, -0.81, 0.027 +19691201, -0.76, -0.40, 0.23, 0.029 +19691202, -0.68, -0.07, -0.25, 0.029 +19691203, -1.23, -0.58, -0.02, 0.029 +19691204, 0.40, -0.03, -0.95, 0.029 +19691205, -0.38, -0.48, 0.44, 0.029 +19691208, -1.27, -0.42, 0.20, 0.029 +19691209, -0.20, -0.45, -0.48, 0.029 +19691210, -0.07, -0.17, -0.73, 0.029 +19691211, 0.07, -0.10, -0.24, 0.029 +19691212, 0.30, 0.04, -0.28, 0.029 +19691215, -0.29, 0.10, -0.13, 0.029 +19691216, -1.00, -0.47, -0.06, 0.029 +19691217, -0.54, -0.31, -0.07, 0.029 +19691218, 1.59, -0.19, -0.79, 0.029 +19691219, 0.82, 0.13, 0.01, 0.029 +19691222, -1.00, -0.32, 0.35, 0.029 +19691223, -0.53, -0.60, 0.29, 0.029 +19691224, 1.17, 0.49, -0.15, 0.029 +19691226, 0.81, 0.10, -0.04, 0.029 +19691229, -0.75, -0.27, -0.04, 0.029 +19691230, 0.39, -0.23, -0.16, 0.029 +19691231, 0.55, 0.49, -0.26, 0.029 +19700102, 1.18, 1.32, 0.97, 0.029 +19700105, 0.59, 0.67, 0.76, 0.029 +19700106, -0.74, 0.10, 0.28, 0.029 +19700107, -0.15, 0.38, -0.35, 0.029 +19700108, 0.04, 0.17, -0.18, 0.029 +19700109, -0.31, 0.19, 0.08, 0.029 +19700112, -0.80, -0.10, -0.04, 0.029 +19700113, 0.05, -0.17, -0.50, 0.029 +19700114, -0.25, -0.13, -0.28, 0.029 +19700115, -0.04, -0.09, -0.64, 0.029 +19700116, -0.82, -0.10, 0.70, 0.029 +19700119, -1.31, 0.42, 1.06, 0.029 +19700120, 0.17, 0.30, -0.39, 0.029 +19700121, 0.06, 0.06, 0.15, 0.029 +19700122, 0.11, 0.15, -0.11, 0.029 +19700123, -1.06, -0.14, 0.42, 0.029 +19700126, -1.13, -0.30, 0.42, 0.029 +19700127, -0.67, 0.21, -0.32, 0.029 +19700128, -0.99, 0.41, -0.14, 0.029 +19700129, -1.33, -0.09, 0.44, 0.029 +19700130, -0.88, -0.20, 0.93, 0.029 +19700202, 0.82, -0.64, -0.13, 0.032 +19700203, 1.26, -0.16, -0.30, 0.032 +19700204, -0.74, -0.31, 0.73, 0.032 +19700205, -0.41, -0.17, -0.06, 0.032 +19700206, 0.59, 0.17, -0.32, 0.032 +19700209, 0.82, -0.07, -0.22, 0.032 +19700210, -0.94, 0.35, 0.10, 0.032 +19700211, 0.90, -0.16, -0.83, 0.032 +19700212, -0.21, 0.27, 0.28, 0.032 +19700213, -0.18, -0.02, 0.63, 0.032 +19700216, -0.07, 0.20, 0.38, 0.032 +19700217, -0.20, -0.07, 0.19, 0.032 +19700218, 1.19, -0.51, -0.05, 0.032 +19700219, 0.28, -0.31, 0.53, 0.032 +19700220, 0.32, -0.62, 0.87, 0.032 +19700224, -0.03, -0.10, 0.47, 0.032 +19700225, 1.52, -0.18, 0.22, 0.032 +19700226, -0.53, 0.08, 0.64, 0.032 +19700227, 0.69, 0.11, 0.41, 0.032 +19700302, 0.13, -0.16, 0.70, 0.027 +19700303, 0.58, -0.43, 0.61, 0.027 +19700304, -0.25, 0.15, 0.61, 0.027 +19700305, -0.02, 0.17, 0.37, 0.027 +19700306, -0.69, 0.23, 0.26, 0.027 +19700309, -1.08, 0.00, 0.79, 0.027 +19700310, 0.14, -0.26, -0.33, 0.027 +19700311, -0.14, -0.12, 0.46, 0.027 +19700312, -0.51, -0.22, 0.39, 0.027 +19700313, -0.63, -0.29, 0.73, 0.027 +19700316, -1.15, -0.13, 0.36, 0.027 +19700317, 0.39, -0.15, -0.46, 0.027 +19700318, 0.26, -0.13, 0.14, 0.027 +19700319, -0.29, -0.32, 0.37, 0.027 +19700320, -0.52, -0.49, 0.66, 0.027 +19700323, -0.14, -0.18, -0.07, 0.027 +19700324, 1.01, -0.51, -0.44, 0.027 +19700325, 2.14, 0.12, -0.52, 0.027 +19700326, 0.10, 0.30, -0.10, 0.027 +19700330, -0.28, 0.10, -0.30, 0.027 +19700331, -0.05, -0.02, 0.11, 0.027 +19700401, 0.45, -0.07, 0.03, 0.023 +19700402, -0.39, 0.12, 0.11, 0.023 +19700403, -0.49, 0.01, 0.98, 0.023 +19700406, -0.83, -0.28, 1.16, 0.023 +19700407, -0.36, -0.12, 0.59, 0.023 +19700408, -0.19, -0.25, 0.09, 0.023 +19700409, -0.10, -0.65, 0.43, 0.023 +19700410, -0.44, -0.41, -0.29, 0.023 +19700413, -0.90, -0.87, 1.05, 0.023 +19700414, -0.86, -0.52, 0.34, 0.023 +19700415, -0.31, -0.20, 0.30, 0.023 +19700416, -1.14, -0.29, 0.70, 0.023 +19700417, -0.33, -0.25, 0.10, 0.023 +19700420, 0.22, 0.01, -0.55, 0.023 +19700421, -0.57, -0.31, 0.68, 0.023 +19700422, -1.48, -0.60, 1.06, 0.023 +19700423, -1.65, -0.64, 0.52, 0.023 +19700424, -0.51, -0.52, 0.18, 0.023 +19700427, -1.84, -0.87, 0.91, 0.023 +19700428, -1.47, -0.61, 0.60, 0.023 +19700429, 2.11, 0.16, -2.30, 0.023 +19700430, -0.40, 0.18, 0.63, 0.023 +19700501, -0.14, -0.02, 0.17, 0.025 +19700504, -2.60, -0.42, 1.79, 0.025 +19700505, -1.13, -0.53, 0.57, 0.025 +19700506, 1.20, 0.38, -0.95, 0.025 +19700507, 0.59, 0.03, -0.08, 0.025 +19700508, -0.52, -0.03, 0.29, 0.025 +19700511, -1.11, -0.02, 0.64, 0.025 +19700512, -0.93, -0.21, 0.54, 0.025 +19700513, -1.76, -0.52, 1.01, 0.025 +19700514, -1.53, -0.87, 0.63, 0.025 +19700515, 1.83, -0.33, -0.95, 0.025 +19700518, 0.13, -0.11, 0.18, 0.025 +19700519, -2.01, -0.15, 1.33, 0.025 +19700520, -2.66, -0.52, 1.69, 0.025 +19700521, -2.01, -0.95, 1.03, 0.025 +19700522, -0.15, -0.68, -0.65, 0.025 +19700525, -3.21, -1.64, 1.75, 0.025 +19700526, -1.32, -0.53, 0.58, 0.025 +19700527, 5.30, 1.35, -3.73, 0.025 +19700528, 2.63, 0.99, -1.20, 0.025 +19700529, 2.70, 0.12, -1.33, 0.025 +19700601, 1.83, 1.06, -1.72, 0.026 +19700602, 0.12, 0.55, -0.36, 0.026 +19700603, 1.11, 0.88, -0.92, 0.026 +19700604, -1.58, -0.26, 1.37, 0.026 +19700605, -1.70, -0.34, 0.34, 0.026 +19700608, 0.10, 0.01, 0.13, 0.026 +19700609, 0.01, -0.01, -0.45, 0.026 +19700610, -1.03, -0.01, 0.24, 0.026 +19700611, -1.42, -0.23, 1.03, 0.026 +19700612, -0.42, -0.31, -0.26, 0.026 +19700615, 0.30, 0.13, -0.54, 0.026 +19700616, 2.28, -0.47, -1.26, 0.026 +19700617, -0.27, -0.13, 0.58, 0.026 +19700618, 0.56, -0.33, -0.69, 0.026 +19700619, 0.66, -0.20, -0.03, 0.026 +19700622, -0.67, -0.12, 0.15, 0.026 +19700623, -2.49, -0.01, 1.20, 0.026 +19700624, -1.15, -0.81, 0.58, 0.026 +19700625, -0.05, -0.58, -0.03, 0.026 +19700626, -0.82, -0.18, 0.46, 0.026 +19700629, -0.87, -0.35, 0.30, 0.026 +19700630, -0.30, -0.57, 0.56, 0.026 +19700701, 0.33, -0.55, -0.26, 0.024 +19700702, -0.26, -0.48, 0.54, 0.024 +19700706, -1.58, -0.28, 0.81, 0.024 +19700707, -0.87, -0.33, 0.15, 0.024 +19700708, 2.38, -0.67, -1.29, 0.024 +19700709, 1.61, 0.18, -0.02, 0.024 +19700710, 0.71, 0.05, 0.14, 0.024 +19700713, -0.07, 0.17, 0.74, 0.024 +19700714, -0.15, -0.15, -0.25, 0.024 +19700715, 0.98, -0.30, -0.25, 0.024 +19700716, 1.33, -0.31, 0.12, 0.024 +19700717, 1.67, -0.10, 0.12, 0.024 +19700720, 0.13, 0.25, 0.44, 0.024 +19700721, -1.01, 0.00, 0.30, 0.024 +19700722, 0.12, 0.53, 0.10, 0.024 +19700723, 1.22, -0.40, -0.20, 0.024 +19700724, -0.23, 0.59, -0.17, 0.024 +19700727, -0.19, 0.34, 0.24, 0.024 +19700728, 0.26, 0.21, -0.37, 0.024 +19700729, 0.37, 0.48, -0.31, 0.024 +19700730, 0.06, 0.12, -0.20, 0.024 +19700731, -0.06, 0.13, 0.46, 0.024 +19700803, -1.22, 0.21, 0.47, 0.025 +19700804, 0.17, -0.28, -0.12, 0.025 +19700805, -0.08, -0.10, 0.19, 0.025 +19700806, -0.18, -0.40, 0.47, 0.025 +19700807, 0.26, -0.19, 0.42, 0.025 +19700810, -1.44, 0.01, 0.42, 0.025 +19700811, -0.57, -0.21, 0.32, 0.025 +19700812, -0.49, 0.12, 0.66, 0.025 +19700813, -0.90, 0.08, 0.76, 0.025 +19700814, 0.41, -0.32, 0.14, 0.025 +19700817, 0.17, -0.25, -0.52, 0.025 +19700818, 1.06, -0.52, -0.19, 0.025 +19700819, 0.90, -0.55, 0.39, 0.025 +19700820, 0.75, -0.77, 0.03, 0.025 +19700821, 2.09, -0.17, -0.16, 0.025 +19700824, 2.34, 0.65, -1.43, 0.025 +19700825, 0.38, 0.98, -0.83, 0.025 +19700826, 0.31, 0.96, -0.09, 0.025 +19700827, -0.12, 0.80, 0.01, 0.025 +19700828, 0.99, 0.70, -0.25, 0.025 +19700831, -0.35, 0.71, 0.27, 0.025 +19700901, -0.64, 0.04, 0.29, 0.025 +19700902, -0.02, 0.37, -0.40, 0.025 +19700903, 1.46, 0.21, -0.93, 0.025 +19700904, 1.07, 0.68, -0.01, 0.025 +19700908, 0.36, 0.68, -0.66, 0.025 +19700909, -0.30, 0.22, -0.16, 0.025 +19700910, -0.58, 0.33, 0.22, 0.025 +19700911, 0.35, 1.00, -0.32, 0.025 +19700914, -0.51, 0.10, 0.19, 0.025 +19700915, -0.98, -0.30, -0.12, 0.025 +19700916, 0.57, 0.43, -0.67, 0.025 +19700917, 0.80, 0.72, -0.72, 0.025 +19700918, 0.44, 0.59, 0.09, 0.025 +19700921, -0.84, -0.12, 0.32, 0.025 +19700922, -0.36, -0.08, -0.02, 0.025 +19700923, 1.35, 0.22, -0.63, 0.025 +19700924, 1.43, 1.39, -1.38, 0.025 +19700925, 0.17, 0.13, -0.01, 0.025 +19700928, -0.06, 0.69, -0.54, 0.025 +19700929, 0.58, 0.76, -0.04, 0.025 +19700930, -0.12, -0.02, 0.35, 0.025 +19701001, 0.12, -0.26, -0.11, 0.021 +19701002, 1.05, 0.40, -0.30, 0.021 +19701005, 1.44, -0.17, 0.01, 0.021 +19701006, 0.23, -0.86, 0.92, 0.021 +19701007, -0.03, 0.19, 0.07, 0.021 +19701008, -1.15, -0.38, 0.47, 0.021 +19701009, -0.97, 0.31, 0.09, 0.021 +19701012, -0.98, 0.00, 0.37, 0.021 +19701013, -0.26, 0.04, -0.35, 0.021 +19701014, 0.13, -0.21, -0.05, 0.021 +19701015, 0.41, -0.47, 0.25, 0.021 +19701016, -0.60, -0.63, 0.58, 0.021 +19701019, -1.41, -0.46, 0.63, 0.021 +19701020, 0.57, -0.36, -1.06, 0.021 +19701021, -0.08, -0.27, 0.13, 0.021 +19701022, -0.43, -0.29, 0.13, 0.021 +19701023, 0.49, 0.15, -0.52, 0.021 +19701026, -0.53, 0.14, -0.09, 0.021 +19701027, -0.30, -0.30, -0.14, 0.021 +19701028, 0.32, -0.34, -0.88, 0.021 +19701029, -0.18, -0.41, 0.26, 0.021 +19701030, -0.07, -0.27, -0.09, 0.021 +19701102, 0.32, -0.07, -0.18, 0.023 +19701103, 0.85, 0.25, 0.33, 0.023 +19701104, 0.18, -0.28, 0.20, 0.023 +19701105, -0.20, -0.18, 0.06, 0.023 +19701106, 0.09, -0.32, 0.24, 0.023 +19701109, 0.50, -0.24, -0.24, 0.023 +19701110, 0.15, -0.01, -0.08, 0.023 +19701111, 0.27, -0.07, 0.36, 0.023 +19701112, -1.11, -0.68, 0.42, 0.023 +19701113, -0.96, -0.27, 0.28, 0.023 +19701116, -0.17, -0.39, -0.21, 0.023 +19701117, 0.05, -0.33, 0.25, 0.023 +19701118, -0.77, -0.70, 0.32, 0.023 +19701119, 0.09, -0.46, -0.18, 0.023 +19701120, 0.98, -0.05, -0.33, 0.023 +19701123, 0.63, -0.34, 0.09, 0.023 +19701124, 0.58, -0.36, 0.26, 0.023 +19701125, 0.42, -0.04, 0.35, 0.023 +19701127, 0.98, -0.17, -0.36, 0.023 +19701130, 1.67, 0.77, -0.10, 0.023 +19701201, 0.29, -0.07, 0.19, 0.019 +19701202, 1.22, 0.10, -0.43, 0.019 +19701203, 0.45, 0.06, 0.49, 0.019 +19701204, 0.57, 0.10, 0.21, 0.019 +19701207, 0.58, 0.18, -0.25, 0.019 +19701208, -0.52, -0.16, 0.05, 0.019 +19701209, 0.01, -0.30, -0.03, 0.019 +19701210, 0.34, -0.10, -0.07, 0.019 +19701211, 0.37, 0.17, -0.15, 0.019 +19701214, -0.57, -0.46, 0.35, 0.019 +19701215, -0.18, -0.24, 0.13, 0.019 +19701216, 0.12, 0.22, 0.02, 0.019 +19701217, 0.31, 0.14, 0.02, 0.019 +19701218, 0.21, 0.38, -0.04, 0.019 +19701221, -0.29, 0.12, 0.04, 0.019 +19701222, 0.12, 0.18, 0.09, 0.019 +19701223, 0.15, 0.38, 0.09, 0.019 +19701224, 0.69, 0.96, -0.15, 0.019 +19701228, 0.53, 0.22, 0.05, 0.019 +19701229, 1.11, 0.49, 0.25, 0.019 +19701230, 0.18, 0.12, 0.08, 0.019 +19701231, -0.10, 0.26, -0.09, 0.019 +19710104, -0.99, 0.54, 0.69, 0.019 +19710105, 0.82, 0.66, 0.02, 0.019 +19710106, 0.74, 0.88, 0.49, 0.019 +19710107, 0.05, 0.09, 0.54, 0.019 +19710108, -0.13, 0.06, 0.41, 0.019 +19710111, -0.11, 0.50, 0.15, 0.019 +19710112, 0.98, 0.79, 0.38, 0.019 +19710113, -0.09, 0.38, -0.21, 0.019 +19710114, 0.29, 0.02, 0.15, 0.019 +19710115, 0.28, 0.41, 0.26, 0.019 +19710118, 0.35, 0.25, 0.25, 0.019 +19710119, 0.29, -0.14, -0.04, 0.019 +19710120, 0.08, 0.35, -0.05, 0.019 +19710121, 0.47, 0.48, -0.57, 0.019 +19710122, 0.67, -0.01, -0.30, 0.019 +19710125, 0.47, 0.46, -0.54, 0.019 +19710126, 0.28, 0.24, -0.66, 0.019 +19710127, -0.74, -0.02, 0.00, 0.019 +19710128, 0.37, 0.65, 0.21, 0.019 +19710129, 0.66, 0.23, 0.13, 0.019 +19710201, 0.67, 0.69, -0.20, 0.017 +19710202, 0.06, 0.07, -0.04, 0.017 +19710203, 0.30, 0.72, -0.38, 0.017 +19710204, 0.14, 0.14, -0.26, 0.017 +19710205, 0.45, 0.18, -0.03, 0.017 +19710208, 0.60, 0.86, 0.04, 0.017 +19710209, -0.04, -0.27, -0.10, 0.017 +19710210, -0.11, -0.20, -0.01, 0.017 +19710211, 0.52, 0.27, 0.48, 0.017 +19710212, 0.59, 0.58, -0.05, 0.017 +19710216, 0.24, 0.01, -0.10, 0.017 +19710217, -0.48, -0.11, 0.31, 0.017 +19710218, -0.68, -0.27, 0.21, 0.017 +19710219, -0.93, -0.52, 0.18, 0.017 +19710222, -1.06, -0.84, -0.30, 0.017 +19710223, 0.50, 0.51, -0.40, 0.017 +19710224, 0.74, 0.56, -0.30, 0.017 +19710225, 0.16, -0.25, 0.10, 0.017 +19710226, -0.25, -0.25, -0.43, 0.017 +19710301, 0.30, 0.23, -0.26, 0.013 +19710302, 0.05, 0.32, 0.16, 0.013 +19710303, 0.01, 0.32, -0.19, 0.013 +19710304, 1.05, 0.35, -0.43, 0.013 +19710305, 1.06, 0.24, -0.25, 0.013 +19710308, 0.48, 0.50, -0.38, 0.013 +19710309, 0.14, 0.46, -0.45, 0.013 +19710310, -0.12, 0.18, -0.42, 0.013 +19710311, -0.02, -0.42, 0.36, 0.013 +19710312, 0.16, -0.14, -0.12, 0.013 +19710315, 1.14, 0.19, -0.42, 0.013 +19710316, 0.46, -0.17, -0.16, 0.013 +19710317, 0.01, -0.03, -0.46, 0.013 +19710318, 0.11, 0.43, -0.06, 0.013 +19710319, -0.18, 0.02, -0.04, 0.013 +19710322, -0.40, -0.22, 0.11, 0.013 +19710323, -0.33, 0.14, -0.09, 0.013 +19710324, -0.61, -0.01, -0.02, 0.013 +19710325, 0.02, -0.06, -0.04, 0.013 +19710326, 0.38, 0.19, -0.21, 0.013 +19710329, 0.08, -0.26, -0.19, 0.013 +19710330, 0.21, -0.06, -0.10, 0.013 +19710331, 0.09, 0.22, -0.16, 0.013 +19710401, 0.06, -0.01, -0.23, 0.013 +19710402, 0.20, 0.06, -0.31, 0.013 +19710405, 0.17, -0.10, 0.12, 0.013 +19710406, 0.59, -0.23, -0.04, 0.013 +19710407, 0.43, -0.02, 0.38, 0.013 +19710408, 0.14, 0.13, 0.05, 0.013 +19710412, 0.67, -0.20, -0.03, 0.013 +19710413, 0.04, 0.03, 0.00, 0.013 +19710414, 0.35, 0.18, 0.39, 0.013 +19710415, 0.14, -0.19, 0.55, 0.013 +19710416, 0.00, -0.08, 0.40, 0.013 +19710419, 0.41, -0.33, 0.11, 0.013 +19710420, -0.49, -0.49, -0.03, 0.013 +19710421, -0.27, 0.04, -0.09, 0.013 +19710422, 0.29, 0.07, 0.15, 0.013 +19710423, 0.50, 0.15, -0.37, 0.013 +19710426, 0.00, 0.53, 0.11, 0.013 +19710427, 0.44, 0.14, -0.19, 0.013 +19710428, 0.34, 0.11, -0.26, 0.013 +19710429, -0.25, -0.39, -0.01, 0.013 +19710430, -0.65, 0.13, -0.02, 0.013 +19710503, -0.57, 0.23, -0.18, 0.015 +19710504, 0.55, 0.21, -0.03, 0.015 +19710505, -0.03, -0.08, -0.17, 0.015 +19710506, -0.58, -0.40, 0.00, 0.015 +19710507, -0.32, -0.11, -0.12, 0.015 +19710510, -0.49, -0.20, 0.21, 0.015 +19710511, 0.29, -0.06, 0.10, 0.015 +19710512, 0.23, -0.12, -0.13, 0.015 +19710513, -0.20, 0.09, -0.41, 0.015 +19710514, -0.42, 0.16, 0.09, 0.015 +19710517, -1.52, -0.44, 0.17, 0.015 +19710518, 0.05, -0.25, -0.18, 0.015 +19710519, 0.23, -0.15, 0.08, 0.015 +19710520, 0.25, 0.07, -0.20, 0.015 +19710521, -0.35, -0.04, -0.09, 0.015 +19710524, -0.83, -0.05, -0.28, 0.015 +19710525, -0.65, -0.14, -0.35, 0.015 +19710526, 0.15, 0.05, -0.12, 0.015 +19710527, -0.11, -0.08, 0.05, 0.015 +19710528, 0.27, 0.21, 0.04, 0.015 +19710601, 0.61, -0.06, -0.08, 0.017 +19710602, 0.84, 0.33, -0.24, 0.017 +19710603, 0.18, 0.44, -0.12, 0.017 +19710604, 0.25, 0.04, -0.18, 0.017 +19710607, -0.16, 0.13, -0.15, 0.017 +19710608, -0.79, -0.17, 0.28, 0.017 +19710609, -0.07, -0.31, -0.15, 0.017 +19710610, 0.29, -0.10, -0.21, 0.017 +19710611, 0.34, -0.32, -0.26, 0.017 +19710614, -0.81, -0.16, -0.10, 0.017 +19710615, 0.02, -0.46, -0.21, 0.017 +19710616, 0.16, -0.28, -0.46, 0.017 +19710617, -0.03, -0.30, -0.06, 0.017 +19710618, -1.54, -0.60, 0.08, 0.017 +19710621, -1.21, -0.53, 0.14, 0.017 +19710622, -0.30, -0.10, -0.01, 0.017 +19710623, 0.86, 0.36, -0.40, 0.017 +19710624, -0.17, 0.16, 0.20, 0.017 +19710625, -0.20, 0.13, 0.07, 0.017 +19710628, -0.26, 0.03, -0.14, 0.017 +19710629, 1.11, 0.20, 0.09, 0.017 +19710630, 0.92, 0.08, -0.10, 0.017 +19710701, 0.10, 0.13, -0.04, 0.019 +19710702, 0.04, 0.15, -0.18, 0.019 +19710706, 0.06, 0.27, -0.28, 0.019 +19710707, 0.35, 0.27, -0.09, 0.019 +19710708, 0.33, -0.26, -0.06, 0.019 +19710709, 0.34, -0.05, -0.14, 0.019 +19710712, 0.11, -0.13, 0.08, 0.019 +19710713, -1.29, 0.02, 0.20, 0.019 +19710714, -0.17, 0.13, -0.03, 0.019 +19710715, 0.03, 0.10, 0.00, 0.019 +19710716, -0.21, 0.10, 0.14, 0.019 +19710719, -0.24, -0.12, -0.01, 0.019 +19710720, 0.37, -0.26, 0.08, 0.019 +19710721, -0.08, -0.07, -0.15, 0.019 +19710722, -0.25, -0.25, 0.15, 0.019 +19710723, -0.17, 0.02, 0.02, 0.019 +19710726, -0.34, -0.09, 0.20, 0.019 +19710727, -0.99, -0.38, 0.23, 0.019 +19710728, -0.84, -0.32, -0.05, 0.019 +19710729, -1.27, -0.63, -0.02, 0.019 +19710730, -0.47, -0.26, 0.09, 0.019 +19710802, 0.49, 0.34, 0.75, 0.021 +19710803, -1.64, -0.58, 0.02, 0.021 +19710804, -0.59, -0.07, -0.08, 0.021 +19710805, 0.24, -0.04, -0.04, 0.021 +19710806, 0.26, 0.07, -0.21, 0.021 +19710809, -0.77, -0.18, -0.08, 0.021 +19710810, 0.00, -0.36, 0.05, 0.021 +19710811, 1.22, -0.03, -0.26, 0.021 +19710812, 1.41, 0.13, -0.38, 0.021 +19710813, -0.30, 0.11, 0.32, 0.021 +19710816, 3.62, 0.92, 1.19, 0.021 +19710817, 0.66, -0.20, 0.31, 0.021 +19710818, -1.34, 0.20, -0.27, 0.021 +19710819, -0.47, -0.27, 0.24, 0.021 +19710820, 0.17, 0.03, -0.03, 0.021 +19710823, 0.89, -0.63, 0.46, 0.021 +19710824, 0.92, -0.37, 0.51, 0.021 +19710825, 0.09, 0.17, 0.04, 0.021 +19710826, -0.12, 0.03, -0.07, 0.021 +19710827, 0.23, 0.12, 0.17, 0.021 +19710830, -0.92, 0.35, 0.15, 0.021 +19710831, -0.49, 0.13, -0.20, 0.021 +19710901, 0.04, 0.00, 0.15, 0.017 +19710902, 0.25, 0.06, 0.05, 0.017 +19710903, 1.39, 0.11, 0.11, 0.017 +19710907, 0.49, 0.26, 0.09, 0.017 +19710908, 0.20, 0.15, -0.42, 0.017 +19710909, -0.48, 0.13, -0.25, 0.017 +19710910, -0.35, 0.18, -0.23, 0.017 +19710913, -0.36, -0.05, -0.02, 0.017 +19710914, -0.76, 0.01, -0.10, 0.017 +19710915, 0.36, -0.20, -0.26, 0.017 +19710916, -0.18, 0.19, -0.22, 0.017 +19710917, 0.30, -0.19, -0.21, 0.017 +19710920, -0.32, -0.19, -0.25, 0.017 +19710921, -0.32, 0.11, -0.10, 0.017 +19710922, -0.89, -0.26, -0.05, 0.017 +19710923, -0.10, -0.14, -0.15, 0.017 +19710924, -0.18, 0.40, -0.15, 0.017 +19710927, -0.57, -0.09, -0.36, 0.017 +19710928, 0.19, -0.10, -0.02, 0.017 +19710929, 0.01, 0.17, -0.41, 0.017 +19710930, 0.46, -0.08, -0.13, 0.017 +19711001, 0.61, 0.20, -0.24, 0.017 +19711004, 0.26, 0.08, -0.02, 0.017 +19711005, -0.12, -0.04, -0.21, 0.017 +19711006, 0.73, -0.15, 0.25, 0.017 +19711007, 0.21, 0.04, 0.14, 0.017 +19711008, -0.62, -0.04, 0.16, 0.017 +19711011, -0.22, 0.08, 0.12, 0.017 +19711012, 0.35, -0.08, -0.02, 0.017 +19711013, -0.51, 0.16, -0.10, 0.017 +19711014, -0.92, -0.33, 0.13, 0.017 +19711015, -0.42, -0.11, -0.11, 0.017 +19711018, -0.51, -0.18, 0.06, 0.017 +19711019, -0.42, -0.33, -0.29, 0.017 +19711020, -1.38, -0.09, 0.08, 0.017 +19711021, -0.01, -0.06, -0.12, 0.017 +19711022, -0.05, 0.16, -0.19, 0.017 +19711025, -0.44, -0.05, -0.09, 0.017 +19711026, -0.52, -0.51, 0.11, 0.017 +19711027, -1.07, -0.58, -0.11, 0.017 +19711028, 0.12, -0.30, 0.15, 0.017 +19711029, 0.47, 0.22, -0.18, 0.017 +19711101, -1.48, -0.06, -0.12, 0.018 +19711102, 0.27, -0.45, -0.07, 0.018 +19711103, 1.70, -0.29, -0.17, 0.018 +19711104, 0.00, 0.28, -0.12, 0.018 +19711105, -0.28, -0.26, -0.09, 0.018 +19711108, -0.09, -0.03, -0.27, 0.018 +19711109, 0.07, 0.01, -0.23, 0.018 +19711110, -1.14, -0.01, -0.33, 0.018 +19711111, -1.38, -0.21, 0.33, 0.018 +19711112, -0.04, -0.24, -0.01, 0.018 +19711115, -0.36, 0.10, -0.05, 0.018 +19711116, 0.91, -0.37, -0.44, 0.018 +19711117, 0.07, -0.36, -0.05, 0.018 +19711118, -0.74, -0.05, 0.25, 0.018 +19711119, -0.61, -0.55, 0.19, 0.018 +19711122, -1.00, -0.59, -0.22, 0.018 +19711123, -0.80, -0.81, -0.14, 0.018 +19711124, 0.17, -0.08, 0.06, 0.018 +19711126, 1.81, -0.05, -0.14, 0.018 +19711129, 1.81, 0.75, 0.20, 0.018 +19711130, 0.74, 0.37, -0.25, 0.018 +19711201, 1.73, 0.53, -0.28, 0.017 +19711202, 0.29, 0.07, -0.19, 0.017 +19711203, 1.17, -0.03, -0.12, 0.017 +19711206, -0.46, 0.37, 0.55, 0.017 +19711207, 0.43, 0.14, -0.42, 0.017 +19711208, 0.14, 0.28, -0.23, 0.017 +19711209, 0.02, 0.17, -0.28, 0.017 +19711210, 0.81, 0.42, 0.09, 0.017 +19711213, 0.37, 0.43, 0.02, 0.017 +19711214, -0.40, -0.15, -0.13, 0.017 +19711215, 0.82, -0.06, 0.18, 0.017 +19711216, 1.10, -0.02, -0.13, 0.017 +19711217, 0.50, 0.20, -0.11, 0.017 +19711220, 1.22, -0.06, -0.08, 0.017 +19711221, 0.23, -0.12, -0.16, 0.017 +19711222, -0.59, 0.15, 0.24, 0.017 +19711223, -0.44, -0.05, 0.24, 0.017 +19711227, 0.14, -0.21, 0.11, 0.017 +19711228, 0.92, -0.37, 0.16, 0.017 +19711229, 0.32, 0.24, 0.29, 0.017 +19711230, -0.33, 0.24, 0.06, 0.017 +19711231, 0.40, 0.95, -0.29, 0.017 +19720103, -0.37, 0.63, 0.64, 0.014 +19720104, 0.39, 0.39, 0.35, 0.014 +19720105, 0.97, 0.34, 0.57, 0.014 +19720106, 0.44, 0.46, -0.13, 0.014 +19720107, -0.01, 0.26, 0.04, 0.014 +19720110, -0.04, 0.48, 0.23, 0.014 +19720111, 0.39, 0.49, 0.14, 0.014 +19720112, -0.07, -0.20, -0.17, 0.014 +19720113, -0.59, 0.02, -0.17, 0.014 +19720114, 0.40, 0.37, -0.13, 0.014 +19720117, 0.33, 0.30, 0.13, 0.014 +19720118, 0.38, 0.24, 0.15, 0.014 +19720119, -0.15, 0.16, -0.14, 0.014 +19720120, -0.08, -0.09, -0.25, 0.014 +19720121, -0.19, 0.31, -0.14, 0.014 +19720124, -1.09, 0.07, 0.26, 0.014 +19720125, 0.16, -0.03, -0.23, 0.014 +19720126, -0.16, 0.42, 0.11, 0.014 +19720127, 1.10, 0.42, 0.01, 0.014 +19720128, 0.73, 0.23, 0.35, 0.014 +19720131, -0.06, 0.56, 0.27, 0.014 +19720201, 0.14, 0.53, -0.38, 0.012 +19720202, 0.62, 0.57, -0.78, 0.012 +19720203, -0.02, -0.05, -0.65, 0.012 +19720204, 0.36, -0.07, 0.23, 0.012 +19720207, -0.35, -0.01, 0.39, 0.012 +19720208, 0.13, -0.02, -0.20, 0.012 +19720209, 0.72, 0.11, -0.14, 0.012 +19720210, 0.03, -0.20, 0.27, 0.012 +19720211, -0.40, 0.17, -0.14, 0.012 +19720214, -0.40, 0.01, 0.02, 0.012 +19720215, 0.45, 0.26, -0.07, 0.012 +19720216, 0.49, 0.00, -0.08, 0.012 +19720217, -0.04, 0.05, -0.15, 0.012 +19720218, -0.24, 0.15, -0.28, 0.012 +19720222, -0.01, 0.11, 0.10, 0.012 +19720223, 0.12, 0.07, -0.20, 0.012 +19720224, 0.15, 0.01, -0.20, 0.012 +19720225, 0.63, -0.10, -0.32, 0.012 +19720228, 0.06, -0.26, 0.26, 0.012 +19720229, 0.41, 0.01, -0.34, 0.012 +19720301, 0.80, 0.04, -0.59, 0.012 +19720302, 0.05, 0.06, -0.21, 0.012 +19720303, 0.58, 0.15, -0.35, 0.012 +19720306, 0.75, -0.18, 0.29, 0.012 +19720307, 0.12, -0.25, -0.05, 0.012 +19720308, 0.18, 0.61, -0.33, 0.012 +19720309, 0.02, 0.42, -0.21, 0.012 +19720310, -0.54, 0.13, 0.04, 0.012 +19720313, -0.95, -0.11, 0.51, 0.012 +19720314, 0.29, 0.01, 0.15, 0.012 +19720315, 0.07, -0.19, 0.03, 0.012 +19720316, -0.28, -0.22, -0.05, 0.012 +19720317, 0.27, -0.30, -0.18, 0.012 +19720320, -0.38, -0.58, -0.01, 0.012 +19720321, -0.94, -0.50, 0.00, 0.012 +19720322, 0.16, -0.04, 0.09, 0.012 +19720323, 0.95, 0.22, -0.16, 0.012 +19720324, -0.21, 0.04, -0.20, 0.012 +19720327, -0.21, 0.06, -0.15, 0.012 +19720328, -0.10, 0.15, -0.25, 0.012 +19720329, -0.59, 0.33, -0.28, 0.012 +19720330, 0.61, -0.10, 0.19, 0.012 +19720403, 0.23, -0.10, -0.11, 0.014 +19720404, 0.61, -0.14, 0.14, 0.014 +19720405, 0.82, 0.15, -0.31, 0.014 +19720406, 0.40, 0.14, -0.02, 0.014 +19720407, 0.26, 0.08, 0.05, 0.014 +19720410, -0.17, 0.34, 0.07, 0.014 +19720411, 0.36, 0.24, 0.09, 0.014 +19720412, 0.35, 0.26, -0.10, 0.014 +19720413, -0.27, -0.09, -0.14, 0.014 +19720414, 0.03, 0.24, -0.15, 0.014 +19720417, -0.26, -0.10, 0.27, 0.014 +19720418, 0.17, -0.13, 0.13, 0.014 +19720419, -0.63, -0.45, 0.50, 0.014 +19720420, -0.18, 0.13, 0.11, 0.014 +19720421, -0.16, -0.01, 0.19, 0.014 +19720424, -0.66, 0.20, -0.19, 0.014 +19720425, -0.99, -0.25, -0.26, 0.014 +19720426, -0.24, -0.11, 0.03, 0.014 +19720427, 0.10, -0.23, 0.04, 0.014 +19720428, 0.51, -0.09, -0.15, 0.014 +19720501, -0.91, -0.19, 0.17, 0.014 +19720502, -0.59, -0.20, -0.02, 0.014 +19720503, -0.23, -0.71, 0.15, 0.014 +19720504, 0.23, -0.37, -0.24, 0.014 +19720505, 0.36, -0.10, -0.31, 0.014 +19720508, -0.51, -0.37, 0.08, 0.014 +19720509, -1.45, -0.67, -0.11, 0.014 +19720510, 0.70, 0.18, -0.04, 0.014 +19720511, 0.41, 0.24, 0.01, 0.014 +19720512, 0.69, 0.26, 0.00, 0.014 +19720515, 0.50, 0.31, -0.36, 0.014 +19720516, -0.23, -0.08, 0.09, 0.014 +19720517, 0.20, -0.09, -0.18, 0.014 +19720518, 0.91, -0.05, -0.58, 0.014 +19720519, 0.92, -0.22, -0.24, 0.014 +19720522, 0.55, -0.31, -0.42, 0.014 +19720523, 0.03, -0.08, -0.49, 0.014 +19720524, 0.41, -0.13, -0.27, 0.014 +19720525, 0.21, -0.05, -0.31, 0.014 +19720526, 0.16, 0.25, -0.08, 0.014 +19720530, -0.34, -0.23, 0.33, 0.014 +19720531, -0.73, -0.19, 0.11, 0.014 +19720601, 0.22, 0.10, -0.08, 0.013 +19720602, 0.11, 0.28, -0.30, 0.013 +19720605, -0.80, 0.01, -0.05, 0.013 +19720606, -0.56, 0.16, -0.40, 0.013 +19720607, -0.51, 0.00, -0.11, 0.013 +19720608, -0.30, -0.06, 0.02, 0.013 +19720609, -0.46, 0.00, 0.10, 0.013 +19720612, 0.07, -0.06, -0.05, 0.013 +19720613, 0.43, -0.14, -0.20, 0.013 +19720614, 0.76, 0.12, -0.50, 0.013 +19720615, -0.07, -0.18, -0.22, 0.013 +19720616, -0.09, 0.06, 0.09, 0.013 +19720619, -0.16, 0.22, -0.05, 0.013 +19720620, 0.36, -0.20, -0.09, 0.013 +19720621, 0.15, -0.22, -0.33, 0.013 +19720622, -0.17, -0.11, 0.01, 0.013 +19720623, -0.42, 0.15, -0.08, 0.013 +19720626, -0.70, 0.21, 0.02, 0.013 +19720627, -0.12, -0.22, 0.07, 0.013 +19720628, -0.36, 0.08, -0.26, 0.013 +19720629, -0.20, 0.01, -0.24, 0.013 +19720630, 0.39, 0.20, 0.04, 0.013 +19720703, 0.34, 0.01, 0.11, 0.016 +19720705, 0.55, -0.07, -0.14, 0.016 +19720706, 0.76, -0.35, -0.35, 0.016 +19720707, -0.32, 0.17, -0.23, 0.016 +19720710, -0.55, -0.05, 0.19, 0.016 +19720711, -0.75, -0.04, 0.21, 0.016 +19720712, -0.53, -0.44, 0.46, 0.016 +19720713, -0.63, -0.15, 0.32, 0.016 +19720714, 0.47, -0.18, -0.09, 0.016 +19720717, -0.92, -0.15, 0.69, 0.016 +19720718, -0.09, -0.61, 0.30, 0.016 +19720719, 0.23, -0.03, -0.05, 0.016 +19720720, -0.34, -0.20, 0.28, 0.016 +19720721, 0.72, -0.04, -0.16, 0.016 +19720724, 1.08, 0.13, -0.52, 0.016 +19720725, -0.31, 0.02, 0.00, 0.016 +19720726, -0.10, -0.05, -0.19, 0.016 +19720727, -0.34, -0.42, 0.16, 0.016 +19720728, 0.03, -0.28, -0.04, 0.016 +19720731, -0.07, -0.28, -0.11, 0.016 +19720801, 0.93, -0.31, -0.54, 0.012 +19720802, 0.83, -0.34, -0.32, 0.012 +19720803, 0.74, -0.47, -0.23, 0.012 +19720804, 0.34, -0.08, -0.26, 0.012 +19720807, 0.11, -0.17, -0.03, 0.012 +19720808, 0.07, -0.27, -0.13, 0.012 +19720809, 0.12, 0.06, -0.05, 0.012 +19720810, 0.22, 0.02, 0.03, 0.012 +19720811, 0.82, -0.20, 0.06, 0.012 +19720814, 0.43, -0.23, 0.45, 0.012 +19720815, -0.43, -0.01, 0.67, 0.012 +19720816, -0.28, -0.19, 0.70, 0.012 +19720817, -0.22, -0.01, 0.70, 0.012 +19720818, 0.41, -0.14, 0.26, 0.012 +19720821, -0.08, -0.26, 0.81, 0.012 +19720822, 0.50, -0.68, 1.03, 0.012 +19720823, -0.15, 0.04, 0.41, 0.012 +19720824, -1.07, 0.14, 0.46, 0.012 +19720825, -0.27, -0.01, 0.17, 0.012 +19720828, -0.47, -0.07, 0.23, 0.012 +19720829, 0.13, -0.34, 0.09, 0.012 +19720830, 0.13, -0.22, 0.14, 0.012 +19720831, 0.44, -0.21, -0.02, 0.012 +19720901, 0.40, 0.10, -0.15, 0.017 +19720905, -0.29, 0.05, 0.06, 0.017 +19720906, -0.60, -0.11, 0.25, 0.017 +19720907, -0.34, -0.19, 0.35, 0.017 +19720908, -0.14, -0.19, 0.35, 0.017 +19720911, -0.69, -0.42, 0.30, 0.017 +19720912, -0.95, -0.15, 0.33, 0.017 +19720913, 0.33, -0.15, -0.15, 0.017 +19720914, 0.02, -0.04, -0.13, 0.017 +19720915, -0.10, -0.06, 0.05, 0.017 +19720918, -0.20, -0.11, 0.28, 0.017 +19720919, -0.06, -0.17, 0.20, 0.017 +19720920, -0.06, -0.22, -0.19, 0.017 +19720921, -0.19, -0.13, -0.10, 0.017 +19720922, 0.06, -0.17, 0.25, 0.017 +19720925, -0.46, -0.13, -0.02, 0.017 +19720926, 0.09, -0.19, -0.12, 0.017 +19720927, 1.38, -0.25, -0.65, 0.017 +19720928, 0.60, -0.22, -0.43, 0.017 +19720929, 0.11, 0.03, -0.03, 0.017 +19721002, -0.32, -0.03, 0.23, 0.018 +19721003, 0.07, -0.42, 0.10, 0.018 +19721004, -0.26, -0.63, 0.74, 0.018 +19721005, -1.11, -0.11, 0.64, 0.018 +19721006, 0.63, -0.19, -0.23, 0.018 +19721009, 0.22, 0.15, -0.08, 0.018 +19721010, 0.10, 0.09, -0.05, 0.018 +19721011, -0.46, -0.20, 0.13, 0.018 +19721012, -0.84, -0.15, 0.41, 0.018 +19721013, -0.68, 0.15, 0.18, 0.018 +19721016, -1.05, 0.24, 0.19, 0.018 +19721017, 0.60, -0.57, 0.28, 0.018 +19721018, 0.57, -0.28, -0.17, 0.018 +19721019, -0.12, -0.13, -0.13, 0.018 +19721020, 1.02, -0.37, -0.26, 0.018 +19721023, 0.95, -0.14, -0.19, 0.018 +19721024, 0.31, -0.20, -0.10, 0.018 +19721025, -0.04, -0.05, 0.12, 0.018 +19721026, 0.34, 0.11, -0.06, 0.018 +19721027, -0.29, 0.30, -0.16, 0.018 +19721030, -0.04, -0.07, -0.04, 0.018 +19721031, 0.94, -0.30, -0.26, 0.018 +19721101, 1.02, -0.36, -0.15, 0.019 +19721102, 0.47, -0.32, 0.11, 0.019 +19721103, 0.84, -0.15, 0.16, 0.019 +19721106, -0.17, 0.11, 0.54, 0.019 +19721108, -0.49, 0.00, 0.41, 0.019 +19721109, 0.06, -0.37, 0.63, 0.019 +19721110, 0.30, 0.06, 0.59, 0.019 +19721113, 0.09, -0.31, 0.43, 0.019 +19721114, 0.83, -0.68, 0.06, 0.019 +19721115, -0.34, 0.21, 0.01, 0.019 +19721116, 0.50, -0.25, 0.02, 0.019 +19721117, 0.31, 0.00, 0.31, 0.019 +19721120, 0.01, 0.07, 0.34, 0.019 +19721121, 0.46, -0.04, 0.26, 0.019 +19721122, 0.59, -0.06, 0.29, 0.019 +19721124, 0.27, -0.32, 0.83, 0.019 +19721127, -0.38, 0.04, 0.25, 0.019 +19721128, -0.19, 0.51, 0.25, 0.019 +19721129, 0.02, 0.22, -0.20, 0.019 +19721130, 0.26, 0.59, -0.48, 0.019 +19721201, 0.65, 0.30, -0.21, 0.020 +19721204, 0.31, 0.29, -0.26, 0.020 +19721205, -0.21, -0.06, -0.05, 0.020 +19721206, 0.32, 0.15, -0.13, 0.020 +19721207, 0.41, -0.18, -0.32, 0.020 +19721208, 0.19, 0.07, -0.70, 0.020 +19721211, 0.19, -0.17, -0.22, 0.020 +19721212, -0.41, -0.33, 0.19, 0.020 +19721213, -0.19, -0.53, 0.08, 0.020 +19721214, -0.33, -0.31, 0.10, 0.020 +19721215, 0.05, -0.04, -0.26, 0.020 +19721218, -1.08, -0.02, -0.04, 0.020 +19721219, -0.41, -0.03, -0.02, 0.020 +19721220, -0.36, -0.18, 0.04, 0.020 +19721221, -0.66, 0.13, 0.04, 0.020 +19721222, 0.54, -0.18, 0.06, 0.020 +19721226, 0.21, -0.45, 0.10, 0.020 +19721227, 0.40, -0.60, -0.19, 0.020 +19721229, 1.09, 0.26, -0.50, 0.020 +19730102, 0.87, 0.88, -0.02, 0.021 +19730103, 0.35, 0.18, 0.13, 0.021 +19730104, -0.23, 0.11, 0.15, 0.021 +19730105, 0.30, 0.00, -0.09, 0.021 +19730108, -0.03, -0.13, 0.31, 0.021 +19730109, -0.09, -0.21, 0.32, 0.021 +19730110, -0.26, -0.27, 0.61, 0.021 +19730111, 0.55, -0.53, 0.04, 0.021 +19730112, -0.85, -0.44, 0.08, 0.021 +19730115, -0.84, -0.30, 0.26, 0.021 +19730116, -0.36, -0.25, -0.02, 0.021 +19730117, 0.37, -0.22, 0.14, 0.021 +19730118, 0.13, -0.22, -0.08, 0.021 +19730119, -0.19, -0.22, -0.46, 0.021 +19730122, -0.53, -0.09, 0.09, 0.021 +19730123, -0.16, -0.36, -0.04, 0.021 +19730124, -1.39, -0.24, 0.13, 0.021 +19730126, -0.37, -0.51, 0.29, 0.021 +19730129, -0.51, -0.19, 0.23, 0.021 +19730130, -0.17, -0.36, 0.26, 0.021 +19730131, 0.12, -0.29, 0.45, 0.021 +19730201, -1.16, -0.16, 0.16, 0.022 +19730202, -0.41, -0.06, -0.08, 0.022 +19730205, -0.19, -0.27, -0.12, 0.022 +19730206, 0.19, -0.32, -0.17, 0.022 +19730207, -0.77, 0.09, -0.16, 0.022 +19730208, -0.44, 0.01, -0.44, 0.022 +19730209, 1.35, -0.18, -0.41, 0.022 +19730212, 1.07, -0.14, -0.23, 0.022 +19730213, 0.51, -0.32, -0.01, 0.022 +19730214, -1.41, 0.11, 0.43, 0.022 +19730215, -0.69, -0.11, 0.16, 0.022 +19730216, 0.36, -0.42, 0.18, 0.022 +19730220, 0.25, -0.47, 0.40, 0.022 +19730221, -0.74, -0.39, 0.55, 0.022 +19730222, -0.30, -0.38, 0.23, 0.022 +19730223, -1.08, -0.18, 0.54, 0.022 +19730226, -0.88, -0.53, 0.59, 0.022 +19730227, -1.15, -0.19, 0.65, 0.022 +19730228, 0.62, -0.35, -0.40, 0.022 +19730301, -0.70, 0.04, 0.46, 0.021 +19730302, 0.86, -0.82, -0.16, 0.021 +19730305, 0.37, 0.06, -0.46, 0.021 +19730306, 1.26, -0.19, -0.23, 0.021 +19730307, 0.37, 0.29, -0.38, 0.021 +19730308, -0.21, 0.09, 0.21, 0.021 +19730309, -0.36, 0.17, 0.07, 0.021 +19730312, -0.03, -0.19, 0.17, 0.021 +19730313, 0.42, -0.55, 0.19, 0.021 +19730314, 0.26, -0.54, 0.19, 0.021 +19730315, -0.71, -0.11, 0.41, 0.021 +19730316, -0.52, 0.08, 0.10, 0.021 +19730319, -1.23, -0.05, 0.41, 0.021 +19730320, -0.33, -0.40, 0.32, 0.021 +19730321, -1.29, 0.01, 1.05, 0.021 +19730322, -1.68, -0.36, 0.74, 0.021 +19730323, 0.00, -0.26, 0.19, 0.021 +19730326, 0.75, -0.24, -0.21, 0.021 +19730327, 1.43, -0.21, -0.51, 0.021 +19730328, 0.03, 0.06, -0.02, 0.021 +19730329, 0.98, -0.33, 0.08, 0.021 +19730330, -0.92, 0.60, 0.08, 0.021 +19730402, -1.20, 0.02, 0.64, 0.026 +19730403, -1.00, -0.08, 0.37, 0.026 +19730404, -0.63, -0.03, 0.34, 0.026 +19730405, -0.47, -0.44, 0.29, 0.026 +19730406, 0.70, -0.36, -0.24, 0.026 +19730409, 1.26, -0.82, 0.05, 0.026 +19730410, 1.11, -0.58, -0.03, 0.026 +19730411, 0.39, -0.36, 0.33, 0.026 +19730412, -0.09, 0.06, 0.37, 0.026 +19730413, -0.42, 0.23, 0.26, 0.026 +19730416, -0.56, 0.16, 0.22, 0.026 +19730417, -0.59, -0.26, 0.78, 0.026 +19730418, 0.34, -0.70, 0.07, 0.026 +19730419, 0.53, -0.17, 0.20, 0.026 +19730423, -0.58, -0.03, 0.02, 0.026 +19730424, -1.51, -0.16, 0.62, 0.026 +19730425, -1.56, -0.31, 1.04, 0.026 +19730426, 0.32, -0.36, 0.03, 0.026 +19730427, -1.54, 0.24, 0.49, 0.026 +19730430, -0.24, -0.31, 0.16, 0.026 +19730501, 0.02, -0.31, 0.02, 0.023 +19730502, 1.18, -0.42, -0.43, 0.023 +19730503, 1.46, -0.79, -0.12, 0.023 +19730504, 0.76, 0.17, -0.55, 0.023 +19730507, -0.43, 0.03, 0.16, 0.023 +19730508, 0.58, -0.11, -0.11, 0.023 +19730509, -0.51, 0.58, -0.34, 0.023 +19730510, -0.68, 0.13, 0.00, 0.023 +19730511, -1.17, 0.14, 0.25, 0.023 +19730514, -2.19, -0.13, 0.85, 0.023 +19730515, 0.42, -1.10, -0.02, 0.023 +19730516, -0.13, -0.37, 0.40, 0.023 +19730517, -0.89, -0.12, 0.30, 0.023 +19730518, -1.88, -1.06, 0.27, 0.023 +19730521, -1.49, -2.43, 0.13, 0.023 +19730522, 0.75, -0.56, -0.26, 0.023 +19730523, 0.40, -0.52, -0.08, 0.023 +19730524, 2.79, -0.96, -0.91, 0.023 +19730525, 0.94, 1.38, -0.41, 0.023 +19730529, -0.32, 0.60, -0.14, 0.023 +19730530, -1.53, -0.16, 0.64, 0.023 +19730531, -0.91, -0.44, 0.54, 0.023 +19730601, -0.95, -0.19, 0.68, 0.024 +19730604, -1.14, -0.49, 0.55, 0.024 +19730605, 1.36, -0.69, -0.70, 0.024 +19730606, -0.27, -0.03, -0.12, 0.024 +19730607, 1.30, -0.68, -0.26, 0.024 +19730608, 1.08, 0.08, -0.20, 0.024 +19730611, -0.31, 0.32, 0.38, 0.024 +19730612, 1.44, -0.54, -0.56, 0.024 +19730613, -0.49, 1.10, 0.06, 0.024 +19730614, -1.06, 0.28, 0.11, 0.024 +19730615, -1.26, 0.00, 0.71, 0.024 +19730618, -1.44, -0.14, 0.30, 0.024 +19730619, 0.24, -0.42, -0.27, 0.024 +19730620, 0.38, -0.17, -0.34, 0.024 +19730621, -1.14, 0.19, 0.49, 0.024 +19730622, 0.40, -0.51, 0.38, 0.024 +19730625, -1.43, -0.58, 1.10, 0.024 +19730626, 0.89, -0.61, -0.37, 0.024 +19730627, 0.30, -0.18, -0.11, 0.024 +19730628, 0.99, -0.17, -0.55, 0.024 +19730629, -0.34, 0.39, 0.11, 0.024 +19730702, -1.20, 0.52, 0.58, 0.030 +19730703, -0.92, 0.29, 0.91, 0.030 +19730705, -0.18, -0.14, 0.19, 0.030 +19730706, -0.43, 0.24, 0.36, 0.030 +19730709, 0.80, -0.40, -0.32, 0.030 +19730710, 1.38, 0.20, -0.62, 0.030 +19730711, 2.17, 0.33, -0.72, 0.030 +19730712, -0.06, 0.95, -0.42, 0.030 +19730713, -1.09, 1.04, 0.10, 0.030 +19730716, 1.50, 0.09, -1.14, 0.030 +19730717, 0.28, 0.78, -0.53, 0.030 +19730718, 0.79, 0.75, -0.50, 0.030 +19730719, 0.37, 0.77, -0.69, 0.030 +19730720, 0.66, 0.68, -0.60, 0.030 +19730723, 0.29, 0.53, -0.13, 0.030 +19730724, 0.55, -0.03, -0.55, 0.030 +19730725, 1.36, 0.28, -0.98, 0.030 +19730726, 0.11, 0.31, -0.28, 0.030 +19730727, -0.24, 0.01, 0.03, 0.030 +19730730, -0.33, -0.14, 0.26, 0.030 +19730731, -0.85, 0.20, 0.20, 0.030 +19730801, -1.31, -0.25, 0.40, 0.030 +19730802, -0.12, -0.08, -0.22, 0.030 +19730803, -0.10, 0.26, -0.20, 0.030 +19730806, 0.27, 0.13, -0.36, 0.030 +19730807, -0.17, 0.08, -0.25, 0.030 +19730808, -0.97, 0.03, 0.23, 0.030 +19730809, -0.03, -0.31, 0.11, 0.030 +19730810, -0.80, -0.20, 0.33, 0.030 +19730813, -1.08, -0.27, 0.26, 0.030 +19730814, -0.93, -0.16, 0.31, 0.030 +19730815, 0.24, -0.27, 0.00, 0.030 +19730816, -0.52, 0.29, 0.50, 0.030 +19730817, 0.02, -0.12, 0.31, 0.030 +19730820, -0.75, -0.20, 0.45, 0.030 +19730821, -0.78, 0.02, 0.00, 0.030 +19730822, -0.48, -0.27, 0.04, 0.030 +19730823, 1.28, -0.43, -0.52, 0.030 +19730824, -0.14, 0.07, 0.19, 0.030 +19730827, 0.68, -0.34, -0.54, 0.030 +19730828, 0.47, -0.32, 0.05, 0.030 +19730829, 0.89, -0.15, 0.00, 0.030 +19730830, 0.01, 0.27, 0.19, 0.030 +19730831, 0.50, 0.16, -0.17, 0.030 +19730904, 0.37, 0.05, 0.30, 0.036 +19730905, 0.19, 0.01, 0.06, 0.036 +19730906, 0.48, -0.16, 0.49, 0.036 +19730907, -0.18, 0.47, 0.12, 0.036 +19730910, -0.88, 0.54, 0.42, 0.036 +19730911, -0.58, 0.03, 0.19, 0.036 +19730912, -0.24, -0.01, 0.01, 0.036 +19730913, 0.29, 0.00, -0.65, 0.036 +19730914, 0.89, -0.04, -0.75, 0.036 +19730917, -0.04, 0.53, 0.23, 0.036 +19730918, -0.23, 0.15, 0.32, 0.036 +19730919, 1.93, -0.24, -0.72, 0.036 +19730920, 0.92, 0.22, -0.08, 0.036 +19730921, 0.51, 0.20, 0.55, 0.036 +19730924, 0.29, 0.38, 0.83, 0.036 +19730925, 0.50, -0.06, 0.33, 0.036 +19730926, 0.70, 0.27, 0.28, 0.036 +19730927, 0.23, 0.04, 0.05, 0.036 +19730928, -0.48, 0.41, 0.15, 0.036 +19731001, -0.16, 0.55, 0.70, 0.028 +19731002, 0.58, 0.67, -0.13, 0.028 +19731003, 0.08, 0.71, 0.62, 0.028 +19731004, -0.39, 0.19, 0.43, 0.028 +19731005, 1.19, -0.06, -0.26, 0.028 +19731008, 0.44, 0.33, -0.19, 0.028 +19731009, -0.10, 0.06, -0.08, 0.028 +19731010, -1.16, -0.58, -0.27, 0.028 +19731011, 1.65, 0.11, -0.53, 0.028 +19731012, 0.37, 0.17, -0.17, 0.028 +19731015, -1.17, 0.16, 0.12, 0.028 +19731016, -0.01, -0.39, -0.28, 0.028 +19731017, -0.29, -0.09, 0.13, 0.028 +19731018, -0.01, -0.26, 0.02, 0.028 +19731019, 0.20, -0.03, 0.28, 0.028 +19731022, -1.07, -0.40, 0.47, 0.028 +19731023, 0.35, -0.40, -0.11, 0.028 +19731024, 0.29, -0.34, 0.05, 0.028 +19731025, 0.15, -0.19, -0.02, 0.028 +19731026, 0.72, -0.29, 0.08, 0.028 +19731029, -0.26, -0.13, 0.27, 0.028 +19731030, -1.52, -0.05, 0.57, 0.028 +19731031, -0.88, 0.07, 0.05, 0.028 +19731101, -0.58, -0.08, -0.22, 0.026 +19731102, -0.56, -0.31, 0.10, 0.026 +19731105, -1.59, -0.29, 0.28, 0.026 +19731106, -0.72, -0.49, 0.31, 0.026 +19731107, 0.63, -0.86, 0.59, 0.026 +19731108, 1.08, -0.05, -0.38, 0.026 +19731109, -1.48, 0.04, 0.70, 0.026 +19731112, -0.96, -0.63, -0.08, 0.026 +19731113, -0.29, -0.86, -0.31, 0.026 +19731114, -1.87, -0.48, 0.40, 0.026 +19731115, -0.13, -0.71, 0.30, 0.026 +19731116, 1.13, -0.65, 0.18, 0.026 +19731119, -3.03, -0.13, 1.17, 0.026 +19731120, -2.26, -1.33, 0.12, 0.026 +19731121, 1.06, -0.81, -0.07, 0.026 +19731123, -0.14, 0.17, 0.64, 0.026 +19731126, -3.01, -1.33, 0.95, 0.026 +19731127, -0.94, -0.40, 0.05, 0.026 +19731128, 1.98, 0.07, -0.86, 0.026 +19731129, -0.35, 0.06, 0.12, 0.026 +19731130, -1.35, 0.01, 0.72, 0.026 +19731203, -2.06, -0.31, 0.18, 0.032 +19731204, -0.42, -0.41, -0.26, 0.032 +19731205, -1.74, -0.62, 0.16, 0.032 +19731206, 2.25, -1.13, -0.38, 0.032 +19731207, 2.19, 0.25, 0.72, 0.032 +19731210, 1.50, -0.32, -0.38, 0.032 +19731211, -1.81, 0.10, 0.80, 0.032 +19731212, -2.60, -0.10, 0.67, 0.032 +19731213, -1.48, -0.35, 0.88, 0.032 +19731214, 0.97, -0.58, 0.08, 0.032 +19731217, -0.66, -0.10, 0.58, 0.032 +19731218, 1.88, -1.01, -0.42, 0.032 +19731219, -0.02, -0.26, 0.18, 0.032 +19731220, -0.30, 0.08, 0.53, 0.032 +19731221, -0.96, 0.17, 0.88, 0.032 +19731224, -0.63, 0.36, 0.94, 0.032 +19731226, 2.71, -1.12, -0.85, 0.032 +19731227, 1.96, -0.34, -0.72, 0.032 +19731228, -0.11, -0.07, 0.17, 0.032 +19731231, 0.20, 0.50, 0.16, 0.032 +19740102, 0.26, 1.27, 1.21, 0.028 +19740103, 2.32, 1.45, 0.94, 0.028 +19740104, -0.56, 1.59, 1.54, 0.028 +19740107, -0.52, 1.37, 1.05, 0.028 +19740108, -1.77, 0.91, 0.83, 0.028 +19740109, -2.73, 0.58, 0.52, 0.028 +19740110, -1.07, 0.27, -0.18, 0.028 +19740111, 1.16, -0.29, 0.25, 0.028 +19740114, -0.14, 0.10, 0.54, 0.028 +19740115, 0.75, -0.35, -0.01, 0.028 +19740116, 1.43, -0.48, -0.22, 0.028 +19740117, 1.67, 0.16, -0.84, 0.028 +19740118, -1.55, 1.08, -0.05, 0.028 +19740121, -0.27, -0.21, -0.17, 0.028 +19740122, 0.98, -0.28, -0.20, 0.028 +19740123, 0.49, 0.48, -0.35, 0.028 +19740124, -0.25, 0.42, 0.32, 0.028 +19740125, -0.11, 0.45, -0.28, 0.028 +19740128, -0.50, 0.41, 0.15, 0.028 +19740129, -0.16, -0.04, 0.48, 0.028 +19740130, 1.01, -0.11, 0.00, 0.028 +19740131, -0.45, 0.41, 0.11, 0.028 +19740201, -1.23, 0.52, 0.23, 0.031 +19740204, -1.96, 0.07, 0.09, 0.031 +19740205, -0.40, -0.13, 0.48, 0.031 +19740206, 0.29, -0.21, 0.10, 0.031 +19740207, 0.12, 0.16, 0.45, 0.031 +19740208, -0.95, 0.31, 0.66, 0.031 +19740211, -1.76, 0.51, 0.81, 0.031 +19740212, 0.04, -0.52, 0.26, 0.031 +19740213, -0.04, -0.16, 0.15, 0.031 +19740214, -0.01, 0.25, 0.11, 0.031 +19740215, 1.30, -0.36, -0.39, 0.031 +19740219, -0.13, -0.05, 0.07, 0.031 +19740220, 1.24, -0.54, -0.27, 0.031 +19740221, 1.24, -0.47, -0.11, 0.031 +19740222, 0.82, -0.14, 0.40, 0.031 +19740225, -0.26, 0.28, 0.24, 0.031 +19740226, 0.98, -0.13, 0.02, 0.031 +19740227, 0.49, 0.39, -0.58, 0.031 +19740228, -0.14, 0.25, -0.28, 0.031 +19740301, -0.61, 0.61, 0.32, 0.026 +19740304, 0.01, 0.20, -0.05, 0.026 +19740305, 1.76, -0.37, -0.80, 0.026 +19740306, 0.56, 0.44, -0.70, 0.026 +19740307, -0.94, 0.67, 0.27, 0.026 +19740308, 0.75, -0.22, -0.30, 0.026 +19740311, 1.01, -0.29, -0.37, 0.026 +19740312, 0.18, -0.08, -0.08, 0.026 +19740313, 0.55, 0.04, -0.42, 0.026 +19740314, 0.04, 0.40, -0.22, 0.026 +19740315, -0.29, 0.35, -0.03, 0.026 +19740318, -1.29, 0.58, 0.44, 0.026 +19740319, -0.84, 0.06, 0.19, 0.026 +19740320, 0.27, -0.17, -0.25, 0.026 +19740321, -0.23, 0.01, 0.14, 0.026 +19740322, -0.11, -0.05, -0.05, 0.026 +19740325, 0.19, -0.41, -0.33, 0.026 +19740326, 0.21, -0.18, 0.32, 0.026 +19740327, -1.35, 0.41, 0.64, 0.026 +19740328, -1.85, 0.26, 0.48, 0.026 +19740329, -0.81, 0.23, 0.64, 0.026 +19740401, -0.79, 0.34, 0.34, 0.036 +19740402, 0.00, -0.06, 0.00, 0.036 +19740403, 0.81, -0.55, -0.28, 0.036 +19740404, -0.08, -0.04, 0.04, 0.036 +19740405, -1.40, 0.57, 0.39, 0.036 +19740408, -1.04, -0.08, 0.26, 0.036 +19740409, 0.49, -0.41, -0.02, 0.036 +19740410, -0.21, 0.04, 0.34, 0.036 +19740411, -0.27, 0.18, 0.22, 0.036 +19740415, -0.17, -0.02, 0.26, 0.036 +19740416, 1.56, -0.58, -0.29, 0.036 +19740417, 0.67, -0.17, -0.16, 0.036 +19740418, 0.35, -0.11, 0.04, 0.036 +19740419, -1.05, 0.40, 0.05, 0.036 +19740422, -0.41, -0.04, 0.09, 0.036 +19740423, -1.83, 0.05, 0.10, 0.036 +19740424, -1.73, 0.12, 0.31, 0.036 +19740425, -0.97, -0.30, 0.03, 0.036 +19740426, 0.57, -0.15, -0.09, 0.036 +19740429, -0.08, 0.20, -0.22, 0.036 +19740430, 0.26, -0.09, -0.32, 0.036 +19740501, 1.95, -0.90, -0.54, 0.034 +19740502, -0.10, 0.27, -0.12, 0.034 +19740503, -0.84, 0.19, 0.32, 0.034 +19740506, -0.16, -0.25, -0.13, 0.034 +19740507, 0.18, -0.31, -0.15, 0.034 +19740508, 0.01, -0.09, -0.34, 0.034 +19740509, 1.07, -0.76, -0.26, 0.034 +19740510, -1.63, 0.61, 0.37, 0.034 +19740513, -0.96, -0.19, 0.20, 0.034 +19740514, -0.03, -0.08, -0.21, 0.034 +19740515, -0.23, -0.09, -0.16, 0.034 +19740516, -0.66, 0.38, -0.01, 0.034 +19740517, -1.79, 0.19, 0.31, 0.034 +19740520, -0.48, -0.20, -0.21, 0.034 +19740521, -0.03, -0.58, -0.65, 0.034 +19740522, -1.00, -0.13, -0.19, 0.034 +19740523, 0.01, -0.82, -0.34, 0.034 +19740524, 1.52, -0.38, -0.33, 0.034 +19740528, -0.24, 0.03, 0.23, 0.034 +19740529, -1.62, 0.49, -0.02, 0.034 +19740530, 0.54, -0.72, 0.12, 0.034 +19740531, -0.14, 0.11, -0.01, 0.034 +19740603, 1.86, -0.76, -0.18, 0.030 +19740604, 1.22, -0.01, 0.06, 0.030 +19740605, 0.27, 0.16, 0.18, 0.030 +19740606, 1.70, -0.61, -0.68, 0.030 +19740607, 0.66, 0.38, 0.06, 0.030 +19740610, 0.55, -0.13, -0.30, 0.030 +19740611, -0.85, 0.47, -0.10, 0.030 +19740612, -0.38, -0.11, -0.18, 0.030 +19740613, 0.21, 0.21, -0.47, 0.030 +19740614, -1.03, 0.34, 0.28, 0.030 +19740617, -1.36, 0.38, 0.42, 0.030 +19740618, -0.69, 0.11, 0.05, 0.030 +19740619, -0.75, 0.12, 0.23, 0.030 +19740620, -0.83, 0.02, 0.17, 0.030 +19740621, -0.97, 0.08, 0.04, 0.030 +19740624, 0.07, -0.31, 0.06, 0.030 +19740625, 1.26, -0.79, -0.23, 0.030 +19740626, -1.57, 0.33, 0.92, 0.030 +19740627, -1.55, -0.01, 0.38, 0.030 +19740628, -0.58, -0.18, 0.01, 0.030 +19740701, -0.18, -0.39, 0.12, 0.032 +19740702, -2.13, 0.19, 0.71, 0.032 +19740703, -0.16, -0.56, 0.22, 0.032 +19740705, -0.57, 0.17, 0.25, 0.032 +19740708, -3.21, 0.02, 0.82, 0.032 +19740709, 0.24, -0.63, -0.29, 0.032 +19740710, -1.75, 0.51, 0.54, 0.032 +19740711, -0.14, -0.34, -0.33, 0.032 +19740712, 4.01, -1.01, -0.26, 0.032 +19740715, 0.79, 0.16, 0.17, 0.032 +19740716, -1.04, 0.50, 0.17, 0.032 +19740717, 1.08, -0.37, -0.14, 0.032 +19740718, 0.18, 0.54, 0.68, 0.032 +19740719, -0.11, 0.20, 0.16, 0.032 +19740722, 0.29, -0.09, -0.22, 0.032 +19740723, 1.03, -0.20, 0.32, 0.032 +19740724, 0.35, -0.36, 0.45, 0.032 +19740725, -1.20, 0.72, 0.61, 0.032 +19740726, -1.73, 0.92, 0.66, 0.032 +19740729, -1.80, 0.37, 0.24, 0.032 +19740730, -0.56, 0.13, -0.23, 0.032 +19740731, -1.51, 0.45, 0.72, 0.032 +19740801, -0.66, -0.13, 0.38, 0.027 +19740802, -0.25, -0.10, 0.23, 0.027 +19740805, 0.87, -0.46, -0.03, 0.027 +19740806, 1.55, -0.29, -0.68, 0.027 +19740807, 2.48, -0.91, -0.02, 0.027 +19740808, -1.21, 1.44, 0.53, 0.027 +19740809, -0.66, 0.67, 0.34, 0.027 +19740812, -1.17, 0.63, 0.31, 0.027 +19740813, -1.66, 0.23, 0.75, 0.027 +19740814, -2.19, 0.60, 0.34, 0.027 +19740815, -0.58, -0.26, 0.26, 0.027 +19740816, -0.85, 0.27, 0.59, 0.027 +19740819, -1.44, -0.05, 0.45, 0.027 +19740820, 0.39, -0.38, -0.04, 0.027 +19740821, -1.78, 0.46, 0.90, 0.027 +19740822, -1.11, -0.51, 0.38, 0.027 +19740823, -1.62, 0.20, 0.69, 0.027 +19740826, 0.70, -0.87, -0.97, 0.027 +19740827, -1.56, 0.57, -0.44, 0.027 +19740828, -0.33, -0.33, -0.70, 0.027 +19740829, -1.26, -0.26, -0.66, 0.027 +19740830, 2.79, -1.34, 0.06, 0.027 +19740903, -2.18, 0.59, 0.80, 0.040 +19740904, -2.69, -0.08, 0.61, 0.040 +19740905, 2.90, -1.78, -0.87, 0.040 +19740906, 0.75, -0.09, 0.56, 0.040 +19740909, -2.28, 0.53, 0.61, 0.040 +19740910, -0.79, -0.44, 0.37, 0.040 +19740911, -0.89, 0.00, -0.11, 0.040 +19740912, -2.56, -0.22, 0.76, 0.040 +19740913, -2.24, 0.35, 0.29, 0.040 +19740916, 1.40, -1.58, -0.95, 0.040 +19740917, 1.64, -0.32, 0.48, 0.040 +19740918, 0.36, -0.48, -0.37, 0.040 +19740919, 3.34, -0.66, -0.29, 0.040 +19740920, 0.31, 0.51, 0.33, 0.040 +19740923, -0.79, 0.54, 0.65, 0.040 +19740924, -1.84, 0.67, 0.62, 0.040 +19740925, -0.41, 0.82, 0.38, 0.040 +19740926, -1.64, 0.47, 0.63, 0.040 +19740927, -2.11, 0.91, 0.88, 0.040 +19740930, -2.37, 0.39, 0.53, 0.040 +19741001, -0.23, -0.29, -0.02, 0.022 +19741002, 0.06, 0.42, 0.16, 0.022 +19741003, -1.67, 0.71, 0.33, 0.022 +19741004, 0.07, -0.24, 0.29, 0.022 +19741007, 3.77, -1.68, -0.08, 0.022 +19741008, -0.12, 0.85, 0.01, 0.022 +19741009, 4.23, -2.05, -1.40, 0.022 +19741010, 2.96, 0.08, -1.20, 0.022 +19741011, 2.01, -0.19, -0.82, 0.022 +19741014, 2.28, -0.01, -0.76, 0.022 +19741015, -1.63, 0.75, -0.09, 0.022 +19741016, -1.42, 0.79, -0.09, 0.022 +19741017, 1.08, -0.27, -0.75, 0.022 +19741018, 1.38, -0.46, -0.92, 0.022 +19741021, 1.69, -0.63, -1.28, 0.022 +19741022, -0.30, 0.73, -0.28, 0.022 +19741023, -2.52, 1.29, 0.33, 0.022 +19741024, -1.20, -0.34, 0.10, 0.022 +19741025, -0.05, 0.00, 0.00, 0.022 +19741028, -0.09, -0.20, -0.35, 0.022 +19741029, 3.42, -2.25, -1.12, 0.022 +19741030, 1.94, -0.71, -1.00, 0.022 +19741031, -0.32, 0.37, -0.07, 0.022 +19741101, -0.03, 0.02, 0.06, 0.027 +19741104, -0.95, 0.20, -0.10, 0.027 +19741105, 2.56, -0.90, -1.44, 0.027 +19741106, -0.12, 0.13, 0.22, 0.027 +19741107, 0.74, -0.23, -0.14, 0.027 +19741108, -0.21, 0.27, 0.47, 0.027 +19741111, 0.32, 0.22, 0.45, 0.027 +19741112, -1.95, 0.45, 0.53, 0.027 +19741113, -0.49, -0.11, 0.01, 0.027 +19741114, -0.29, -0.22, 0.60, 0.027 +19741115, -1.44, 0.61, 0.50, 0.027 +19741118, -3.57, 0.65, 0.82, 0.027 +19741119, -1.65, -0.20, 0.29, 0.027 +19741120, -0.45, -0.27, 0.13, 0.027 +19741121, 0.49, -0.33, -0.87, 0.027 +19741122, 1.08, -0.55, -0.16, 0.027 +19741125, -0.10, -0.20, -0.54, 0.027 +19741126, 0.95, -0.44, -0.69, 0.027 +19741127, 0.60, -0.19, -0.15, 0.027 +19741129, 0.07, -0.15, -0.27, 0.027 +19741202, -2.51, 0.57, 0.58, 0.033 +19741203, -1.47, -0.05, 0.03, 0.033 +19741204, 0.20, -0.81, -0.06, 0.033 +19741205, -1.94, 0.07, 0.72, 0.033 +19741206, -1.75, -0.01, 0.03, 0.033 +19741209, 0.53, -1.49, -0.68, 0.033 +19741210, 2.27, -1.53, -0.53, 0.033 +19741211, 0.64, -0.54, 0.20, 0.033 +19741212, -0.41, -0.22, 0.12, 0.033 +19741213, -0.58, 0.08, 0.09, 0.033 +19741216, -0.92, -0.01, 0.38, 0.033 +19741217, 1.32, -1.35, -0.88, 0.033 +19741218, 0.46, -0.03, -0.05, 0.033 +19741219, -0.37, 0.15, 0.08, 0.033 +19741220, -1.15, 0.28, 0.46, 0.033 +19741223, -1.47, 0.22, 0.18, 0.033 +19741224, 1.30, -0.70, -0.18, 0.033 +19741226, 0.87, -0.14, -0.06, 0.033 +19741227, -0.42, 0.31, 0.01, 0.033 +19741230, -0.08, -0.36, -0.40, 0.033 +19741231, 2.18, 0.53, -0.06, 0.033 +19750102, 2.48, 0.30, 1.35, 0.026 +19750103, 0.80, 0.44, 1.43, 0.026 +19750106, 0.78, 0.69, 1.57, 0.026 +19750107, 0.00, 0.87, 0.69, 0.026 +19750108, -1.16, 1.12, 0.78, 0.026 +19750109, 1.60, -0.50, -0.04, 0.026 +19750110, 2.12, 0.51, 0.25, 0.026 +19750113, -0.35, 1.23, 0.99, 0.026 +19750114, -0.78, 0.77, 0.36, 0.026 +19750115, 0.68, -0.01, -0.54, 0.026 +19750116, 0.13, 0.75, -0.33, 0.026 +19750117, -1.24, 0.83, 0.29, 0.026 +19750120, 0.00, -0.32, 0.13, 0.026 +19750121, -0.43, 0.23, 0.88, 0.026 +19750122, 1.08, -0.63, -0.32, 0.026 +19750123, 0.51, 0.54, -0.10, 0.026 +19750124, 1.25, 0.06, 0.57, 0.026 +19750127, 3.35, 0.01, -0.32, 0.026 +19750128, 0.46, 0.65, -0.52, 0.026 +19750129, 1.55, 0.17, -0.27, 0.026 +19750130, -1.13, 1.15, 0.12, 0.026 +19750131, 0.98, 0.18, -0.01, 0.026 +19750203, 1.24, 0.41, 0.12, 0.023 +19750204, -0.32, 0.40, -1.03, 0.023 +19750205, 1.63, -0.33, -0.62, 0.023 +19750206, -0.13, 0.73, -0.08, 0.023 +19750207, -0.03, -0.15, -0.21, 0.023 +19750210, -0.30, 0.14, -0.26, 0.023 +19750211, 0.17, -0.26, -0.55, 0.023 +19750212, 1.57, -0.53, -0.50, 0.023 +19750213, 1.32, -0.04, -0.82, 0.023 +19750214, 0.51, -0.10, -0.50, 0.023 +19750218, -0.68, 0.10, 0.67, 0.023 +19750219, 0.47, -0.36, -0.31, 0.023 +19750220, 0.93, -0.34, -0.45, 0.023 +19750221, 0.44, 0.04, -0.12, 0.023 +19750224, -1.28, 0.69, 0.09, 0.023 +19750225, -2.25, 0.18, 0.16, 0.023 +19750226, 0.85, -0.34, -0.02, 0.023 +19750227, 0.50, 0.33, -0.48, 0.023 +19750228, 0.86, -0.46, 0.53, 0.023 +19750303, 1.71, -0.53, 0.30, 0.021 +19750304, 0.69, -0.14, 0.05, 0.021 +19750305, -0.75, 0.20, 0.39, 0.021 +19750306, 0.88, -0.09, 0.35, 0.021 +19750307, 0.75, 0.63, 0.17, 0.021 +19750310, 0.74, 0.43, 0.57, 0.021 +19750311, -0.53, 0.83, 0.63, 0.021 +19750312, -0.90, 0.21, 0.38, 0.021 +19750313, 0.26, 0.75, -0.69, 0.021 +19750314, 1.36, 0.66, -0.15, 0.021 +19750317, 1.36, 0.13, 0.46, 0.021 +19750318, -0.90, -0.25, 0.23, 0.021 +19750319, -0.89, 0.31, -0.13, 0.021 +19750320, -0.68, 0.66, -0.10, 0.021 +19750321, -0.21, -0.06, -0.02, 0.021 +19750324, -2.30, -0.11, 0.11, 0.021 +19750325, 0.58, -0.25, -0.49, 0.021 +19750326, 1.76, -0.23, 0.21, 0.021 +19750327, 0.34, 0.07, -0.03, 0.021 +19750331, -0.56, 0.37, 0.13, 0.021 +19750401, -0.81, 0.09, -0.32, 0.020 +19750402, -0.23, 0.25, -0.11, 0.020 +19750403, -1.03, 0.64, 0.21, 0.020 +19750404, -0.59, 0.34, 0.02, 0.020 +19750407, -0.68, -0.06, -0.05, 0.020 +19750408, 0.58, -0.70, -0.22, 0.020 +19750409, 2.00, -0.62, -0.51, 0.020 +19750410, 1.02, -0.45, 0.23, 0.020 +19750411, 0.58, 0.34, 0.03, 0.020 +19750414, 1.55, -0.21, -0.42, 0.020 +19750415, 0.66, -0.33, 0.12, 0.020 +19750416, 0.39, -0.07, -0.13, 0.020 +19750417, 0.73, -0.10, 0.14, 0.020 +19750418, -0.90, 0.89, 0.13, 0.020 +19750421, 1.08, 0.06, 0.19, 0.020 +19750422, -0.27, 0.07, 0.23, 0.020 +19750423, -1.04, 0.19, -0.16, 0.020 +19750424, -0.02, 0.05, 0.29, 0.020 +19750425, 0.70, 0.15, 0.07, 0.020 +19750428, -0.38, 0.08, 0.19, 0.020 +19750429, -0.77, -0.18, -0.32, 0.020 +19750430, 1.65, -1.00, -0.68, 0.020 +19750501, 0.85, -0.10, -0.53, 0.021 +19750502, 1.24, -0.57, -0.34, 0.021 +19750505, 0.96, -0.14, -0.26, 0.021 +19750506, -1.27, 0.72, -0.50, 0.021 +19750507, 0.47, 0.40, -0.52, 0.021 +19750508, 0.73, 0.24, 0.15, 0.021 +19750509, 1.15, 0.04, 0.20, 0.021 +19750512, 0.05, 0.20, -0.19, 0.021 +19750513, 0.81, -0.49, -0.09, 0.021 +19750514, 0.74, -0.35, 0.19, 0.021 +19750515, -0.76, 0.75, -0.16, 0.021 +19750516, -0.94, 0.67, -0.03, 0.021 +19750519, 0.08, 0.03, 0.11, 0.021 +19750520, -0.41, 0.53, -0.19, 0.021 +19750521, -1.13, 0.33, -0.30, 0.021 +19750522, 0.39, 0.36, -0.84, 0.021 +19750523, 1.29, -0.07, -0.29, 0.021 +19750527, -0.10, 0.36, 0.04, 0.021 +19750528, -0.66, 0.53, -0.24, 0.021 +19750529, 0.01, 0.15, 0.10, 0.021 +19750530, 1.62, 0.05, -0.06, 0.021 +19750602, 1.42, -0.22, 0.15, 0.019 +19750603, 0.33, -0.06, -0.16, 0.019 +19750604, -0.19, 0.56, -0.19, 0.019 +19750605, 0.11, 0.16, -0.06, 0.019 +19750606, -0.12, 0.18, -0.13, 0.019 +19750609, -1.24, 0.21, 0.52, 0.019 +19750610, -0.84, 0.06, -0.13, 0.019 +19750611, 0.12, -0.16, 0.15, 0.019 +19750612, -0.51, -0.20, 0.59, 0.019 +19750613, 0.49, -0.12, -0.10, 0.019 +19750616, 0.96, -0.69, 0.08, 0.019 +19750617, -0.84, 0.13, 0.21, 0.019 +19750618, -0.20, -0.15, 0.15, 0.019 +19750619, 1.78, -0.44, -0.13, 0.019 +19750620, 0.68, 0.15, 0.05, 0.019 +19750623, 1.04, 0.06, -0.17, 0.019 +19750624, 0.64, -0.03, -0.14, 0.019 +19750625, 0.42, 0.26, -0.04, 0.019 +19750626, 0.22, 0.10, 0.24, 0.019 +19750627, 0.02, 0.34, 0.19, 0.019 +19750630, 0.47, 0.55, 0.17, 0.019 +19750701, -0.41, 0.30, 0.30, 0.022 +19750702, -0.79, 0.20, -0.12, 0.022 +19750703, 0.35, 0.53, -0.10, 0.022 +19750707, -0.83, 0.35, 0.08, 0.022 +19750708, -0.18, -0.22, 0.38, 0.022 +19750709, 1.53, 0.03, 0.27, 0.022 +19750710, 0.06, 0.19, 0.69, 0.022 +19750711, -0.02, 0.34, 0.60, 0.022 +19750714, 0.55, 0.48, 0.17, 0.022 +19750715, 0.45, 0.26, 0.85, 0.022 +19750716, -0.99, 0.37, -0.05, 0.022 +19750717, -0.90, 0.51, 0.23, 0.022 +19750718, -0.34, 0.49, -0.03, 0.022 +19750721, -0.73, 0.42, -0.19, 0.022 +19750722, -1.14, -0.05, -0.29, 0.022 +19750723, -1.46, -0.24, -0.18, 0.022 +19750724, -0.35, -0.67, -0.51, 0.022 +19750725, -0.82, 0.18, 0.21, 0.022 +19750728, -0.74, -0.23, -0.37, 0.022 +19750729, -0.65, -0.23, -0.19, 0.022 +19750730, 0.70, -0.41, -0.01, 0.022 +19750731, -0.01, 0.21, 0.07, 0.022 +19750801, -0.98, 0.00, 0.24, 0.023 +19750804, -0.98, 0.04, -0.46, 0.023 +19750805, -1.13, -0.28, -0.33, 0.023 +19750806, -0.01, -0.42, -0.45, 0.023 +19750807, -0.05, -0.35, 0.26, 0.023 +19750808, -0.35, -0.42, 0.04, 0.023 +19750811, 0.47, -0.66, -0.83, 0.023 +19750812, 0.65, -0.05, 0.19, 0.023 +19750813, -1.22, 0.18, 0.53, 0.023 +19750814, -0.58, 0.04, -0.23, 0.023 +19750815, 0.74, -0.36, 0.10, 0.023 +19750818, -0.22, 0.05, 0.11, 0.023 +19750819, -1.57, 0.10, 0.47, 0.023 +19750820, -2.03, 0.22, -0.26, 0.023 +19750821, -0.12, -0.53, -0.38, 0.023 +19750822, 1.39, -0.45, -0.06, 0.023 +19750825, 0.95, -0.32, 0.02, 0.023 +19750826, -1.17, 0.42, -0.07, 0.023 +19750827, 0.48, -0.14, -0.32, 0.023 +19750828, 2.26, -0.76, 0.38, 0.023 +19750829, 0.72, 0.38, 0.20, 0.023 +19750902, -1.56, 0.47, 0.22, 0.025 +19750903, 0.46, -0.32, -0.23, 0.025 +19750904, 0.16, -0.02, 0.23, 0.025 +19750905, -0.64, 0.27, 0.16, 0.025 +19750908, 0.15, -0.29, 0.13, 0.025 +19750909, -1.36, 0.38, 0.55, 0.025 +19750910, -1.17, -0.07, -0.08, 0.025 +19750911, -0.39, 0.05, 0.00, 0.025 +19750912, -0.24, 0.29, 0.10, 0.025 +19750915, -0.55, -0.01, -0.13, 0.025 +19750916, -0.95, 0.03, -0.05, 0.025 +19750917, 0.19, -0.37, -0.16, 0.025 +19750918, 1.83, -1.01, 0.08, 0.025 +19750919, 2.22, -0.40, -0.20, 0.025 +19750922, -0.84, 0.48, 0.07, 0.025 +19750923, -0.15, -0.01, -0.34, 0.025 +19750924, 0.95, -0.15, 0.11, 0.025 +19750925, -0.18, 0.18, -0.38, 0.025 +19750926, 0.50, -0.27, -0.30, 0.025 +19750929, -1.24, 0.32, 0.53, 0.025 +19750930, -1.42, 0.22, -0.05, 0.025 +19751001, -1.16, 0.09, -0.07, 0.024 +19751002, 0.89, -0.69, -0.32, 0.024 +19751003, 2.37, -0.99, -0.32, 0.024 +19751006, 1.02, -0.42, -0.29, 0.024 +19751007, -0.15, 0.03, -0.34, 0.024 +19751008, 1.21, -0.41, -0.36, 0.024 +19751009, 0.45, -0.22, -0.03, 0.024 +19751010, -0.10, 0.00, 0.19, 0.024 +19751013, 1.34, -0.73, -0.05, 0.024 +19751014, -0.04, 0.28, -0.05, 0.024 +19751015, -0.07, -0.12, -0.02, 0.024 +19751016, 0.17, -0.01, 0.25, 0.024 +19751017, -0.60, 0.10, 0.05, 0.024 +19751020, 0.94, -0.80, 0.10, 0.024 +19751021, 0.78, -0.42, 0.41, 0.024 +19751022, 0.18, -0.02, -0.08, 0.024 +19751023, 0.48, -0.24, 0.52, 0.024 +19751024, -1.33, 0.82, 0.29, 0.024 +19751027, -0.11, -0.22, 0.25, 0.024 +19751028, 0.77, -0.18, -0.11, 0.024 +19751029, -1.35, 0.30, 0.05, 0.024 +19751030, -0.19, 0.00, -0.02, 0.024 +19751031, -0.26, -0.08, 0.26, 0.024 +19751103, -0.94, 0.46, -0.01, 0.022 +19751104, 0.41, -0.46, 0.02, 0.022 +19751105, 0.83, -0.21, 0.38, 0.022 +19751106, 0.43, -0.10, -0.03, 0.022 +19751107, -0.16, 0.25, 0.03, 0.022 +19751110, 0.00, -0.17, -0.30, 0.022 +19751111, 0.60, -0.08, 0.07, 0.022 +19751112, 1.47, -0.30, 0.11, 0.022 +19751113, -0.05, 0.19, 0.01, 0.022 +19751114, -0.12, 0.08, 0.18, 0.022 +19751117, 0.49, -0.43, 0.31, 0.022 +19751118, -0.52, -0.04, 0.36, 0.022 +19751119, -1.10, 0.26, 0.15, 0.022 +19751120, -0.41, 0.15, 0.22, 0.022 +19751121, -0.05, 0.05, 0.01, 0.022 +19751124, 0.28, -0.25, 0.08, 0.022 +19751125, 0.92, -0.51, -0.07, 0.022 +19751126, 0.30, 0.07, 0.10, 0.022 +19751128, 0.28, -0.15, 0.29, 0.022 +19751201, -0.59, 0.07, 0.14, 0.022 +19751202, -1.55, 0.30, -0.38, 0.022 +19751203, -2.07, 0.16, -0.34, 0.022 +19751204, 0.13, -0.46, -0.01, 0.022 +19751205, -1.08, 0.55, 0.55, 0.022 +19751208, 0.14, -0.49, -0.30, 0.022 +19751209, 0.09, -0.68, 0.01, 0.022 +19751210, 0.90, -0.49, -0.01, 0.022 +19751211, -0.25, 0.23, 0.16, 0.022 +19751212, -0.08, -0.06, 0.04, 0.022 +19751215, 0.19, -0.42, -0.16, 0.022 +19751216, 0.94, -0.33, -0.16, 0.022 +19751217, 0.29, -0.01, 0.06, 0.022 +19751218, 0.35, 0.06, 0.34, 0.022 +19751219, -0.65, 0.56, 0.19, 0.022 +19751222, -0.73, 0.14, -0.07, 0.022 +19751223, 0.58, -0.56, 0.31, 0.022 +19751224, 0.84, -0.16, 0.42, 0.022 +19751226, 0.90, -0.24, 0.34, 0.022 +19751229, -0.16, 0.08, -0.01, 0.022 +19751230, -0.38, 0.12, 0.08, 0.022 +19751231, 0.62, 0.85, 0.62, 0.022 +19760102, 0.79, -0.10, 1.22, 0.022 +19760105, 1.78, -0.26, 0.94, 0.022 +19760106, 1.20, 0.44, 0.27, 0.022 +19760107, 0.52, 0.08, -0.17, 0.022 +19760108, 0.68, -0.14, 0.18, 0.022 +19760109, 0.43, 0.38, 0.19, 0.022 +19760112, 1.30, -0.11, 0.46, 0.022 +19760113, -0.72, 0.27, -0.04, 0.022 +19760114, 1.58, -0.05, 0.76, 0.022 +19760115, -0.45, 0.43, 0.39, 0.022 +19760116, 0.44, 0.21, 0.31, 0.022 +19760119, 1.21, 0.00, 1.15, 0.022 +19760120, 0.49, 0.12, 0.24, 0.022 +19760121, -0.49, 0.56, 0.32, 0.022 +19760122, -0.19, 0.98, 0.11, 0.022 +19760123, 1.15, 0.25, 0.43, 0.022 +19760126, 0.41, 0.47, 0.23, 0.022 +19760127, -0.52, 0.51, 0.19, 0.022 +19760128, -0.46, 0.02, -0.21, 0.022 +19760129, 1.67, 0.08, 0.12, 0.022 +19760130, 0.73, 0.04, 0.29, 0.022 +19760202, 0.14, 0.30, 0.24, 0.018 +19760203, 0.42, 0.15, 0.40, 0.018 +19760204, 0.87, 0.60, 0.20, 0.018 +19760205, -1.31, 0.61, -0.19, 0.018 +19760206, -0.85, 0.35, -0.14, 0.018 +19760209, 0.27, 0.34, 0.95, 0.018 +19760210, 0.79, -0.02, 0.58, 0.018 +19760211, 0.43, 0.45, 0.23, 0.018 +19760212, -0.36, 0.82, 0.22, 0.018 +19760213, -0.41, 0.74, 0.10, 0.018 +19760217, -0.52, 0.75, 0.67, 0.018 +19760218, 0.79, 0.43, 0.66, 0.018 +19760219, 1.59, 0.34, 0.73, 0.018 +19760220, 0.67, 0.20, 0.22, 0.018 +19760223, -0.29, 0.35, 0.16, 0.018 +19760224, 0.49, 0.14, 0.78, 0.018 +19760225, -0.16, -0.09, 0.48, 0.018 +19760226, -1.48, 0.29, -0.59, 0.018 +19760227, -0.68, -0.17, -0.24, 0.018 +19760301, 0.32, -0.11, 0.47, 0.017 +19760302, 0.58, 0.25, 0.66, 0.017 +19760303, -0.56, 0.29, 0.16, 0.017 +19760304, -0.97, 0.30, -0.40, 0.017 +19760305, 0.12, -0.06, 0.29, 0.017 +19760308, 1.01, -0.11, 0.46, 0.017 +19760309, 0.27, -0.14, 0.04, 0.017 +19760310, 0.35, -0.21, 0.10, 0.017 +19760311, 0.83, -0.34, -0.34, 0.017 +19760312, -0.87, 0.10, -0.42, 0.017 +19760315, -1.12, 0.05, -0.39, 0.017 +19760316, 0.98, -0.49, 0.39, 0.017 +19760317, -0.03, 0.38, 0.19, 0.017 +19760318, -0.41, 0.04, -0.41, 0.017 +19760319, 0.09, -0.05, -0.20, 0.017 +19760322, 0.06, -0.10, -0.11, 0.017 +19760323, 1.30, -0.73, -0.25, 0.017 +19760324, 1.03, -0.20, -0.33, 0.017 +19760325, -0.55, 0.00, 0.02, 0.017 +19760326, 0.10, 0.15, 0.23, 0.017 +19760329, -0.40, 0.03, 0.05, 0.017 +19760330, -0.42, -0.14, -0.18, 0.017 +19760331, 0.62, -0.10, -0.02, 0.017 +19760401, -0.43, 0.43, -0.23, 0.020 +19760402, 0.03, 0.16, -0.27, 0.020 +19760405, 1.15, -0.24, 0.33, 0.020 +19760406, -0.09, 0.11, 0.24, 0.020 +19760407, -1.17, 0.10, -0.52, 0.020 +19760408, -0.98, -0.18, -0.48, 0.020 +19760409, -1.05, 0.02, -0.43, 0.020 +19760412, -0.19, -0.39, 0.17, 0.020 +19760413, 0.65, -0.62, -0.12, 0.020 +19760414, -0.61, 0.32, 0.04, 0.020 +19760415, 0.33, -0.24, 0.29, 0.020 +19760419, 0.67, -0.02, 0.31, 0.020 +19760420, 1.46, -0.02, 0.36, 0.020 +19760421, 0.36, 0.08, 0.20, 0.020 +19760422, -0.20, 0.22, 0.17, 0.020 +19760423, -0.66, 0.27, -0.16, 0.020 +19760426, 0.07, -0.08, 0.06, 0.020 +19760427, -0.52, 0.04, -0.27, 0.020 +19760428, 0.17, -0.26, -0.17, 0.020 +19760429, -0.03, 0.09, 0.25, 0.020 +19760430, -0.40, 0.20, 0.18, 0.020 +19760503, -0.83, -0.05, -0.36, 0.019 +19760504, 0.56, -0.37, 0.08, 0.019 +19760505, -0.45, 0.32, -0.21, 0.019 +19760506, 0.29, -0.17, -0.25, 0.019 +19760507, 0.76, -0.09, -0.03, 0.019 +19760510, 1.22, -0.53, 0.51, 0.019 +19760511, -0.10, 0.21, 0.30, 0.019 +19760512, -0.17, 0.15, -0.08, 0.019 +19760513, -0.56, 0.21, 0.18, 0.019 +19760514, -0.75, 0.09, 0.15, 0.019 +19760517, -0.28, -0.08, -0.19, 0.019 +19760518, 0.11, -0.20, 0.08, 0.019 +19760519, -0.05, -0.13, 0.21, 0.019 +19760520, 0.63, -0.18, -0.27, 0.019 +19760521, -0.54, 0.19, 0.11, 0.019 +19760524, -1.66, 0.15, -0.36, 0.019 +19760525, -0.09, -0.32, -0.73, 0.019 +19760526, -0.06, 0.12, -0.21, 0.019 +19760527, -0.11, -0.41, -0.42, 0.019 +19760528, 0.73, -0.18, 0.20, 0.019 +19760601, -0.28, -0.07, 0.17, 0.020 +19760602, 0.29, -0.19, -0.06, 0.020 +19760603, -0.05, -0.10, 0.09, 0.020 +19760604, -0.88, 0.13, -0.21, 0.020 +19760607, -0.52, -0.44, -0.23, 0.020 +19760608, 0.14, -0.20, -0.32, 0.020 +19760609, -0.06, 0.07, -0.06, 0.020 +19760610, 0.77, -0.20, -0.05, 0.020 +19760611, 1.17, -0.31, 0.13, 0.020 +19760614, 0.99, -0.16, 0.25, 0.020 +19760615, -0.42, 0.34, 0.10, 0.020 +19760616, 0.55, -0.13, 0.12, 0.020 +19760617, 1.43, -0.42, 0.13, 0.020 +19760618, 0.19, 0.12, 0.05, 0.020 +19760621, 0.39, -0.06, -0.14, 0.020 +19760622, -0.70, 0.21, -0.07, 0.020 +19760623, -0.22, -0.05, 0.02, 0.020 +19760624, 0.59, -0.07, 0.23, 0.020 +19760625, 0.01, 0.29, 0.11, 0.020 +19760628, -0.23, 0.15, 0.02, 0.020 +19760629, 0.38, -0.19, 0.14, 0.020 +19760630, 0.46, -0.04, 0.26, 0.020 +19760701, -0.67, 0.33, 0.10, 0.022 +19760702, 0.47, 0.02, -0.07, 0.022 +19760706, -0.46, 0.46, -0.05, 0.022 +19760707, 0.25, -0.09, 0.29, 0.022 +19760708, 0.15, 0.13, 0.19, 0.022 +19760709, 0.87, -0.05, 0.00, 0.022 +19760712, 0.76, -0.18, 0.09, 0.022 +19760713, -0.21, 0.06, 0.21, 0.022 +19760714, 0.25, 0.18, -0.06, 0.022 +19760715, -0.60, 0.48, -0.04, 0.022 +19760716, -0.48, 0.27, -0.18, 0.022 +19760719, -0.32, -0.11, 0.36, 0.022 +19760720, -0.63, -0.13, -0.12, 0.022 +19760721, 0.06, -0.07, 0.17, 0.022 +19760722, 0.12, 0.12, -0.35, 0.022 +19760723, 0.12, -0.10, 0.17, 0.022 +19760726, -0.08, -0.21, 0.13, 0.022 +19760727, -0.50, -0.05, 0.05, 0.022 +19760728, -0.40, -0.22, 0.21, 0.022 +19760729, -0.16, -0.15, 0.38, 0.022 +19760730, 0.40, -0.39, 0.19, 0.022 +19760802, -0.15, -0.08, 0.24, 0.019 +19760803, 0.89, -0.56, 0.15, 0.019 +19760804, 0.22, -0.05, 0.14, 0.019 +19760805, -0.43, 0.19, 0.05, 0.019 +19760806, -0.03, -0.02, 0.07, 0.019 +19760809, -0.23, -0.08, 0.01, 0.019 +19760810, 0.77, -0.40, 0.01, 0.019 +19760811, -0.25, 0.05, 0.09, 0.019 +19760812, 0.07, -0.15, -0.21, 0.019 +19760813, 0.05, 0.00, 0.09, 0.019 +19760816, 0.16, -0.14, 0.13, 0.019 +19760817, 0.30, -0.16, -0.14, 0.019 +19760818, -0.20, -0.09, 0.07, 0.019 +19760819, -1.17, -0.05, 0.10, 0.019 +19760820, -0.90, 0.26, -0.01, 0.019 +19760823, -0.43, -0.25, -0.15, 0.019 +19760824, -0.62, 0.25, -0.02, 0.019 +19760825, 0.75, -0.60, 0.02, 0.019 +19760826, -0.63, 0.37, 0.25, 0.019 +19760827, 0.09, -0.04, -0.10, 0.019 +19760830, 0.53, -0.33, -0.03, 0.019 +19760831, 0.69, -0.22, 0.04, 0.019 +19760901, 1.02, -0.19, -0.35, 0.021 +19760902, -0.04, 0.18, -0.15, 0.021 +19760903, 0.37, -0.02, 0.03, 0.021 +19760907, 0.61, -0.27, 0.07, 0.021 +19760908, -0.11, 0.20, -0.05, 0.021 +19760909, -0.44, 0.19, 0.01, 0.021 +19760910, 0.24, 0.03, -0.17, 0.021 +19760913, -0.29, 0.10, 0.05, 0.021 +19760914, -0.30, 0.06, -0.08, 0.021 +19760915, 0.20, -0.12, -0.21, 0.021 +19760916, 0.87, -0.34, -0.22, 0.021 +19760917, 0.87, -0.22, 0.18, 0.021 +19760920, 0.10, -0.07, 0.43, 0.021 +19760921, 1.23, -0.57, 0.29, 0.021 +19760922, -0.29, 0.46, 0.08, 0.021 +19760923, -0.46, 0.26, -0.11, 0.021 +19760924, -0.10, 0.22, -0.03, 0.021 +19760927, 0.36, -0.12, -0.01, 0.021 +19760928, -1.12, 0.22, -0.03, 0.021 +19760929, -0.52, 0.00, 0.05, 0.021 +19760930, -0.13, 0.05, -0.14, 0.021 +19761001, -0.92, 0.30, 0.18, 0.019 +19761004, -0.15, -0.01, 0.18, 0.019 +19761005, -0.73, -0.06, -0.01, 0.019 +19761006, -0.43, -0.25, -0.10, 0.019 +19761007, 0.58, -0.02, -0.31, 0.019 +19761008, -0.84, 0.41, 0.09, 0.019 +19761011, -0.93, 0.04, -0.41, 0.019 +19761012, -0.78, 0.06, 0.29, 0.019 +19761013, 1.10, -0.82, 0.02, 0.019 +19761014, -1.16, 0.67, 0.03, 0.019 +19761015, 0.10, 0.30, -0.03, 0.019 +19761018, 0.55, -0.24, 0.19, 0.019 +19761019, -0.05, 0.12, -0.05, 0.019 +19761020, 0.23, -0.08, 0.23, 0.019 +19761021, -0.82, 0.42, 0.26, 0.019 +19761022, -0.75, 0.24, 0.03, 0.019 +19761025, 0.09, -0.04, -0.12, 0.019 +19761026, 0.86, -0.41, -0.07, 0.019 +19761027, 0.56, -0.19, -0.27, 0.019 +19761028, -0.10, 0.11, -0.08, 0.019 +19761029, 1.19, -0.36, -0.19, 0.019 +19761101, 0.23, -0.04, 0.18, 0.020 +19761103, -1.16, 0.12, 0.34, 0.020 +19761104, 0.77, 0.35, 0.51, 0.020 +19761105, -1.20, 0.79, 0.41, 0.020 +19761108, -1.13, 0.41, -0.13, 0.020 +19761109, -0.34, -0.22, 0.20, 0.020 +19761110, -0.47, 0.36, -0.18, 0.020 +19761111, 0.71, -0.45, -0.22, 0.020 +19761112, -0.32, 0.25, 0.11, 0.020 +19761115, 0.51, -0.34, -0.21, 0.020 +19761116, 0.26, 0.19, -0.04, 0.020 +19761117, 0.63, 0.00, -0.09, 0.020 +19761118, 1.24, -0.35, 0.18, 0.020 +19761119, 0.14, 0.18, 0.30, 0.020 +19761122, 0.63, -0.17, 0.07, 0.020 +19761123, -0.41, 0.31, 0.16, 0.020 +19761124, 0.53, 0.19, -0.09, 0.020 +19761126, 0.70, 0.13, -0.35, 0.020 +19761129, -0.57, 0.44, 0.03, 0.020 +19761130, -0.32, 0.12, 0.38, 0.020 +19761201, 0.43, 0.00, 0.07, 0.018 +19761202, -0.29, 0.38, 0.42, 0.018 +19761203, 0.55, -0.10, 0.04, 0.018 +19761206, 0.78, -0.03, 0.27, 0.018 +19761207, 0.02, 0.27, 0.13, 0.018 +19761208, 0.53, 0.16, -0.20, 0.018 +19761209, 0.57, 0.27, 0.15, 0.018 +19761210, 0.22, 0.38, 0.21, 0.018 +19761213, 0.07, 0.30, 0.23, 0.018 +19761214, 0.40, -0.29, 0.40, 0.018 +19761215, 0.06, 0.03, 0.43, 0.018 +19761216, -0.28, 0.13, 0.42, 0.018 +19761217, -0.43, 0.31, 0.24, 0.018 +19761220, -0.55, 0.10, 0.07, 0.018 +19761221, 0.45, -0.23, -0.24, 0.018 +19761222, 0.46, 0.03, -0.04, 0.018 +19761223, 0.05, 0.19, -0.49, 0.018 +19761227, 1.07, -0.31, -0.20, 0.018 +19761228, 0.62, -0.04, -0.12, 0.018 +19761229, -0.32, 0.41, 0.09, 0.018 +19761230, 0.53, 0.25, 0.00, 0.018 +19761231, 0.59, 0.62, 0.17, 0.018 +19770103, -0.32, 0.56, 0.67, 0.017 +19770104, -0.98, 0.82, 0.26, 0.017 +19770105, -0.74, 0.38, 0.07, 0.017 +19770106, 0.18, 0.43, 0.26, 0.017 +19770107, 0.09, 0.51, 0.06, 0.017 +19770110, 0.12, 0.02, 0.21, 0.017 +19770111, -0.93, 0.08, 0.29, 0.017 +19770112, -0.68, 0.17, 0.18, 0.017 +19770113, 0.82, 0.21, -0.16, 0.017 +19770114, -0.02, 0.47, 0.19, 0.017 +19770117, -0.20, 0.26, 0.12, 0.017 +19770118, -0.29, 0.14, 0.25, 0.017 +19770119, 0.50, 0.27, 0.15, 0.017 +19770120, -0.74, 0.35, 0.48, 0.017 +19770121, 0.36, 0.10, 0.24, 0.017 +19770124, 0.01, -0.04, 0.48, 0.017 +19770125, -0.04, 0.15, 0.56, 0.017 +19770126, -0.65, 0.23, 0.38, 0.017 +19770127, -0.58, 0.13, 0.11, 0.017 +19770128, 0.03, -0.06, -0.24, 0.017 +19770131, 0.00, -0.43, -0.18, 0.017 +19770201, 0.50, 0.11, -0.12, 0.018 +19770202, -0.11, 0.31, 0.04, 0.018 +19770203, -0.39, 0.23, 0.09, 0.018 +19770204, 0.17, 0.29, 0.06, 0.018 +19770207, 0.06, 0.12, -0.13, 0.018 +19770208, -0.25, 0.25, -0.03, 0.018 +19770209, -0.85, 0.35, -0.07, 0.018 +19770210, 0.10, 0.17, -0.18, 0.018 +19770211, -0.53, 0.17, 0.04, 0.018 +19770214, 0.43, -0.40, -0.16, 0.018 +19770215, 0.28, -0.17, 0.29, 0.018 +19770216, 0.38, -0.19, 0.18, 0.018 +19770217, -0.52, 0.17, 0.18, 0.018 +19770218, -0.29, 0.14, 0.37, 0.018 +19770222, -0.03, -0.14, -0.12, 0.018 +19770223, -0.30, 0.13, -0.01, 0.018 +19770224, -0.62, -0.17, 0.15, 0.018 +19770225, -0.17, 0.14, -0.09, 0.018 +19770228, 0.20, -0.44, 0.05, 0.018 +19770301, 0.85, -0.21, -0.24, 0.016 +19770302, -0.22, 0.14, 0.09, 0.016 +19770303, 0.44, -0.25, 0.04, 0.016 +19770304, 0.35, 0.14, -0.09, 0.016 +19770307, 0.12, 0.06, 0.01, 0.016 +19770308, -0.34, 0.27, 0.06, 0.016 +19770309, -0.70, 0.18, 0.05, 0.016 +19770310, 0.48, -0.02, -0.22, 0.016 +19770311, 0.07, 0.13, 0.11, 0.016 +19770314, 0.63, -0.45, 0.11, 0.016 +19770315, 0.44, -0.31, 0.26, 0.016 +19770316, 0.19, -0.04, 0.04, 0.016 +19770317, -0.09, 0.11, 0.02, 0.016 +19770318, -0.22, 0.37, -0.02, 0.016 +19770321, -0.45, 0.24, -0.09, 0.016 +19770322, -0.22, 0.15, -0.01, 0.016 +19770323, -0.78, 0.35, 0.23, 0.016 +19770324, -0.46, 0.14, 0.08, 0.016 +19770325, -0.59, 0.41, -0.02, 0.016 +19770328, -0.15, -0.36, -0.01, 0.016 +19770329, 0.55, -0.29, 0.14, 0.016 +19770330, -1.10, 0.20, 0.40, 0.016 +19770331, -0.14, 0.01, 0.03, 0.016 +19770401, 0.75, -0.32, 0.02, 0.019 +19770404, -0.89, 0.26, 0.19, 0.019 +19770405, -0.28, -0.24, 0.04, 0.019 +19770406, -0.07, 0.10, 0.05, 0.019 +19770407, 0.32, -0.20, -0.10, 0.019 +19770411, 0.49, -0.30, -0.01, 0.019 +19770412, 1.20, -0.46, 0.46, 0.019 +19770413, 0.03, 0.12, 0.27, 0.019 +19770414, 0.84, -0.06, 0.13, 0.019 +19770415, 0.03, 0.12, 0.09, 0.019 +19770418, -0.40, 0.30, 0.18, 0.019 +19770419, -0.33, 0.36, 0.05, 0.019 +19770420, 0.34, 0.11, 0.36, 0.019 +19770421, -0.65, 0.25, 0.29, 0.019 +19770422, -1.20, 0.31, 0.48, 0.019 +19770425, -1.25, -0.02, 0.38, 0.019 +19770426, -0.05, -0.22, 0.20, 0.019 +19770427, 0.85, -0.22, 0.07, 0.019 +19770428, 0.21, -0.16, 0.13, 0.019 +19770429, 0.25, 0.13, 0.10, 0.019 +19770502, 0.53, -0.15, -0.14, 0.018 +19770503, 0.47, -0.03, 0.05, 0.018 +19770504, 0.57, -0.16, 0.13, 0.018 +19770505, 0.27, 0.11, -0.11, 0.018 +19770506, -0.41, 0.39, 0.19, 0.018 +19770509, -0.21, 0.08, 0.24, 0.018 +19770510, 0.30, -0.04, -0.10, 0.018 +19770511, -0.55, 0.40, 0.09, 0.018 +19770512, -0.03, 0.02, 0.08, 0.018 +19770513, 0.32, 0.12, 0.05, 0.018 +19770516, 0.40, -0.04, 0.05, 0.018 +19770517, 0.25, -0.09, -0.07, 0.018 +19770518, 0.48, 0.00, -0.11, 0.018 +19770519, -0.32, 0.31, 0.12, 0.018 +19770520, -0.37, 0.26, 0.11, 0.018 +19770523, -1.13, 0.13, 0.23, 0.018 +19770524, -0.47, -0.11, -0.19, 0.018 +19770525, -0.82, 0.11, 0.26, 0.018 +19770526, 0.16, -0.15, -0.17, 0.018 +19770527, -0.64, 0.40, 0.15, 0.018 +19770531, -0.24, -0.35, -0.03, 0.018 +19770601, 0.74, -0.27, -0.17, 0.018 +19770602, -0.14, 0.07, 0.31, 0.018 +19770603, 0.87, -0.17, -0.47, 0.018 +19770606, -0.39, 0.34, 0.09, 0.018 +19770607, 0.44, -0.23, 0.02, 0.018 +19770608, 0.51, -0.11, 0.12, 0.018 +19770609, -0.03, 0.38, -0.18, 0.018 +19770610, 0.29, 0.26, -0.01, 0.018 +19770613, 0.32, -0.12, -0.19, 0.018 +19770614, 0.99, -0.46, -0.20, 0.018 +19770615, -0.20, 0.26, 0.07, 0.018 +19770616, 0.29, 0.10, -0.25, 0.018 +19770617, 0.15, 0.27, -0.15, 0.018 +19770620, 0.43, -0.11, -0.05, 0.018 +19770621, 0.32, -0.19, 0.14, 0.018 +19770622, -0.20, 0.24, 0.15, 0.018 +19770623, 0.22, 0.35, 0.11, 0.018 +19770624, 0.56, 0.22, -0.09, 0.018 +19770627, -0.10, 0.30, -0.03, 0.018 +19770628, -0.72, 0.40, 0.15, 0.018 +19770629, -0.07, 0.17, 0.05, 0.018 +19770630, 0.35, 0.26, 0.07, 0.018 +19770701, -0.26, 0.51, 0.20, 0.022 +19770705, 0.01, 0.19, -0.11, 0.022 +19770706, -0.45, 0.32, 0.07, 0.022 +19770707, 0.31, 0.01, -0.18, 0.022 +19770708, -0.01, 0.42, 0.23, 0.022 +19770711, -0.26, 0.15, 0.25, 0.022 +19770712, -0.10, 0.09, 0.10, 0.022 +19770713, 0.16, 0.06, -0.17, 0.022 +19770715, 0.60, -0.02, -0.58, 0.022 +19770718, 0.62, -0.18, -0.25, 0.022 +19770719, 0.62, -0.08, -0.18, 0.022 +19770720, -0.03, -0.02, 0.07, 0.022 +19770721, -0.11, 0.18, 0.00, 0.022 +19770722, 0.07, 0.21, 0.05, 0.022 +19770725, -0.67, 0.40, -0.11, 0.022 +19770726, -0.53, 0.10, 0.07, 0.022 +19770727, -1.60, 0.06, 0.18, 0.022 +19770728, -0.05, -0.18, -0.27, 0.022 +19770729, -0.02, -0.15, -0.07, 0.022 +19770801, 0.35, -0.20, 0.00, 0.019 +19770802, -0.61, 0.18, -0.03, 0.019 +19770803, -0.22, -0.19, -0.08, 0.019 +19770804, 0.49, 0.13, -0.41, 0.019 +19770805, 0.01, 0.33, -0.17, 0.019 +19770808, -0.59, 0.12, 0.12, 0.019 +19770809, 0.07, 0.02, -0.23, 0.019 +19770810, 0.70, -0.19, -0.31, 0.019 +19770811, -0.54, 0.67, -0.22, 0.019 +19770812, -0.31, 0.15, -0.19, 0.019 +19770815, 0.21, -0.26, -0.32, 0.019 +19770816, -0.36, 0.32, -0.04, 0.019 +19770817, -0.05, 0.10, -0.44, 0.019 +19770818, 0.01, 0.15, -0.18, 0.019 +19770819, -0.23, 0.32, -0.47, 0.019 +19770822, 0.27, -0.11, -0.42, 0.019 +19770823, -0.15, 0.12, 0.31, 0.019 +19770824, -0.38, 0.20, 0.36, 0.019 +19770825, -0.91, 0.28, 0.28, 0.019 +19770826, -0.09, -0.13, -0.14, 0.019 +19770829, 0.80, -0.25, -0.40, 0.019 +19770830, -0.47, 0.11, 0.30, 0.019 +19770831, 0.24, -0.28, -0.18, 0.019 +19770901, 0.14, 0.33, 0.18, 0.021 +19770902, 0.63, -0.03, -0.09, 0.021 +19770906, 0.17, -0.16, -0.01, 0.021 +19770907, 0.26, 0.07, -0.17, 0.021 +19770908, -0.63, 0.42, 0.34, 0.021 +19770909, -0.85, 0.41, 0.13, 0.021 +19770912, -0.31, 0.06, -0.18, 0.021 +19770913, 0.00, 0.00, -0.24, 0.021 +19770914, 0.36, -0.08, -0.19, 0.021 +19770915, 0.31, -0.03, -0.02, 0.021 +19770916, -0.30, 0.34, 0.07, 0.021 +19770919, -0.59, 0.10, 0.30, 0.021 +19770920, 0.01, -0.01, -0.15, 0.021 +19770921, -0.75, 0.15, 0.30, 0.021 +19770922, -0.06, -0.12, -0.03, 0.021 +19770923, -0.02, 0.25, -0.06, 0.021 +19770926, 0.25, -0.16, -0.29, 0.021 +19770927, -0.14, 0.12, -0.12, 0.021 +19770928, 0.04, 0.09, -0.11, 0.021 +19770929, 0.52, -0.20, 0.08, 0.021 +19770930, 0.69, -0.07, -0.01, 0.021 +19771003, 0.28, 0.00, 0.10, 0.023 +19771004, -0.61, 0.28, 0.42, 0.023 +19771005, -0.36, 0.18, -0.02, 0.023 +19771006, 0.36, -0.07, 0.12, 0.023 +19771007, -0.01, 0.31, -0.06, 0.023 +19771010, -0.17, 0.15, 0.04, 0.023 +19771011, -0.77, 0.33, 0.30, 0.023 +19771012, -1.13, -0.21, 0.14, 0.023 +19771013, -0.69, -0.20, -0.19, 0.023 +19771014, 0.03, 0.02, 0.10, 0.023 +19771017, -0.11, -0.01, -0.15, 0.023 +19771018, -0.02, 0.21, 0.18, 0.023 +19771019, -1.05, 0.32, 0.47, 0.023 +19771020, 0.19, -0.27, -0.07, 0.023 +19771021, -0.23, 0.30, 0.08, 0.023 +19771024, -0.79, 0.10, 0.24, 0.023 +19771025, -0.83, -0.33, 0.07, 0.023 +19771026, 0.98, -0.45, -0.26, 0.023 +19771027, 0.36, 0.10, -0.05, 0.023 +19771028, 0.33, 0.19, -0.05, 0.023 +19771031, -0.19, 0.27, 0.20, 0.023 +19771101, -0.98, 0.19, 0.44, 0.024 +19771102, -0.60, 0.29, 0.00, 0.024 +19771103, 0.14, -0.03, -0.10, 0.024 +19771104, 0.94, 0.09, -0.07, 0.024 +19771107, 0.81, -0.01, -0.18, 0.024 +19771108, 0.19, 0.17, 0.17, 0.024 +19771109, 0.50, 0.16, -0.14, 0.024 +19771110, 1.91, -0.33, -0.55, 0.024 +19771111, 1.28, -0.34, -0.13, 0.024 +19771114, -0.50, 0.41, 0.27, 0.024 +19771115, 0.65, 0.09, -0.26, 0.024 +19771116, -0.33, 0.50, 0.10, 0.024 +19771117, -0.21, 0.66, 0.28, 0.024 +19771118, 0.25, 0.32, -0.04, 0.024 +19771121, -0.08, 0.19, -0.03, 0.024 +19771122, 0.86, -0.19, -0.13, 0.024 +19771123, 0.59, 0.24, -0.07, 0.024 +19771125, 0.32, 0.26, -0.02, 0.024 +19771128, -0.54, 0.32, 0.23, 0.024 +19771129, -1.41, 0.48, 0.38, 0.024 +19771130, 0.17, 0.00, 0.09, 0.024 +19771201, 0.05, 0.48, 0.08, 0.023 +19771202, 0.01, 0.32, 0.21, 0.023 +19771205, -0.36, 0.30, 0.07, 0.023 +19771206, -1.52, 0.07, 0.44, 0.023 +19771207, -0.14, -0.04, 0.01, 0.023 +19771208, 0.20, 0.13, -0.25, 0.023 +19771209, 0.69, -0.08, 0.01, 0.023 +19771212, 0.04, -0.01, -0.05, 0.023 +19771213, -0.05, -0.06, -0.05, 0.023 +19771214, 0.33, 0.10, -0.31, 0.023 +19771215, -0.40, 0.50, 0.01, 0.023 +19771216, -0.11, 0.18, 0.15, 0.023 +19771219, -0.71, -0.12, 0.37, 0.023 +19771220, -0.36, -0.32, -0.02, 0.023 +19771221, 0.58, -0.07, -0.45, 0.023 +19771222, 0.66, -0.11, -0.25, 0.023 +19771223, 0.88, -0.17, -0.21, 0.023 +19771227, -0.02, -0.25, 0.24, 0.023 +19771228, 0.02, 0.07, 0.10, 0.023 +19771229, 0.31, 0.06, -0.30, 0.023 +19771230, 0.18, 0.34, -0.17, 0.023 +19780103, -1.29, 0.33, 0.67, 0.023 +19780104, -0.41, -0.10, 0.08, 0.023 +19780105, -0.73, 0.31, 0.61, 0.023 +19780106, -1.24, -0.16, 0.54, 0.023 +19780109, -1.18, -0.26, 0.29, 0.023 +19780110, -0.64, -0.09, 0.14, 0.023 +19780111, -0.53, -0.02, 0.30, 0.023 +19780112, 0.19, 0.25, 0.00, 0.023 +19780113, -0.03, 0.32, 0.33, 0.023 +19780116, -0.35, -0.28, 0.09, 0.023 +19780117, 0.52, 0.14, -0.24, 0.023 +19780118, 0.68, -0.03, 0.21, 0.023 +19780119, -0.34, 0.68, 0.08, 0.023 +19780120, -0.21, 0.34, 0.04, 0.023 +19780123, -0.66, 0.27, 0.13, 0.023 +19780124, 0.02, 0.10, 0.06, 0.023 +19780125, 0.17, 0.11, 0.32, 0.023 +19780126, -0.77, 0.31, 0.45, 0.023 +19780127, -0.02, 0.03, 0.00, 0.023 +19780130, 0.75, -0.22, -0.32, 0.023 +19780131, -0.09, 0.29, -0.38, 0.023 +19780201, 0.78, 0.17, -0.37, 0.024 +19780202, 0.34, 0.10, 0.15, 0.024 +19780203, -0.30, 0.72, 0.02, 0.024 +19780206, 0.00, 0.12, 0.03, 0.024 +19780207, 0.75, -0.21, -0.23, 0.024 +19780208, 0.52, -0.10, 0.04, 0.024 +19780209, -0.36, 0.50, 0.24, 0.024 +19780210, -0.12, 0.39, -0.07, 0.024 +19780213, -0.27, 0.24, 0.04, 0.024 +19780214, -0.78, 0.30, 0.20, 0.024 +19780215, -0.26, 0.35, 0.05, 0.024 +19780216, -0.78, 0.33, 0.08, 0.024 +19780217, -0.11, 0.13, 0.22, 0.024 +19780221, -0.39, 0.16, 0.07, 0.024 +19780222, 0.06, 0.09, -0.01, 0.024 +19780223, 0.18, 0.01, -0.02, 0.024 +19780224, 0.84, -0.14, -0.19, 0.024 +19780227, -0.70, 0.33, 0.21, 0.024 +19780228, -0.79, 0.08, 0.30, 0.024 +19780301, 0.10, -0.09, -0.01, 0.024 +19780302, 0.21, 0.11, 0.17, 0.024 +19780303, 0.13, 0.00, 0.24, 0.024 +19780306, -0.54, 0.18, 0.23, 0.024 +19780307, 0.47, -0.08, -0.15, 0.024 +19780308, 0.49, -0.05, -0.15, 0.024 +19780309, 0.20, 0.33, -0.03, 0.024 +19780310, 1.04, -0.10, -0.34, 0.024 +19780313, 0.10, 0.02, 0.06, 0.024 +19780314, 0.40, -0.21, -0.03, 0.024 +19780315, -0.18, 0.38, 0.17, 0.024 +19780316, 0.43, 0.32, -0.06, 0.024 +19780317, 0.73, 0.03, -0.23, 0.024 +19780320, 0.58, -0.13, -0.19, 0.024 +19780321, -0.97, 0.51, 0.49, 0.024 +19780322, -0.26, 0.28, 0.12, 0.024 +19780323, -0.05, 0.44, 0.09, 0.024 +19780327, -0.43, 0.53, 0.25, 0.024 +19780328, 0.62, 0.01, -0.06, 0.024 +19780329, 0.20, 0.38, 0.10, 0.024 +19780330, -0.23, 0.34, 0.23, 0.024 +19780331, -0.23, 0.12, 0.27, 0.024 +19780403, -0.71, 0.11, 0.24, 0.027 +19780404, 0.38, 0.07, -0.09, 0.027 +19780405, 0.81, 0.08, -0.19, 0.027 +19780406, 0.24, 0.22, -0.08, 0.027 +19780407, 0.47, 0.26, -0.39, 0.027 +19780410, 0.31, -0.11, -0.05, 0.027 +19780411, -0.21, 0.18, 0.04, 0.027 +19780412, -0.03, 0.38, 0.24, 0.027 +19780413, 0.97, 0.19, -0.50, 0.027 +19780414, 1.86, -0.64, -0.59, 0.027 +19780417, 1.39, -0.97, -0.77, 0.027 +19780418, -1.03, 0.31, 0.28, 0.027 +19780419, 0.36, 0.02, -0.07, 0.027 +19780420, 0.72, 0.05, -0.26, 0.027 +19780421, -0.10, 0.47, 0.05, 0.027 +19780424, 1.24, -0.51, -0.38, 0.027 +19780425, 0.77, -0.36, -0.58, 0.027 +19780426, 0.17, 0.03, -0.04, 0.027 +19780427, -0.86, 0.60, 0.20, 0.027 +19780428, 0.87, -0.04, -0.36, 0.027 +19780501, 0.84, -0.13, -0.33, 0.023 +19780502, -0.26, 0.24, 0.23, 0.023 +19780503, -0.73, 0.74, 0.33, 0.023 +19780504, -0.05, 0.46, 0.05, 0.023 +19780505, 0.68, 0.36, -0.24, 0.023 +19780508, -0.26, 0.37, -0.02, 0.023 +19780509, -0.17, 0.27, -0.11, 0.023 +19780510, 0.09, 0.42, -0.07, 0.023 +19780511, 1.12, -0.09, -0.62, 0.023 +19780512, 0.83, 0.16, -0.46, 0.023 +19780515, 0.59, -0.15, -0.27, 0.023 +19780516, 0.67, 0.02, -0.24, 0.023 +19780517, 0.29, 0.27, 0.15, 0.023 +19780518, -0.75, 0.62, 0.43, 0.023 +19780519, -0.44, 0.47, 0.14, 0.023 +19780522, 0.83, -0.31, -0.25, 0.023 +19780523, -0.85, 0.17, 0.39, 0.023 +19780524, -0.98, -0.08, 0.40, 0.023 +19780525, -0.18, 0.35, -0.02, 0.023 +19780526, -0.16, 0.28, -0.11, 0.023 +19780530, 0.23, -0.03, -0.06, 0.023 +19780531, 0.40, -0.13, 0.06, 0.023 +19780601, 0.11, 0.01, -0.07, 0.024 +19780602, 0.74, -0.02, -0.25, 0.024 +19780605, 1.60, -0.54, -0.61, 0.024 +19780606, 0.43, 0.02, 0.12, 0.024 +19780607, -0.14, 0.33, 0.10, 0.024 +19780608, 0.21, 0.50, 0.14, 0.024 +19780609, -0.14, 0.69, -0.04, 0.024 +19780612, -0.28, 0.29, 0.12, 0.024 +19780613, 0.08, 0.17, -0.16, 0.024 +19780614, -0.06, 0.53, 0.00, 0.024 +19780615, -0.96, 0.44, 0.07, 0.024 +19780616, -0.85, 0.23, 0.24, 0.024 +19780619, -0.19, -0.42, 0.02, 0.024 +19780620, -0.95, 0.04, 0.45, 0.024 +19780621, -0.65, -0.51, 0.17, 0.024 +19780622, 0.21, -0.07, 0.12, 0.024 +19780623, -0.28, 0.47, 0.22, 0.024 +19780626, -1.27, -0.19, 0.38, 0.024 +19780627, 0.21, -0.61, -0.33, 0.024 +19780628, 0.37, -0.05, -0.04, 0.024 +19780629, 0.21, 0.26, -0.01, 0.024 +19780630, -0.07, 0.17, -0.02, 0.024 +19780703, -0.31, 0.30, 0.06, 0.028 +19780705, -0.87, -0.02, 0.03, 0.028 +19780706, -0.03, -0.37, -0.17, 0.028 +19780707, 0.57, -0.04, -0.07, 0.028 +19780710, 0.34, -0.18, -0.21, 0.028 +19780711, 0.60, -0.26, 0.08, 0.028 +19780712, 0.35, 0.00, -0.02, 0.028 +19780713, 0.02, 0.18, 0.13, 0.028 +19780714, 1.23, -0.31, -0.54, 0.028 +19780717, 0.23, 0.19, -0.08, 0.028 +19780718, -0.78, 0.45, 0.32, 0.028 +19780719, 1.10, -0.38, -0.09, 0.028 +19780720, 0.00, 0.62, -0.05, 0.028 +19780721, -0.32, 0.19, 0.23, 0.028 +19780724, -0.10, 0.03, -0.10, 0.028 +19780725, 0.68, -0.41, 0.01, 0.028 +19780726, 0.60, 0.10, -0.34, 0.028 +19780727, 0.52, 0.24, 0.08, 0.028 +19780728, 0.46, 0.07, 0.02, 0.028 +19780731, 0.71, -0.08, -0.24, 0.028 +19780801, 0.12, -0.02, -0.01, 0.024 +19780802, 2.13, -0.81, -0.62, 0.024 +19780803, 0.43, -0.31, 0.08, 0.024 +19780804, 0.43, -0.17, 0.09, 0.024 +19780807, -0.17, 0.62, -0.12, 0.024 +19780808, 0.48, 0.14, -0.33, 0.024 +19780809, 0.52, 0.48, -0.20, 0.024 +19780810, -0.59, 0.65, 0.30, 0.024 +19780811, 0.32, 0.25, 0.17, 0.024 +19780814, 0.09, 0.34, 0.16, 0.024 +19780815, -0.14, 0.10, 0.15, 0.024 +19780816, 0.72, 0.20, -0.42, 0.024 +19780817, 0.56, 0.41, -0.23, 0.024 +19780818, -0.23, 0.50, 0.17, 0.024 +19780821, -0.80, 0.08, 0.35, 0.024 +19780822, 0.29, 0.05, -0.17, 0.024 +19780823, 0.61, 0.21, -0.36, 0.024 +19780824, 0.27, 0.53, 0.17, 0.024 +19780825, 0.05, 0.50, -0.02, 0.024 +19780828, -0.72, 0.39, 0.23, 0.024 +19780829, -0.58, 0.27, 0.23, 0.024 +19780830, 0.15, 0.24, -0.18, 0.024 +19780831, -0.20, 0.16, 0.01, 0.024 +19780901, 0.40, -0.21, 0.06, 0.031 +19780905, 0.53, -0.45, -0.14, 0.031 +19780906, 0.84, 0.04, -0.17, 0.031 +19780907, 0.12, 0.43, 0.02, 0.031 +19780908, 1.25, -0.20, -0.17, 0.031 +19780911, 0.21, 0.40, 0.12, 0.031 +19780912, 0.07, 0.11, 0.00, 0.031 +19780913, -0.55, 0.51, 0.28, 0.031 +19780914, -1.06, 0.26, 0.41, 0.031 +19780915, -0.95, 0.08, 0.19, 0.031 +19780918, -1.07, -0.35, 0.27, 0.031 +19780919, -0.75, -0.54, 0.33, 0.031 +19780920, -0.94, -0.60, 0.40, 0.031 +19780921, -0.04, -0.41, 0.01, 0.031 +19780922, 0.03, 0.30, -0.05, 0.031 +19780925, -0.03, -0.05, 0.12, 0.031 +19780926, 0.69, 0.02, -0.09, 0.031 +19780927, -0.87, 0.27, 0.25, 0.031 +19780928, 0.21, -0.15, 0.04, 0.031 +19780929, 0.49, 0.08, -0.03, 0.031 +19781002, 0.32, -0.09, -0.04, 0.031 +19781003, -0.31, 0.02, 0.13, 0.031 +19781004, 0.38, -0.48, 0.04, 0.031 +19781005, 0.22, 0.19, 0.09, 0.031 +19781006, 0.23, 0.17, -0.06, 0.031 +19781009, 0.92, -0.36, -0.19, 0.031 +19781010, -0.14, 0.26, 0.05, 0.031 +19781011, 0.86, -0.70, -0.33, 0.031 +19781012, -0.47, 0.68, 0.07, 0.031 +19781013, -0.29, 0.20, 0.10, 0.031 +19781016, -1.82, 0.13, 0.36, 0.031 +19781017, -1.71, -1.32, 0.12, 0.031 +19781018, -0.99, -0.85, 0.08, 0.031 +19781019, -1.32, -0.39, 0.39, 0.031 +19781020, -1.79, -2.00, 0.08, 0.031 +19781023, -0.25, -1.45, -0.15, 0.031 +19781024, -0.58, 0.38, 0.34, 0.031 +19781025, -0.22, 0.24, 0.01, 0.031 +19781026, -1.73, -1.76, 0.63, 0.031 +19781027, -1.97, -1.59, -0.04, 0.031 +19781030, 0.00, -3.09, -0.76, 0.031 +19781031, -1.81, 0.24, 0.73, 0.031 +19781101, 4.12, 0.69, -1.70, 0.033 +19781102, -0.92, 1.21, 0.24, 0.033 +19781103, 0.56, 0.34, -0.13, 0.033 +19781106, -0.80, 0.72, 0.36, 0.033 +19781107, -1.58, -0.95, 0.53, 0.033 +19781108, 0.43, -0.39, -0.57, 0.033 +19781109, 0.14, 0.53, -0.01, 0.033 +19781110, 0.49, 0.40, -0.02, 0.033 +19781113, -1.67, -0.08, 0.44, 0.033 +19781114, -1.02, -1.37, 0.19, 0.033 +19781115, 0.29, 0.24, -0.26, 0.033 +19781116, 1.01, -0.42, -0.47, 0.033 +19781117, 0.95, 0.59, -0.33, 0.033 +19781120, 0.91, 0.19, -0.22, 0.033 +19781121, -0.13, 0.42, -0.03, 0.033 +19781122, 0.59, 0.33, -0.16, 0.033 +19781124, 0.47, 0.32, -0.22, 0.033 +19781127, 0.25, 0.01, -0.17, 0.033 +19781128, -0.80, 0.27, 0.36, 0.033 +19781129, -1.39, 0.12, 0.43, 0.033 +19781130, 0.90, -0.20, -0.42, 0.033 +19781201, 1.57, 0.12, -0.68, 0.039 +19781204, 0.01, 0.29, -0.07, 0.039 +19781205, 1.24, -0.18, -0.36, 0.039 +19781206, 0.17, 0.26, 0.16, 0.039 +19781207, -0.39, 0.37, -0.04, 0.039 +19781208, -0.43, 0.21, 0.42, 0.039 +19781211, 0.43, -0.16, -0.31, 0.039 +19781212, -0.52, 0.20, 0.30, 0.039 +19781213, -0.59, 0.18, 0.02, 0.039 +19781214, -0.03, -0.06, 0.02, 0.039 +19781215, -0.74, 0.05, 0.14, 0.039 +19781218, -2.23, -0.79, 0.60, 0.039 +19781219, 0.72, -0.33, -0.71, 0.039 +19781220, 0.41, 0.22, -0.31, 0.039 +19781221, 0.05, 0.34, -0.20, 0.039 +19781222, 1.66, -0.17, -0.61, 0.039 +19781226, 0.98, -0.37, -0.82, 0.039 +19781227, -0.84, 0.20, 0.32, 0.039 +19781228, -0.40, 0.06, -0.18, 0.039 +19781229, -0.13, 0.70, 0.10, 0.039 +19790102, 0.58, -0.18, 0.46, 0.035 +19790103, 1.12, 0.36, -0.06, 0.035 +19790104, 0.94, 0.42, 0.01, 0.035 +19790105, 0.65, 0.63, -0.03, 0.035 +19790108, -0.28, 0.05, 0.09, 0.035 +19790109, 0.51, 0.34, 0.02, 0.035 +19790110, -0.55, 0.32, 0.22, 0.035 +19790111, 0.42, -0.04, -0.39, 0.035 +19790112, 0.75, 0.36, -0.23, 0.035 +19790115, 0.65, -0.12, -0.12, 0.035 +19790116, -1.13, 0.24, 0.58, 0.035 +19790117, -0.08, -0.22, 0.23, 0.035 +19790118, 0.40, 0.49, 0.07, 0.035 +19790119, -0.02, 0.40, 0.24, 0.035 +19790122, 0.05, -0.10, -0.12, 0.035 +19790123, 0.63, -0.02, 0.16, 0.035 +19790124, -0.36, 0.06, 0.30, 0.035 +19790125, 0.93, -0.31, -0.01, 0.035 +19790126, 0.64, -0.07, 0.09, 0.035 +19790129, -0.24, 0.13, 0.18, 0.035 +19790130, -0.35, 0.24, 0.22, 0.035 +19790131, -1.13, 0.40, 0.22, 0.035 +19790201, 0.04, -0.19, -0.04, 0.038 +19790202, -0.33, 0.48, 0.07, 0.038 +19790205, -1.31, -0.09, 0.27, 0.038 +19790206, -0.04, -0.18, 0.20, 0.038 +19790207, -0.95, -0.34, 0.25, 0.038 +19790208, 0.52, 0.14, -0.12, 0.038 +19790209, 0.25, 0.32, 0.04, 0.038 +19790212, 0.25, -0.20, -0.26, 0.038 +19790213, 0.74, 0.17, -0.07, 0.038 +19790214, -0.14, 0.04, 0.24, 0.038 +19790215, -0.07, 0.27, -0.11, 0.038 +19790216, 0.03, 0.32, 0.09, 0.038 +19790220, 0.58, -0.26, -0.18, 0.038 +19790221, -0.28, 0.24, 0.23, 0.038 +19790222, -0.57, 0.29, 0.13, 0.038 +19790223, -0.57, 0.18, 0.15, 0.038 +19790226, -0.14, 0.06, -0.05, 0.038 +19790227, -1.70, -0.55, 0.48, 0.038 +19790228, 0.09, -0.23, -0.09, 0.038 +19790301, 0.67, -0.05, 0.02, 0.037 +19790302, 0.12, 0.33, 0.00, 0.037 +19790305, 1.10, -0.31, -0.06, 0.037 +19790306, -0.23, 0.15, 0.62, 0.037 +19790307, 0.64, 0.10, 0.15, 0.037 +19790308, 1.01, -0.05, -0.07, 0.037 +19790309, 0.03, 0.09, 0.07, 0.037 +19790312, 0.15, 0.14, -0.17, 0.037 +19790313, 0.23, 0.25, -0.11, 0.037 +19790314, -0.07, 0.21, -0.03, 0.037 +19790315, 0.17, 0.05, 0.17, 0.037 +19790316, 0.74, 0.00, -0.31, 0.037 +19790319, 0.35, -0.04, -0.04, 0.037 +19790320, -0.53, 0.29, 0.03, 0.037 +19790321, 0.66, -0.11, -0.37, 0.037 +19790322, 0.40, 0.11, -0.16, 0.037 +19790323, -0.02, 0.51, 0.08, 0.037 +19790326, -0.50, 0.17, 0.23, 0.037 +19790327, 1.30, -0.50, -0.43, 0.037 +19790328, -0.36, 0.41, 0.09, 0.037 +19790329, -0.03, 0.52, -0.28, 0.037 +19790330, -0.31, 0.65, -0.03, 0.037 +19790402, -0.68, 0.24, 0.15, 0.040 +19790403, 1.34, -0.29, -0.15, 0.040 +19790404, 0.30, 0.01, 0.12, 0.040 +19790405, 0.55, -0.04, -0.15, 0.040 +19790406, -0.06, 0.08, 0.08, 0.040 +19790409, -0.30, 0.15, 0.08, 0.040 +19790410, 0.45, -0.04, 0.17, 0.040 +19790411, -0.90, 0.38, 0.40, 0.040 +19790412, -0.24, 0.34, 0.30, 0.040 +19790416, -0.87, 0.01, 0.12, 0.040 +19790417, -0.08, -0.10, 0.02, 0.040 +19790418, 0.49, 0.30, -0.04, 0.040 +19790419, -0.38, 0.37, -0.05, 0.040 +19790420, 0.01, 0.19, -0.12, 0.040 +19790423, 0.30, 0.01, -0.22, 0.040 +19790424, 0.52, -0.03, -0.05, 0.040 +19790425, 0.33, 0.10, 0.00, 0.040 +19790426, -0.47, 0.36, 0.26, 0.040 +19790427, -0.25, 0.18, 0.14, 0.040 +19790430, -0.07, -0.12, -0.04, 0.040 +19790501, -0.02, 0.06, 0.09, 0.037 +19790502, 0.05, 0.17, -0.08, 0.037 +19790503, 0.02, 0.12, -0.19, 0.037 +19790504, -0.97, 0.19, 0.25, 0.037 +19790507, -1.82, -0.82, 0.33, 0.037 +19790508, -0.02, -0.72, -0.16, 0.037 +19790509, 0.33, 0.22, 0.21, 0.037 +19790510, -0.89, 0.12, 0.23, 0.037 +19790511, 0.12, 0.02, 0.02, 0.037 +19790514, -0.48, 0.18, 0.02, 0.037 +19790515, 0.07, -0.06, 0.22, 0.037 +19790516, 0.22, -0.20, 0.05, 0.037 +19790517, 1.47, -0.45, 0.08, 0.037 +19790518, 0.08, 0.38, 0.00, 0.037 +19790521, 0.30, 0.19, -0.16, 0.037 +19790522, 0.46, -0.01, -0.10, 0.037 +19790523, -0.39, 0.51, 0.04, 0.037 +19790524, 0.13, 0.15, 0.04, 0.037 +19790525, 0.29, 0.25, 0.03, 0.037 +19790529, -0.18, 0.02, 0.05, 0.037 +19790530, -0.94, -0.06, 0.21, 0.037 +19790531, 0.01, 0.33, 0.73, 0.037 +19790601, 0.10, 0.16, -0.12, 0.038 +19790604, 0.18, -0.03, 0.35, 0.038 +19790605, 1.18, -0.14, -0.37, 0.038 +19790606, 0.66, -0.09, -0.25, 0.038 +19790607, 0.57, -0.03, -0.03, 0.038 +19790608, -0.20, 0.37, 0.54, 0.038 +19790611, 0.26, 0.14, -0.03, 0.038 +19790612, 0.90, -0.08, 0.14, 0.038 +19790613, -0.35, 0.51, 0.56, 0.038 +19790614, -0.19, -0.08, 0.11, 0.038 +19790615, 0.05, 0.09, -0.14, 0.038 +19790618, -0.57, 0.15, 0.21, 0.038 +19790619, 0.02, -0.04, 0.27, 0.038 +19790620, 0.14, 0.38, 0.12, 0.038 +19790621, 0.39, 0.14, -0.17, 0.038 +19790622, 0.44, -0.12, -0.06, 0.038 +19790625, -0.52, -0.15, 0.14, 0.038 +19790626, -0.44, 0.08, 0.19, 0.038 +19790627, 0.56, -0.09, -0.09, 0.038 +19790628, 0.54, -0.04, 0.04, 0.038 +19790629, 0.02, -0.05, -0.02, 0.038 +19790702, -0.91, -0.06, 0.48, 0.036 +19790703, 0.14, 0.04, 0.28, 0.036 +19790705, 0.37, 0.19, 0.08, 0.036 +19790706, 1.04, -0.30, -0.26, 0.036 +19790709, 0.78, -0.41, 0.22, 0.036 +19790710, -0.31, 0.18, 0.10, 0.036 +19790711, -0.60, 0.41, 0.21, 0.036 +19790712, -0.76, 0.50, 0.35, 0.036 +19790713, -0.34, 0.13, 0.12, 0.036 +19790716, 0.41, -0.14, -0.02, 0.036 +19790717, -0.97, -0.08, 0.53, 0.036 +19790718, -0.29, -0.33, -0.13, 0.036 +19790719, -0.01, 0.49, 0.11, 0.036 +19790720, 0.25, 0.04, -0.21, 0.036 +19790723, -0.29, 0.11, -0.04, 0.036 +19790724, 0.31, -0.01, -0.01, 0.036 +19790725, 1.05, -0.27, -0.20, 0.036 +19790726, 0.11, 0.31, 0.02, 0.036 +19790727, 0.12, 0.38, 0.05, 0.036 +19790730, 0.13, 0.13, -0.11, 0.036 +19790731, 0.59, -0.10, 0.02, 0.036 +19790801, 0.35, 0.25, -0.18, 0.033 +19790802, 0.05, 0.35, -0.24, 0.033 +19790803, -0.08, 0.05, 0.16, 0.033 +19790806, 0.20, -0.16, -0.17, 0.033 +19790807, 1.17, -0.36, -0.50, 0.033 +19790808, 0.33, 0.06, -0.13, 0.033 +19790809, -0.29, 0.43, 0.09, 0.033 +19790810, 0.80, -0.11, -0.54, 0.033 +19790813, 0.86, -0.14, -0.23, 0.033 +19790814, 0.15, 0.16, 0.33, 0.033 +19790815, 0.69, 0.12, -0.16, 0.033 +19790816, -0.20, 0.09, -0.03, 0.033 +19790817, 0.24, -0.06, 0.15, 0.033 +19790820, 0.48, -0.12, -0.04, 0.033 +19790821, 0.02, 0.12, 0.00, 0.033 +19790822, 0.15, 0.23, 0.04, 0.033 +19790823, -0.28, 0.39, 0.14, 0.033 +19790824, 0.00, -0.09, 0.24, 0.033 +19790827, 0.53, -0.28, 0.10, 0.033 +19790828, -0.10, 0.16, -0.04, 0.033 +19790829, 0.01, 0.30, -0.11, 0.033 +19790830, -0.02, 0.29, -0.10, 0.033 +19790831, 0.31, 0.26, -0.22, 0.033 +19790904, -1.61, 0.15, 0.32, 0.043 +19790905, -1.25, -0.77, 0.20, 0.043 +19790906, 0.47, 0.26, -0.11, 0.043 +19790907, 0.76, -0.12, 0.22, 0.043 +19790910, 0.47, -0.06, 0.05, 0.043 +19790911, -0.68, 0.16, 0.05, 0.043 +19790912, 0.31, 0.09, -0.19, 0.043 +19790913, 0.03, 0.43, -0.49, 0.043 +19790914, 0.91, 0.00, -0.35, 0.043 +19790917, -0.11, -0.06, -0.18, 0.043 +19790918, -0.76, 0.02, 0.00, 0.043 +19790919, 0.21, -0.07, -0.05, 0.043 +19790920, 1.67, -1.25, -0.31, 0.043 +19790921, -0.05, 0.24, 0.04, 0.043 +19790924, -0.79, 0.30, -0.15, 0.043 +19790925, 0.01, -0.27, -0.16, 0.043 +19790926, 0.22, 0.10, 0.01, 0.043 +19790927, 0.10, 0.10, 0.02, 0.043 +19790928, -0.69, 0.52, 0.19, 0.043 +19791001, -0.58, 0.33, -0.18, 0.038 +19791002, 0.78, -0.27, -0.11, 0.038 +19791003, 0.13, 0.35, -0.20, 0.038 +19791004, 0.56, 0.04, 0.01, 0.038 +19791005, 0.85, -0.08, -0.02, 0.038 +19791008, -1.24, -0.03, -0.02, 0.038 +19791009, -3.44, -1.29, 0.01, 0.038 +19791010, -1.92, -2.69, -0.44, 0.038 +19791011, -0.02, 0.73, 0.01, 0.038 +19791012, -0.31, 0.73, 0.03, 0.038 +19791015, -1.23, -0.64, 0.04, 0.038 +19791016, -0.21, 0.02, 0.08, 0.038 +19791017, 0.30, 0.26, -0.13, 0.038 +19791018, 0.18, 0.04, -0.02, 0.038 +19791019, -2.09, -0.05, 0.36, 0.038 +19791022, -1.43, -1.63, -0.37, 0.038 +19791023, -0.37, -0.05, -0.26, 0.038 +19791024, 0.21, 0.12, -0.13, 0.038 +19791025, -0.34, 0.25, 0.19, 0.038 +19791026, 0.64, 0.25, -0.23, 0.038 +19791029, 0.16, 0.04, -0.10, 0.038 +19791030, 1.77, -0.51, -0.74, 0.038 +19791031, -0.62, 0.57, 0.17, 0.038 +19791101, 0.79, -0.16, -0.20, 0.047 +19791102, 0.17, 0.28, -0.15, 0.047 +19791105, -0.68, 0.11, -0.02, 0.047 +19791106, -0.61, 0.19, 0.08, 0.047 +19791107, -1.24, 0.06, 0.25, 0.047 +19791108, 0.53, -0.11, -0.37, 0.047 +19791109, 1.23, -0.07, -0.14, 0.047 +19791112, 1.71, -0.77, -0.30, 0.047 +19791113, -0.36, 0.32, 0.26, 0.047 +19791114, 0.37, 0.12, -0.25, 0.047 +19791115, 0.74, 0.23, -0.48, 0.047 +19791116, -0.18, 0.04, -0.05, 0.047 +19791119, 0.41, 0.03, -0.39, 0.047 +19791120, -0.48, 0.46, -0.21, 0.047 +19791121, 0.08, -0.23, -0.19, 0.047 +19791123, 0.76, 0.07, -0.31, 0.047 +19791126, 2.11, -0.28, -0.40, 0.047 +19791127, -0.19, 0.76, 0.29, 0.047 +19791128, 0.41, 0.40, -0.34, 0.047 +19791129, 0.07, 0.53, -0.19, 0.047 +19791130, -0.49, 0.54, 0.07, 0.047 +19791203, -0.30, 0.14, 0.19, 0.047 +19791204, 0.83, -0.20, -0.42, 0.047 +19791205, 0.50, 0.27, -0.37, 0.047 +19791206, 0.69, 0.20, -0.19, 0.047 +19791207, -0.35, 0.67, -0.08, 0.047 +19791210, 0.23, 0.06, -0.03, 0.047 +19791211, -0.22, 0.11, 0.06, 0.047 +19791212, 0.06, 0.54, -0.33, 0.047 +19791213, 0.14, 0.24, -0.48, 0.047 +19791214, 1.05, -0.20, -0.40, 0.047 +19791217, 0.44, 0.06, -0.24, 0.047 +19791218, -0.92, 0.30, 0.54, 0.047 +19791219, -0.14, 0.14, -0.06, 0.047 +19791220, 0.13, 0.26, -0.02, 0.047 +19791221, -0.61, 0.59, 0.02, 0.047 +19791224, 0.04, 0.00, 0.18, 0.047 +19791226, 0.09, 0.01, 0.03, 0.047 +19791227, 0.07, 0.14, -0.10, 0.047 +19791228, 0.03, 0.37, -0.10, 0.047 +19791231, 0.05, 0.28, -0.10, 0.047 +19800102, -2.05, 0.18, 1.07, 0.036 +19800103, -0.73, -0.90, 0.33, 0.036 +19800104, 1.32, 0.58, -0.38, 0.036 +19800107, 0.39, 0.24, 0.05, 0.036 +19800108, 1.92, -0.36, -0.70, 0.036 +19800109, 0.11, 0.64, 0.01, 0.036 +19800110, 0.85, 0.32, -0.02, 0.036 +19800111, 0.20, 0.21, 0.45, 0.036 +19800114, 0.34, 0.30, 0.66, 0.036 +19800115, 0.54, -0.11, -0.10, 0.036 +19800116, 0.04, 0.46, -0.10, 0.036 +19800117, -0.28, 0.46, 0.28, 0.036 +19800118, 0.22, 0.01, 0.09, 0.036 +19800121, 0.85, -0.17, 0.25, 0.036 +19800122, -0.59, -0.01, -0.04, 0.036 +19800123, 1.50, -0.70, -0.17, 0.036 +19800124, 0.25, 0.17, -0.09, 0.036 +19800125, -0.03, 0.33, -0.19, 0.036 +19800128, 1.00, -0.41, -0.29, 0.036 +19800129, -0.65, -0.04, 0.22, 0.036 +19800130, 0.94, -0.21, 0.17, 0.036 +19800131, -0.72, 0.54, 0.17, 0.036 +19800201, 0.66, -0.29, 0.11, 0.044 +19800204, -0.46, 0.34, 0.20, 0.044 +19800205, 0.21, -0.01, -0.07, 0.044 +19800206, 0.84, -0.67, 0.19, 0.044 +19800207, 0.43, -0.07, 0.45, 0.044 +19800208, 1.25, -0.72, 0.51, 0.044 +19800211, -0.72, 0.37, -0.19, 0.044 +19800212, 0.58, -0.45, -0.52, 0.044 +19800213, 0.27, -0.11, -0.26, 0.044 +19800214, -1.43, 0.47, 0.28, 0.044 +19800215, -0.92, 0.28, 0.01, 0.044 +19800219, -0.79, 0.01, -0.06, 0.044 +19800220, 1.41, -0.91, 0.08, 0.044 +19800221, -0.93, 0.41, -0.09, 0.044 +19800222, -0.40, -0.52, 0.16, 0.044 +19800225, -1.41, 0.31, -0.23, 0.044 +19800226, 0.56, -0.43, 0.14, 0.044 +19800227, -1.24, 0.81, 0.27, 0.044 +19800228, -0.03, -0.08, -0.26, 0.044 +19800229, 0.97, -0.66, -0.11, 0.044 +19800303, -0.94, 0.31, 0.02, 0.057 +19800304, -0.08, -1.14, 0.20, 0.057 +19800305, -1.59, -0.19, 0.42, 0.057 +19800306, -2.42, -0.34, -0.21, 0.057 +19800307, -1.73, -0.02, -0.35, 0.057 +19800310, -0.76, -1.52, 0.30, 0.057 +19800311, 1.21, -0.46, 0.01, 0.057 +19800312, -0.70, 0.64, -0.04, 0.057 +19800313, -1.02, 0.88, -0.45, 0.057 +19800314, -0.34, -0.22, -0.02, 0.057 +19800317, -3.20, -0.27, 0.00, 0.057 +19800318, 1.32, -2.15, 0.25, 0.057 +19800319, 0.36, 0.46, -0.01, 0.057 +19800320, -1.05, 0.96, -0.24, 0.057 +19800321, -0.77, 0.08, 0.26, 0.057 +19800324, -3.13, -0.41, 0.59, 0.057 +19800325, -0.55, -1.41, -0.43, 0.057 +19800326, -0.54, 0.34, -0.20, 0.057 +19800327, -1.85, -5.14, 0.32, 0.057 +19800328, 2.93, 1.98, -1.49, 0.057 +19800331, 1.46, 0.12, -0.16, 0.057 +19800401, 0.32, 0.85, -0.07, 0.059 +19800402, 0.84, 0.46, -0.31, 0.059 +19800403, -0.41, 0.38, 0.12, 0.059 +19800407, -2.07, 0.01, 0.51, 0.059 +19800408, 0.94, -0.52, -0.09, 0.059 +19800409, 1.81, -0.84, 0.22, 0.059 +19800410, 0.87, 0.45, 0.24, 0.059 +19800411, -0.11, 0.53, 0.41, 0.059 +19800414, -1.03, 0.18, 0.17, 0.059 +19800415, -0.23, -0.08, 0.12, 0.059 +19800416, -1.09, 0.39, 0.59, 0.059 +19800417, -0.55, -0.26, 0.21, 0.059 +19800418, -0.41, 0.32, 0.13, 0.059 +19800421, -0.89, -0.44, 0.39, 0.059 +19800422, 3.41, -0.83, -1.09, 0.059 +19800423, 0.35, 0.63, -0.05, 0.059 +19800424, 0.81, 0.28, -0.43, 0.059 +19800425, 0.47, -0.87, -0.24, 0.059 +19800428, 0.39, 0.11, 0.01, 0.059 +19800429, 0.30, 0.23, -0.03, 0.059 +19800430, 0.29, -0.05, 0.14, 0.059 +19800501, -0.66, 0.34, 0.30, 0.038 +19800502, 0.15, 0.10, 0.18, 0.038 +19800505, 0.76, -0.20, 0.24, 0.038 +19800506, 0.14, 0.50, -0.06, 0.038 +19800507, 0.87, -0.01, 0.64, 0.038 +19800508, -0.71, 0.68, 0.16, 0.038 +19800509, -1.18, 0.89, 0.16, 0.038 +19800512, -0.02, 0.03, -0.02, 0.038 +19800513, 1.19, -0.39, -0.24, 0.038 +19800514, 0.65, 0.42, -0.26, 0.038 +19800515, 0.20, 0.45, -0.38, 0.038 +19800516, 0.38, 0.15, -0.20, 0.038 +19800519, 0.24, 0.10, -0.12, 0.038 +19800520, -0.08, 0.12, -0.01, 0.038 +19800521, 0.06, -0.05, 0.11, 0.038 +19800522, 1.21, -0.37, -0.24, 0.038 +19800523, 1.45, -0.43, -0.09, 0.038 +19800527, 0.66, -0.27, 0.28, 0.038 +19800528, 0.61, -0.45, -0.02, 0.038 +19800529, -1.47, 0.82, -0.09, 0.038 +19800530, 0.70, -0.46, 0.02, 0.038 +19800602, -0.25, 0.31, 0.02, 0.029 +19800603, -0.21, 0.23, -0.05, 0.029 +19800604, 1.69, -0.69, -0.68, 0.029 +19800605, 0.21, 0.30, -0.02, 0.029 +19800606, 0.40, 0.09, -0.20, 0.029 +19800609, 0.37, -0.15, 0.19, 0.029 +19800610, 0.80, -0.37, -0.12, 0.029 +19800611, 1.08, -0.46, -0.22, 0.029 +19800612, -0.25, 0.19, -0.29, 0.029 +19800613, 0.29, 0.46, 0.04, 0.029 +19800616, 0.17, -0.13, 0.03, 0.029 +19800617, 0.03, 0.10, 0.16, 0.029 +19800618, 0.15, -0.24, 0.23, 0.029 +19800619, -1.27, 0.83, 0.16, 0.029 +19800620, -0.41, 0.27, 0.22, 0.029 +19800623, 0.39, -0.05, -0.10, 0.029 +19800624, 0.58, -0.11, -0.13, 0.029 +19800625, 1.21, -0.33, -0.09, 0.029 +19800626, -0.36, 0.39, 0.00, 0.029 +19800627, -0.12, 0.33, -0.17, 0.029 +19800630, -1.46, 0.61, 0.14, 0.029 +19800701, 0.55, -0.07, -0.69, 0.024 +19800702, 0.66, 0.16, -0.47, 0.024 +19800703, 1.39, -0.28, -0.52, 0.024 +19800707, 0.76, -0.12, -0.19, 0.024 +19800708, -0.30, 0.39, 0.06, 0.024 +19800709, 0.13, 0.26, -0.08, 0.024 +19800710, -0.75, 0.73, 0.14, 0.024 +19800711, 0.70, 0.04, -0.53, 0.024 +19800714, 1.72, -0.23, -0.97, 0.024 +19800715, -0.46, 0.64, 0.07, 0.024 +19800716, 0.21, 0.38, -0.12, 0.024 +19800717, 1.41, -0.22, -0.83, 0.024 +19800718, 0.33, 0.36, -0.17, 0.024 +19800721, 0.34, -0.03, -0.22, 0.024 +19800722, -0.26, 0.07, 0.20, 0.024 +19800723, -0.16, 0.25, -0.07, 0.024 +19800724, -0.11, 0.27, -0.22, 0.024 +19800725, -0.76, 0.43, 0.06, 0.024 +19800728, 0.43, -0.23, -0.40, 0.024 +19800729, 0.76, 0.07, -0.52, 0.024 +19800730, 0.08, 0.86, -0.52, 0.024 +19800731, -0.38, 0.18, 0.12, 0.024 +19800801, -0.18, 0.88, -0.32, 0.030 +19800804, -0.36, 0.03, 0.34, 0.030 +19800805, -0.02, 0.46, -0.17, 0.030 +19800806, 0.66, 0.01, -0.42, 0.030 +19800807, 1.45, -0.32, -0.77, 0.030 +19800808, 0.29, 0.12, -0.12, 0.030 +19800811, 0.91, -0.22, -0.24, 0.030 +19800812, -0.74, 0.31, 0.17, 0.030 +19800813, -0.28, 0.50, 0.08, 0.030 +19800814, 1.51, -0.16, -0.82, 0.030 +19800815, 0.40, 0.16, -0.23, 0.030 +19800818, -1.79, 0.09, 1.00, 0.030 +19800819, -0.61, 0.05, 0.07, 0.030 +19800820, 0.98, -0.13, -0.39, 0.030 +19800821, 1.47, 0.09, -0.74, 0.030 +19800822, 0.60, 0.21, -0.38, 0.030 +19800825, -0.50, 0.37, -0.20, 0.030 +19800826, -0.12, 0.40, -0.32, 0.030 +19800827, -0.93, 0.57, 0.28, 0.030 +19800828, -1.14, 0.13, 0.68, 0.030 +19800829, 0.26, 0.19, 0.00, 0.030 +19800902, 0.99, -0.28, -0.03, 0.036 +19800903, 1.92, -0.48, -0.41, 0.036 +19800904, -0.38, 0.58, 0.13, 0.036 +19800905, -0.31, 0.69, -0.19, 0.036 +19800908, -1.22, 0.69, 0.19, 0.036 +19800909, 0.54, -0.10, -0.32, 0.036 +19800910, 0.67, 0.34, -0.24, 0.036 +19800911, 0.68, 0.50, -0.96, 0.036 +19800912, 0.08, 0.63, -0.59, 0.036 +19800915, 0.09, 0.07, -0.40, 0.036 +19800916, 0.90, 0.06, -0.78, 0.036 +19800917, 1.50, -0.29, -1.08, 0.036 +19800918, -0.34, 0.16, 0.08, 0.036 +19800919, 0.57, 0.19, -0.45, 0.036 +19800922, 0.76, -0.62, -0.78, 0.036 +19800923, -0.68, -0.40, 0.27, 0.036 +19800924, 0.61, -0.71, -0.52, 0.036 +19800925, -1.17, 0.59, 0.25, 0.036 +19800926, -2.01, -0.06, 0.82, 0.036 +19800929, -2.42, -0.64, 1.08, 0.036 +19800930, 1.50, -0.06, -0.95, 0.036 +19801001, 1.31, -0.35, -1.56, 0.041 +19801002, 0.72, -0.05, -0.58, 0.041 +19801003, 1.11, 0.31, -0.59, 0.041 +19801006, 1.71, -0.24, -0.90, 0.041 +19801007, -0.50, 0.34, 0.05, 0.041 +19801008, 0.48, 0.23, -0.56, 0.041 +19801009, -0.37, 0.55, 0.05, 0.041 +19801010, -0.42, 0.51, 0.40, 0.041 +19801013, 1.13, -0.47, -0.45, 0.041 +19801014, 0.00, 0.25, -0.09, 0.041 +19801015, 1.10, -0.59, -0.55, 0.041 +19801016, -1.20, 0.37, 0.74, 0.041 +19801017, -0.52, 0.15, 0.08, 0.041 +19801020, 0.60, -0.48, 0.05, 0.041 +19801021, -0.63, 0.27, 0.10, 0.041 +19801022, 0.17, 0.41, -0.22, 0.041 +19801023, -1.79, 0.60, 0.90, 0.041 +19801024, 0.25, -0.06, 0.15, 0.041 +19801027, -1.41, 0.58, 0.44, 0.041 +19801028, -0.01, -0.13, -0.54, 0.041 +19801029, -0.14, 0.24, -0.23, 0.041 +19801030, -1.43, 0.44, 0.54, 0.041 +19801031, 0.97, -0.61, -0.20, 0.041 +19801103, 1.10, -0.52, -0.79, 0.053 +19801105, 1.69, -0.37, -1.42, 0.053 +19801106, -1.79, 0.38, 0.24, 0.053 +19801107, 0.12, -0.47, -0.10, 0.053 +19801110, 0.27, -0.18, -0.40, 0.053 +19801111, 1.20, -0.35, -0.23, 0.053 +19801112, 2.35, -0.96, -1.16, 0.053 +19801113, 1.47, -0.34, -0.88, 0.053 +19801114, 0.49, 0.12, -0.49, 0.053 +19801117, 0.39, -0.48, -0.47, 0.053 +19801118, 1.37, -0.60, -0.96, 0.053 +19801119, -0.37, 0.67, -0.58, 0.053 +19801120, 0.91, -0.41, -0.32, 0.053 +19801121, -0.87, 0.68, -0.05, 0.053 +19801124, -0.64, -0.37, 0.81, 0.053 +19801125, 0.76, -0.07, -0.19, 0.053 +19801126, 0.50, 0.08, -0.71, 0.053 +19801128, 0.27, 0.03, 0.06, 0.053 +19801201, -2.21, 0.91, 0.35, 0.059 +19801202, -0.30, -0.39, 0.24, 0.059 +19801203, -0.07, 0.56, -0.37, 0.059 +19801204, -0.12, 0.58, -0.20, 0.059 +19801205, -1.91, 0.60, 0.88, 0.059 +19801208, -2.71, -0.79, 1.68, 0.059 +19801209, -0.21, -0.64, 0.23, 0.059 +19801210, -1.60, 0.30, 0.84, 0.059 +19801211, -1.16, -1.51, 0.50, 0.059 +19801212, 1.38, -0.04, -1.08, 0.059 +19801215, 0.11, 0.24, -0.49, 0.059 +19801216, 0.71, -0.76, -0.47, 0.059 +19801217, 1.52, -0.85, -0.34, 0.059 +19801218, 0.41, 0.21, 1.27, 0.059 +19801219, 0.58, 0.18, 0.60, 0.059 +19801222, 1.28, -0.33, -0.04, 0.059 +19801223, -0.31, 0.55, 0.16, 0.059 +19801224, 0.35, 0.00, 0.19, 0.059 +19801226, 0.46, -0.05, -0.26, 0.059 +19801229, -1.06, 0.40, -0.24, 0.059 +19801230, 0.16, -0.06, -0.44, 0.059 +19801231, 0.35, 0.60, -0.33, 0.059 +19810102, 0.56, 0.22, 0.64, 0.049 +19810105, 0.95, -0.23, 0.94, 0.049 +19810106, 0.05, 0.19, 0.84, 0.049 +19810107, -2.65, -1.27, 1.80, 0.049 +19810108, -1.37, 0.72, 0.64, 0.049 +19810109, 0.37, 0.67, -0.35, 0.049 +19810112, 0.02, 0.38, 0.45, 0.049 +19810113, -0.33, 0.17, 0.05, 0.049 +19810114, 0.27, 0.21, -0.36, 0.049 +19810115, 0.50, 0.01, -0.47, 0.049 +19810116, 0.49, -0.06, -0.09, 0.049 +19810119, -0.25, 0.30, 0.17, 0.049 +19810120, -1.89, 0.65, 0.58, 0.049 +19810121, -0.36, -0.01, 0.32, 0.049 +19810122, -0.83, 0.44, 0.09, 0.049 +19810123, -0.05, 0.22, -0.19, 0.049 +19810126, -0.51, -0.15, 0.37, 0.049 +19810127, 1.01, -0.45, -0.31, 0.049 +19810128, -0.46, 0.42, 0.35, 0.049 +19810129, -0.08, 0.30, 0.45, 0.049 +19810130, -0.48, 0.34, 0.95, 0.049 +19810202, -2.25, -0.15, 1.79, 0.056 +19810203, 1.08, -0.93, -0.48, 0.056 +19810204, 0.21, 0.49, -0.14, 0.056 +19810205, 0.94, 0.11, -0.26, 0.056 +19810206, 0.77, 0.16, -0.44, 0.056 +19810209, -0.99, 0.69, 0.53, 0.056 +19810210, -0.14, 0.05, 0.13, 0.056 +19810211, -0.74, 0.41, 0.52, 0.056 +19810212, -0.66, 0.04, 0.56, 0.056 +19810213, -0.31, 0.07, -0.10, 0.056 +19810217, 0.43, -0.58, -0.04, 0.056 +19810218, 0.45, -0.27, -0.51, 0.056 +19810219, -1.47, 0.36, 0.55, 0.056 +19810220, -0.19, -0.20, 0.50, 0.056 +19810223, 0.53, -0.33, -0.13, 0.056 +19810224, 0.17, 0.20, -0.13, 0.056 +19810225, 0.70, -0.76, -0.23, 0.056 +19810226, 1.17, 0.13, -0.73, 0.056 +19810227, 0.95, 0.11, -0.53, 0.056 +19810302, 0.60, 0.04, -0.45, 0.055 +19810303, -0.92, 0.75, 0.56, 0.055 +19810304, 0.14, -0.02, 0.29, 0.055 +19810305, -0.51, 0.64, 0.19, 0.055 +19810306, -0.09, 0.43, 0.16, 0.055 +19810309, 0.72, -0.29, -0.53, 0.055 +19810310, -0.47, -0.07, 0.58, 0.055 +19810311, -0.32, 0.06, 0.37, 0.055 +19810312, 2.23, -0.99, -0.69, 0.055 +19810313, 0.03, 0.24, 0.50, 0.055 +19810316, 1.01, -0.27, -0.07, 0.055 +19810317, -0.45, 0.34, 0.74, 0.055 +19810318, 0.23, 0.25, 0.31, 0.055 +19810319, -0.50, 0.90, 0.59, 0.055 +19810320, 0.63, 0.42, -0.30, 0.055 +19810323, 1.02, -0.39, -1.01, 0.055 +19810324, -0.60, 0.48, -0.30, 0.055 +19810325, 1.54, -0.57, -0.45, 0.055 +19810326, -0.45, 0.52, 0.12, 0.055 +19810327, -1.01, 0.67, 0.10, 0.055 +19810330, -0.30, 0.22, -0.07, 0.055 +19810331, 1.05, -0.18, -0.10, 0.055 +19810401, 0.49, 0.19, 0.00, 0.051 +19810402, -0.08, 0.39, 0.18, 0.051 +19810403, -0.48, 0.63, 0.23, 0.051 +19810406, -1.11, 0.35, 0.17, 0.051 +19810407, -0.04, 0.33, 0.27, 0.051 +19810408, 0.32, 0.02, 0.22, 0.051 +19810409, 0.37, 0.21, 0.45, 0.051 +19810410, 0.03, 0.56, -0.14, 0.051 +19810413, -1.05, 0.49, 0.31, 0.051 +19810414, -0.56, 0.06, 0.74, 0.051 +19810415, 1.01, -0.13, -0.39, 0.051 +19810416, 0.44, 0.42, -0.42, 0.051 +19810420, 0.54, 0.06, -0.32, 0.051 +19810421, -0.95, 0.56, 0.36, 0.051 +19810422, -0.08, 0.16, 0.38, 0.051 +19810423, -0.03, 0.58, -0.01, 0.051 +19810424, 0.72, -0.18, -0.15, 0.051 +19810427, 0.20, -0.25, 0.04, 0.051 +19810428, -0.95, -0.29, 0.62, 0.051 +19810429, -0.94, 0.14, 0.21, 0.051 +19810430, 0.01, 0.23, -0.42, 0.051 +19810501, -0.17, 0.02, -0.30, 0.057 +19810504, -1.53, -0.35, 0.43, 0.057 +19810505, -0.41, -0.37, -0.35, 0.057 +19810506, 0.40, -0.05, -0.39, 0.057 +19810507, 0.70, -0.23, -0.34, 0.057 +19810508, 0.08, 0.35, 0.07, 0.057 +19810511, -1.42, 0.33, 0.73, 0.057 +19810512, 0.65, -0.66, 0.17, 0.057 +19810513, -0.04, 0.59, -0.17, 0.057 +19810514, 0.56, 0.00, 0.21, 0.057 +19810515, 0.61, -0.20, 0.22, 0.057 +19810518, 0.16, 0.06, -0.34, 0.057 +19810519, -0.32, 0.05, -0.01, 0.057 +19810520, 0.10, 0.45, -0.39, 0.057 +19810521, -0.11, 0.35, 0.12, 0.057 +19810522, -0.01, 0.38, -0.13, 0.057 +19810526, 0.88, -0.52, -0.39, 0.057 +19810527, 0.65, 0.22, -0.21, 0.057 +19810528, -0.17, 0.83, 0.29, 0.057 +19810529, -0.46, 0.61, 0.35, 0.057 +19810601, -0.23, 0.45, 0.37, 0.061 +19810602, -1.45, 0.18, 0.88, 0.061 +19810603, -0.03, -0.03, 0.13, 0.061 +19810604, 0.15, 0.04, -0.10, 0.061 +19810605, 0.85, -0.60, -0.30, 0.061 +19810608, -0.03, -0.16, 0.44, 0.061 +19810609, -0.34, -0.10, 0.31, 0.061 +19810610, 0.25, -0.18, 0.40, 0.061 +19810611, 1.01, -0.02, 0.10, 0.061 +19810612, -0.04, 0.38, 0.48, 0.061 +19810615, 0.06, -0.04, 1.11, 0.061 +19810616, -1.16, 0.06, 1.37, 0.061 +19810617, 0.68, -0.69, -0.23, 0.061 +19810618, -1.21, 0.53, 0.28, 0.061 +19810619, 0.38, -0.22, -0.35, 0.061 +19810622, -0.21, -0.10, 0.26, 0.061 +19810623, 0.93, -0.73, -0.16, 0.061 +19810624, -0.55, 0.53, 0.18, 0.061 +19810625, 0.10, -0.05, -0.08, 0.061 +19810626, -0.23, 0.24, -0.23, 0.061 +19810629, -0.68, -0.13, 0.35, 0.061 +19810630, -0.65, -0.20, 0.05, 0.061 +19810701, -0.98, 0.35, -0.02, 0.056 +19810702, -0.95, 0.04, 0.54, 0.056 +19810706, -1.12, -0.46, 0.82, 0.056 +19810707, 0.32, -0.80, -0.15, 0.056 +19810708, 0.09, -0.13, -0.01, 0.056 +19810709, 0.66, -0.18, -0.61, 0.056 +19810710, 0.10, 0.23, -0.12, 0.056 +19810713, 0.12, -0.18, 0.28, 0.056 +19810714, -0.12, -0.35, -0.35, 0.056 +19810715, 0.38, 0.15, -0.23, 0.056 +19810716, 0.14, 0.15, -0.28, 0.056 +19810717, 0.29, 0.02, -0.26, 0.056 +19810720, -1.59, 0.23, 0.31, 0.056 +19810721, -0.50, -0.55, -0.09, 0.056 +19810722, -0.88, 0.37, 0.31, 0.056 +19810723, 0.12, -0.33, -0.24, 0.056 +19810724, 0.80, -0.33, 0.01, 0.056 +19810727, 0.81, -0.34, -0.41, 0.056 +19810728, -0.51, 0.27, 0.28, 0.056 +19810729, -0.03, -0.05, 0.33, 0.056 +19810730, 0.57, -0.07, -0.44, 0.056 +19810731, 0.77, -0.21, -0.33, 0.056 +19810803, -0.34, -0.14, 0.12, 0.061 +19810804, 0.42, -0.51, -0.46, 0.061 +19810805, 1.05, -0.60, -0.26, 0.061 +19810806, 0.10, 0.14, 0.12, 0.061 +19810807, -0.45, 0.19, 0.24, 0.061 +19810810, 0.34, -0.72, 0.05, 0.061 +19810811, 0.84, -0.63, -0.10, 0.061 +19810812, -0.24, 0.32, 0.29, 0.061 +19810813, 0.06, 0.05, -0.27, 0.061 +19810814, -0.69, 0.58, 0.14, 0.061 +19810817, -1.02, 0.03, 0.61, 0.061 +19810818, -1.11, -0.17, 0.71, 0.061 +19810819, 0.19, -0.21, -0.27, 0.061 +19810820, 0.15, 0.12, -0.25, 0.061 +19810821, -1.03, 0.41, 0.88, 0.061 +19810824, -2.97, 0.08, 1.82, 0.061 +19810825, -0.53, -1.07, -0.15, 0.061 +19810826, -0.12, -0.06, 0.19, 0.061 +19810827, -1.08, 0.27, 0.81, 0.061 +19810828, 0.41, -0.19, -0.03, 0.061 +19810831, -1.15, 0.05, 0.87, 0.061 +19810901, 0.13, -0.50, -0.11, 0.059 +19810902, 0.26, 0.05, -0.14, 0.059 +19810903, -1.92, 0.25, 1.19, 0.059 +19810904, -1.04, 0.02, 0.42, 0.059 +19810908, -1.96, -0.79, 1.09, 0.059 +19810909, 0.25, -0.30, -0.21, 0.059 +19810910, 1.49, 0.00, -0.72, 0.059 +19810911, 1.15, -0.06, -0.25, 0.059 +19810914, -0.78, 0.68, -0.04, 0.059 +19810915, -0.59, 0.46, 0.42, 0.059 +19810916, -0.84, -0.30, 1.10, 0.059 +19810917, -1.49, 0.14, 1.30, 0.059 +19810918, -0.92, -0.26, 0.77, 0.059 +19810921, 0.54, -0.82, 0.25, 0.059 +19810922, -0.52, 0.18, 0.47, 0.059 +19810923, -1.22, -0.90, 0.90, 0.059 +19810924, -0.40, 0.28, 0.19, 0.059 +19810925, -2.40, -1.16, 1.74, 0.059 +19810928, 1.93, -1.82, -1.56, 0.059 +19810929, 0.85, 1.54, -1.27, 0.059 +19810930, 0.26, 0.50, -0.33, 0.059 +19811001, 0.66, 0.02, -0.83, 0.054 +19811002, 1.97, -0.19, -0.99, 0.054 +19811005, 0.31, 0.61, -0.22, 0.054 +19811006, -0.14, 0.33, -0.94, 0.054 +19811007, 1.55, -0.07, -0.82, 0.054 +19811008, 0.88, 0.39, -0.66, 0.054 +19811009, -0.51, 0.59, 0.88, 0.054 +19811012, -0.21, 0.31, 0.28, 0.054 +19811013, -0.22, 0.49, -0.10, 0.054 +19811014, -1.58, 0.41, 1.01, 0.054 +19811015, 0.55, -0.40, -0.17, 0.054 +19811016, -0.36, 0.36, 0.32, 0.054 +19811019, -0.21, -0.18, 0.27, 0.054 +19811020, 0.95, -0.37, -0.60, 0.054 +19811021, -0.12, 0.42, -0.47, 0.054 +19811022, -0.37, 0.07, -0.01, 0.054 +19811023, -0.80, 0.42, 0.09, 0.054 +19811026, -0.45, -0.15, -0.12, 0.054 +19811027, 0.94, -0.19, -0.50, 0.054 +19811028, 0.22, 0.21, -0.21, 0.054 +19811029, -0.38, 0.09, 0.03, 0.054 +19811030, 2.15, -1.20, -0.22, 0.054 +19811102, 1.89, -0.49, -1.36, 0.053 +19811103, 0.44, 0.20, -0.15, 0.053 +19811104, 0.13, 0.13, 0.09, 0.053 +19811105, -0.70, 0.59, 0.66, 0.053 +19811106, -0.51, 0.28, 0.48, 0.053 +19811109, 0.35, -0.62, 0.73, 0.053 +19811110, -0.40, 0.40, 0.62, 0.053 +19811111, 0.12, -0.23, 0.49, 0.053 +19811112, 0.21, 0.11, 0.52, 0.053 +19811113, -1.16, 0.61, 1.11, 0.053 +19811116, -1.31, -0.27, 1.08, 0.053 +19811117, 0.51, -0.67, 0.07, 0.053 +19811118, -0.45, 0.38, 0.41, 0.053 +19811119, 0.42, -0.42, -0.57, 0.053 +19811120, 0.87, -0.18, -0.51, 0.053 +19811123, -0.10, 0.11, -0.41, 0.053 +19811124, 1.21, -0.78, -0.16, 0.053 +19811125, 0.34, 0.17, -0.03, 0.053 +19811127, 0.70, -0.05, -0.39, 0.053 +19811130, 0.79, -0.28, -0.87, 0.053 +19811201, -0.23, 0.17, 0.09, 0.040 +19811202, -1.01, 0.61, 0.28, 0.040 +19811203, 0.31, -0.44, -0.18, 0.040 +19811204, 0.65, -0.21, -0.09, 0.040 +19811207, -0.78, 0.16, 0.41, 0.040 +19811208, -0.48, -0.33, 0.11, 0.040 +19811209, 0.46, -0.26, -0.50, 0.040 +19811210, 0.14, 0.15, -0.02, 0.040 +19811211, -0.57, 0.46, -0.03, 0.040 +19811214, -1.59, 0.16, 0.61, 0.040 +19811215, 0.04, 0.05, 0.02, 0.040 +19811216, -0.37, 0.37, -0.12, 0.040 +19811217, 0.40, -0.17, -0.65, 0.040 +19811218, 0.63, -0.14, -0.43, 0.040 +19811221, -0.47, 0.05, 0.37, 0.040 +19811222, -0.39, 0.08, 0.41, 0.040 +19811223, -0.40, 0.28, 0.21, 0.040 +19811224, 0.21, -0.02, -0.15, 0.040 +19811228, -0.27, -0.09, 0.27, 0.040 +19811229, -0.56, -0.02, 0.42, 0.040 +19811230, 0.34, -0.13, -0.12, 0.040 +19811231, 0.31, 0.44, -0.20, 0.040 +19820104, 0.16, -0.01, 0.59, 0.040 +19820105, -2.03, 0.66, 1.48, 0.040 +19820106, -0.81, -0.07, 0.73, 0.040 +19820107, -0.27, 0.24, 0.07, 0.040 +19820108, 0.46, -0.01, 0.08, 0.040 +19820111, -2.33, 0.22, 1.79, 0.040 +19820112, -0.55, -0.35, 0.12, 0.040 +19820113, -1.28, 0.41, 0.31, 0.040 +19820114, 0.48, -0.38, -0.39, 0.040 +19820115, 0.60, 0.13, -0.81, 0.040 +19820118, 0.58, -0.56, -0.52, 0.040 +19820119, -0.95, 0.51, 0.79, 0.040 +19820120, -0.61, 0.22, 0.56, 0.040 +19820121, 0.30, -0.34, 0.02, 0.040 +19820122, -0.38, 0.02, 0.64, 0.040 +19820125, -0.40, -0.94, 0.31, 0.040 +19820126, -0.17, -0.03, 0.09, 0.040 +19820127, 0.35, -0.38, -0.24, 0.040 +19820128, 2.53, -0.73, -1.75, 0.040 +19820129, 1.12, 0.03, -0.73, 0.040 +19820201, -1.79, 0.96, 0.80, 0.048 +19820202, 0.27, 0.01, -0.16, 0.048 +19820203, -0.93, 0.79, 0.55, 0.048 +19820204, -0.20, -0.01, 0.22, 0.048 +19820205, 0.76, -0.11, -0.09, 0.048 +19820208, -2.16, 0.27, 1.60, 0.048 +19820209, -0.94, -0.34, 0.94, 0.048 +19820210, 0.61, -0.47, -0.12, 0.048 +19820211, -0.14, -0.21, 0.44, 0.048 +19820212, -0.07, 0.15, -0.10, 0.048 +19820216, -0.46, -0.31, 0.11, 0.048 +19820217, -0.19, 0.45, -0.38, 0.048 +19820218, 0.06, -0.08, -0.43, 0.048 +19820219, -0.47, -0.07, 0.45, 0.048 +19820222, -1.25, 0.43, 1.63, 0.048 +19820223, -0.22, -0.66, 1.00, 0.048 +19820224, 1.40, -0.97, -0.27, 0.048 +19820225, -0.04, 0.65, -0.28, 0.048 +19820226, -0.16, -0.01, 0.43, 0.048 +19820301, 0.24, -0.04, 0.32, 0.042 +19820302, -0.38, 0.30, 1.13, 0.042 +19820303, -1.52, -0.07, 2.00, 0.042 +19820304, -1.08, -0.15, 1.44, 0.042 +19820305, -0.69, -0.60, 1.70, 0.042 +19820308, -1.61, -0.19, 2.10, 0.042 +19820309, 0.70, -1.33, -0.60, 0.042 +19820310, 0.50, 0.12, -0.49, 0.042 +19820311, -0.12, -0.07, 0.27, 0.042 +19820312, -0.80, -0.01, 0.57, 0.042 +19820315, 0.49, -0.63, -1.00, 0.042 +19820316, -0.06, 0.41, -0.26, 0.042 +19820317, -0.15, 0.17, -0.11, 0.042 +19820318, 1.12, -0.05, -0.97, 0.042 +19820319, 0.30, 0.45, -0.35, 0.042 +19820322, 1.88, -0.30, -1.66, 0.042 +19820323, 0.59, 0.01, -0.56, 0.042 +19820324, -0.45, 0.50, 0.19, 0.042 +19820325, 0.31, 0.36, -0.35, 0.042 +19820326, -0.89, 0.58, 0.34, 0.042 +19820329, 0.12, 0.03, -0.23, 0.042 +19820330, 0.01, 0.06, 0.01, 0.042 +19820331, -0.22, 0.20, 0.08, 0.042 +19820401, 1.37, -0.37, -1.02, 0.053 +19820402, 1.06, -0.31, -1.14, 0.053 +19820405, -0.31, 0.40, -0.15, 0.053 +19820406, 0.48, -0.24, -0.11, 0.053 +19820407, 0.15, 0.30, -0.24, 0.053 +19820408, 0.59, -0.05, -0.33, 0.053 +19820412, -0.22, 0.17, 0.17, 0.053 +19820413, -0.04, 0.13, 0.23, 0.053 +19820414, -0.17, -0.03, 0.25, 0.053 +19820415, 0.39, 0.01, -0.50, 0.053 +19820416, 0.45, 0.01, -0.31, 0.053 +19820419, -0.09, 0.19, 0.52, 0.053 +19820420, -0.94, 0.57, 0.68, 0.053 +19820421, 0.22, 0.00, 0.22, 0.053 +19820422, 1.01, -0.44, -0.57, 0.053 +19820423, 1.04, -0.35, -0.79, 0.053 +19820426, 0.42, 0.03, -0.48, 0.053 +19820427, -0.91, 0.43, 0.35, 0.053 +19820428, -0.61, 0.61, -0.05, 0.053 +19820429, -0.90, 0.46, 0.42, 0.053 +19820430, 0.17, -0.02, -0.18, 0.053 +19820503, 0.27, -0.31, 0.05, 0.053 +19820504, 0.59, -0.06, -0.19, 0.053 +19820505, 0.12, -0.24, 0.12, 0.053 +19820506, 0.83, -0.13, -0.13, 0.053 +19820507, 0.69, -0.30, -0.19, 0.053 +19820510, -0.75, 0.36, 0.11, 0.053 +19820511, 0.79, -0.32, -0.46, 0.053 +19820512, -0.31, 0.17, 0.24, 0.053 +19820513, -0.62, 0.52, 0.03, 0.053 +19820514, -0.13, 0.23, -0.06, 0.053 +19820517, -1.07, 0.32, 0.45, 0.053 +19820518, -0.82, 0.02, 0.32, 0.053 +19820519, -0.76, 0.15, 0.40, 0.053 +19820520, -0.44, -0.33, 0.32, 0.053 +19820521, 0.16, -0.37, 0.19, 0.053 +19820524, -0.08, -0.38, -0.18, 0.053 +19820525, -0.30, 0.12, 0.19, 0.053 +19820526, -1.26, -0.02, 0.60, 0.053 +19820527, -0.47, -0.01, -0.01, 0.053 +19820528, -0.38, 0.77, 0.01, 0.053 +19820601, -0.39, -0.24, -0.16, 0.043 +19820602, 0.31, -0.02, -0.05, 0.043 +19820603, -0.22, -0.01, 0.36, 0.043 +19820604, -1.52, 0.39, 0.81, 0.043 +19820607, -0.14, -0.48, 0.05, 0.043 +19820608, -0.44, -0.02, 0.23, 0.043 +19820609, -0.69, -0.25, 0.25, 0.043 +19820610, 0.37, -0.16, -0.31, 0.043 +19820611, 1.52, -0.21, -0.43, 0.043 +19820614, -1.14, 0.39, 0.72, 0.043 +19820615, -0.37, -0.09, 0.26, 0.043 +19820616, -0.56, 0.55, 0.30, 0.043 +19820617, -1.05, 0.13, 0.71, 0.043 +19820618, -0.55, -0.14, 0.19, 0.043 +19820621, -0.07, 0.15, -0.17, 0.043 +19820622, 0.76, -0.41, -0.73, 0.043 +19820623, 1.52, -0.51, -1.19, 0.043 +19820624, -0.19, 0.42, 0.21, 0.043 +19820625, -0.58, 0.32, 0.04, 0.043 +19820628, 0.74, -0.48, -0.61, 0.043 +19820629, 0.01, -0.28, 0.61, 0.043 +19820630, -0.39, 0.67, 0.69, 0.043 +19820701, -0.79, 0.35, 0.54, 0.050 +19820702, -0.75, 0.55, 0.45, 0.050 +19820706, -0.43, 0.03, 0.16, 0.050 +19820707, -0.21, -0.08, 0.13, 0.050 +19820708, 0.03, -0.74, -0.12, 0.050 +19820709, 1.08, -0.14, -0.38, 0.050 +19820712, 0.67, -0.09, 0.15, 0.050 +19820713, -0.12, 0.21, -0.31, 0.050 +19820714, 0.60, -0.76, -0.59, 0.050 +19820715, 0.04, 0.15, -0.14, 0.050 +19820716, 0.43, -0.32, -0.49, 0.050 +19820719, -0.25, 0.29, 0.24, 0.050 +19820720, 0.53, -0.25, -0.06, 0.050 +19820721, 0.00, 0.35, -0.22, 0.050 +19820722, 0.03, 0.26, -0.02, 0.050 +19820723, -0.33, 0.38, 0.17, 0.050 +19820726, -0.70, 0.23, 0.03, 0.050 +19820727, -0.80, 0.48, 0.07, 0.050 +19820728, -1.55, 0.14, 0.61, 0.050 +19820729, -0.16, -0.48, -0.24, 0.050 +19820730, -0.45, 0.35, 0.15, 0.050 +19820802, 1.56, -0.99, -0.01, 0.035 +19820803, -0.83, 0.69, 0.46, 0.035 +19820804, -1.46, 0.54, 0.86, 0.035 +19820805, -0.81, -0.05, 0.64, 0.035 +19820806, -1.20, 0.37, 0.91, 0.035 +19820809, -0.79, -0.90, 0.44, 0.035 +19820810, -0.17, 0.00, 0.21, 0.035 +19820811, -0.33, -0.19, 0.63, 0.035 +19820812, -0.30, -0.25, 0.64, 0.035 +19820813, 1.09, -1.36, 0.75, 0.035 +19820816, 0.41, 0.30, 0.48, 0.035 +19820817, 4.09, -2.41, 0.15, 0.035 +19820818, 0.12, 1.55, -0.40, 0.035 +19820819, 0.21, -0.46, 0.16, 0.035 +19820820, 3.08, -1.70, -0.44, 0.035 +19820823, 2.59, -1.01, -0.68, 0.035 +19820824, -0.25, 1.25, -0.62, 0.035 +19820825, 2.00, -0.26, -0.94, 0.035 +19820826, 1.07, 0.69, -1.13, 0.035 +19820827, -1.07, 0.96, -0.46, 0.035 +19820830, 0.36, -0.33, -0.41, 0.035 +19820831, 1.43, -0.41, -0.24, 0.035 +19820901, -0.88, 0.60, 0.53, 0.024 +19820902, 1.56, -0.35, -0.70, 0.024 +19820903, 1.80, -0.94, -0.60, 0.024 +19820907, -0.96, 0.69, 0.38, 0.024 +19820908, 0.67, 0.01, -0.36, 0.024 +19820909, 0.01, 0.64, 0.03, 0.024 +19820910, -0.73, 0.48, 0.29, 0.024 +19820913, 0.81, -0.77, -0.23, 0.024 +19820914, 0.81, 0.00, -0.28, 0.024 +19820915, 0.80, -0.21, -0.22, 0.024 +19820916, -0.15, 0.56, -0.21, 0.024 +19820917, -0.93, 0.62, 0.12, 0.024 +19820920, -0.11, -0.30, 0.13, 0.024 +19820921, 1.68, -0.74, -0.35, 0.024 +19820922, -0.46, 0.72, 0.47, 0.024 +19820923, -0.19, -0.08, -0.02, 0.024 +19820924, -0.28, 0.52, -0.19, 0.024 +19820927, 0.18, -0.23, 0.09, 0.024 +19820928, -0.20, 0.43, 0.15, 0.024 +19820929, -1.23, 0.51, 0.65, 0.024 +19820930, -0.85, 0.56, 0.52, 0.024 +19821001, 1.10, -0.66, 0.01, 0.028 +19821004, -0.29, 0.02, -0.02, 0.028 +19821005, 0.42, 0.10, -0.23, 0.028 +19821006, 2.92, -1.35, -0.97, 0.028 +19821007, 2.05, -0.46, -0.38, 0.028 +19821008, 1.74, -0.49, 0.26, 0.028 +19821011, 2.24, -0.53, 0.11, 0.028 +19821012, -0.10, 0.25, -0.12, 0.028 +19821013, 1.80, 0.23, -1.09, 0.028 +19821014, -1.28, 1.41, 0.23, 0.028 +19821015, -0.60, 0.66, 0.10, 0.028 +19821018, 2.03, -0.87, -0.65, 0.028 +19821019, -0.01, 0.21, 0.30, 0.028 +19821020, 1.87, -0.56, -0.55, 0.028 +19821021, 0.00, 0.72, -0.77, 0.028 +19821022, 0.04, 1.19, -0.18, 0.028 +19821025, -3.62, 1.47, 0.56, 0.028 +19821026, 0.55, -1.39, -0.11, 0.028 +19821027, 0.77, 0.83, -0.30, 0.028 +19821028, -1.02, 1.15, 0.30, 0.028 +19821029, 0.26, 0.08, 0.20, 0.028 +19821101, 1.15, -0.51, -0.32, 0.030 +19821102, 1.53, 0.12, -0.03, 0.030 +19821103, 3.56, -1.15, -0.55, 0.030 +19821104, -0.36, 1.04, -0.06, 0.030 +19821105, 0.48, 0.53, -0.04, 0.030 +19821108, -0.96, 1.04, -0.04, 0.030 +19821109, 1.64, 0.07, -0.47, 0.030 +19821110, -1.05, 1.06, -0.04, 0.030 +19821111, 0.44, -0.02, -0.26, 0.030 +19821112, -0.98, 1.50, 0.39, 0.030 +19821115, -1.75, 0.37, 0.83, 0.030 +19821116, -1.38, -0.49, 0.74, 0.030 +19821117, 1.67, -0.49, -0.47, 0.030 +19821118, 0.44, 0.38, -0.35, 0.030 +19821119, -0.67, 0.88, 0.04, 0.030 +19821122, -1.96, 0.70, 0.79, 0.030 +19821123, -0.80, 0.43, 0.01, 0.030 +19821124, 0.72, -0.14, -0.24, 0.030 +19821126, 0.71, 0.08, -0.55, 0.030 +19821129, -0.48, 0.30, -0.01, 0.030 +19821130, 2.81, -1.33, -1.33, 0.030 +19821201, 0.34, 0.94, -0.62, 0.031 +19821202, 0.01, 0.08, 0.01, 0.031 +19821203, -0.08, 0.14, 0.01, 0.031 +19821206, 1.80, -1.06, -0.97, 0.031 +19821207, 0.60, 0.22, -0.50, 0.031 +19821208, -0.44, 0.86, -0.05, 0.031 +19821209, -1.18, 0.20, 0.56, 0.031 +19821210, -0.59, -0.60, 0.37, 0.031 +19821213, 0.16, -0.59, 0.37, 0.031 +19821214, -1.58, 0.48, 1.44, 0.031 +19821215, -1.69, -0.50, 0.83, 0.031 +19821216, -0.14, -0.24, -0.31, 0.031 +19821217, 1.45, -0.17, -1.10, 0.031 +19821220, -0.81, 0.44, 0.22, 0.031 +19821221, 1.36, -0.98, -0.27, 0.031 +19821222, 0.24, 0.45, -0.36, 0.031 +19821223, 0.58, -0.13, 0.02, 0.031 +19821227, 1.43, -1.04, 0.12, 0.031 +19821228, -0.80, 0.54, 0.45, 0.031 +19821229, 0.30, -0.24, -0.12, 0.031 +19821230, -0.58, 0.47, 0.16, 0.031 +19821231, 0.31, 0.43, -0.39, 0.031 +19830103, -1.45, 0.76, 1.02, 0.033 +19830104, 1.67, -1.30, -0.18, 0.033 +19830105, 0.50, 0.25, 0.19, 0.033 +19830106, 2.28, -0.48, -0.50, 0.033 +19830107, 0.08, 0.66, 0.08, 0.033 +19830110, 1.12, 0.06, -0.53, 0.033 +19830111, -0.55, 0.62, 0.20, 0.033 +19830112, 0.62, 0.10, -0.07, 0.033 +19830113, -0.49, 0.40, 0.04, 0.033 +19830114, 0.61, 0.44, -0.12, 0.033 +19830117, 0.19, 0.48, -0.39, 0.033 +19830118, -0.14, 0.13, -0.16, 0.033 +19830119, -0.75, 0.09, 0.03, 0.033 +19830120, 0.47, -0.44, 0.07, 0.033 +19830121, -1.52, 0.54, 0.52, 0.033 +19830124, -2.75, -0.26, 0.86, 0.033 +19830125, 1.14, -0.36, -0.19, 0.033 +19830126, 0.05, 0.83, -0.47, 0.033 +19830127, 1.76, -0.44, -0.69, 0.033 +19830128, 0.22, 0.52, -0.23, 0.033 +19830131, 0.57, -0.07, -0.27, 0.033 +19830201, -1.15, 1.02, 0.64, 0.032 +19830202, 0.01, -0.05, 0.40, 0.032 +19830203, 0.72, -0.15, 0.27, 0.032 +19830204, 1.27, -0.24, -0.62, 0.032 +19830207, 0.51, 0.04, 0.33, 0.032 +19830208, -0.71, 0.60, 0.30, 0.032 +19830209, -0.36, 0.66, -0.09, 0.032 +19830210, 1.50, -0.35, -0.53, 0.032 +19830211, 0.15, 0.35, -0.40, 0.032 +19830214, 0.87, -0.14, -0.88, 0.032 +19830215, -0.20, 0.54, -0.40, 0.032 +19830216, -0.52, 0.52, 0.32, 0.032 +19830217, -0.06, -0.06, 0.08, 0.032 +19830218, 0.42, 0.30, -0.03, 0.032 +19830222, -1.33, 0.52, 0.68, 0.032 +19830223, 0.76, -0.52, -0.07, 0.032 +19830224, 1.64, -0.80, -0.44, 0.032 +19830225, 0.09, -0.06, 0.51, 0.032 +19830228, -0.99, 0.77, 0.44, 0.032 +19830301, 1.54, -1.17, 0.52, 0.027 +19830302, 0.86, -0.16, -0.13, 0.027 +19830303, 0.74, 0.11, 0.18, 0.027 +19830304, 0.18, 0.16, 0.39, 0.027 +19830307, 0.01, 0.36, 0.18, 0.027 +19830308, -1.35, 0.73, 0.72, 0.027 +19830309, 0.89, -0.23, -0.40, 0.027 +19830310, -0.50, 0.90, 0.12, 0.027 +19830311, -0.34, 0.16, 0.16, 0.027 +19830314, -0.43, -0.15, 0.37, 0.027 +19830315, 0.20, -0.43, 0.22, 0.027 +19830316, -0.76, 0.83, 0.48, 0.027 +19830317, -0.21, -0.14, 0.23, 0.027 +19830318, 0.21, 0.22, -0.23, 0.027 +19830321, 0.68, -0.34, -0.10, 0.027 +19830322, -0.20, 0.61, -0.06, 0.027 +19830323, 1.23, -0.43, -0.24, 0.027 +19830324, 0.39, 0.24, 0.10, 0.027 +19830325, -0.28, 0.45, -0.19, 0.027 +19830328, -0.58, 0.09, 0.11, 0.027 +19830329, -0.17, 0.04, -0.15, 0.027 +19830330, 0.96, -0.50, -0.34, 0.027 +19830331, -0.21, 0.32, 0.07, 0.027 +19830404, -0.07, -0.49, 0.31, 0.036 +19830405, -0.59, 0.69, 0.14, 0.036 +19830406, -0.67, -0.20, 0.68, 0.036 +19830407, 0.33, -0.23, 0.30, 0.036 +19830408, 0.58, -0.13, 0.07, 0.036 +19830411, 1.28, -0.41, -0.44, 0.036 +19830412, 0.44, 0.16, -0.14, 0.036 +19830413, 0.70, 0.28, -0.19, 0.036 +19830414, 0.83, 0.29, -0.24, 0.036 +19830415, 0.50, 0.17, -0.05, 0.036 +19830418, 0.60, -0.03, -0.02, 0.036 +19830419, -0.62, 0.41, 0.04, 0.036 +19830420, 1.12, -0.20, -0.21, 0.036 +19830421, -0.24, 0.56, 0.20, 0.036 +19830422, 0.22, 0.28, 0.01, 0.036 +19830425, -0.93, 0.27, 0.40, 0.036 +19830426, 1.48, -0.96, -0.02, 0.036 +19830427, -0.11, 0.24, -0.02, 0.036 +19830428, 0.87, -0.23, -0.05, 0.036 +19830429, 0.75, 0.01, -0.28, 0.036 +19830502, -1.25, 0.68, 0.29, 0.033 +19830503, 0.01, -0.18, 0.12, 0.033 +19830504, 0.83, 0.23, -0.13, 0.033 +19830505, 0.83, 0.53, -0.22, 0.033 +19830506, 1.15, 0.30, -0.28, 0.033 +19830509, 0.01, 0.57, -0.15, 0.033 +19830510, 0.22, 0.67, 0.07, 0.033 +19830511, -0.57, 0.19, 0.37, 0.033 +19830512, -0.36, 0.26, -0.07, 0.033 +19830513, 0.44, 0.45, -0.22, 0.033 +19830516, -0.98, -0.32, 0.07, 0.033 +19830517, 0.34, 0.29, -0.07, 0.033 +19830518, 0.01, 0.74, -0.40, 0.033 +19830519, -0.67, 0.19, -0.10, 0.033 +19830520, -0.02, 0.00, -0.13, 0.033 +19830523, 0.69, -0.73, -0.36, 0.033 +19830524, 1.24, 0.10, -0.21, 0.033 +19830525, 0.49, 0.30, -0.10, 0.033 +19830526, -0.22, 0.63, -0.05, 0.033 +19830527, -0.40, 0.75, 0.02, 0.033 +19830531, -1.20, 0.32, 0.27, 0.033 +19830601, 0.01, -0.25, -0.27, 0.030 +19830602, 0.78, 0.01, -0.44, 0.030 +19830603, 0.41, 0.57, -0.52, 0.030 +19830606, 0.32, 0.14, -0.38, 0.030 +19830607, -0.94, 0.87, -0.03, 0.030 +19830608, -0.84, 0.06, -0.19, 0.030 +19830609, 0.23, 0.01, -0.02, 0.030 +19830610, 0.65, 0.36, -0.04, 0.030 +19830613, 1.16, -0.22, -0.13, 0.030 +19830614, 0.41, 0.22, -0.17, 0.030 +19830615, 0.87, -0.10, -0.41, 0.030 +19830616, 1.05, -0.12, -0.41, 0.030 +19830617, -0.03, 0.04, -0.12, 0.030 +19830620, -0.13, 0.02, -0.04, 0.030 +19830621, 0.69, -0.36, -0.38, 0.030 +19830622, 0.24, 0.16, -0.23, 0.030 +19830623, -0.22, 0.08, -0.40, 0.030 +19830624, 0.16, 0.27, -0.31, 0.030 +19830627, -1.17, -0.16, 0.48, 0.030 +19830628, -1.85, -0.49, 0.81, 0.030 +19830629, 0.42, -0.44, -0.39, 0.030 +19830630, 0.83, 0.19, -0.20, 0.030 +19830701, 0.56, 0.24, -0.13, 0.037 +19830705, -1.34, 0.39, 0.82, 0.037 +19830706, 0.94, -0.16, 0.17, 0.037 +19830707, -0.43, 0.63, -0.08, 0.037 +19830708, -0.24, 0.06, 0.14, 0.037 +19830711, 0.45, -0.22, 0.05, 0.037 +19830712, -1.42, 0.43, 0.57, 0.037 +19830713, -0.25, -0.35, 0.76, 0.037 +19830714, 0.28, 0.01, 0.07, 0.037 +19830715, -1.01, 0.40, 0.51, 0.037 +19830718, -0.44, -0.46, 0.43, 0.037 +19830719, 0.45, -0.18, -0.02, 0.037 +19830720, 2.35, -1.11, -0.71, 0.037 +19830721, 0.08, 0.56, -0.55, 0.037 +19830722, -0.03, 0.50, -0.14, 0.037 +19830725, 0.30, -0.21, 0.10, 0.037 +19830726, 0.32, 0.12, 0.42, 0.037 +19830727, -1.57, 0.33, 1.49, 0.037 +19830728, -1.61, 0.53, 1.27, 0.037 +19830729, -1.45, -0.08, 0.50, 0.037 +19830801, -0.52, -0.72, 0.26, 0.033 +19830802, -0.05, -0.25, 0.03, 0.033 +19830803, 0.51, -0.83, 0.58, 0.033 +19830804, -1.20, 0.09, 0.57, 0.033 +19830805, 0.26, -0.04, -0.08, 0.033 +19830808, -1.54, 0.08, 0.88, 0.033 +19830809, 0.31, -1.03, 0.45, 0.033 +19830810, 0.79, -0.25, -0.15, 0.033 +19830811, 0.10, 0.24, -0.24, 0.033 +19830812, 0.55, -0.02, 0.02, 0.033 +19830815, 0.83, -0.19, -0.38, 0.033 +19830816, -0.35, -0.13, 0.71, 0.033 +19830817, 0.91, -0.59, 0.71, 0.033 +19830818, -0.78, 0.78, 0.25, 0.033 +19830819, 0.12, -0.22, 0.29, 0.033 +19830822, 0.04, -0.10, 0.69, 0.033 +19830823, -1.01, 0.29, 0.98, 0.033 +19830824, -0.91, 0.14, 0.56, 0.033 +19830825, -0.32, -0.21, 0.27, 0.033 +19830826, 0.65, -0.59, -0.27, 0.033 +19830829, -0.05, -0.40, -0.07, 0.033 +19830830, 0.19, 0.03, -0.02, 0.033 +19830831, 1.01, -0.43, -0.51, 0.033 +19830901, -0.01, 0.34, -0.17, 0.036 +19830902, 0.60, 0.02, -0.55, 0.036 +19830906, 1.48, -0.52, -0.31, 0.036 +19830907, 0.05, 0.19, 0.42, 0.036 +19830908, -0.01, 0.36, -0.05, 0.036 +19830909, -0.16, 0.40, 0.44, 0.036 +19830912, -0.85, 0.67, 0.34, 0.036 +19830913, -0.58, -0.13, 0.45, 0.036 +19830914, 0.24, -0.21, 0.02, 0.036 +19830915, -0.45, 0.25, 0.35, 0.036 +19830916, 0.85, -0.65, -0.41, 0.036 +19830919, 1.00, -0.02, -0.36, 0.036 +19830920, 0.72, -0.50, -0.03, 0.036 +19830921, -0.39, 0.26, 0.18, 0.036 +19830922, 0.71, -0.45, -0.30, 0.036 +19830923, -0.15, 0.03, 0.18, 0.036 +19830926, 0.14, -0.01, -0.19, 0.036 +19830927, -0.89, 0.09, 0.35, 0.036 +19830928, -0.27, -0.08, 0.05, 0.036 +19830929, -0.40, 0.27, 0.41, 0.036 +19830930, -0.68, 0.21, 0.19, 0.036 +19831003, -0.29, -0.40, 0.22, 0.036 +19831004, 0.26, -0.29, -0.17, 0.036 +19831005, 0.67, -0.52, -0.21, 0.036 +19831006, 1.26, -0.95, -0.35, 0.036 +19831007, 0.28, 0.03, -0.60, 0.036 +19831010, 0.72, -0.71, 0.37, 0.036 +19831011, -1.16, 0.81, 0.30, 0.036 +19831012, -0.62, -0.15, 0.83, 0.036 +19831013, -0.06, -0.39, 0.37, 0.036 +19831014, 0.01, -0.07, 0.31, 0.036 +19831017, 0.10, -0.21, 0.33, 0.036 +19831018, -1.58, 0.24, 1.67, 0.036 +19831019, -0.83, -0.46, 0.35, 0.036 +19831020, 0.18, -0.02, 0.04, 0.036 +19831021, -0.71, 0.24, 0.45, 0.036 +19831024, -0.15, -0.80, 0.22, 0.036 +19831025, 0.26, -0.15, -0.10, 0.036 +19831026, -0.56, 0.28, -0.03, 0.036 +19831027, -0.33, -0.09, 0.17, 0.036 +19831028, -0.79, 0.25, 0.37, 0.036 +19831031, -0.10, -0.43, 0.71, 0.036 +19831101, -0.03, -0.55, 0.06, 0.033 +19831102, 0.77, -0.31, -0.33, 0.033 +19831103, -0.60, 0.68, 0.04, 0.033 +19831104, -0.58, 0.20, 0.41, 0.033 +19831107, -0.40, -0.10, 0.31, 0.033 +19831108, -0.23, -0.16, 0.10, 0.033 +19831109, 1.06, -0.82, -0.07, 0.033 +19831110, 0.34, 0.25, -0.53, 0.033 +19831111, 1.20, -0.12, -0.88, 0.033 +19831114, 0.38, 0.44, -0.92, 0.033 +19831115, -0.55, 0.71, -0.09, 0.033 +19831116, 0.39, -0.16, 0.14, 0.033 +19831117, 0.06, 0.36, 0.08, 0.033 +19831118, -0.39, 0.62, -0.28, 0.033 +19831121, 0.51, -0.16, -0.14, 0.033 +19831122, 0.39, -0.09, 0.75, 0.033 +19831123, 0.02, 0.17, 0.52, 0.033 +19831125, 0.20, 0.07, 0.17, 0.033 +19831128, -0.36, 0.21, 0.20, 0.033 +19831129, 0.69, -0.13, -0.19, 0.033 +19831130, -0.69, 0.84, 0.03, 0.033 +19831201, 0.03, -0.01, 0.26, 0.034 +19831202, -0.65, 0.28, 0.42, 0.034 +19831205, 0.00, -0.27, 0.36, 0.034 +19831206, -0.21, 0.16, -0.09, 0.034 +19831207, 0.21, -0.11, -0.14, 0.034 +19831208, -0.48, 0.04, 0.50, 0.034 +19831209, 0.00, 0.02, 0.08, 0.034 +19831212, 0.12, -0.30, 0.06, 0.034 +19831213, -0.39, 0.18, 0.28, 0.034 +19831214, -0.97, 0.35, 0.45, 0.034 +19831215, -0.86, 0.48, 0.20, 0.034 +19831216, 0.30, -0.35, -0.41, 0.034 +19831219, -0.05, -0.21, -0.09, 0.034 +19831220, -0.25, -0.07, 0.10, 0.034 +19831221, 0.72, -0.57, -0.18, 0.034 +19831222, -0.19, 0.36, -0.25, 0.034 +19831223, -0.03, 0.04, -0.08, 0.034 +19831227, 0.64, -0.63, 0.03, 0.034 +19831228, 0.21, -0.50, 0.67, 0.034 +19831229, -0.16, 0.31, -0.21, 0.034 +19831230, 0.20, 0.48, -0.27, 0.034 +19840103, -0.47, 0.49, 0.10, 0.036 +19840104, 1.46, -0.67, -0.06, 0.036 +19840105, 1.26, -0.13, -0.38, 0.036 +19840106, 0.42, 0.41, 0.06, 0.036 +19840109, -0.22, 0.29, 0.47, 0.036 +19840110, -0.39, 0.47, 0.32, 0.036 +19840111, -0.11, 0.08, 0.23, 0.036 +19840112, -0.06, 0.27, 0.52, 0.036 +19840113, -0.37, 0.20, 0.48, 0.036 +19840116, -0.02, -0.02, -0.15, 0.036 +19840117, 0.29, -0.16, -0.01, 0.036 +19840118, -0.17, 0.25, 0.19, 0.036 +19840119, -0.34, 0.17, 0.34, 0.036 +19840120, -0.62, 0.12, 0.49, 0.036 +19840123, -0.93, -0.25, 1.06, 0.036 +19840124, 0.33, -0.65, 0.64, 0.036 +19840125, -0.60, 0.33, 0.66, 0.036 +19840126, -0.47, 0.02, 0.54, 0.036 +19840127, -0.23, -0.45, 0.72, 0.036 +19840130, -0.85, -0.44, 1.18, 0.036 +19840131, 0.11, -0.70, 0.18, 0.036 +19840201, -0.49, -0.11, 0.28, 0.036 +19840202, 0.30, -0.41, -0.17, 0.036 +19840203, -1.34, 0.68, 0.71, 0.036 +19840206, -1.67, -0.09, 1.07, 0.036 +19840207, 0.11, -1.03, -0.15, 0.036 +19840208, -1.73, 0.63, 0.82, 0.036 +19840209, -0.51, -0.77, 0.07, 0.036 +19840210, 0.51, -0.07, -0.69, 0.036 +19840213, -0.97, -0.25, 0.40, 0.036 +19840214, 0.94, -0.47, -0.32, 0.036 +19840215, -0.15, 0.29, 0.01, 0.036 +19840216, -0.21, -0.11, 0.26, 0.036 +19840217, -0.28, 0.19, 0.28, 0.036 +19840221, -0.76, 0.10, 0.31, 0.036 +19840222, -0.30, 0.05, 0.41, 0.036 +19840223, -0.23, -0.62, 0.37, 0.036 +19840224, 1.98, -0.69, -1.21, 0.036 +19840227, 1.17, -0.20, 0.19, 0.036 +19840228, -1.39, 0.86, 0.89, 0.036 +19840229, 0.21, 0.18, 0.03, 0.036 +19840301, 0.66, -0.27, 0.00, 0.033 +19840302, 0.67, 0.08, -0.23, 0.033 +19840305, -0.78, 0.38, 0.41, 0.033 +19840306, -1.00, 0.84, 0.07, 0.033 +19840307, -1.10, 0.11, 0.67, 0.033 +19840308, 0.31, -0.17, 0.17, 0.033 +19840309, -0.47, 0.22, 0.14, 0.033 +19840312, 0.99, -0.92, -0.51, 0.033 +19840313, 0.39, 0.36, -0.75, 0.033 +19840314, -0.06, 0.04, -0.30, 0.033 +19840315, 0.42, -0.01, -0.41, 0.033 +19840316, 1.04, -0.40, -0.16, 0.033 +19840319, -0.93, 0.19, 0.47, 0.033 +19840320, 0.53, -0.33, 0.10, 0.033 +19840321, -0.13, 0.43, 0.11, 0.033 +19840322, -1.03, 0.66, 0.34, 0.033 +19840323, -0.10, -0.16, 0.24, 0.033 +19840326, -0.08, -0.38, 0.51, 0.033 +19840327, 0.25, -0.42, 0.00, 0.033 +19840328, 1.37, -0.92, -0.45, 0.033 +19840329, -0.12, 0.39, 0.03, 0.033 +19840330, -0.15, 0.29, 0.00, 0.033 +19840402, -0.68, 0.34, 0.38, 0.041 +19840403, -0.34, 0.03, 0.44, 0.041 +19840404, -0.08, -0.21, 0.28, 0.041 +19840405, -1.53, 0.67, 0.51, 0.041 +19840406, -0.01, -0.77, 0.31, 0.041 +19840409, -0.07, -0.33, 0.20, 0.041 +19840410, 0.19, -0.22, 0.21, 0.041 +19840411, -0.59, 0.14, 0.55, 0.041 +19840412, 1.35, -1.19, -0.34, 0.041 +19840413, -0.07, 0.65, -0.50, 0.041 +19840416, 0.46, -0.57, -0.13, 0.041 +19840417, 0.45, 0.16, -0.15, 0.041 +19840418, -0.58, 0.56, -0.11, 0.041 +19840419, -0.01, -0.02, -0.05, 0.041 +19840423, -0.70, 0.24, 0.10, 0.041 +19840424, 0.53, -0.49, 0.01, 0.041 +19840425, 0.28, -0.07, -0.42, 0.041 +19840426, 0.97, -0.40, -0.13, 0.041 +19840427, -0.10, 0.30, 0.06, 0.041 +19840430, 0.06, -0.03, 0.03, 0.041 +19840501, 1.01, -0.43, -0.36, 0.035 +19840502, 0.37, 0.51, -0.64, 0.035 +19840503, -0.28, 0.63, -0.13, 0.035 +19840504, -1.03, 0.54, 0.67, 0.035 +19840507, 0.13, -0.11, -0.22, 0.035 +19840508, 0.63, -0.52, -0.02, 0.035 +19840509, -0.21, -0.01, 0.12, 0.035 +19840510, -0.11, 0.27, -0.06, 0.035 +19840511, -0.87, 0.12, 0.27, 0.035 +19840514, -0.64, 0.11, -0.07, 0.035 +19840515, 0.23, -0.46, 0.06, 0.035 +19840516, -0.08, 0.03, -0.06, 0.035 +19840517, -1.00, 0.22, 0.39, 0.035 +19840518, -0.62, 0.02, 0.45, 0.035 +19840521, -0.62, -0.04, 0.26, 0.035 +19840522, -0.71, -0.18, 0.03, 0.035 +19840523, -0.45, -0.04, 0.11, 0.035 +19840524, -1.38, -0.19, -0.02, 0.035 +19840525, 0.20, -0.43, 0.24, 0.035 +19840529, -0.86, 0.11, 0.44, 0.035 +19840530, -0.05, -0.25, -0.48, 0.035 +19840531, 0.27, 0.15, -0.79, 0.035 +19840601, 1.65, -0.58, -0.56, 0.036 +19840604, 0.84, 0.16, -0.79, 0.036 +19840605, -0.37, 0.33, -0.28, 0.036 +19840606, 0.65, -0.36, -0.16, 0.036 +19840607, 0.00, 0.31, -0.02, 0.036 +19840608, 0.13, 0.03, 0.01, 0.036 +19840611, -1.18, 0.54, 0.58, 0.036 +19840612, -0.47, 0.00, 0.21, 0.036 +19840613, -0.06, 0.14, -0.38, 0.036 +19840614, -1.02, 0.54, 0.11, 0.036 +19840615, -0.60, 0.22, -0.13, 0.036 +19840618, 1.38, -1.34, -0.23, 0.036 +19840619, 0.53, -0.17, -0.43, 0.036 +19840620, 1.07, -1.36, -0.24, 0.036 +19840621, -0.05, 0.43, -0.63, 0.036 +19840622, 0.06, 0.29, -0.36, 0.036 +19840625, -0.17, 0.20, -0.07, 0.036 +19840626, -0.77, 0.35, 0.16, 0.036 +19840627, -0.69, 0.11, 0.61, 0.036 +19840628, 0.64, -0.39, -0.17, 0.036 +19840629, 0.26, 0.14, 0.22, 0.036 +19840702, -0.16, -0.24, 0.36, 0.039 +19840703, 0.32, -0.10, -0.13, 0.039 +19840705, -0.52, 0.33, 0.23, 0.039 +19840706, -0.37, -0.01, 0.35, 0.039 +19840709, 0.53, -0.89, -0.04, 0.039 +19840710, -0.29, 0.41, -0.09, 0.039 +19840711, -1.34, 0.84, 0.30, 0.039 +19840712, -0.41, -0.08, 0.44, 0.039 +19840713, 0.42, -0.20, 0.37, 0.039 +19840716, 0.19, -0.64, 0.34, 0.039 +19840717, 0.37, -0.23, 0.15, 0.039 +19840718, -0.58, 0.14, 0.53, 0.039 +19840719, -0.70, 0.23, 0.26, 0.039 +19840720, -0.60, -0.06, 0.53, 0.039 +19840723, -0.65, -0.51, 0.41, 0.039 +19840724, -0.70, 0.00, 0.31, 0.039 +19840725, 0.44, -0.82, -0.47, 0.039 +19840726, 0.76, -0.51, -0.99, 0.039 +19840727, 0.79, -0.14, -1.26, 0.039 +19840730, -0.46, 0.26, -0.06, 0.039 +19840731, 0.25, -0.06, -0.99, 0.039 +19840801, 2.02, -0.76, -0.76, 0.036 +19840802, 2.43, -0.35, -1.57, 0.036 +19840803, 2.81, -0.19, -1.98, 0.036 +19840806, 0.38, 0.60, -0.69, 0.036 +19840807, 0.04, -0.19, -0.06, 0.036 +19840808, -0.53, 0.22, 1.12, 0.036 +19840809, 1.99, -1.08, -0.21, 0.036 +19840810, 0.21, 0.47, 0.17, 0.036 +19840813, -0.13, -0.17, 0.16, 0.036 +19840814, -0.52, 0.55, 0.46, 0.036 +19840815, -0.81, 0.50, 0.23, 0.036 +19840816, 0.52, -0.26, -0.01, 0.036 +19840817, 0.08, -0.02, 0.10, 0.036 +19840820, 0.29, -0.54, 0.32, 0.036 +19840821, 1.52, -0.63, -0.25, 0.036 +19840822, -0.32, 0.52, 0.58, 0.036 +19840823, 0.06, 0.09, -0.12, 0.036 +19840824, 0.17, 0.20, 0.03, 0.036 +19840827, -0.56, 0.19, 0.62, 0.036 +19840828, 0.48, -0.28, -0.10, 0.036 +19840829, -0.09, 0.30, 0.12, 0.036 +19840830, -0.29, 0.37, 0.04, 0.036 +19840831, 0.08, 0.14, 0.04, 0.036 +19840904, -0.90, 0.37, 0.43, 0.045 +19840905, -0.38, 0.10, 0.25, 0.045 +19840906, 0.69, -0.35, -0.04, 0.045 +19840907, -0.62, 0.51, 0.30, 0.045 +19840910, -0.12, -0.27, 0.16, 0.045 +19840911, 0.19, 0.19, -0.04, 0.045 +19840912, -0.03, -0.08, 0.53, 0.045 +19840913, 1.56, -1.15, -0.44, 0.045 +19840914, 0.60, 0.14, -0.15, 0.045 +19840917, 0.03, -0.14, 0.14, 0.045 +19840918, -0.60, 0.49, 0.66, 0.045 +19840919, -0.42, 0.27, 0.91, 0.045 +19840920, 0.25, -0.26, 0.40, 0.045 +19840921, -0.82, 1.01, 0.18, 0.045 +19840924, -0.34, -0.16, 0.47, 0.045 +19840925, 0.05, -0.55, 0.45, 0.045 +19840926, 0.26, -0.30, 0.36, 0.045 +19840927, 0.28, -0.12, 0.42, 0.045 +19840928, -0.45, 0.44, 0.33, 0.045 +19841001, -0.84, 0.12, 0.73, 0.043 +19841002, -0.70, 0.25, 0.52, 0.043 +19841003, -0.67, 0.14, 0.14, 0.043 +19841004, 0.16, -0.14, -0.05, 0.043 +19841005, -0.11, 0.32, 0.09, 0.043 +19841008, -0.40, 0.07, 0.25, 0.043 +19841009, -0.23, -0.02, 0.22, 0.043 +19841010, 0.14, -0.43, -0.13, 0.043 +19841011, 0.41, -0.04, 0.09, 0.043 +19841012, 0.79, -0.35, -0.15, 0.043 +19841015, 0.78, -0.53, -0.30, 0.043 +19841016, -0.42, 0.48, -0.14, 0.043 +19841017, -0.30, 0.34, -0.57, 0.043 +19841018, 1.93, -1.35, -0.98, 0.043 +19841019, 0.10, 0.46, -0.41, 0.043 +19841022, -0.37, 0.23, -0.17, 0.043 +19841023, -0.16, 0.07, 0.04, 0.043 +19841024, -0.01, -0.20, 0.12, 0.043 +19841025, -0.57, 0.13, 0.75, 0.043 +19841026, -0.66, 0.09, 0.56, 0.043 +19841029, -0.34, -0.10, -0.06, 0.043 +19841030, 1.01, -0.86, -0.09, 0.043 +19841031, -0.34, 0.17, 0.15, 0.043 +19841101, 0.68, -0.46, 0.25, 0.035 +19841102, 0.09, 0.13, 0.26, 0.035 +19841105, 0.63, -0.38, 0.32, 0.035 +19841106, 0.94, -0.44, -0.10, 0.035 +19841107, -0.67, 0.31, 0.42, 0.035 +19841108, -0.21, 0.09, -0.01, 0.035 +19841109, -0.45, 0.66, 0.26, 0.035 +19841112, -0.21, -0.05, -0.04, 0.035 +19841113, -0.76, 0.36, 0.25, 0.035 +19841114, -0.10, -0.19, 0.07, 0.035 +19841115, -0.13, -0.30, 0.36, 0.035 +19841116, -0.89, 0.42, 0.22, 0.035 +19841119, -0.73, -0.15, 0.29, 0.035 +19841120, 0.43, -0.61, 0.16, 0.035 +19841121, 0.20, -0.20, 0.29, 0.035 +19841123, 1.27, -0.55, -0.51, 0.035 +19841126, -0.62, 0.51, -0.01, 0.035 +19841127, 0.45, -0.49, 0.08, 0.035 +19841128, -0.70, 0.45, 0.45, 0.035 +19841129, -0.67, 0.23, 0.62, 0.035 +19841130, -0.27, -0.12, 0.35, 0.035 +19841203, -0.48, -0.02, 0.35, 0.032 +19841204, 0.18, -0.28, 0.09, 0.032 +19841205, -0.72, -0.09, 0.79, 0.032 +19841206, 0.25, -0.34, -0.23, 0.032 +19841207, -0.21, 0.13, 0.20, 0.032 +19841210, 0.24, -0.32, 0.01, 0.032 +19841211, 0.17, -0.08, -0.24, 0.032 +19841212, -0.22, 0.24, -0.13, 0.032 +19841213, -0.41, 0.33, 0.00, 0.032 +19841214, 0.47, -0.26, -0.27, 0.032 +19841217, 0.46, -0.62, 0.21, 0.032 +19841218, 2.40, -1.06, -1.16, 0.032 +19841219, -0.26, 0.89, -0.58, 0.032 +19841220, -0.43, 0.34, 0.57, 0.032 +19841221, -0.37, 0.19, 0.20, 0.032 +19841224, 0.67, -0.01, -0.07, 0.032 +19841226, -0.14, 0.14, 0.03, 0.032 +19841227, -0.44, 0.25, 0.30, 0.032 +19841228, 0.23, -0.09, -0.03, 0.032 +19841231, 0.46, 0.18, -0.03, 0.032 +19850102, -0.93, 0.78, 0.25, 0.029 +19850103, -0.33, 0.41, -0.03, 0.029 +19850104, -0.42, 0.35, -0.17, 0.029 +19850107, 0.25, -0.17, 0.14, 0.029 +19850108, -0.05, 0.19, 0.15, 0.029 +19850109, 0.63, -0.11, -0.17, 0.029 +19850110, 1.68, -0.70, -0.70, 0.029 +19850111, -0.05, 0.45, -0.31, 0.029 +19850114, 1.41, -0.32, -0.90, 0.029 +19850115, 0.27, 0.47, -0.19, 0.029 +19850116, 0.40, 0.39, -0.07, 0.029 +19850117, -0.12, 0.62, -0.18, 0.029 +19850118, 0.31, 0.25, 0.02, 0.029 +19850121, 1.96, -0.91, -0.92, 0.029 +19850122, 0.18, 0.21, -0.14, 0.029 +19850123, 0.99, -0.27, -0.71, 0.029 +19850124, -0.15, 0.55, -0.34, 0.029 +19850125, 0.40, 0.13, -0.33, 0.029 +19850128, 0.17, 0.42, -0.58, 0.029 +19850129, 0.82, -0.36, -0.26, 0.029 +19850130, 0.24, 0.39, -0.06, 0.029 +19850131, 0.04, 0.11, 0.48, 0.029 +19850201, -0.45, 0.31, 0.37, 0.030 +19850204, 0.97, -0.46, -0.47, 0.030 +19850205, 0.30, 0.41, -0.08, 0.030 +19850206, 0.08, 0.56, -0.22, 0.030 +19850207, 0.79, 0.01, -0.40, 0.030 +19850208, 0.24, 0.22, 0.16, 0.030 +19850211, -0.78, 0.57, 0.34, 0.030 +19850212, -0.05, 0.09, 0.41, 0.030 +19850213, 1.35, -0.74, -0.18, 0.030 +19850214, -0.31, 0.44, 0.06, 0.030 +19850215, -0.43, 0.30, 0.09, 0.030 +19850219, -0.14, -0.07, 0.10, 0.030 +19850220, 0.02, 0.18, -0.29, 0.030 +19850221, -0.55, 0.18, 0.21, 0.030 +19850222, -0.39, -0.04, 0.28, 0.030 +19850225, -0.25, -0.85, -0.12, 0.030 +19850226, 0.83, -0.60, -0.50, 0.030 +19850227, -0.19, 0.13, 0.12, 0.030 +19850228, 0.19, -0.10, -0.30, 0.030 +19850301, 1.04, -0.28, -0.34, 0.029 +19850304, -0.53, 0.46, 0.17, 0.029 +19850305, 0.05, -0.10, 0.28, 0.029 +19850306, -0.78, 0.51, 0.59, 0.029 +19850307, -0.58, 0.24, 0.68, 0.029 +19850308, -0.27, 0.09, 0.23, 0.029 +19850311, -0.22, -0.21, 0.15, 0.029 +19850312, 0.31, -0.52, 0.35, 0.029 +19850313, -0.86, 0.12, 0.82, 0.029 +19850314, -0.15, 0.10, 0.10, 0.029 +19850315, -0.45, 0.55, -0.07, 0.029 +19850318, -0.12, -0.50, 0.19, 0.029 +19850319, 1.21, -0.98, -0.75, 0.029 +19850320, -0.21, 0.06, 0.24, 0.029 +19850321, 0.14, -0.05, 0.11, 0.029 +19850322, -0.20, -0.04, 0.23, 0.029 +19850325, -0.57, -0.18, 0.82, 0.029 +19850326, 0.16, -0.28, 0.14, 0.029 +19850327, 0.57, -0.19, -0.17, 0.029 +19850328, 0.10, 0.13, 0.11, 0.029 +19850329, 0.56, -0.15, 0.20, 0.029 +19850401, 0.28, -0.17, 0.01, 0.034 +19850402, -0.36, 0.29, 0.25, 0.034 +19850403, -0.74, 0.26, 0.56, 0.034 +19850404, -0.09, -0.08, 0.12, 0.034 +19850408, -0.44, 0.33, 0.60, 0.034 +19850409, 0.04, -0.12, 0.18, 0.034 +19850410, 0.59, -0.12, -0.25, 0.034 +19850411, 0.42, -0.09, -0.07, 0.034 +19850412, 0.15, -0.09, 0.00, 0.034 +19850415, 0.20, -0.11, 0.12, 0.034 +19850416, 0.15, -0.04, -0.11, 0.034 +19850417, 0.21, 0.04, -0.01, 0.034 +19850418, -0.46, 0.38, 0.37, 0.034 +19850419, 0.09, -0.20, 0.16, 0.034 +19850422, -0.28, 0.05, 0.28, 0.034 +19850423, 0.54, -0.46, -0.06, 0.034 +19850424, 0.14, -0.12, 0.13, 0.034 +19850425, 0.49, -0.37, 0.23, 0.034 +19850426, -0.53, 0.50, 0.01, 0.034 +19850429, -0.82, 0.23, 0.80, 0.034 +19850430, -0.52, 0.01, 0.43, 0.034 +19850501, -0.67, 0.42, 0.55, 0.030 +19850502, 0.14, -0.46, 0.30, 0.030 +19850503, 0.58, -0.39, -0.21, 0.030 +19850506, 0.04, -0.03, 0.15, 0.030 +19850507, 0.40, -0.22, -0.20, 0.030 +19850508, -0.01, 0.17, -0.20, 0.030 +19850509, 0.74, -0.13, -0.33, 0.030 +19850510, 1.30, -0.25, -0.78, 0.030 +19850513, 0.14, -0.06, -0.23, 0.030 +19850514, -0.30, 0.26, 0.47, 0.030 +19850515, 0.29, -0.17, 0.02, 0.030 +19850516, 0.54, -0.23, 0.09, 0.030 +19850517, 0.91, -0.26, -0.36, 0.030 +19850520, 1.16, -0.46, -0.47, 0.030 +19850521, -0.06, -0.08, -0.07, 0.030 +19850522, -0.56, 0.17, -0.04, 0.030 +19850523, -0.47, 0.20, 0.21, 0.030 +19850524, 0.31, -0.16, -0.09, 0.030 +19850528, -0.16, 0.02, 0.29, 0.030 +19850529, -0.08, 0.09, -0.20, 0.030 +19850530, -0.02, -0.06, 0.21, 0.030 +19850531, 0.75, -0.55, 0.02, 0.030 +19850603, 0.05, 0.07, -0.17, 0.028 +19850604, 0.37, -0.23, -0.28, 0.028 +19850605, 0.13, 0.22, 0.01, 0.028 +19850606, 0.36, -0.39, -0.27, 0.028 +19850607, -0.61, 0.45, 0.22, 0.028 +19850610, -0.13, -0.25, 0.36, 0.028 +19850611, -0.22, 0.25, 0.39, 0.028 +19850612, -0.61, 0.43, 0.75, 0.028 +19850613, -1.11, 0.49, 0.67, 0.028 +19850614, 0.74, -0.56, 0.03, 0.028 +19850617, -0.26, 0.17, 0.13, 0.028 +19850618, 0.37, -0.18, 0.29, 0.028 +19850619, -0.21, 0.35, -0.04, 0.028 +19850620, -0.07, -0.10, 0.17, 0.028 +19850621, 1.06, -0.82, -0.04, 0.028 +19850624, 0.04, 0.17, -0.60, 0.028 +19850625, 0.35, 0.20, -0.58, 0.028 +19850626, 0.16, -0.03, -0.38, 0.028 +19850627, 0.59, -0.08, -0.30, 0.028 +19850628, 0.29, 0.21, 0.02, 0.028 +19850701, 0.27, -0.08, -0.13, 0.028 +19850702, -0.11, 0.30, 0.15, 0.028 +19850703, -0.20, 0.28, 0.15, 0.028 +19850705, 0.53, 0.14, 0.08, 0.028 +19850708, -0.33, 0.01, 0.28, 0.028 +19850709, -0.37, 0.19, 0.57, 0.028 +19850710, 0.59, -0.10, -0.14, 0.028 +19850711, 0.34, 0.25, -0.29, 0.028 +19850712, 0.21, 0.14, 0.02, 0.028 +19850715, -0.15, 0.37, 0.06, 0.028 +19850716, 0.98, -0.09, -0.55, 0.028 +19850717, 0.37, 0.20, -0.53, 0.028 +19850718, -0.57, 0.64, 0.33, 0.028 +19850719, 0.30, 0.41, 0.04, 0.028 +19850722, -0.45, 0.10, -0.54, 0.028 +19850723, -0.84, 0.69, -1.17, 0.028 +19850724, -0.62, 0.14, 0.29, 0.028 +19850725, 0.08, -0.07, 0.07, 0.028 +19850726, 0.11, -0.11, -0.05, 0.028 +19850729, -1.39, 0.35, 0.22, 0.028 +19850730, 0.05, -0.37, 0.29, 0.028 +19850731, 0.49, -0.23, -0.44, 0.028 +19850801, 0.69, -0.06, -0.42, 0.025 +19850802, -0.23, 0.47, 0.06, 0.025 +19850805, -0.53, -0.31, 0.02, 0.025 +19850806, -1.20, 0.28, 0.10, 0.025 +19850807, -0.29, -0.29, 0.45, 0.025 +19850808, 0.70, -0.39, 0.39, 0.025 +19850809, -0.23, 0.16, -0.12, 0.025 +19850812, -0.34, -0.14, 0.08, 0.025 +19850813, -0.19, -0.02, 0.37, 0.025 +19850814, 0.09, 0.04, 0.19, 0.025 +19850815, -0.06, 0.20, 0.37, 0.025 +19850816, -0.56, 0.02, -0.06, 0.025 +19850819, 0.11, -0.27, 0.32, 0.025 +19850820, 0.67, -0.50, -0.05, 0.025 +19850821, 0.48, -0.08, -0.09, 0.025 +19850822, -0.76, 0.45, 0.32, 0.025 +19850823, -0.12, 0.19, 0.15, 0.025 +19850826, 0.12, -0.23, -0.03, 0.025 +19850827, 0.33, -0.18, -0.22, 0.025 +19850828, 0.31, -0.17, 0.00, 0.025 +19850829, 0.07, 0.07, 0.16, 0.025 +19850830, -0.05, 0.39, 0.32, 0.025 +19850903, -0.43, -0.19, 0.08, 0.032 +19850904, -0.33, 0.00, 0.25, 0.032 +19850905, -0.04, -0.05, 0.05, 0.032 +19850906, 0.41, -0.13, -0.49, 0.032 +19850909, 0.07, -0.15, -0.15, 0.032 +19850910, -0.75, 0.11, 0.12, 0.032 +19850911, -1.03, 0.11, 0.27, 0.032 +19850912, -0.79, 0.06, -0.25, 0.032 +19850913, -0.60, -0.43, 0.18, 0.032 +19850916, -0.14, -0.33, 0.04, 0.032 +19850917, -0.93, -0.35, 0.59, 0.032 +19850918, 0.07, -0.26, 0.05, 0.032 +19850919, 0.91, 0.00, -0.26, 0.032 +19850920, -0.46, 0.70, -0.01, 0.032 +19850923, 0.91, -0.57, -0.35, 0.032 +19850924, -0.76, 0.40, 0.27, 0.032 +19850925, -1.01, 0.39, 0.42, 0.032 +19850926, 0.07, -0.65, 0.40, 0.032 +19850930, 0.26, -0.33, 0.16, 0.032 +19851001, 1.36, -0.84, 0.02, 0.028 +19851002, -0.39, 0.25, 0.69, 0.028 +19851003, 0.11, -0.09, 0.38, 0.028 +19851004, -0.53, 0.38, 0.46, 0.028 +19851007, -0.68, 0.13, 0.20, 0.028 +19851008, -0.13, -0.31, 0.40, 0.028 +19851009, 0.34, -0.06, -0.02, 0.028 +19851010, 0.24, 0.03, -0.16, 0.028 +19851011, 0.78, -0.19, -0.59, 0.028 +19851014, 1.01, -0.50, -0.61, 0.028 +19851015, -0.12, 0.25, -0.11, 0.028 +19851016, 0.84, -0.47, -0.34, 0.028 +19851017, 0.04, 0.38, -0.29, 0.028 +19851018, -0.23, 0.25, 0.02, 0.028 +19851021, -0.09, -0.25, 0.24, 0.028 +19851022, 0.51, -0.35, -0.25, 0.028 +19851023, 0.46, -0.19, 0.08, 0.028 +19851024, -0.20, 0.37, 0.08, 0.028 +19851025, -0.51, 0.24, 0.37, 0.028 +19851028, 0.07, -0.37, 0.33, 0.028 +19851029, 0.71, -0.28, -0.20, 0.028 +19851030, 0.42, -0.14, 0.01, 0.028 +19851031, -0.06, 0.19, 0.13, 0.028 +19851101, 0.73, -0.31, -0.21, 0.030 +19851104, -0.04, 0.11, 0.01, 0.030 +19851105, 0.58, -0.27, -0.39, 0.030 +19851106, 0.29, 0.09, -0.28, 0.030 +19851107, 0.02, 0.19, 0.02, 0.030 +19851108, 0.68, 0.10, 0.01, 0.030 +19851111, 1.52, -0.92, -0.27, 0.030 +19851112, 0.50, 0.24, -0.05, 0.030 +19851113, -0.46, 0.18, -0.12, 0.030 +19851114, 0.84, -0.35, 0.08, 0.030 +19851115, -0.32, 0.63, -0.12, 0.030 +19851118, 0.19, -0.37, -0.51, 0.030 +19851119, 0.05, 0.55, -0.02, 0.030 +19851120, 0.10, -0.16, -0.09, 0.030 +19851121, 1.08, -0.29, -0.13, 0.030 +19851122, 0.16, 0.42, 0.04, 0.030 +19851125, -0.55, 0.15, 0.12, 0.030 +19851126, 0.13, -0.03, -0.15, 0.030 +19851127, 0.81, -0.17, -0.64, 0.030 +19851129, -0.02, 0.38, -0.06, 0.030 +19851202, -0.75, 0.60, -0.01, 0.031 +19851203, 0.20, 0.03, -0.01, 0.031 +19851204, 1.49, -0.40, -0.58, 0.031 +19851205, -0.05, 0.34, -0.29, 0.031 +19851206, -0.52, -0.09, 0.09, 0.031 +19851209, 0.57, -0.56, -0.51, 0.031 +19851210, 0.10, -0.13, -0.47, 0.031 +19851211, 0.88, -0.42, -0.22, 0.031 +19851212, 0.23, 0.26, -0.16, 0.031 +19851213, 1.38, -0.41, -0.27, 0.031 +19851216, 0.77, -0.67, -0.14, 0.031 +19851217, -0.61, -0.06, 0.88, 0.031 +19851218, -0.44, 0.03, 0.46, 0.031 +19851219, 0.02, 0.09, -0.03, 0.031 +19851220, 0.38, 0.26, -0.07, 0.031 +19851223, -1.02, 0.65, -0.28, 0.031 +19851224, -0.56, 0.22, 0.19, 0.031 +19851226, 0.19, 0.08, 0.00, 0.031 +19851227, 0.87, -0.23, -0.10, 0.031 +19851230, 0.39, -0.29, -0.22, 0.031 +19851231, 0.31, 0.15, 0.29, 0.031 +19860102, -0.63, 0.84, 0.38, 0.025 +19860103, 0.56, -0.07, 0.21, 0.025 +19860106, -0.04, 0.09, 0.09, 0.025 +19860107, 1.38, -0.42, 0.05, 0.025 +19860108, -2.16, 1.40, 0.30, 0.025 +19860109, -1.17, -0.77, -0.14, 0.025 +19860110, -0.02, 0.19, 0.26, 0.025 +19860113, 0.28, -0.04, 0.28, 0.025 +19860114, 0.01, 0.44, -0.01, 0.025 +19860115, 0.79, -0.04, -0.21, 0.025 +19860116, 0.46, -0.02, -0.37, 0.025 +19860117, -0.17, 0.47, 0.19, 0.025 +19860120, -0.39, 0.20, 0.09, 0.025 +19860121, -0.67, 0.35, -0.17, 0.025 +19860122, -0.93, 0.45, 0.21, 0.025 +19860123, 0.24, -0.26, -0.23, 0.025 +19860124, 0.95, -0.22, -0.11, 0.025 +19860127, 0.45, -0.33, -0.15, 0.025 +19860128, 0.98, -0.55, 0.08, 0.025 +19860129, 0.24, -0.69, -0.29, 0.025 +19860130, -0.34, 0.61, 0.10, 0.025 +19860131, 0.92, -0.46, 0.01, 0.025 +19860203, 0.93, -0.55, -0.62, 0.028 +19860204, -0.25, 0.14, -0.30, 0.028 +19860205, 0.07, -0.01, -0.56, 0.028 +19860206, 0.26, 0.19, -0.10, 0.028 +19860207, 0.49, 0.08, -0.33, 0.028 +19860210, 0.66, -0.41, -0.13, 0.028 +19860211, 0.03, 0.17, -0.06, 0.028 +19860212, 0.14, 0.17, 0.29, 0.028 +19860213, 0.57, -0.22, 0.02, 0.028 +19860214, 0.89, -0.43, 0.12, 0.028 +19860218, 1.12, -0.51, -0.10, 0.028 +19860219, -0.92, 0.82, -0.06, 0.028 +19860220, 0.83, -0.54, -0.18, 0.028 +19860221, 1.00, -0.02, 0.16, 0.028 +19860224, -0.12, 0.03, 0.33, 0.028 +19860225, -0.23, 0.19, 0.35, 0.028 +19860226, 0.10, 0.08, 0.15, 0.028 +19860227, 1.14, -0.21, 0.17, 0.028 +19860228, 0.19, 0.36, -0.02, 0.028 +19860303, -0.39, 0.69, 0.00, 0.030 +19860304, -0.14, 0.80, 0.17, 0.030 +19860305, -0.20, -0.30, 0.09, 0.030 +19860306, 0.41, 0.25, 0.00, 0.030 +19860307, 0.14, 0.12, -0.23, 0.030 +19860310, 0.43, -0.06, -0.20, 0.030 +19860311, 1.86, -1.09, 0.03, 0.030 +19860312, 0.45, 0.10, 0.26, 0.030 +19860313, 0.20, -0.14, -0.33, 0.030 +19860314, 1.03, -0.84, -0.22, 0.030 +19860317, -0.75, 0.02, -0.32, 0.030 +19860318, 0.47, 0.04, -0.17, 0.030 +19860319, -0.17, 0.13, -0.09, 0.030 +19860320, 0.39, -0.16, -0.02, 0.030 +19860321, -0.83, 1.68, 0.67, 0.030 +19860324, 0.38, -1.25, -0.25, 0.030 +19860325, -0.25, -0.08, 0.25, 0.030 +19860326, 0.98, -0.58, 0.05, 0.030 +19860327, 0.71, -0.07, 0.05, 0.030 +19860331, 0.06, 0.21, -0.15, 0.030 +19860401, -1.21, 0.86, 0.34, 0.024 +19860402, 0.09, -0.28, -0.09, 0.024 +19860403, -1.01, 0.80, 0.01, 0.024 +19860404, -1.45, 0.81, 0.26, 0.024 +19860407, -0.32, -0.45, 0.13, 0.024 +19860408, 1.90, -0.84, -0.60, 0.024 +19860409, 0.21, 0.14, -0.23, 0.024 +19860410, 0.97, -0.35, -0.42, 0.024 +19860411, -0.08, 0.34, -0.13, 0.024 +19860414, 0.53, 0.03, -0.55, 0.024 +19860415, 0.14, -0.10, 0.13, 0.024 +19860416, 1.75, -0.60, -0.57, 0.024 +19860417, 0.33, 0.32, -0.26, 0.024 +19860418, -0.11, 0.46, -0.11, 0.024 +19860421, 0.76, -0.32, -0.28, 0.024 +19860422, -0.78, 0.70, 0.11, 0.024 +19860423, -0.42, 0.02, 0.03, 0.024 +19860424, 0.18, 0.29, -0.51, 0.024 +19860425, 0.00, 0.18, -0.42, 0.024 +19860428, 0.17, -0.27, -0.18, 0.024 +19860429, -0.97, 0.37, -0.09, 0.024 +19860430, -1.90, 0.65, 0.53, 0.024 +19860501, -0.20, -0.22, 0.27, 0.023 +19860502, -0.06, 0.17, 0.19, 0.023 +19860505, 1.11, -0.60, 0.11, 0.023 +19860506, -0.12, 0.23, 0.05, 0.023 +19860507, -0.42, 0.22, 0.25, 0.023 +19860508, 0.50, 0.10, 0.20, 0.023 +19860509, 0.30, 0.14, 0.05, 0.023 +19860512, -0.18, -0.17, 0.32, 0.023 +19860513, -0.40, 0.10, -0.16, 0.023 +19860514, 0.38, -0.27, -0.40, 0.023 +19860515, -1.09, 0.68, 0.29, 0.023 +19860516, -0.56, 0.48, 0.10, 0.023 +19860519, 0.06, -0.40, 0.08, 0.023 +19860520, 1.01, -0.86, -0.49, 0.023 +19860521, -0.16, 0.33, 0.10, 0.023 +19860522, 1.61, -0.94, -0.21, 0.023 +19860523, 0.55, 0.04, -0.06, 0.023 +19860527, 1.27, -0.39, -0.33, 0.023 +19860528, 0.69, -0.19, -0.51, 0.023 +19860529, 0.40, -0.20, -0.11, 0.023 +19860530, -0.13, 0.41, 0.16, 0.023 +19860602, -0.75, 0.53, 0.06, 0.025 +19860603, 0.10, 0.02, -0.21, 0.025 +19860604, -0.49, 0.53, -0.21, 0.025 +19860605, 0.43, -0.46, 0.08, 0.025 +19860606, 0.01, 0.11, -0.03, 0.025 +19860609, -2.00, 0.75, 0.35, 0.025 +19860610, -0.23, -0.02, -0.11, 0.025 +19860611, 0.61, -0.15, -0.22, 0.025 +19860612, 0.17, 0.02, 0.05, 0.025 +19860613, 1.45, -0.81, -0.17, 0.025 +19860616, 0.02, -0.34, 0.68, 0.025 +19860617, -0.57, 0.11, 0.33, 0.025 +19860618, 0.04, -0.41, 0.29, 0.025 +19860619, -0.17, 0.40, -0.01, 0.025 +19860620, 0.76, -1.43, -0.21, 0.025 +19860623, -0.54, 0.67, 0.13, 0.025 +19860624, 0.77, -0.22, 0.00, 0.025 +19860625, 0.70, -0.37, 0.06, 0.025 +19860626, -0.05, 0.26, 0.11, 0.025 +19860627, 0.29, -0.21, 0.31, 0.025 +19860630, 0.52, 0.11, 0.03, 0.025 +19860701, 0.47, -0.03, -0.58, 0.024 +19860702, 0.33, -0.23, -0.23, 0.024 +19860703, -0.21, 0.29, 0.17, 0.024 +19860707, -2.90, 0.50, 1.64, 0.024 +19860708, -1.52, -1.08, 1.00, 0.024 +19860709, 0.64, 0.01, -0.24, 0.024 +19860710, 0.00, -0.17, 0.34, 0.024 +19860711, -0.12, 0.28, 0.53, 0.024 +19860714, -1.65, -0.08, 1.52, 0.024 +19860715, -1.68, 0.05, 1.12, 0.024 +19860716, 0.38, -0.17, -0.06, 0.024 +19860717, 0.45, -0.21, -0.46, 0.024 +19860718, 0.05, -0.19, -0.22, 0.024 +19860721, -0.17, -0.31, 0.38, 0.024 +19860722, 0.75, -0.74, 0.10, 0.024 +19860723, 0.12, -0.11, -0.12, 0.024 +19860724, -0.29, -0.17, -0.08, 0.024 +19860725, 0.76, -0.69, -0.15, 0.024 +19860728, -1.62, 0.42, 0.19, 0.024 +19860729, -0.68, -0.14, 0.37, 0.024 +19860730, 0.48, -0.95, -0.06, 0.024 +19860731, -0.12, 0.06, -0.17, 0.024 +19860801, -0.43, 0.34, 0.45, 0.022 +19860804, 0.11, -1.24, 0.63, 0.022 +19860805, 0.26, -0.02, 0.68, 0.022 +19860806, -0.15, -0.26, 0.28, 0.022 +19860807, 0.24, -0.05, 0.05, 0.022 +19860808, 0.02, 0.05, -0.08, 0.022 +19860811, 1.49, -0.75, -0.48, 0.022 +19860812, 1.08, -0.36, -0.51, 0.022 +19860813, 0.92, -0.26, 0.13, 0.022 +19860814, 0.35, 0.22, -0.26, 0.022 +19860815, 0.23, -0.03, 0.39, 0.022 +19860818, 0.04, -0.24, 0.22, 0.022 +19860819, -0.26, 0.08, 0.42, 0.022 +19860820, 1.08, -0.82, 0.61, 0.022 +19860821, -0.04, 0.04, 0.24, 0.022 +19860822, 0.13, -0.11, 0.03, 0.022 +19860825, -0.80, 0.26, 0.24, 0.022 +19860826, 1.53, -1.32, 0.19, 0.022 +19860827, 0.16, -0.03, 0.36, 0.022 +19860828, -0.09, 0.31, -0.15, 0.022 +19860829, 0.04, 0.18, -0.11, 0.022 +19860902, -1.41, 0.89, 0.76, 0.021 +19860903, 0.26, -0.62, 0.11, 0.021 +19860904, 1.26, -0.35, 0.16, 0.021 +19860905, -1.25, 0.81, -0.15, 0.021 +19860908, -1.12, 0.16, -0.15, 0.021 +19860909, -0.29, -0.17, 0.17, 0.021 +19860910, -0.46, -0.15, 0.26, 0.021 +19860911, -4.42, 1.13, 0.84, 0.021 +19860912, -1.85, 0.37, 0.43, 0.021 +19860915, 0.26, -0.74, 0.27, 0.021 +19860916, -0.18, -0.40, 0.23, 0.021 +19860917, 0.31, 0.24, 0.06, 0.021 +19860918, 0.15, -0.09, -0.30, 0.021 +19860919, -0.07, 0.32, 0.16, 0.021 +19860922, 1.05, -0.34, -0.45, 0.021 +19860923, 0.45, 0.18, 0.10, 0.021 +19860924, 0.39, -0.05, 0.03, 0.021 +19860925, -1.53, 0.85, 0.46, 0.021 +19860926, 0.04, 0.12, 0.27, 0.021 +19860929, -0.99, 0.18, 0.33, 0.021 +19860930, 0.65, 0.03, -0.15, 0.021 +19861001, 0.83, -0.39, -0.13, 0.020 +19861002, 0.12, 0.00, -0.18, 0.020 +19861003, -0.09, -0.10, 0.20, 0.020 +19861006, 0.34, -0.45, -0.30, 0.020 +19861007, -0.18, -0.05, 0.56, 0.020 +19861008, 0.77, -0.63, -0.16, 0.020 +19861009, -0.26, 0.26, -0.01, 0.020 +19861010, -0.10, 0.15, -0.25, 0.020 +19861013, 0.13, -0.13, 0.06, 0.020 +19861014, -0.20, 0.09, -0.43, 0.020 +19861015, 1.21, -0.54, -0.48, 0.020 +19861016, 0.27, -0.20, 0.01, 0.020 +19861017, -0.28, 0.24, -0.03, 0.020 +19861020, -0.98, 0.42, 0.17, 0.020 +19861021, -0.05, 0.18, 0.12, 0.020 +19861022, 0.14, -0.13, -0.13, 0.020 +19861023, 1.08, -0.63, -0.38, 0.020 +19861024, -0.26, 0.29, -0.07, 0.020 +19861027, 0.21, -0.31, -0.14, 0.020 +19861028, 0.20, -0.07, -0.10, 0.020 +19861029, 0.61, -0.20, -0.09, 0.020 +19861030, 1.01, -0.49, 0.13, 0.020 +19861031, 0.05, 0.27, 0.31, 0.020 +19861103, 0.60, -0.68, -0.10, 0.021 +19861104, 0.21, 0.06, 0.01, 0.021 +19861105, 0.21, 0.12, 0.30, 0.021 +19861106, -0.24, 0.05, 0.15, 0.021 +19861107, -0.02, 0.22, -0.01, 0.021 +19861110, 0.06, 0.09, 0.10, 0.021 +19861111, 0.32, -0.21, -0.08, 0.021 +19861112, -0.20, 0.06, 0.15, 0.021 +19861113, -1.28, 0.70, 0.52, 0.021 +19861114, 0.43, -0.28, -0.11, 0.021 +19861117, -0.57, 0.04, -0.08, 0.021 +19861118, -2.26, 1.02, 0.27, 0.021 +19861119, -0.05, -1.03, 0.10, 0.021 +19861120, 1.58, -0.78, -0.14, 0.021 +19861121, 1.29, -0.94, -0.21, 0.021 +19861124, 0.55, -0.46, -0.26, 0.021 +19861125, 0.26, -0.02, -0.46, 0.021 +19861126, 0.15, -0.16, -0.40, 0.021 +19861128, 0.19, 0.28, 0.23, 0.021 +19861201, -0.16, -0.50, -0.08, 0.022 +19861202, 1.71, -0.89, -0.37, 0.022 +19861203, 0.10, 0.01, -0.34, 0.022 +19861204, -0.18, 0.30, -0.14, 0.022 +19861205, -0.68, 0.40, 0.09, 0.022 +19861208, -0.11, -0.23, 0.04, 0.022 +19861209, -0.68, 0.25, 0.22, 0.022 +19861210, 0.51, -0.47, 0.01, 0.022 +19861211, -0.95, 0.43, 0.05, 0.022 +19861212, -0.45, -0.04, 0.63, 0.022 +19861215, 0.08, -0.69, 0.42, 0.022 +19861216, 0.60, -0.43, -0.12, 0.022 +19861217, -0.82, 0.38, -0.04, 0.022 +19861218, -0.36, 0.11, 0.02, 0.022 +19861219, 0.83, -0.12, -0.08, 0.022 +19861222, -0.35, -0.19, 0.42, 0.022 +19861223, -0.99, 0.07, 0.01, 0.022 +19861224, 0.32, 0.18, -0.05, 0.022 +19861226, 0.11, 0.09, -0.15, 0.022 +19861229, -0.90, 0.14, 0.10, 0.022 +19861230, -0.54, 0.25, -0.13, 0.022 +19861231, -0.37, 1.04, -0.18, 0.022 +19870102, 1.79, -0.27, -0.01, 0.020 +19870105, 2.45, -0.11, -0.33, 0.020 +19870106, 0.43, 0.38, -0.61, 0.020 +19870107, 1.13, 0.20, -0.62, 0.020 +19870108, 0.82, 0.27, -0.33, 0.020 +19870109, 0.58, 0.23, 0.17, 0.020 +19870112, 0.70, 0.44, 0.24, 0.020 +19870113, -0.09, 0.29, 0.12, 0.020 +19870114, 0.94, -0.13, -0.47, 0.020 +19870115, 0.89, -0.03, -0.52, 0.020 +19870116, -0.02, -0.82, 0.08, 0.020 +19870119, 0.98, -0.51, -0.80, 0.020 +19870120, -0.09, -0.07, 0.42, 0.020 +19870121, -0.51, -0.31, 0.01, 0.020 +19870122, 1.85, -1.26, -0.69, 0.020 +19870123, -1.14, 0.65, 0.21, 0.020 +19870126, -0.38, -0.39, 0.38, 0.020 +19870127, 1.30, -0.63, -0.60, 0.020 +19870128, 0.56, -0.22, -0.22, 0.020 +19870129, -0.36, 0.36, 0.36, 0.020 +19870130, -0.02, 0.19, 0.29, 0.020 +19870202, 0.97, 0.25, -0.37, 0.023 +19870203, -0.03, 0.70, -0.32, 0.023 +19870204, 1.22, 0.03, -0.04, 0.023 +19870205, 0.68, 0.14, -0.16, 0.023 +19870206, -0.21, 0.64, -0.09, 0.023 +19870209, -0.62, 0.35, -0.13, 0.023 +19870210, -0.99, 0.63, -0.01, 0.023 +19870211, 0.86, 0.17, -0.91, 0.023 +19870212, -0.46, 0.83, -0.47, 0.023 +19870213, 1.25, -0.63, -0.83, 0.023 +19870217, 1.68, -0.72, -1.10, 0.023 +19870218, -0.02, -0.28, 0.22, 0.023 +19870219, 0.12, -0.15, 0.27, 0.023 +19870220, -0.02, 0.05, 0.19, 0.023 +19870223, -0.86, 0.32, -0.11, 0.023 +19870224, 0.20, 0.23, -0.51, 0.023 +19870225, 0.44, 0.14, -0.89, 0.023 +19870226, -0.22, 0.50, -0.38, 0.023 +19870227, 0.37, 0.10, -0.12, 0.023 +19870302, -0.22, 0.27, 0.29, 0.021 +19870303, 0.21, -0.29, 0.30, 0.021 +19870304, 1.25, -0.64, -0.21, 0.021 +19870305, 0.59, -0.17, -0.38, 0.021 +19870306, -0.02, 0.18, 0.32, 0.021 +19870309, -0.67, 0.31, 0.19, 0.021 +19870310, 0.79, -0.32, -0.50, 0.021 +19870311, -0.08, 0.56, -0.16, 0.021 +19870312, 0.29, 0.19, 0.00, 0.021 +19870313, -0.38, 0.37, 0.38, 0.021 +19870316, -0.60, 0.15, 0.18, 0.021 +19870317, 1.17, -0.65, -0.28, 0.021 +19870318, 0.06, 0.03, 0.36, 0.021 +19870319, 0.43, -0.10, -0.20, 0.021 +19870320, 1.06, -0.39, -0.11, 0.021 +19870323, 0.65, -1.00, 0.01, 0.021 +19870324, 0.11, -0.19, 0.17, 0.021 +19870325, -0.25, 0.27, 0.13, 0.021 +19870326, 0.17, 0.17, 0.29, 0.021 +19870327, -1.32, 1.16, 0.28, 0.021 +19870330, -2.27, 0.40, 0.73, 0.021 +19870331, 0.69, 0.01, -0.21, 0.021 +19870401, 0.08, -0.66, -0.09, 0.021 +19870402, 0.40, 0.29, -0.15, 0.021 +19870403, 1.92, -0.83, -0.69, 0.021 +19870406, 0.40, -0.23, -0.15, 0.021 +19870407, -1.41, 0.98, 0.42, 0.021 +19870408, 0.07, -0.02, -0.21, 0.021 +19870409, -1.33, 0.68, -0.24, 0.021 +19870410, -0.27, -0.03, -0.16, 0.021 +19870413, -2.06, 0.86, 0.13, 0.021 +19870414, -2.48, -0.32, -0.12, 0.021 +19870415, 1.59, -1.08, 0.04, 0.021 +19870416, 0.94, -0.25, 0.48, 0.021 +19870420, -0.31, -0.06, 0.16, 0.021 +19870421, 1.75, -1.96, -0.37, 0.021 +19870422, -1.43, 1.57, -0.15, 0.021 +19870423, -0.21, -0.06, 0.19, 0.021 +19870424, -1.63, 0.76, 0.28, 0.021 +19870427, -0.20, -0.88, 0.23, 0.021 +19870428, 0.45, 0.09, -0.08, 0.021 +19870429, 0.66, -0.25, 0.04, 0.021 +19870430, 1.12, -0.43, 0.08, 0.021 +19870501, -0.13, 0.05, 0.21, 0.019 +19870504, 0.32, -0.41, -0.05, 0.019 +19870505, 1.77, -0.87, -0.37, 0.019 +19870506, 0.03, -0.03, 0.65, 0.019 +19870507, -0.16, 0.42, 0.51, 0.019 +19870508, -0.32, 0.51, 0.13, 0.019 +19870511, -0.45, 0.65, 0.41, 0.019 +19870512, 0.25, -0.57, -0.25, 0.019 +19870513, 0.21, 0.00, -0.53, 0.019 +19870514, 0.04, 0.15, -0.17, 0.019 +19870515, -1.96, 1.10, 0.25, 0.019 +19870518, -0.65, -0.61, 0.37, 0.019 +19870519, -2.05, 1.06, 0.05, 0.019 +19870520, -0.55, -0.18, -0.33, 0.019 +19870521, 0.67, -0.24, -0.27, 0.019 +19870522, 0.42, -0.58, 0.11, 0.019 +19870526, 2.18, -1.41, -0.37, 0.019 +19870527, 0.07, 0.28, -0.20, 0.019 +19870528, 0.56, -0.50, -0.45, 0.019 +19870529, -0.04, 0.57, 0.35, 0.019 +19870601, -0.04, -0.09, 0.28, 0.022 +19870602, -0.46, 0.34, 0.00, 0.022 +19870603, 1.35, -1.02, -0.20, 0.022 +19870604, 0.50, -0.25, -0.07, 0.022 +19870605, -0.30, 0.51, 0.07, 0.022 +19870608, 0.88, -0.60, 0.07, 0.022 +19870609, 0.20, -0.02, -0.40, 0.022 +19870610, 0.13, -0.02, 0.07, 0.022 +19870611, 0.34, -0.25, 0.01, 0.022 +19870612, 0.86, -0.53, -0.03, 0.022 +19870615, 0.41, -0.54, 0.10, 0.022 +19870616, 0.46, -0.28, -0.20, 0.022 +19870617, 0.07, 0.12, -0.12, 0.022 +19870618, 0.19, -0.18, 0.18, 0.022 +19870619, 0.27, 0.02, 0.14, 0.022 +19870622, 0.63, -0.65, -0.35, 0.022 +19870623, -0.32, 0.07, 0.08, 0.022 +19870624, -0.44, 0.40, -0.01, 0.022 +19870625, 0.55, -0.42, 0.29, 0.022 +19870626, -0.46, 0.31, 0.12, 0.022 +19870629, 0.05, -0.07, 0.47, 0.022 +19870630, -1.04, 1.01, 0.52, 0.022 +19870701, -0.24, 0.14, 0.15, 0.021 +19870702, 0.63, -0.36, -0.10, 0.021 +19870706, -0.21, 0.04, 0.25, 0.021 +19870707, 0.58, -0.26, 0.71, 0.021 +19870708, 0.24, 0.09, 0.07, 0.021 +19870709, -0.13, 0.37, 0.11, 0.021 +19870710, 0.20, -0.17, 0.12, 0.021 +19870713, -0.18, 0.24, 0.22, 0.021 +19870714, 0.91, -0.25, -0.28, 0.021 +19870715, -0.06, 0.24, 0.08, 0.021 +19870716, 0.56, -0.13, 0.07, 0.021 +19870717, 0.46, -0.10, 0.16, 0.021 +19870720, -0.83, 0.50, 0.24, 0.021 +19870721, -0.80, 0.36, -0.02, 0.021 +19870722, -0.10, -0.12, -0.08, 0.021 +19870723, -0.28, -0.12, -0.08, 0.021 +19870724, 0.37, -0.08, -0.29, 0.021 +19870727, 0.38, -0.38, -0.20, 0.021 +19870728, 0.47, -0.21, -0.11, 0.021 +19870729, 0.89, -0.44, -0.28, 0.021 +19870730, 0.71, -0.14, -0.22, 0.021 +19870731, 0.20, 0.10, 0.15, 0.021 +19870803, -0.38, 0.05, 0.60, 0.022 +19870804, -0.31, 0.16, 0.21, 0.022 +19870805, 0.71, -0.10, -0.44, 0.022 +19870806, 1.09, -0.30, -0.86, 0.022 +19870807, 0.39, 0.12, -0.24, 0.022 +19870810, 1.32, -0.98, -0.05, 0.022 +19870811, 1.35, -1.03, -0.13, 0.022 +19870812, -0.22, -0.04, 0.28, 0.022 +19870813, 0.61, -0.34, 0.03, 0.022 +19870814, -0.09, 0.16, 0.65, 0.022 +19870817, 0.09, -0.27, -0.19, 0.022 +19870818, -1.40, 0.46, 0.13, 0.022 +19870819, 0.11, 0.21, -0.07, 0.022 +19870820, 1.39, -0.50, -0.27, 0.022 +19870821, 0.30, 0.10, -0.41, 0.022 +19870824, -0.59, 0.38, 0.05, 0.022 +19870825, 0.81, -0.56, -0.34, 0.022 +19870826, -0.47, 0.44, 0.11, 0.022 +19870827, -0.82, 0.68, 0.06, 0.022 +19870828, -1.10, 0.75, -0.14, 0.022 +19870831, 0.71, -0.16, 0.11, 0.022 +19870901, -1.59, 1.02, -0.08, 0.021 +19870902, -0.67, -0.08, -0.06, 0.021 +19870903, -0.45, 0.36, 0.01, 0.021 +19870904, -0.91, 0.61, 0.19, 0.021 +19870908, -1.27, -1.02, 0.11, 0.021 +19870909, 0.21, 0.23, 0.00, 0.021 +19870910, 0.92, -0.05, -0.80, 0.021 +19870911, 1.34, -0.37, -0.47, 0.021 +19870914, 0.21, -0.35, 0.12, 0.021 +19870915, -1.34, 0.74, 0.39, 0.021 +19870916, -0.77, 0.61, 0.15, 0.021 +19870917, -0.04, -0.15, 0.13, 0.021 +19870918, -0.10, 0.19, -0.09, 0.021 +19870921, -1.28, 0.42, 0.83, 0.021 +19870922, 2.16, -2.36, -0.03, 0.021 +19870923, 0.58, 0.09, -0.28, 0.021 +19870924, -0.25, 0.45, -0.22, 0.021 +19870925, 0.11, -0.08, 0.03, 0.021 +19870928, 0.72, -0.50, 0.04, 0.021 +19870929, -0.31, 0.07, 0.29, 0.021 +19870930, 0.18, 0.67, -0.06, 0.021 +19871001, 1.43, -1.15, -0.02, 0.027 +19871002, 0.30, 0.05, -0.36, 0.027 +19871005, 0.05, 0.27, -0.23, 0.027 +19871006, -2.24, 1.00, 0.60, 0.027 +19871007, -0.38, -0.37, -0.15, 0.027 +19871008, -1.34, 0.29, 0.35, 0.027 +19871009, -0.82, 0.30, 0.29, 0.027 +19871012, -0.74, -0.56, 0.28, 0.027 +19871013, 1.29, -1.41, 0.19, 0.027 +19871014, -2.44, 1.04, 0.57, 0.027 +19871015, -2.26, 0.87, 0.50, 0.027 +19871016, -4.87, 0.58, 0.76, 0.027 +19871019, -17.44, 6.20, 1.20, 0.027 +19871020, 0.72, -11.62, 2.62, 0.027 +19871021, 8.57, -1.12, -1.95, 0.027 +19871022, -3.97, -0.59, 1.45, 0.027 +19871023, -0.61, -1.95, 1.15, 0.027 +19871026, -8.31, -0.75, 2.56, 0.027 +19871027, 1.56, -3.54, -0.35, 0.027 +19871028, -0.19, -2.19, -0.96, 0.027 +19871029, 4.73, -0.47, -2.71, 0.027 +19871030, 3.61, 3.15, -0.96, 0.027 +19871102, 1.26, 0.22, 0.02, 0.017 +19871103, -1.87, -0.14, 0.96, 0.017 +19871104, -0.60, 0.23, 0.51, 0.017 +19871105, 2.11, -0.69, -0.25, 0.017 +19871106, -1.12, 1.64, 0.29, 0.017 +19871109, -2.48, 1.16, 0.90, 0.017 +19871110, -1.74, 0.04, 0.67, 0.017 +19871111, 1.00, -0.47, -0.42, 0.017 +19871112, 2.40, -0.82, -1.04, 0.017 +19871113, -0.80, 0.88, 0.09, 0.017 +19871116, 0.28, -0.38, 0.14, 0.017 +19871117, -1.47, -0.12, 0.58, 0.017 +19871118, 0.87, -0.54, -0.12, 0.017 +19871119, -1.98, 0.87, 0.14, 0.017 +19871120, 0.53, -1.12, 0.12, 0.017 +19871123, 0.32, -0.34, -0.08, 0.017 +19871124, 1.30, -0.35, -0.39, 0.017 +19871125, -0.60, 1.10, -0.18, 0.017 +19871127, -1.20, 0.95, 0.47, 0.017 +19871130, -3.99, 0.68, 0.87, 0.017 +19871201, 0.51, -0.92, 0.48, 0.018 +19871202, 0.39, -0.67, 0.03, 0.018 +19871203, -3.06, 1.28, 0.93, 0.018 +19871204, -1.02, -1.10, 0.33, 0.018 +19871207, 1.63, -1.75, -0.69, 0.018 +19871208, 2.28, -1.61, -0.14, 0.018 +19871209, 1.66, -0.24, -1.32, 0.018 +19871210, -1.67, 1.35, -0.66, 0.018 +19871211, 0.54, -0.05, 0.25, 0.018 +19871214, 2.71, -0.51, -1.35, 0.018 +19871215, 0.41, 1.19, -0.80, 0.018 +19871216, 2.02, -0.01, -0.67, 0.018 +19871217, -1.41, 1.75, -0.28, 0.018 +19871218, 2.21, -0.02, -0.19, 0.018 +19871221, 0.35, -0.01, -0.05, 0.018 +19871222, -0.05, -0.41, 0.12, 0.018 +19871223, 1.20, -0.12, -0.05, 0.018 +19871224, -0.16, 0.78, -0.19, 0.018 +19871228, -2.37, 0.35, 0.59, 0.018 +19871229, -0.36, -0.05, 0.04, 0.018 +19871230, 1.20, -0.28, -0.66, 0.018 +19871231, -0.19, 1.01, -0.04, 0.018 +19880104, 3.34, -0.88, -0.01, 0.015 +19880105, 1.22, 0.75, -0.48, 0.015 +19880106, 0.27, 0.35, 0.11, 0.015 +19880107, 0.74, -0.07, 0.29, 0.015 +19880108, -5.66, 2.84, 1.56, 0.015 +19880111, 0.90, -2.09, -0.37, 0.015 +19880112, -0.88, -0.15, 0.54, 0.015 +19880113, 0.19, -0.12, 0.36, 0.015 +19880114, 0.08, 0.33, 0.04, 0.015 +19880115, 2.31, -0.93, -0.45, 0.015 +19880118, 0.03, 0.19, 0.46, 0.015 +19880119, -0.70, 0.86, 0.57, 0.015 +19880120, -2.42, 0.64, 1.03, 0.015 +19880121, 0.17, -0.20, -0.10, 0.015 +19880122, 1.21, -0.37, 0.31, 0.015 +19880125, 1.93, -1.55, 0.07, 0.015 +19880126, -0.75, 0.57, 0.45, 0.015 +19880127, -0.05, 0.23, 0.31, 0.015 +19880128, 1.30, -0.71, 0.03, 0.015 +19880129, 1.24, -0.67, -0.05, 0.015 +19880201, -0.30, 0.85, 0.17, 0.023 +19880202, 0.19, -0.03, 0.25, 0.023 +19880203, -1.11, 0.82, 0.92, 0.023 +19880204, 0.00, -0.12, 0.14, 0.023 +19880205, -0.21, 0.55, 0.01, 0.023 +19880208, -0.68, 0.38, -0.16, 0.023 +19880209, 0.83, -0.71, -0.18, 0.023 +19880210, 1.72, -0.49, -0.51, 0.023 +19880211, -0.13, 0.77, -0.12, 0.023 +19880212, 0.55, 0.03, -0.32, 0.023 +19880216, 0.74, -0.47, -0.12, 0.023 +19880217, -0.17, 0.50, -0.10, 0.023 +19880218, -0.35, 0.68, -0.15, 0.023 +19880219, 1.13, -0.89, -0.02, 0.023 +19880222, 1.29, -0.35, -0.43, 0.023 +19880223, -0.06, 0.39, -0.13, 0.023 +19880224, 0.01, 0.61, -0.34, 0.023 +19880225, -0.73, 1.29, 0.20, 0.023 +19880226, 0.22, -0.12, -0.21, 0.023 +19880229, 1.79, -0.53, -0.42, 0.023 +19880301, -0.15, 0.24, -0.05, 0.019 +19880302, 0.43, 0.28, -0.24, 0.019 +19880303, 0.06, 0.22, -0.27, 0.019 +19880304, -0.13, 0.52, 0.07, 0.019 +19880307, 0.13, 0.51, -0.23, 0.019 +19880308, 0.69, 0.34, -0.20, 0.019 +19880309, 0.06, 1.02, -0.40, 0.019 +19880310, -1.66, 0.96, 0.33, 0.019 +19880311, 0.17, -0.38, 0.70, 0.019 +19880314, 0.42, -0.15, -0.33, 0.019 +19880315, -0.05, 0.12, 0.11, 0.019 +19880316, 0.81, -0.30, 0.10, 0.019 +19880317, 0.87, -0.40, -0.34, 0.019 +19880318, -0.01, 0.08, 0.34, 0.019 +19880321, -0.78, 0.29, 0.18, 0.019 +19880322, 0.06, 0.18, -0.20, 0.019 +19880323, 0.14, 0.45, 0.37, 0.019 +19880324, -1.80, 0.75, 0.22, 0.019 +19880325, -1.49, 0.79, 0.15, 0.019 +19880328, -0.40, -0.46, 0.12, 0.019 +19880329, 0.72, 0.07, -0.22, 0.019 +19880330, -0.64, 0.27, 0.47, 0.019 +19880331, 0.35, 0.67, 0.10, 0.019 +19880404, -0.93, 0.00, 0.31, 0.023 +19880405, 0.68, -0.51, -0.05, 0.023 +19880406, 2.20, -1.47, -0.04, 0.023 +19880407, 0.28, 0.26, 0.08, 0.023 +19880408, 1.09, -0.32, 0.06, 0.023 +19880411, 0.28, 0.16, 0.11, 0.023 +19880412, 0.45, -0.10, 0.12, 0.023 +19880413, -0.03, 0.04, 0.08, 0.023 +19880414, -3.76, 1.59, 0.44, 0.023 +19880415, -0.17, -0.37, -0.01, 0.023 +19880418, -0.14, 0.79, 0.25, 0.023 +19880419, -0.28, 0.74, -0.06, 0.023 +19880420, -0.70, 0.06, 0.03, 0.023 +19880421, -0.04, -0.22, 0.17, 0.023 +19880422, 1.09, -1.06, 0.24, 0.023 +19880425, 0.71, -0.47, 0.25, 0.023 +19880426, 0.60, -0.10, -0.20, 0.023 +19880427, 0.01, 0.32, -0.07, 0.023 +19880428, -0.39, 0.56, 0.01, 0.023 +19880429, -0.25, 0.91, -0.12, 0.023 +19880502, 0.02, -0.09, -0.31, 0.024 +19880503, 0.51, -0.18, 0.02, 0.024 +19880504, -0.75, 0.76, 0.12, 0.024 +19880505, -0.54, 0.28, 0.33, 0.024 +19880506, -0.38, 0.36, 0.52, 0.024 +19880509, -0.43, -0.28, 0.35, 0.024 +19880510, 0.24, -0.48, 0.32, 0.024 +19880511, -1.56, -0.01, 0.40, 0.024 +19880512, 0.25, -0.07, 0.15, 0.024 +19880513, 0.93, -0.35, 0.01, 0.024 +19880516, 0.59, -0.56, -0.04, 0.024 +19880517, -0.92, 0.68, 0.21, 0.024 +19880518, -1.49, 0.18, 0.47, 0.024 +19880519, 0.25, -0.66, -0.11, 0.024 +19880520, 0.11, 0.09, -0.05, 0.024 +19880523, -0.75, 0.19, 0.15, 0.024 +19880524, 0.86, -0.64, -0.19, 0.024 +19880525, 0.20, -0.02, 0.02, 0.024 +19880526, 0.33, 0.02, 0.08, 0.024 +19880527, -0.36, 0.17, 0.16, 0.024 +19880531, 2.70, -2.08, -0.21, 0.024 +19880601, 1.66, -0.68, -0.36, 0.022 +19880602, -0.40, 0.49, 0.02, 0.022 +19880603, 0.44, 0.01, 0.14, 0.022 +19880606, 0.27, 0.16, -0.28, 0.022 +19880607, -0.51, 0.46, -0.07, 0.022 +19880608, 1.97, -1.06, -0.17, 0.022 +19880609, -0.18, 0.75, -0.04, 0.022 +19880610, 0.30, 0.13, 0.13, 0.022 +19880613, 0.08, 0.13, -0.16, 0.022 +19880614, 0.87, -0.61, -0.02, 0.022 +19880615, 0.09, 0.10, 0.13, 0.022 +19880616, -1.31, 1.02, 0.31, 0.022 +19880617, 0.14, -0.37, 0.16, 0.022 +19880620, -0.51, 0.45, 0.15, 0.022 +19880621, 0.81, -0.63, -0.02, 0.022 +19880622, 1.25, -0.65, -0.12, 0.022 +19880623, -0.14, 0.42, -0.01, 0.022 +19880624, -0.21, 0.51, 0.07, 0.022 +19880627, -1.34, 1.13, 0.09, 0.022 +19880628, 0.93, -0.54, -0.28, 0.022 +19880629, -0.36, 0.46, -0.18, 0.022 +19880630, 0.86, 0.28, -0.54, 0.022 +19880701, -0.39, 0.42, 0.10, 0.025 +19880705, 1.09, -1.09, -0.01, 0.025 +19880706, -1.11, 1.15, 0.14, 0.025 +19880707, -0.06, 0.11, -0.02, 0.025 +19880708, -0.50, 0.38, 0.34, 0.025 +19880711, 0.11, -0.04, 0.05, 0.025 +19880712, -0.78, 0.55, 0.05, 0.025 +19880713, 0.30, -0.47, 0.11, 0.025 +19880714, 0.28, -0.04, 0.00, 0.025 +19880715, 0.44, -0.31, -0.01, 0.025 +19880718, -0.42, 0.41, 0.11, 0.025 +19880719, -0.76, 0.34, 0.45, 0.025 +19880720, 0.41, -0.21, 0.18, 0.025 +19880721, -1.05, 0.60, 0.30, 0.025 +19880722, -1.04, 0.47, 0.31, 0.025 +19880725, 0.28, -0.44, 0.01, 0.025 +19880726, 0.14, -0.24, 0.05, 0.025 +19880727, -0.85, 0.40, 0.48, 0.025 +19880728, 0.97, -0.99, -0.14, 0.025 +19880729, 1.75, -1.29, -0.24, 0.025 +19880801, 0.19, 0.16, 0.04, 0.026 +19880802, -0.01, -0.07, 0.25, 0.026 +19880803, 0.30, -0.25, -0.15, 0.026 +19880804, -0.21, 0.23, 0.22, 0.026 +19880805, -0.32, 0.08, 0.23, 0.026 +19880808, -0.33, 0.21, 0.14, 0.026 +19880809, -1.12, 0.39, 0.17, 0.026 +19880810, -1.66, 0.28, 0.42, 0.026 +19880811, 0.21, -0.47, -0.10, 0.026 +19880812, -0.10, 0.24, 0.06, 0.026 +19880815, -1.28, 0.29, 0.48, 0.026 +19880816, 0.59, -0.51, -0.37, 0.026 +19880817, 0.10, -0.19, 0.11, 0.026 +19880818, 0.13, -0.01, -0.11, 0.026 +19880819, -0.17, 0.32, 0.04, 0.026 +19880822, -1.12, 0.12, 0.61, 0.026 +19880823, -0.03, -0.18, 0.03, 0.026 +19880824, 1.25, -0.68, -0.30, 0.026 +19880825, -0.63, 0.16, 0.14, 0.026 +19880826, 0.15, -0.07, -0.03, 0.026 +19880829, 0.89, -0.64, -0.39, 0.026 +19880830, 0.10, -0.02, 0.23, 0.026 +19880831, -0.23, 0.62, 0.33, 0.026 +19880901, -1.10, 0.29, 0.42, 0.029 +19880902, 1.88, -1.28, -0.26, 0.029 +19880906, 0.37, -0.16, -0.31, 0.029 +19880907, 0.11, 0.15, -0.14, 0.029 +19880908, 0.12, 0.31, -0.21, 0.029 +19880909, 0.37, -0.04, -0.39, 0.029 +19880912, -0.10, 0.20, -0.17, 0.029 +19880913, 0.23, -0.18, 0.14, 0.029 +19880914, 0.56, -0.30, -0.09, 0.029 +19880915, -0.35, 0.29, 0.29, 0.029 +19880916, 0.69, -0.58, -0.01, 0.029 +19880919, -0.47, 0.40, 0.30, 0.029 +19880920, 0.27, -0.18, -0.01, 0.029 +19880921, 0.17, -0.17, -0.39, 0.029 +19880922, -0.35, 0.17, -0.03, 0.029 +19880923, 0.19, -0.07, 0.03, 0.029 +19880926, -0.34, -0.14, 0.39, 0.029 +19880927, -0.24, 0.06, 0.06, 0.029 +19880928, 0.27, -0.20, -0.19, 0.029 +19880929, 1.08, -0.45, -0.30, 0.029 +19880930, -0.08, 0.62, 0.21, 0.029 +19881003, -0.32, -0.60, 0.03, 0.029 +19881004, -0.19, 0.33, -0.18, 0.029 +19881005, 0.37, -0.19, 0.17, 0.029 +19881006, 0.15, 0.00, 0.14, 0.029 +19881007, 1.58, -1.55, 0.07, 0.029 +19881010, 0.07, 0.12, 0.05, 0.029 +19881011, -0.13, -0.04, 0.00, 0.029 +19881012, -1.25, 0.88, 0.52, 0.029 +19881013, 0.30, -0.44, 0.07, 0.029 +19881014, 0.10, 0.07, -0.17, 0.029 +19881017, 0.19, -0.19, 0.09, 0.029 +19881018, 0.80, -0.56, -0.13, 0.029 +19881019, -0.69, 0.58, 0.03, 0.029 +19881020, 1.67, -1.29, -0.69, 0.029 +19881021, 0.17, -0.27, 0.39, 0.029 +19881024, -0.32, 0.18, 0.09, 0.029 +19881025, -0.05, -0.15, 0.38, 0.029 +19881026, -0.34, 0.12, 0.22, 0.029 +19881027, -1.33, 0.24, 0.59, 0.029 +19881028, 0.33, -0.12, 0.08, 0.029 +19881031, 0.09, -0.07, -0.03, 0.029 +19881101, 0.05, -0.17, 0.15, 0.027 +19881102, -0.04, -0.17, 0.18, 0.027 +19881103, 0.08, 0.02, 0.27, 0.027 +19881104, -0.77, 0.32, 0.05, 0.027 +19881107, -0.90, -0.17, 0.21, 0.027 +19881108, 0.38, 0.03, -0.21, 0.027 +19881109, -0.54, 0.21, 0.01, 0.027 +19881110, 0.08, 0.09, 0.12, 0.027 +19881111, -1.82, 0.93, 0.27, 0.027 +19881114, -0.20, -0.41, 0.14, 0.027 +19881115, 0.16, -0.16, 0.01, 0.027 +19881116, -1.56, 0.43, 0.49, 0.027 +19881117, 0.10, -0.50, -0.20, 0.027 +19881118, 0.58, -0.48, -0.14, 0.027 +19881121, -0.22, -0.38, 0.38, 0.027 +19881122, 0.27, -0.48, 0.23, 0.027 +19881123, 0.63, -0.28, -0.21, 0.027 +19881125, -0.57, 0.41, 0.41, 0.027 +19881128, 0.36, -0.46, -0.11, 0.027 +19881129, 0.80, -0.49, -0.49, 0.027 +19881130, 0.91, -0.03, -0.32, 0.027 +19881201, -0.19, 0.51, -0.13, 0.030 +19881202, -0.20, 0.34, -0.40, 0.030 +19881205, 0.87, -0.34, -0.18, 0.030 +19881206, 0.83, -0.60, 0.04, 0.030 +19881207, 0.13, -0.12, 0.17, 0.030 +19881208, -0.48, 0.31, 0.08, 0.030 +19881209, 0.12, -0.09, 0.06, 0.030 +19881212, -0.18, -0.14, 0.33, 0.030 +19881213, -0.17, -0.11, 0.11, 0.030 +19881214, -0.33, 0.40, -0.02, 0.030 +19881215, -0.31, 0.28, -0.14, 0.030 +19881216, 0.60, 0.19, -0.36, 0.030 +19881219, 0.69, -0.63, -0.30, 0.030 +19881220, -0.32, 0.29, -0.11, 0.030 +19881221, -0.10, -0.08, -0.10, 0.030 +19881222, -0.10, 0.29, 0.07, 0.030 +19881223, 0.38, -0.14, -0.20, 0.030 +19881227, -0.30, 0.09, 0.00, 0.030 +19881228, 0.11, 0.08, -0.03, 0.030 +19881229, 0.67, -0.14, -0.26, 0.030 +19881230, -0.23, 1.39, -0.29, 0.030 +19890103, -0.82, 0.60, 0.29, 0.026 +19890104, 1.30, -0.38, -0.05, 0.026 +19890105, 0.21, 0.06, 0.28, 0.026 +19890106, 0.29, 0.29, 0.39, 0.026 +19890109, 0.12, -0.12, 0.31, 0.026 +19890110, -0.21, -0.01, 0.12, 0.026 +19890111, 0.43, -0.40, 0.03, 0.026 +19890112, 0.36, -0.09, -0.05, 0.026 +19890113, 0.14, -0.05, 0.06, 0.026 +19890116, 0.12, -0.12, 0.16, 0.026 +19890117, -0.21, 0.01, 0.22, 0.026 +19890118, 0.87, -0.28, 0.00, 0.026 +19890119, 0.14, 0.13, -0.19, 0.026 +19890120, -0.06, 0.14, 0.02, 0.026 +19890123, -0.60, 0.32, 0.13, 0.026 +19890124, 1.04, -0.89, -0.17, 0.026 +19890125, 0.26, 0.04, -0.07, 0.026 +19890126, 0.80, -0.35, -0.52, 0.026 +19890127, 0.64, -0.56, 0.02, 0.026 +19890130, 0.33, -0.14, -0.30, 0.026 +19890131, 0.77, -0.24, -0.18, 0.026 +19890201, -0.01, 0.47, -0.43, 0.032 +19890202, 0.00, 0.40, -0.12, 0.032 +19890203, 0.10, 0.31, -0.34, 0.032 +19890206, -0.17, 0.13, 0.34, 0.032 +19890207, 1.04, -0.46, 0.18, 0.032 +19890208, -0.21, 0.35, 0.20, 0.032 +19890209, -0.70, 0.51, 0.14, 0.032 +19890210, -1.27, 0.46, 0.35, 0.032 +19890213, 0.04, -0.42, 0.16, 0.032 +19890214, -0.10, 0.42, -0.23, 0.032 +19890215, 0.74, -0.31, -0.11, 0.032 +19890216, 0.21, 0.19, 0.14, 0.032 +19890217, 0.55, -0.21, -0.12, 0.032 +19890221, -0.23, 0.01, 0.10, 0.032 +19890222, -1.47, 0.67, 0.18, 0.032 +19890223, 0.26, -0.29, 0.03, 0.032 +19890224, -1.37, 0.81, 0.13, 0.032 +19890227, 0.07, -0.30, 0.11, 0.032 +19890228, 0.31, -0.02, 0.12, 0.032 +19890301, -0.37, 0.47, 0.14, 0.030 +19890302, 0.84, -0.23, -0.20, 0.030 +19890303, 0.36, 0.05, 0.04, 0.030 +19890306, 0.99, -0.51, -0.03, 0.030 +19890307, -0.17, 0.45, 0.10, 0.030 +19890308, 0.07, 0.17, -0.09, 0.030 +19890309, -0.10, 0.03, 0.02, 0.030 +19890310, -0.25, 0.35, -0.03, 0.030 +19890313, 0.61, -0.49, -0.08, 0.030 +19890314, -0.07, -0.06, 0.01, 0.030 +19890315, 0.39, -0.01, -0.03, 0.030 +19890316, 0.79, -0.36, -0.14, 0.030 +19890317, -2.08, 0.50, 0.58, 0.030 +19890320, -0.97, 0.02, 0.27, 0.030 +19890321, 0.45, 0.15, -0.14, 0.030 +19890322, -0.28, 0.24, 0.08, 0.030 +19890323, -0.39, 0.55, 0.03, 0.030 +19890327, 0.36, -0.46, 0.12, 0.030 +19890328, 0.35, 0.17, -0.15, 0.030 +19890329, 0.23, -0.13, -0.13, 0.030 +19890330, 0.06, -0.03, -0.06, 0.030 +19890331, 0.76, -0.19, 0.11, 0.030 +19890403, 0.45, -0.22, -0.13, 0.034 +19890404, -0.25, 0.12, -0.05, 0.034 +19890405, 0.27, -0.06, 0.16, 0.034 +19890406, -0.26, 0.25, -0.01, 0.034 +19890407, 0.55, -0.09, -0.30, 0.034 +19890410, -0.01, 0.14, -0.14, 0.034 +19890411, 0.40, 0.00, -0.06, 0.034 +19890412, 0.19, 0.27, -0.19, 0.034 +19890413, -0.75, 0.31, -0.01, 0.034 +19890414, 1.32, -0.68, -0.15, 0.034 +19890417, 0.07, -0.25, 0.06, 0.034 +19890418, 1.13, -0.82, -0.06, 0.034 +19890419, 0.35, -0.21, -0.05, 0.034 +19890420, -0.21, 0.24, 0.05, 0.034 +19890421, 0.72, -0.39, -0.06, 0.034 +19890424, -0.16, 0.20, 0.06, 0.034 +19890425, -0.45, 0.59, -0.34, 0.034 +19890426, 0.10, 0.05, -0.03, 0.034 +19890427, 0.71, -0.25, -0.09, 0.034 +19890428, 0.05, 0.20, -0.03, 0.034 +19890501, -0.15, 0.08, -0.10, 0.036 +19890502, -0.21, 0.45, 0.03, 0.036 +19890503, 0.00, 0.22, -0.28, 0.036 +19890504, -0.06, 0.27, -0.22, 0.036 +19890505, 0.01, 0.21, 0.11, 0.036 +19890508, -0.49, 0.07, 0.07, 0.036 +19890509, -0.20, 0.23, -0.07, 0.036 +19890510, 0.16, -0.01, -0.26, 0.036 +19890511, 0.30, -0.11, -0.25, 0.036 +19890512, 1.82, -1.32, -0.34, 0.036 +19890515, 0.66, -0.64, 0.01, 0.036 +19890516, -0.19, 0.05, 0.36, 0.036 +19890517, 0.62, -0.11, -0.30, 0.036 +19890518, 0.19, 0.24, -0.16, 0.036 +19890519, 0.78, -0.56, 0.01, 0.036 +19890522, 0.25, -0.45, 0.22, 0.036 +19890523, -0.92, 0.67, 0.31, 0.036 +19890524, 0.19, -0.01, 0.02, 0.036 +19890525, 0.08, 0.26, -0.18, 0.036 +19890526, 0.67, -0.17, -0.11, 0.036 +19890530, -0.61, 0.41, 0.28, 0.036 +19890531, 0.40, 0.12, 0.03, 0.036 +19890601, 0.45, 0.01, 0.05, 0.032 +19890602, 0.97, -0.46, -0.17, 0.032 +19890605, -0.87, 0.47, 0.35, 0.032 +19890606, 0.44, -0.51, 0.00, 0.032 +19890607, 0.81, -0.33, -0.24, 0.032 +19890608, 0.00, 0.30, -0.06, 0.032 +19890609, -0.02, -0.02, 0.09, 0.032 +19890612, -0.12, 0.06, 0.18, 0.032 +19890613, -0.67, 0.24, 0.50, 0.032 +19890614, -0.10, -0.06, 0.27, 0.032 +19890615, -1.06, 0.44, 0.08, 0.032 +19890616, 0.25, -0.02, -0.13, 0.032 +19890619, 0.08, -0.37, -0.09, 0.032 +19890620, -0.20, 0.03, 0.16, 0.032 +19890621, -0.21, -0.05, 0.04, 0.032 +19890622, 0.38, -0.27, -0.14, 0.032 +19890623, 1.41, -0.97, -0.38, 0.032 +19890626, -0.29, 0.10, 0.24, 0.032 +19890627, 0.50, -0.16, 0.04, 0.032 +19890628, -0.70, 0.15, 0.31, 0.032 +19890629, -1.83, 0.27, 0.68, 0.032 +19890630, -0.53, 0.10, 0.38, 0.032 +19890703, 0.33, -0.28, -0.11, 0.035 +19890705, 0.31, -0.23, -0.04, 0.035 +19890706, 0.36, 0.44, 0.00, 0.035 +19890707, 0.91, -0.46, -0.32, 0.035 +19890710, 0.52, -0.31, 0.06, 0.035 +19890711, 0.48, -0.31, -0.09, 0.035 +19890712, 0.30, 0.13, 0.01, 0.035 +19890713, 0.06, 0.11, -0.07, 0.035 +19890714, 0.37, -0.48, 0.18, 0.035 +19890717, 0.19, 0.07, -0.34, 0.035 +19890718, -0.31, 0.21, -0.02, 0.035 +19890719, 1.09, -0.47, -0.63, 0.035 +19890720, -0.58, 0.42, 0.04, 0.035 +19890721, 0.42, -0.48, -0.24, 0.035 +19890724, -0.59, 0.14, -0.03, 0.035 +19890725, 0.02, -0.07, -0.02, 0.035 +19890726, 1.00, -0.75, -0.46, 0.035 +19890727, 1.01, -0.52, -0.60, 0.035 +19890728, 0.10, -0.14, -0.03, 0.035 +19890731, 0.94, -0.82, 0.08, 0.035 +19890801, -0.50, 0.29, 0.44, 0.032 +19890802, 0.18, -0.09, 0.07, 0.032 +19890803, 0.23, 0.33, -0.06, 0.032 +19890804, -0.22, 0.29, 0.20, 0.032 +19890807, 1.27, -0.73, -0.02, 0.032 +19890808, 0.08, 0.08, 0.00, 0.032 +19890809, -0.47, 0.63, 0.04, 0.032 +19890810, 0.36, 0.01, 0.16, 0.032 +19890811, -0.80, 0.57, 0.08, 0.032 +19890814, -0.50, -0.01, 0.00, 0.032 +19890815, 0.33, -0.35, 0.15, 0.032 +19890816, 0.19, -0.24, -0.02, 0.032 +19890817, -0.27, 0.12, -0.21, 0.032 +19890818, 0.31, -0.21, -0.05, 0.032 +19890821, -1.28, 0.65, 0.20, 0.032 +19890822, 0.01, -0.12, -0.45, 0.032 +19890823, 0.88, -0.33, -0.18, 0.032 +19890824, 1.68, -1.01, -0.22, 0.032 +19890825, -0.16, 0.27, 0.08, 0.032 +19890828, 0.30, -0.34, -0.01, 0.032 +19890829, -0.50, 0.46, 0.16, 0.032 +19890830, 0.24, 0.03, 0.17, 0.032 +19890831, 0.13, 0.12, 0.20, 0.032 +19890901, 0.59, -0.37, -0.02, 0.033 +19890905, -0.22, 0.22, -0.05, 0.033 +19890906, -0.85, 0.46, 0.18, 0.033 +19890907, -0.18, 0.35, 0.27, 0.033 +19890908, 0.09, 0.30, -0.02, 0.033 +19890911, -0.29, -0.22, 0.14, 0.033 +19890912, 0.33, -0.05, -0.14, 0.033 +19890913, -0.77, 0.67, 0.15, 0.033 +19890914, -0.74, 0.09, -0.21, 0.033 +19890915, 0.19, -0.77, 0.05, 0.033 +19890918, 0.34, -0.50, -0.16, 0.033 +19890919, 0.06, -0.06, -0.13, 0.033 +19890920, -0.09, -0.03, 0.02, 0.033 +19890921, -0.11, 0.16, -0.15, 0.033 +19890922, 0.26, -0.14, 0.02, 0.033 +19890925, -0.71, 0.30, -0.03, 0.033 +19890926, 0.12, 0.21, -0.22, 0.033 +19890927, 0.11, -0.21, -0.52, 0.033 +19890928, 0.88, -0.28, -0.54, 0.033 +19890929, 0.26, 0.12, 0.03, 0.033 +19891002, 0.45, -0.12, 0.04, 0.031 +19891003, 0.95, -0.65, -0.29, 0.031 +19891004, 0.53, -0.42, -0.12, 0.031 +19891005, 0.06, 0.09, 0.13, 0.031 +19891006, 0.47, -0.26, -0.23, 0.031 +19891009, 0.20, -0.02, -0.18, 0.031 +19891010, -0.20, -0.12, -0.11, 0.031 +19891011, -0.60, 0.19, 0.09, 0.031 +19891012, -0.41, 0.23, -0.12, 0.031 +19891013, -5.52, 2.08, 0.97, 0.031 +19891016, 1.64, -3.49, -0.63, 0.031 +19891017, -0.43, 0.24, -0.26, 0.031 +19891018, 0.25, 0.32, -0.37, 0.031 +19891019, 1.52, -0.22, -0.65, 0.031 +19891020, -0.05, -0.05, 0.10, 0.031 +19891023, -0.67, 0.00, -0.05, 0.031 +19891024, -0.56, -0.80, -0.15, 0.031 +19891025, -0.26, 0.52, 0.17, 0.031 +19891026, -1.14, 0.26, 0.19, 0.031 +19891027, -0.99, -0.16, 0.42, 0.031 +19891030, -0.06, -0.43, 0.02, 0.031 +19891031, 1.34, -0.75, -0.19, 0.031 +19891101, 0.29, -0.09, 0.24, 0.033 +19891102, -0.66, 0.34, 0.30, 0.033 +19891103, -0.20, 0.28, 0.04, 0.033 +19891106, -1.36, 0.44, -0.01, 0.033 +19891107, 0.49, -0.56, 0.03, 0.033 +19891108, 0.97, -0.12, -0.70, 0.033 +19891109, -0.34, 0.38, -0.07, 0.033 +19891110, 0.59, -0.28, -0.39, 0.033 +19891113, 0.15, -0.23, -0.08, 0.033 +19891114, -0.47, 0.16, 0.28, 0.033 +19891115, 0.58, -0.40, -0.12, 0.033 +19891116, 0.02, -0.09, -0.08, 0.033 +19891117, 0.28, 0.06, -0.30, 0.033 +19891120, -0.64, 0.04, -0.08, 0.033 +19891121, -0.08, -0.23, -0.02, 0.033 +19891122, 0.53, -0.27, -0.22, 0.033 +19891124, 0.54, -0.25, -0.16, 0.033 +19891127, 0.37, -0.32, 0.23, 0.033 +19891128, 0.08, 0.17, 0.14, 0.033 +19891129, -0.56, 0.22, 0.05, 0.033 +19891130, 0.44, -0.51, -0.21, 0.033 +19891201, 1.06, -0.96, 0.01, 0.030 +19891204, 0.26, -0.28, 0.06, 0.030 +19891205, -0.38, 0.29, 0.16, 0.030 +19891206, -0.31, 0.38, 0.21, 0.030 +19891207, -0.25, 0.05, -0.27, 0.030 +19891208, 0.16, -0.13, 0.20, 0.030 +19891211, -0.14, -0.36, 0.05, 0.030 +19891212, 0.59, -0.80, 0.31, 0.030 +19891213, 0.25, -0.11, 0.14, 0.030 +19891214, -0.54, -0.21, 0.16, 0.030 +19891215, -0.39, -0.17, -0.27, 0.030 +19891218, -1.74, 0.13, 0.31, 0.030 +19891219, -0.44, -0.26, -0.06, 0.030 +19891220, 0.09, -0.05, 0.31, 0.030 +19891221, 0.53, 0.00, -0.06, 0.030 +19891222, 0.80, -0.02, -0.33, 0.030 +19891226, -0.09, 0.21, 0.06, 0.030 +19891227, 0.50, -0.16, -0.14, 0.030 +19891228, 0.46, -0.26, -0.32, 0.030 +19891229, 0.77, 0.33, -0.28, 0.030 +19900102, 1.44, -0.68, -0.06, 0.026 +19900103, -0.06, 0.74, -0.31, 0.026 +19900104, -0.71, 0.43, -0.25, 0.026 +19900105, -0.85, 0.76, -0.23, 0.026 +19900108, 0.30, -0.42, -0.24, 0.026 +19900109, -1.01, 0.87, 0.09, 0.026 +19900110, -0.76, -0.05, 0.32, 0.026 +19900111, 0.23, -0.22, 0.09, 0.026 +19900112, -2.33, 0.34, 0.39, 0.026 +19900115, -0.95, 0.03, 0.46, 0.026 +19900116, 0.92, -0.79, -0.41, 0.026 +19900117, -0.76, 0.96, -0.27, 0.026 +19900118, 0.05, -0.66, -0.04, 0.026 +19900119, 0.31, 0.10, 0.04, 0.026 +19900122, -2.31, 0.81, 0.50, 0.026 +19900123, -0.07, -0.47, 0.05, 0.026 +19900124, -0.44, -1.09, -0.36, 0.026 +19900125, -1.07, 1.00, 0.31, 0.026 +19900126, -0.36, -0.55, 0.45, 0.026 +19900129, -0.34, -0.69, 0.02, 0.026 +19900130, -0.90, -0.65, 0.59, 0.026 +19900131, 1.67, -1.22, -0.16, 0.026 +19900201, 0.08, 0.56, -0.03, 0.030 +19900202, 0.73, 0.31, -0.55, 0.030 +19900205, 0.38, 0.22, -0.28, 0.030 +19900206, -0.54, 0.62, 0.13, 0.030 +19900207, 1.07, -0.42, -0.27, 0.030 +19900208, -0.09, 0.29, -0.07, 0.030 +19900209, 0.24, -0.03, 0.08, 0.030 +19900212, -0.94, 0.52, 0.19, 0.030 +19900213, 0.14, -0.51, 0.14, 0.030 +19900214, 0.20, -0.12, 0.10, 0.030 +19900215, 0.78, -0.37, -0.05, 0.030 +19900216, -0.50, 0.52, 0.20, 0.030 +19900220, -1.35, 0.53, 0.35, 0.030 +19900221, -0.21, -0.49, 0.48, 0.030 +19900222, -0.36, 0.82, 0.00, 0.030 +19900223, -0.55, -0.21, 0.49, 0.030 +19900226, 1.00, -1.31, -0.12, 0.030 +19900227, 0.54, -0.10, -0.08, 0.030 +19900228, 0.53, 0.15, -0.12, 0.030 +19900301, 0.26, -0.04, -0.09, 0.029 +19900302, 0.80, -0.12, -0.26, 0.029 +19900305, -0.37, 0.56, -0.14, 0.029 +19900306, 1.07, -0.46, -0.40, 0.029 +19900307, -0.22, 0.65, -0.26, 0.029 +19900308, 0.84, -0.20, -0.52, 0.029 +19900309, -0.53, 0.47, 0.03, 0.029 +19900312, 0.15, -0.21, -0.04, 0.029 +19900313, -0.69, 0.48, 0.27, 0.029 +19900314, 0.23, 0.17, -0.35, 0.029 +19900315, 0.25, 0.04, -0.17, 0.029 +19900316, 0.90, -0.41, -0.60, 0.029 +19900319, 0.38, -0.24, -0.74, 0.029 +19900320, -0.55, 0.34, 0.20, 0.029 +19900321, -0.45, 0.44, -0.03, 0.029 +19900322, -1.22, 0.32, 0.37, 0.029 +19900323, 0.44, 0.10, -0.37, 0.029 +19900326, 0.17, 0.05, -0.12, 0.029 +19900327, 0.80, -0.71, -0.31, 0.029 +19900328, 0.09, -0.31, 0.55, 0.029 +19900329, -0.35, 0.17, 0.12, 0.029 +19900330, -0.18, 0.37, 0.02, 0.029 +19900402, -0.42, -0.40, -0.06, 0.034 +19900403, 1.25, -0.67, -0.50, 0.034 +19900404, -0.64, 0.20, 0.07, 0.034 +19900405, -0.15, 0.18, -0.41, 0.034 +19900406, -0.29, -0.08, -0.23, 0.034 +19900409, 0.21, -0.75, -0.23, 0.034 +19900410, 0.17, 0.05, -0.24, 0.034 +19900411, 0.01, 0.12, -0.30, 0.034 +19900412, 0.69, -0.34, -0.35, 0.034 +19900416, 0.08, -0.09, -0.07, 0.034 +19900417, -0.08, -0.06, 0.03, 0.034 +19900418, -1.07, 0.46, 0.20, 0.034 +19900419, -0.75, 0.39, 0.32, 0.034 +19900420, -0.89, 0.31, -0.23, 0.034 +19900423, -1.17, 0.06, 0.24, 0.034 +19900424, -0.28, 0.16, -0.02, 0.034 +19900425, 0.45, -0.25, -0.19, 0.034 +19900426, 0.15, -0.02, -0.36, 0.034 +19900427, -1.08, 0.51, 0.32, 0.034 +19900430, 0.45, -0.31, -0.65, 0.034 +19900501, 0.42, -0.18, -0.08, 0.031 +19900502, 0.55, -0.37, -0.13, 0.031 +19900503, 0.31, -0.02, 0.06, 0.031 +19900504, 0.75, -0.36, -0.13, 0.031 +19900507, 0.56, -0.35, -0.15, 0.031 +19900508, 0.37, -0.47, 0.12, 0.031 +19900509, 0.11, -0.17, 0.14, 0.031 +19900510, 0.39, -0.06, -0.07, 0.031 +19900511, 2.01, -1.17, -0.09, 0.031 +19900514, 0.79, -0.38, -0.15, 0.031 +19900515, -0.08, -0.01, -0.06, 0.031 +19900516, -0.11, 0.12, 0.03, 0.031 +19900517, 0.19, 0.46, -0.28, 0.031 +19900518, 0.09, 0.26, -0.51, 0.031 +19900521, 0.94, -0.15, -0.68, 0.031 +19900522, 0.15, 0.18, -0.56, 0.031 +19900523, 0.22, 0.15, -0.57, 0.031 +19900524, -0.08, 0.33, -0.32, 0.031 +19900525, -0.94, 0.55, 0.55, 0.031 +19900529, 1.35, -0.95, -0.38, 0.031 +19900530, 0.07, 0.09, -0.04, 0.031 +19900531, 0.07, 0.05, -0.19, 0.031 +19900601, 0.53, -0.06, 0.10, 0.030 +19900604, 1.11, -0.64, 0.26, 0.030 +19900605, -0.17, 0.11, 0.34, 0.030 +19900606, -0.36, 0.30, 0.18, 0.030 +19900607, -0.47, 0.39, 0.02, 0.030 +19900608, -1.10, 0.61, 0.16, 0.030 +19900611, 0.67, -0.50, -0.03, 0.030 +19900612, 1.10, -0.65, -0.67, 0.030 +19900613, -0.26, 0.78, -0.49, 0.030 +19900614, -0.53, 0.30, -0.16, 0.030 +19900615, -0.10, 0.23, -0.32, 0.030 +19900618, -1.47, 0.22, 0.29, 0.030 +19900619, 0.29, -0.44, -0.06, 0.030 +19900620, 0.06, -0.10, -0.12, 0.030 +19900621, 0.26, -0.21, -0.47, 0.030 +19900622, -1.07, 1.08, 0.01, 0.030 +19900625, -0.86, 0.30, -0.07, 0.030 +19900626, -0.15, -0.01, -0.05, 0.030 +19900627, 0.65, -0.58, -0.14, 0.030 +19900628, 0.66, 0.02, -0.73, 0.030 +19900629, 0.17, 0.26, 0.00, 0.030 +19900702, 0.30, -0.42, -0.12, 0.032 +19900703, 0.13, -0.16, -0.34, 0.032 +19900705, -1.04, 0.48, 0.02, 0.032 +19900706, 0.61, -0.41, -0.25, 0.032 +19900709, 0.22, -0.33, -0.15, 0.032 +19900710, -0.67, 0.47, -0.25, 0.032 +19900711, 1.04, -0.40, -0.55, 0.032 +19900712, 1.02, -0.41, -0.54, 0.032 +19900713, 0.42, -0.13, -0.11, 0.032 +19900716, 0.37, -0.29, -0.45, 0.032 +19900717, -0.45, -0.29, 0.49, 0.032 +19900718, -0.92, 0.25, 0.43, 0.032 +19900719, 0.12, -0.65, 0.06, 0.032 +19900720, -0.87, 0.62, -0.03, 0.032 +19900723, -1.89, -0.48, 0.77, 0.032 +19900724, 0.00, 0.05, 0.13, 0.032 +19900725, 0.35, 0.04, -0.15, 0.032 +19900726, -0.25, 0.35, -0.03, 0.032 +19900727, -0.68, -0.03, 0.49, 0.032 +19900730, 0.26, -1.21, 0.31, 0.032 +19900731, 0.07, -0.38, 0.23, 0.032 +19900801, -0.20, -0.31, -0.09, 0.028 +19900802, -1.22, -0.06, 0.46, 0.028 +19900803, -1.84, -0.71, 0.64, 0.028 +19900806, -3.32, -0.14, 1.37, 0.028 +19900807, 0.17, -0.03, -0.81, 0.028 +19900808, 1.11, 0.00, -0.73, 0.028 +19900809, 0.63, 0.30, -0.96, 0.028 +19900810, -1.19, 0.21, 0.58, 0.028 +19900813, 0.71, -1.03, -0.31, 0.028 +19900814, 0.21, 0.18, -0.20, 0.028 +19900815, 0.25, -0.20, -0.39, 0.028 +19900816, -2.18, 0.46, 0.70, 0.028 +19900817, -1.55, -0.34, 0.80, 0.028 +19900820, -0.11, -0.94, 0.52, 0.028 +19900821, -2.00, -0.39, 0.75, 0.028 +19900822, -1.58, 0.27, 0.90, 0.028 +19900823, -3.24, -1.09, 1.58, 0.028 +19900824, 1.46, -0.35, -1.69, 0.028 +19900827, 3.20, 0.11, -1.85, 0.028 +19900828, 0.07, 0.48, -0.08, 0.028 +19900829, 0.74, -0.51, 0.23, 0.028 +19900830, -1.39, 0.94, 0.33, 0.028 +19900831, 0.95, -0.78, -0.21, 0.028 +19900904, 0.09, -0.29, -0.27, 0.031 +19900905, 0.35, 0.18, -0.17, 0.031 +19900906, -1.06, 0.45, 0.62, 0.031 +19900907, 0.79, -0.51, -0.16, 0.031 +19900910, -0.38, 0.53, 0.02, 0.031 +19900911, -0.19, -0.15, 0.05, 0.031 +19900912, 0.29, -0.39, -0.10, 0.031 +19900913, -1.11, 0.33, 0.23, 0.031 +19900914, -0.61, -0.10, -0.18, 0.031 +19900917, 0.18, -0.56, -0.14, 0.031 +19900918, 0.07, -0.65, -0.13, 0.031 +19900919, -0.57, 0.48, 0.47, 0.031 +19900920, -1.61, 0.18, 0.68, 0.031 +19900921, -0.20, -0.57, 0.14, 0.031 +19900924, -2.19, -0.30, 0.61, 0.031 +19900925, 1.03, -0.82, -0.78, 0.031 +19900926, -1.07, -0.33, 0.23, 0.031 +19900927, -1.51, -0.45, 0.76, 0.031 +19900928, 1.50, -1.00, -1.16, 0.031 +19901001, 2.74, -1.50, -1.23, 0.030 +19901002, 0.20, 0.47, 0.17, 0.030 +19901003, -1.16, 0.38, 0.31, 0.030 +19901004, 0.19, -0.72, 0.36, 0.030 +19901005, -0.46, -0.29, 0.33, 0.030 +19901008, 0.53, -0.54, 0.03, 0.030 +19901009, -2.54, 0.59, 0.78, 0.030 +19901010, -1.60, 0.13, 0.50, 0.030 +19901011, -1.76, -0.48, 0.85, 0.030 +19901012, 1.28, -1.04, -0.46, 0.030 +19901015, 0.91, -0.89, -0.18, 0.030 +19901016, -1.40, 0.49, 0.48, 0.030 +19901017, -0.02, -0.14, -0.43, 0.030 +19901018, 2.20, -0.71, -1.40, 0.030 +19901019, 1.77, -1.15, -0.48, 0.030 +19901022, 0.78, -0.98, -0.30, 0.030 +19901023, -0.52, 0.91, -0.17, 0.030 +19901024, -0.03, -0.06, 0.04, 0.030 +19901025, -0.66, 0.54, 0.15, 0.030 +19901026, -1.68, 0.53, 0.03, 0.030 +19901029, -0.96, -0.03, 0.37, 0.030 +19901030, 0.46, -1.18, -0.12, 0.030 +19901031, 0.02, -0.09, 0.41, 0.030 +19901101, 0.79, -0.75, 0.16, 0.027 +19901102, 1.55, -0.57, -0.32, 0.027 +19901105, 0.96, -0.13, -0.50, 0.027 +19901106, -0.71, 0.74, 0.23, 0.027 +19901107, -1.59, 0.86, 0.38, 0.027 +19901108, 0.44, -0.66, -0.17, 0.027 +19901109, 1.81, -0.94, -0.24, 0.027 +19901112, 1.92, -0.38, -0.69, 0.027 +19901113, -0.34, 0.69, -0.04, 0.027 +19901114, 0.82, 0.11, -0.18, 0.027 +19901115, -0.91, 0.67, 0.00, 0.027 +19901116, -0.05, -0.08, 0.36, 0.027 +19901119, 0.58, -0.29, -0.37, 0.027 +19901120, -1.09, 0.52, 0.01, 0.027 +19901121, 0.07, -0.18, -0.18, 0.027 +19901123, -0.25, 0.48, -0.11, 0.027 +19901126, 0.29, -0.49, 0.19, 0.027 +19901127, 0.68, 0.47, -0.79, 0.027 +19901128, 0.04, 0.37, 0.04, 0.027 +19901129, -0.39, 0.49, -0.30, 0.027 +19901130, 1.61, -0.67, -0.45, 0.027 +19901203, 0.68, -0.12, -0.23, 0.030 +19901204, 0.72, -0.23, 0.18, 0.030 +19901205, 1.18, 0.48, 0.20, 0.030 +19901206, -0.22, 0.54, -0.13, 0.030 +19901207, -0.39, 0.29, -0.09, 0.030 +19901210, 0.22, -0.47, -0.05, 0.030 +19901211, -0.61, 0.03, 0.23, 0.030 +19901212, 0.93, -0.45, -0.51, 0.030 +19901213, -0.11, 0.50, -0.42, 0.030 +19901214, -0.78, 0.23, 0.03, 0.030 +19901217, -0.40, -0.52, 0.06, 0.030 +19901218, 1.18, -0.70, 0.08, 0.030 +19901219, 0.07, 0.37, 0.15, 0.030 +19901220, 0.06, 0.12, -0.19, 0.030 +19901221, 0.30, -0.35, -0.10, 0.030 +19901224, -0.40, 0.05, 0.00, 0.030 +19901226, 0.24, -0.13, -0.09, 0.030 +19901227, -0.63, 0.48, 0.08, 0.030 +19901228, -0.02, -0.13, -0.14, 0.030 +19901231, 0.43, 0.79, -0.54, 0.030 +19910102, -0.95, 0.60, 0.78, 0.023 +19910103, -1.25, 0.27, 1.13, 0.023 +19910104, -0.24, 0.13, 0.40, 0.023 +19910107, -1.72, 0.33, 0.24, 0.023 +19910108, -0.29, -0.35, -0.03, 0.023 +19910109, -0.95, 0.51, 0.03, 0.023 +19910110, 0.94, -0.45, -0.50, 0.023 +19910111, 0.10, -0.07, -0.12, 0.023 +19910114, -1.01, -0.73, 0.16, 0.023 +19910115, 0.32, -0.40, -0.34, 0.023 +19910116, 1.00, 0.12, -0.95, 0.023 +19910117, 3.41, -1.00, -0.78, 0.023 +19910118, 0.93, -1.21, 0.04, 0.023 +19910121, -0.08, 0.48, -0.17, 0.023 +19910122, -0.65, 1.09, 0.27, 0.023 +19910123, 0.59, 0.54, -0.21, 0.023 +19910124, 1.45, 0.34, -0.49, 0.023 +19910125, 0.40, 0.79, -0.20, 0.023 +19910128, 0.14, 0.77, -0.12, 0.023 +19910129, 0.10, 0.72, -0.08, 0.023 +19910130, 1.52, 0.36, -0.43, 0.023 +19910131, 0.95, 0.68, -0.42, 0.023 +19910201, -0.03, 1.09, 0.32, 0.025 +19910204, 1.59, 0.53, 0.20, 0.025 +19910205, 1.05, 0.45, -0.33, 0.025 +19910206, 1.77, -0.46, -0.72, 0.025 +19910207, -0.44, -0.43, 0.60, 0.025 +19910208, 0.63, -0.52, -0.03, 0.025 +19910211, 2.37, -0.59, -0.01, 0.025 +19910212, -0.59, 0.75, 0.14, 0.025 +19910213, 0.89, 0.13, -0.10, 0.025 +19910214, -1.20, 0.89, 0.20, 0.025 +19910215, 1.20, -0.20, -0.20, 0.025 +19910219, 0.13, -0.03, -0.48, 0.025 +19910220, -1.06, 0.32, 0.17, 0.025 +19910221, -0.03, 0.54, -0.11, 0.025 +19910222, 0.23, 0.33, -0.67, 0.025 +19910225, 0.40, 0.32, -0.46, 0.025 +19910226, -1.08, 0.21, 0.32, 0.025 +19910227, 1.17, -0.49, -0.19, 0.025 +19910228, 0.02, 0.79, 0.87, 0.025 +19910301, 0.86, -0.13, -0.18, 0.022 +19910304, 0.03, 1.39, -0.04, 0.022 +19910305, 1.91, 0.16, -0.80, 0.022 +19910306, -0.14, 0.35, 0.07, 0.022 +19910307, 0.00, 0.29, -0.35, 0.022 +19910308, -0.23, 0.49, -0.16, 0.022 +19910311, -0.59, -0.32, 0.45, 0.022 +19910312, -0.87, -0.22, 1.03, 0.022 +19910313, 1.10, -0.49, -0.45, 0.022 +19910314, -0.16, 0.43, -0.01, 0.022 +19910315, -0.19, -0.52, -0.12, 0.022 +19910318, -0.27, 0.18, -0.04, 0.022 +19910319, -1.29, 0.50, 0.14, 0.022 +19910320, 0.36, 0.59, -0.48, 0.022 +19910321, -0.26, 0.52, 0.06, 0.022 +19910322, 0.16, -0.25, 0.26, 0.022 +19910325, 0.67, -0.19, 0.17, 0.022 +19910326, 1.67, -0.57, -0.35, 0.022 +19910327, -0.01, 0.78, -0.42, 0.022 +19910328, -0.09, 0.72, -0.01, 0.022 +19910401, -0.85, 0.65, -0.14, 0.024 +19910402, 1.98, -0.67, -0.72, 0.024 +19910403, 0.09, 0.74, -0.05, 0.024 +19910404, 0.29, 0.14, -0.21, 0.024 +19910405, -0.97, 0.77, 0.30, 0.024 +19910408, 0.59, -0.60, -0.12, 0.024 +19910409, -1.08, 0.79, 0.30, 0.024 +19910410, -0.20, -0.02, 0.25, 0.024 +19910411, 1.17, -0.24, 0.01, 0.024 +19910412, 0.60, -0.01, -0.21, 0.024 +19910415, 0.17, -0.23, 0.12, 0.024 +19910416, 1.44, -0.60, -0.36, 0.024 +19910417, 0.78, 0.00, -0.06, 0.024 +19910418, -0.51, -0.10, 0.82, 0.024 +19910419, -1.04, 0.44, 0.63, 0.024 +19910422, -0.98, -0.37, -0.19, 0.024 +19910423, 0.13, -0.05, 0.14, 0.024 +19910424, 0.27, 0.01, 0.10, 0.024 +19910425, -0.79, 0.74, -0.18, 0.024 +19910426, -0.14, -0.19, 0.21, 0.024 +19910429, -1.31, 0.37, 0.33, 0.024 +19910430, 0.18, -1.12, 0.44, 0.024 +19910501, 1.21, -0.54, 0.05, 0.021 +19910502, 0.13, 0.57, -0.40, 0.021 +19910503, 0.09, 0.15, -0.11, 0.021 +19910506, -0.18, 0.06, -0.05, 0.021 +19910507, -0.54, 0.71, -0.05, 0.021 +19910508, 0.21, 0.01, 0.07, 0.021 +19910509, 1.16, -0.41, -0.48, 0.021 +19910510, -1.66, 0.85, 0.26, 0.021 +19910513, 0.17, -0.24, -0.20, 0.021 +19910514, -1.24, 0.38, 0.11, 0.021 +19910515, -1.05, -0.78, 0.88, 0.021 +19910516, 0.94, -0.33, -0.24, 0.021 +19910517, -0.03, -0.13, 0.06, 0.021 +19910520, -0.04, -0.20, -0.07, 0.021 +19910521, 0.74, -0.10, -0.39, 0.021 +19910522, 0.25, -0.13, -0.04, 0.021 +19910523, -0.14, 0.47, -0.16, 0.021 +19910524, 0.63, -0.26, 0.03, 0.021 +19910528, 1.04, -0.62, -0.17, 0.021 +19910529, 0.26, 0.14, 0.44, 0.021 +19910530, 1.01, 0.02, -0.29, 0.021 +19910531, 0.69, 0.03, 0.21, 0.021 +19910603, -0.29, 0.43, 0.42, 0.021 +19910604, -0.05, 0.11, -0.10, 0.021 +19910605, -0.56, 0.70, 0.40, 0.021 +19910606, -0.38, 0.23, 0.45, 0.021 +19910607, -0.95, 0.38, 0.11, 0.021 +19910610, -0.26, -0.04, 0.04, 0.021 +19910611, 0.44, -0.56, -0.02, 0.021 +19910612, -1.11, -0.01, 0.03, 0.021 +19910613, 0.21, -0.11, -0.06, 0.021 +19910614, 1.06, -0.57, -0.25, 0.021 +19910617, -0.41, 0.24, 0.20, 0.021 +19910618, -0.40, 0.12, 0.18, 0.021 +19910619, -0.97, 0.06, 0.01, 0.021 +19910620, 0.01, -0.13, -0.09, 0.021 +19910621, 0.43, -0.52, 0.06, 0.021 +19910624, -1.73, 0.09, 0.36, 0.021 +19910625, -0.22, -0.36, 0.01, 0.021 +19910626, 0.11, -0.44, -0.04, 0.021 +19910627, 0.70, -0.39, -0.39, 0.021 +19910628, -0.64, 0.83, -0.02, 0.021 +19910701, 1.62, -1.11, -0.35, 0.022 +19910702, -0.12, -0.05, -0.08, 0.022 +19910703, -0.98, 0.27, -0.09, 0.022 +19910705, 0.17, -0.16, -0.11, 0.022 +19910708, 0.82, -0.62, -0.21, 0.022 +19910709, -0.13, 0.72, -0.11, 0.022 +19910710, 0.01, 0.60, -0.16, 0.022 +19910711, 0.30, 0.01, -0.24, 0.022 +19910712, 0.75, -0.33, 0.00, 0.022 +19910715, 0.60, -0.07, 0.22, 0.022 +19910716, -0.21, 0.12, 0.51, 0.022 +19910717, -0.05, 0.16, -0.03, 0.022 +19910718, 0.90, -0.21, 0.02, 0.022 +19910719, -0.24, 0.49, 0.09, 0.022 +19910722, -0.37, 0.17, 0.12, 0.022 +19910723, -0.91, 0.16, 0.24, 0.022 +19910724, -0.31, -0.19, 0.14, 0.022 +19910725, 0.55, -0.50, 0.05, 0.022 +19910726, 0.06, 0.01, -0.04, 0.022 +19910729, 0.47, -0.48, -0.31, 0.022 +19910730, 0.86, -0.29, -0.47, 0.022 +19910731, 0.39, 0.36, -0.43, 0.022 +19910801, -0.12, 0.24, -0.16, 0.021 +19910802, 0.09, 0.12, -0.05, 0.021 +19910805, -0.53, 0.20, 0.20, 0.021 +19910806, 1.22, -0.93, 0.04, 0.021 +19910807, 0.09, 0.10, -0.07, 0.021 +19910808, -0.16, 0.26, -0.02, 0.021 +19910809, -0.43, 0.63, -0.14, 0.021 +19910812, 0.20, -0.36, 0.58, 0.021 +19910813, 0.42, -0.11, 0.68, 0.021 +19910814, 0.21, 0.26, -0.16, 0.021 +19910815, -0.16, 0.24, -0.43, 0.021 +19910816, -0.85, 0.51, -0.03, 0.021 +19910819, -2.38, -0.51, -0.19, 0.021 +19910820, 0.72, 0.19, -0.10, 0.021 +19910821, 2.76, -0.39, -0.34, 0.021 +19910822, 0.20, 0.37, -0.11, 0.021 +19910823, 0.62, -0.23, 0.26, 0.021 +19910826, -0.06, 0.26, -0.01, 0.021 +19910827, -0.12, 0.28, -0.47, 0.021 +19910828, 0.85, -0.25, 0.01, 0.021 +19910829, -0.02, 0.20, -0.05, 0.021 +19910830, -0.15, 0.45, -0.16, 0.021 +19910903, -0.80, 0.11, 0.12, 0.023 +19910904, -0.57, 0.18, -0.04, 0.023 +19910905, -0.27, 0.26, -0.05, 0.023 +19910906, -0.03, 0.03, 0.12, 0.023 +19910909, -0.13, 0.15, -0.11, 0.023 +19910910, -1.04, -0.09, 0.10, 0.023 +19910911, 0.18, 0.17, -0.19, 0.023 +19910912, 0.65, 0.02, -0.55, 0.023 +19910913, -0.92, 0.65, 0.17, 0.023 +19910916, 0.42, -0.55, -0.23, 0.023 +19910917, -0.05, -0.04, -0.12, 0.023 +19910918, 0.37, -0.04, -0.16, 0.023 +19910919, 0.32, 0.38, -0.25, 0.023 +19910920, 0.23, 0.44, -0.28, 0.023 +19910923, -0.47, 0.10, -0.07, 0.023 +19910924, 0.44, -0.36, 0.02, 0.023 +19910925, -0.17, 0.02, -0.02, 0.023 +19910926, -0.03, 0.12, 0.42, 0.023 +19910927, -0.21, -0.08, 0.09, 0.023 +19910930, 0.53, 0.11, -0.04, 0.023 +19911001, 0.27, -0.06, -0.61, 0.018 +19911002, -0.29, 0.00, 0.15, 0.018 +19911003, -0.94, 0.03, 0.39, 0.018 +19911004, -0.61, 0.40, 0.11, 0.018 +19911007, -0.60, -0.39, 0.18, 0.018 +19911008, 0.26, -0.05, -0.06, 0.018 +19911009, -0.89, 0.60, -0.30, 0.018 +19911010, 0.73, -0.74, 0.07, 0.018 +19911011, 0.24, 0.06, 0.19, 0.018 +19911014, 1.21, -0.48, -0.24, 0.018 +19911015, 1.23, -0.08, -0.09, 0.018 +19911016, 0.64, 0.75, -0.10, 0.018 +19911017, -0.29, 0.19, -0.02, 0.018 +19911018, 0.18, 0.10, 0.16, 0.018 +19911021, -0.60, 0.46, -0.04, 0.018 +19911022, -0.43, 0.50, -0.17, 0.018 +19911023, -0.05, -0.03, -0.27, 0.018 +19911024, -0.81, -0.31, 0.38, 0.018 +19911025, -0.30, -0.28, 0.35, 0.018 +19911028, 1.18, -0.76, -0.30, 0.018 +19911029, 0.57, 0.05, 0.04, 0.018 +19911030, 0.52, 0.17, 0.23, 0.018 +19911031, 0.09, 0.75, -0.44, 0.018 +19911101, -0.31, 0.16, -0.29, 0.020 +19911104, -0.34, -0.13, 0.02, 0.020 +19911105, -0.26, 0.32, 0.01, 0.020 +19911106, 0.28, -0.24, 0.28, 0.020 +19911107, 0.92, -0.21, -0.20, 0.020 +19911108, 0.01, 0.41, -0.19, 0.020 +19911111, 0.15, 0.34, -0.67, 0.020 +19911112, 0.87, -0.19, -0.23, 0.020 +19911113, 0.12, -0.27, 0.09, 0.020 +19911114, -0.11, -0.11, -0.08, 0.020 +19911115, -3.55, 0.36, 1.06, 0.020 +19911118, 0.50, -0.51, -0.89, 0.020 +19911119, -1.60, -0.70, 0.32, 0.020 +19911120, -0.13, 0.54, -0.08, 0.020 +19911121, 0.43, -0.13, -0.38, 0.020 +19911122, -0.95, 0.32, -0.29, 0.020 +19911125, -0.33, -0.38, 0.08, 0.020 +19911126, 0.50, -0.94, 0.09, 0.020 +19911127, -0.22, 0.23, -0.33, 0.020 +19911129, -0.18, 0.66, -0.38, 0.020 +19911202, 1.38, -1.34, -0.61, 0.018 +19911203, 0.07, 0.36, -0.49, 0.018 +19911204, -0.12, 0.45, -0.58, 0.018 +19911205, -0.55, 0.35, -0.49, 0.018 +19911206, 0.37, 0.01, -0.37, 0.018 +19911209, -0.23, -0.12, -0.36, 0.018 +19911210, -0.12, -0.39, -0.26, 0.018 +19911211, -0.19, -0.42, 0.12, 0.018 +19911212, 0.92, -0.45, 0.12, 0.018 +19911213, 0.72, 0.18, 0.05, 0.018 +19911216, 0.16, 0.68, -0.82, 0.018 +19911217, -0.50, 0.19, -0.82, 0.018 +19911218, 0.11, -0.22, -0.34, 0.018 +19911219, -0.40, -0.23, -0.01, 0.018 +19911220, 0.99, -1.28, 0.61, 0.018 +19911223, 2.28, -1.41, 0.74, 0.018 +19911224, 0.81, 0.05, 0.57, 0.018 +19911226, 1.44, 0.22, -0.03, 0.018 +19911227, 0.58, 0.62, -0.40, 0.018 +19911230, 2.04, 0.14, -0.37, 0.018 +19911231, 0.63, 0.55, 0.12, 0.018 +19920102, -0.10, -0.10, 0.52, 0.015 +19920103, 0.55, 0.51, 0.15, 0.015 +19920106, -0.01, 1.01, -0.01, 0.015 +19920107, 0.06, 0.72, -0.09, 0.015 +19920108, 0.38, 0.91, -0.69, 0.015 +19920109, 0.23, 1.11, -0.68, 0.015 +19920110, -0.63, 0.07, 0.48, 0.015 +19920113, -0.14, 0.54, -0.04, 0.015 +19920114, 1.32, -0.14, 0.28, 0.015 +19920115, 0.31, 0.31, 1.58, 0.015 +19920116, -0.62, 0.45, 1.92, 0.015 +19920117, 0.07, 0.47, -0.22, 0.015 +19920120, -0.66, 0.27, 0.50, 0.015 +19920121, -1.15, -0.65, 0.35, 0.015 +19920122, 1.39, 0.02, -0.82, 0.015 +19920123, -0.43, 0.85, 0.05, 0.015 +19920124, 0.14, 0.23, -0.07, 0.015 +19920127, -0.15, -0.09, 1.07, 0.015 +19920128, 0.00, -0.05, 0.66, 0.015 +19920129, -1.02, 0.56, -0.12, 0.015 +19920130, 0.43, 0.33, -0.33, 0.015 +19920131, -0.51, 0.84, -0.12, 0.015 +19920203, 0.25, -0.02, 0.35, 0.015 +19920204, 1.01, -0.06, -0.03, 0.015 +19920205, 0.24, 0.52, 0.04, 0.015 +19920206, 0.04, 0.19, 0.61, 0.015 +19920207, -0.59, 0.47, 0.23, 0.015 +19920210, 0.46, -0.42, 0.73, 0.015 +19920211, 0.02, 0.03, 0.46, 0.015 +19920212, 0.89, 0.24, -0.10, 0.015 +19920213, -0.83, 0.22, 0.51, 0.015 +19920214, -0.23, 0.02, 0.87, 0.015 +19920218, -1.20, 0.19, 1.82, 0.015 +19920219, -0.01, -1.03, 0.94, 0.015 +19920220, 1.28, -0.03, -0.14, 0.015 +19920221, -0.52, 0.38, 0.05, 0.015 +19920224, -0.05, -0.54, 0.16, 0.015 +19920225, -0.44, -0.13, -0.41, 0.015 +19920226, 1.19, 0.05, -0.42, 0.015 +19920227, -0.13, 0.59, 0.21, 0.015 +19920228, -0.27, 0.17, 0.28, 0.015 +19920302, 0.09, 0.16, 0.30, 0.015 +19920303, 0.03, 0.04, 0.45, 0.015 +19920304, -0.74, 0.50, 0.29, 0.015 +19920305, -0.88, -0.39, 0.02, 0.015 +19920306, -0.56, -0.08, -0.22, 0.015 +19920309, 0.15, -0.31, 0.22, 0.015 +19920310, 0.55, 0.18, -0.11, 0.015 +19920311, -0.73, 0.05, 0.13, 0.015 +19920312, -0.13, -0.35, -0.14, 0.015 +19920313, 0.44, -0.13, 0.02, 0.015 +19920316, 0.04, -0.37, 0.18, 0.015 +19920317, 0.74, -0.30, 0.02, 0.015 +19920318, -0.02, 0.52, 0.79, 0.015 +19920319, 0.17, -0.13, 0.64, 0.015 +19920320, 0.18, -0.33, 0.31, 0.015 +19920323, -0.29, 0.03, -0.14, 0.015 +19920324, -0.28, -0.05, -0.03, 0.015 +19920325, -0.14, 0.34, 0.05, 0.015 +19920326, -0.11, -0.40, 0.29, 0.015 +19920327, -1.09, 0.03, 0.10, 0.015 +19920330, -0.21, -0.32, 0.39, 0.015 +19920331, 0.12, 0.29, 0.10, 0.015 +19920401, 0.02, -0.59, -0.24, 0.015 +19920402, -1.00, 0.06, 0.16, 0.015 +19920403, 0.00, -0.62, -0.39, 0.015 +19920406, 0.91, -0.60, -0.01, 0.015 +19920407, -1.83, -0.19, 0.84, 0.015 +19920408, -1.08, -0.53, 0.19, 0.015 +19920409, 1.63, 0.11, -0.68, 0.015 +19920410, 0.73, -0.22, 0.21, 0.015 +19920413, 0.45, -0.39, -0.17, 0.015 +19920414, 1.39, -0.60, 0.53, 0.015 +19920415, 0.82, -0.47, 0.34, 0.015 +19920416, -0.31, -0.85, 1.37, 0.015 +19920420, -1.52, -0.47, 1.18, 0.015 +19920421, -0.13, -0.35, 0.58, 0.015 +19920422, -0.01, 0.01, 0.61, 0.015 +19920423, 0.22, -0.51, 0.43, 0.015 +19920424, -0.51, 0.68, -0.05, 0.015 +19920427, -0.22, -0.50, -0.16, 0.015 +19920428, -0.09, -0.89, 0.44, 0.015 +19920429, 0.80, 0.12, -0.15, 0.015 +19920430, 0.88, 0.64, -0.72, 0.015 +19920501, -0.45, 0.59, -0.08, 0.014 +19920504, 1.02, -0.44, -0.36, 0.014 +19920505, 0.16, 0.19, 0.03, 0.014 +19920506, 0.04, 0.30, 0.18, 0.014 +19920507, -0.19, 0.14, 0.22, 0.014 +19920508, -0.03, -0.22, 0.27, 0.014 +19920511, 0.51, -0.13, -0.09, 0.014 +19920512, -0.50, 0.12, 0.57, 0.014 +19920513, -0.04, -0.19, 0.59, 0.014 +19920514, -0.81, -0.02, 0.21, 0.014 +19920515, -0.59, 0.35, -0.11, 0.014 +19920518, 0.50, -0.40, -0.11, 0.014 +19920519, 0.72, -0.64, 0.02, 0.014 +19920520, -0.06, 0.33, 0.05, 0.014 +19920521, -0.63, 0.47, 0.18, 0.014 +19920522, 0.27, 0.04, -0.01, 0.014 +19920526, -0.70, 0.03, -0.05, 0.014 +19920527, 0.22, -0.15, 0.13, 0.014 +19920528, 0.88, -0.58, -0.50, 0.014 +19920529, 0.01, 0.63, 0.05, 0.014 +19920601, 0.45, -0.23, 0.01, 0.015 +19920602, -0.62, 0.89, 0.39, 0.015 +19920603, 0.14, -0.14, 0.30, 0.015 +19920604, -0.34, 0.15, 0.71, 0.015 +19920605, -0.08, -0.19, 0.21, 0.015 +19920608, -0.17, -0.33, 0.56, 0.015 +19920609, -0.86, -0.26, 0.59, 0.015 +19920610, -0.71, -0.09, 0.40, 0.015 +19920611, 0.20, -0.79, -0.06, 0.015 +19920612, 0.25, 0.09, -0.12, 0.015 +19920615, -0.02, -0.43, 0.23, 0.015 +19920616, -0.49, -0.26, 0.60, 0.015 +19920617, -1.55, -0.28, 0.10, 0.015 +19920618, -0.43, -0.59, 0.03, 0.015 +19920619, 0.65, -0.21, -0.28, 0.015 +19920622, -0.27, -0.70, -0.37, 0.015 +19920623, 0.29, 0.03, -0.08, 0.015 +19920624, -0.13, -0.27, 0.44, 0.015 +19920625, -0.17, -0.02, 0.14, 0.015 +19920626, 0.05, -0.08, 0.18, 0.015 +19920629, 1.34, -0.32, -0.48, 0.015 +19920630, 0.14, 0.84, 0.07, 0.015 +19920701, 1.05, -0.32, -0.52, 0.014 +19920702, -0.30, -0.19, 0.51, 0.014 +19920706, 0.38, -0.63, -0.31, 0.014 +19920707, -1.04, 0.29, 1.02, 0.014 +19920708, 0.15, -0.51, 0.00, 0.014 +19920709, 0.96, -0.08, -0.14, 0.014 +19920710, 0.19, 0.35, -0.15, 0.014 +19920713, 0.16, 0.20, -0.11, 0.014 +19920714, 0.62, 0.08, -0.09, 0.014 +19920715, -0.12, 0.45, -0.32, 0.014 +19920716, 0.08, 0.07, -0.55, 0.014 +19920717, -0.52, -0.03, 0.14, 0.014 +19920720, -0.48, -0.36, 0.35, 0.014 +19920721, 0.16, 0.31, -0.41, 0.014 +19920722, -0.68, 0.23, 0.28, 0.014 +19920723, 0.24, -0.06, 0.05, 0.014 +19920724, -0.05, 0.03, 0.20, 0.014 +19920727, 0.04, 0.05, -0.08, 0.014 +19920728, 1.31, -0.59, -0.12, 0.014 +19920729, 1.05, -0.21, -0.34, 0.014 +19920730, 0.38, 0.07, 0.23, 0.014 +19920731, 0.16, 0.41, -0.18, 0.014 +19920803, 0.24, 0.10, -0.37, 0.012 +19920804, -0.11, 0.21, -0.12, 0.012 +19920805, -0.52, 0.17, 0.09, 0.012 +19920806, -0.35, 0.10, -0.23, 0.012 +19920807, -0.25, 0.20, -0.16, 0.012 +19920810, 0.01, -0.37, 0.15, 0.012 +19920811, -0.14, 0.00, 0.14, 0.012 +19920812, -0.31, 0.19, -0.08, 0.012 +19920813, 0.04, -0.13, -0.14, 0.012 +19920814, 0.49, -0.16, 0.06, 0.012 +19920817, 0.18, -0.12, -0.06, 0.012 +19920818, 0.08, -0.21, -0.06, 0.012 +19920819, -0.66, 0.24, -0.11, 0.012 +19920820, -0.05, -0.23, -0.06, 0.012 +19920821, -0.75, 0.27, 0.16, 0.012 +19920824, -1.16, -0.02, -0.24, 0.012 +19920825, 0.05, -0.43, -0.07, 0.012 +19920826, 0.49, -0.24, -0.22, 0.012 +19920827, 0.22, 0.33, -0.04, 0.012 +19920828, 0.23, -0.06, 0.08, 0.012 +19920831, -0.13, 0.05, 0.22, 0.012 +19920901, 0.45, -0.20, -0.40, 0.012 +19920902, 0.52, 0.17, -0.19, 0.012 +19920903, 0.11, 0.47, -0.47, 0.012 +19920904, -0.21, 0.03, -0.13, 0.012 +19920908, -0.59, 0.22, -0.24, 0.012 +19920909, 0.41, -0.21, -0.28, 0.012 +19920910, 0.83, -0.16, -0.17, 0.012 +19920911, 0.04, 0.37, -0.56, 0.012 +19920914, 1.39, -0.45, -0.37, 0.012 +19920915, -1.12, 0.51, 0.25, 0.012 +19920916, -0.08, -0.10, 0.10, 0.012 +19920917, 0.02, 0.03, -0.18, 0.012 +19920918, 0.52, -0.29, 0.27, 0.012 +19920921, -0.11, -0.09, 0.25, 0.012 +19920922, -1.04, 0.64, 0.32, 0.012 +19920923, -0.03, -0.02, -0.02, 0.012 +19920924, 0.36, -0.02, 0.04, 0.012 +19920925, -1.06, -0.10, 1.03, 0.012 +19920928, 0.30, -0.62, 0.32, 0.012 +19920929, 0.10, -0.11, 0.12, 0.012 +19920930, 0.38, 0.48, 0.10, 0.012 +19921001, -0.44, -0.33, 0.18, 0.010 +19921002, -1.28, 0.40, 0.30, 0.010 +19921005, -0.82, -0.88, 0.19, 0.010 +19921006, 0.16, 0.54, -0.19, 0.010 +19921007, -0.55, 0.74, -0.32, 0.010 +19921008, 0.81, -0.15, -0.59, 0.010 +19921009, -1.05, 0.61, 0.18, 0.010 +19921012, 0.94, -0.68, 0.18, 0.010 +19921013, 0.48, -0.06, -0.26, 0.010 +19921014, 0.02, 0.25, -0.17, 0.010 +19921015, 0.09, 0.13, -0.29, 0.010 +19921016, 0.45, -0.05, -0.31, 0.010 +19921019, 0.92, 0.23, -0.92, 0.010 +19921020, 0.16, 0.33, 0.22, 0.010 +19921021, 0.17, 0.29, -0.02, 0.010 +19921022, -0.17, -0.03, 0.11, 0.010 +19921023, -0.13, 0.39, 0.25, 0.010 +19921026, 0.82, -0.66, 0.35, 0.010 +19921027, 0.03, 0.00, -0.17, 0.010 +19921028, 0.48, 0.08, -0.27, 0.010 +19921029, 0.28, 0.09, -0.47, 0.010 +19921030, -0.32, 0.78, -0.06, 0.010 +19921102, 0.79, -0.44, -0.10, 0.012 +19921103, -0.50, 0.46, 0.25, 0.012 +19921104, -0.47, 0.44, 0.25, 0.012 +19921105, 0.44, 0.28, -0.36, 0.012 +19921106, 0.03, 0.41, -0.32, 0.012 +19921109, 0.35, 0.44, -0.59, 0.012 +19921110, 0.17, 0.57, -0.58, 0.012 +19921111, 0.86, 0.41, -0.77, 0.012 +19921112, 0.08, -0.21, 0.17, 0.012 +19921113, 0.00, 0.42, 0.02, 0.012 +19921116, -0.33, 0.18, 0.01, 0.012 +19921117, -0.40, -0.16, 0.53, 0.012 +19921118, 0.81, 0.01, -0.42, 0.012 +19921119, 0.23, 0.20, -0.33, 0.012 +19921120, 0.68, -0.07, -0.09, 0.012 +19921123, -0.28, 0.23, 0.21, 0.012 +19921124, 0.60, 0.07, -0.17, 0.012 +19921125, 0.41, 0.02, 0.33, 0.012 +19921127, 0.24, 0.00, 0.05, 0.012 +19921130, 0.34, 0.19, 0.51, 0.012 +19921201, -0.06, 0.16, 0.06, 0.013 +19921202, -0.21, 0.40, 0.20, 0.013 +19921203, 0.06, 0.31, 0.00, 0.013 +19921204, 0.51, 0.08, -0.16, 0.013 +19921207, 0.64, -0.06, -0.27, 0.013 +19921208, 0.32, -0.14, 0.16, 0.013 +19921209, -0.29, -0.13, 0.21, 0.013 +19921210, -0.32, -0.33, 0.33, 0.013 +19921211, -0.17, 0.09, 0.17, 0.013 +19921214, -0.17, 0.04, 0.19, 0.013 +19921215, -0.18, -0.35, 0.25, 0.013 +19921216, -0.37, -0.29, 0.46, 0.013 +19921217, 0.88, -0.04, -0.50, 0.013 +19921218, 1.10, -0.59, -0.17, 0.013 +19921221, -0.08, -0.09, 0.12, 0.013 +19921222, -0.06, -0.13, 0.59, 0.013 +19921223, -0.14, 0.34, 0.46, 0.013 +19921224, 0.19, 0.28, -0.01, 0.013 +19921228, -0.06, -0.26, 0.09, 0.013 +19921229, -0.05, 0.43, 0.13, 0.013 +19921230, 0.20, 0.41, 0.10, 0.013 +19921231, -0.18, 1.47, 0.00, 0.013 +19930104, -0.30, -0.30, 0.55, 0.012 +19930105, -0.19, 0.39, 0.25, 0.012 +19930106, 0.14, 0.42, 0.49, 0.012 +19930107, -0.77, 0.65, 0.17, 0.012 +19930108, -0.40, 0.02, -0.19, 0.012 +19930111, 0.41, -0.01, 0.30, 0.012 +19930112, 0.00, -0.29, 0.19, 0.012 +19930113, 0.50, 0.00, -0.11, 0.012 +19930114, 0.73, 0.22, -0.17, 0.012 +19930115, 0.36, 0.18, 0.33, 0.012 +19930118, 0.01, -0.03, 0.94, 0.012 +19930119, -0.27, 0.27, 1.32, 0.012 +19930120, -0.27, 0.62, 0.14, 0.012 +19930121, 0.43, -0.19, -0.05, 0.012 +19930122, 0.25, 0.21, 0.29, 0.012 +19930125, 0.74, 0.05, 0.14, 0.012 +19930126, 0.02, 0.40, 0.25, 0.012 +19930127, -0.54, -0.59, 0.65, 0.012 +19930128, -0.02, -0.28, 0.14, 0.012 +19930129, 0.11, 0.29, 0.09, 0.012 +19930201, 0.84, -0.54, 0.22, 0.012 +19930202, 0.14, 0.14, 0.27, 0.012 +19930203, 0.95, -0.10, 0.25, 0.012 +19930204, 0.55, -0.44, 0.70, 0.012 +19930205, -0.33, -0.45, 0.70, 0.012 +19930208, -0.21, 0.03, 0.39, 0.012 +19930209, -0.66, -0.07, 0.16, 0.012 +19930210, 0.20, -0.24, 0.01, 0.012 +19930211, 0.30, 0.18, 0.30, 0.012 +19930212, -0.61, 0.17, 0.36, 0.012 +19930216, -2.71, -0.72, 0.85, 0.012 +19930217, -0.43, -0.79, 0.60, 0.012 +19930218, -0.17, 0.72, 0.00, 0.012 +19930219, 0.41, -0.14, 1.47, 0.012 +19930222, -0.16, -1.25, 2.10, 0.012 +19930223, -0.07, -0.04, -0.47, 0.012 +19930224, 1.43, -0.60, -1.12, 0.012 +19930225, 0.42, 0.17, 0.03, 0.012 +19930226, 0.29, 0.52, -0.40, 0.012 +19930301, -0.14, 0.22, 0.04, 0.011 +19930302, 1.18, -0.57, -0.41, 0.011 +19930303, 0.49, 0.21, -0.03, 0.011 +19930304, -0.41, 0.39, 0.33, 0.011 +19930305, -0.17, 0.45, -0.01, 0.011 +19930308, 1.56, -0.99, -0.20, 0.011 +19930309, 0.09, 0.16, 0.41, 0.011 +19930310, 0.49, 0.02, -0.27, 0.011 +19930311, -0.36, 0.72, -0.12, 0.011 +19930312, -0.73, 0.43, -0.16, 0.011 +19930315, 0.31, 0.02, -0.12, 0.011 +19930316, -0.05, -0.14, 0.37, 0.011 +19930317, -0.73, 0.13, 0.62, 0.011 +19930318, 0.65, -0.72, 0.41, 0.011 +19930319, -0.49, -0.09, 0.71, 0.011 +19930322, -0.42, -0.49, 0.68, 0.011 +19930323, -0.06, -0.14, 0.11, 0.011 +19930324, -0.16, -0.03, -0.06, 0.011 +19930325, 0.66, -0.05, -0.24, 0.011 +19930326, -0.38, 0.58, 0.21, 0.011 +19930329, 0.45, -0.39, -0.17, 0.011 +19930330, 0.39, -0.12, -0.63, 0.011 +19930331, 0.15, 0.57, -0.30, 0.011 +19930401, -0.37, 0.13, 0.31, 0.011 +19930402, -2.01, 0.34, 0.79, 0.011 +19930405, 0.12, -0.62, 0.42, 0.011 +19930406, -0.43, -0.47, 1.07, 0.011 +19930407, 0.31, -0.25, 0.32, 0.011 +19930408, -0.22, 0.02, 0.76, 0.011 +19930412, 1.28, -0.99, -0.10, 0.011 +19930413, 0.33, 0.15, 0.56, 0.011 +19930414, -0.06, 0.05, 0.48, 0.011 +19930415, -0.16, -0.15, 0.37, 0.011 +19930416, -0.01, -0.34, 0.90, 0.011 +19930419, -0.37, 0.08, -0.42, 0.011 +19930420, -0.52, 0.21, -0.69, 0.011 +19930421, -0.17, 0.61, -0.81, 0.011 +19930422, -0.74, 0.92, -0.28, 0.011 +19930423, -0.59, 0.17, -0.21, 0.011 +19930426, -1.03, -0.29, -0.17, 0.011 +19930427, 0.91, -0.89, -0.63, 0.011 +19930428, 0.14, 0.18, 0.18, 0.011 +19930429, 0.19, 0.10, -0.07, 0.011 +19930430, 0.38, 0.35, -0.06, 0.011 +19930503, 0.56, -0.20, -0.54, 0.011 +19930504, 0.58, 0.57, -0.41, 0.011 +19930505, 0.31, 0.61, -0.68, 0.011 +19930506, -0.31, 0.40, -0.06, 0.011 +19930507, -0.14, 0.22, -0.27, 0.011 +19930510, 0.20, -0.13, -0.01, 0.011 +19930511, 0.33, -0.19, 0.37, 0.011 +19930512, 0.00, 0.02, 0.43, 0.011 +19930513, -1.15, 0.72, 0.08, 0.011 +19930514, -0.03, 0.30, -1.12, 0.011 +19930517, 0.14, -0.17, -0.55, 0.011 +19930518, 0.06, 0.18, -0.45, 0.011 +19930519, 1.46, -0.93, -0.79, 0.011 +19930520, 0.68, -0.12, -0.32, 0.011 +19930521, -0.81, 0.85, 0.13, 0.011 +19930524, 0.29, -0.36, 0.14, 0.011 +19930525, 0.26, -0.07, 0.14, 0.011 +19930526, 1.00, -0.37, 0.12, 0.011 +19930527, -0.16, 0.38, 0.45, 0.011 +19930528, -0.40, 0.15, 0.01, 0.011 +19930601, 0.75, -0.51, 0.18, 0.012 +19930602, 0.05, 0.31, 0.05, 0.012 +19930603, -0.21, 0.28, 0.45, 0.012 +19930604, -0.58, 0.34, 0.23, 0.012 +19930607, -0.69, 0.10, 0.26, 0.012 +19930608, -0.76, -0.20, 0.11, 0.012 +19930609, 0.27, -0.13, 0.10, 0.012 +19930610, -0.14, -0.22, -0.14, 0.012 +19930611, 0.39, -0.15, -0.32, 0.012 +19930614, 0.13, -0.01, -0.09, 0.012 +19930615, -0.16, 0.53, 0.22, 0.012 +19930616, 0.16, -0.30, -0.05, 0.012 +19930617, 0.22, -0.26, 0.32, 0.012 +19930618, -0.93, 0.48, 0.67, 0.012 +19930621, 0.37, -0.80, 0.41, 0.012 +19930622, -0.10, -0.20, 0.61, 0.012 +19930623, -0.44, 0.27, -0.02, 0.012 +19930624, 0.69, -0.52, -0.07, 0.012 +19930625, 0.35, 0.25, -0.37, 0.012 +19930628, 1.06, -0.44, 0.11, 0.012 +19930629, -0.22, 0.49, -0.30, 0.012 +19930630, 0.13, 0.36, 0.24, 0.012 +19930701, -0.22, 0.50, 0.47, 0.011 +19930702, -0.48, 0.66, -0.23, 0.011 +19930706, -0.79, 0.55, 0.61, 0.011 +19930707, 0.13, -0.51, 0.44, 0.011 +19930708, 1.03, -0.69, -0.11, 0.011 +19930709, 0.05, 0.27, 0.04, 0.011 +19930712, 0.16, 0.16, -0.15, 0.011 +19930713, -0.06, 0.35, -0.17, 0.011 +19930714, 0.43, 0.14, -0.10, 0.011 +19930715, -0.19, 0.04, 0.39, 0.011 +19930716, -0.72, 0.24, 0.90, 0.011 +19930719, -0.13, -0.50, 0.50, 0.011 +19930720, 0.26, -0.30, -0.28, 0.011 +19930721, -0.10, -0.02, 0.34, 0.011 +19930722, -0.57, 0.05, 0.29, 0.011 +19930723, 0.47, -0.24, -0.42, 0.011 +19930726, 0.54, -0.10, 0.04, 0.011 +19930727, -0.24, 0.05, 0.08, 0.011 +19930728, -0.07, 0.39, 0.00, 0.011 +19930729, 0.54, -0.50, 0.07, 0.011 +19930730, -0.38, 0.35, 0.46, 0.011 +19930802, 0.40, -0.25, 0.01, 0.011 +19930803, -0.02, 0.24, -0.06, 0.011 +19930804, -0.01, 0.24, -0.02, 0.011 +19930805, -0.07, -0.04, -0.34, 0.011 +19930806, 0.15, 0.18, -0.29, 0.011 +19930809, 0.46, -0.47, 0.09, 0.011 +19930810, -0.16, 0.30, 0.47, 0.011 +19930811, 0.15, 0.00, 0.25, 0.011 +19930812, -0.29, 0.11, 0.24, 0.011 +19930813, 0.17, -0.04, -0.13, 0.011 +19930816, 0.51, -0.32, -0.07, 0.011 +19930817, 0.31, 0.05, -0.57, 0.011 +19930818, 0.57, 0.15, -0.79, 0.011 +19930819, 0.01, -0.08, 0.03, 0.011 +19930820, 0.00, 0.32, 0.05, 0.011 +19930823, -0.15, 0.01, 0.15, 0.011 +19930824, 0.88, -0.32, -0.04, 0.011 +19930825, 0.04, -0.02, 0.62, 0.011 +19930826, 0.07, -0.28, 0.39, 0.011 +19930827, -0.07, 0.30, -0.28, 0.011 +19930830, 0.29, -0.02, -0.15, 0.011 +19930831, 0.44, 0.23, 0.01, 0.011 +19930901, 0.03, 0.26, -0.09, 0.012 +19930902, -0.21, 0.63, -0.43, 0.012 +19930903, 0.06, 0.23, 0.11, 0.012 +19930907, -0.76, -0.30, 0.58, 0.012 +19930908, -0.66, -0.73, 0.44, 0.012 +19930909, 0.37, 0.18, -0.19, 0.012 +19930910, 0.87, -0.01, -0.25, 0.012 +19930913, 0.01, -0.11, 0.49, 0.012 +19930914, -0.57, -0.10, 0.12, 0.012 +19930915, 0.34, -0.06, -0.19, 0.012 +19930916, -0.26, 0.49, -0.01, 0.012 +19930917, -0.09, 0.26, 0.23, 0.012 +19930920, -0.58, 0.57, 0.14, 0.012 +19930921, -0.61, -0.34, -0.18, 0.012 +19930922, 0.84, 0.26, -0.55, 0.012 +19930923, 0.47, 0.16, -0.82, 0.012 +19930924, 0.07, 0.26, -0.04, 0.012 +19930927, 0.79, -0.21, -0.34, 0.012 +19930928, 0.06, 0.22, 0.29, 0.012 +19930929, -0.19, 0.53, 0.13, 0.012 +19930930, -0.10, 0.91, 0.09, 0.012 +19931001, 0.33, -0.44, 0.35, 0.011 +19931004, 0.05, 0.20, 0.05, 0.011 +19931005, -0.06, -0.03, 0.01, 0.011 +19931006, -0.05, 0.47, -0.12, 0.011 +19931007, -0.31, 0.26, -0.06, 0.011 +19931008, 0.15, -0.09, -0.11, 0.011 +19931011, 0.19, 0.27, -0.51, 0.011 +19931012, 0.23, 0.35, -0.47, 0.011 +19931013, 0.20, 0.37, -0.49, 0.011 +19931014, 0.89, -0.50, -0.63, 0.011 +19931015, 0.46, 0.02, -0.50, 0.011 +19931018, -0.32, 0.18, -0.24, 0.011 +19931019, -0.79, -0.54, 1.04, 0.011 +19931020, -0.13, -0.26, 0.26, 0.011 +19931021, -0.06, 0.13, -0.14, 0.011 +19931022, -0.25, 0.53, 0.19, 0.011 +19931025, 0.03, -0.06, -0.07, 0.011 +19931026, -0.16, -0.19, 0.15, 0.011 +19931027, 0.25, 0.23, -0.09, 0.011 +19931028, 0.53, -0.22, 0.09, 0.011 +19931029, 0.24, 0.77, -0.21, 0.011 +19931101, 0.28, -0.27, -0.23, 0.012 +19931102, -0.09, 0.42, -0.26, 0.012 +19931103, -1.26, 0.45, -0.58, 0.012 +19931104, -1.35, -0.10, 0.27, 0.012 +19931105, 0.45, -0.65, -0.32, 0.012 +19931108, 0.27, 0.21, -0.11, 0.012 +19931109, 0.18, 0.38, -0.37, 0.012 +19931110, 0.65, -0.19, -0.24, 0.012 +19931111, -0.08, 0.34, -0.06, 0.012 +19931112, 0.46, -0.25, 0.16, 0.012 +19931115, -0.42, -0.03, 0.20, 0.012 +19931116, 0.38, -0.96, 0.04, 0.012 +19931117, -0.55, -0.14, 0.51, 0.012 +19931118, -0.40, -0.33, 0.42, 0.012 +19931119, -0.30, 0.05, 0.04, 0.012 +19931122, -1.09, -0.64, 0.68, 0.012 +19931123, 0.54, -0.20, -0.12, 0.012 +19931124, 0.49, 0.08, 0.02, 0.012 +19931126, 0.25, -0.10, -0.08, 0.012 +19931129, -0.19, 0.05, 0.16, 0.012 +19931130, -0.08, 0.41, -0.39, 0.012 +19931201, 0.32, 0.60, -0.10, 0.010 +19931202, 0.23, -0.17, -0.07, 0.010 +19931203, 0.40, 0.00, -0.17, 0.010 +19931206, 0.29, -0.30, 0.03, 0.010 +19931207, 0.03, -0.08, 0.14, 0.010 +19931208, -0.06, 0.18, 0.21, 0.010 +19931209, -0.44, 0.13, 0.37, 0.010 +19931210, -0.07, -0.21, 0.32, 0.010 +19931213, 0.19, -0.57, 0.19, 0.010 +19931214, -0.61, -0.24, 0.20, 0.010 +19931215, -0.21, 0.12, -0.25, 0.010 +19931216, 0.24, 0.01, -0.10, 0.010 +19931217, 0.64, -0.03, 0.20, 0.010 +19931220, -0.08, -0.05, 0.08, 0.010 +19931221, -0.25, -0.41, 0.31, 0.010 +19931222, 0.29, -0.41, 0.13, 0.010 +19931223, 0.14, 0.23, -0.33, 0.010 +19931227, 0.58, -0.33, -0.02, 0.010 +19931228, 0.23, 0.17, 0.07, 0.010 +19931229, 0.11, 0.82, -0.20, 0.010 +19931230, -0.25, 0.42, -0.25, 0.010 +19931231, -0.09, 1.33, -0.24, 0.010 +19940103, -0.45, -0.20, 0.41, 0.012 +19940104, 0.24, -0.08, 0.24, 0.012 +19940105, 0.21, 0.29, -0.12, 0.012 +19940106, -0.07, 0.28, -0.14, 0.012 +19940107, 0.48, -0.19, 0.15, 0.012 +19940110, 0.88, -0.78, 0.05, 0.012 +19940111, -0.16, 0.14, -0.03, 0.012 +19940112, 0.04, 0.15, -0.13, 0.012 +19940113, -0.17, 0.36, 0.21, 0.012 +19940114, 0.47, -0.21, -0.01, 0.012 +19940117, -0.25, 0.44, 0.10, 0.012 +19940118, 0.10, -0.03, 0.09, 0.012 +19940119, -0.08, 0.25, 0.03, 0.012 +19940120, 0.21, 0.18, -0.15, 0.012 +19940121, -0.05, 0.23, 0.09, 0.012 +19940124, -0.47, 0.21, 0.38, 0.012 +19940125, -0.26, -0.03, -0.03, 0.012 +19940126, 0.41, -0.14, -0.09, 0.012 +19940127, 0.78, -0.74, 0.35, 0.012 +19940128, 0.42, 0.07, 0.08, 0.012 +19940131, 0.57, -0.07, 0.55, 0.012 +19940201, -0.28, 0.38, -0.15, 0.011 +19940202, 0.43, -0.07, 0.01, 0.011 +19940203, -0.21, 0.13, 0.11, 0.011 +19940204, -2.32, 0.21, 0.27, 0.011 +19940207, 0.33, -0.47, 0.06, 0.011 +19940208, 0.05, 0.69, 0.18, 0.011 +19940209, 0.44, 0.34, -0.11, 0.011 +19940210, -0.67, 0.48, -0.29, 0.011 +19940211, 0.03, -0.44, -0.27, 0.011 +19940214, 0.11, -0.02, -0.15, 0.011 +19940215, 0.47, -0.03, -0.34, 0.011 +19940216, 0.06, 0.65, -0.15, 0.011 +19940217, -0.46, 0.19, -0.14, 0.011 +19940218, -0.48, 0.25, -0.04, 0.011 +19940222, 0.63, -0.52, -0.04, 0.011 +19940223, -0.14, 0.15, -0.30, 0.011 +19940224, -1.25, 0.28, 0.25, 0.011 +19940225, 0.36, -0.11, -0.18, 0.011 +19940228, 0.38, 0.68, -0.19, 0.011 +19940301, -0.52, -0.05, 0.10, 0.012 +19940302, -0.13, -0.71, 0.21, 0.012 +19940303, -0.24, 0.36, -0.11, 0.012 +19940304, 0.46, 0.06, 0.00, 0.012 +19940307, 0.56, 0.19, -0.16, 0.012 +19940308, -0.23, 0.15, 0.21, 0.012 +19940309, 0.16, -0.04, -0.11, 0.012 +19940310, -0.62, 0.35, 0.05, 0.012 +19940311, 0.44, -0.41, 0.32, 0.012 +19940314, 0.29, 0.03, -0.01, 0.012 +19940315, 0.03, 0.26, 0.05, 0.012 +19940316, 0.56, 0.07, 0.08, 0.012 +19940317, 0.30, 0.00, -0.51, 0.012 +19940318, 0.05, 0.52, -0.20, 0.012 +19940321, -0.50, -0.23, 0.21, 0.012 +19940322, 0.04, 0.08, 0.45, 0.012 +19940323, 0.03, 0.22, 0.30, 0.012 +19940324, -0.98, -0.13, 0.02, 0.012 +19940325, -0.62, 0.61, -0.15, 0.012 +19940328, -0.47, -1.16, 0.48, 0.012 +19940329, -1.80, -0.26, 0.48, 0.012 +19940330, -1.53, -0.23, 0.03, 0.012 +19940331, -0.13, -0.69, -0.35, 0.012 +19940404, -1.58, -0.17, 0.32, 0.014 +19940405, 2.37, 0.44, -0.55, 0.014 +19940406, 0.03, 0.12, 0.25, 0.014 +19940407, 0.60, -0.01, 0.00, 0.014 +19940408, -0.81, 0.49, -0.09, 0.014 +19940411, 0.33, -0.49, 0.27, 0.014 +19940412, -0.54, -0.17, 0.61, 0.014 +19940413, -0.61, -0.68, 0.37, 0.014 +19940414, 0.04, -0.03, 0.54, 0.014 +19940415, 0.03, -0.09, 0.10, 0.014 +19940418, -0.82, 0.07, 0.40, 0.014 +19940419, -0.26, -0.85, -0.01, 0.014 +19940420, -0.42, -1.17, 0.59, 0.014 +19940421, 1.47, -0.50, -0.58, 0.014 +19940422, -0.05, 0.75, -0.44, 0.014 +19940425, 1.00, -0.10, 0.02, 0.014 +19940426, 0.05, 0.68, -0.11, 0.014 +19940428, -0.55, 0.89, -0.28, 0.014 +19940429, 0.47, -0.11, 0.23, 0.014 +19940502, 0.50, -0.03, -0.39, 0.015 +19940503, -0.01, 0.13, 0.07, 0.015 +19940504, -0.15, 0.31, -0.36, 0.015 +19940505, -0.10, 0.10, -0.15, 0.015 +19940506, -0.91, 0.15, 0.22, 0.015 +19940509, -1.24, 0.23, -0.02, 0.015 +19940510, 0.59, -0.58, -0.10, 0.015 +19940511, -1.06, 0.06, 0.03, 0.015 +19940512, 0.38, -0.13, -0.11, 0.015 +19940513, 0.04, -0.38, 0.33, 0.015 +19940516, -0.16, -0.44, 0.26, 0.015 +19940517, 0.81, -1.22, 0.60, 0.015 +19940518, 1.14, -0.20, -0.28, 0.015 +19940519, 0.61, 0.04, -0.24, 0.015 +19940520, -0.24, 0.10, 0.21, 0.015 +19940523, -0.33, 0.17, -0.08, 0.015 +19940524, 0.40, -0.28, -0.17, 0.015 +19940525, 0.27, -0.37, 0.31, 0.015 +19940526, 0.23, 0.13, 0.09, 0.015 +19940527, 0.08, 0.14, -0.03, 0.015 +19940531, -0.16, 0.08, -0.07, 0.015 +19940601, 0.27, -0.09, 0.23, 0.014 +19940602, 0.15, 0.73, -0.39, 0.014 +19940603, 0.47, -0.31, -0.47, 0.014 +19940606, 0.00, 0.20, 0.28, 0.014 +19940607, -0.25, -0.07, -0.08, 0.014 +19940608, -0.45, -0.23, 0.70, 0.014 +19940609, 0.02, -0.28, 0.09, 0.014 +19940610, 0.25, 0.18, 0.13, 0.014 +19940613, 0.06, -0.27, 0.50, 0.014 +19940614, 0.57, -0.43, 0.29, 0.014 +19940615, -0.31, 0.38, 0.15, 0.014 +19940616, 0.22, -0.06, -0.16, 0.014 +19940617, -0.70, 0.29, 0.15, 0.014 +19940620, -0.93, -0.40, 0.11, 0.014 +19940621, -0.95, -0.22, 0.14, 0.014 +19940622, 0.34, 0.09, 0.10, 0.014 +19940623, -0.89, -0.16, 0.47, 0.014 +19940624, -1.41, 0.11, 0.06, 0.014 +19940627, 0.89, -0.80, -0.26, 0.014 +19940628, -0.24, -0.10, -0.32, 0.014 +19940629, 0.36, 0.05, -0.19, 0.014 +19940630, -0.51, 0.86, 0.27, 0.014 +19940701, 0.42, -0.22, 0.16, 0.014 +19940705, -0.04, -0.14, -0.09, 0.014 +19940706, -0.03, -0.11, 0.31, 0.014 +19940707, 0.49, -0.26, 0.15, 0.014 +19940708, 0.17, -0.23, -0.27, 0.014 +19940711, -0.30, 0.25, -0.03, 0.014 +19940712, 0.08, 0.14, -0.04, 0.014 +19940713, 0.37, 0.12, -0.18, 0.014 +19940714, 0.98, -0.20, -0.12, 0.014 +19940715, 0.08, 0.04, 0.22, 0.014 +19940718, 0.19, -0.30, 0.03, 0.014 +19940719, -0.27, 0.28, 0.02, 0.014 +19940720, -0.54, -0.01, 0.21, 0.014 +19940721, 0.19, -0.24, 0.27, 0.014 +19940722, 0.05, -0.14, 0.10, 0.014 +19940725, 0.17, -0.25, -0.01, 0.014 +19940726, -0.17, 0.05, 0.19, 0.014 +19940727, -0.25, -0.12, 0.12, 0.014 +19940728, 0.24, -0.36, 0.03, 0.014 +19940729, 0.95, 0.01, -0.44, 0.014 +19940801, 0.53, -0.40, 0.20, 0.016 +19940802, 0.10, 0.11, 0.09, 0.016 +19940803, 0.01, 0.07, 0.32, 0.016 +19940804, -0.52, 0.35, 0.00, 0.016 +19940805, -0.32, 0.09, -0.08, 0.016 +19940808, 0.20, -0.12, 0.06, 0.016 +19940809, 0.09, 0.05, -0.04, 0.016 +19940810, 0.55, 0.08, -0.78, 0.016 +19940811, -0.26, 0.21, -0.25, 0.016 +19940812, 0.55, -0.18, -0.30, 0.016 +19940815, -0.02, 0.32, 0.06, 0.016 +19940816, 0.60, -0.57, -0.26, 0.016 +19940817, 0.17, 0.38, -0.50, 0.016 +19940818, -0.35, 0.51, -0.28, 0.016 +19940819, 0.12, 0.09, -0.07, 0.016 +19940822, -0.20, 0.28, -0.34, 0.016 +19940823, 0.54, 0.11, -0.36, 0.016 +19940824, 0.71, -0.42, 0.00, 0.016 +19940825, -0.07, 0.32, -0.06, 0.016 +19940826, 1.08, -0.60, -0.29, 0.016 +19940829, 0.17, 0.04, -0.03, 0.016 +19940830, 0.35, -0.04, 0.20, 0.016 +19940831, -0.10, 0.62, 0.04, 0.016 +19940901, -0.49, 0.06, 0.09, 0.017 +19940902, -0.32, 0.52, -0.02, 0.017 +19940906, 0.03, -0.24, 0.12, 0.017 +19940907, -0.02, 0.42, -0.22, 0.017 +19940908, 0.46, 0.06, -0.36, 0.017 +19940909, -0.93, 0.62, 0.08, 0.017 +19940912, -0.44, 0.14, 0.00, 0.017 +19940913, 0.30, 0.24, -0.36, 0.017 +19940914, 0.26, -0.07, 0.08, 0.017 +19940915, 1.14, -0.33, -0.49, 0.017 +19940916, -0.52, 0.62, 0.11, 0.017 +19940919, -0.13, -0.02, -0.18, 0.017 +19940920, -1.44, 0.54, 0.27, 0.017 +19940921, -0.55, -0.18, 0.03, 0.017 +19940922, -0.10, 0.12, -0.17, 0.017 +19940923, -0.33, 0.13, -0.14, 0.017 +19940926, 0.20, -0.43, -0.12, 0.017 +19940927, 0.16, -0.22, -0.16, 0.017 +19940928, 0.59, -0.04, -0.23, 0.017 +19940929, -0.37, 0.26, -0.09, 0.017 +19940930, 0.21, 0.63, -0.25, 0.017 +19941003, -0.27, -0.25, -0.14, 0.018 +19941004, -1.47, 0.22, 0.41, 0.018 +19941005, -0.38, -0.48, -0.06, 0.018 +19941006, -0.23, 0.44, -0.16, 0.018 +19941007, 0.60, -0.30, -0.10, 0.018 +19941010, 0.75, -0.18, -0.29, 0.018 +19941011, 1.28, -0.62, -0.68, 0.018 +19941012, -0.01, 0.18, 0.00, 0.018 +19941013, 0.35, -0.24, 0.03, 0.018 +19941014, 0.17, -0.44, 0.32, 0.018 +19941017, -0.07, 0.10, -0.10, 0.018 +19941018, -0.20, -0.20, 0.10, 0.018 +19941019, 0.49, -0.20, -0.09, 0.018 +19941020, -0.67, 0.38, -0.09, 0.018 +19941021, -0.41, 0.16, -0.14, 0.018 +19941024, -0.77, 0.42, -0.21, 0.018 +19941025, -0.03, -0.49, 0.33, 0.018 +19941026, 0.27, -0.22, -0.41, 0.018 +19941027, 0.63, -0.15, -0.34, 0.018 +19941028, 1.52, -0.76, -0.18, 0.018 +19941031, -0.18, 0.31, 0.06, 0.018 +19941101, -0.77, 0.31, -0.38, 0.018 +19941102, -0.24, 0.43, -0.12, 0.018 +19941103, 0.25, -0.17, 0.29, 0.018 +19941104, -0.93, 0.67, -0.12, 0.018 +19941107, -0.04, -0.45, -0.03, 0.018 +19941108, 0.50, -0.32, -0.22, 0.018 +19941109, -0.09, -0.10, -0.11, 0.018 +19941110, -0.26, -0.05, -0.01, 0.018 +19941111, -0.42, 0.09, -0.21, 0.018 +19941114, 0.67, -0.49, -0.39, 0.018 +19941115, -0.11, 0.21, 0.13, 0.018 +19941116, 0.02, -0.08, -0.25, 0.018 +19941117, -0.46, 0.17, -0.26, 0.018 +19941118, -0.44, 0.21, -0.41, 0.018 +19941121, -0.75, 0.10, 0.00, 0.018 +19941122, -1.84, 0.17, 0.29, 0.018 +19941123, -0.15, -0.98, 0.90, 0.018 +19941125, 0.62, -0.03, -0.09, 0.018 +19941128, 0.35, -0.20, -0.36, 0.018 +19941129, 0.25, 0.21, -0.15, 0.018 +19941130, -0.21, 0.53, 0.52, 0.018 +19941201, -1.04, 0.13, 0.06, 0.021 +19941202, 0.71, -0.56, 0.06, 0.021 +19941205, 0.08, -0.16, 0.15, 0.021 +19941206, -0.17, -0.33, 0.31, 0.021 +19941207, -0.54, -0.29, 0.22, 0.021 +19941208, -1.43, -0.21, 0.24, 0.021 +19941209, 0.16, -0.69, 0.12, 0.021 +19941212, 0.39, -0.44, -0.17, 0.021 +19941213, 0.22, -0.25, 0.12, 0.021 +19941214, 1.02, -0.27, -0.20, 0.021 +19941215, 0.33, 0.84, 0.01, 0.021 +19941216, 0.46, -0.60, -0.09, 0.021 +19941219, -0.22, -0.07, 0.38, 0.021 +19941220, -0.07, 0.23, 0.01, 0.021 +19941221, 0.62, 0.38, -0.30, 0.021 +19941222, -0.04, 0.25, -0.42, 0.021 +19941223, 0.22, 0.14, 0.01, 0.021 +19941227, 0.46, -0.03, -0.15, 0.021 +19941228, -0.41, 0.18, -0.13, 0.021 +19941229, 0.28, 0.21, -0.10, 0.021 +19941230, -0.14, 1.58, 0.38, 0.021 +19950103, -0.26, -0.89, 0.85, 0.020 +19950104, 0.33, -0.31, 0.65, 0.020 +19950105, -0.05, 0.06, 0.03, 0.020 +19950106, 0.18, -0.03, 0.31, 0.020 +19950109, 0.08, 0.05, 0.09, 0.020 +19950110, 0.20, 0.08, -0.26, 0.020 +19950111, -0.09, -0.14, -0.19, 0.020 +19950112, 0.01, 0.02, 0.11, 0.020 +19950113, 0.87, -0.37, 0.37, 0.020 +19950116, 0.79, -0.40, -0.09, 0.020 +19950117, 0.22, 0.42, -0.45, 0.020 +19950118, -0.15, 0.10, -0.08, 0.020 +19950119, -0.57, 0.12, -0.18, 0.020 +19950120, -0.51, 0.26, -0.20, 0.020 +19950123, 0.00, -0.67, 0.24, 0.020 +19950124, 0.16, 0.31, -0.20, 0.020 +19950125, 0.20, -0.32, 0.26, 0.020 +19950126, 0.04, -0.17, -0.16, 0.020 +19950127, 0.39, -0.31, -0.09, 0.020 +19950130, -0.45, -0.25, -0.14, 0.020 +19950131, 0.39, -0.24, 0.04, 0.020 +19950201, 0.15, -0.06, 0.18, 0.021 +19950202, 0.44, 0.00, -0.23, 0.021 +19950203, 1.22, -0.65, 0.31, 0.021 +19950206, 0.61, 0.06, -0.46, 0.021 +19950207, -0.07, 0.22, 0.25, 0.021 +19950208, 0.13, 0.17, -0.20, 0.021 +19950209, -0.09, 0.40, -0.12, 0.021 +19950210, 0.23, 0.16, -0.16, 0.021 +19950213, 0.02, 0.00, 0.10, 0.021 +19950214, 0.09, -0.24, 0.38, 0.021 +19950215, 0.48, 0.23, 0.09, 0.021 +19950216, -0.05, -0.50, -0.15, 0.021 +19950217, -0.58, 0.14, 0.24, 0.021 +19950221, -0.05, -0.26, 0.39, 0.021 +19950222, 0.40, -0.34, 0.03, 0.021 +19950223, 0.45, -0.18, 0.23, 0.021 +19950224, 0.16, 0.13, 0.20, 0.021 +19950227, -0.82, 0.03, 0.10, 0.021 +19950228, 0.82, 0.10, -0.21, 0.021 +19950301, -0.31, 0.27, -0.41, 0.020 +19950302, -0.14, 0.13, -0.33, 0.020 +19950303, 0.14, 0.15, -0.16, 0.020 +19950306, -0.13, -0.19, -0.31, 0.020 +19950307, -0.75, 0.15, -0.15, 0.020 +19950308, 0.21, 0.04, 0.02, 0.020 +19950309, 0.05, -0.12, 0.01, 0.020 +19950310, 1.12, -0.74, -0.30, 0.020 +19950313, 0.09, -0.01, -0.01, 0.020 +19950314, 0.56, -0.15, -0.40, 0.020 +19950315, -0.17, 0.15, 0.23, 0.020 +19950316, 0.56, -0.32, 0.01, 0.020 +19950317, -0.07, -0.13, -0.35, 0.020 +19950320, 0.10, 0.17, -0.26, 0.020 +19950321, -0.24, -0.01, -0.11, 0.020 +19950322, 0.04, -0.25, 0.05, 0.020 +19950323, 0.08, 0.07, 0.11, 0.020 +19950324, 0.93, -0.55, 0.02, 0.020 +19950327, 0.48, -0.17, 0.06, 0.020 +19950328, 0.15, 0.13, -0.25, 0.020 +19950329, -0.17, -0.08, 0.63, 0.020 +19950330, -0.08, 0.07, 0.79, 0.020 +19950331, -0.27, 0.65, 0.04, 0.020 +19950403, 0.14, -0.15, 0.09, 0.023 +19950404, 0.47, -0.52, 0.28, 0.023 +19950405, 0.09, -0.02, 0.29, 0.023 +19950406, 0.05, -0.09, 0.61, 0.023 +19950407, -0.04, -0.38, 0.15, 0.023 +19950410, 0.25, 0.33, -0.21, 0.023 +19950411, -0.17, 0.48, -0.02, 0.023 +19950412, 0.33, -0.32, 0.17, 0.023 +19950413, 0.34, 0.19, -0.15, 0.023 +19950417, -0.53, 0.40, 0.45, 0.023 +19950418, -0.34, -0.08, 0.10, 0.023 +19950419, -0.30, -0.61, 0.61, 0.023 +19950420, 0.16, 0.02, 0.28, 0.023 +19950421, 0.51, -0.13, 0.08, 0.023 +19950424, 0.72, -0.38, -0.02, 0.023 +19950425, -0.09, 0.24, 0.13, 0.023 +19950426, 0.14, 0.25, -0.36, 0.023 +19950427, 0.20, 0.15, -0.08, 0.023 +19950428, 0.16, 0.02, -0.21, 0.023 +19950501, -0.13, 0.08, 0.14, 0.024 +19950502, 0.08, -0.03, -0.12, 0.024 +19950503, 0.94, -0.72, -0.33, 0.024 +19950504, -0.10, -0.44, 0.27, 0.024 +19950505, -0.10, -0.11, 0.26, 0.024 +19950508, 0.64, -0.21, 0.22, 0.024 +19950509, 0.05, -0.28, 0.37, 0.024 +19950510, 0.15, 0.06, 0.33, 0.024 +19950511, 0.23, 0.29, -0.50, 0.024 +19950512, 0.23, 0.01, 0.24, 0.024 +19950515, 0.42, -0.24, 0.46, 0.024 +19950516, 0.12, 0.29, -0.07, 0.024 +19950517, -0.21, 0.50, -0.15, 0.024 +19950518, -1.30, 0.81, 0.16, 0.024 +19950519, -0.08, 0.01, -0.18, 0.024 +19950522, 0.76, -0.37, 0.16, 0.024 +19950523, 0.85, -0.47, 0.06, 0.024 +19950524, -0.05, -0.07, 0.01, 0.024 +19950525, -0.04, -0.12, -0.08, 0.024 +19950526, -0.82, 0.44, 0.23, 0.024 +19950530, -0.22, -0.41, 0.43, 0.024 +19950531, 1.46, -1.22, -0.29, 0.024 +19950601, 0.15, 0.22, 0.37, 0.021 +19950602, 0.00, 0.18, 0.22, 0.021 +19950605, 0.61, 0.03, -0.11, 0.021 +19950606, -0.03, 0.27, -0.16, 0.021 +19950607, -0.34, 0.57, -0.45, 0.021 +19950608, -0.08, 0.63, -0.40, 0.021 +19950609, -0.73, 0.61, -0.27, 0.021 +19950612, 0.50, -0.04, -0.32, 0.021 +19950613, 0.92, -0.52, 0.01, 0.021 +19950614, 0.07, 0.14, -0.25, 0.021 +19950615, 0.22, 0.39, -0.24, 0.021 +19950616, 0.43, -0.11, -0.45, 0.021 +19950619, 0.92, -0.54, -0.22, 0.021 +19950620, 0.04, -0.06, 0.47, 0.021 +19950621, -0.04, 0.22, 0.04, 0.021 +19950622, 1.15, -0.67, -0.46, 0.021 +19950623, -0.29, 0.24, -0.08, 0.021 +19950626, -1.00, 0.11, 0.52, 0.021 +19950627, -0.39, 0.12, 0.20, 0.021 +19950628, 0.32, -0.47, 0.14, 0.021 +19950629, -0.03, 0.54, -0.39, 0.021 +19950630, 0.28, 0.89, -0.33, 0.021 +19950703, 0.33, -0.36, -0.14, 0.023 +19950705, 0.19, 0.10, 0.27, 0.023 +19950706, 1.12, -0.70, 0.10, 0.023 +19950707, 0.59, 0.29, 0.13, 0.023 +19950710, 0.17, 0.31, 0.34, 0.023 +19950711, -0.34, 0.62, -0.27, 0.023 +19950712, 1.10, -0.17, -0.59, 0.023 +19950713, 0.07, 0.30, -0.20, 0.023 +19950714, -0.15, 0.38, -0.38, 0.023 +19950717, 0.40, 0.17, -0.66, 0.023 +19950718, -0.81, 0.03, 0.63, 0.023 +19950719, -1.65, -0.66, 0.85, 0.023 +19950720, 0.59, 0.28, -0.26, 0.023 +19950721, 0.06, 0.49, -0.57, 0.023 +19950724, 0.69, 0.22, -0.50, 0.023 +19950725, 0.76, -0.36, -0.03, 0.023 +19950726, 0.23, 0.23, -0.37, 0.023 +19950727, 0.71, 0.04, -0.26, 0.023 +19950728, -0.28, 0.49, 0.22, 0.023 +19950731, -0.10, 0.31, 0.06, 0.023 +19950801, -0.51, 0.16, 0.19, 0.020 +19950802, -0.21, -0.08, 0.84, 0.020 +19950803, -0.11, -0.15, 0.43, 0.020 +19950804, 0.15, 0.25, -0.15, 0.020 +19950807, 0.24, 0.05, 0.12, 0.020 +19950808, 0.05, -0.13, -0.06, 0.020 +19950809, 0.01, 0.47, -0.48, 0.020 +19950810, -0.27, 0.22, 0.09, 0.020 +19950811, -0.34, 0.36, -0.07, 0.020 +19950814, 0.74, -0.40, -0.50, 0.020 +19950815, -0.10, 0.27, 0.02, 0.020 +19950816, 0.45, 0.09, -0.03, 0.020 +19950817, 0.00, 0.46, 0.02, 0.020 +19950818, 0.07, 0.24, 0.00, 0.020 +19950821, -0.22, 0.55, 0.38, 0.020 +19950822, 0.18, -0.45, -0.15, 0.020 +19950823, -0.27, 0.40, -0.15, 0.020 +19950824, -0.07, -0.19, 0.30, 0.020 +19950825, 0.40, -0.32, 0.30, 0.020 +19950828, -0.30, -0.22, 1.13, 0.020 +19950829, 0.02, -0.80, 0.61, 0.020 +19950830, 0.33, 0.39, -0.07, 0.020 +19950831, 0.32, 0.36, -0.13, 0.020 +19950901, 0.27, -0.16, 0.45, 0.022 +19950905, 0.96, -0.47, -0.26, 0.022 +19950906, 0.36, 0.40, -0.40, 0.022 +19950907, 0.08, 0.47, -0.31, 0.022 +19950908, 0.51, 0.20, -0.07, 0.022 +19950911, 0.24, -0.08, -0.36, 0.022 +19950912, 0.25, -0.01, -0.22, 0.022 +19950913, 0.40, -0.16, -0.33, 0.022 +19950914, 0.59, -0.56, 0.23, 0.022 +19950915, -0.18, -0.50, 0.81, 0.022 +19950918, -0.14, -0.16, -0.55, 0.022 +19950919, 0.30, -0.19, -0.36, 0.022 +19950920, 0.44, -0.10, -0.15, 0.022 +19950921, -0.62, 0.41, -0.32, 0.022 +19950922, -0.32, -0.05, -0.34, 0.022 +19950925, -0.19, -0.37, 0.30, 0.022 +19950926, -0.12, -0.30, 0.16, 0.022 +19950927, -0.31, -1.03, 0.84, 0.022 +19950928, 0.89, -0.19, -0.11, 0.022 +19950929, -0.11, 0.83, 0.25, 0.022 +19951002, -0.63, -0.51, 0.57, 0.021 +19951003, -0.17, -0.89, 0.31, 0.021 +19951004, -0.46, -0.67, 0.58, 0.021 +19951005, 0.29, -0.29, -0.16, 0.021 +19951006, 0.00, 0.14, 0.14, 0.021 +19951009, -1.07, -0.69, 1.02, 0.021 +19951010, -0.25, -0.70, 0.39, 0.021 +19951011, 0.62, 0.41, -0.33, 0.021 +19951012, 0.80, -0.05, -0.25, 0.021 +19951013, 0.33, 0.31, -0.23, 0.021 +19951016, -0.20, 0.24, 0.08, 0.021 +19951017, 0.60, -0.43, -0.59, 0.021 +19951018, 0.22, 0.26, -0.48, 0.021 +19951019, 0.31, -0.44, -0.55, 0.021 +19951020, -0.57, 0.47, 0.13, 0.021 +19951023, -0.38, -0.26, -0.06, 0.021 +19951024, 0.11, -0.02, -0.54, 0.021 +19951025, -0.85, -0.14, -0.05, 0.021 +19951026, -0.95, -0.10, -0.10, 0.021 +19951027, 0.41, -0.72, 0.22, 0.021 +19951030, 0.64, -0.13, -0.59, 0.021 +19951031, -0.27, 0.41, -0.29, 0.021 +19951101, 0.51, -0.31, 0.19, 0.020 +19951102, 1.03, -0.17, -0.13, 0.020 +19951103, 0.31, 0.37, -0.22, 0.020 +19951106, -0.29, 0.30, 0.15, 0.020 +19951107, -0.50, 0.04, 0.43, 0.020 +19951108, 0.72, -0.47, -0.14, 0.020 +19951109, 0.45, 0.14, -0.49, 0.020 +19951110, -0.12, 0.33, -0.11, 0.020 +19951113, -0.15, -0.06, -0.02, 0.020 +19951114, -0.66, 0.00, 0.40, 0.020 +19951115, 0.55, -0.57, -0.27, 0.020 +19951116, 0.59, -0.27, 0.14, 0.020 +19951117, 0.38, -0.13, 0.20, 0.020 +19951120, -0.58, 0.14, 0.56, 0.020 +19951121, 0.21, -0.93, 0.54, 0.020 +19951122, -0.24, 0.03, 0.66, 0.020 +19951124, 0.33, -0.05, -0.19, 0.020 +19951127, 0.17, -0.05, 0.18, 0.020 +19951128, 0.79, -0.29, -0.78, 0.020 +19951129, 0.41, 0.13, -0.08, 0.020 +19951130, -0.03, 0.70, -0.15, 0.020 +19951201, 0.13, 0.15, 0.28, 0.024 +19951204, 1.04, -0.57, -0.09, 0.024 +19951205, 0.43, -0.28, -0.11, 0.024 +19951206, 0.18, -0.47, 0.31, 0.024 +19951207, -0.70, 0.42, -0.22, 0.024 +19951208, 0.20, 0.11, -0.27, 0.024 +19951211, 0.24, -0.20, -0.22, 0.024 +19951212, -0.26, 0.06, -0.06, 0.024 +19951213, 0.43, -0.08, -0.06, 0.024 +19951214, -0.83, 0.79, 0.44, 0.024 +19951215, -0.29, -0.41, 0.49, 0.024 +19951218, -1.76, -0.48, 1.01, 0.024 +19951219, 0.99, -0.43, -0.31, 0.024 +19951220, -0.57, 1.47, 0.26, 0.024 +19951221, 0.70, -0.02, -0.33, 0.024 +19951222, 0.32, 0.23, -0.12, 0.024 +19951226, 0.30, -0.14, -0.20, 0.024 +19951227, 0.14, 0.19, 0.00, 0.024 +19951228, -0.06, -0.04, 0.28, 0.024 +19951229, 0.41, 0.28, -0.26, 0.024 +19960102, 0.59, -0.35, -0.15, 0.019 +19960103, -0.08, -0.25, 0.66, 0.019 +19960104, -0.82, -0.33, 0.25, 0.019 +19960105, -0.15, 0.73, -0.17, 0.019 +19960108, 0.24, -0.23, -0.06, 0.019 +19960109, -1.67, 0.19, 1.17, 0.019 +19960110, -1.62, 0.27, 0.07, 0.019 +19960111, 0.87, 0.02, -0.63, 0.019 +19960112, -0.13, -0.13, 0.22, 0.019 +19960115, -0.58, -0.43, 0.71, 0.019 +19960116, 1.02, -1.42, 0.05, 0.019 +19960117, -0.09, 0.22, 0.27, 0.019 +19960118, 0.37, 0.24, -0.67, 0.019 +19960119, 0.57, -0.23, -0.49, 0.019 +19960122, 0.41, 0.08, -0.30, 0.019 +19960123, -0.02, 0.39, -0.18, 0.019 +19960124, 1.05, -0.39, -0.40, 0.019 +19960125, -0.40, 0.44, 0.31, 0.019 +19960126, 0.63, -0.38, -0.44, 0.019 +19960129, 0.37, -0.35, 0.28, 0.019 +19960130, 0.91, -0.41, -0.08, 0.019 +19960131, 0.83, -0.32, -0.17, 0.019 +19960201, 0.43, 0.19, -0.43, 0.020 +19960202, -0.28, 0.47, -0.42, 0.020 +19960205, 0.74, -0.51, -0.38, 0.020 +19960206, 0.68, -0.35, -0.06, 0.020 +19960207, 0.36, -0.68, 0.17, 0.020 +19960208, 0.80, -0.38, -0.43, 0.020 +19960209, 0.08, 0.16, 0.00, 0.020 +19960212, 0.54, -0.60, 0.19, 0.020 +19960213, -0.20, -0.37, 0.58, 0.020 +19960214, -0.46, 0.89, -0.02, 0.020 +19960215, -0.31, 0.47, -0.18, 0.020 +19960216, -0.39, 0.72, 0.04, 0.020 +19960220, -1.05, 0.31, -0.16, 0.020 +19960221, 1.05, -0.33, -0.57, 0.020 +19960222, 1.57, -0.53, -0.54, 0.020 +19960223, 0.08, 0.13, -0.05, 0.020 +19960226, -1.05, 0.95, 0.34, 0.020 +19960227, -0.44, 0.27, 0.28, 0.020 +19960228, -0.19, 0.37, 0.27, 0.020 +19960229, -0.60, 0.64, -0.03, 0.020 +19960301, 0.25, -0.61, 0.74, 0.019 +19960304, 0.92, -0.55, -0.04, 0.019 +19960305, 0.68, -0.39, -0.48, 0.019 +19960306, -0.38, 0.45, 0.29, 0.019 +19960307, 0.18, -0.09, -0.12, 0.019 +19960308, -2.91, 0.66, 0.08, 0.019 +19960311, 0.92, -0.09, -0.64, 0.019 +19960312, -0.49, 0.26, 0.09, 0.019 +19960313, 0.42, 0.30, -0.04, 0.019 +19960314, 0.41, 0.17, 0.02, 0.019 +19960315, 0.17, -0.02, -0.45, 0.019 +19960318, 1.47, -0.71, -0.03, 0.019 +19960319, -0.15, 0.19, 0.42, 0.019 +19960320, -0.28, 0.18, 0.35, 0.019 +19960321, -0.09, 0.32, 0.01, 0.019 +19960322, 0.20, 0.00, -0.08, 0.019 +19960325, -0.30, -0.41, 0.99, 0.019 +19960326, 0.28, -0.30, -0.01, 0.019 +19960327, -0.34, 0.65, -0.02, 0.019 +19960328, 0.04, 0.07, 0.08, 0.019 +19960329, -0.21, 1.16, -0.13, 0.019 +19960401, 1.04, -0.80, -0.04, 0.022 +19960402, 0.21, 0.20, -0.14, 0.022 +19960403, 0.13, 0.29, -0.16, 0.022 +19960404, 0.04, 0.23, 0.01, 0.022 +19960408, -1.67, 0.70, -0.31, 0.022 +19960409, -0.13, 0.57, 0.19, 0.022 +19960410, -1.19, 0.98, -0.32, 0.022 +19960411, -0.54, 0.33, -0.22, 0.022 +19960412, 0.83, -0.52, 0.13, 0.022 +19960415, 0.81, -0.05, -0.30, 0.022 +19960416, 0.49, 0.18, -0.69, 0.022 +19960417, -0.49, 0.33, 0.37, 0.022 +19960418, 0.47, 0.45, -0.46, 0.022 +19960419, 0.22, 0.25, -0.32, 0.022 +19960422, 0.57, 0.21, -0.59, 0.022 +19960423, 0.60, 0.14, -0.14, 0.022 +19960424, -0.01, 0.39, -0.42, 0.022 +19960425, 0.45, 0.18, -0.33, 0.022 +19960426, 0.15, 0.37, 0.00, 0.022 +19960429, 0.09, 0.17, -0.15, 0.022 +19960430, 0.03, 0.13, 0.13, 0.022 +19960501, 0.22, 0.48, -0.04, 0.019 +19960502, -1.61, 0.66, 0.17, 0.019 +19960503, -0.11, 0.58, -0.16, 0.019 +19960506, -0.16, 0.37, -0.20, 0.019 +19960507, -0.41, -0.01, 0.16, 0.019 +19960508, 0.61, -1.08, 0.25, 0.019 +19960509, 0.25, 0.58, -0.17, 0.019 +19960510, 1.09, -0.14, -0.26, 0.019 +19960513, 1.31, -0.43, -0.68, 0.019 +19960514, 0.72, 0.13, -0.06, 0.019 +19960515, -0.02, 0.26, -0.08, 0.019 +19960516, 0.05, 0.26, -0.39, 0.019 +19960517, 0.55, 0.00, 0.28, 0.019 +19960520, 0.59, 0.20, -0.22, 0.019 +19960521, -0.07, 0.14, 0.21, 0.019 +19960522, 0.62, -0.22, 0.49, 0.019 +19960523, -0.26, 0.32, -0.10, 0.019 +19960524, 0.24, -0.02, -0.49, 0.019 +19960528, -0.89, 0.06, 0.19, 0.019 +19960529, -0.68, 0.04, 0.52, 0.019 +19960530, 0.51, -0.05, -0.28, 0.019 +19960531, -0.18, 0.82, -0.38, 0.019 +19960603, -0.25, 0.04, 0.09, 0.020 +19960604, 0.68, -0.59, 0.06, 0.020 +19960605, 0.72, -0.55, -0.11, 0.020 +19960606, -0.77, 0.16, 0.39, 0.020 +19960607, -0.21, -0.41, -0.58, 0.020 +19960610, -0.12, 0.38, 0.11, 0.020 +19960611, -0.12, 0.07, 0.06, 0.020 +19960612, -0.08, 0.27, 0.10, 0.020 +19960613, -0.29, -0.46, 0.24, 0.020 +19960614, -0.45, -0.10, 0.44, 0.020 +19960617, -0.21, -0.26, 0.28, 0.020 +19960618, -0.78, -0.95, 0.80, 0.020 +19960619, -0.12, -0.37, 0.02, 0.020 +19960620, -0.32, -0.69, -0.04, 0.020 +19960621, 0.58, -0.22, -0.48, 0.020 +19960624, 0.33, 0.19, -0.17, 0.020 +19960625, -0.25, -0.45, 0.15, 0.020 +19960626, -0.82, -0.71, 0.61, 0.020 +19960627, 0.60, -0.11, -0.16, 0.020 +19960628, 0.73, 1.14, -0.25, 0.020 +19960701, 0.75, -0.44, -0.01, 0.020 +19960702, -0.29, 0.15, 0.25, 0.020 +19960703, -0.35, -0.08, 0.20, 0.020 +19960705, -2.05, 0.83, 0.37, 0.020 +19960708, -0.86, -0.09, 0.32, 0.020 +19960709, 0.32, -0.45, 0.12, 0.020 +19960710, -0.21, -1.15, 0.85, 0.020 +19960711, -1.87, -1.00, 1.49, 0.020 +19960712, 0.00, -0.31, 0.25, 0.020 +19960715, -2.69, -0.40, 1.94, 0.020 +19960716, -0.53, -1.17, 0.13, 0.020 +19960717, 1.42, 1.51, -1.47, 0.020 +19960718, 1.60, 0.07, -1.19, 0.020 +19960719, -0.79, 0.47, 0.27, 0.020 +19960722, -0.95, -0.47, 0.82, 0.020 +19960723, -1.46, -0.79, 1.52, 0.020 +19960724, -0.26, -1.35, -0.04, 0.020 +19960725, 0.92, 0.53, -0.75, 0.020 +19960726, 0.90, 0.17, -0.73, 0.020 +19960729, -0.79, 0.27, 0.67, 0.020 +19960730, 0.48, -0.50, 0.09, 0.020 +19960731, 0.73, 0.11, -0.42, 0.020 +19960801, 1.57, -0.67, -0.38, 0.019 +19960802, 1.85, -0.48, -0.87, 0.019 +19960805, -0.29, 0.30, 0.23, 0.019 +19960806, 0.31, -0.10, -0.41, 0.019 +19960807, 0.39, 0.42, -0.47, 0.019 +19960808, -0.17, 0.07, 0.25, 0.019 +19960809, -0.28, 0.07, 0.39, 0.019 +19960812, 0.54, -0.60, -0.06, 0.019 +19960813, -0.79, 0.31, 0.25, 0.019 +19960814, 0.39, -0.05, 0.02, 0.019 +19960815, 0.08, 0.12, 0.21, 0.019 +19960816, 0.41, -0.11, 0.35, 0.019 +19960819, 0.07, -0.18, 0.25, 0.019 +19960820, -0.16, 0.02, 0.50, 0.019 +19960821, -0.09, -0.01, 0.08, 0.019 +19960822, 0.86, -0.03, -0.52, 0.019 +19960823, -0.36, 0.61, -0.11, 0.019 +19960826, -0.37, 0.31, 0.06, 0.019 +19960827, 0.41, 0.26, -0.48, 0.019 +19960828, 0.00, 0.61, -0.20, 0.019 +19960829, -0.95, 0.68, 0.26, 0.019 +19960830, -0.63, 0.62, 0.21, 0.019 +19960903, 0.15, -0.35, -0.02, 0.022 +19960904, 0.15, 0.27, 0.19, 0.022 +19960905, -0.98, 0.23, 0.53, 0.022 +19960906, 0.99, -0.15, -0.54, 0.022 +19960909, 0.98, -0.59, -0.19, 0.022 +19960910, 0.04, 0.11, -0.17, 0.022 +19960911, 0.42, -0.30, 0.02, 0.022 +19960912, 0.62, -0.08, -0.36, 0.022 +19960913, 1.29, -0.60, -0.69, 0.022 +19960916, 0.48, -0.30, -0.04, 0.022 +19960917, -0.12, 0.16, -0.31, 0.022 +19960918, -0.18, 0.18, -0.12, 0.022 +19960919, 0.18, -0.16, -0.54, 0.022 +19960920, 0.50, -0.09, -0.08, 0.022 +19960923, -0.20, -0.17, 0.15, 0.022 +19960924, -0.03, 0.27, -0.23, 0.022 +19960925, 0.15, 0.36, -0.31, 0.022 +19960926, 0.20, 0.26, -0.54, 0.022 +19960927, 0.06, 0.07, 0.02, 0.022 +19960930, 0.19, 0.00, 0.21, 0.022 +19961001, 0.02, -0.65, 0.75, 0.018 +19961002, 0.73, -0.01, -0.09, 0.018 +19961003, -0.17, 0.02, 0.08, 0.018 +19961004, 1.10, -0.76, -0.19, 0.018 +19961007, 0.18, -0.35, 0.16, 0.018 +19961008, -0.44, 0.02, 0.36, 0.018 +19961009, -0.51, 0.32, 0.16, 0.018 +19961010, -0.23, 0.37, 0.07, 0.018 +19961011, 0.70, -0.38, -0.15, 0.018 +19961014, 0.44, -0.24, -0.13, 0.018 +19961015, -0.17, 0.08, 0.15, 0.018 +19961016, 0.09, -0.29, 0.13, 0.018 +19961017, 0.24, -0.43, 0.42, 0.018 +19961018, 0.35, -0.42, 0.20, 0.018 +19961021, -0.28, -0.45, 0.78, 0.018 +19961022, -0.67, -0.46, 0.64, 0.018 +19961023, -0.01, -0.11, 0.09, 0.018 +19961024, -0.48, 0.60, 0.18, 0.018 +19961025, -0.21, 0.13, 0.45, 0.018 +19961028, -0.62, -0.41, 0.60, 0.018 +19961029, 0.25, -1.06, 0.73, 0.018 +19961030, -0.03, -0.04, 0.12, 0.018 +19961031, 0.63, 0.09, -0.43, 0.018 +19961101, -0.18, -0.25, 0.06, 0.020 +19961104, 0.27, -0.44, 0.46, 0.020 +19961105, 0.86, -0.92, -0.11, 0.020 +19961106, 1.39, -0.56, -0.64, 0.020 +19961107, 0.41, 0.21, -0.48, 0.020 +19961108, 0.34, -0.29, -0.10, 0.020 +19961111, 0.17, 0.14, -0.04, 0.020 +19961112, -0.23, 0.14, 0.47, 0.020 +19961113, 0.18, -0.06, -0.22, 0.020 +19961114, 0.60, -0.32, -0.02, 0.020 +19961115, 0.06, -0.38, 0.30, 0.020 +19961118, -0.17, -0.26, 0.82, 0.020 +19961119, 0.54, -0.53, 0.37, 0.020 +19961120, 0.20, -0.18, 0.26, 0.020 +19961121, -0.20, 0.07, 0.20, 0.020 +19961122, 0.74, -0.09, -0.20, 0.020 +19961125, 0.99, -0.57, 0.10, 0.020 +19961126, -0.19, -0.05, 0.06, 0.020 +19961127, 0.02, 0.40, -0.07, 0.020 +19961129, 0.27, 0.23, -0.11, 0.020 +19961202, 0.06, 0.17, -0.09, 0.022 +19961203, -0.74, 1.43, 0.10, 0.022 +19961204, -0.33, 0.39, -0.04, 0.022 +19961205, -0.07, 0.44, -0.13, 0.022 +19961206, -0.74, -0.32, 0.15, 0.022 +19961209, 1.38, 0.04, -0.55, 0.022 +19961210, -0.29, 0.51, 0.54, 0.022 +19961211, -0.91, 0.03, -0.05, 0.022 +19961212, -1.29, 1.19, -0.08, 0.022 +19961213, -0.30, -0.45, 0.44, 0.022 +19961216, -1.12, 0.18, 0.66, 0.022 +19961217, 0.47, -0.86, 0.28, 0.022 +19961218, 0.83, 0.14, -0.58, 0.022 +19961219, 1.56, -1.05, -0.28, 0.022 +19961220, 0.29, -0.25, 0.53, 0.022 +19961223, -0.36, -0.15, 0.26, 0.022 +19961224, 0.48, -0.37, -0.18, 0.022 +19961226, 0.57, -0.25, -0.07, 0.022 +19961227, 0.17, 0.16, -0.12, 0.022 +19961230, -0.26, 0.12, 0.33, 0.022 +19961231, -1.02, 2.04, -0.23, 0.022 +19970102, -0.75, 0.05, 0.13, 0.020 +19970103, 1.39, -0.32, -0.78, 0.020 +19970106, 0.02, 0.11, 0.05, 0.020 +19970107, 0.72, -0.02, -0.52, 0.020 +19970108, -0.44, 0.50, 0.52, 0.020 +19970109, 0.72, -0.38, -0.15, 0.020 +19970110, 0.50, -0.16, -0.36, 0.020 +19970113, -0.07, 0.09, 0.27, 0.020 +19970114, 1.11, -0.85, 0.04, 0.020 +19970115, -0.22, 0.04, 0.47, 0.020 +19970116, 0.25, -0.21, -0.33, 0.020 +19970117, 0.72, -0.28, -0.26, 0.020 +19970120, 0.26, 0.21, -0.41, 0.020 +19970121, 0.59, -0.53, -0.21, 0.020 +19970122, 0.44, -0.41, -0.07, 0.020 +19970123, -0.85, 0.91, 0.37, 0.020 +19970124, -0.97, 0.35, 0.30, 0.020 +19970127, -0.72, 0.08, 0.34, 0.020 +19970128, 0.01, 0.41, -0.22, 0.020 +19970129, 0.68, -0.73, -0.03, 0.020 +19970130, 1.21, -0.67, -0.42, 0.020 +19970131, 0.31, 0.01, -0.34, 0.020 +19970203, -0.02, 0.04, 0.37, 0.020 +19970204, 0.12, -0.54, 0.28, 0.020 +19970205, -1.28, 0.47, 0.77, 0.020 +19970206, 0.24, -0.23, -0.09, 0.020 +19970207, 0.96, -0.79, -0.04, 0.020 +19970210, -0.65, -0.08, 0.80, 0.020 +19970211, 0.32, -0.90, 0.45, 0.020 +19970212, 1.52, -0.79, -0.67, 0.020 +19970213, 1.02, -0.55, 0.16, 0.020 +19970214, -0.22, 0.29, 0.33, 0.020 +19970218, 0.71, -0.52, 0.27, 0.020 +19970219, -0.32, 0.41, 0.31, 0.020 +19970220, -1.17, 0.41, 0.42, 0.020 +19970221, -0.26, -0.05, 0.64, 0.020 +19970224, 0.85, -0.78, 0.03, 0.020 +19970225, 0.25, -0.18, 0.17, 0.020 +19970226, -0.75, 0.17, 0.11, 0.020 +19970227, -1.27, 0.61, 0.76, 0.020 +19970228, -0.49, 0.04, 0.15, 0.020 +19970303, 0.39, -0.47, 0.13, 0.021 +19970304, -0.29, 0.66, 0.23, 0.021 +19970305, 1.17, -0.51, -0.50, 0.021 +19970306, -0.31, 0.09, 0.47, 0.021 +19970307, 0.67, -0.59, 0.23, 0.021 +19970310, 0.85, -0.45, 0.03, 0.021 +19970311, -0.24, 0.39, 0.27, 0.021 +19970312, -0.79, -0.07, 0.77, 0.021 +19970313, -1.66, 0.66, 0.01, 0.021 +19970314, 0.31, -0.42, -0.11, 0.021 +19970317, -0.11, -0.84, 0.61, 0.021 +19970318, -0.77, 0.31, 0.16, 0.021 +19970319, -0.65, -0.71, 0.80, 0.021 +19970320, -0.20, 0.48, -0.19, 0.021 +19970321, 0.09, -0.37, 0.22, 0.021 +19970324, 0.47, -1.45, 0.69, 0.021 +19970325, -0.08, 0.41, -0.32, 0.021 +19970326, 0.23, 0.54, -0.83, 0.021 +19970327, -1.90, 1.18, 0.26, 0.021 +19970331, -2.26, 0.67, 1.05, 0.021 +19970401, 0.17, -0.89, 0.34, 0.020 +19970402, -1.17, 0.44, 0.12, 0.020 +19970403, -0.02, -0.34, -0.36, 0.020 +19970404, 1.15, 0.27, -1.43, 0.020 +19970407, 0.77, 0.27, -0.21, 0.020 +19970408, 0.43, -0.38, 0.18, 0.020 +19970409, -0.58, 0.90, 0.33, 0.020 +19970410, -0.42, 0.00, 0.36, 0.020 +19970411, -2.48, 0.95, 0.45, 0.020 +19970414, 0.55, -0.67, -0.31, 0.020 +19970415, 1.19, -1.04, 0.24, 0.020 +19970416, 0.81, -1.02, 0.23, 0.020 +19970417, -0.11, 0.13, 0.31, 0.020 +19970418, 0.42, -0.09, -0.09, 0.020 +19970421, -0.99, -0.10, 0.44, 0.020 +19970422, 1.40, -1.60, -0.05, 0.020 +19970423, -0.03, -0.05, -0.19, 0.020 +19970424, -0.22, 0.43, -0.08, 0.020 +19970425, -0.95, 0.16, 0.39, 0.020 +19970428, 0.81, -1.12, 0.19, 0.020 +19970429, 2.41, -1.50, -0.39, 0.020 +19970430, 0.93, -0.43, -0.45, 0.020 +19970501, -0.10, 1.02, -0.26, 0.023 +19970502, 1.93, 0.53, -0.85, 0.023 +19970505, 2.16, 0.14, -1.61, 0.023 +19970506, -0.31, 0.02, 0.63, 0.023 +19970507, -1.18, 1.21, -0.03, 0.023 +19970508, 0.41, -0.55, -0.07, 0.023 +19970509, 0.51, -0.06, 0.12, 0.023 +19970512, 1.29, -0.74, -0.19, 0.023 +19970513, -0.45, 0.45, 0.00, 0.023 +19970514, 0.35, -0.24, 0.43, 0.023 +19970515, 0.58, -0.08, -0.85, 0.023 +19970516, -1.13, 1.05, 0.46, 0.023 +19970519, 0.27, 0.00, -0.18, 0.023 +19970520, 0.91, -0.59, -0.19, 0.023 +19970521, -0.13, 0.83, -0.69, 0.023 +19970522, -0.27, 0.56, 0.45, 0.023 +19970523, 1.26, -0.09, -0.49, 0.023 +19970527, 0.30, 0.29, -0.89, 0.023 +19970528, -0.11, 0.52, -0.02, 0.023 +19970529, -0.28, 0.50, 0.14, 0.023 +19970530, 0.55, -0.30, 0.52, 0.023 +19970602, -0.05, 0.92, -0.24, 0.018 +19970603, -0.16, -0.09, 0.91, 0.018 +19970604, -0.44, 0.47, 0.40, 0.018 +19970605, 0.42, 0.02, 0.05, 0.018 +19970606, 1.41, -0.79, -0.39, 0.018 +19970609, 0.48, -0.26, 0.07, 0.018 +19970610, 0.14, -0.54, 0.61, 0.018 +19970611, 0.41, -0.34, 0.25, 0.018 +19970612, 1.29, -0.99, 0.10, 0.018 +19970613, 0.98, -0.38, -0.39, 0.018 +19970616, 0.04, -0.08, -0.12, 0.018 +19970617, 0.12, 0.21, -0.19, 0.018 +19970618, -0.38, 0.21, 0.65, 0.018 +19970619, 0.95, -0.01, -0.41, 0.018 +19970620, -0.04, -0.31, -0.07, 0.018 +19970623, -1.84, 1.36, 0.32, 0.018 +19970624, 1.61, -0.91, -0.22, 0.018 +19970625, -0.71, 0.51, 0.35, 0.018 +19970626, -0.50, 0.37, 0.12, 0.018 +19970627, 0.42, 0.22, 0.04, 0.018 +19970630, -0.10, 1.61, -0.71, 0.018 +19970701, 0.55, -0.95, 0.50, 0.019 +19970702, 1.17, -1.19, -0.15, 0.019 +19970703, 1.20, -0.77, -0.25, 0.019 +19970707, -0.35, 0.38, 0.04, 0.019 +19970708, 0.69, -0.38, -0.23, 0.019 +19970709, -0.95, 0.86, 0.15, 0.019 +19970710, 0.57, -0.16, 0.22, 0.019 +19970711, 0.44, 0.44, -0.41, 0.019 +19970714, 0.24, 0.27, -0.41, 0.019 +19970715, 0.75, 0.16, -0.66, 0.019 +19970716, 1.14, -0.20, -0.56, 0.019 +19970717, -0.55, 0.14, 0.33, 0.019 +19970718, -1.41, 0.93, 0.52, 0.019 +19970721, -0.41, -0.11, 0.10, 0.019 +19970722, 1.98, -1.35, -0.48, 0.019 +19970723, 0.29, -0.10, 0.42, 0.019 +19970724, 0.31, -0.16, -0.01, 0.019 +19970725, -0.11, 0.25, 0.08, 0.019 +19970728, -0.23, 0.06, 0.68, 0.019 +19970729, 0.53, -0.51, 0.50, 0.019 +19970730, 1.09, -0.38, 0.10, 0.019 +19970731, 0.18, 0.07, 0.25, 0.019 +19970801, -0.57, 0.53, 0.26, 0.020 +19970804, 0.30, 0.09, -0.13, 0.020 +19970805, 0.34, 0.63, -0.54, 0.020 +19970806, 0.74, -0.21, 0.06, 0.020 +19970807, -0.77, 0.79, 0.37, 0.020 +19970808, -1.81, 0.68, 0.11, 0.020 +19970811, 0.16, -0.60, 0.47, 0.020 +19970812, -0.93, 0.64, 0.59, 0.020 +19970813, -0.26, 0.30, 0.04, 0.020 +19970814, 0.26, -0.04, -0.21, 0.020 +19970815, -2.06, 1.32, 0.54, 0.020 +19970818, 0.81, -0.86, -0.33, 0.020 +19970819, 1.38, -0.23, -0.42, 0.020 +19970820, 1.36, -0.14, -0.53, 0.020 +19970821, -1.23, 0.88, 0.34, 0.020 +19970822, -0.28, -0.14, 0.16, 0.020 +19970825, -0.12, 0.69, 0.27, 0.020 +19970826, -0.60, 0.72, 0.31, 0.020 +19970827, 0.18, 0.63, -0.17, 0.020 +19970828, -0.81, 0.98, 0.38, 0.020 +19970829, -0.21, 0.59, -0.17, 0.020 +19970902, 2.44, -1.29, -0.59, 0.021 +19970903, 0.18, -0.16, 0.47, 0.021 +19970904, 0.28, 0.04, -0.03, 0.021 +19970905, 0.02, 0.73, 0.05, 0.021 +19970908, 0.32, 0.27, 0.16, 0.021 +19970909, 0.27, 0.18, 0.23, 0.021 +19970910, -1.22, 1.17, 0.65, 0.021 +19970911, -0.63, 0.68, -0.10, 0.021 +19970912, 1.19, -0.31, -0.27, 0.021 +19970915, -0.31, 0.34, 0.38, 0.021 +19970916, 2.25, -1.48, -0.33, 0.021 +19970917, -0.08, 0.24, 0.31, 0.021 +19970918, 0.35, -0.29, 0.04, 0.021 +19970919, 0.30, 0.07, -0.61, 0.021 +19970922, 0.49, 0.06, -0.54, 0.021 +19970923, -0.28, 0.67, -0.23, 0.021 +19970924, -0.62, 0.62, 0.35, 0.021 +19970925, -0.61, 0.60, 0.10, 0.021 +19970926, 0.64, -0.39, -0.09, 0.021 +19970929, 0.73, -0.27, -0.27, 0.021 +19970930, -0.43, 0.88, 0.32, 0.021 +19971001, 0.62, -0.54, 0.19, 0.018 +19971002, 0.55, -0.05, 0.11, 0.018 +19971003, 0.48, 0.04, -0.22, 0.018 +19971006, 0.68, -0.22, -0.12, 0.018 +19971007, 0.89, -0.27, -0.71, 0.018 +19971008, -0.61, 0.76, -0.27, 0.018 +19971009, -0.20, 0.40, 0.33, 0.018 +19971010, -0.28, 0.55, 0.19, 0.018 +19971013, 0.10, 0.00, 0.35, 0.018 +19971014, 0.03, -0.32, 0.16, 0.018 +19971015, -0.33, 0.06, 0.09, 0.018 +19971016, -1.05, -0.19, 0.57, 0.018 +19971017, -1.31, -0.55, 0.38, 0.018 +19971020, 1.10, -0.16, -0.46, 0.018 +19971021, 1.65, -0.69, -0.31, 0.018 +19971022, -0.30, 0.32, 0.11, 0.018 +19971023, -1.85, -0.11, 0.46, 0.018 +19971024, -0.81, 0.42, 0.66, 0.018 +19971027, -6.58, 0.25, 1.85, 0.018 +19971028, 4.10, -1.80, -2.20, 0.018 +19971029, 0.07, 0.89, 0.81, 0.018 +19971030, -1.61, 0.29, 0.33, 0.018 +19971031, 1.17, 0.12, -0.53, 0.018 +19971103, 2.31, -0.88, -0.27, 0.021 +19971104, 0.23, -0.03, -0.10, 0.021 +19971105, 0.34, 0.28, -0.33, 0.021 +19971106, -0.51, 0.06, 0.39, 0.021 +19971107, -1.28, -0.36, 0.12, 0.021 +19971110, -0.53, 0.50, 0.68, 0.021 +19971111, 0.05, -0.39, 0.04, 0.021 +19971112, -1.96, -0.24, 0.81, 0.021 +19971113, 0.84, -0.86, -0.58, 0.021 +19971114, 1.21, -0.18, -0.91, 0.021 +19971117, 1.84, -0.48, -0.33, 0.021 +19971118, -0.80, 0.00, 0.61, 0.021 +19971119, 0.45, -0.54, -0.25, 0.021 +19971120, 1.37, -0.62, -0.28, 0.021 +19971121, 0.25, -0.46, 0.12, 0.021 +19971124, -1.68, -0.03, 0.84, 0.021 +19971125, 0.35, -0.69, 0.19, 0.021 +19971126, 0.18, 0.06, 0.17, 0.021 +19971128, 0.36, -0.09, -0.07, 0.021 +19971201, 1.79, -1.17, -0.01, 0.022 +19971202, -0.33, -0.29, 0.78, 0.022 +19971203, 0.53, -0.18, -0.48, 0.022 +19971204, -0.20, 0.31, 0.12, 0.022 +19971205, 0.97, -0.40, -0.21, 0.022 +19971208, 0.04, 0.76, -0.12, 0.022 +19971209, -0.74, -0.24, 0.72, 0.022 +19971210, -0.79, -0.62, 0.84, 0.022 +19971211, -1.58, -0.35, 0.82, 0.022 +19971212, -0.30, -0.31, 0.62, 0.022 +19971215, 0.67, -1.49, 0.63, 0.022 +19971216, 0.60, 0.34, -0.55, 0.022 +19971217, -0.15, 0.20, 0.45, 0.022 +19971218, -1.08, -0.19, 0.28, 0.022 +19971219, -0.68, 0.55, -0.42, 0.022 +19971222, 0.57, -0.29, 0.13, 0.022 +19971223, -1.22, 1.06, 0.75, 0.022 +19971224, -0.58, 0.44, 0.22, 0.022 +19971226, 0.33, -0.30, -0.02, 0.022 +19971229, 1.60, -0.76, -0.50, 0.022 +19971230, 1.76, -0.22, -0.49, 0.022 +19971231, 0.21, 0.87, -0.23, 0.022 +19980102, 0.22, -0.05, -0.46, 0.021 +19980105, 0.22, 0.08, -0.31, 0.021 +19980106, -1.04, 0.24, 0.23, 0.021 +19980107, -0.38, -0.39, -0.10, 0.021 +19980108, -0.82, 0.33, -0.25, 0.021 +19980109, -2.98, 0.16, 0.71, 0.021 +19980112, 0.74, -1.63, 0.10, 0.021 +19980113, 1.50, 0.11, -0.64, 0.021 +19980114, 0.61, -0.01, 0.23, 0.021 +19980115, -0.60, 0.59, 0.25, 0.021 +19980116, 1.08, 0.00, -0.26, 0.021 +19980120, 1.63, -0.37, -0.91, 0.021 +19980121, -0.66, 0.27, 0.17, 0.021 +19980122, -0.80, 0.03, 0.53, 0.021 +19980123, -0.56, 0.34, -0.31, 0.021 +19980126, -0.25, -0.70, 0.59, 0.021 +19980127, 0.97, -0.61, -0.27, 0.021 +19980128, 1.01, 0.29, -0.52, 0.021 +19980129, 0.78, -0.18, -0.38, 0.021 +19980130, -0.40, 0.30, 0.16, 0.021 +19980202, 1.93, -1.21, -0.67, 0.021 +19980203, 0.53, 0.19, 0.03, 0.021 +19980204, 0.22, 0.70, -0.36, 0.021 +19980205, -0.15, 0.68, 0.12, 0.021 +19980206, 0.75, -0.50, 0.07, 0.021 +19980209, -0.09, 0.37, 0.31, 0.021 +19980210, 0.81, 0.04, -0.18, 0.021 +19980211, 0.16, -0.01, 0.34, 0.021 +19980212, 0.36, -0.29, 0.01, 0.021 +19980213, -0.25, 0.67, 0.02, 0.021 +19980217, 0.15, -0.45, 0.50, 0.021 +19980218, 0.80, -0.49, -0.38, 0.021 +19980219, -0.23, 0.34, -0.11, 0.021 +19980220, 0.38, -0.35, 0.06, 0.021 +19980223, 0.44, 0.11, -0.44, 0.021 +19980224, -0.74, 0.33, 0.65, 0.021 +19980225, 1.14, -0.32, -0.24, 0.021 +19980226, 0.56, 0.05, -0.10, 0.021 +19980227, 0.05, 0.06, 0.23, 0.021 +19980302, -0.16, 0.06, 0.60, 0.018 +19980303, 0.34, -0.31, 0.48, 0.018 +19980304, -0.42, 0.32, 0.39, 0.018 +19980305, -1.03, -0.14, 0.56, 0.018 +19980306, 1.85, -0.36, -0.67, 0.018 +19980309, -0.32, -0.19, 0.40, 0.018 +19980310, 1.07, -0.45, -0.27, 0.018 +19980311, 0.50, 0.05, -0.11, 0.018 +19980312, 0.13, 0.14, -0.33, 0.018 +19980313, -0.08, 0.22, 0.26, 0.018 +19980316, 0.88, -0.41, 0.15, 0.018 +19980317, 0.10, -0.43, 0.72, 0.018 +19980318, 0.48, -0.20, -0.09, 0.018 +19980319, 0.40, 0.02, -0.13, 0.018 +19980320, 0.57, -0.69, 0.14, 0.018 +19980323, -0.33, 0.33, -0.13, 0.018 +19980324, 0.85, -0.25, -0.15, 0.018 +19980325, -0.25, 0.39, -0.18, 0.018 +19980326, -0.06, 0.31, -0.25, 0.018 +19980327, -0.40, 0.44, -0.02, 0.018 +19980330, -0.22, 0.21, -0.24, 0.018 +19980331, 0.77, 0.06, -0.22, 0.018 +19980401, 0.60, 0.37, -0.58, 0.020 +19980402, 0.83, -0.66, 0.06, 0.020 +19980403, 0.19, -0.17, 0.05, 0.020 +19980406, -0.31, -0.64, 0.92, 0.020 +19980407, -1.05, -0.54, 0.60, 0.020 +19980408, -0.49, 0.71, 0.11, 0.020 +19980409, 0.81, 0.13, 0.07, 0.020 +19980413, -0.03, -0.23, 0.72, 0.020 +19980414, 0.67, 0.17, 0.27, 0.020 +19980415, 0.37, 0.09, 0.11, 0.020 +19980416, -0.88, 0.43, -0.03, 0.020 +19980417, 1.12, -0.44, -0.57, 0.020 +19980420, 0.17, 0.61, -0.73, 0.020 +19980421, 0.24, 0.50, -0.16, 0.020 +19980422, 0.29, -0.26, 0.02, 0.020 +19980423, -1.13, -0.04, 0.43, 0.020 +19980424, -0.98, 0.21, -0.01, 0.020 +19980427, -2.14, -0.38, 0.45, 0.020 +19980428, 0.15, 0.67, -0.37, 0.020 +19980429, 0.89, -0.02, -0.27, 0.020 +19980430, 1.47, -0.26, -0.44, 0.020 +19980501, 0.60, -0.49, 0.25, 0.020 +19980504, 0.15, 0.10, -0.19, 0.020 +19980505, -0.59, -0.02, 0.16, 0.020 +19980506, -0.83, 0.23, 0.57, 0.020 +19980507, -0.83, 0.13, 0.58, 0.020 +19980508, 1.07, -0.44, -0.54, 0.020 +19980511, -0.25, -0.32, 0.53, 0.020 +19980512, 0.53, -0.82, -0.05, 0.020 +19980513, 0.27, -0.07, 0.11, 0.020 +19980514, -0.18, -0.24, 0.29, 0.020 +19980515, -0.78, 0.03, 0.49, 0.020 +19980518, -0.44, -0.59, 0.13, 0.020 +19980519, 0.38, 0.37, -0.53, 0.020 +19980520, 0.47, -1.17, 0.44, 0.020 +19980521, -0.36, -0.05, 0.56, 0.020 +19980522, -0.55, -0.36, 0.52, 0.020 +19980526, -1.50, -0.57, 0.99, 0.020 +19980527, -0.37, -0.82, -0.52, 0.020 +19980528, 0.56, 0.57, 0.03, 0.020 +19980529, -0.42, 0.65, 0.47, 0.020 +19980601, -0.33, -1.27, 1.08, 0.019 +19980602, 0.18, -0.63, 0.26, 0.019 +19980603, -0.78, 0.60, 0.50, 0.019 +19980604, 0.99, -0.35, -0.72, 0.019 +19980605, 1.45, -0.90, -0.57, 0.019 +19980608, 0.27, 0.06, -0.04, 0.019 +19980609, 0.25, 0.05, -0.48, 0.019 +19980610, -0.70, -0.55, 0.56, 0.019 +19980611, -1.46, 0.13, 0.22, 0.019 +19980612, 0.09, -0.65, -0.46, 0.019 +19980615, -1.93, 0.17, 0.49, 0.019 +19980616, 0.99, 0.15, -0.91, 0.019 +19980617, 1.63, -0.51, -0.24, 0.019 +19980618, -0.14, -0.44, -0.32, 0.019 +19980619, -0.42, 0.21, 0.11, 0.019 +19980622, 0.33, 0.35, -0.09, 0.019 +19980623, 1.36, -0.07, -1.12, 0.019 +19980624, 1.13, -0.24, -0.58, 0.019 +19980625, -0.31, 0.00, 0.29, 0.019 +19980626, 0.30, -0.22, 0.20, 0.019 +19980629, 0.55, 0.11, -0.32, 0.019 +19980630, -0.20, 0.87, -0.14, 0.019 +19980701, 1.12, -0.65, -0.02, 0.018 +19980702, -0.20, -0.21, 0.31, 0.018 +19980706, 0.85, -0.79, 0.17, 0.018 +19980707, -0.17, -0.12, 0.07, 0.018 +19980708, 0.90, -0.71, -0.54, 0.018 +19980709, -0.51, 0.77, -0.08, 0.018 +19980710, 0.31, -0.29, -0.56, 0.018 +19980713, 0.10, -0.01, -0.31, 0.018 +19980714, 0.83, -0.70, -0.15, 0.018 +19980715, -0.08, 0.91, -0.62, 0.018 +19980716, 0.65, -0.30, -0.41, 0.018 +19980717, 0.20, -0.19, -0.36, 0.018 +19980720, -0.13, 0.12, -0.45, 0.018 +19980721, -1.59, 0.31, 0.87, 0.018 +19980722, -0.28, -0.97, 0.17, 0.018 +19980723, -2.05, 0.15, 0.49, 0.018 +19980724, -0.15, -0.32, -0.46, 0.018 +19980727, 0.20, -1.54, 0.01, 0.018 +19980728, -1.50, 0.20, 0.50, 0.018 +19980729, -0.46, 0.03, 0.29, 0.018 +19980730, 1.45, -0.82, -0.35, 0.018 +19980731, -1.87, -0.27, 0.41, 0.018 +19980803, -0.87, -0.77, 0.66, 0.020 +19980804, -3.55, 0.68, 0.89, 0.020 +19980805, 0.47, -1.19, -0.22, 0.020 +19980806, 1.07, 0.98, -0.53, 0.020 +19980807, 0.39, 1.62, -0.29, 0.020 +19980810, -0.59, -0.16, -0.03, 0.020 +19980811, -1.66, -0.87, 0.11, 0.020 +19980812, 1.54, -0.04, 0.04, 0.020 +19980813, -0.87, -0.20, 0.35, 0.020 +19980814, -0.96, 0.72, 0.16, 0.020 +19980817, 1.51, -1.44, -0.72, 0.020 +19980818, 1.61, -0.34, -0.45, 0.020 +19980819, -0.46, -0.73, 0.47, 0.020 +19980820, -0.67, -0.14, -0.10, 0.020 +19980821, -1.16, -0.33, 0.06, 0.020 +19980824, 0.38, -1.13, 0.23, 0.020 +19980825, 0.21, -1.14, -0.27, 0.020 +19980826, -1.09, -1.25, -0.08, 0.020 +19980827, -3.92, 0.21, 0.25, 0.020 +19980828, -1.70, -0.65, 1.05, 0.020 +19980831, -6.71, -0.19, 2.43, 0.020 +19980901, 3.56, -0.66, -1.79, 0.022 +19980902, -0.02, 1.34, -0.15, 0.022 +19980903, -1.09, -0.43, -0.21, 0.022 +19980904, -0.78, 0.97, 0.01, 0.022 +19980908, 4.92, -1.07, -1.89, 0.022 +19980909, -1.77, -0.64, 1.17, 0.022 +19980910, -2.52, 0.27, 0.69, 0.022 +19980911, 2.67, -0.35, -1.26, 0.022 +19980914, 2.04, -1.27, 0.03, 0.022 +19980915, 0.72, -1.16, 0.78, 0.022 +19980916, 0.84, -0.36, -0.23, 0.022 +19980917, -2.35, 1.14, 0.60, 0.022 +19980918, 0.41, 1.37, -0.31, 0.022 +19980921, 0.19, -0.52, -0.32, 0.022 +19980922, 0.70, 0.53, -0.61, 0.022 +19980923, 3.24, -1.49, -0.82, 0.022 +19980924, -2.05, 0.89, 0.61, 0.022 +19980925, 0.08, -0.52, 0.17, 0.022 +19980928, 0.34, -0.44, 0.29, 0.022 +19980929, -0.11, -0.37, -0.26, 0.022 +19980930, -2.58, 2.35, 0.17, 0.022 +19981001, -3.29, -0.38, 1.35, 0.015 +19981002, 1.40, -1.65, 0.11, 0.015 +19981005, -1.91, -1.59, 0.91, 0.015 +19981006, -0.55, -0.69, -0.06, 0.015 +19981007, -1.80, -1.54, 0.93, 0.015 +19981008, -1.69, -2.42, 0.16, 0.015 +19981009, 2.64, -0.52, -1.35, 0.015 +19981012, 1.65, 0.91, -1.69, 0.015 +19981013, -0.63, -1.05, 0.85, 0.015 +19981014, 1.34, -0.32, -0.20, 0.015 +19981015, 4.06, -1.26, -0.96, 0.015 +19981016, 1.02, 0.96, -0.42, 0.015 +19981019, 0.83, 1.59, -0.24, 0.015 +19981020, 0.27, 1.34, 0.38, 0.015 +19981021, 0.59, 0.87, -0.59, 0.015 +19981022, 0.87, 1.24, -0.83, 0.015 +19981023, -0.60, 1.26, -0.57, 0.015 +19981026, 0.41, 1.18, -0.56, 0.015 +19981027, -0.53, 0.56, 0.32, 0.015 +19981028, 0.24, 0.15, -0.18, 0.015 +19981029, 1.60, -0.65, -0.53, 0.015 +19981030, 1.22, -0.79, 0.70, 0.015 +19981102, 1.40, 0.73, -0.47, 0.015 +19981103, -0.10, 0.37, 0.11, 0.015 +19981104, 0.88, 0.33, 0.16, 0.015 +19981105, 1.28, -0.02, -0.36, 0.015 +19981106, 0.68, 0.59, -0.62, 0.015 +19981109, -0.83, 0.62, -0.43, 0.015 +19981110, -0.15, -0.15, 0.01, 0.015 +19981111, -0.69, 0.13, 0.11, 0.015 +19981112, -0.27, -0.11, 0.28, 0.015 +19981113, 0.53, -1.38, 0.61, 0.015 +19981116, 0.75, -0.67, -0.26, 0.015 +19981117, 0.32, -0.80, 0.09, 0.015 +19981118, 0.51, 0.04, -0.53, 0.015 +19981119, 0.66, 0.17, -0.39, 0.015 +19981120, 0.78, -0.51, -0.47, 0.015 +19981123, 2.02, -1.10, -0.89, 0.015 +19981124, -0.43, 0.02, 0.47, 0.015 +19981125, 0.39, 0.68, -0.40, 0.015 +19981127, 0.54, 0.81, -0.67, 0.015 +19981130, -2.31, 1.21, 0.73, 0.015 +19981201, 0.86, -0.74, 0.04, 0.017 +19981202, -0.21, -0.05, -0.29, 0.017 +19981203, -1.62, 0.73, 0.50, 0.017 +19981204, 2.00, -1.09, -0.59, 0.017 +19981207, 0.89, -0.22, -0.57, 0.017 +19981208, -0.44, 0.49, -0.27, 0.017 +19981209, 0.09, 0.11, -0.32, 0.017 +19981210, -1.55, 0.30, 0.53, 0.017 +19981211, -0.05, -0.22, -0.32, 0.017 +19981214, -2.12, 0.09, 0.64, 0.017 +19981215, 1.67, -1.11, -0.78, 0.017 +19981216, -0.08, -0.12, 0.37, 0.017 +19981217, 1.51, -1.00, -0.03, 0.017 +19981218, 0.68, 0.59, -0.76, 0.017 +19981221, 1.35, -0.32, -0.72, 0.017 +19981222, 0.00, -0.08, -0.42, 0.017 +19981223, 1.93, -0.50, -0.88, 0.017 +19981224, -0.07, 0.22, -0.02, 0.017 +19981228, 0.16, 0.50, -0.66, 0.017 +19981229, 1.14, -0.39, -0.28, 0.017 +19981230, -0.50, 0.65, 0.44, 0.017 +19981231, 0.43, 1.86, 0.04, 0.017 +19990104, -0.19, 0.21, 0.45, 0.019 +19990105, 1.10, -0.88, 0.12, 0.019 +19990106, 2.10, -0.70, -0.40, 0.019 +19990107, -0.07, 0.46, -0.22, 0.019 +19990108, 0.45, -0.05, 0.38, 0.019 +19990111, -0.52, 1.11, -0.08, 0.019 +19990112, -1.85, 0.66, 0.09, 0.019 +19990113, -0.54, -0.03, -0.22, 0.019 +19990114, -1.66, 1.09, -0.01, 0.019 +19990115, 2.28, -0.75, -0.41, 0.019 +19990119, 0.80, 0.13, -0.66, 0.019 +19990120, 0.24, 0.15, -0.67, 0.019 +19990121, -1.82, 0.31, 0.73, 0.019 +19990122, -0.66, 0.41, 0.15, 0.019 +19990125, 0.67, -0.84, -0.24, 0.019 +19990126, 1.39, -0.25, -1.13, 0.019 +19990127, -0.74, 0.06, -0.57, 0.019 +19990128, 1.63, -0.99, -0.68, 0.019 +19990129, 0.95, 0.19, -0.61, 0.019 +19990201, -0.39, 0.01, -0.27, 0.019 +19990202, -0.89, -0.16, -0.18, 0.019 +19990203, 0.90, -0.20, -0.72, 0.019 +19990204, -1.92, 0.37, 1.06, 0.019 +19990205, -0.92, -0.56, 0.79, 0.019 +19990208, 0.23, -0.59, 0.13, 0.019 +19990209, -2.25, 0.09, 1.40, 0.019 +19990210, 0.27, -1.20, -0.45, 0.019 +19990211, 2.49, -0.51, -1.60, 0.019 +19990212, -1.90, 0.16, 0.51, 0.019 +19990216, 0.65, -1.29, -0.16, 0.019 +19990217, -1.45, -0.69, 1.11, 0.019 +19990218, 0.92, -1.18, 0.68, 0.019 +19990219, 0.25, 0.16, -0.50, 0.019 +19990222, 2.41, -1.26, -0.56, 0.019 +19990223, 0.09, 0.39, -0.57, 0.019 +19990224, -1.31, 0.34, 0.22, 0.019 +19990225, -0.69, 0.10, 0.05, 0.019 +19990226, -0.49, 0.03, 0.46, 0.019 +19990301, -0.01, 0.24, 0.08, 0.018 +19990302, -0.69, 0.08, 0.48, 0.018 +19990303, 0.01, -0.62, 0.11, 0.018 +19990304, 1.34, -1.03, -0.31, 0.018 +19990305, 2.04, -1.25, -0.47, 0.018 +19990308, 0.66, -0.08, -0.94, 0.018 +19990309, -0.23, 0.15, -0.24, 0.018 +19990310, 0.52, 0.04, -0.31, 0.018 +19990311, 0.73, -0.75, 0.03, 0.018 +19990312, -0.32, -0.44, 0.72, 0.018 +19990315, 0.94, -0.40, -0.32, 0.018 +19990316, -0.15, -0.22, -0.30, 0.018 +19990317, -0.55, 0.12, 0.37, 0.018 +19990318, 1.27, -1.18, -0.20, 0.018 +19990319, -1.32, 0.17, 0.81, 0.018 +19990322, -0.33, -0.47, 0.33, 0.018 +19990323, -2.64, 0.46, 0.88, 0.018 +19990324, 0.51, -0.51, -0.26, 0.018 +19990325, 1.78, 0.39, -1.01, 0.018 +19990326, -0.50, 0.94, -0.33, 0.018 +19990329, 1.98, -0.21, -1.75, 0.018 +19990330, -0.63, 0.61, -0.24, 0.018 +19990331, -0.86, -0.01, 0.22, 0.018 +19990401, 0.54, -0.10, -0.02, 0.018 +19990405, 1.87, -0.95, -0.56, 0.018 +19990406, -0.26, -0.01, 0.13, 0.018 +19990407, 0.42, -0.73, -0.22, 0.018 +19990408, 1.27, -0.42, -0.77, 0.018 +19990409, 0.43, 1.25, -0.48, 0.018 +19990412, 0.87, 0.24, -0.19, 0.018 +19990413, -0.34, 1.95, -0.18, 0.018 +19990414, -1.43, 0.54, 1.98, 0.018 +19990415, -0.39, -0.10, 0.85, 0.018 +19990416, -0.23, 0.85, 1.04, 0.018 +19990419, -2.48, -1.01, 3.77, 0.018 +19990420, 1.38, -0.12, -1.97, 0.018 +19990421, 2.53, 0.59, -1.93, 0.018 +19990422, 1.35, -0.55, -0.89, 0.018 +19990423, 0.11, 0.57, 0.16, 0.018 +19990426, 0.44, 0.89, -1.23, 0.018 +19990427, 0.09, -0.07, 0.59, 0.018 +19990428, -0.88, -0.11, 1.59, 0.018 +19990429, -0.45, 0.36, 0.86, 0.018 +19990430, -0.47, 0.70, -0.40, 0.018 +19990503, 1.10, -1.41, 0.58, 0.017 +19990504, -1.49, 0.96, 0.44, 0.017 +19990505, 1.03, -0.86, -0.16, 0.017 +19990506, -1.15, 0.85, 1.01, 0.017 +19990507, 0.89, -0.51, -0.11, 0.017 +19990510, -0.03, 1.20, 0.15, 0.017 +19990511, 1.19, 0.06, -0.88, 0.017 +19990512, 0.65, 0.09, -0.52, 0.017 +19990513, 0.23, 0.22, 0.13, 0.017 +19990514, -2.14, 0.80, 0.52, 0.017 +19990517, 0.15, -0.03, -0.74, 0.017 +19990518, -0.40, 0.41, 0.41, 0.017 +19990519, 0.82, -0.10, -0.20, 0.017 +19990520, -0.36, 0.93, 0.41, 0.017 +19990521, -0.57, 0.73, 0.70, 0.017 +19990524, -1.93, 0.06, 1.03, 0.017 +19990525, -1.81, -0.10, 1.05, 0.017 +19990526, 1.41, -1.18, -0.66, 0.017 +19990527, -1.43, 1.22, -0.03, 0.017 +19990528, 1.53, -0.07, -0.66, 0.017 +19990601, -0.80, 0.29, 0.82, 0.018 +19990602, 0.13, -0.32, -0.43, 0.018 +19990603, 0.12, -0.24, 0.33, 0.018 +19990604, 2.03, -0.27, -1.62, 0.018 +19990607, 0.71, 0.23, -0.06, 0.018 +19990608, -1.23, 0.60, 0.42, 0.018 +19990609, 0.16, 0.72, -0.62, 0.018 +19990610, -1.20, 0.47, 0.58, 0.018 +19990611, -0.80, -0.04, 0.33, 0.018 +19990614, -0.49, -1.26, 1.02, 0.018 +19990615, 0.52, -0.42, -0.02, 0.018 +19990616, 2.26, -0.60, -1.05, 0.018 +19990617, 0.72, 0.09, -0.74, 0.018 +19990618, 0.22, 0.38, -0.13, 0.018 +19990621, 0.63, 0.78, -0.72, 0.018 +19990622, -0.93, 0.59, 0.30, 0.018 +19990623, -0.14, 0.25, -0.22, 0.018 +19990624, -1.31, 0.58, 0.59, 0.018 +19990625, -0.06, 0.17, -0.06, 0.018 +19990628, 1.23, 0.16, -0.24, 0.018 +19990629, 1.49, -0.05, -0.92, 0.018 +19990630, 1.60, 1.01, -1.48, 0.018 +19990701, 0.55, -0.84, -0.20, 0.018 +19990702, 0.73, -0.03, -0.48, 0.018 +19990706, -0.08, 0.07, 0.14, 0.018 +19990707, 0.22, -0.57, -0.19, 0.018 +19990708, 0.03, 0.68, -0.54, 0.018 +19990709, 0.54, 0.53, -0.43, 0.018 +19990712, -0.24, 0.53, 0.19, 0.018 +19990713, -0.39, 0.34, -0.02, 0.018 +19990714, 0.46, 0.44, -0.65, 0.018 +19990715, 0.83, 0.26, -0.64, 0.018 +19990716, 0.48, -0.44, -0.07, 0.018 +19990719, -0.82, 0.06, 0.62, 0.018 +19990720, -2.22, 0.12, 1.08, 0.018 +19990721, 0.27, 0.20, -0.55, 0.018 +19990722, -1.33, 0.05, 0.94, 0.018 +19990723, -0.32, -0.23, 0.02, 0.018 +19990726, -1.02, -0.59, 0.81, 0.018 +19990727, 1.12, -0.36, -0.74, 0.018 +19990728, 0.15, 0.31, -0.44, 0.018 +19990729, -1.75, 0.71, 0.48, 0.018 +19990730, -0.72, 1.55, -0.19, 0.018 +19990802, -0.27, -0.54, 0.52, 0.018 +19990803, -0.79, -0.76, 0.50, 0.018 +19990804, -1.45, -0.46, 1.25, 0.018 +19990805, 0.63, -0.66, -0.45, 0.018 +19990806, -1.00, 0.81, 0.14, 0.018 +19990809, -0.41, -0.50, 0.85, 0.018 +19990810, -1.16, 0.37, 0.05, 0.018 +19990811, 1.63, -0.64, -0.23, 0.018 +19990812, -0.14, 0.30, 0.11, 0.018 +19990813, 2.21, -0.94, -0.97, 0.018 +19990816, 0.26, 0.01, -0.53, 0.018 +19990817, 0.97, -0.61, -0.29, 0.018 +19990818, -0.75, 0.38, -0.21, 0.018 +19990819, -0.78, 0.63, 0.68, 0.018 +19990820, 0.89, -0.31, -0.44, 0.018 +19990823, 1.76, -0.95, -0.88, 0.018 +19990824, 0.18, -0.02, -0.37, 0.018 +19990825, 1.21, -0.14, -1.49, 0.018 +19990826, -1.18, 0.89, 0.27, 0.018 +19990827, -0.99, 0.46, 0.39, 0.018 +19990830, -1.78, 1.03, -0.08, 0.018 +19990831, -0.17, 0.27, -0.13, 0.018 +19990901, 0.76, -0.20, -0.12, 0.018 +19990902, -0.86, 0.37, 0.11, 0.018 +19990903, 2.84, -0.94, -1.24, 0.018 +19990907, -0.34, 0.95, -0.05, 0.018 +19990908, -0.55, 0.20, 0.31, 0.018 +19990909, 0.31, 0.15, 0.05, 0.018 +19990910, 0.44, 0.46, -0.48, 0.018 +19990913, -0.64, 0.17, 0.32, 0.018 +19990914, -0.52, 0.30, -0.26, 0.018 +19990915, -1.28, 0.62, 0.80, 0.018 +19990916, -0.20, -0.87, 0.04, 0.018 +19990917, 1.22, -0.18, -0.81, 0.018 +19990920, 0.00, 0.06, -0.61, 0.018 +19990921, -1.93, 0.69, 0.08, 0.018 +19990922, 0.29, 0.09, -0.74, 0.018 +19990923, -2.35, 0.50, 0.84, 0.018 +19990924, -0.19, -0.42, -0.33, 0.018 +19990927, 0.42, 0.56, -0.37, 0.018 +19990928, -0.23, -0.02, -0.83, 0.018 +19990929, -0.80, 0.60, 0.56, 0.018 +19990930, 0.92, 0.35, -0.89, 0.018 +19991001, -0.16, -0.10, -0.26, 0.018 +19991004, 1.66, -1.35, -0.26, 0.018 +19991005, -0.09, -0.13, -0.21, 0.018 +19991006, 1.82, -1.12, -0.58, 0.018 +19991007, -0.47, 0.30, -0.14, 0.018 +19991008, 1.09, -0.87, -0.45, 0.018 +19991011, 0.21, 0.36, -0.11, 0.018 +19991012, -1.72, 0.41, 0.55, 0.018 +19991013, -2.04, 0.41, 1.04, 0.018 +19991014, -0.02, -0.26, 0.00, 0.018 +19991015, -2.65, 1.70, 0.28, 0.018 +19991018, 0.09, -1.51, 0.16, 0.018 +19991019, 0.76, -0.14, -0.82, 0.018 +19991020, 1.86, -0.61, -1.31, 0.018 +19991021, -0.16, 0.21, -0.22, 0.018 +19991022, 1.31, -1.04, 0.55, 0.018 +19991025, -0.43, 0.31, 0.05, 0.018 +19991026, -0.85, 0.75, -0.05, 0.018 +19991027, 0.89, -1.20, 0.13, 0.018 +19991028, 3.32, -2.11, -0.82, 0.018 +19991029, 1.73, -1.02, -0.36, 0.018 +19991101, -0.38, 1.25, -0.49, 0.017 +19991102, -0.33, 0.21, 0.45, 0.017 +19991103, 0.69, 1.08, -0.70, 0.017 +19991104, 0.66, -0.11, -0.55, 0.017 +19991105, 0.79, -0.34, -0.36, 0.017 +19991108, 0.59, 0.46, -0.66, 0.017 +19991109, -0.78, 1.19, 0.13, 0.017 +19991110, 0.53, 0.43, -0.59, 0.017 +19991111, 0.37, 0.12, -0.68, 0.017 +19991112, 1.10, -0.91, 0.11, 0.017 +19991115, 0.03, 0.62, 0.47, 0.017 +19991116, 1.84, -0.79, -0.69, 0.017 +19991117, -0.63, 1.01, 0.00, 0.017 +19991118, 1.13, 0.78, -1.44, 0.017 +19991119, -0.11, 0.35, -0.50, 0.017 +19991122, 0.02, 0.22, -0.92, 0.017 +19991123, -1.29, 0.08, 0.30, 0.017 +19991124, 0.87, 0.08, -0.89, 0.017 +19991126, 0.23, 0.92, -0.20, 0.017 +19991129, -0.60, 0.57, -0.14, 0.017 +19991130, -1.28, -0.18, 1.28, 0.017 +19991201, 0.49, -0.15, -0.30, 0.020 +19991202, 1.15, 0.53, -1.01, 0.020 +19991203, 1.59, -1.06, -0.52, 0.020 +19991206, -0.42, 0.88, -0.55, 0.020 +19991207, -0.43, 1.06, -1.16, 0.020 +19991208, -0.08, 0.95, -0.45, 0.020 +19991209, 0.30, -0.23, -0.56, 0.020 +19991210, 0.51, 0.58, -0.69, 0.020 +19991213, 0.05, 1.13, -0.66, 0.020 +19991214, -1.33, -0.51, 1.27, 0.020 +19991215, 0.54, -1.01, 0.13, 0.020 +19991216, 0.61, 0.54, -0.73, 0.020 +19991217, 0.27, 0.00, -0.23, 0.020 +19991220, -0.08, 0.65, -0.68, 0.020 +19991221, 1.44, 0.21, -0.77, 0.020 +19991222, 0.33, 0.02, -0.19, 0.020 +19991223, 1.30, -0.46, -0.33, 0.020 +19991227, -0.21, 0.77, -0.73, 0.020 +19991228, 0.21, 0.25, 0.15, 0.020 +19991229, 0.64, 0.98, -0.10, 0.020 +19991230, 0.08, 0.02, -0.10, 0.020 +19991231, 0.52, 1.36, 0.29, 0.020 +20000103, -0.71, 0.38, -0.85, 0.021 +20000104, -4.06, -0.04, 2.21, 0.021 +20000105, -0.09, 0.18, 0.14, 0.021 +20000106, -0.73, -0.67, 1.38, 0.021 +20000107, 3.21, -0.59, -1.24, 0.021 +20000110, 1.76, 1.00, -1.51, 0.021 +20000111, -1.71, 0.19, 0.93, 0.021 +20000112, -0.69, -0.53, 0.91, 0.021 +20000113, 1.59, 1.00, -1.31, 0.021 +20000114, 1.15, 0.09, -0.19, 0.021 +20000118, -0.26, 2.56, -0.47, 0.021 +20000119, 0.44, 0.93, -0.51, 0.021 +20000120, -0.37, 1.92, -1.15, 0.021 +20000121, 0.23, 1.41, -0.46, 0.021 +20000124, -2.59, 1.11, 0.84, 0.021 +20000125, 0.49, -0.23, -0.46, 0.021 +20000126, -0.44, -0.23, 0.30, 0.021 +20000127, -0.44, -0.40, -0.09, 0.021 +20000128, -2.82, -0.10, 1.36, 0.021 +20000131, 1.50, -2.90, -0.37, 0.021 +20000201, 1.29, -0.13, 0.15, 0.022 +20000202, 0.16, 1.73, -0.54, 0.022 +20000203, 1.49, 1.35, -1.37, 0.022 +20000204, -0.05, 1.15, -0.58, 0.022 +20000207, 0.35, 1.60, -1.24, 0.022 +20000208, 1.23, 0.69, -1.79, 0.022 +20000209, -1.83, 1.80, -0.07, 0.022 +20000210, 0.57, 1.59, -1.15, 0.022 +20000211, -1.74, 1.10, 0.61, 0.022 +20000214, 0.24, 0.62, 0.18, 0.022 +20000215, 0.70, -0.65, 0.01, 0.022 +20000216, -0.58, 1.84, -0.33, 0.022 +20000217, 0.46, 1.99, -1.13, 0.022 +20000218, -2.69, 1.18, 0.58, 0.022 +20000222, 0.11, -1.05, 0.36, 0.022 +20000223, 1.24, 0.91, -1.63, 0.022 +20000224, 0.01, 1.02, -0.36, 0.022 +20000225, -1.04, 1.64, 0.16, 0.022 +20000228, 0.76, -0.19, -0.11, 0.022 +20000229, 1.96, 1.96, -0.68, 0.022 +20000301, 1.39, 1.06, -0.61, 0.020 +20000302, -0.09, 0.06, 0.28, 0.020 +20000303, 2.30, -0.05, -0.96, 0.020 +20000306, -0.77, 1.72, 0.25, 0.020 +20000307, -2.20, 0.84, 0.38, 0.020 +20000308, 0.69, -0.56, -0.26, 0.020 +20000309, 2.45, -0.31, -0.56, 0.020 +20000310, -0.43, 0.24, 0.26, 0.020 +20000313, -1.48, -1.14, 1.10, 0.020 +20000314, -2.33, -1.23, 1.23, 0.020 +20000315, 0.83, -5.09, 1.50, 0.020 +20000316, 4.25, -3.76, 0.37, 0.020 +20000317, 0.62, 0.73, -0.69, 0.020 +20000320, -1.71, -2.67, 2.11, 0.020 +20000321, 1.95, -2.28, -0.39, 0.020 +20000322, 1.31, 2.43, -1.29, 0.020 +20000323, 1.48, -1.08, 0.38, 0.020 +20000324, 0.11, -0.30, -0.04, 0.020 +20000327, -0.39, 0.32, -0.42, 0.020 +20000328, -1.34, -1.21, 0.92, 0.020 +20000329, -1.00, -2.41, 1.90, 0.020 +20000330, -1.76, -2.07, 1.67, 0.020 +20000331, 1.19, 0.28, 0.01, 0.020 +20000403, -1.67, -4.06, 2.16, 0.024 +20000404, -1.20, -1.76, 0.26, 0.024 +20000405, 0.01, 1.36, -0.74, 0.024 +20000406, 1.47, 1.44, -0.43, 0.024 +20000407, 1.42, 1.85, -0.69, 0.024 +20000410, -1.95, -3.52, 2.18, 0.024 +20000411, -1.01, -2.45, 2.18, 0.024 +20000412, -2.97, -2.86, 2.84, 0.024 +20000413, -1.80, -0.30, 0.95, 0.024 +20000414, -6.72, -1.27, 2.07, 0.024 +20000417, 2.94, -1.60, -1.56, 0.024 +20000418, 3.84, 3.29, -2.40, 0.024 +20000419, -0.80, 1.48, 0.11, 0.024 +20000420, 0.09, -1.15, 1.04, 0.024 +20000424, -1.01, -2.35, 1.14, 0.024 +20000425, 3.74, 0.44, -1.06, 0.024 +20000426, -1.23, 0.28, 1.33, 0.024 +20000427, 0.76, 1.45, -0.77, 0.024 +20000428, 0.07, 2.28, 0.01, 0.024 +20000501, 1.40, 1.18, -1.21, 0.023 +20000502, -2.07, -1.27, 1.93, 0.023 +20000503, -2.09, 0.35, -0.46, 0.023 +20000504, 0.00, 0.89, -0.08, 0.023 +20000505, 1.48, 0.79, -0.67, 0.023 +20000508, -0.98, -1.63, 1.47, 0.023 +20000509, -1.19, -0.97, 0.90, 0.023 +20000510, -2.70, -1.07, 0.87, 0.023 +20000511, 2.08, 0.33, -0.23, 0.023 +20000512, 0.81, -0.66, 0.51, 0.023 +20000515, 2.13, -0.78, -0.79, 0.023 +20000516, 1.30, 0.33, -0.63, 0.023 +20000517, -1.38, 0.20, 0.73, 0.023 +20000518, -1.09, -1.29, 1.06, 0.023 +20000519, -2.39, -0.25, 0.88, 0.023 +20000522, -0.73, -1.02, -0.31, 0.023 +20000523, -2.38, -0.89, 1.39, 0.023 +20000524, 1.55, -1.17, -1.27, 0.023 +20000525, -1.29, 0.51, 0.11, 0.023 +20000526, -0.18, 0.24, -0.06, 0.023 +20000530, 3.82, 0.77, -2.25, 0.023 +20000531, -0.22, 0.05, 0.54, 0.023 +20000601, 2.50, 0.84, -1.64, 0.018 +20000602, 2.91, 1.70, -2.45, 0.018 +20000605, -0.37, 1.32, -0.57, 0.018 +20000606, -0.87, 0.70, 0.18, 0.018 +20000607, 1.16, 0.28, -0.76, 0.018 +20000608, -0.60, 0.72, 0.17, 0.018 +20000609, 0.04, 1.52, -0.07, 0.018 +20000612, -1.19, -0.87, 1.28, 0.018 +20000613, 1.45, -0.15, -0.99, 0.018 +20000614, -0.16, -0.34, 0.35, 0.018 +20000615, 0.50, 0.35, -1.23, 0.018 +20000616, -0.74, 1.35, -0.19, 0.018 +20000619, 1.66, 0.16, -1.28, 0.018 +20000620, -0.25, 0.98, -0.51, 0.018 +20000621, 0.36, 0.68, -0.49, 0.018 +20000622, -1.88, 0.10, 0.43, 0.018 +20000623, -0.99, -0.37, 1.05, 0.018 +20000626, 0.92, 1.35, -1.37, 0.018 +20000627, -0.55, -0.62, 0.77, 0.018 +20000628, 0.77, 1.87, -1.20, 0.018 +20000629, -0.67, 0.08, 0.62, 0.018 +20000630, 0.74, 1.88, -1.56, 0.018 +20000703, 0.91, -0.67, 0.83, 0.024 +20000705, -1.60, -0.12, 1.85, 0.024 +20000706, 0.87, 0.01, -0.16, 0.024 +20000707, 1.46, -0.76, -0.80, 0.024 +20000710, -0.13, 0.12, 0.59, 0.024 +20000711, 0.12, -0.25, 0.11, 0.024 +20000712, 1.31, 0.38, -0.64, 0.024 +20000713, 0.51, 0.26, -0.55, 0.024 +20000714, 0.94, -0.43, -0.40, 0.024 +20000717, 0.10, 1.10, -1.32, 0.024 +20000718, -1.35, 0.13, 1.19, 0.024 +20000719, -1.19, -0.37, 1.26, 0.024 +20000720, 1.33, -0.22, -0.81, 0.024 +20000721, -1.30, -0.46, 1.11, 0.024 +20000724, -1.44, -0.42, 0.88, 0.024 +20000725, 0.51, -0.69, 0.24, 0.024 +20000726, -1.33, 0.83, 0.95, 0.024 +20000727, -0.90, -1.75, 2.48, 0.024 +20000728, -2.33, -0.24, 1.72, 0.024 +20000731, 1.03, 0.75, -0.44, 0.024 +20000801, 0.16, -1.33, 1.55, 0.022 +20000802, 0.02, 0.08, 0.22, 0.022 +20000803, 1.11, -1.36, -0.02, 0.022 +20000804, 0.89, -0.73, 0.22, 0.022 +20000807, 1.16, 0.13, -0.73, 0.022 +20000808, 0.10, -0.53, 1.08, 0.022 +20000809, -0.60, 0.50, 0.06, 0.022 +20000810, -1.03, -0.50, 1.18, 0.022 +20000811, 0.86, 0.13, 0.25, 0.022 +20000814, 1.24, -0.06, -0.40, 0.022 +20000815, -0.46, 0.00, 0.05, 0.022 +20000816, -0.18, 0.65, -0.20, 0.022 +20000817, 1.12, -0.34, -0.59, 0.022 +20000818, -0.28, 0.06, 0.03, 0.022 +20000821, 0.40, -0.07, -0.49, 0.022 +20000822, -0.01, 0.00, 0.09, 0.022 +20000823, 0.55, 0.18, -1.02, 0.022 +20000824, 0.34, 0.48, -0.48, 0.022 +20000825, -0.04, 0.68, -0.47, 0.022 +20000828, 0.49, -0.36, -0.11, 0.022 +20000829, -0.03, 0.69, -0.24, 0.022 +20000830, -0.11, 0.45, -0.01, 0.022 +20000831, 1.19, 0.16, -0.66, 0.022 +20000901, 0.38, 0.14, -0.34, 0.025 +20000905, -0.97, -0.24, 1.33, 0.025 +20000906, -1.23, -0.34, 2.02, 0.025 +20000907, 0.80, 0.59, -0.72, 0.025 +20000908, -0.83, -0.66, 0.92, 0.025 +20000911, -0.45, -0.78, 1.44, 0.025 +20000912, -0.50, 0.41, -0.08, 0.025 +20000913, 0.29, -0.19, -0.14, 0.025 +20000914, 0.01, 0.92, -0.37, 0.025 +20000915, -1.23, -0.11, 0.99, 0.025 +20000918, -1.80, -0.35, 0.56, 0.025 +20000919, 1.24, 0.44, -1.54, 0.025 +20000920, -0.39, 0.60, -0.60, 0.025 +20000921, -0.54, -0.68, 1.07, 0.025 +20000922, 0.40, -0.53, -0.15, 0.025 +20000925, -0.56, -0.24, 0.46, 0.025 +20000926, -0.96, -0.63, 1.16, 0.025 +20000927, -0.21, -0.63, 0.34, 0.025 +20000928, 2.32, 0.14, -1.22, 0.025 +20000929, -1.26, 0.69, 1.26, 0.025 +20001002, -0.70, -1.58, 1.47, 0.025 +20001003, -1.29, 0.12, 1.05, 0.025 +20001004, 0.64, 0.05, -0.66, 0.025 +20001005, -0.23, -0.11, 0.08, 0.025 +20001006, -2.17, -0.12, 1.58, 0.025 +20001009, -0.39, -0.28, 0.50, 0.025 +20001010, -1.44, 0.01, 0.70, 0.025 +20001011, -1.77, -0.02, 0.86, 0.025 +20001012, -2.83, 0.68, 1.22, 0.025 +20001013, 3.88, -0.54, -2.37, 0.025 +20001016, 0.24, -0.19, -0.47, 0.025 +20001017, -1.95, 0.16, 0.61, 0.025 +20001018, -0.84, -0.25, 0.58, 0.025 +20001019, 3.66, -0.59, -2.17, 0.025 +20001020, 0.92, 0.41, -1.05, 0.025 +20001023, 0.03, 0.70, -0.68, 0.025 +20001024, -0.12, -0.90, 1.14, 0.025 +20001025, -2.52, -0.14, 1.88, 0.025 +20001026, 0.00, 0.89, -0.32, 0.025 +20001027, 0.91, -1.19, 1.23, 0.025 +20001030, 0.74, -1.56, 1.83, 0.025 +20001031, 2.75, 0.59, -1.66, 0.025 +20001101, -0.48, -0.23, 0.49, 0.024 +20001102, 1.05, 1.36, -1.29, 0.024 +20001103, -0.03, 1.14, -1.20, 0.024 +20001106, 0.13, -0.97, 0.52, 0.024 +20001107, -0.08, 0.44, -0.33, 0.024 +20001108, -1.97, 0.19, 2.16, 0.024 +20001109, -0.96, -0.36, 0.81, 0.024 +20001110, -2.69, -0.42, 2.31, 0.024 +20001113, -1.39, -0.18, 1.70, 0.024 +20001114, 2.66, -0.06, -1.85, 0.024 +20001115, 0.60, 0.05, 0.07, 0.024 +20001116, -1.67, -0.61, 1.62, 0.024 +20001117, -0.52, 0.78, 0.45, 0.024 +20001120, -2.46, -0.16, 1.39, 0.024 +20001121, -0.05, -0.85, 0.72, 0.024 +20001122, -2.12, -0.22, 1.96, 0.024 +20001124, 2.08, 0.83, -2.03, 0.024 +20001127, 0.30, -0.20, -0.64, 0.024 +20001128, -1.67, -1.09, 2.52, 0.024 +20001129, 0.18, -1.71, 1.05, 0.024 +20001130, -2.03, -0.68, 1.49, 0.024 +20001201, 0.51, 1.58, -0.68, 0.025 +20001204, 0.35, -1.58, 0.91, 0.025 +20001205, 4.55, 0.01, -2.89, 0.025 +20001206, -1.78, 0.06, 1.10, 0.025 +20001207, -0.59, 0.09, 0.43, 0.025 +20001208, 2.79, 0.65, -1.43, 0.025 +20001211, 1.15, 0.22, -0.95, 0.025 +20001212, -1.07, -0.56, 0.55, 0.025 +20001213, -1.14, -0.26, 1.11, 0.025 +20001214, -1.80, 0.14, 1.04, 0.025 +20001215, -1.96, 0.30, 1.63, 0.025 +20001218, 0.60, -0.63, 1.31, 0.025 +20001219, -1.63, -0.43, 2.11, 0.025 +20001220, -3.59, -0.95, 3.05, 0.025 +20001221, 0.54, -0.18, 0.31, 0.025 +20001222, 3.06, 0.73, -2.11, 0.025 +20001226, 0.55, -0.45, 0.74, 0.025 +20001227, 1.36, 0.76, -0.31, 0.025 +20001228, 0.88, 1.80, -0.68, 0.025 +20001229, -1.23, -0.22, 1.43, 0.025 +20010102, -3.52, -0.29, 1.96, 0.026 +20010103, 5.39, 0.60, -4.15, 0.026 +20010104, -1.30, 0.72, 0.22, 0.026 +20010105, -2.98, 0.29, 2.19, 0.026 +20010108, -0.36, -0.53, 0.96, 0.026 +20010109, 0.51, 0.50, -0.24, 0.026 +20010110, 1.44, 0.81, -1.31, 0.026 +20010111, 1.39, 1.63, -2.85, 0.026 +20010112, -0.40, 1.23, -0.55, 0.026 +20010116, 0.68, 1.08, -0.23, 0.026 +20010117, 0.37, 0.17, -0.83, 0.026 +20010118, 1.16, -0.09, -1.37, 0.026 +20010119, -0.55, -0.17, -0.27, 0.026 +20010122, -0.01, -0.46, 1.11, 0.026 +20010123, 1.57, 0.45, -0.42, 0.026 +20010124, 0.34, -0.39, -0.35, 0.026 +20010125, -0.81, -0.68, 1.59, 0.026 +20010126, -0.11, 0.32, -0.21, 0.026 +20010129, 0.90, 0.66, -0.32, 0.026 +20010130, 0.63, -0.11, -0.21, 0.026 +20010131, -0.72, 0.42, 0.28, 0.026 +20010201, 0.39, -0.26, 0.80, 0.020 +20010202, -1.90, -0.31, 2.21, 0.020 +20010205, 0.17, -0.50, 1.05, 0.020 +20010206, 0.04, 1.05, -0.49, 0.020 +20010207, -0.86, 0.82, 1.18, 0.020 +20010208, -0.67, -0.31, 0.78, 0.020 +20010209, -1.42, -0.14, 1.20, 0.020 +20010212, 1.10, 0.16, 0.04, 0.020 +20010213, -0.90, 0.16, 1.01, 0.020 +20010214, -0.04, 0.45, -0.41, 0.020 +20010215, 0.93, 0.30, -0.86, 0.020 +20010216, -1.93, -0.60, 1.88, 0.020 +20010220, -1.93, 0.18, 1.41, 0.020 +20010221, -1.84, 0.06, 0.93, 0.020 +20010222, -0.48, -1.04, 0.59, 0.020 +20010223, -0.38, 0.34, -0.35, 0.020 +20010226, 1.91, -0.33, -0.01, 0.020 +20010227, -1.17, -1.21, 1.64, 0.020 +20010228, -1.48, 0.44, 0.82, 0.020 +20010301, 0.02, -0.18, -0.07, 0.019 +20010302, -0.53, 0.40, 1.15, 0.019 +20010305, 0.54, -0.68, 0.17, 0.019 +20010306, 1.06, 0.29, -1.02, 0.019 +20010307, 0.58, -0.10, 0.64, 0.019 +20010308, -0.14, -0.72, 0.99, 0.019 +20010309, -2.50, 0.22, 2.01, 0.019 +20010312, -4.34, 0.60, 2.39, 0.019 +20010313, 1.61, -0.17, -1.49, 0.019 +20010314, -2.50, 0.79, 0.10, 0.019 +20010315, 0.34, -0.64, 0.30, 0.019 +20010316, -2.11, -0.37, 1.27, 0.019 +20010319, 1.86, -0.15, -1.16, 0.019 +20010320, -2.40, 0.67, 1.34, 0.019 +20010321, -1.88, -0.07, 0.67, 0.019 +20010322, -0.43, 0.35, -1.41, 0.019 +20010323, 2.08, 0.10, -1.23, 0.019 +20010326, 1.09, -1.03, 0.61, 0.019 +20010327, 2.40, -0.49, -1.54, 0.019 +20010328, -2.58, 0.00, 1.89, 0.019 +20010329, -0.53, -0.17, 1.51, 0.019 +20010330, 1.19, 1.66, -0.60, 0.019 +20010402, -1.60, -1.69, 1.49, 0.020 +20010403, -3.69, 0.06, 2.05, 0.020 +20010404, -0.39, -0.27, 0.81, 0.020 +20010405, 4.68, 0.22, -3.30, 0.020 +20010406, -2.07, 0.37, 0.21, 0.020 +20010409, 0.87, 0.24, -0.11, 0.020 +20010410, 2.87, -0.35, -1.36, 0.020 +20010411, -0.10, -0.16, -0.65, 0.020 +20010412, 1.57, 0.24, -1.31, 0.020 +20010416, -0.47, -0.36, 0.67, 0.020 +20010417, 1.10, 0.15, -0.22, 0.020 +20010418, 3.92, -1.50, -2.54, 0.020 +20010419, 1.48, 0.34, -1.38, 0.020 +20010420, -0.87, 0.10, 0.16, 0.020 +20010423, -1.72, 0.34, 1.22, 0.020 +20010424, -1.15, 1.07, 1.00, 0.020 +20010425, 1.68, 0.77, -0.90, 0.020 +20010426, 0.45, 0.26, 0.26, 0.020 +20010427, 1.47, -0.09, -0.44, 0.020 +20010430, 0.03, 0.73, -0.51, 0.020 +20010501, 1.37, 0.05, -0.73, 0.015 +20010502, 0.33, 0.50, -0.95, 0.015 +20010503, -1.58, 0.26, 0.92, 0.015 +20010504, 1.45, -0.15, 0.01, 0.015 +20010507, -0.34, -0.07, 0.23, 0.015 +20010508, -0.09, 0.60, 0.15, 0.015 +20010509, -0.49, 0.08, 0.48, 0.015 +20010510, -0.10, 0.10, 0.58, 0.015 +20010511, -0.74, 0.21, 0.76, 0.015 +20010514, 0.11, -0.27, 0.68, 0.015 +20010515, 0.06, 0.49, 0.18, 0.015 +20010516, 2.78, -1.11, -1.15, 0.015 +20010517, 0.52, 0.75, -0.41, 0.015 +20010518, 0.22, 0.18, -0.01, 0.015 +20010521, 1.87, 0.18, -1.41, 0.015 +20010522, -0.15, 0.31, 0.23, 0.015 +20010523, -1.71, -0.08, 0.73, 0.015 +20010524, 0.41, 0.48, -0.44, 0.015 +20010525, -1.04, 0.81, 0.32, 0.015 +20010529, -1.06, -0.34, 1.21, 0.015 +20010530, -1.74, -0.23, 1.73, 0.015 +20010531, 0.73, -0.28, -0.16, 0.015 +20010601, 0.54, 0.73, -0.31, 0.013 +20010604, 0.49, 0.68, -0.19, 0.013 +20010605, 1.45, 0.39, -1.19, 0.013 +20010606, -0.97, 0.04, 0.12, 0.013 +20010607, 0.54, 0.23, -1.12, 0.013 +20010608, -0.99, 0.07, 0.66, 0.013 +20010611, -0.98, 0.04, 0.75, 0.013 +20010612, 0.02, -0.12, 0.08, 0.013 +20010613, -1.06, 0.57, 0.72, 0.013 +20010614, -1.96, 0.02, 0.76, 0.013 +20010615, -0.46, 0.00, 0.39, 0.013 +20010618, -0.63, -0.96, 1.08, 0.013 +20010619, 0.21, -0.56, 0.04, 0.013 +20010620, 1.07, 0.31, -0.56, 0.013 +20010621, 0.98, -0.25, -0.13, 0.013 +20010622, -1.00, -0.31, 0.00, 0.013 +20010625, -0.54, 0.42, -0.33, 0.013 +20010626, -0.04, 1.42, -0.17, 0.013 +20010627, -0.22, 0.85, -0.04, 0.013 +20010628, 1.31, 0.06, -0.86, 0.013 +20010629, 0.35, 2.47, -0.87, 0.013 +20010702, 0.56, -3.32, 1.31, 0.014 +20010703, -0.21, -0.03, 0.13, 0.014 +20010705, -1.24, 0.23, 0.47, 0.014 +20010706, -2.29, 0.36, 0.95, 0.014 +20010709, 0.59, -0.31, 0.77, 0.014 +20010710, -1.49, -0.80, 2.15, 0.014 +20010711, -0.18, -0.48, 0.28, 0.014 +20010712, 2.44, 0.19, -0.86, 0.014 +20010713, 0.54, 0.26, -0.49, 0.014 +20010716, -1.16, -0.20, 1.19, 0.014 +20010717, 1.05, 0.46, -0.74, 0.014 +20010718, -0.69, -0.70, 0.59, 0.014 +20010719, 0.51, 0.65, -0.71, 0.014 +20010720, -0.33, 0.71, -0.16, 0.014 +20010723, -1.55, 0.62, 0.34, 0.014 +20010724, -1.70, 0.08, 0.15, 0.014 +20010725, 1.37, -1.03, -0.09, 0.014 +20010726, 1.19, -0.37, 0.08, 0.014 +20010727, 0.26, -0.39, 0.05, 0.014 +20010730, -0.12, 0.04, 0.18, 0.014 +20010731, 0.50, -0.50, 0.13, 0.014 +20010801, 0.48, 0.38, -0.08, 0.013 +20010802, 0.33, -0.29, 0.06, 0.013 +20010803, -0.49, 0.20, 0.10, 0.013 +20010806, -1.16, -0.21, 0.81, 0.013 +20010807, 0.21, -0.38, 0.18, 0.013 +20010808, -1.72, 0.08, 0.78, 0.013 +20010809, -0.06, 0.41, -0.52, 0.013 +20010810, 0.44, -0.40, 0.11, 0.013 +20010813, 0.23, 0.18, -0.14, 0.013 +20010814, -0.30, 0.51, 0.45, 0.013 +20010815, -0.75, 0.52, 0.15, 0.013 +20010816, 0.21, -0.01, 0.25, 0.013 +20010817, -1.63, 0.54, 0.36, 0.013 +20010820, 0.71, 0.04, -0.57, 0.013 +20010821, -1.22, -0.22, 0.78, 0.013 +20010822, 0.71, 0.33, -0.68, 0.013 +20010823, -0.31, -0.29, -0.10, 0.013 +20010824, 1.84, -0.12, -0.82, 0.013 +20010827, -0.42, 0.33, -0.47, 0.013 +20010828, -1.46, 0.18, 0.88, 0.013 +20010829, -0.98, 0.87, 0.09, 0.013 +20010830, -1.60, 0.32, 0.63, 0.013 +20010831, 0.42, -0.38, 0.29, 0.013 +20010904, -0.12, -0.39, 0.65, 0.018 +20010905, -0.32, -0.65, 0.54, 0.018 +20010906, -2.13, 0.27, 0.44, 0.018 +20010907, -1.83, 0.38, -0.52, 0.018 +20010910, 0.37, -1.08, -0.49, 0.018 +20010917, -5.03, 0.25, -0.80, 0.018 +20010918, -0.82, -1.45, 1.19, 0.018 +20010919, -1.67, -0.79, 0.00, 0.018 +20010920, -3.05, -0.82, -0.10, 0.018 +20010921, -1.96, -0.39, -0.58, 0.018 +20010924, 3.82, -0.08, -0.29, 0.018 +20010925, 0.74, -0.61, 0.75, 0.018 +20010926, -0.67, -0.82, 0.24, 0.018 +20010927, 1.10, -1.06, 0.40, 0.018 +20010928, 2.25, 0.42, 0.52, 0.018 +20011001, -0.45, -1.03, -0.18, 0.010 +20011002, 1.17, -0.34, -0.28, 0.010 +20011003, 2.28, 0.53, -1.10, 0.010 +20011004, -0.12, 1.52, -0.75, 0.010 +20011005, 0.04, 0.23, -1.22, 0.010 +20011008, -0.80, 0.29, 0.39, 0.010 +20011009, -0.51, -0.35, 0.02, 0.010 +20011010, 2.35, 0.32, -0.57, 0.010 +20011011, 1.73, 0.24, -0.38, 0.010 +20011012, -0.57, 0.46, -0.40, 0.010 +20011015, -0.09, 0.55, -0.25, 0.010 +20011016, 0.78, 0.46, -0.69, 0.010 +20011017, -2.02, 0.21, 0.16, 0.010 +20011018, -0.73, 0.35, -0.19, 0.010 +20011019, 0.54, 0.69, -0.75, 0.010 +20011022, 1.51, -0.39, -0.47, 0.010 +20011023, -0.51, 0.04, -0.16, 0.010 +20011024, 0.08, 0.54, -1.11, 0.010 +20011025, 1.42, 0.70, -1.34, 0.010 +20011026, 0.41, 0.29, 0.10, 0.010 +20011029, -2.33, 0.38, 0.81, 0.010 +20011030, -1.76, 0.40, 0.67, 0.010 +20011031, 0.18, 1.36, -0.25, 0.010 +20011101, 2.10, -0.56, -0.72, 0.008 +20011102, 0.18, -0.82, 0.48, 0.008 +20011105, 1.42, -0.60, -0.32, 0.008 +20011106, 1.44, -0.39, -0.05, 0.008 +20011107, -0.23, 0.06, -0.35, 0.008 +20011108, 0.07, -0.40, 0.48, 0.008 +20011109, 0.07, 0.00, -0.13, 0.008 +20011112, -0.07, 0.77, -0.43, 0.008 +20011113, 1.86, -0.41, -0.01, 0.008 +20011114, 0.34, 0.44, 0.54, 0.008 +20011115, 0.00, -1.08, 1.37, 0.008 +20011116, -0.25, 0.52, 0.49, 0.008 +20011119, 1.15, 0.22, -0.35, 0.008 +20011120, -0.80, 0.10, 0.15, 0.008 +20011121, -0.48, 0.41, -0.29, 0.008 +20011123, 1.17, 0.00, 0.00, 0.008 +20011126, 0.72, -0.14, -0.16, 0.008 +20011127, -0.55, 0.58, 0.23, 0.008 +20011128, -1.78, 0.12, 1.02, 0.008 +20011129, 1.15, 0.97, -0.48, 0.008 +20011130, -0.14, -0.20, 0.28, 0.008 +20011203, -0.86, -0.07, 0.32, 0.007 +20011204, 1.44, 0.69, -0.40, 0.007 +20011205, 2.31, 0.07, -0.63, 0.007 +20011206, -0.12, 0.21, 0.78, 0.007 +20011207, -0.74, 0.76, 0.03, 0.007 +20011210, -1.52, 0.67, -0.36, 0.007 +20011211, -0.20, 0.45, -0.13, 0.007 +20011212, 0.04, 0.16, -0.04, 0.007 +20011213, -1.51, 0.41, 0.23, 0.007 +20011214, 0.31, 0.35, 0.50, 0.007 +20011217, 1.05, 0.22, 0.10, 0.007 +20011218, 0.84, 0.43, -0.72, 0.007 +20011219, 0.43, -0.74, -0.36, 0.007 +20011220, -0.93, -1.22, 1.26, 0.007 +20011221, 0.57, 1.31, 0.12, 0.007 +20011224, 0.02, 0.28, 0.06, 0.007 +20011226, 0.50, 0.53, -0.28, 0.007 +20011227, 0.69, 0.03, -0.37, 0.007 +20011228, 0.41, -0.36, 0.12, 0.007 +20011231, -1.04, 0.22, 0.79, 0.007 +20020102, 0.42, -0.61, 0.13, 0.007 +20020103, 0.99, 0.88, -0.54, 0.007 +20020104, 0.70, 0.13, 0.31, 0.007 +20020107, -0.70, -0.44, 0.87, 0.007 +20020108, -0.23, 1.17, 0.24, 0.007 +20020109, -0.45, 0.19, -0.15, 0.007 +20020110, 0.08, -0.08, 0.26, 0.007 +20020111, -0.86, -0.08, 0.29, 0.007 +20020114, -0.85, -0.57, -0.05, 0.007 +20020115, 0.67, -0.47, 0.20, 0.007 +20020116, -1.62, 0.12, 0.59, 0.007 +20020117, 1.06, 0.38, -0.63, 0.007 +20020118, -1.08, -0.56, 0.88, 0.007 +20020122, -0.81, -0.22, 0.09, 0.007 +20020123, 0.92, 0.69, -0.16, 0.007 +20020124, 0.40, -0.30, 0.31, 0.007 +20020125, 0.09, -0.24, 0.38, 0.007 +20020128, 0.05, 0.12, 0.62, 0.007 +20020129, -2.54, 1.36, 0.22, 0.007 +20020130, 1.05, 0.28, -0.76, 0.007 +20020131, 1.35, -0.59, 0.21, 0.007 +20020201, -0.71, 0.37, -0.31, 0.007 +20020204, -2.37, 0.72, 0.16, 0.007 +20020205, -0.35, 0.29, -0.43, 0.007 +20020206, -0.78, -0.37, -0.11, 0.007 +20020207, -0.41, -1.17, 0.99, 0.007 +20020208, 1.59, -0.29, 0.32, 0.007 +20020211, 1.33, -0.25, -0.48, 0.007 +20020212, -0.28, 0.68, -0.49, 0.007 +20020213, 0.99, -0.02, -0.12, 0.007 +20020214, -0.24, -0.59, -0.16, 0.007 +20020215, -1.12, 0.90, 0.15, 0.007 +20020219, -1.94, 0.27, 0.52, 0.007 +20020220, 1.33, -0.35, 0.39, 0.007 +20020221, -1.52, -0.49, 0.70, 0.007 +20020222, 0.75, 0.43, 0.00, 0.007 +20020225, 1.66, -1.38, 0.43, 0.007 +20020226, 0.11, 0.28, 0.10, 0.007 +20020227, 0.08, -0.01, 0.43, 0.007 +20020228, -0.31, -0.27, 0.53, 0.007 +20020301, 2.22, -0.50, -0.40, 0.007 +20020304, 1.98, -0.42, -0.29, 0.007 +20020305, -0.54, 0.63, -0.02, 0.007 +20020306, 1.39, -0.10, 0.30, 0.007 +20020307, -0.42, 0.58, 0.14, 0.007 +20020308, 0.72, 0.41, -0.12, 0.007 +20020311, 0.29, 0.11, -0.04, 0.007 +20020312, -0.28, 0.32, -0.13, 0.007 +20020313, -0.91, 0.51, 0.03, 0.007 +20020314, -0.05, 0.43, -0.06, 0.007 +20020315, 1.06, -1.01, 0.31, 0.007 +20020318, 0.09, 0.65, 0.05, 0.007 +20020319, 0.34, 0.11, -0.14, 0.007 +20020320, -1.50, 0.45, 0.65, 0.007 +20020321, 0.31, 1.06, -0.33, 0.007 +20020322, -0.42, -0.18, 0.27, 0.007 +20020325, -1.45, 0.62, -0.02, 0.007 +20020326, 0.60, 0.49, -0.13, 0.007 +20020327, 0.55, -0.06, 0.64, 0.007 +20020328, 0.29, -0.16, 0.31, 0.007 +20020401, -0.12, -0.08, -0.11, 0.007 +20020402, -0.92, 0.25, 0.19, 0.007 +20020403, -0.98, 0.31, 0.42, 0.007 +20020404, 0.12, -0.09, 0.52, 0.007 +20020405, -0.26, -0.21, 0.83, 0.007 +20020408, 0.35, 0.52, 0.14, 0.007 +20020409, -0.60, 0.44, 0.69, 0.007 +20020410, 1.15, 0.67, -0.30, 0.007 +20020411, -2.22, 0.84, 0.79, 0.007 +20020412, 0.84, 1.04, 0.12, 0.007 +20020415, -0.67, 0.46, -0.08, 0.007 +20020416, 2.26, -0.61, 0.59, 0.007 +20020417, -0.24, -0.45, 0.30, 0.007 +20020418, -0.14, 0.49, -0.61, 0.007 +20020419, 0.07, -0.25, 0.23, 0.007 +20020422, -1.50, 0.85, -0.53, 0.007 +20020423, -0.52, 0.16, 0.46, 0.007 +20020424, -0.66, 0.05, 0.47, 0.007 +20020425, -0.11, 0.18, 0.00, 0.007 +20020426, -1.41, -0.01, 0.28, 0.007 +20020429, -0.88, 0.92, -0.58, 0.007 +20020430, 1.20, 0.55, 0.11, 0.007 +20020501, 0.74, -0.97, 0.70, 0.007 +20020502, -0.21, 0.54, 0.30, 0.007 +20020503, -0.96, 0.59, 0.72, 0.007 +20020506, -1.84, -0.01, 0.92, 0.007 +20020507, -0.36, -0.81, 0.81, 0.007 +20020508, 3.57, -0.86, -1.99, 0.007 +20020509, -1.43, -0.28, 0.70, 0.007 +20020510, -1.64, -0.13, 0.51, 0.007 +20020513, 1.75, -0.36, -1.02, 0.007 +20020514, 2.20, 0.52, -1.16, 0.007 +20020515, -0.40, 0.30, 0.60, 0.007 +20020516, 0.35, -0.77, -0.78, 0.007 +20020517, 0.69, -0.18, -0.44, 0.007 +20020520, -1.28, -0.18, 1.04, 0.007 +20020521, -1.16, -0.31, 0.26, 0.007 +20020522, 0.37, -0.64, -0.13, 0.007 +20020523, 1.05, 0.01, -0.07, 0.007 +20020524, -1.17, -0.35, 0.66, 0.007 +20020528, -0.75, 0.69, -0.41, 0.007 +20020529, -0.67, -0.18, 0.22, 0.007 +20020530, -0.24, 0.23, -0.06, 0.007 +20020531, 0.19, -0.17, 0.22, 0.007 +20020603, -2.43, -0.72, 1.30, 0.006 +20020604, -0.11, 0.08, -0.71, 0.006 +20020605, 0.83, -0.17, -0.31, 0.006 +20020606, -1.91, -0.32, 0.99, 0.006 +20020607, 0.08, 0.78, -0.10, 0.006 +20020610, 0.21, -0.27, -0.29, 0.006 +20020611, -1.70, 0.56, 0.44, 0.006 +20020612, 0.54, 0.05, -1.33, 0.006 +20020613, -1.10, -0.28, 0.42, 0.006 +20020614, -0.07, 0.72, -0.70, 0.006 +20020617, 2.77, -0.14, -0.94, 0.006 +20020618, 0.05, -0.41, 0.59, 0.006 +20020619, -1.63, -0.03, 0.50, 0.006 +20020620, -1.37, 1.29, -0.13, 0.006 +20020621, -1.53, 1.23, 1.37, 0.006 +20020624, 0.18, -0.08, -0.53, 0.006 +20020625, -1.69, 0.49, 0.06, 0.006 +20020626, -0.27, 1.09, -1.09, 0.006 +20020627, 1.68, 0.39, -1.18, 0.006 +20020628, 0.12, 0.08, 1.83, 0.006 +20020701, -2.32, -0.25, 0.37, 0.007 +20020702, -2.27, -1.01, 0.03, 0.007 +20020703, 0.41, -1.27, -0.16, 0.007 +20020705, 3.55, -0.81, -0.74, 0.007 +20020708, -1.21, -0.20, 0.34, 0.007 +20020709, -2.36, 1.31, 1.00, 0.007 +20020710, -3.03, 1.36, -0.19, 0.007 +20020711, 0.56, -1.34, -0.50, 0.007 +20020712, -0.55, 0.00, -0.53, 0.007 +20020715, -0.45, -0.57, -0.45, 0.007 +20020716, -1.50, 1.34, -0.91, 0.007 +20020717, 0.63, 0.02, -0.31, 0.007 +20020718, -2.70, -0.52, 0.99, 0.007 +20020719, -3.38, 1.08, 0.10, 0.007 +20020722, -3.18, 1.23, 0.41, 0.007 +20020723, -2.86, -0.26, -1.59, 0.007 +20020724, 5.43, -1.71, -1.67, 0.007 +20020725, -0.52, 0.24, -0.06, 0.007 +20020726, 1.49, -0.57, 0.23, 0.007 +20020729, 5.39, -0.99, -0.14, 0.007 +20020730, 0.42, -0.69, -0.02, 0.007 +20020731, 0.65, -2.53, 0.06, 0.007 +20020801, -2.68, 1.50, 1.03, 0.006 +20020802, -2.36, -0.30, -0.67, 0.006 +20020805, -3.34, 1.05, 0.52, 0.006 +20020806, 3.03, 0.19, -0.51, 0.006 +20020807, 1.81, -1.04, -0.39, 0.006 +20020808, 3.05, -1.55, -0.53, 0.006 +20020809, 0.30, -0.66, 0.04, 0.006 +20020812, -0.43, 0.41, -0.15, 0.006 +20020813, -2.15, -0.33, 0.55, 0.006 +20020814, 3.76, -0.73, -0.91, 0.006 +20020815, 1.17, -1.43, 0.62, 0.006 +20020816, 0.06, 1.22, -0.15, 0.006 +20020819, 2.17, -0.85, -0.05, 0.006 +20020820, -1.30, 0.26, 0.82, 0.006 +20020821, 1.36, 0.51, 0.34, 0.006 +20020822, 1.32, -0.45, -0.33, 0.006 +20020823, -2.25, 0.27, -0.01, 0.006 +20020826, 0.83, 0.63, 0.40, 0.006 +20020827, -1.55, -1.10, 0.94, 0.006 +20020828, -1.79, -0.32, 0.27, 0.006 +20020829, 0.21, 0.60, -0.45, 0.006 +20020830, -0.28, -0.41, 0.88, 0.006 +20020903, -3.95, 1.07, 0.62, 0.007 +20020904, 1.83, 0.69, -0.13, 0.007 +20020905, -1.62, -0.56, 0.09, 0.007 +20020906, 1.82, 0.48, 0.13, 0.007 +20020909, 0.92, -0.61, -0.52, 0.007 +20020910, 0.66, -0.03, -0.25, 0.007 +20020911, -0.03, -0.24, 0.28, 0.007 +20020912, -2.37, 0.83, 0.35, 0.007 +20020913, 0.38, 0.41, 0.04, 0.007 +20020916, 0.02, -0.67, -0.30, 0.007 +20020917, -1.91, 0.19, 0.60, 0.007 +20020918, -0.45, -0.44, 0.20, 0.007 +20020919, -2.96, 0.26, 0.34, 0.007 +20020920, 0.19, -0.05, 0.27, 0.007 +20020923, -1.48, -0.83, 0.09, 0.007 +20020924, -1.54, 1.06, -0.61, 0.007 +20020925, 2.44, 0.05, -1.11, 0.007 +20020926, 1.74, -0.81, 1.02, 0.007 +20020927, -2.98, 0.52, 0.64, 0.007 +20020930, -1.28, 1.47, -0.40, 0.007 +20021001, 3.56, -1.88, -0.50, 0.006 +20021002, -2.31, 0.51, 0.34, 0.006 +20021003, -1.14, 0.64, -0.15, 0.006 +20021004, -2.25, 0.18, -0.20, 0.006 +20021007, -2.00, -0.28, -0.36, 0.006 +20021008, 1.54, -0.38, -1.81, 0.006 +20021009, -2.77, -0.03, -1.04, 0.006 +20021010, 3.41, -2.03, 0.28, 0.006 +20021011, 3.74, -1.43, -0.30, 0.006 +20021014, 0.77, 0.23, -1.19, 0.006 +20021015, 4.57, -1.10, 0.22, 0.006 +20021016, -2.42, 0.14, 0.20, 0.006 +20021017, 2.40, 0.83, -0.62, 0.006 +20021018, 0.49, -0.15, -0.48, 0.006 +20021021, 1.65, -0.88, 0.56, 0.006 +20021022, -1.11, -0.60, 0.63, 0.006 +20021023, 0.76, 0.71, 0.19, 0.006 +20021024, -1.44, 0.68, 0.28, 0.006 +20021025, 1.69, 0.14, -0.48, 0.006 +20021028, -0.83, 0.00, -0.25, 0.006 +20021029, -0.87, 1.05, -0.18, 0.006 +20021030, 1.03, 0.43, -0.63, 0.006 +20021031, -0.41, 0.25, 0.36, 0.006 +20021101, 1.73, 0.80, -0.54, 0.006 +20021104, 0.79, 0.32, -0.55, 0.006 +20021105, 0.63, -1.03, 0.26, 0.006 +20021106, 0.98, 0.51, 0.41, 0.006 +20021107, -2.22, 0.44, -0.29, 0.006 +20021108, -0.92, -0.14, 0.28, 0.006 +20021111, -2.09, -0.42, 0.49, 0.006 +20021112, 0.83, 0.51, -0.25, 0.006 +20021113, 0.02, 0.47, -0.30, 0.006 +20021114, 2.43, 0.26, -0.90, 0.006 +20021115, 0.61, -0.78, -0.11, 0.006 +20021118, -1.00, 0.29, -0.17, 0.006 +20021119, -0.48, -0.27, 0.27, 0.006 +20021120, 1.93, 0.57, -0.94, 0.006 +20021121, 2.16, -0.32, 0.05, 0.006 +20021122, -0.22, 0.58, 0.24, 0.006 +20021125, 0.36, 0.85, 0.06, 0.006 +20021126, -2.03, 0.57, 0.58, 0.006 +20021127, 2.78, 0.10, -0.14, 0.006 +20021129, -0.32, -0.65, 0.53, 0.006 +20021202, -0.10, 0.63, -0.12, 0.005 +20021203, -1.54, 0.30, -0.71, 0.005 +20021204, -0.38, -0.34, 0.50, 0.005 +20021205, -1.11, 0.11, 0.70, 0.005 +20021206, 0.61, -0.10, -0.11, 0.005 +20021209, -2.26, -0.23, 0.30, 0.005 +20021210, 1.44, 0.31, -0.13, 0.005 +20021211, 0.10, -0.27, 0.32, 0.005 +20021212, -0.27, 0.63, 0.30, 0.005 +20021213, -1.37, -0.43, 0.42, 0.005 +20021216, 2.21, -0.50, -0.34, 0.005 +20021217, -0.76, -0.29, 0.43, 0.005 +20021218, -1.34, -0.42, 0.07, 0.005 +20021219, -0.70, 0.49, 0.38, 0.005 +20021220, 1.23, -0.47, -0.41, 0.005 +20021223, 0.24, 0.44, -0.06, 0.005 +20021224, -0.52, 0.18, 0.05, 0.005 +20021226, -0.19, 0.33, 0.09, 0.005 +20021227, -1.53, 0.42, 0.01, 0.005 +20021230, 0.34, -0.86, 0.06, 0.005 +20021231, 0.12, 0.00, 0.57, 0.005 +20030102, 3.14, -0.86, -0.32, 0.005 +20030103, -0.11, -0.42, 0.04, 0.005 +20030106, 2.13, -0.60, -0.41, 0.005 +20030107, -0.63, 0.28, -0.17, 0.005 +20030108, -1.34, 0.10, 0.43, 0.005 +20030109, 1.89, -0.11, -0.48, 0.005 +20030110, 0.04, 0.05, 0.18, 0.005 +20030113, -0.12, 0.14, 0.19, 0.005 +20030114, 0.55, 0.08, -0.17, 0.005 +20030115, -1.32, 0.67, 0.56, 0.005 +20030116, -0.34, 0.22, 0.18, 0.005 +20030117, -1.40, -0.39, 0.70, 0.005 +20030121, -1.53, 0.52, -0.35, 0.005 +20030122, -0.94, 0.51, -0.49, 0.005 +20030123, 0.99, 0.10, -0.65, 0.005 +20030124, -2.78, 0.50, 0.57, 0.005 +20030127, -1.65, 0.23, -0.12, 0.005 +20030128, 1.26, 0.08, -0.45, 0.005 +20030129, 0.63, -0.19, -0.14, 0.005 +20030130, -2.13, 0.74, -0.37, 0.005 +20030131, 1.28, -0.32, 0.24, 0.005 +20030203, 0.37, -0.69, -0.07, 0.005 +20030204, -1.34, 1.11, -0.19, 0.005 +20030205, -0.49, 0.17, 0.06, 0.005 +20030206, -0.64, 0.02, 0.13, 0.005 +20030207, -1.06, -0.45, -0.25, 0.005 +20030210, 0.69, 0.08, 0.06, 0.005 +20030211, -0.71, 0.33, -0.32, 0.005 +20030212, -1.25, 0.18, 0.11, 0.005 +20030213, -0.26, -0.09, -0.24, 0.005 +20030214, 1.90, -0.78, -0.66, 0.005 +20030218, 1.97, -0.42, -0.13, 0.005 +20030219, -0.70, -0.29, 0.03, 0.005 +20030220, -0.83, 0.86, -0.16, 0.005 +20030221, 1.31, -0.15, -0.07, 0.005 +20030224, -1.78, 0.45, -0.11, 0.005 +20030225, 0.70, 0.11, -0.19, 0.005 +20030226, -1.22, 0.15, 0.44, 0.005 +20030227, 1.15, -0.26, -0.14, 0.005 +20030228, 0.41, -0.69, 0.22, 0.005 +20030303, -0.67, 0.13, 0.42, 0.005 +20030304, -1.44, 0.96, -0.54, 0.005 +20030305, 0.78, -0.90, -0.02, 0.005 +20030306, -0.84, 0.16, 0.02, 0.005 +20030307, 0.76, -0.67, -0.16, 0.005 +20030310, -2.36, 0.83, 0.10, 0.005 +20030311, -0.81, 0.92, -0.70, 0.005 +20030312, 0.32, -0.38, -0.41, 0.005 +20030313, 3.39, -0.94, -0.62, 0.005 +20030314, 0.13, -0.50, 0.15, 0.005 +20030317, 3.41, -0.83, -0.25, 0.005 +20030318, 0.44, 0.48, -0.65, 0.005 +20030319, 0.72, -0.45, -0.23, 0.005 +20030320, 0.28, 0.09, 0.36, 0.005 +20030321, 2.19, -0.85, -0.05, 0.005 +20030324, -3.36, 1.24, 0.18, 0.005 +20030325, 1.21, -0.08, -0.03, 0.005 +20030326, -0.55, -0.17, -0.28, 0.005 +20030327, -0.09, 0.65, -0.01, 0.005 +20030328, -0.48, 0.29, 0.22, 0.005 +20030331, -1.65, 0.73, 0.42, 0.005 +20030401, 1.12, -0.25, 0.24, 0.005 +20030402, 2.60, -0.36, -0.87, 0.005 +20030403, -0.49, 0.40, 0.01, 0.005 +20030404, 0.15, -0.73, 0.39, 0.005 +20030407, 0.18, 0.38, 0.58, 0.005 +20030408, -0.24, -0.29, 0.09, 0.005 +20030409, -1.28, 0.47, 0.77, 0.005 +20030410, 0.52, -0.24, -0.25, 0.005 +20030411, -0.32, 0.01, -0.05, 0.005 +20030414, 1.88, -0.46, 0.00, 0.005 +20030415, 0.62, 0.08, -0.39, 0.005 +20030416, -1.11, 0.56, 0.18, 0.005 +20030417, 1.52, 0.02, -0.04, 0.005 +20030421, -0.11, 0.35, 0.12, 0.005 +20030422, 2.07, -0.90, 0.24, 0.005 +20030423, 0.89, -0.27, 0.31, 0.005 +20030424, -0.81, 0.58, -0.23, 0.005 +20030425, -1.30, 0.66, -0.11, 0.005 +20030428, 1.76, -0.05, -0.11, 0.005 +20030429, 0.34, -0.21, -0.21, 0.005 +20030430, 0.03, 0.73, 0.25, 0.005 +20030501, -0.03, 0.43, -0.26, 0.004 +20030502, 1.56, 0.52, -0.49, 0.004 +20030505, -0.19, 0.82, -0.38, 0.004 +20030506, 0.80, -0.18, 0.04, 0.004 +20030507, -0.46, -0.05, 0.58, 0.004 +20030508, -0.99, 0.50, 0.14, 0.004 +20030509, 1.39, 0.12, -0.22, 0.004 +20030512, 1.25, -0.12, -0.11, 0.004 +20030513, -0.23, 0.47, 0.30, 0.004 +20030514, -0.23, 0.29, 0.01, 0.004 +20030515, 0.74, -0.10, -0.14, 0.004 +20030516, -0.31, -1.59, 1.01, 0.004 +20030519, -2.30, 0.80, 0.04, 0.004 +20030520, -0.12, 0.11, -0.10, 0.004 +20030521, 0.41, -0.22, 0.31, 0.004 +20030522, 0.96, -0.18, -0.08, 0.004 +20030523, 0.26, 0.27, 0.39, 0.004 +20030527, 1.95, 0.45, -1.05, 0.004 +20030528, 0.22, 0.70, -0.41, 0.004 +20030529, -0.26, 1.02, 0.08, 0.004 +20030530, 1.53, 0.26, 0.10, 0.004 +20030602, 0.39, -0.40, 0.75, 0.005 +20030603, 0.39, 0.15, -0.57, 0.005 +20030604, 1.56, 0.14, -0.04, 0.005 +20030605, 0.55, 0.90, -0.75, 0.005 +20030606, -0.33, -0.17, -0.30, 0.005 +20030609, -1.31, -0.20, 0.18, 0.005 +20030610, 0.95, 0.39, 0.10, 0.005 +20030611, 1.29, -0.48, 0.38, 0.005 +20030612, 0.18, 0.05, 0.34, 0.005 +20030613, -1.02, -0.18, 0.12, 0.005 +20030616, 2.15, -0.39, -0.48, 0.005 +20030617, 0.13, 0.21, -0.13, 0.005 +20030618, -0.15, 0.32, -0.23, 0.005 +20030619, -1.49, 0.05, 0.74, 0.005 +20030620, 0.05, -0.19, 0.11, 0.005 +20030623, -1.52, -0.60, 0.23, 0.005 +20030624, 0.19, 0.07, 0.13, 0.005 +20030625, -0.60, 1.07, -0.08, 0.005 +20030626, 1.12, 0.42, -0.51, 0.005 +20030627, -0.84, 0.58, 0.20, 0.005 +20030630, -0.17, -0.11, 0.43, 0.005 +20030701, 0.73, -0.39, -0.15, 0.003 +20030702, 1.28, 1.06, 0.05, 0.003 +20030703, -0.72, 0.26, -0.08, 0.003 +20030707, 1.91, -0.10, 0.26, 0.003 +20030708, 0.51, 1.31, -0.04, 0.003 +20030709, -0.34, 1.02, 0.26, 0.003 +20030710, -1.33, -0.07, -0.23, 0.003 +20030711, 0.92, 0.07, -0.06, 0.003 +20030714, 0.73, 0.18, 0.13, 0.003 +20030715, -0.41, 0.08, -0.04, 0.003 +20030716, -0.64, 0.25, -0.27, 0.003 +20030717, -1.45, -1.27, -0.40, 0.003 +20030718, 1.08, -0.17, 0.02, 0.003 +20030721, -1.42, 0.03, -0.38, 0.003 +20030722, 0.97, 0.33, 0.34, 0.003 +20030723, 0.18, 0.62, -1.00, 0.003 +20030724, -0.65, 0.31, 0.39, 0.003 +20030725, 1.51, -0.64, -0.24, 0.003 +20030728, -0.02, 0.98, 0.36, 0.003 +20030729, -0.57, 0.54, 0.02, 0.003 +20030730, -0.18, 0.27, -0.61, 0.003 +20030731, 0.32, 0.26, 0.40, 0.003 +20030801, -1.06, -0.49, -0.06, 0.003 +20030804, 0.11, -0.66, -0.30, 0.003 +20030805, -1.71, 0.38, 0.01, 0.003 +20030806, 0.02, -1.03, 0.46, 0.003 +20030807, 0.57, -0.48, -0.47, 0.003 +20030808, 0.33, -0.46, 0.16, 0.003 +20030811, 0.43, 0.72, -0.03, 0.003 +20030812, 1.09, 0.51, 0.05, 0.003 +20030813, -0.50, 0.69, 0.06, 0.003 +20030814, 0.62, 0.11, 0.44, 0.003 +20030815, 0.10, 0.19, -0.14, 0.003 +20030818, 1.03, 0.85, 0.09, 0.003 +20030819, 0.43, 0.99, 0.61, 0.003 +20030820, -0.14, 0.34, 0.06, 0.003 +20030821, 0.47, 0.61, 0.41, 0.003 +20030822, -1.06, -0.58, 0.12, 0.003 +20030825, -0.04, -0.07, -0.31, 0.003 +20030826, 0.29, 0.16, 0.19, 0.003 +20030827, 0.17, 0.82, 0.06, 0.003 +20030828, 0.70, 0.26, 0.22, 0.003 +20030829, 0.53, -0.32, 0.33, 0.003 +20030902, 1.40, 0.48, 0.02, 0.004 +20030903, 0.42, 0.32, 0.14, 0.004 +20030904, 0.22, 0.46, -0.17, 0.004 +20030905, -0.62, -0.05, 0.20, 0.004 +20030908, 1.07, 0.62, -0.12, 0.004 +20030909, -0.79, 0.33, -0.22, 0.004 +20030910, -1.37, -0.64, -0.60, 0.004 +20030911, 0.62, 0.64, 0.03, 0.004 +20030912, 0.23, 0.15, 0.16, 0.004 +20030915, -0.35, 0.24, -0.07, 0.004 +20030916, 1.40, 0.10, 0.06, 0.004 +20030917, -0.26, 0.19, 0.18, 0.004 +20030918, 1.25, -0.57, 0.25, 0.004 +20030919, -0.23, 0.49, 0.02, 0.004 +20030922, -1.30, 0.16, 0.14, 0.004 +20030923, 0.65, 0.57, -0.10, 0.004 +20030924, -1.88, -0.20, 0.08, 0.004 +20030925, -0.81, -1.65, -0.21, 0.004 +20030926, -0.84, -1.26, 0.04, 0.004 +20030929, 0.98, 0.51, 0.02, 0.004 +20030930, -0.96, -0.05, 0.15, 0.004 +20031001, 2.16, 0.38, 0.09, 0.003 +20031002, 0.31, 0.15, 0.07, 0.003 +20031003, 1.02, 0.69, -0.01, 0.003 +20031006, 0.49, 0.37, 0.36, 0.003 +20031007, 0.51, 0.34, 0.10, 0.003 +20031008, -0.48, -0.29, 0.19, 0.003 +20031009, 0.55, 0.27, 0.38, 0.003 +20031010, -0.08, -0.43, 0.41, 0.003 +20031013, 0.81, 0.79, 0.09, 0.003 +20031014, 0.44, 0.48, 0.16, 0.003 +20031015, -0.36, -0.28, -0.04, 0.003 +20031016, 0.35, 0.10, 0.04, 0.003 +20031017, -1.11, -0.52, 0.05, 0.003 +20031020, 0.41, -0.11, -0.25, 0.003 +20031021, 0.24, 0.68, -0.31, 0.003 +20031022, -1.52, -0.68, -0.02, 0.003 +20031023, 0.22, -0.74, -0.22, 0.003 +20031024, -0.45, -0.41, -0.01, 0.003 +20031027, 0.40, 1.16, 0.30, 0.003 +20031028, 1.59, 0.50, -0.22, 0.003 +20031029, 0.28, 0.79, 0.31, 0.003 +20031030, -0.11, -0.12, 0.27, 0.003 +20031031, 0.28, -0.56, -0.09, 0.003 +20031103, 0.93, 0.68, 0.41, 0.004 +20031104, -0.45, 0.74, 0.41, 0.004 +20031105, -0.04, 0.23, -0.09, 0.004 +20031106, 0.58, 0.11, 0.10, 0.004 +20031107, -0.33, 0.36, 0.30, 0.004 +20031110, -0.74, -1.02, -0.02, 0.004 +20031111, -0.21, -0.59, -0.10, 0.004 +20031112, 1.33, 1.01, -0.21, 0.004 +20031113, 0.03, 0.20, -0.21, 0.004 +20031114, -0.83, -0.62, -0.07, 0.004 +20031117, -0.72, -0.68, -0.19, 0.004 +20031118, -0.87, 0.12, 0.09, 0.004 +20031119, 0.76, 0.06, -0.02, 0.004 +20031120, -0.77, 0.13, 0.03, 0.004 +20031121, 0.21, 0.15, 0.60, 0.004 +20031124, 1.71, 0.74, -0.03, 0.004 +20031125, 0.31, 0.23, 0.59, 0.004 +20031126, 0.40, -0.07, 0.42, 0.004 +20031128, 0.11, 0.26, -0.17, 0.004 +20031201, 1.11, 0.40, -0.12, 0.004 +20031202, -0.27, 0.13, 0.13, 0.004 +20031203, -0.34, -1.19, 0.42, 0.004 +20031204, 0.26, -0.41, -0.23, 0.004 +20031205, -0.79, -0.06, -0.07, 0.004 +20031208, 0.65, -0.17, 0.36, 0.004 +20031209, -0.95, -0.60, 0.19, 0.004 +20031210, -0.29, -1.02, -0.23, 0.004 +20031211, 1.34, 1.23, 0.15, 0.004 +20031212, 0.31, 0.54, 0.31, 0.004 +20031215, -0.73, -1.39, 0.16, 0.004 +20031216, 0.50, -0.31, 0.02, 0.004 +20031217, 0.15, -0.05, -0.10, 0.004 +20031218, 1.24, 0.27, 0.22, 0.004 +20031219, -0.04, -0.13, 0.40, 0.004 +20031222, 0.36, -0.09, 0.46, 0.004 +20031223, 0.36, 0.70, -0.06, 0.004 +20031224, -0.18, -0.24, 0.12, 0.004 +20031226, 0.19, 0.34, 0.06, 0.004 +20031229, 1.29, 0.36, -0.04, 0.004 +20031230, 0.05, 0.24, 0.15, 0.004 +20031231, 0.01, -1.39, 0.02, 0.004 +20040102, -0.17, 0.82, 0.43, 0.003 +20040105, 1.20, 0.42, 0.01, 0.003 +20040106, 0.20, 0.09, 0.18, 0.003 +20040107, 0.34, 0.54, -0.06, 0.003 +20040108, 0.45, 0.35, 0.64, 0.003 +20040109, -0.72, 0.04, 0.21, 0.003 +20040112, 0.57, 0.93, 0.08, 0.003 +20040113, -0.51, 0.19, 0.09, 0.003 +20040114, 0.80, -0.07, 0.41, 0.003 +20040115, 0.15, 0.03, -0.28, 0.003 +20040116, 0.72, 0.10, 0.56, 0.003 +20040120, 0.15, 1.18, 0.58, 0.003 +20040121, 0.64, -1.08, 0.46, 0.003 +20040122, -0.32, -0.63, 0.05, 0.003 +20040123, -0.14, 0.93, -0.26, 0.003 +20040126, 1.12, -0.10, -0.33, 0.003 +20040127, -0.96, -0.03, 0.04, 0.003 +20040128, -1.44, -0.34, -0.44, 0.003 +20040129, 0.25, -0.96, -0.84, 0.003 +20040130, -0.15, 0.30, 0.37, 0.003 +20040202, 0.27, -0.31, -0.26, 0.003 +20040203, 0.00, -0.13, -0.16, 0.003 +20040204, -0.97, -1.57, -0.52, 0.003 +20040205, 0.23, 0.46, 0.25, 0.003 +20040206, 1.39, 1.05, 0.35, 0.003 +20040209, -0.10, 0.36, 0.21, 0.003 +20040210, 0.56, 0.58, 0.13, 0.003 +20040211, 1.04, -0.39, 0.17, 0.003 +20040212, -0.46, -0.12, -0.15, 0.003 +20040213, -0.57, -0.71, -0.18, 0.003 +20040217, 0.98, 0.35, 0.54, 0.003 +20040218, -0.39, -0.09, 0.04, 0.003 +20040219, -0.54, -1.03, -0.07, 0.003 +20040220, -0.30, -0.10, -0.35, 0.003 +20040223, -0.51, -1.20, -0.11, 0.003 +20040224, -0.14, 0.34, -0.27, 0.003 +20040225, 0.54, 0.50, 0.15, 0.003 +20040226, 0.29, 0.48, 0.35, 0.003 +20040227, 0.11, 0.19, 0.36, 0.003 +20040301, 1.02, 0.52, 0.26, 0.004 +20040302, -0.59, -0.12, 0.18, 0.004 +20040303, 0.14, -0.17, -0.20, 0.004 +20040304, 0.44, 0.81, 0.20, 0.004 +20040305, 0.24, -0.12, -0.21, 0.004 +20040308, -0.84, -0.35, 0.23, 0.004 +20040309, -0.66, -0.44, -0.34, 0.004 +20040310, -1.50, -0.28, -0.45, 0.004 +20040311, -1.42, 0.35, -0.13, 0.004 +20040312, 1.34, 1.02, 0.21, 0.004 +20040315, -1.56, -1.09, -0.24, 0.004 +20040316, 0.43, -0.63, -0.12, 0.004 +20040317, 1.22, 0.70, 0.45, 0.004 +20040318, -0.20, -0.53, 0.13, 0.004 +20040319, -1.00, 0.33, 0.26, 0.004 +20040322, -1.42, -0.66, -0.20, 0.004 +20040323, -0.09, 0.36, 0.04, 0.004 +20040324, -0.27, -0.07, -0.14, 0.004 +20040325, 1.68, 0.77, -0.29, 0.004 +20040326, 0.00, 0.34, 0.39, 0.004 +20040329, 1.34, 0.59, -0.21, 0.004 +20040330, 0.47, 0.43, 0.23, 0.004 +20040331, 0.00, 0.14, 0.18, 0.004 +20040401, 0.64, 0.27, 0.00, 0.004 +20040402, 0.90, 0.82, 0.08, 0.004 +20040405, 0.79, 0.11, -0.31, 0.004 +20040406, -0.28, -0.77, 0.21, 0.004 +20040407, -0.50, 0.92, -0.18, 0.004 +20040408, -0.14, -0.31, 0.11, 0.004 +20040412, 0.50, 0.24, -0.29, 0.004 +20040413, -1.50, -0.58, -0.39, 0.004 +20040414, -0.21, -0.30, -0.44, 0.004 +20040415, -0.04, -0.24, -0.38, 0.004 +20040416, 0.46, -0.06, 0.17, 0.004 +20040419, 0.22, 0.52, -0.35, 0.004 +20040420, -1.48, -0.29, 0.13, 0.004 +20040421, 0.60, 0.48, 0.08, 0.004 +20040422, 1.44, 0.09, 0.05, 0.004 +20040423, -0.01, -0.28, -0.07, 0.004 +20040426, -0.33, -0.05, -0.27, 0.004 +20040427, 0.13, -0.09, -0.06, 0.004 +20040428, -1.46, -0.92, -0.12, 0.004 +20040429, -0.86, -0.81, -0.65, 0.004 +20040430, -0.66, -0.84, -0.01, 0.004 +20040503, 0.85, 0.00, -0.40, 0.003 +20040504, 0.21, 0.43, 0.16, 0.003 +20040505, 0.27, -0.11, -0.25, 0.003 +20040506, -0.80, -0.36, -0.21, 0.003 +20040507, -1.48, -0.65, -0.54, 0.003 +20040510, -1.29, -0.53, -0.48, 0.003 +20040511, 0.95, 0.85, 0.15, 0.003 +20040512, 0.12, -0.22, -0.01, 0.003 +20040513, -0.08, -0.26, 0.02, 0.003 +20040514, -0.17, -0.62, -0.03, 0.003 +20040517, -1.13, -0.40, -0.34, 0.003 +20040518, 0.76, 0.34, 0.35, 0.003 +20040519, -0.19, 0.03, 0.47, 0.003 +20040520, 0.02, -0.13, 0.11, 0.003 +20040521, 0.44, 0.44, -0.01, 0.003 +20040524, 0.29, 0.67, 0.57, 0.003 +20040525, 1.66, 0.56, 0.04, 0.003 +20040526, 0.29, 0.14, 0.02, 0.003 +20040527, 0.51, -0.29, -0.08, 0.003 +20040528, 0.02, -0.03, 0.09, 0.003 +20040601, 0.14, 0.67, -0.04, 0.004 +20040602, 0.31, -0.23, -0.15, 0.004 +20040603, -0.90, -0.96, -0.06, 0.004 +20040604, 0.57, 0.38, 0.05, 0.004 +20040607, 1.57, 0.17, 0.33, 0.004 +20040608, 0.08, -0.17, -0.05, 0.004 +20040609, -1.04, -0.51, 0.03, 0.004 +20040610, 0.36, -0.29, 0.39, 0.004 +20040614, -1.05, -0.57, -0.55, 0.004 +20040615, 0.71, 1.04, 0.22, 0.004 +20040616, 0.14, 0.20, 0.06, 0.004 +20040617, -0.14, 0.00, 0.12, 0.004 +20040618, 0.19, -0.20, 0.22, 0.004 +20040621, -0.42, 0.10, 0.16, 0.004 +20040622, 0.38, 0.22, 0.05, 0.004 +20040623, 0.90, 0.53, 0.19, 0.004 +20040624, -0.23, 0.01, 0.15, 0.004 +20040625, -0.23, 1.24, 0.08, 0.004 +20040628, -0.25, -0.06, -0.15, 0.004 +20040629, 0.31, 0.57, -0.04, 0.004 +20040630, 0.48, 0.11, 0.30, 0.004 +20040701, -1.06, -0.50, 0.55, 0.005 +20040702, -0.28, 0.19, 0.37, 0.005 +20040706, -0.94, -0.88, 1.03, 0.005 +20040707, 0.15, -0.33, 0.25, 0.005 +20040708, -0.96, -0.94, 0.27, 0.005 +20040709, 0.31, 0.16, -0.13, 0.005 +20040712, 0.04, -0.48, 0.39, 0.005 +20040713, 0.09, 0.06, 0.14, 0.005 +20040714, -0.33, -0.34, 0.50, 0.005 +20040715, -0.32, 0.64, 0.06, 0.005 +20040716, -0.56, -0.73, 0.66, 0.005 +20040719, -0.12, -0.24, 0.59, 0.005 +20040720, 0.83, 0.92, -0.81, 0.005 +20040721, -1.49, -1.21, 0.75, 0.005 +20040722, 0.14, -0.46, -0.53, 0.005 +20040723, -1.03, -0.45, 0.83, 0.005 +20040726, -0.39, -0.71, 0.26, 0.005 +20040727, 1.10, 1.00, -0.50, 0.005 +20040728, -0.09, -0.63, 0.36, 0.005 +20040729, 0.66, 0.90, -0.49, 0.005 +20040730, 0.14, 0.19, -0.32, 0.005 +20040802, 0.36, -0.44, 0.28, 0.005 +20040803, -0.75, -0.88, 0.81, 0.005 +20040804, -0.20, 0.04, 0.02, 0.005 +20040805, -1.63, -0.22, 0.48, 0.005 +20040806, -1.59, -0.90, 0.73, 0.005 +20040809, 0.02, -0.38, 0.01, 0.005 +20040810, 1.39, 0.76, -0.37, 0.005 +20040811, -0.29, -0.39, 0.14, 0.005 +20040812, -1.18, -0.50, 0.27, 0.005 +20040813, 0.10, -0.05, 0.04, 0.005 +20040816, 1.40, 0.38, 0.04, 0.005 +20040817, 0.30, 0.12, -0.60, 0.005 +20040818, 1.34, 0.75, -0.78, 0.005 +20040819, -0.38, -0.26, 0.23, 0.005 +20040820, 0.79, 0.90, -0.30, 0.005 +20040823, -0.32, -0.37, -0.31, 0.005 +20040824, 0.03, 0.15, 0.14, 0.005 +20040825, 0.84, 0.14, -0.50, 0.005 +20040826, -0.05, -0.49, 0.39, 0.005 +20040827, 0.33, 0.49, -0.22, 0.005 +20040830, -0.86, -0.45, 0.37, 0.005 +20040831, 0.48, 0.04, 0.15, 0.005 +20040901, 0.30, 0.56, -0.40, 0.005 +20040902, 1.09, 0.26, -0.16, 0.005 +20040903, -0.45, -0.25, 0.42, 0.005 +20040907, 0.73, 0.32, 0.04, 0.005 +20040908, -0.48, -0.34, 0.01, 0.005 +20040909, 0.34, 1.22, -0.37, 0.005 +20040910, 0.53, 0.14, -0.65, 0.005 +20040913, 0.30, 0.41, -0.48, 0.005 +20040914, 0.19, -0.45, -0.17, 0.005 +20040915, -0.67, 0.17, 0.33, 0.005 +20040916, 0.36, 0.44, 0.35, 0.005 +20040917, 0.35, -0.54, -0.01, 0.005 +20040920, -0.51, 0.19, 0.07, 0.005 +20040921, 0.66, 0.36, -0.08, 0.005 +20040922, -1.37, -0.47, 0.55, 0.005 +20040923, -0.37, 0.39, -0.08, 0.005 +20040924, 0.14, -0.20, 0.36, 0.005 +20040927, -0.71, -0.63, 0.36, 0.005 +20040928, 0.63, 0.64, -0.24, 0.005 +20040929, 0.50, 0.67, -0.66, 0.005 +20040930, 0.06, 0.10, 0.52, 0.005 +20041001, 1.48, 0.58, -0.14, 0.005 +20041004, 0.38, 0.35, -0.16, 0.005 +20041005, -0.11, -0.18, 0.08, 0.005 +20041006, 0.69, 0.12, 0.14, 0.005 +20041007, -1.05, -0.61, 0.30, 0.005 +20041008, -0.80, -0.49, 0.62, 0.005 +20041011, 0.23, 0.20, -0.45, 0.005 +20041012, -0.23, -0.06, 0.27, 0.005 +20041013, -0.75, -0.36, -0.37, 0.005 +20041014, -0.92, 0.09, -0.34, 0.005 +20041015, 0.45, 0.27, 0.05, 0.005 +20041018, 0.51, 0.01, -0.79, 0.005 +20041019, -0.92, 0.14, -0.53, 0.005 +20041020, 0.11, 0.49, -0.13, 0.005 +20041021, 0.37, 0.76, -0.06, 0.005 +20041022, -1.00, -0.59, 0.64, 0.005 +20041025, -0.03, 0.66, 0.50, 0.005 +20041026, 1.36, -0.60, 0.65, 0.005 +20041027, 1.39, 0.38, -1.12, 0.005 +20041028, 0.13, -0.34, -0.06, 0.005 +20041029, 0.18, -0.53, 0.24, 0.005 +20041101, 0.06, 0.37, 0.06, 0.007 +20041102, -0.01, -0.15, -0.01, 0.007 +20041103, 1.17, 0.45, -0.05, 0.007 +20041104, 1.51, -0.65, 0.28, 0.007 +20041105, 0.44, 0.28, -0.32, 0.007 +20041108, -0.13, -0.26, 0.03, 0.007 +20041109, 0.05, 0.69, -0.02, 0.007 +20041110, -0.01, 0.47, 0.28, 0.007 +20041111, 0.90, 0.10, -0.22, 0.007 +20041112, 0.86, -0.02, -0.10, 0.007 +20041115, 0.07, 0.34, -0.26, 0.007 +20041116, -0.66, -0.18, 0.31, 0.007 +20041117, 0.64, 0.32, -0.11, 0.007 +20041118, 0.05, -0.18, 0.05, 0.007 +20041119, -1.11, -0.17, 0.74, 0.007 +20041122, 0.60, 0.47, 0.36, 0.007 +20041123, 0.06, 0.30, 0.35, 0.007 +20041124, 0.47, 0.31, 0.12, 0.007 +20041126, 0.12, 0.17, 0.30, 0.007 +20041129, -0.21, 0.86, -0.15, 0.007 +20041130, -0.37, 0.16, 0.11, 0.007 +20041201, 1.48, 0.06, -0.76, 0.007 +20041202, -0.07, 0.11, -0.57, 0.007 +20041203, 0.04, -0.17, 0.11, 0.007 +20041206, -0.13, -0.40, -0.07, 0.007 +20041207, -1.16, -0.90, 0.36, 0.007 +20041208, 0.46, 0.42, -0.41, 0.007 +20041209, 0.44, -0.75, 0.14, 0.007 +20041210, -0.01, 0.46, 0.18, 0.007 +20041213, 0.86, -0.03, -0.04, 0.007 +20041214, 0.45, 0.51, -0.19, 0.007 +20041215, 0.33, 0.39, 0.47, 0.007 +20041216, -0.28, -0.43, 0.34, 0.007 +20041217, -0.55, 0.49, 0.45, 0.007 +20041220, -0.13, -0.59, 0.39, 0.007 +20041221, 0.92, 0.26, -0.05, 0.007 +20041222, 0.39, 0.04, -0.15, 0.007 +20041223, 0.09, 0.21, -0.21, 0.007 +20041227, -0.45, -0.21, 0.02, 0.007 +20041228, 0.83, 0.76, -0.16, 0.007 +20041229, 0.01, -0.05, -0.03, 0.007 +20041230, 0.04, -0.03, -0.11, 0.007 +20041231, -0.14, -0.01, 0.20, 0.007 +20050103, -0.97, -0.62, -0.04, 0.008 +20050104, -1.30, -0.58, 0.44, 0.008 +20050105, -0.51, -1.11, 0.00, 0.008 +20050106, 0.34, -0.14, 0.13, 0.008 +20050107, -0.22, -0.76, -0.02, 0.008 +20050110, 0.42, 0.27, 0.04, 0.008 +20050111, -0.68, -0.35, 0.30, 0.008 +20050112, 0.38, -0.04, -0.16, 0.008 +20050113, -0.77, 0.13, 0.38, 0.008 +20050114, 0.66, 0.55, 0.07, 0.008 +20050118, 0.97, 0.16, -0.17, 0.008 +20050119, -0.97, -0.13, 0.48, 0.008 +20050120, -0.77, -0.12, -0.05, 0.008 +20050121, -0.56, 0.29, 0.25, 0.008 +20050124, -0.49, -0.80, 0.62, 0.008 +20050125, 0.34, 0.20, -0.37, 0.008 +20050126, 0.62, 0.95, -0.21, 0.008 +20050127, 0.08, 0.17, 0.04, 0.008 +20050128, -0.30, -0.26, 0.18, 0.008 +20050131, 0.97, 0.78, 0.16, 0.008 +20050201, 0.69, -0.08, 0.19, 0.009 +20050202, 0.36, 0.25, 0.17, 0.009 +20050203, -0.27, -0.17, 0.40, 0.009 +20050204, 1.12, 0.12, -0.56, 0.009 +20050207, -0.11, 0.13, -0.03, 0.009 +20050208, 0.08, 0.24, -0.17, 0.009 +20050209, -1.00, -1.18, 0.73, 0.009 +20050210, 0.35, -0.33, 0.05, 0.009 +20050211, 0.77, 0.43, -0.30, 0.009 +20050214, 0.09, -0.01, 0.13, 0.009 +20050215, 0.28, -0.36, -0.01, 0.009 +20050216, 0.07, 0.42, 0.39, 0.009 +20050217, -0.79, -0.30, 0.20, 0.009 +20050218, 0.01, -0.08, -0.05, 0.009 +20050222, -1.47, -0.31, -0.12, 0.009 +20050223, 0.53, -0.14, 0.24, 0.009 +20050224, 0.83, 0.24, -0.23, 0.009 +20050225, 0.97, 0.38, 0.38, 0.009 +20050228, -0.61, 0.27, 0.04, 0.009 +20050301, 0.58, 0.11, 0.02, 0.010 +20050302, -0.01, -0.18, 0.05, 0.010 +20050303, -0.01, 0.09, 0.55, 0.010 +20050304, 0.89, -0.03, 0.32, 0.010 +20050307, 0.27, -0.38, 0.00, 0.010 +20050308, -0.54, -0.40, -0.06, 0.010 +20050309, -0.96, 0.06, -0.07, 0.010 +20050310, 0.01, -0.83, -0.21, 0.010 +20050311, -0.55, 0.56, 0.51, 0.010 +20050314, 0.61, -0.22, 0.11, 0.010 +20050315, -0.67, 0.20, 0.27, 0.010 +20050316, -0.84, 0.22, 0.12, 0.010 +20050317, 0.19, 0.05, 0.52, 0.010 +20050318, -0.13, -0.31, -0.04, 0.010 +20050321, -0.38, 0.37, -0.20, 0.010 +20050322, -0.92, 0.69, -0.12, 0.010 +20050323, -0.12, -0.91, -0.50, 0.010 +20050324, 0.01, 0.45, -0.08, 0.010 +20050328, 0.15, -0.23, -0.03, 0.010 +20050329, -0.86, -0.83, 0.07, 0.010 +20050330, 1.35, 0.12, -0.22, 0.010 +20050331, 0.00, -0.05, 0.64, 0.010 +20050401, -0.64, 0.01, 0.42, 0.010 +20050404, 0.29, 0.00, 0.19, 0.010 +20050405, 0.40, -0.14, -0.25, 0.010 +20050406, 0.22, -0.11, 0.03, 0.010 +20050407, 0.57, 0.01, -0.17, 0.010 +20050408, -0.88, -0.45, 0.04, 0.010 +20050411, -0.09, -0.65, 0.03, 0.010 +20050412, 0.56, 0.24, -0.09, 0.010 +20050413, -1.22, -0.34, -0.17, 0.010 +20050414, -1.10, -0.56, -0.26, 0.010 +20050415, -1.59, -0.12, -0.37, 0.010 +20050418, 0.29, 0.32, 0.23, 0.010 +20050419, 0.75, 0.83, 0.12, 0.010 +20050420, -1.35, -0.23, 0.06, 0.010 +20050421, 1.87, 0.32, -0.57, 0.010 +20050422, -0.83, -0.84, 0.43, 0.010 +20050425, 0.93, 0.06, 0.00, 0.010 +20050426, -0.88, -0.52, -0.13, 0.010 +20050427, 0.30, -0.54, -0.24, 0.010 +20050428, -1.20, -0.99, 0.37, 0.010 +20050429, 1.04, -0.39, -0.03, 0.010 +20050502, 0.52, 0.47, 0.06, 0.011 +20050503, -0.04, -0.01, -0.31, 0.011 +20050504, 1.28, 0.27, 0.41, 0.011 +20050505, -0.19, 0.30, -0.39, 0.011 +20050506, -0.03, 0.33, 0.16, 0.011 +20050509, 0.61, 0.31, -0.04, 0.011 +20050510, -1.03, -0.15, 0.02, 0.011 +20050511, 0.39, -0.41, -0.13, 0.011 +20050512, -1.02, -0.18, -0.74, 0.011 +20050513, -0.50, -0.07, -0.67, 0.011 +20050516, 1.03, 0.49, -0.17, 0.011 +20050517, 0.66, -0.23, 0.29, 0.011 +20050518, 1.15, 0.95, -0.27, 0.011 +20050519, 0.47, -0.10, -0.08, 0.011 +20050520, -0.13, -0.04, 0.25, 0.011 +20050523, 0.43, 0.20, -0.02, 0.011 +20050524, 0.05, 0.01, 0.00, 0.011 +20050525, -0.44, -0.57, 0.19, 0.011 +20050526, 0.74, 0.65, 0.08, 0.011 +20050527, 0.18, 0.10, 0.31, 0.011 +20050531, -0.49, 0.47, 0.28, 0.011 +20050601, 0.90, 0.18, -0.01, 0.010 +20050602, 0.24, 0.14, -0.24, 0.010 +20050603, -0.67, -0.20, 0.48, 0.010 +20050606, 0.14, 0.32, 0.13, 0.010 +20050607, -0.03, 0.15, 0.09, 0.010 +20050608, -0.28, -0.39, 0.36, 0.010 +20050609, 0.58, 0.31, -0.11, 0.010 +20050610, -0.21, 0.11, 0.54, 0.010 +20050613, 0.28, 0.14, 0.17, 0.010 +20050614, 0.31, 0.49, 0.39, 0.010 +20050615, 0.22, 0.23, 0.21, 0.010 +20050616, 0.46, 0.63, -0.30, 0.010 +20050617, 0.36, -0.60, 0.20, 0.010 +20050620, -0.07, -0.32, 0.09, 0.010 +20050621, -0.18, 0.11, -0.05, 0.010 +20050622, 0.05, 0.28, -0.10, 0.010 +20050623, -1.07, -0.43, 0.14, 0.010 +20050624, -0.72, -0.04, 0.12, 0.010 +20050627, -0.07, -0.12, 0.55, 0.010 +20050628, 1.05, 1.10, -0.51, 0.010 +20050629, -0.07, 0.31, 0.12, 0.010 +20050630, -0.63, 0.20, 0.27, 0.010 +20050701, 0.32, 0.11, 0.30, 0.012 +20050705, 0.92, 0.58, -0.19, 0.012 +20050706, -0.73, 0.07, 0.07, 0.012 +20050707, 0.26, -0.11, -0.24, 0.012 +20050708, 1.21, 0.78, -0.55, 0.012 +20050711, 0.69, 0.78, -0.13, 0.012 +20050712, 0.20, -0.28, -0.04, 0.012 +20050713, 0.02, -0.41, 0.07, 0.012 +20050714, 0.14, -0.66, -0.44, 0.012 +20050715, 0.12, -0.03, -0.03, 0.012 +20050718, -0.55, -0.16, 0.10, 0.012 +20050719, 0.75, 0.91, -0.11, 0.012 +20050720, 0.54, 0.78, -0.26, 0.012 +20050721, -0.74, -0.61, 0.15, 0.012 +20050722, 0.57, 0.94, 0.54, 0.012 +20050725, -0.47, -0.52, 0.13, 0.012 +20050726, 0.21, 0.28, 0.23, 0.012 +20050727, 0.43, -0.38, -0.04, 0.012 +20050728, 0.67, 0.53, -0.18, 0.012 +20050729, -0.66, 0.24, 0.12, 0.012 +20050801, 0.15, 0.27, -0.12, 0.013 +20050802, 0.70, 0.05, 0.11, 0.013 +20050803, -0.02, -0.66, -0.04, 0.013 +20050804, -0.82, -0.84, 0.35, 0.013 +20050805, -0.81, -0.32, -0.02, 0.013 +20050808, -0.32, 0.01, 0.25, 0.013 +20050809, 0.55, -0.48, -0.07, 0.013 +20050810, -0.13, 0.02, 0.16, 0.013 +20050811, 0.71, 0.19, -0.08, 0.013 +20050812, -0.57, -0.39, 0.11, 0.013 +20050815, 0.30, 0.47, -0.13, 0.013 +20050816, -1.22, -0.46, 0.17, 0.013 +20050817, 0.05, 0.01, -0.06, 0.013 +20050818, -0.15, -0.43, 0.05, 0.013 +20050819, 0.07, 0.07, 0.17, 0.013 +20050822, 0.19, 0.50, 0.15, 0.013 +20050823, -0.31, -0.02, 0.01, 0.013 +20050824, -0.56, 0.46, 0.12, 0.013 +20050825, 0.21, 0.13, 0.20, 0.013 +20050826, -0.66, -0.57, -0.10, 0.013 +20050829, 0.65, 0.39, -0.22, 0.013 +20050830, -0.31, -0.03, 0.34, 0.013 +20050831, 1.10, 0.72, -0.06, 0.013 +20050901, 0.13, -0.03, 0.25, 0.014 +20050902, -0.36, -0.31, -0.01, 0.014 +20050906, 1.22, 0.30, -0.49, 0.014 +20050907, 0.30, 0.08, -0.14, 0.014 +20050908, -0.40, -0.12, -0.05, 0.014 +20050909, 0.73, -0.10, 0.13, 0.014 +20050912, 0.00, 0.54, -0.34, 0.014 +20050913, -0.76, -0.21, 0.13, 0.014 +20050914, -0.44, -0.67, 0.42, 0.014 +20050915, -0.02, -0.26, 0.30, 0.014 +20050916, 0.72, 0.15, -0.10, 0.014 +20050919, -0.55, -0.17, 0.22, 0.014 +20050920, -0.78, -0.11, 0.04, 0.014 +20050921, -1.03, -0.49, 0.30, 0.014 +20050922, 0.30, -0.07, -0.23, 0.014 +20050923, 0.15, 0.53, 0.19, 0.014 +20050926, 0.12, 0.53, 0.06, 0.014 +20050927, -0.02, -0.07, -0.08, 0.014 +20050928, 0.06, -0.60, 0.27, 0.014 +20050929, 0.92, 0.21, 0.04, 0.014 +20050930, 0.20, 0.32, -0.17, 0.014 +20051003, 0.00, 0.47, 0.02, 0.013 +20051004, -0.97, 0.22, -0.19, 0.013 +20051005, -1.63, -1.02, -0.25, 0.013 +20051006, -0.57, -0.34, 0.11, 0.013 +20051007, 0.42, 0.32, 0.25, 0.013 +20051010, -0.73, -0.07, -0.22, 0.013 +20051011, -0.33, -0.97, 0.14, 0.013 +20051012, -0.79, -0.54, 0.10, 0.013 +20051013, -0.09, 0.45, -0.55, 0.013 +20051014, 0.92, 0.50, -0.10, 0.013 +20051017, 0.29, -0.34, 0.11, 0.013 +20051018, -1.03, -0.02, -0.13, 0.013 +20051019, 1.45, 0.46, -0.19, 0.013 +20051020, -1.44, 0.01, -0.37, 0.013 +20051021, 0.32, 0.38, 0.24, 0.013 +20051024, 1.70, 0.15, 0.29, 0.013 +20051025, -0.30, -0.32, 0.09, 0.013 +20051026, -0.46, -0.23, 0.18, 0.013 +20051027, -1.24, -1.04, 0.42, 0.013 +20051028, 1.55, -0.03, 0.26, 0.013 +20051031, 0.96, 0.80, 0.04, 0.013 +20051101, -0.27, -0.23, 0.39, 0.015 +20051102, 1.15, 0.84, 0.00, 0.015 +20051103, 0.43, -0.10, -0.18, 0.015 +20051104, 0.01, 0.06, -0.28, 0.015 +20051107, 0.25, 0.22, -0.05, 0.015 +20051108, -0.37, -0.34, -0.04, 0.015 +20051109, 0.15, 0.25, -0.02, 0.015 +20051110, 0.80, -0.07, -0.59, 0.015 +20051111, 0.27, -0.03, -0.12, 0.015 +20051114, -0.10, -0.34, 0.06, 0.015 +20051115, -0.49, -0.65, -0.17, 0.015 +20051116, 0.11, -0.35, 0.00, 0.015 +20051117, 1.06, 0.68, -0.09, 0.015 +20051118, 0.43, 0.27, -0.16, 0.015 +20051121, 0.60, 0.43, -0.35, 0.015 +20051122, 0.48, -0.04, -0.01, 0.015 +20051123, 0.31, -0.27, 0.22, 0.015 +20051125, 0.18, -0.12, -0.08, 0.015 +20051128, -1.01, -0.71, 0.21, 0.015 +20051129, 0.01, 0.28, 0.28, 0.015 +20051130, -0.43, 1.14, -0.16, 0.015 +20051201, 1.27, 0.52, 0.13, 0.015 +20051202, 0.05, 0.06, -0.14, 0.015 +20051205, -0.30, -0.22, 0.08, 0.015 +20051206, 0.12, 0.06, 0.06, 0.015 +20051207, -0.49, -0.07, 0.06, 0.015 +20051208, -0.03, 0.25, 0.07, 0.015 +20051209, 0.27, 0.22, 0.05, 0.015 +20051212, 0.10, 0.12, -0.05, 0.015 +20051213, 0.44, -0.53, -0.21, 0.015 +20051214, 0.34, -0.25, 0.08, 0.015 +20051215, -0.23, -0.57, -0.37, 0.015 +20051216, -0.29, 0.03, -0.04, 0.015 +20051219, -0.73, -0.81, 0.28, 0.015 +20051220, -0.02, -0.02, 0.01, 0.015 +20051221, 0.33, 0.66, -0.35, 0.015 +20051222, 0.45, 0.12, -0.02, 0.015 +20051223, 0.08, 0.29, 0.00, 0.015 +20051227, -1.00, -0.44, 0.16, 0.015 +20051228, 0.19, 0.40, 0.12, 0.015 +20051229, -0.27, -0.02, 0.21, 0.015 +20051230, -0.50, -0.22, 0.26, 0.015 +20060103, 1.50, -0.19, 0.13, 0.017 +20060104, 0.46, 0.34, 0.03, 0.017 +20060105, 0.03, 0.28, -0.14, 0.017 +20060106, 0.92, 0.09, -0.23, 0.017 +20060109, 0.45, 0.52, -0.09, 0.017 +20060110, 0.05, 0.58, 0.02, 0.017 +20060111, 0.28, -0.25, -0.11, 0.017 +20060112, -0.65, 0.09, -0.03, 0.017 +20060113, 0.17, 0.13, 0.06, 0.017 +20060117, -0.40, -0.32, 0.22, 0.017 +20060118, -0.35, 0.36, 0.30, 0.017 +20060119, 0.63, 0.93, -0.08, 0.017 +20060120, -1.80, 0.37, 0.51, 0.017 +20060123, 0.18, 0.20, 0.43, 0.017 +20060124, 0.44, 1.03, 0.16, 0.017 +20060125, -0.22, -0.04, -0.11, 0.017 +20060126, 0.79, 0.81, 0.04, 0.017 +20060127, 0.67, -0.15, -0.17, 0.017 +20060130, 0.10, -0.26, 0.21, 0.017 +20060131, -0.21, 0.61, -0.03, 0.017 +20060201, 0.14, 0.18, 0.05, 0.018 +20060202, -0.88, -0.28, -0.06, 0.018 +20060203, -0.51, 0.23, 0.01, 0.018 +20060206, 0.10, 0.26, 0.50, 0.018 +20060207, -0.92, -0.48, -0.22, 0.018 +20060208, 0.77, -0.25, -0.09, 0.018 +20060209, -0.19, -0.16, -0.27, 0.018 +20060210, 0.15, -0.36, -0.05, 0.018 +20060213, -0.47, -0.50, 0.14, 0.018 +20060214, 1.01, 0.26, -0.11, 0.018 +20060215, 0.41, 0.41, -0.47, 0.018 +20060216, 0.75, 0.05, 0.22, 0.018 +20060217, -0.16, -0.05, 0.36, 0.018 +20060221, -0.38, -0.20, 0.14, 0.018 +20060222, 0.73, 0.01, -0.04, 0.018 +20060223, -0.29, 0.22, -0.22, 0.018 +20060224, 0.19, 0.35, 0.17, 0.018 +20060227, 0.40, 0.16, -0.36, 0.018 +20060228, -1.10, -0.21, 0.07, 0.018 +20060301, 0.90, 0.68, -0.04, 0.016 +20060302, -0.16, -0.08, 0.05, 0.016 +20060303, -0.15, -0.01, 0.07, 0.016 +20060306, -0.75, -0.21, -0.14, 0.016 +20060307, -0.40, -1.07, 0.05, 0.016 +20060308, 0.14, -0.05, 0.06, 0.016 +20060309, -0.51, -0.01, 0.29, 0.016 +20060310, 0.69, 0.39, 0.03, 0.016 +20060313, 0.24, -0.03, 0.10, 0.016 +20060314, 1.00, 0.04, -0.03, 0.016 +20060315, 0.48, 0.40, 0.15, 0.016 +20060316, 0.11, -0.13, 0.31, 0.016 +20060317, 0.18, 0.11, -0.32, 0.016 +20060320, -0.07, 0.17, -0.32, 0.016 +20060321, -0.69, -0.52, -0.10, 0.016 +20060322, 0.62, 0.49, 0.12, 0.016 +20060323, -0.18, 0.54, -0.01, 0.016 +20060324, 0.22, 0.66, 0.20, 0.016 +20060327, -0.07, 0.15, 0.25, 0.016 +20060328, -0.61, 0.24, -0.08, 0.016 +20060329, 0.87, 0.86, 0.14, 0.016 +20060330, -0.16, 0.16, -0.16, 0.016 +20060331, -0.23, 0.70, -0.04, 0.016 +20060403, 0.07, -0.88, 0.69, 0.019 +20060404, 0.54, -0.26, 0.13, 0.019 +20060405, 0.42, -0.03, 0.25, 0.019 +20060406, -0.15, 0.18, 0.01, 0.019 +20060407, -1.02, -0.12, -0.17, 0.019 +20060410, -0.02, -0.40, 0.05, 0.019 +20060411, -0.83, -0.67, 0.02, 0.019 +20060412, 0.19, 0.57, -0.03, 0.019 +20060413, 0.12, 0.38, -0.14, 0.019 +20060417, -0.28, 0.00, 0.30, 0.019 +20060418, 1.71, 0.67, 0.07, 0.019 +20060419, 0.33, 0.87, 0.07, 0.019 +20060420, 0.01, -0.49, 0.04, 0.019 +20060421, -0.10, -0.19, 0.30, 0.019 +20060424, -0.30, -0.41, 0.12, 0.019 +20060425, -0.44, 0.44, 0.01, 0.019 +20060426, 0.20, -0.09, 0.28, 0.019 +20060427, 0.24, -0.95, 0.00, 0.019 +20060428, 0.05, 0.13, 0.52, 0.019 +20060501, -0.41, 0.01, 0.47, 0.020 +20060502, 0.54, 0.20, 0.57, 0.020 +20060503, -0.31, 0.40, 0.07, 0.020 +20060504, 0.37, 0.59, -0.24, 0.020 +20060505, 1.04, -0.30, -0.02, 0.020 +20060508, -0.05, 0.08, 0.09, 0.020 +20060509, -0.01, -0.14, 0.20, 0.020 +20060510, -0.20, -0.59, 0.54, 0.020 +20060511, -1.35, -1.09, 0.23, 0.020 +20060512, -1.26, -0.72, -0.08, 0.020 +20060515, 0.04, -0.91, -0.29, 0.020 +20060516, -0.12, 0.10, 0.35, 0.020 +20060517, -1.66, 0.12, 0.16, 0.020 +20060518, -0.69, -0.34, 0.13, 0.020 +20060519, 0.38, 0.11, 0.00, 0.020 +20060522, -0.55, -0.76, 0.24, 0.020 +20060523, -0.44, 0.07, -0.01, 0.020 +20060524, 0.03, -0.08, -0.14, 0.020 +20060525, 1.22, 0.70, 0.01, 0.020 +20060526, 0.60, -0.16, -0.08, 0.020 +20060530, -1.65, -0.78, 0.13, 0.020 +20060531, 0.94, 0.36, 0.38, 0.020 +20060601, 1.29, 0.82, -0.17, 0.018 +20060602, 0.16, -0.07, 0.21, 0.018 +20060605, -1.94, -1.17, 0.20, 0.018 +20060606, -0.28, -0.17, -0.10, 0.018 +20060607, -0.57, 0.04, -0.18, 0.018 +20060608, 0.01, -0.26, 0.04, 0.018 +20060609, -0.44, -0.24, -0.05, 0.018 +20060612, -1.48, -1.27, 0.27, 0.018 +20060613, -1.15, -0.34, -0.41, 0.018 +20060614, 0.46, 0.18, -0.22, 0.018 +20060615, 2.33, 1.05, 0.27, 0.018 +20060616, -0.43, -0.72, 0.01, 0.018 +20060619, -1.01, -0.78, 0.15, 0.018 +20060620, -0.07, -0.38, 0.07, 0.018 +20060621, 1.11, 0.75, -0.17, 0.018 +20060622, -0.52, 0.15, 0.16, 0.018 +20060623, 0.03, 0.24, 0.22, 0.018 +20060626, 0.50, 0.53, 0.20, 0.018 +20060627, -1.00, -0.73, 0.29, 0.018 +20060628, 0.47, -0.37, 0.15, 0.018 +20060629, 2.29, 1.42, -0.25, 0.018 +20060630, -0.02, 1.15, 0.13, 0.018 +20060703, 0.72, -0.07, -0.24, 0.020 +20060705, -0.88, -0.55, 0.38, 0.020 +20060706, 0.23, -0.07, 0.02, 0.020 +20060707, -0.80, -0.85, 0.72, 0.020 +20060710, 0.04, -0.27, 0.51, 0.020 +20060711, 0.37, 0.32, -0.16, 0.020 +20060712, -1.21, -0.66, 0.35, 0.020 +20060713, -1.43, -0.55, 0.07, 0.020 +20060714, -0.60, -0.35, 0.15, 0.020 +20060717, -0.22, -0.45, 0.08, 0.020 +20060718, 0.17, 0.16, 0.30, 0.020 +20060719, 1.98, 0.90, -0.28, 0.020 +20060720, -1.11, -1.60, 0.60, 0.020 +20060721, -0.89, -0.86, 0.33, 0.020 +20060724, 1.75, 0.86, -0.49, 0.020 +20060725, 0.69, 0.20, 0.00, 0.020 +20060726, -0.13, -0.35, 0.47, 0.020 +20060727, -0.58, -0.73, 0.36, 0.020 +20060728, 1.31, 0.67, -0.15, 0.020 +20060731, -0.09, 0.26, -0.09, 0.020 +20060801, -0.60, -0.92, 0.34, 0.018 +20060802, 0.64, 0.28, -0.25, 0.018 +20060803, 0.27, 0.85, -0.46, 0.018 +20060804, -0.13, -0.45, 0.16, 0.018 +20060807, -0.35, -0.27, 0.10, 0.018 +20060808, -0.42, -0.80, 0.10, 0.018 +20060809, -0.52, -0.43, -0.01, 0.018 +20060810, 0.49, 0.36, -0.38, 0.018 +20060811, -0.49, -0.58, 0.19, 0.018 +20060814, 0.12, 0.25, -0.31, 0.018 +20060815, 1.46, 0.75, -0.42, 0.018 +20060816, 0.90, 0.63, -0.52, 0.018 +20060817, 0.18, 0.36, -0.18, 0.018 +20060818, 0.30, -0.17, -0.12, 0.018 +20060821, -0.48, -0.49, 0.15, 0.018 +20060822, 0.07, 0.28, 0.06, 0.018 +20060823, -0.55, -0.75, 0.15, 0.018 +20060824, 0.16, -0.21, 0.08, 0.018 +20060825, -0.07, 0.18, -0.09, 0.018 +20060828, 0.58, 0.40, -0.12, 0.018 +20060829, 0.33, 0.92, -0.12, 0.018 +20060830, 0.13, 0.75, -0.28, 0.018 +20060831, 0.03, 0.01, 0.23, 0.018 +20060901, 0.49, -0.27, -0.04, 0.020 +20060905, 0.21, 0.52, 0.01, 0.020 +20060906, -1.13, -1.01, 0.46, 0.020 +20060907, -0.50, -0.17, 0.21, 0.020 +20060908, 0.32, -0.08, -0.12, 0.020 +20060911, -0.03, -0.16, -0.08, 0.020 +20060912, 1.18, 1.15, -0.32, 0.020 +20060913, 0.45, 0.43, -0.08, 0.020 +20060914, -0.16, -0.25, 0.08, 0.020 +20060915, 0.21, 0.01, -0.29, 0.020 +20060918, 0.04, 0.00, -0.30, 0.020 +20060919, -0.29, -0.23, 0.19, 0.020 +20060920, 0.60, 0.53, 0.01, 0.020 +20060921, -0.59, -0.39, 0.07, 0.020 +20060922, -0.41, -0.89, 0.51, 0.020 +20060925, 0.86, 0.17, 0.09, 0.020 +20060926, 0.71, -0.35, -0.18, 0.020 +20060927, 0.08, 0.42, -0.27, 0.020 +20060928, 0.15, -0.10, -0.19, 0.020 +20060929, -0.33, -0.64, 0.25, 0.020 +20061002, -0.43, -0.55, 0.19, 0.018 +20061003, 0.13, -0.37, 0.46, 0.018 +20061004, 1.28, 0.73, -0.52, 0.018 +20061005, 0.43, 0.93, -0.37, 0.018 +20061006, -0.31, -0.04, -0.09, 0.018 +20061009, 0.20, 0.42, 0.11, 0.018 +20061010, 0.21, -0.04, 0.00, 0.018 +20061011, -0.30, -0.33, 0.23, 0.018 +20061012, 1.07, 0.93, -0.19, 0.018 +20061013, 0.22, 0.49, -0.06, 0.018 +20061016, 0.34, 0.62, -0.32, 0.018 +20061017, -0.44, -0.22, 0.41, 0.018 +20061018, 0.08, -0.32, 0.03, 0.018 +20061019, 0.10, 0.45, -0.09, 0.018 +20061020, -0.02, -0.73, 0.04, 0.018 +20061023, 0.56, -0.42, -0.19, 0.018 +20061024, 0.01, -0.22, 0.22, 0.018 +20061025, 0.32, 0.18, -0.09, 0.018 +20061026, 0.63, 0.41, 0.20, 0.018 +20061027, -0.88, -0.35, 0.12, 0.018 +20061030, 0.07, 0.43, -0.01, 0.018 +20061031, -0.07, -0.34, -0.11, 0.018 +20061101, -0.87, -0.99, 0.27, 0.020 +20061102, -0.05, -0.23, 0.05, 0.020 +20061103, -0.12, 0.52, -0.14, 0.020 +20061106, 1.16, 0.26, -0.11, 0.020 +20061107, 0.23, 0.06, -0.30, 0.020 +20061108, 0.29, 0.31, 0.33, 0.020 +20061109, -0.58, -0.39, 0.33, 0.020 +20061110, 0.26, 0.70, -0.03, 0.020 +20061113, 0.27, 0.18, 0.02, 0.020 +20061114, 0.71, 0.92, -0.23, 0.020 +20061115, 0.35, 0.58, -0.41, 0.020 +20061116, 0.16, -0.31, 0.11, 0.020 +20061117, 0.03, -0.37, -0.12, 0.020 +20061120, -0.06, 0.21, 0.05, 0.020 +20061121, 0.14, 0.04, -0.08, 0.020 +20061122, 0.28, -0.08, -0.25, 0.020 +20061124, -0.32, 0.24, 0.09, 0.020 +20061127, -1.53, -1.02, 0.32, 0.020 +20061128, 0.30, 0.01, -0.04, 0.020 +20061129, 0.95, 0.13, -0.04, 0.020 +20061130, 0.11, 0.13, 0.21, 0.020 +20061201, -0.30, -0.36, 0.11, 0.020 +20061204, 0.99, 0.86, -0.16, 0.020 +20061205, 0.41, -0.19, 0.24, 0.020 +20061206, -0.10, -0.09, 0.24, 0.020 +20061207, -0.41, -0.05, 0.08, 0.020 +20061208, 0.14, -0.16, 0.01, 0.020 +20061211, 0.18, -0.28, 0.65, 0.020 +20061212, -0.20, -0.51, 0.45, 0.020 +20061213, 0.09, -0.04, 0.17, 0.020 +20061214, 0.80, -0.13, -0.12, 0.020 +20061215, 0.07, -0.33, 0.40, 0.020 +20061218, -0.46, -0.95, 0.17, 0.020 +20061219, 0.16, -0.12, 0.04, 0.020 +20061220, -0.12, 0.56, 0.08, 0.020 +20061221, -0.38, 0.02, 0.35, 0.020 +20061222, -0.48, 0.29, 0.09, 0.020 +20061226, 0.44, 0.34, 0.37, 0.020 +20061227, 0.74, 0.51, -0.04, 0.020 +20061228, -0.18, -0.17, -0.01, 0.020 +20061229, -0.51, -0.26, -0.02, 0.020 +20070103, -0.04, 0.05, 0.14, 0.022 +20070104, 0.16, 0.24, -0.51, 0.022 +20070105, -0.73, -0.91, -0.33, 0.022 +20070108, 0.24, -0.07, 0.08, 0.022 +20070109, 0.00, 0.28, -0.20, 0.022 +20070110, 0.23, -0.08, -0.17, 0.022 +20070111, 0.74, 0.55, -0.29, 0.022 +20070112, 0.50, 0.21, -0.28, 0.022 +20070116, 0.00, -0.26, 0.06, 0.022 +20070117, -0.14, -0.21, -0.05, 0.022 +20070118, -0.48, -1.07, 0.53, 0.022 +20070119, 0.33, 0.43, 0.07, 0.022 +20070122, -0.55, -0.49, 0.34, 0.022 +20070123, 0.37, 0.60, 0.07, 0.022 +20070124, 0.84, 0.23, -0.05, 0.022 +20070125, -1.15, -0.07, -0.10, 0.022 +20070126, -0.06, 0.55, 0.10, 0.022 +20070129, 0.02, 0.59, 0.23, 0.022 +20070130, 0.52, -0.02, 0.22, 0.022 +20070131, 0.64, -0.42, 0.03, 0.022 +20070201, 0.59, 0.34, -0.24, 0.020 +20070202, 0.15, 0.10, 0.27, 0.020 +20070205, -0.12, -0.22, 0.13, 0.020 +20070206, 0.10, 0.28, 0.19, 0.020 +20070207, 0.21, 0.40, -0.01, 0.020 +20070208, -0.10, 0.24, -0.21, 0.020 +20070209, -0.76, -0.34, 0.15, 0.020 +20070212, -0.35, 0.19, 0.09, 0.020 +20070213, 0.72, -0.17, 0.33, 0.020 +20070214, 0.73, -0.50, -0.17, 0.020 +20070215, 0.11, 0.16, -0.37, 0.020 +20070216, 0.00, 0.26, 0.07, 0.020 +20070220, 0.42, 0.64, -0.18, 0.020 +20070221, -0.09, 0.30, -0.21, 0.020 +20070222, -0.06, 0.37, -0.12, 0.020 +20070223, -0.31, 0.14, -0.26, 0.020 +20070226, -0.19, -0.14, 0.09, 0.020 +20070227, -3.43, -0.18, 0.03, 0.020 +20070228, 0.47, -0.51, 0.35, 0.020 +20070301, -0.25, -0.09, 0.19, 0.019 +20070302, -1.24, -0.63, 0.23, 0.019 +20070305, -1.11, -0.69, -0.28, 0.019 +20070306, 1.58, 0.67, 0.00, 0.019 +20070307, -0.21, -0.06, -0.01, 0.019 +20070308, 0.68, -0.10, 0.11, 0.019 +20070309, 0.09, 0.28, 0.14, 0.019 +20070312, 0.28, 0.27, -0.12, 0.019 +20070313, -2.03, -0.26, -0.12, 0.019 +20070314, 0.57, 0.11, -0.09, 0.019 +20070315, 0.44, 0.49, 0.13, 0.019 +20070316, -0.42, -0.11, -0.17, 0.019 +20070319, 1.08, -0.11, 0.02, 0.019 +20070320, 0.67, 0.02, 0.14, 0.019 +20070321, 1.64, -0.15, -0.10, 0.019 +20070322, -0.02, 0.19, -0.31, 0.019 +20070323, 0.08, 0.08, 0.04, 0.019 +20070326, 0.06, -0.04, -0.08, 0.019 +20070327, -0.61, -0.21, -0.02, 0.019 +20070328, -0.74, 0.22, -0.04, 0.019 +20070329, 0.29, -0.20, 0.17, 0.019 +20070330, -0.07, 0.27, -0.05, 0.019 +20070402, 0.22, 0.09, -0.11, 0.022 +20070403, 0.93, 0.05, -0.12, 0.022 +20070404, 0.09, -0.17, -0.25, 0.022 +20070405, 0.31, 0.00, -0.08, 0.022 +20070409, 0.05, -0.24, 0.07, 0.022 +20070410, 0.22, 0.10, 0.02, 0.022 +20070411, -0.64, -0.10, 0.12, 0.022 +20070412, 0.61, 0.25, -0.19, 0.022 +20070413, 0.34, 0.24, -0.08, 0.022 +20070416, 1.06, 0.29, 0.11, 0.022 +20070417, 0.09, -0.42, -0.12, 0.022 +20070418, 0.00, -0.71, 0.44, 0.022 +20070419, -0.23, -0.38, 0.03, 0.022 +20070420, 0.89, 0.20, 0.04, 0.022 +20070423, -0.24, 0.07, -0.29, 0.022 +20070424, -0.10, -0.04, -0.24, 0.022 +20070425, 0.91, -0.35, 0.17, 0.022 +20070426, -0.02, 0.32, -0.34, 0.022 +20070427, -0.13, -0.30, -0.31, 0.022 +20070430, -0.93, -0.91, 0.02, 0.022 +20070501, 0.22, -0.09, 0.03, 0.018 +20070502, 0.79, 0.62, 0.02, 0.018 +20070503, 0.37, -0.36, 0.32, 0.018 +20070504, 0.25, 0.18, -0.02, 0.018 +20070507, 0.18, -0.37, 0.32, 0.018 +20070508, -0.13, -0.03, -0.11, 0.018 +20070509, 0.35, 0.07, -0.03, 0.018 +20070510, -1.42, -0.50, 0.29, 0.018 +20070511, 0.95, 0.18, 0.06, 0.018 +20070514, -0.28, -0.61, 0.07, 0.018 +20070515, -0.27, -0.80, 0.28, 0.018 +20070516, 0.82, -0.21, 0.05, 0.018 +20070517, -0.10, -0.34, 0.03, 0.018 +20070518, 0.66, 0.39, -0.49, 0.018 +20070521, 0.31, 0.93, -0.28, 0.018 +20070522, 0.08, 0.70, -0.04, 0.018 +20070523, -0.18, -0.21, -0.12, 0.018 +20070524, -1.07, -0.43, -0.04, 0.018 +20070525, 0.55, 0.23, -0.08, 0.018 +20070529, 0.24, 0.60, 0.01, 0.018 +20070530, 0.77, -0.23, -0.02, 0.018 +20070531, 0.13, 0.34, -0.30, 0.018 +20070601, 0.44, 0.36, -0.05, 0.019 +20070604, 0.18, 0.07, 0.00, 0.019 +20070605, -0.55, -0.12, -0.22, 0.019 +20070606, -0.92, 0.08, 0.05, 0.019 +20070607, -1.75, -0.04, 0.06, 0.019 +20070608, 1.07, -0.06, 0.03, 0.019 +20070611, 0.08, -0.29, 0.10, 0.019 +20070612, -1.06, -0.16, -0.18, 0.019 +20070613, 1.37, -0.20, -0.10, 0.019 +20070614, 0.50, 0.10, -0.06, 0.019 +20070615, 0.69, 0.52, -0.07, 0.019 +20070618, -0.13, 0.01, -0.11, 0.019 +20070619, 0.14, 0.00, 0.15, 0.019 +20070620, -1.29, 0.09, -0.18, 0.019 +20070621, 0.56, -0.16, 0.01, 0.019 +20070622, -1.25, 0.62, -0.01, 0.019 +20070625, -0.39, -0.42, -0.10, 0.019 +20070626, -0.35, 0.14, -0.31, 0.019 +20070627, 0.92, 0.47, -0.39, 0.019 +20070628, 0.03, 0.14, 0.15, 0.019 +20070629, -0.19, -0.35, 0.11, 0.019 +20070702, 1.06, -0.07, 0.11, 0.019 +20070703, 0.36, -0.05, -0.10, 0.019 +20070705, 0.07, 0.20, -0.60, 0.019 +20070706, 0.40, -0.07, -0.08, 0.019 +20070709, 0.10, 0.06, -0.06, 0.019 +20070710, -1.43, -0.15, -0.37, 0.019 +20070711, 0.55, -0.29, -0.10, 0.019 +20070712, 1.78, -0.18, -0.32, 0.019 +20070713, 0.28, -0.31, 0.08, 0.019 +20070716, -0.31, -0.46, -0.23, 0.019 +20070717, 0.02, 0.16, -0.23, 0.019 +20070718, -0.25, -0.21, -0.19, 0.019 +20070719, 0.44, 0.34, -0.48, 0.019 +20070720, -1.25, -0.27, -0.19, 0.019 +20070723, 0.36, -0.42, -0.42, 0.019 +20070724, -2.04, -0.53, -0.22, 0.019 +20070725, 0.30, -0.41, 0.08, 0.019 +20070726, -2.36, -0.01, -0.23, 0.019 +20070727, -1.51, -0.06, 0.14, 0.019 +20070730, 0.93, -0.24, -0.08, 0.019 +20070731, -1.19, 0.32, -0.02, 0.019 +20070801, 0.51, -0.50, -0.25, 0.018 +20070802, 0.55, 0.15, -0.36, 0.018 +20070803, -2.66, -0.63, -0.73, 0.018 +20070806, 2.07, -1.17, -0.41, 0.018 +20070807, 0.65, 0.27, -0.67, 0.018 +20070808, 1.47, 1.16, -0.73, 0.018 +20070809, -2.74, 1.65, -0.61, 0.018 +20070810, 0.03, 0.05, 1.35, 0.018 +20070813, -0.06, -1.15, 0.32, 0.018 +20070814, -1.83, -0.04, -0.19, 0.018 +20070815, -1.46, 0.04, -0.04, 0.018 +20070816, 0.31, 1.20, 1.16, 0.018 +20070817, 2.36, -0.42, 0.38, 0.018 +20070820, 0.00, 0.16, -0.32, 0.018 +20070821, 0.15, -0.06, 0.08, 0.018 +20070822, 1.20, 0.05, -0.01, 0.018 +20070823, -0.23, -0.98, 0.16, 0.018 +20070824, 1.21, 0.12, -0.22, 0.018 +20070827, -0.85, -0.11, -0.15, 0.018 +20070828, -2.33, -0.07, -0.41, 0.018 +20070829, 2.13, 0.11, 0.01, 0.018 +20070830, -0.43, 0.00, -0.48, 0.018 +20070831, 1.12, 0.05, -0.08, 0.018 +20070904, 1.03, -0.20, 0.05, 0.017 +20070905, -1.05, 0.03, -0.32, 0.017 +20070906, 0.42, 0.00, -0.19, 0.017 +20070907, -1.70, -0.30, 0.19, 0.017 +20070910, -0.27, -0.51, -0.22, 0.017 +20070911, 1.35, 0.05, -0.33, 0.017 +20070912, -0.03, -0.44, -0.20, 0.017 +20070913, 0.69, -0.68, 0.30, 0.017 +20070914, 0.10, 0.36, -0.06, 0.017 +20070917, -0.60, -0.44, 0.04, 0.017 +20070918, 2.88, 0.59, 0.36, 0.017 +20070919, 0.59, 0.60, 0.24, 0.017 +20070920, -0.65, -0.14, -0.31, 0.017 +20070921, 0.43, -0.24, -0.24, 0.017 +20070924, -0.56, -0.38, -0.63, 0.017 +20070925, -0.03, -0.29, -0.38, 0.017 +20070926, 0.60, 0.12, -0.08, 0.017 +20070927, 0.43, 0.20, -0.03, 0.017 +20070928, -0.37, -0.54, 0.03, 0.017 +20071001, 1.37, 0.81, 0.07, 0.014 +20071002, 0.11, 0.65, 0.18, 0.014 +20071003, -0.48, -0.22, -0.17, 0.014 +20071004, 0.18, -0.03, 0.05, 0.014 +20071005, 1.10, 0.64, -0.07, 0.014 +20071008, -0.27, -0.18, -0.29, 0.014 +20071009, 0.78, -0.23, -0.15, 0.014 +20071010, -0.13, 0.02, -0.40, 0.014 +20071011, -0.58, -0.67, 0.60, 0.014 +20071012, 0.51, 0.11, -0.31, 0.014 +20071015, -0.89, -0.39, -0.21, 0.014 +20071016, -0.67, -0.03, -0.28, 0.014 +20071017, 0.22, -0.15, -0.26, 0.014 +20071018, -0.10, 0.11, -0.39, 0.014 +20071019, -2.45, -0.47, 0.02, 0.014 +20071022, 0.47, 0.90, 0.06, 0.014 +20071023, 0.85, 0.06, -0.54, 0.014 +20071024, -0.33, -0.45, -0.21, 0.014 +20071025, -0.19, -0.31, -0.02, 0.014 +20071026, 1.38, 0.26, 0.37, 0.014 +20071029, 0.40, -0.27, -0.58, 0.014 +20071030, -0.64, 0.09, 0.13, 0.014 +20071031, 1.23, 0.04, -0.13, 0.014 +20071101, -2.66, -0.86, -0.43, 0.016 +20071102, 0.08, 0.19, -0.90, 0.016 +20071105, -0.59, -0.28, -0.11, 0.016 +20071106, 1.19, 0.02, -0.17, 0.016 +20071107, -2.77, -0.04, -0.46, 0.016 +20071108, -0.05, 0.54, 1.16, 0.016 +20071109, -1.46, 0.23, 0.87, 0.016 +20071112, -1.08, 0.38, 0.28, 0.016 +20071113, 2.81, -0.45, 0.05, 0.016 +20071114, -0.63, -0.22, -0.18, 0.016 +20071115, -1.25, 0.05, -0.06, 0.016 +20071116, 0.41, -0.62, -0.63, 0.016 +20071119, -1.81, -0.26, -0.37, 0.016 +20071120, 0.31, -0.56, -0.10, 0.016 +20071121, -1.54, 0.41, 0.09, 0.016 +20071123, 1.59, 0.17, 0.19, 0.016 +20071126, -2.09, -0.06, -0.65, 0.016 +20071127, 1.31, -0.54, -0.19, 0.016 +20071128, 2.90, 0.29, -0.20, 0.016 +20071129, 0.01, -0.50, -0.31, 0.016 +20071130, 0.70, -0.62, 0.86, 0.016 +20071203, -0.60, -0.53, 0.10, 0.014 +20071204, -0.61, -0.15, -0.16, 0.014 +20071205, 1.47, 0.02, -0.04, 0.014 +20071206, 1.55, 0.85, 0.27, 0.014 +20071207, -0.07, 0.04, -0.05, 0.014 +20071210, 0.71, -0.14, 0.24, 0.014 +20071211, -2.50, -0.26, -0.07, 0.014 +20071212, 0.48, 0.04, -0.20, 0.014 +20071213, 0.06, -0.33, -0.32, 0.014 +20071214, -1.36, -0.49, -0.26, 0.014 +20071217, -1.59, -0.20, 0.31, 0.014 +20071218, 0.65, 1.13, -0.01, 0.014 +20071219, -0.10, 0.31, -0.42, 0.014 +20071220, 0.64, 0.86, -0.39, 0.014 +20071221, 1.64, 0.33, -0.02, 0.014 +20071224, 0.80, 0.09, 0.21, 0.014 +20071226, 0.10, 0.22, -0.04, 0.014 +20071227, -1.49, -1.16, 0.04, 0.014 +20071228, 0.12, -0.37, -0.14, 0.014 +20071231, -0.65, 0.03, 0.42, 0.014 +20080102, -1.46, -0.10, -0.10, 0.010 +20080103, -0.14, -1.02, -0.37, 0.010 +20080104, -2.56, -0.50, 0.13, 0.010 +20080107, 0.16, 0.11, 0.13, 0.010 +20080108, -1.81, -0.43, -0.86, 0.010 +20080109, 1.10, -0.36, -0.64, 0.010 +20080110, 0.89, -0.16, 0.57, 0.010 +20080111, -1.42, -0.77, 0.25, 0.010 +20080114, 1.02, -0.04, -0.20, 0.010 +20080115, -2.39, 0.49, -0.12, 0.010 +20080116, -0.51, 0.82, 1.20, 0.010 +20080117, -2.80, 0.38, -0.11, 0.010 +20080118, -0.56, -0.24, -0.88, 0.010 +20080122, -0.98, 0.32, 1.19, 0.010 +20080123, 2.04, 0.68, 1.65, 0.010 +20080124, 1.02, -0.94, -0.53, 0.010 +20080125, -1.39, 0.82, 0.24, 0.010 +20080128, 1.71, 0.04, 0.99, 0.010 +20080129, 0.69, -0.48, 0.99, 0.010 +20080130, -0.59, -0.37, -0.10, 0.010 +20080131, 1.66, 0.84, 0.46, 0.010 +20080201, 1.48, 0.69, 0.05, 0.007 +20080204, -0.99, 0.18, -0.17, 0.007 +20080205, -3.01, 0.44, 0.03, 0.007 +20080206, -0.85, -0.37, 0.51, 0.007 +20080207, 0.82, 0.40, 0.03, 0.007 +20080208, -0.30, -0.09, -0.33, 0.007 +20080211, 0.58, -0.18, -0.59, 0.007 +20080212, 0.61, -0.16, -0.06, 0.007 +20080213, 1.46, 0.71, 0.03, 0.007 +20080214, -1.35, -0.77, 0.14, 0.007 +20080215, -0.02, -0.82, 0.33, 0.007 +20080219, -0.06, 0.28, -0.36, 0.007 +20080220, 0.83, 0.22, -0.02, 0.007 +20080221, -1.28, -0.35, -0.19, 0.007 +20080222, 0.61, -0.85, 0.63, 0.007 +20080225, 1.46, 0.45, -0.06, 0.007 +20080226, 0.72, 0.41, -0.09, 0.007 +20080227, -0.11, -0.04, -0.24, 0.007 +20080228, -0.93, -0.39, -0.48, 0.007 +20080229, -2.64, 0.11, -0.16, 0.007 +20080303, -0.04, -0.23, -0.35, 0.009 +20080304, -0.36, 0.00, -0.05, 0.009 +20080305, 0.56, -0.20, -0.36, 0.009 +20080306, -2.26, -0.41, -0.24, 0.009 +20080307, -0.88, 0.25, 0.59, 0.009 +20080310, -1.72, -0.59, 0.50, 0.009 +20080311, 3.57, 0.20, 0.22, 0.009 +20080312, -0.77, 0.21, -0.81, 0.009 +20080313, 0.65, 1.32, -0.21, 0.009 +20080314, -2.07, -0.20, -0.26, 0.009 +20080317, -1.21, -0.77, 0.51, 0.009 +20080318, 4.09, 0.02, -0.25, 0.009 +20080319, -2.37, -0.01, 0.20, 0.009 +20080320, 2.30, -0.16, 0.75, 0.009 +20080324, 1.71, 1.13, -0.61, 0.009 +20080325, 0.38, 0.44, -0.17, 0.009 +20080326, -0.82, 0.61, -0.49, 0.009 +20080327, -1.13, -0.20, 0.02, 0.009 +20080328, -0.82, -0.44, 0.26, 0.009 +20080331, 0.57, 0.04, 0.59, 0.009 +20080401, 3.37, -0.74, 0.05, 0.008 +20080402, -0.09, 0.47, -0.14, 0.008 +20080403, 0.14, -0.08, -0.06, 0.008 +20080404, 0.16, 0.09, -0.46, 0.008 +20080407, 0.14, -0.45, 0.49, 0.008 +20080408, -0.34, 0.33, -0.05, 0.008 +20080409, -0.96, -0.80, -0.22, 0.008 +20080410, 0.53, 0.69, -0.55, 0.008 +20080411, -2.02, -0.63, 0.54, 0.008 +20080414, -0.38, 0.18, -0.32, 0.008 +20080415, 0.46, 0.29, 0.27, 0.008 +20080416, 2.27, 0.48, 0.15, 0.008 +20080417, -0.10, -0.86, 0.34, 0.008 +20080418, 1.67, 0.12, -0.66, 0.008 +20080421, -0.17, -0.13, -0.55, 0.008 +20080422, -0.97, -1.10, 0.29, 0.008 +20080423, 0.26, 0.20, -1.16, 0.008 +20080424, 0.66, 0.54, 0.38, 0.008 +20080425, 0.68, -0.21, 0.17, 0.008 +20080428, -0.03, 0.55, 0.19, 0.008 +20080429, -0.36, -0.42, 0.34, 0.008 +20080430, -0.30, -0.12, 0.09, 0.008 +20080501, 1.66, 0.06, 0.23, 0.008 +20080502, 0.20, -0.76, 0.02, 0.008 +20080505, -0.41, 0.30, -0.13, 0.008 +20080506, 0.75, -0.03, 0.29, 0.008 +20080507, -1.66, 0.06, -0.18, 0.008 +20080508, 0.37, 0.14, -0.16, 0.008 +20080509, -0.54, 0.66, -0.25, 0.008 +20080512, 1.10, 0.66, -0.34, 0.008 +20080513, 0.09, 0.67, -0.04, 0.008 +20080514, 0.38, -0.43, 0.17, 0.008 +20080515, 1.02, -0.08, -0.30, 0.008 +20080516, 0.10, -0.40, 0.03, 0.008 +20080519, -0.02, -0.28, 0.25, 0.008 +20080520, -0.80, 0.62, -0.17, 0.008 +20080521, -1.56, 0.46, 0.18, 0.008 +20080522, 0.38, 0.29, -0.04, 0.008 +20080523, -1.24, 0.15, -0.37, 0.008 +20080527, 0.72, 0.58, -0.22, 0.008 +20080528, 0.49, -0.06, -0.07, 0.008 +20080529, 0.61, 0.30, -0.25, 0.008 +20080530, 0.29, 0.26, 0.00, 0.008 +20080602, -0.98, 0.16, 0.24, 0.008 +20080603, -0.46, 0.28, 0.02, 0.008 +20080604, 0.02, 0.69, -0.74, 0.008 +20080605, 1.95, 0.31, -0.09, 0.008 +20080606, -2.90, 0.16, -0.03, 0.008 +20080609, -0.03, -0.53, -0.22, 0.008 +20080610, -0.31, 0.01, -0.21, 0.008 +20080611, -1.66, -0.14, -0.15, 0.008 +20080612, 0.31, 0.00, -0.06, 0.008 +20080613, 1.55, 0.26, -0.35, 0.008 +20080616, 0.15, 0.88, -0.19, 0.008 +20080617, -0.55, 0.15, -0.25, 0.008 +20080618, -0.96, 0.20, 0.26, 0.008 +20080619, 0.34, 0.49, -0.58, 0.008 +20080620, -1.79, 0.34, 0.07, 0.008 +20080623, -0.16, -0.61, -0.31, 0.008 +20080624, -0.54, -1.17, 0.28, 0.008 +20080625, 0.64, 0.35, -0.44, 0.008 +20080626, -2.83, 0.56, 0.13, 0.008 +20080627, -0.37, 0.23, -0.42, 0.008 +20080630, -0.07, -1.21, 0.32, 0.008 +20080701, 0.29, -0.44, 0.27, 0.007 +20080702, -2.00, -0.86, 0.12, 0.007 +20080703, -0.15, -0.68, -0.17, 0.007 +20080707, -0.81, 0.12, -1.10, 0.007 +20080708, 1.84, 1.01, 2.36, 0.007 +20080709, -2.06, -0.08, -1.32, 0.007 +20080710, 0.65, -0.02, -1.23, 0.007 +20080711, -0.88, 1.48, -1.11, 0.007 +20080714, -0.93, -0.13, -2.43, 0.007 +20080715, -0.96, 1.15, -1.15, 0.007 +20080716, 2.52, 0.03, 4.75, 0.007 +20080717, 1.13, -0.08, 4.11, 0.007 +20080718, -0.08, -0.78, 1.09, 0.007 +20080721, 0.16, 0.30, -0.57, 0.007 +20080722, 1.37, 0.95, 3.16, 0.007 +20080723, 0.32, 0.05, 1.60, 0.007 +20080724, -2.31, 0.51, -2.87, 0.007 +20080725, 0.47, 0.90, -0.99, 0.007 +20080728, -1.76, 0.02, -1.38, 0.007 +20080729, 2.27, -0.29, 3.17, 0.007 +20080730, 1.58, -1.35, -0.15, 0.007 +20080731, -1.16, 0.61, 0.38, 0.007 +20080801, -0.47, 0.66, 0.85, 0.006 +20080804, -1.09, -0.22, 0.50, 0.006 +20080805, 2.65, -0.57, 1.66, 0.006 +20080806, 0.50, 0.53, -1.14, 0.006 +20080807, -1.73, 0.62, -1.73, 0.006 +20080808, 2.28, 0.59, 1.37, 0.006 +20080811, 0.83, 1.38, 1.20, 0.006 +20080812, -1.05, 0.98, -1.93, 0.006 +20080813, -0.15, 0.75, -2.03, 0.006 +20080814, 0.63, 0.10, 1.30, 0.006 +20080815, 0.38, -0.36, 1.07, 0.006 +20080818, -1.45, 0.28, -0.89, 0.006 +20080819, -1.00, -0.56, -1.24, 0.006 +20080820, 0.54, -0.65, -0.07, 0.006 +20080821, 0.12, -0.90, -0.46, 0.006 +20080822, 1.14, 0.43, 1.03, 0.006 +20080825, -1.92, -0.12, -0.52, 0.006 +20080826, 0.33, -0.20, 0.14, 0.006 +20080827, 0.88, 0.27, 0.29, 0.006 +20080828, 1.51, 0.15, 1.80, 0.006 +20080829, -1.25, 0.24, 0.63, 0.006 +20080902, -0.44, 0.31, 2.03, 0.007 +20080903, -0.23, 0.54, 1.66, 0.007 +20080904, -2.90, 0.20, -0.47, 0.007 +20080905, 0.42, -0.83, 1.58, 0.007 +20080908, 1.76, -0.56, 2.20, 0.007 +20080909, -3.41, 0.58, -0.69, 0.007 +20080910, 0.70, 0.41, -0.79, 0.007 +20080911, 1.22, -0.94, 0.18, 0.007 +20080912, 0.29, -0.17, -0.21, 0.007 +20080915, -4.45, 1.47, -2.24, 0.007 +20080916, 1.65, 0.28, 1.96, 0.007 +20080917, -4.60, 0.60, -2.13, 0.007 +20080918, 4.41, 1.08, 4.83, 0.007 +20080919, 4.27, -1.97, 3.60, 0.007 +20080922, -3.94, 0.33, -3.37, 0.007 +20080923, -1.55, 0.10, 0.15, 0.007 +20080924, -0.32, -1.05, -0.76, 0.007 +20080925, 1.70, -1.16, 0.65, 0.007 +20080926, 0.11, -0.90, 0.95, 0.007 +20080929, -8.26, 3.40, -3.67, 0.007 +20080930, 4.88, -3.67, 2.85, 0.007 +20081001, -0.47, -0.82, 2.78, 0.004 +20081002, -4.20, -0.59, 0.63, 0.004 +20081003, -1.47, -0.83, -1.24, 0.004 +20081006, -3.95, -0.06, 0.45, 0.004 +20081007, -5.76, 1.07, -3.40, 0.004 +20081008, -1.27, -0.21, -2.20, 0.004 +20081009, -7.36, -0.24, -2.54, 0.004 +20081010, -0.95, 3.83, 3.01, 0.004 +20081013, 11.35, -2.42, -2.36, 0.004 +20081014, -0.86, -2.99, 4.43, 0.004 +20081015, -8.78, 0.24, 0.82, 0.004 +20081016, 4.32, 2.17, -1.64, 0.004 +20081017, -0.41, -0.78, -0.77, 0.004 +20081020, 4.55, -1.24, -0.87, 0.004 +20081021, -2.95, 0.06, 0.57, 0.004 +20081022, -5.76, 0.90, 0.13, 0.004 +20081023, 0.29, -3.35, -0.86, 0.004 +20081024, -3.28, -0.09, -0.35, 0.004 +20081027, -3.36, -0.86, 0.35, 0.004 +20081028, 9.77, -3.75, 0.27, 0.004 +20081029, -0.47, 2.82, -1.39, 0.004 +20081030, 2.99, 2.01, -0.64, 0.004 +20081031, 1.88, 2.28, 1.96, 0.004 +20081103, -0.05, 0.13, 0.59, 0.001 +20081104, 3.57, -2.61, 0.20, 0.001 +20081105, -5.05, 0.20, -1.46, 0.001 +20081106, -4.83, 1.55, -0.41, 0.001 +20081107, 2.62, -1.15, -0.78, 0.001 +20081110, -1.32, -0.70, -2.04, 0.001 +20081111, -2.25, 0.16, 0.02, 0.001 +20081112, -5.14, -0.50, -1.07, 0.001 +20081113, 6.79, 0.76, -0.11, 0.001 +20081114, -4.27, -2.23, 0.03, 0.001 +20081117, -2.43, 1.82, -1.62, 0.001 +20081118, 0.70, -1.27, -0.69, 0.001 +20081119, -6.29, -0.03, -3.09, 0.001 +20081120, -6.60, 1.70, -2.49, 0.001 +20081121, 6.11, -1.25, -2.04, 0.001 +20081124, 6.27, -1.32, 4.65, 0.001 +20081125, 0.94, 0.06, 2.27, 0.001 +20081126, 3.88, 1.66, 0.24, 0.001 +20081128, 1.06, -0.66, 1.91, 0.001 +20081201, -8.95, -0.74, -3.52, 0.000 +20081202, 3.97, 0.67, 2.54, 0.000 +20081203, 2.63, -0.22, 1.47, 0.000 +20081204, -2.90, 0.02, 1.25, 0.000 +20081205, 3.75, 0.08, 1.77, 0.000 +20081208, 3.80, -0.37, 0.15, 0.000 +20081209, -2.23, -0.59, -1.22, 0.000 +20081210, 1.20, 1.05, -0.98, 0.000 +20081211, -2.93, -1.18, -2.20, 0.000 +20081212, 0.96, 2.30, 0.60, 0.000 +20081215, -1.54, -1.27, -1.26, 0.000 +20081216, 5.15, -0.18, 2.41, 0.000 +20081217, -0.62, 1.73, -0.51, 0.000 +20081218, -1.83, 0.91, -0.34, 0.000 +20081219, 0.35, 0.72, -0.03, 0.000 +20081222, -1.87, 0.00, -0.75, 0.000 +20081223, -0.89, -0.11, -0.90, 0.000 +20081224, 0.51, -0.33, 0.59, 0.000 +20081226, 0.63, 0.58, 0.07, 0.000 +20081229, -0.56, -1.41, -0.03, 0.000 +20081230, 2.47, 0.56, 0.98, 0.000 +20081231, 1.70, 1.54, 0.77, 0.000 +20090102, 3.11, -1.32, -0.36, 0.000 +20090105, -0.28, 0.65, -1.12, 0.000 +20090106, 0.87, 1.01, 0.87, 0.000 +20090107, -2.96, 0.32, -1.11, 0.000 +20090108, 0.47, 0.72, 0.41, 0.000 +20090109, -2.21, -1.43, -1.11, 0.000 +20090112, -2.28, 0.30, -1.81, 0.000 +20090113, 0.28, 0.42, 0.21, 0.000 +20090114, -3.38, -0.54, -1.24, 0.000 +20090115, 0.39, 2.26, -2.25, 0.000 +20090116, 0.74, 0.44, -1.02, 0.000 +20090120, -5.34, 0.12, -3.90, 0.000 +20090121, 4.21, -1.20, 2.53, 0.000 +20090122, -1.62, -1.01, -1.61, 0.000 +20090123, 0.44, -0.49, 0.90, 0.000 +20090126, 0.54, 0.76, -0.60, 0.000 +20090127, 1.08, -0.42, 0.32, 0.000 +20090128, 3.32, -0.59, 2.63, 0.000 +20090129, -3.23, -0.15, -2.29, 0.000 +20090130, -2.16, 0.19, -1.19, 0.000 +20090202, 0.06, 1.29, -0.51, 0.001 +20090203, 1.46, -0.19, -2.35, 0.001 +20090204, -0.60, -0.23, -0.43, 0.001 +20090205, 1.61, 0.14, -0.24, 0.001 +20090206, 2.79, -0.03, 2.19, 0.001 +20090209, 0.03, -0.93, 0.20, 0.001 +20090210, -4.62, 1.06, -2.78, 0.001 +20090211, 0.75, -0.76, 1.25, 0.001 +20090212, 0.30, 0.32, -0.59, 0.001 +20090213, -0.85, 0.97, -1.44, 0.001 +20090217, -4.36, 1.00, -2.30, 0.001 +20090218, -0.33, -0.93, -0.71, 0.001 +20090219, -1.15, -0.04, -1.99, 0.001 +20090220, -1.16, -0.02, -0.99, 0.001 +20090223, -3.43, -0.47, 0.87, 0.001 +20090224, 4.00, -0.96, 2.93, 0.001 +20090225, -1.15, -1.45, 0.18, 0.001 +20090226, -1.53, -0.42, 1.28, 0.001 +20090227, -2.01, 1.80, -2.12, 0.001 +20090302, -4.75, -0.25, -0.28, 0.001 +20090303, -0.71, -0.69, -2.42, 0.001 +20090304, 2.42, 0.53, -0.98, 0.001 +20090305, -4.21, -0.48, -2.99, 0.001 +20090306, 0.20, 0.41, -0.66, 0.001 +20090309, -1.09, -0.93, 0.33, 0.001 +20090310, 6.35, -0.91, 4.15, 0.001 +20090311, 0.30, -0.55, 0.57, 0.001 +20090312, 4.16, 1.12, 2.60, 0.001 +20090313, 0.73, 0.17, 0.55, 0.001 +20090316, -0.55, -1.03, 0.42, 0.001 +20090317, 3.20, 0.68, 1.41, 0.001 +20090318, 2.18, 0.09, 3.96, 0.001 +20090319, -1.03, 1.00, -2.53, 0.001 +20090320, -1.95, -0.36, -0.79, 0.001 +20090323, 6.89, -0.65, 4.03, 0.001 +20090324, -1.93, -1.15, -1.53, 0.001 +20090325, 0.94, 0.96, 1.30, 0.001 +20090326, 2.68, 1.90, -0.01, 0.001 +20090327, -2.06, -1.35, 0.28, 0.001 +20090330, -3.47, 1.74, -3.83, 0.001 +20090331, 1.29, -0.56, 1.52, 0.001 +20090401, 1.65, -0.50, 1.47, 0.001 +20090402, 3.07, 1.93, 0.49, 0.001 +20090403, 1.02, -0.12, 0.86, 0.001 +20090406, -0.92, -0.66, -0.48, 0.001 +20090407, -2.42, -0.73, -0.19, 0.001 +20090408, 1.28, 1.06, 0.09, 0.001 +20090409, 3.91, 0.36, 4.33, 0.001 +20090413, 0.26, -0.92, 2.27, 0.001 +20090414, -2.02, -0.07, -2.84, 0.001 +20090415, 1.12, -0.15, 2.32, 0.001 +20090416, 1.69, 1.23, 0.13, 0.001 +20090417, 0.55, 0.86, 0.26, 0.001 +20090420, -4.32, 0.05, -4.22, 0.001 +20090421, 2.19, 0.79, 3.08, 0.001 +20090422, -0.61, 1.47, -1.10, 0.001 +20090423, 0.66, -1.83, 0.24, 0.001 +20090424, 1.77, 0.80, 0.17, 0.001 +20090427, -0.95, -0.46, -1.71, 0.001 +20090428, -0.20, 0.92, 0.07, 0.001 +20090429, 2.41, 0.75, 1.18, 0.001 +20090430, -0.04, -0.42, -0.64, 0.001 +20090501, 0.45, -0.48, -0.25, 0.000 +20090504, 3.36, -0.39, 2.93, 0.000 +20090505, -0.27, 0.19, -0.15, 0.000 +20090506, 1.45, -2.07, 2.63, 0.000 +20090507, -1.42, -0.77, -0.80, 0.000 +20090508, 2.48, 0.26, 2.76, 0.000 +20090511, -2.01, 1.21, -2.45, 0.000 +20090512, -0.31, -0.79, -1.63, 0.000 +20090513, -2.91, -1.52, -1.47, 0.000 +20090514, 1.11, 0.50, 0.96, 0.000 +20090515, -1.02, 0.56, -1.13, 0.000 +20090518, 3.13, 0.35, 1.93, 0.000 +20090519, -0.04, 0.20, -1.21, 0.000 +20090520, -0.48, -0.02, -1.10, 0.000 +20090521, -1.68, -0.11, 0.35, 0.000 +20090522, -0.15, -0.34, -0.57, 0.000 +20090526, 2.78, 1.52, 0.62, 0.000 +20090527, -1.80, 0.25, -1.29, 0.000 +20090528, 1.35, -1.37, 0.45, 0.000 +20090529, 1.38, 0.56, -0.21, 0.000 +20090601, 2.72, 1.56, -0.72, 0.000 +20090602, 0.29, 0.85, -0.19, 0.000 +20090603, -1.39, 0.78, -0.84, 0.000 +20090604, 1.18, 0.15, 1.08, 0.000 +20090605, -0.19, 0.13, -0.55, 0.000 +20090608, -0.20, -0.97, 0.60, 0.000 +20090609, 0.49, 0.34, -0.28, 0.000 +20090610, -0.35, -0.33, -0.47, 0.000 +20090611, 0.63, -0.21, 0.26, 0.000 +20090612, 0.03, -0.19, 0.01, 0.000 +20090615, -2.38, -0.30, -0.33, 0.000 +20090616, -1.33, -0.09, -0.26, 0.000 +20090617, -0.08, 0.90, -0.98, 0.000 +20090618, 0.74, -0.64, 0.41, 0.000 +20090619, 0.35, 0.29, 0.10, 0.000 +20090622, -3.08, -0.37, -0.71, 0.000 +20090623, 0.08, -1.10, 0.14, 0.000 +20090624, 0.78, 0.27, -0.18, 0.000 +20090625, 2.19, 0.81, 0.04, 0.000 +20090626, 0.04, 1.57, 0.13, 0.000 +20090629, 0.82, -1.09, 0.35, 0.000 +20090630, -0.74, 0.25, -0.19, 0.000 +20090701, 0.54, 1.49, 0.19, 0.001 +20090702, -2.89, -0.60, -1.03, 0.001 +20090706, -0.03, -0.94, -0.98, 0.001 +20090707, -1.93, 0.03, -0.15, 0.001 +20090708, -0.20, -0.55, -1.11, 0.001 +20090709, 0.35, -0.58, 1.25, 0.001 +20090710, -0.35, 0.94, -0.50, 0.001 +20090713, 2.43, -0.68, 1.81, 0.001 +20090714, 0.59, 0.32, 0.63, 0.001 +20090715, 2.98, 0.56, 1.41, 0.001 +20090716, 0.94, 0.46, -0.11, 0.001 +20090717, -0.05, -0.23, -0.04, 0.001 +20090720, 1.19, 0.33, 0.37, 0.001 +20090721, 0.31, -0.53, -0.81, 0.001 +20090722, 0.08, 0.61, 0.34, 0.001 +20090723, 2.37, 0.59, 1.09, 0.001 +20090724, 0.38, 0.31, 0.15, 0.001 +20090727, 0.30, 0.09, 0.98, 0.001 +20090728, -0.20, 0.29, -0.34, 0.001 +20090729, -0.46, -0.13, -0.82, 0.001 +20090730, 1.24, 0.31, 1.45, 0.001 +20090731, 0.05, -0.17, 1.27, 0.001 +20090803, 1.63, 0.10, 1.68, 0.001 +20090804, 0.32, 0.43, 0.83, 0.001 +20090805, -0.30, -1.11, 1.70, 0.001 +20090806, -0.62, -0.98, 0.05, 0.001 +20090807, 1.44, 0.98, 1.18, 0.001 +20090810, -0.32, 0.47, 0.27, 0.001 +20090811, -1.25, -0.07, -1.14, 0.001 +20090812, 1.21, 0.44, 0.55, 0.001 +20090813, 0.73, -0.30, 1.11, 0.001 +20090814, -0.97, -1.21, -0.28, 0.001 +20090817, -2.46, -0.11, -1.69, 0.001 +20090818, 1.11, 0.47, 1.30, 0.001 +20090819, 0.72, 0.44, -0.39, 0.001 +20090820, 1.00, -0.04, 0.84, 0.001 +20090821, 1.83, 0.36, 0.68, 0.001 +20090824, -0.09, 0.06, -0.28, 0.001 +20090825, 0.27, 0.17, 0.65, 0.001 +20090826, -0.01, 0.14, 0.11, 0.001 +20090827, 0.21, -0.15, 0.53, 0.001 +20090828, -0.19, -0.37, 0.54, 0.001 +20090831, -0.86, -0.48, -0.63, 0.001 +20090901, -2.15, 0.10, -2.03, 0.000 +20090902, -0.28, 0.14, -0.70, 0.000 +20090903, 0.93, 0.03, 1.09, 0.000 +20090904, 1.31, 0.26, 0.27, 0.000 +20090908, 0.88, 0.20, 0.09, 0.000 +20090909, 0.90, 0.80, 0.67, 0.000 +20090910, 1.08, 0.46, 0.93, 0.000 +20090911, -0.10, 0.13, -0.09, 0.000 +20090914, 0.65, 0.09, 0.64, 0.000 +20090915, 0.44, 0.58, 0.60, 0.000 +20090916, 1.55, 0.41, 1.30, 0.000 +20090917, -0.30, -0.07, -0.34, 0.000 +20090918, 0.23, 0.10, -0.20, 0.000 +20090921, -0.27, -0.17, -0.67, 0.000 +20090922, 0.66, -0.09, 1.50, 0.000 +20090923, -1.00, 0.15, -0.88, 0.000 +20090924, -1.07, -0.66, -1.34, 0.000 +20090925, -0.64, 0.19, -0.51, 0.000 +20090928, 1.79, 0.36, 1.04, 0.000 +20090929, -0.12, -0.06, 0.36, 0.000 +20090930, -0.40, -0.55, -0.62, 0.000 +20091001, -2.63, -0.60, -1.37, 0.000 +20091002, -0.49, -0.31, -0.14, 0.000 +20091005, 1.54, 0.09, 1.83, 0.000 +20091006, 1.42, 0.53, 0.24, 0.000 +20091007, 0.28, -0.37, 0.56, 0.000 +20091008, 0.82, 0.30, 0.34, 0.000 +20091009, 0.59, 0.60, -0.22, 0.000 +20091012, 0.36, -0.52, 0.33, 0.000 +20091013, -0.22, 0.12, -0.18, 0.000 +20091014, 1.73, 0.04, 1.12, 0.000 +20091015, 0.35, -0.23, -0.45, 0.000 +20091016, -0.82, -0.01, -1.27, 0.000 +20091019, 0.92, 0.08, 0.02, 0.000 +20091020, -0.69, -0.70, -0.48, 0.000 +20091021, -0.90, -0.09, -0.54, 0.000 +20091022, 1.05, 0.03, 0.65, 0.000 +20091023, -1.23, -0.80, -1.02, 0.000 +20091026, -1.20, 0.02, -1.35, 0.000 +20091027, -0.51, -0.62, -0.60, 0.000 +20091028, -2.16, -1.49, -1.40, 0.000 +20091029, 2.20, -0.25, 1.64, 0.000 +20091030, -2.80, -0.07, -1.87, 0.000 +20091102, 0.54, -0.79, -0.33, 0.000 +20091103, 0.45, 1.05, 0.75, 0.000 +20091104, 0.03, -1.05, -0.49, 0.000 +20091105, 2.07, 1.14, 0.63, 0.000 +20091106, 0.24, -0.23, -0.45, 0.000 +20091109, 2.17, -0.43, 1.35, 0.000 +20091110, -0.05, -0.80, -0.08, 0.000 +20091111, 0.52, 0.31, 0.31, 0.000 +20091112, -1.12, -0.89, -0.76, 0.000 +20091113, 0.61, 0.36, -0.04, 0.000 +20091116, 1.54, 1.30, 0.20, 0.000 +20091117, 0.14, -0.21, -0.04, 0.000 +20091118, -0.13, -0.49, 0.44, 0.000 +20091119, -1.39, -0.79, -0.59, 0.000 +20091120, -0.33, 0.20, -0.47, 0.000 +20091123, 1.30, 0.39, -0.09, 0.000 +20091124, -0.09, -0.12, -0.43, 0.000 +20091125, 0.47, -0.42, 0.12, 0.000 +20091127, -1.74, -0.55, -0.77, 0.000 +20091130, 0.28, -0.39, 0.74, 0.000 +20091201, 1.28, 0.63, -0.27, 0.000 +20091202, 0.18, 1.03, -0.30, 0.000 +20091203, -0.86, -0.27, -0.34, 0.000 +20091204, 0.70, 1.53, 0.75, 0.000 +20091207, -0.15, 0.51, -0.27, 0.000 +20091208, -0.97, 0.06, -0.13, 0.000 +20091209, 0.32, -0.19, 0.01, 0.000 +20091210, 0.50, -0.96, -0.10, 0.000 +20091211, 0.43, 0.28, 0.47, 0.000 +20091214, 0.80, 0.63, 0.34, 0.000 +20091215, -0.48, 0.31, -0.59, 0.000 +20091216, 0.19, 0.45, 0.73, 0.000 +20091217, -1.18, 0.25, -0.33, 0.000 +20091218, 0.68, 0.22, 0.24, 0.000 +20091221, 1.03, 0.15, 0.33, 0.000 +20091222, 0.43, 0.58, -0.10, 0.000 +20091223, 0.36, 0.91, -0.39, 0.000 +20091224, 0.51, -0.08, 0.20, 0.000 +20091228, 0.08, -0.12, -0.28, 0.000 +20091229, -0.09, 0.11, -0.08, 0.000 +20091230, 0.00, -0.06, -0.09, 0.000 +20091231, -0.99, -0.20, 0.32, 0.000 +20100104, 1.69, 0.58, 1.12, 0.000 +20100105, 0.31, -0.58, 1.22, 0.000 +20100106, 0.13, -0.25, 0.52, 0.000 +20100107, 0.40, 0.08, 0.94, 0.000 +20100108, 0.33, 0.40, 0.01, 0.000 +20100111, 0.13, -0.13, -0.21, 0.000 +20100112, -1.00, -0.19, -1.31, 0.000 +20100113, 0.85, 0.27, 0.34, 0.000 +20100114, 0.24, 0.28, 0.05, 0.000 +20100115, -1.12, -0.13, -0.40, 0.000 +20100119, 1.26, 0.43, -0.16, 0.000 +20100120, -0.98, -0.59, 0.25, 0.000 +20100121, -1.74, 0.41, -1.15, 0.000 +20100122, -2.14, 0.55, -0.82, 0.000 +20100125, 0.37, -0.20, 0.34, 0.000 +20100126, -0.45, -0.09, -0.46, 0.000 +20100127, 0.53, 0.23, 0.16, 0.000 +20100128, -1.18, -0.67, 0.46, 0.000 +20100129, -0.97, -0.04, -0.45, 0.000 +20100201, 1.39, -0.20, 0.91, 0.000 +20100202, 1.21, -0.42, 0.66, 0.000 +20100203, -0.49, 0.11, -0.38, 0.000 +20100204, -3.14, -0.15, -1.19, 0.000 +20100205, 0.29, -0.05, -0.06, 0.000 +20100208, -0.79, 0.05, -0.36, 0.000 +20100209, 1.33, 0.32, 0.59, 0.000 +20100210, -0.17, 0.25, 0.29, 0.000 +20100211, 1.13, 0.71, 0.07, 0.000 +20100212, -0.07, 0.97, 0.14, 0.000 +20100216, 1.75, -0.28, 1.02, 0.000 +20100217, 0.49, 0.11, 0.12, 0.000 +20100218, 0.62, 0.11, 0.01, 0.000 +20100219, 0.28, 0.05, 0.48, 0.000 +20100222, -0.05, -0.04, 0.57, 0.000 +20100223, -1.24, 0.27, -0.94, 0.000 +20100224, 0.94, -0.34, 0.53, 0.000 +20100225, -0.13, 0.24, 0.28, 0.000 +20100226, 0.13, -0.55, 0.39, 0.000 +20100301, 1.20, 1.22, 0.07, 0.000 +20100302, 0.32, 0.61, 0.18, 0.000 +20100303, 0.09, 0.17, 0.09, 0.000 +20100304, 0.37, 0.09, 0.23, 0.000 +20100305, 1.43, 0.40, 0.61, 0.000 +20100308, 0.02, 0.08, 0.26, 0.000 +20100309, 0.21, 0.25, -0.10, 0.000 +20100310, 0.53, 0.05, 0.69, 0.000 +20100311, 0.43, -0.09, -0.11, 0.000 +20100312, -0.02, 0.03, -0.28, 0.000 +20100315, -0.02, -0.31, -0.48, 0.000 +20100316, 0.78, -0.14, 0.59, 0.000 +20100317, 0.57, 0.04, 0.35, 0.000 +20100318, -0.10, -0.17, -0.57, 0.000 +20100319, -0.62, -0.60, -0.63, 0.000 +20100322, 0.67, 0.89, 0.01, 0.000 +20100323, 0.80, 0.35, 0.36, 0.000 +20100324, -0.60, -0.64, 0.82, 0.000 +20100325, -0.26, -0.48, -0.28, 0.000 +20100326, 0.06, -0.08, 0.31, 0.000 +20100329, 0.59, -0.07, 0.19, 0.000 +20100330, 0.04, 0.29, -0.45, 0.000 +20100331, -0.36, -0.50, 0.15, 0.000 +20100401, 0.75, -0.01, 0.79, 0.001 +20100405, 0.95, 1.07, 0.92, 0.001 +20100406, 0.19, 0.23, 0.46, 0.001 +20100407, -0.48, 0.21, 0.24, 0.001 +20100408, 0.31, -0.28, 0.39, 0.001 +20100409, 0.66, -0.12, 0.17, 0.001 +20100412, 0.23, 0.27, 0.06, 0.001 +20100413, 0.07, 0.16, -0.04, 0.001 +20100414, 1.24, 0.87, 1.41, 0.001 +20100415, 0.11, 0.59, -0.04, 0.001 +20100416, -1.53, 0.80, -1.83, 0.001 +20100419, 0.28, -0.85, -0.09, 0.001 +20100420, 0.88, 0.66, 0.56, 0.001 +20100421, -0.06, 0.71, 0.20, 0.001 +20100422, 0.37, 0.81, 0.49, 0.001 +20100423, 0.70, 0.37, 0.57, 0.001 +20100426, -0.43, 0.46, -0.31, 0.001 +20100427, -2.34, 0.11, -1.41, 0.001 +20100428, 0.56, -0.74, 0.74, 0.001 +20100429, 1.34, 0.46, 0.46, 0.001 +20100430, -1.72, -0.97, -0.92, 0.001 +20100503, 1.36, 0.65, 0.61, 0.001 +20100504, -2.50, -0.58, -0.90, 0.001 +20100505, -0.75, -0.74, -0.63, 0.001 +20100506, -3.27, -0.27, -0.90, 0.001 +20100507, -1.75, -1.35, -0.48, 0.001 +20100510, 4.47, 0.97, 1.17, 0.001 +20100511, -0.17, 1.16, -0.15, 0.001 +20100512, 1.63, 1.48, 0.19, 0.001 +20100513, -1.12, 0.32, -0.30, 0.001 +20100514, -1.92, -0.27, -0.76, 0.001 +20100517, 0.11, 0.04, -0.56, 0.001 +20100518, -1.41, -0.24, -0.96, 0.001 +20100519, -0.63, -0.97, 0.03, 0.001 +20100520, -3.99, -0.89, -1.16, 0.001 +20100521, 1.44, -0.44, 1.58, 0.001 +20100524, -1.19, 0.33, -0.91, 0.001 +20100525, -0.03, -0.47, 0.54, 0.001 +20100526, -0.35, 0.83, 0.38, 0.001 +20100527, 3.45, 0.67, 1.61, 0.001 +20100528, -1.18, 0.06, -0.63, 0.001 +20100601, -1.89, -1.09, -1.57, 0.001 +20100602, 2.63, 0.19, 0.43, 0.001 +20100603, 0.54, 0.70, -0.28, 0.001 +20100604, -3.62, -1.22, -0.70, 0.001 +20100607, -1.52, -1.08, -1.06, 0.001 +20100608, 0.90, -1.47, 0.17, 0.001 +20100609, -0.46, 0.74, -0.17, 0.001 +20100610, 2.95, 0.40, 0.90, 0.001 +20100611, 0.62, 0.93, 0.06, 0.001 +20100614, -0.06, 0.66, 0.01, 0.001 +20100615, 2.36, 0.08, 0.91, 0.001 +20100616, -0.11, -0.21, -0.32, 0.001 +20100617, 0.08, -0.16, -0.46, 0.001 +20100618, 0.13, 0.00, 0.24, 0.001 +20100621, -0.47, -0.55, 0.00, 0.001 +20100622, -1.63, -0.34, -0.75, 0.001 +20100623, -0.29, -0.05, 0.23, 0.001 +20100624, -1.65, 0.10, -0.89, 0.001 +20100625, 0.48, 1.05, 1.03, 0.001 +20100628, -0.23, -0.02, -0.72, 0.001 +20100629, -3.23, -0.66, -1.28, 0.001 +20100630, -0.98, 0.04, -0.36, 0.001 +20100701, -0.40, -0.31, -0.43, 0.001 +20100702, -0.50, -0.31, -0.43, 0.001 +20100706, 0.33, -2.00, 0.08, 0.001 +20100707, 3.17, 0.06, 0.45, 0.001 +20100708, 1.00, 0.57, 0.00, 0.001 +20100709, 0.81, 0.65, 0.58, 0.001 +20100712, -0.11, -1.19, 0.05, 0.001 +20100713, 1.76, 1.62, 0.65, 0.001 +20100714, -0.04, -0.16, -0.76, 0.001 +20100715, 0.02, -0.87, -0.10, 0.001 +20100716, -2.94, -0.56, -0.96, 0.001 +20100719, 0.54, -0.15, -0.19, 0.001 +20100720, 1.23, 0.65, 0.14, 0.001 +20100721, -1.30, -0.38, -0.42, 0.001 +20100722, 2.37, 1.25, 0.54, 0.001 +20100723, 1.05, 1.47, -0.23, 0.001 +20100726, 1.23, 0.87, 0.11, 0.001 +20100727, -0.23, -0.33, 0.35, 0.001 +20100728, -0.82, -0.90, -0.03, 0.001 +20100729, -0.36, 0.32, 0.67, 0.001 +20100730, 0.06, 0.03, -0.22, 0.001 +20100802, 2.08, -0.54, 0.15, 0.001 +20100803, -0.55, -0.41, -0.51, 0.001 +20100804, 0.74, 0.43, -0.10, 0.001 +20100805, -0.22, -0.82, 0.13, 0.001 +20100806, -0.36, -0.17, -0.35, 0.001 +20100809, 0.62, 0.62, 0.05, 0.001 +20100810, -0.79, -1.23, -0.21, 0.001 +20100811, -2.91, -1.07, -0.65, 0.001 +20100812, -0.50, -0.07, -0.05, 0.001 +20100813, -0.47, -0.80, 0.24, 0.001 +20100816, 0.10, 0.93, -0.20, 0.001 +20100817, 1.31, 0.59, -0.18, 0.001 +20100818, 0.21, 0.06, 0.07, 0.001 +20100819, -1.74, -0.82, -0.42, 0.001 +20100820, -0.28, 0.27, -0.23, 0.001 +20100823, -0.50, -0.94, -0.44, 0.001 +20100824, -1.48, 0.14, 0.14, 0.001 +20100825, 0.45, 1.04, 0.00, 0.001 +20100826, -0.76, -0.08, -0.26, 0.001 +20100827, 1.82, 0.93, 0.37, 0.001 +20100830, -1.54, -0.82, -0.40, 0.001 +20100831, 0.01, -0.26, 0.77, 0.001 +20100901, 3.05, 0.62, 0.47, 0.001 +20100902, 0.97, 0.26, -0.31, 0.001 +20100903, 1.35, 0.35, 0.20, 0.001 +20100907, -1.23, -0.79, -0.74, 0.001 +20100908, 0.65, 0.02, 0.17, 0.001 +20100909, 0.44, -0.48, 0.55, 0.001 +20100910, 0.45, -0.09, -0.13, 0.001 +20100913, 1.30, 1.13, 0.21, 0.001 +20100914, -0.06, -0.23, -0.52, 0.001 +20100915, 0.36, 0.11, -0.23, 0.001 +20100916, -0.07, -0.51, -0.69, 0.001 +20100917, 0.15, 0.61, -0.58, 0.001 +20100920, 1.60, 1.13, 0.23, 0.001 +20100921, -0.31, -0.28, -0.32, 0.001 +20100922, -0.52, -0.56, -0.53, 0.001 +20100923, -0.78, -0.08, -0.68, 0.001 +20100924, 2.19, 0.99, 0.48, 0.001 +20100927, -0.46, 0.21, -0.45, 0.001 +20100928, 0.58, 0.53, 0.10, 0.001 +20100929, -0.17, 0.66, -0.25, 0.001 +20100930, -0.26, 0.04, 0.29, 0.001 +20101001, 0.43, -0.06, 0.21, 0.001 +20101004, -0.88, -0.72, -0.07, 0.001 +20101005, 2.11, 0.77, 0.15, 0.001 +20101006, -0.10, -0.39, 0.47, 0.001 +20101007, -0.16, 0.05, -0.28, 0.001 +20101008, 0.74, 0.96, -0.13, 0.001 +20101011, 0.04, 0.02, -0.22, 0.001 +20101012, 0.39, -0.04, 0.18, 0.001 +20101013, 0.78, 0.88, -0.36, 0.001 +20101014, -0.38, 0.41, -0.41, 0.001 +20101015, 0.18, -0.06, -1.28, 0.001 +20101018, 0.69, 0.06, 0.86, 0.001 +20101019, -1.67, -0.69, 0.26, 0.001 +20101020, 1.06, 0.07, 0.09, 0.001 +20101021, 0.11, -0.53, -0.51, 0.001 +20101022, 0.29, 0.46, -0.43, 0.001 +20101025, 0.31, 0.47, -0.53, 0.001 +20101026, 0.02, 0.01, -0.18, 0.001 +20101027, -0.24, -0.18, -0.22, 0.001 +20101028, 0.08, -0.60, -0.06, 0.001 +20101029, 0.07, 0.32, -0.11, 0.001 +20101101, -0.01, -0.65, -0.20, 0.001 +20101102, 0.90, 1.34, -0.17, 0.001 +20101103, 0.38, -0.06, 0.17, 0.001 +20101104, 1.94, 0.47, 1.05, 0.001 +20101105, 0.41, -0.09, 0.68, 0.001 +20101108, -0.12, 0.45, -0.48, 0.001 +20101109, -0.78, -0.41, -0.49, 0.001 +20101110, 0.53, 0.58, 0.55, 0.001 +20101111, -0.35, -0.06, -0.08, 0.001 +20101112, -1.29, -0.49, -0.06, 0.001 +20101115, -0.09, 0.20, 0.32, 0.001 +20101116, -1.58, -0.34, -0.15, 0.001 +20101117, 0.07, 0.34, -0.29, 0.001 +20101118, 1.57, 0.31, -0.30, 0.001 +20101119, 0.31, 0.21, -0.18, 0.001 +20101122, -0.02, 0.60, -0.94, 0.001 +20101123, -1.38, 0.48, -0.28, 0.001 +20101124, 1.59, 0.66, 0.03, 0.001 +20101126, -0.67, 0.29, -0.35, 0.001 +20101129, -0.13, 0.01, 0.42, 0.001 +20101130, -0.59, -0.21, -0.02, 0.001 +20101201, 2.12, -0.09, 0.01, 0.001 +20101202, 1.23, -0.31, 0.66, 0.001 +20101203, 0.35, 0.39, 0.05, 0.001 +20101206, -0.03, 0.75, -0.05, 0.001 +20101207, 0.10, 0.36, 0.00, 0.001 +20101208, 0.32, -0.52, 0.62, 0.001 +20101209, 0.42, -0.01, 0.65, 0.001 +20101210, 0.67, 0.43, 0.24, 0.001 +20101213, -0.08, -0.58, 0.08, 0.001 +20101214, 0.09, -0.04, -0.11, 0.001 +20101215, -0.49, 0.20, -0.54, 0.001 +20101216, 0.70, 0.43, -0.11, 0.001 +20101217, 0.15, 0.15, -0.13, 0.001 +20101220, 0.23, 0.01, 0.33, 0.001 +20101221, 0.68, 0.35, 0.74, 0.001 +20101222, 0.29, -0.39, 0.82, 0.001 +20101223, -0.16, 0.07, -0.32, 0.001 +20101227, 0.08, 0.21, 0.44, 0.001 +20101228, 0.00, -0.43, 0.18, 0.001 +20101229, 0.17, 0.11, -0.16, 0.001 +20101230, -0.11, 0.14, -0.03, 0.001 +20101231, -0.10, -0.65, 0.23, 0.001 +20110103, 1.18, 0.53, 0.79, 0.000 +20110104, -0.26, -1.38, 0.11, 0.000 +20110105, 0.59, 0.61, 0.14, 0.000 +20110106, -0.15, -0.06, -0.32, 0.000 +20110107, -0.21, -0.25, -0.30, 0.000 +20110110, -0.02, 0.56, -0.15, 0.000 +20110111, 0.39, 0.12, 0.22, 0.000 +20110112, 0.87, -0.05, 0.26, 0.000 +20110113, -0.17, 0.13, -0.38, 0.000 +20110114, 0.69, 0.02, 0.49, 0.000 +20110118, 0.18, 0.07, -0.41, 0.000 +20110119, -1.24, -1.37, -0.54, 0.000 +20110120, -0.30, -1.04, 0.76, 0.000 +20110121, 0.11, -0.89, 0.56, 0.000 +20110124, 0.65, 0.31, -0.22, 0.000 +20110125, 0.02, -0.02, 0.10, 0.000 +20110126, 0.60, 1.38, -0.22, 0.000 +20110127, 0.26, -0.09, 0.28, 0.000 +20110128, -1.88, -0.88, -0.03, 0.000 +20110131, 0.71, -0.01, -0.28, 0.000 +20110201, 1.75, 0.51, 0.53, 0.001 +20110202, -0.26, -0.08, -0.39, 0.001 +20110203, 0.26, -0.06, -0.10, 0.001 +20110204, 0.29, 0.09, -0.57, 0.001 +20110207, 0.70, 0.27, 0.59, 0.001 +20110208, 0.48, 0.23, 0.00, 0.001 +20110209, -0.31, -0.20, -0.09, 0.001 +20110210, 0.12, 0.35, -0.30, 0.001 +20110211, 0.67, 0.41, 0.51, 0.001 +20110214, 0.30, 0.21, -0.15, 0.001 +20110215, -0.38, -0.37, 0.30, 0.001 +20110216, 0.68, 0.38, 0.26, 0.001 +20110217, 0.37, 0.38, 0.21, 0.001 +20110218, 0.12, -0.14, -0.03, 0.001 +20110222, -2.19, -0.53, -0.35, 0.001 +20110223, -0.78, -1.18, 0.40, 0.001 +20110224, 0.04, 0.72, -0.32, 0.001 +20110225, 1.22, 1.01, 0.22, 0.001 +20110228, 0.42, -0.44, 0.27, 0.001 +20110301, -1.58, -0.30, -0.06, 0.000 +20110302, 0.28, 0.33, -0.23, 0.000 +20110303, 1.76, 0.45, -0.04, 0.000 +20110304, -0.67, 0.30, -0.53, 0.000 +20110307, -0.96, -0.72, 0.12, 0.000 +20110308, 0.97, 0.46, 0.67, 0.000 +20110309, -0.17, -0.26, 0.32, 0.000 +20110310, -1.93, -0.74, -0.31, 0.000 +20110311, 0.69, -0.34, 0.14, 0.000 +20110314, -0.59, 0.10, -0.40, 0.000 +20110315, -1.05, 0.28, -0.14, 0.000 +20110316, -1.77, 0.63, -0.07, 0.000 +20110317, 1.12, -0.81, 0.58, 0.000 +20110318, 0.49, 0.57, 0.22, 0.000 +20110321, 1.58, 0.96, -0.26, 0.000 +20110322, -0.34, -0.09, -0.05, 0.000 +20110323, 0.31, 0.15, -0.40, 0.000 +20110324, 0.96, -0.11, -0.42, 0.000 +20110325, 0.41, 0.43, -0.04, 0.000 +20110328, -0.35, 0.05, -0.18, 0.000 +20110329, 0.74, 0.26, -0.19, 0.000 +20110330, 0.79, 0.43, 0.08, 0.000 +20110331, -0.11, 0.59, -0.30, 0.000 +20110401, 0.52, -0.10, 0.24, 0.000 +20110404, 0.09, 0.25, -0.11, 0.000 +20110405, 0.08, 0.47, -0.20, 0.000 +20110406, 0.21, -0.20, 0.60, 0.000 +20110407, -0.20, -0.21, -0.16, 0.000 +20110408, -0.47, -0.56, -0.27, 0.000 +20110411, -0.39, -0.65, -0.11, 0.000 +20110412, -0.84, -0.67, 0.02, 0.000 +20110413, 0.11, 0.15, -0.69, 0.000 +20110414, 0.00, 0.37, -0.35, 0.000 +20110415, 0.44, 0.58, -0.06, 0.000 +20110418, -1.15, -0.39, -0.35, 0.000 +20110419, 0.50, -0.35, -0.16, 0.000 +20110420, 1.45, 0.61, -0.61, 0.000 +20110421, 0.56, 0.32, -0.05, 0.000 +20110425, -0.16, -0.06, -0.04, 0.000 +20110426, 0.89, 0.14, -0.04, 0.000 +20110427, 0.66, -0.08, -0.23, 0.000 +20110428, 0.32, -0.14, 0.12, 0.000 +20110429, 0.29, 0.21, -0.05, 0.000 +20110502, -0.28, -0.90, -0.14, 0.000 +20110503, -0.50, -1.01, 0.44, 0.000 +20110504, -0.74, -0.55, -0.15, 0.000 +20110505, -0.82, 0.51, -0.34, 0.000 +20110506, 0.46, 0.04, -0.17, 0.000 +20110509, 0.55, 0.67, -0.43, 0.000 +20110510, 0.86, 0.66, 0.24, 0.000 +20110511, -1.09, -0.62, -0.44, 0.000 +20110512, 0.52, 0.36, -0.43, 0.000 +20110513, -0.88, -0.46, -0.32, 0.000 +20110516, -0.76, -1.00, 0.44, 0.000 +20110517, -0.11, -0.48, 0.12, 0.000 +20110518, 1.02, 0.67, -0.30, 0.000 +20110519, 0.22, -0.03, -0.12, 0.000 +20110520, -0.73, 0.08, -0.21, 0.000 +20110523, -1.29, -0.53, 0.01, 0.000 +20110524, -0.14, -0.29, 0.00, 0.000 +20110525, 0.45, 1.02, -0.36, 0.000 +20110526, 0.52, 0.66, -0.15, 0.000 +20110527, 0.49, 0.18, 0.23, 0.000 +20110531, 1.04, 0.43, -0.06, 0.000 +20110601, -2.33, -0.75, -0.26, 0.000 +20110602, -0.10, -0.02, 0.13, 0.000 +20110603, -1.10, -0.55, 0.18, 0.000 +20110606, -1.18, -0.26, -0.32, 0.000 +20110607, -0.04, 0.31, -0.12, 0.000 +20110608, -0.54, -0.73, 0.04, 0.000 +20110609, 0.75, -0.08, 0.01, 0.000 +20110610, -1.37, -0.24, 0.44, 0.000 +20110613, 0.01, -0.55, 0.36, 0.000 +20110614, 1.36, 1.05, -0.39, 0.000 +20110615, -1.72, -0.01, -0.15, 0.000 +20110616, 0.12, -0.08, 0.43, 0.000 +20110617, 0.25, -0.39, 0.65, 0.000 +20110620, 0.58, 0.38, -0.09, 0.000 +20110621, 1.52, 0.95, -0.39, 0.000 +20110622, -0.62, -0.09, 0.07, 0.000 +20110623, -0.14, 0.64, -0.83, 0.000 +20110624, -1.10, 0.44, 0.12, 0.000 +20110627, 0.89, 0.04, -0.04, 0.000 +20110628, 1.36, 0.42, -0.53, 0.000 +20110629, 0.77, -0.69, 0.66, 0.000 +20110630, 0.99, 0.17, -0.24, 0.000 +20110701, 1.45, -0.03, 0.14, 0.000 +20110705, -0.08, 0.21, -0.84, 0.000 +20110706, 0.18, 0.42, -0.56, 0.000 +20110707, 1.10, 0.48, 0.09, 0.000 +20110708, -0.67, -0.01, -0.42, 0.000 +20110711, -1.91, -0.14, -0.28, 0.000 +20110712, -0.45, 0.05, 0.45, 0.000 +20110713, 0.45, 0.57, -0.12, 0.000 +20110714, -0.82, -0.80, 0.12, 0.000 +20110715, 0.58, 0.11, -0.52, 0.000 +20110718, -0.94, -0.59, -0.37, 0.000 +20110719, 1.72, 0.57, -0.67, 0.000 +20110720, -0.10, -0.30, 0.73, 0.000 +20110721, 1.29, -0.35, 1.06, 0.000 +20110722, 0.10, -0.10, -0.74, 0.000 +20110725, -0.68, -0.58, 0.09, 0.000 +20110726, -0.47, -0.38, 0.15, 0.000 +20110727, -2.16, -0.80, 0.43, 0.000 +20110728, -0.31, 0.15, -0.12, 0.000 +20110729, -0.56, 0.23, 0.11, 0.000 +20110801, -0.40, -0.18, 0.21, 0.000 +20110802, -2.68, -0.49, 0.15, 0.000 +20110803, 0.58, 0.27, -0.33, 0.000 +20110804, -5.04, -0.83, 0.31, 0.000 +20110805, -0.36, -1.23, -0.45, 0.000 +20110808, -6.97, -1.45, -1.56, 0.000 +20110809, 4.97, 0.93, 0.65, 0.000 +20110810, -4.30, -0.55, -1.49, 0.000 +20110811, 4.72, 0.32, 0.61, 0.000 +20110812, 0.54, -0.19, -1.47, 0.000 +20110815, 2.25, 0.44, 0.98, 0.000 +20110816, -1.07, -0.79, -0.10, 0.000 +20110817, -0.01, -0.33, 0.71, 0.000 +20110818, -4.65, -1.02, 0.58, 0.000 +20110819, -1.55, 0.15, -0.37, 0.000 +20110822, -0.03, 0.09, -0.81, 0.000 +20110823, 3.60, 1.24, -0.81, 0.000 +20110824, 1.35, -0.15, 0.95, 0.000 +20110825, -1.67, -0.99, 0.54, 0.000 +20110826, 1.74, 0.91, -1.06, 0.000 +20110829, 3.11, 1.56, 0.82, 0.000 +20110830, 0.32, 0.26, -0.77, 0.000 +20110831, 0.42, -0.72, 0.26, 0.000 +20110901, -1.33, -1.10, -0.76, 0.000 +20110902, -2.64, -0.81, -0.67, 0.000 +20110906, -0.71, 0.50, -0.64, 0.000 +20110907, 3.06, 0.94, 0.92, 0.000 +20110908, -1.18, -0.76, -0.56, 0.000 +20110909, -2.65, -0.18, 0.04, 0.000 +20110912, 0.68, 0.00, 0.31, 0.000 +20110913, 1.12, 0.76, -0.41, 0.000 +20110914, 1.45, 0.44, -0.40, 0.000 +20110915, 1.64, -0.55, 0.54, 0.000 +20110916, 0.47, -0.39, -0.35, 0.000 +20110919, -0.99, -0.53, -1.23, 0.000 +20110920, -0.45, -1.49, 0.24, 0.000 +20110921, -2.92, -0.36, -1.23, 0.000 +20110922, -3.29, 0.12, 0.46, 0.000 +20110923, 0.74, 0.66, -0.02, 0.000 +20110926, 2.28, -0.64, 1.25, 0.000 +20110927, 1.22, 1.07, -0.55, 0.000 +20110928, -2.29, -1.65, -0.18, 0.000 +20110929, 0.77, 0.58, 2.04, 0.000 +20110930, -2.50, -0.16, -0.08, 0.000 +20111003, -3.18, -1.92, -0.62, 0.000 +20111004, 2.68, 3.61, 0.34, 0.000 +20111005, 1.92, -0.20, -0.45, 0.000 +20111006, 1.94, 0.25, 0.51, 0.000 +20111007, -0.98, -1.27, -1.34, 0.000 +20111010, 3.44, 0.46, 0.61, 0.000 +20111011, 0.15, 0.69, -0.17, 0.000 +20111012, 1.07, 0.50, 0.91, 0.000 +20111013, -0.21, 0.25, -1.21, 0.000 +20111014, 1.72, 0.15, -0.37, 0.000 +20111017, -2.06, -1.29, -0.45, 0.000 +20111018, 2.11, 0.63, 1.51, 0.000 +20111019, -1.38, -0.77, 0.37, 0.000 +20111020, 0.43, -0.30, 0.70, 0.000 +20111021, 1.92, 0.15, 0.01, 0.000 +20111024, 1.59, 1.76, -0.39, 0.000 +20111025, -2.13, -0.89, -0.33, 0.000 +20111026, 1.12, 0.70, 0.78, 0.000 +20111027, 3.54, 1.41, 0.83, 0.000 +20111028, -0.01, -0.57, -0.44, 0.000 +20111031, -2.50, 0.05, -0.80, 0.000 +20111101, -2.86, -0.53, -1.08, 0.000 +20111102, 1.72, 0.77, 1.00, 0.000 +20111103, 1.97, 0.59, -0.13, 0.000 +20111104, -0.53, 0.03, -0.58, 0.000 +20111107, 0.48, -0.71, 0.40, 0.000 +20111108, 1.21, 0.00, 0.47, 0.000 +20111109, -3.78, -0.81, -0.64, 0.000 +20111110, 0.83, 0.05, 0.57, 0.000 +20111111, 1.98, 0.48, -0.22, 0.000 +20111114, -0.92, -0.47, -0.80, 0.000 +20111115, 0.56, 0.88, -0.26, 0.000 +20111116, -1.64, -0.16, -0.18, 0.000 +20111117, -1.65, 0.19, 0.19, 0.000 +20111118, -0.07, 0.06, 0.91, 0.000 +20111121, -1.87, -0.50, -0.07, 0.000 +20111122, -0.44, -0.26, -0.56, 0.000 +20111123, -2.29, -0.70, -0.29, 0.000 +20111125, -0.34, -1.00, 0.47, 0.000 +20111128, 3.10, 1.63, -0.70, 0.000 +20111129, 0.18, -0.49, 0.17, 0.000 +20111130, 4.44, 1.05, 1.09, 0.000 +20111201, -0.22, -0.50, -0.65, 0.000 +20111202, 0.05, 0.44, 0.64, 0.000 +20111205, 1.09, 0.27, 0.30, 0.000 +20111206, 0.04, -0.08, 0.08, 0.000 +20111207, 0.16, -0.31, 0.73, 0.000 +20111208, -2.23, -0.74, -0.99, 0.000 +20111209, 1.83, 1.32, 0.07, 0.000 +20111212, -1.48, 0.04, -0.44, 0.000 +20111213, -1.05, -1.04, 0.12, 0.000 +20111214, -1.21, -0.26, 0.91, 0.000 +20111215, 0.40, 0.66, 0.12, 0.000 +20111216, 0.45, 0.23, -0.10, 0.000 +20111219, -1.31, -0.43, -0.70, 0.000 +20111220, 3.10, 0.81, 0.30, 0.000 +20111221, 0.20, -0.03, 1.31, 0.000 +20111222, 0.83, -0.21, 0.69, 0.000 +20111223, 0.84, -0.58, -0.16, 0.000 +20111227, 0.04, 0.47, -0.52, 0.000 +20111228, -1.34, -0.73, -0.04, 0.000 +20111229, 1.10, 0.19, 0.24, 0.000 +20111230, -0.40, -0.07, -0.14, 0.000 +20120103, 1.50, -0.16, 0.87, 0.000 +20120104, 0.00, -0.66, 0.09, 0.000 +20120105, 0.39, 0.19, 0.14, 0.000 +20120106, -0.19, 0.01, -0.26, 0.000 +20120109, 0.28, 0.22, -0.06, 0.000 +20120110, 0.97, 0.40, 0.40, 0.000 +20120111, 0.13, 0.16, 0.35, 0.000 +20120112, 0.31, 0.30, 0.00, 0.000 +20120113, -0.52, -0.26, -0.45, 0.000 +20120117, 0.36, -0.11, -0.72, 0.000 +20120118, 1.22, 0.56, 0.15, 0.000 +20120119, 0.51, -0.15, -0.22, 0.000 +20120120, 0.03, 0.24, 0.65, 0.000 +20120123, 0.02, -0.27, 0.13, 0.000 +20120124, 0.00, 0.84, -0.40, 0.000 +20120125, 0.91, 0.11, -0.71, 0.000 +20120126, -0.59, 0.25, -0.55, 0.000 +20120127, 0.01, 0.85, -0.12, 0.000 +20120130, -0.31, -0.45, -0.30, 0.000 +20120131, -0.05, -0.05, 0.02, 0.000 +20120201, 1.10, 1.12, 0.36, 0.000 +20120202, 0.17, 0.41, -0.05, 0.000 +20120203, 1.58, 0.59, 0.33, 0.000 +20120206, -0.05, -0.26, -0.20, 0.000 +20120207, 0.16, -0.28, -0.09, 0.000 +20120208, 0.25, -0.13, 0.42, 0.000 +20120209, 0.15, -0.35, -0.38, 0.000 +20120210, -0.75, -0.59, -0.10, 0.000 +20120213, 0.75, 0.59, -0.06, 0.000 +20120214, -0.09, -0.41, -0.41, 0.000 +20120215, -0.50, -0.23, 0.09, 0.000 +20120216, 1.27, 0.69, 0.28, 0.000 +20120217, 0.16, -0.30, 0.50, 0.000 +20120221, -0.05, -0.66, 0.37, 0.000 +20120222, -0.39, -0.38, -0.64, 0.000 +20120223, 0.56, 0.91, -0.08, 0.000 +20120224, 0.15, -0.44, -0.65, 0.000 +20120227, 0.14, -0.21, 0.36, 0.000 +20120228, 0.28, -0.63, -0.14, 0.000 +20120229, -0.55, -1.03, 0.20, 0.000 +20120301, 0.64, -0.23, 0.02, 0.000 +20120302, -0.46, -1.25, 0.00, 0.000 +20120305, -0.40, 0.45, 0.26, 0.000 +20120306, -1.62, -0.33, -0.33, 0.000 +20120307, 0.80, 0.31, 0.22, 0.000 +20120308, 1.07, 0.37, -0.30, 0.000 +20120309, 0.49, 0.90, 0.15, 0.000 +20120312, -0.07, -0.21, -0.03, 0.000 +20120313, 1.86, 0.09, 0.89, 0.000 +20120314, -0.23, -0.62, -0.22, 0.000 +20120315, 0.67, 0.27, 0.51, 0.000 +20120316, 0.06, -0.27, 0.39, 0.000 +20120319, 0.41, 0.52, -0.10, 0.000 +20120320, -0.39, -0.65, 0.31, 0.000 +20120321, -0.10, 0.30, -0.40, 0.000 +20120322, -0.74, -0.13, -0.43, 0.000 +20120323, 0.39, 0.59, 0.32, 0.000 +20120326, 1.45, 0.47, -0.24, 0.000 +20120327, -0.30, -0.34, -0.32, 0.000 +20120328, -0.51, -0.02, 0.42, 0.000 +20120329, -0.16, -0.02, -0.23, 0.000 +20120330, 0.28, -0.71, -0.04, 0.000 +20120402, 0.77, 0.34, 0.04, 0.000 +20120403, -0.34, -0.29, -0.32, 0.000 +20120404, -1.11, -0.58, 0.04, 0.000 +20120405, -0.03, -0.08, -0.48, 0.000 +20120409, -1.21, -0.45, -0.04, 0.000 +20120410, -1.85, -0.41, 0.09, 0.000 +20120411, 0.85, 0.76, 0.28, 0.000 +20120412, 1.44, 0.07, 0.31, 0.000 +20120413, -1.25, -0.15, -0.76, 0.000 +20120416, -0.09, 0.14, 0.85, 0.000 +20120417, 1.55, 0.06, -0.24, 0.000 +20120418, -0.43, -0.48, -0.41, 0.000 +20120419, -0.57, -0.04, 0.30, 0.000 +20120420, 0.11, 0.54, -0.08, 0.000 +20120423, -0.95, -0.56, 0.15, 0.000 +20120424, 0.29, 0.22, 0.99, 0.000 +20120425, 1.44, 0.40, -1.05, 0.000 +20120426, 0.75, -0.04, -0.03, 0.000 +20120427, 0.35, 0.71, -0.18, 0.000 +20120430, -0.49, -0.61, 0.09, 0.000 +20120501, 0.48, -0.84, 0.39, 0.000 +20120502, -0.15, 0.70, -0.59, 0.000 +20120503, -0.92, -0.64, 0.11, 0.000 +20120504, -1.62, -0.21, 0.13, 0.000 +20120507, 0.04, 0.14, 0.49, 0.000 +20120508, -0.41, 0.35, 0.36, 0.000 +20120509, -0.62, 0.17, -0.24, 0.000 +20120510, 0.29, 0.06, 0.56, 0.000 +20120511, -0.29, 0.21, -0.94, 0.000 +20120514, -1.14, -0.07, -0.12, 0.000 +20120515, -0.52, 0.51, -0.21, 0.000 +20120516, -0.44, -0.17, -0.44, 0.000 +20120517, -1.64, -0.52, 0.43, 0.000 +20120518, -0.80, -0.18, 0.16, 0.000 +20120521, 1.69, 0.67, -1.18, 0.000 +20120522, 0.00, -0.87, 0.29, 0.000 +20120523, 0.26, 0.49, -0.27, 0.000 +20120524, 0.16, -0.02, 0.20, 0.000 +20120525, -0.16, 0.23, -0.10, 0.000 +20120529, 1.14, 0.17, -0.02, 0.000 +20120530, -1.47, -0.28, -0.25, 0.000 +20120531, -0.23, 0.14, 0.56, 0.000 +20120601, -2.60, -0.54, 0.21, 0.000 +20120604, -0.05, 0.10, -0.56, 0.000 +20120605, 0.68, 0.26, 0.07, 0.000 +20120606, 2.32, 0.07, 0.22, 0.000 +20120607, -0.10, -0.46, 0.13, 0.000 +20120608, 0.85, 0.21, 0.01, 0.000 +20120611, -1.40, -0.88, -0.05, 0.000 +20120612, 1.16, 0.10, 0.09, 0.000 +20120613, -0.77, -0.51, 0.36, 0.000 +20120614, 1.04, 0.18, 0.37, 0.000 +20120615, 1.07, 0.11, -0.06, 0.000 +20120618, 0.21, 0.13, -0.85, 0.000 +20120619, 1.09, 0.69, 0.15, 0.000 +20120620, -0.14, -0.10, 0.15, 0.000 +20120621, -2.26, -0.09, 0.12, 0.000 +20120622, 0.79, 0.67, 0.07, 0.000 +20120625, -1.62, 0.08, -0.14, 0.000 +20120626, 0.52, -0.13, -0.06, 0.000 +20120627, 0.92, 0.39, 0.48, 0.000 +20120628, -0.24, 0.16, 0.44, 0.000 +20120629, 2.55, 0.39, -0.70, 0.000 +20120702, 0.33, 0.72, -0.02, 0.000 +20120703, 0.76, 0.71, 0.07, 0.000 +20120705, -0.36, 0.58, -0.88, 0.000 +20120706, -0.99, -0.41, 0.36, 0.000 +20120709, -0.23, -0.26, -0.24, 0.000 +20120710, -0.84, -0.38, 0.31, 0.000 +20120711, -0.08, -0.40, 0.74, 0.000 +20120712, -0.50, 0.23, -0.82, 0.000 +20120713, 1.62, -0.40, 0.57, 0.000 +20120716, -0.31, -0.41, -0.26, 0.000 +20120717, 0.67, -0.54, 0.24, 0.000 +20120718, 0.71, 0.30, -0.79, 0.000 +20120719, 0.27, -0.35, -0.98, 0.000 +20120720, -1.06, -0.32, 0.07, 0.000 +20120723, -1.02, -0.69, 0.20, 0.000 +20120724, -0.99, -0.57, 0.26, 0.000 +20120725, -0.01, 0.26, -0.05, 0.000 +20120726, 1.53, -0.82, 0.38, 0.000 +20120727, 1.96, 0.59, 0.08, 0.000 +20120730, -0.13, -0.40, 0.26, 0.000 +20120731, -0.47, 0.00, 0.26, 0.000 +20120801, -0.50, -1.60, 0.29, 0.000 +20120802, -0.69, 0.25, -0.41, 0.000 +20120803, 1.99, 0.55, 0.56, 0.000 +20120806, 0.34, 0.57, 0.08, 0.000 +20120807, 0.64, 0.33, 0.07, 0.000 +20120808, 0.09, -0.25, 0.59, 0.000 +20120809, 0.12, 0.37, 0.12, 0.000 +20120810, 0.17, -0.34, -0.02, 0.000 +20120813, -0.14, -0.15, 0.00, 0.000 +20120814, -0.03, -0.43, -0.05, 0.000 +20120815, 0.27, 0.74, -0.07, 0.000 +20120816, 0.75, 0.47, -0.17, 0.000 +20120817, 0.27, 0.59, 0.12, 0.000 +20120820, -0.06, -0.46, 0.59, 0.000 +20120821, -0.31, 0.10, 0.40, 0.000 +20120822, 0.00, -0.44, -0.35, 0.000 +20120823, -0.78, -0.01, -0.35, 0.000 +20120824, 0.61, -0.27, -0.03, 0.000 +20120827, -0.06, 0.12, -0.12, 0.000 +20120828, 0.01, 0.60, -0.08, 0.000 +20120829, 0.15, 0.25, 0.12, 0.000 +20120830, -0.80, -0.45, 0.00, 0.000 +20120831, 0.52, -0.07, 0.00, 0.000 +20120904, 0.08, 0.97, -0.16, 0.000 +20120905, -0.05, -0.07, 0.31, 0.000 +20120906, 2.07, -0.10, 0.34, 0.000 +20120907, 0.45, -0.01, 0.78, 0.000 +20120910, -0.57, 0.29, -0.07, 0.000 +20120911, 0.28, 0.03, 0.54, 0.000 +20120912, 0.27, 0.12, 0.32, 0.000 +20120913, 1.56, -0.40, 0.56, 0.000 +20120914, 0.54, 0.56, 0.48, 0.000 +20120917, -0.42, -0.18, -0.79, 0.000 +20120918, -0.15, -0.01, -0.23, 0.000 +20120919, 0.18, -0.15, 0.06, 0.000 +20120920, -0.13, -0.42, -0.17, 0.000 +20120921, 0.04, 0.49, -0.04, 0.000 +20120924, -0.26, -0.22, 0.33, 0.000 +20120925, -1.11, -0.34, -0.36, 0.000 +20120926, -0.57, -0.03, 0.03, 0.000 +20120927, 0.99, 0.24, -0.15, 0.000 +20120928, -0.46, -0.31, -0.25, 0.000 +20121001, 0.26, 0.07, 0.23, 0.000 +20121002, 0.10, -0.15, 0.27, 0.000 +20121003, 0.36, -0.66, -0.02, 0.000 +20121004, 0.76, -0.20, 0.77, 0.000 +20121005, -0.03, -0.18, 0.22, 0.000 +20121008, -0.36, -0.24, 0.22, 0.000 +20121009, -1.05, -0.30, 0.34, 0.000 +20121010, -0.58, 0.38, 0.26, 0.000 +20121011, 0.11, 0.33, 0.68, 0.000 +20121012, -0.34, -0.31, -0.90, 0.000 +20121015, 0.79, -0.15, 0.16, 0.000 +20121016, 1.00, -0.21, -0.24, 0.000 +20121017, 0.49, 0.15, 1.13, 0.000 +20121018, -0.31, -0.59, 0.27, 0.000 +20121019, -1.68, -0.41, 0.47, 0.000 +20121022, 0.01, -0.04, 0.17, 0.000 +20121023, -1.29, 0.98, -0.51, 0.000 +20121024, -0.28, -0.15, 0.43, 0.000 +20121025, 0.27, 0.16, -0.08, 0.000 +20121026, -0.07, -0.13, -0.40, 0.000 +20121031, 0.14, 0.51, 0.38, 0.000 +20121101, 1.19, 0.15, 0.21, 0.000 +20121102, -1.04, -0.55, 0.25, 0.000 +20121105, 0.28, 0.42, -0.23, 0.000 +20121106, 0.80, -0.04, 0.56, 0.000 +20121107, -2.31, -0.03, -1.46, 0.000 +20121108, -1.24, -0.28, 0.41, 0.000 +20121109, 0.15, 0.03, -0.14, 0.000 +20121112, 0.00, -0.18, 0.05, 0.000 +20121113, -0.40, -0.21, -0.30, 0.000 +20121114, -1.40, -0.36, -0.24, 0.000 +20121115, -0.24, -0.43, 0.17, 0.000 +20121116, 0.58, 0.08, 0.03, 0.000 +20121119, 1.98, 0.25, 0.00, 0.000 +20121120, 0.11, -0.06, 0.14, 0.000 +20121121, 0.31, 0.38, -0.06, 0.000 +20121123, 1.28, -0.15, 0.07, 0.000 +20121126, -0.14, 0.54, -0.17, 0.000 +20121127, -0.43, 0.44, -0.21, 0.000 +20121128, 0.83, 0.02, -0.27, 0.000 +20121129, 0.54, 0.69, -0.03, 0.000 +20121130, 0.02, -0.14, 0.27, 0.000 +20121203, -0.46, 0.28, 0.22, 0.001 +20121204, -0.16, 0.35, -0.06, 0.001 +20121205, 0.17, -0.66, 0.99, 0.001 +20121206, 0.31, -0.18, -0.15, 0.001 +20121207, 0.27, -0.43, 0.34, 0.001 +20121210, 0.11, 0.47, 0.02, 0.001 +20121211, 0.68, 0.46, -0.06, 0.001 +20121212, -0.02, -0.70, 0.54, 0.001 +20121213, -0.57, 0.03, 0.06, 0.001 +20121214, -0.34, 0.32, 0.26, 0.001 +20121217, 1.16, -0.07, 0.59, 0.001 +20121218, 1.20, 0.32, 0.07, 0.001 +20121219, -0.60, 0.60, 0.24, 0.001 +20121220, 0.53, -0.23, 0.72, 0.001 +20121221, -0.88, 0.43, -0.34, 0.001 +20121224, -0.24, -0.21, 0.00, 0.001 +20121226, -0.54, -0.16, 0.34, 0.001 +20121227, -0.11, 0.00, -0.17, 0.001 +20121228, -1.00, 0.45, 0.01, 0.001 +20121231, 1.71, 0.43, -0.07, 0.001 +20130102, 2.62, 0.16, 0.35, 0.000 +20130103, -0.14, 0.12, 0.05, 0.000 +20130104, 0.55, 0.10, 0.43, 0.000 +20130107, -0.31, -0.09, -0.36, 0.000 +20130108, -0.27, 0.05, -0.06, 0.000 +20130109, 0.34, 0.29, -0.41, 0.000 +20130110, 0.66, -0.66, 0.51, 0.000 +20130111, 0.02, 0.08, -0.45, 0.000 +20130114, -0.06, 0.03, -0.09, 0.000 +20130115, 0.19, 0.24, 0.01, 0.000 +20130116, -0.04, -0.24, 0.23, 0.000 +20130117, 0.61, 0.43, -0.09, 0.000 +20130118, 0.29, 0.03, -0.11, 0.000 +20130122, 0.48, 0.16, 0.46, 0.000 +20130123, 0.10, -0.29, -0.12, 0.000 +20130124, 0.09, 0.26, 0.05, 0.000 +20130125, 0.59, -0.05, -0.28, 0.000 +20130128, -0.14, 0.38, 0.12, 0.000 +20130129, 0.36, -0.45, 0.36, 0.000 +20130130, -0.38, -0.88, 0.12, 0.000 +20130131, -0.08, 0.69, 0.19, 0.000 +20130201, 0.99, 0.07, 0.26, 0.000 +20130204, -1.19, -0.14, -0.16, 0.000 +20130205, 1.07, -0.09, 0.18, 0.000 +20130206, 0.15, 0.29, 0.13, 0.000 +20130207, -0.15, -0.06, 0.02, 0.000 +20130208, 0.58, 0.01, -0.21, 0.000 +20130211, -0.08, -0.05, 0.39, 0.000 +20130212, 0.16, 0.20, 0.71, 0.000 +20130213, 0.14, 0.11, -0.01, 0.000 +20130214, 0.11, 0.34, 0.12, 0.000 +20130215, -0.11, 0.03, -0.09, 0.000 +20130219, 0.74, 0.22, 0.18, 0.000 +20130220, -1.36, -0.55, -0.64, 0.000 +20130221, -0.66, -0.31, -0.06, 0.000 +20130222, 0.94, 0.16, -0.06, 0.000 +20130225, -1.82, -0.21, -0.72, 0.000 +20130226, 0.58, -0.18, 0.02, 0.000 +20130227, 1.29, -0.38, 0.16, 0.000 +20130228, -0.05, 0.10, -0.16, 0.000 +20130301, 0.22, 0.13, -0.33, 0.000 +20130304, 0.47, -0.41, 0.10, 0.000 +20130305, 1.00, 0.22, -0.17, 0.000 +20130306, 0.18, 0.06, 0.48, 0.000 +20130307, 0.27, 0.19, 0.42, 0.000 +20130308, 0.52, 0.39, -0.16, 0.000 +20130311, 0.30, -0.34, 0.23, 0.000 +20130312, -0.22, 0.05, -0.13, 0.000 +20130313, 0.20, 0.18, 0.06, 0.000 +20130314, 0.58, 0.38, 0.39, 0.000 +20130315, -0.19, 0.02, 0.42, 0.000 +20130318, -0.50, 0.11, -0.23, 0.000 +20130319, -0.24, -0.03, 0.04, 0.000 +20130320, 0.76, 0.27, 0.01, 0.000 +20130321, -0.85, 0.17, -0.28, 0.000 +20130322, 0.62, -0.46, -0.30, 0.000 +20130325, -0.29, 0.29, 0.02, 0.000 +20130326, 0.76, -0.38, -0.22, 0.000 +20130327, -0.02, 0.16, -0.30, 0.000 +20130328, 0.39, -0.27, -0.30, 0.000 +20130401, -0.57, -0.93, 0.02, 0.000 +20130402, 0.33, -0.90, -0.33, 0.000 +20130403, -1.16, -0.42, -0.20, 0.000 +20130404, 0.42, 0.18, 0.25, 0.000 +20130405, -0.41, 0.05, 0.35, 0.000 +20130408, 0.70, 0.13, 0.29, 0.000 +20130409, 0.31, -0.40, 0.20, 0.000 +20130410, 1.28, 0.63, -0.10, 0.000 +20130411, 0.35, -0.20, -0.14, 0.000 +20130412, -0.28, -0.13, -0.46, 0.000 +20130415, -2.48, -1.49, -0.28, 0.000 +20130416, 1.47, 0.18, 0.07, 0.000 +20130417, -1.46, -0.29, -0.55, 0.000 +20130418, -0.71, 0.16, 0.02, 0.000 +20130419, 0.97, 0.04, 0.13, 0.000 +20130422, 0.45, -0.15, -0.14, 0.000 +20130423, 1.11, 0.46, 0.63, 0.000 +20130424, 0.06, 0.37, 1.21, 0.000 +20130425, 0.49, 0.20, 0.01, 0.000 +20130426, -0.20, -0.35, -0.22, 0.000 +20130429, 0.67, 0.13, -0.07, 0.000 +20130430, 0.29, 0.38, -0.05, 0.000 +20130501, -1.08, -1.40, -0.27, 0.000 +20130502, 1.04, 0.59, 0.13, 0.000 +20130503, 1.12, 0.62, 0.16, 0.000 +20130506, 0.23, 0.24, 0.84, 0.000 +20130507, 0.54, 0.12, 0.13, 0.000 +20130508, 0.44, -0.21, 0.13, 0.000 +20130509, -0.31, 0.11, -0.30, 0.000 +20130510, 0.54, 0.43, -0.19, 0.000 +20130513, -0.02, -0.23, -0.04, 0.000 +20130514, 1.10, 0.12, 0.31, 0.000 +20130515, 0.51, -0.15, 0.28, 0.000 +20130516, -0.50, 0.15, -0.28, 0.000 +20130517, 1.04, -0.01, 0.39, 0.000 +20130520, -0.06, 0.38, 0.50, 0.000 +20130521, 0.16, -0.10, -0.08, 0.000 +20130522, -0.92, -0.73, -0.17, 0.000 +20130523, -0.19, 0.48, -0.08, 0.000 +20130524, -0.06, 0.16, 0.06, 0.000 +20130528, 0.77, 0.65, 0.21, 0.000 +20130529, -0.70, -0.36, 0.58, 0.000 +20130530, 0.50, 0.31, 0.49, 0.000 +20130531, -1.31, 0.51, -0.25, 0.000 +20130603, 0.48, 0.17, -0.10, 0.000 +20130604, -0.55, -0.30, -0.17, 0.000 +20130605, -1.38, 0.07, -0.26, 0.000 +20130606, 0.89, 0.15, 0.26, 0.000 +20130607, 1.30, -0.47, 0.07, 0.000 +20130610, 0.07, 0.65, 0.22, 0.000 +20130611, -1.04, 0.01, -0.58, 0.000 +20130612, -0.82, 0.01, 0.02, 0.000 +20130613, 1.47, 0.11, 0.31, 0.000 +20130614, -0.59, -0.24, -0.54, 0.000 +20130617, 0.74, -0.09, 0.02, 0.000 +20130618, 0.80, 0.38, -0.05, 0.000 +20130619, -1.28, 0.17, 0.11, 0.000 +20130620, -2.45, -0.02, 0.34, 0.000 +20130621, 0.13, 0.19, -0.09, 0.000 +20130624, -1.19, 0.08, -0.66, 0.000 +20130625, 0.96, -0.02, 0.87, 0.000 +20130626, 0.92, -0.74, -0.13, 0.000 +20130627, 0.77, 0.84, 0.36, 0.000 +20130628, -0.33, 0.33, -0.14, 0.000 +20130701, 0.71, 0.82, -0.14, 0.000 +20130702, -0.10, 0.00, 0.09, 0.000 +20130703, 0.11, 0.19, -0.21, 0.000 +20130705, 1.11, 0.37, 0.45, 0.000 +20130708, 0.53, -0.18, 0.05, 0.000 +20130709, 0.74, 0.04, 0.26, 0.000 +20130710, 0.06, 0.35, -0.41, 0.000 +20130711, 1.32, -0.11, -0.62, 0.000 +20130712, 0.33, -0.01, 0.20, 0.000 +20130715, 0.20, 0.50, 0.34, 0.000 +20130716, -0.41, 0.03, 0.09, 0.000 +20130717, 0.30, -0.04, 0.18, 0.000 +20130718, 0.54, 0.03, 0.96, 0.000 +20130719, 0.09, -0.12, 0.28, 0.000 +20130722, 0.22, 0.10, 0.29, 0.000 +20130723, -0.15, 0.06, 0.28, 0.000 +20130724, -0.39, -0.27, -0.26, 0.000 +20130725, 0.42, 0.59, -0.35, 0.000 +20130726, 0.02, -0.64, -0.21, 0.000 +20130729, -0.37, -0.32, -0.28, 0.000 +20130730, 0.12, 0.20, -0.51, 0.000 +20130731, 0.09, 0.15, 0.09, 0.000 +20130801, 1.40, 0.06, 0.05, 0.000 +20130802, 0.20, -0.21, -0.33, 0.000 +20130805, -0.07, 0.50, -0.17, 0.000 +20130806, -0.68, -0.33, -0.10, 0.000 +20130807, -0.42, -0.34, 0.02, 0.000 +20130808, 0.47, 0.01, -0.01, 0.000 +20130809, -0.29, 0.13, -0.20, 0.000 +20130812, -0.02, 0.58, -0.22, 0.000 +20130813, 0.20, -0.29, -0.05, 0.000 +20130814, -0.50, 0.14, 0.28, 0.000 +20130815, -1.47, -0.37, 0.29, 0.000 +20130816, -0.26, 0.05, 0.09, 0.000 +20130819, -0.62, -0.19, -0.75, 0.000 +20130820, 0.53, 0.84, 0.13, 0.000 +20130821, -0.59, -0.02, -0.46, 0.000 +20130822, 0.93, 0.51, 0.05, 0.000 +20130823, 0.38, -0.22, -0.14, 0.000 +20130826, -0.29, 0.50, -0.50, 0.000 +20130827, -1.75, -0.74, -0.32, 0.000 +20130828, 0.30, 0.11, 0.08, 0.000 +20130829, 0.34, 0.78, -0.41, 0.000 +20130830, -0.47, -1.14, -0.21, 0.000 +20130903, 0.46, 0.05, 0.10, 0.000 +20130904, 0.83, -0.01, -0.15, 0.000 +20130905, 0.19, 0.17, 0.37, 0.000 +20130906, 0.01, 0.04, 0.00, 0.000 +20130909, 1.09, 0.46, -0.22, 0.000 +20130910, 0.80, 0.01, 0.21, 0.000 +20130911, 0.28, -0.22, 0.01, 0.000 +20130912, -0.32, -0.23, -0.34, 0.000 +20130913, 0.29, 0.24, -0.01, 0.000 +20130916, 0.49, -0.44, 0.40, 0.000 +20130917, 0.54, 0.47, -0.13, 0.000 +20130918, 1.10, -0.16, -0.45, 0.000 +20130919, -0.13, 0.16, -0.60, 0.000 +20130920, -0.63, 0.53, 0.18, 0.000 +20130923, -0.45, 0.45, -0.37, 0.000 +20130924, -0.12, 0.53, 0.01, 0.000 +20130925, -0.23, 0.03, 0.58, 0.000 +20130926, 0.42, 0.21, -0.73, 0.000 +20130927, -0.39, -0.01, -0.06, 0.000 +20130930, -0.49, 0.50, 0.06, 0.000 +20131001, 0.90, 0.41, -0.13, 0.000 +20131002, -0.10, -0.37, -0.08, 0.000 +20131003, -0.88, -0.19, 0.20, 0.000 +20131004, 0.74, -0.01, 0.10, 0.000 +20131007, -0.95, -0.27, 0.00, 0.000 +20131008, -1.35, -0.47, 0.76, 0.000 +20131009, -0.05, -0.44, 0.62, 0.000 +20131010, 2.23, 0.16, -0.02, 0.000 +20131011, 0.71, 0.79, 0.00, 0.000 +20131014, 0.44, 0.23, -0.11, 0.000 +20131015, -0.73, -0.19, 0.01, 0.000 +20131016, 1.37, -0.32, 0.14, 0.000 +20131017, 0.70, 0.15, 0.04, 0.000 +20131018, 0.73, 0.34, -0.05, 0.000 +20131021, -0.02, -0.12, 0.05, 0.000 +20131022, 0.50, -0.28, 0.09, 0.000 +20131023, -0.51, 0.16, -0.33, 0.000 +20131024, 0.42, 0.40, -0.30, 0.000 +20131025, 0.33, -0.34, 0.14, 0.000 +20131028, 0.09, -0.06, 0.02, 0.000 +20131029, 0.54, -0.14, -0.11, 0.000 +20131030, -0.61, -0.77, 0.49, 0.000 +20131031, -0.34, -0.09, -0.43, 0.000 +20131101, 0.20, -0.68, 0.22, 0.000 +20131104, 0.47, 0.76, -0.03, 0.000 +20131105, -0.23, 0.00, -0.25, 0.000 +20131106, 0.27, -0.83, 0.38, 0.000 +20131107, -1.46, -0.36, 0.19, 0.000 +20131108, 1.45, 0.53, 0.41, 0.000 +20131111, 0.12, 0.01, -0.13, 0.000 +20131112, -0.19, 0.37, -0.70, 0.000 +20131113, 0.90, 0.09, -0.12, 0.000 +20131114, 0.43, -0.56, 0.31, 0.000 +20131115, 0.43, 0.06, -0.27, 0.000 +20131118, -0.50, -0.45, 0.45, 0.000 +20131119, -0.27, -0.33, 0.26, 0.000 +20131120, -0.33, 0.26, 0.03, 0.000 +20131121, 0.97, 0.79, -0.06, 0.000 +20131122, 0.50, -0.07, 0.11, 0.000 +20131125, -0.11, 0.15, 0.14, 0.000 +20131126, 0.18, 0.85, -0.48, 0.000 +20131127, 0.30, 0.35, -0.06, 0.000 +20131129, -0.02, 0.29, -0.17, 0.000 +20131202, -0.31, -0.97, 0.16, 0.000 +20131203, -0.34, -0.08, -0.09, 0.000 +20131204, -0.07, -0.20, 0.26, 0.000 +20131205, -0.35, 0.70, -0.63, 0.000 +20131206, 1.02, -0.28, 0.20, 0.000 +20131209, 0.17, -0.42, 0.00, 0.000 +20131210, -0.34, -0.56, 0.20, 0.000 +20131211, -1.16, -0.35, 0.05, 0.000 +20131212, -0.23, 0.36, 0.25, 0.000 +20131213, 0.10, 0.25, -0.01, 0.000 +20131216, 0.67, 0.58, -0.14, 0.000 +20131217, -0.26, 0.18, -0.16, 0.000 +20131218, 1.55, -0.47, 0.04, 0.000 +20131219, -0.10, -0.54, 0.16, 0.000 +20131220, 0.69, 1.29, -0.30, 0.000 +20131223, 0.62, 0.50, -0.05, 0.000 +20131224, 0.34, 0.10, 0.11, 0.000 +20131226, 0.44, -0.32, -0.31, 0.000 +20131227, -0.05, -0.07, 0.23, 0.000 +20131230, 0.00, 0.02, -0.30, 0.000 +20131231, 0.44, -0.17, 0.04, 0.000 +20140102, -0.88, -0.27, 0.11, 0.000 +20140103, 0.03, 0.36, 0.04, 0.000 +20140106, -0.34, -0.57, 0.26, 0.000 +20140107, 0.68, 0.40, -0.41, 0.000 +20140108, 0.04, 0.01, -0.12, 0.000 +20140109, 0.02, 0.17, -0.38, 0.000 +20140110, 0.27, 0.52, -0.77, 0.000 +20140113, -1.32, -0.07, 0.10, 0.000 +20140114, 1.15, 0.19, -0.38, 0.000 +20140115, 0.53, 0.21, 0.20, 0.000 +20140116, -0.07, 0.29, -0.68, 0.000 +20140117, -0.39, 0.03, 0.04, 0.000 +20140121, 0.30, 0.46, -0.01, 0.000 +20140122, 0.15, 0.27, 0.21, 0.000 +20140123, -0.86, 0.15, -0.50, 0.000 +20140124, -2.19, -0.39, 0.22, 0.000 +20140127, -0.65, -0.86, 0.46, 0.000 +20140128, 0.73, 0.19, -0.02, 0.000 +20140129, -1.07, -0.41, 0.25, 0.000 +20140130, 1.22, 0.31, -0.42, 0.000 +20140131, -0.66, -0.06, -0.39, 0.000 +20140203, -2.48, -0.89, 0.32, 0.000 +20140204, 0.77, -0.04, -0.10, 0.000 +20140205, -0.23, -0.60, 0.20, 0.000 +20140206, 1.21, -0.48, 0.23, 0.000 +20140207, 1.33, -0.16, -0.67, 0.000 +20140210, 0.16, 0.12, -0.44, 0.000 +20140211, 1.09, -0.19, 0.24, 0.000 +20140212, 0.11, 0.25, -0.08, 0.000 +20140213, 0.72, 0.73, -0.09, 0.000 +20140214, 0.42, -0.37, 0.38, 0.000 +20140218, 0.27, 0.98, -0.24, 0.000 +20140219, -0.74, -0.29, -0.39, 0.000 +20140220, 0.70, 0.53, -0.14, 0.000 +20140221, -0.09, 0.35, -0.04, 0.000 +20140224, 0.65, 0.19, 0.26, 0.000 +20140225, -0.10, 0.12, -0.61, 0.000 +20140226, 0.12, 0.68, -0.09, 0.000 +20140227, 0.54, 0.15, 0.01, 0.000 +20140228, 0.15, -0.71, 0.83, 0.000 +20140303, -0.70, 0.08, 0.15, 0.000 +20140304, 1.67, 1.11, -0.12, 0.000 +20140305, 0.01, -0.27, 0.28, 0.000 +20140306, 0.16, -0.32, 0.75, 0.000 +20140307, 0.04, -0.11, 0.52, 0.000 +20140310, -0.09, -0.11, 0.06, 0.000 +20140311, -0.62, -0.54, -0.19, 0.000 +20140312, 0.13, 0.30, -0.17, 0.000 +20140313, -1.21, -0.13, 0.27, 0.000 +20140314, -0.16, 0.68, -0.05, 0.000 +20140317, 0.90, -0.36, -0.01, 0.000 +20140318, 0.82, 0.74, -0.42, 0.000 +20140319, -0.59, -0.17, 0.60, 0.000 +20140320, 0.52, -0.48, 0.99, 0.000 +20140321, -0.37, -0.28, 0.88, 0.000 +20140324, -0.64, -0.89, 0.97, 0.000 +20140325, 0.30, -0.34, 0.14, 0.000 +20140326, -0.89, -1.19, 0.30, 0.000 +20140327, -0.19, -0.13, -0.24, 0.000 +20140328, 0.41, -0.43, 0.52, 0.000 +20140331, 0.97, 0.99, -0.16, 0.000 +20140401, 0.87, 0.74, -0.41, 0.000 +20140402, 0.29, 0.04, 0.12, 0.000 +20140403, -0.31, -0.89, 0.79, 0.000 +20140404, -1.47, -1.15, 0.74, 0.000 +20140407, -1.26, -0.30, -0.02, 0.000 +20140408, 0.50, 0.31, -0.22, 0.000 +20140409, 1.20, 0.34, -0.93, 0.000 +20140410, -2.24, -0.71, 0.86, 0.000 +20140411, -1.07, -0.41, 0.29, 0.000 +20140414, 0.70, -0.50, 0.21, 0.000 +20140415, 0.59, -0.38, 0.17, 0.000 +20140416, 1.13, 0.04, -0.44, 0.000 +20140417, 0.23, 0.32, 0.24, 0.000 +20140421, 0.36, 0.20, -0.43, 0.000 +20140422, 0.58, 0.72, -0.37, 0.000 +20140423, -0.31, -0.64, 0.89, 0.000 +20140424, 0.08, -0.41, -0.17, 0.000 +20140425, -1.05, -0.96, 0.62, 0.000 +20140428, 0.11, -0.65, -0.54, 0.000 +20140429, 0.56, -0.21, -0.22, 0.000 +20140430, 0.35, 0.25, -0.04, 0.000 +20140501, 0.04, -0.15, -0.18, 0.000 +20140502, -0.07, 0.23, 0.33, 0.000 +20140505, 0.13, -0.30, -0.52, 0.000 +20140506, -1.03, -0.54, 0.16, 0.000 +20140507, 0.45, -0.85, 1.18, 0.000 +20140508, -0.26, -1.00, 0.34, 0.000 +20140509, 0.25, 0.71, -0.39, 0.000 +20140512, 1.20, 1.41, -0.30, 0.000 +20140513, -0.05, -1.06, 0.18, 0.000 +20140514, -0.60, -1.10, -0.43, 0.000 +20140515, -0.90, 0.33, -0.27, 0.000 +20140516, 0.36, 0.26, -0.40, 0.000 +20140519, 0.50, 0.63, 0.00, 0.000 +20140520, -0.78, -0.81, 0.23, 0.000 +20140521, 0.81, -0.26, 0.05, 0.000 +20140522, 0.36, 0.63, -0.27, 0.000 +20140523, 0.49, 0.62, -0.24, 0.000 +20140527, 0.69, 0.70, -0.19, 0.000 +20140528, -0.11, -0.33, 0.27, 0.000 +20140529, 0.54, -0.20, -0.12, 0.000 +20140530, 0.06, -0.68, 0.28, 0.000 +20140602, 0.06, -0.69, 0.40, 0.000 +20140603, -0.05, -0.27, 0.18, 0.000 +20140604, 0.28, 0.23, -0.09, 0.000 +20140605, 0.77, 1.29, -0.18, 0.000 +20140606, 0.54, 0.48, 0.00, 0.000 +20140609, 0.22, 1.01, -0.31, 0.000 +20140610, -0.03, -0.18, -0.04, 0.000 +20140611, -0.34, -0.13, -0.28, 0.000 +20140612, -0.68, 0.10, 0.17, 0.000 +20140613, 0.31, -0.07, -0.19, 0.000 +20140616, 0.13, 0.46, -0.67, 0.000 +20140617, 0.34, 0.55, 0.45, 0.000 +20140618, 0.75, -0.27, -0.09, 0.000 +20140619, 0.12, -0.16, -0.04, 0.000 +20140620, 0.18, 0.18, 0.04, 0.000 +20140623, -0.01, -0.24, 0.08, 0.000 +20140624, -0.72, -0.33, -0.21, 0.000 +20140625, 0.53, 0.36, 0.07, 0.000 +20140626, -0.11, -0.08, 0.05, 0.000 +20140627, 0.26, 0.48, -0.22, 0.000 +20140630, 0.07, 0.26, 0.19, 0.000 +20140701, 0.74, 0.48, -0.37, 0.000 +20140702, -0.03, -0.45, -0.21, 0.000 +20140703, 0.59, 0.22, 0.08, 0.000 +20140707, -0.62, -1.27, 0.38, 0.000 +20140708, -0.82, -0.66, 0.71, 0.000 +20140709, 0.46, -0.38, -0.11, 0.000 +20140710, -0.49, -0.59, 0.02, 0.000 +20140711, 0.12, -0.21, -0.39, 0.000 +20140714, 0.46, 0.00, -0.13, 0.000 +20140715, -0.32, -0.94, 0.98, 0.000 +20140716, 0.32, -0.60, 0.32, 0.000 +20140717, -1.21, -0.39, 0.18, 0.000 +20140718, 1.12, 0.49, -0.47, 0.000 +20140721, -0.25, -0.24, 0.05, 0.000 +20140722, 0.53, 0.25, -0.32, 0.000 +20140723, 0.19, 0.13, -0.74, 0.000 +20140724, 0.05, -0.27, 0.04, 0.000 +20140725, -0.53, -0.36, 0.16, 0.000 +20140728, -0.08, -0.47, 0.28, 0.000 +20140729, -0.33, 0.70, -0.67, 0.000 +20140730, 0.12, 0.43, -0.29, 0.000 +20140731, -2.03, -0.20, 0.46, 0.000 +20140801, -0.32, -0.18, -0.07, 0.000 +20140804, 0.74, 0.02, -0.22, 0.000 +20140805, -0.84, 0.77, -0.19, 0.000 +20140806, 0.02, 0.37, 0.18, 0.000 +20140807, -0.52, -0.03, -0.14, 0.000 +20140808, 1.12, -0.21, -0.18, 0.000 +20140811, 0.40, 0.60, -0.29, 0.000 +20140812, -0.23, -0.60, 0.25, 0.000 +20140813, 0.69, -0.08, -0.24, 0.000 +20140814, 0.44, -0.23, 0.04, 0.000 +20140815, 0.00, -0.15, -0.15, 0.000 +20140818, 0.93, 0.60, -0.19, 0.000 +20140819, 0.49, -0.13, -0.10, 0.000 +20140820, 0.19, -0.64, 0.27, 0.000 +20140821, 0.28, -0.14, 0.82, 0.000 +20140822, -0.10, 0.30, -0.39, 0.000 +20140825, 0.50, -0.24, 0.04, 0.000 +20140826, 0.19, 0.70, -0.33, 0.000 +20140827, 0.00, -0.23, 0.15, 0.000 +20140828, -0.19, -0.42, 0.09, 0.000 +20140829, 0.39, 0.27, 0.09, 0.000 +20140902, 0.06, 0.46, -0.09, 0.000 +20140903, -0.14, -0.54, 0.23, 0.000 +20140904, -0.17, -0.14, -0.15, 0.000 +20140905, 0.45, -0.26, -0.06, 0.000 +20140908, -0.22, 0.52, -0.44, 0.000 +20140909, -0.72, -0.43, -0.02, 0.000 +20140910, 0.45, 0.20, -0.39, 0.000 +20140911, 0.19, 0.49, 0.20, 0.000 +20140912, -0.55, -0.23, 0.14, 0.000 +20140915, -0.28, -1.06, 0.66, 0.000 +20140916, 0.70, -0.39, -0.13, 0.000 +20140917, 0.17, 0.08, -0.20, 0.000 +20140918, 0.50, 0.01, 0.03, 0.000 +20140919, -0.18, -0.96, 0.05, 0.000 +20140922, -0.97, -0.57, 0.13, 0.000 +20140923, -0.62, -0.32, -0.05, 0.000 +20140924, 0.81, 0.08, -0.92, 0.000 +20140925, -1.62, 0.08, 0.15, 0.000 +20140926, 0.85, -0.04, -0.27, 0.000 +20140929, -0.22, 0.17, -0.44, 0.000 +20140930, -0.40, -1.00, 0.14, 0.000 +20141001, -1.39, -0.15, 0.33, 0.000 +20141002, 0.15, 1.02, -0.38, 0.000 +20141003, 1.08, -0.39, -0.41, 0.000 +20141006, -0.26, -0.78, 0.39, 0.000 +20141007, -1.56, -0.12, 0.12, 0.000 +20141008, 1.70, 0.02, -0.06, 0.000 +20141009, -2.17, -0.42, -0.40, 0.000 +20141010, -1.30, -0.16, 0.56, 0.000 +20141013, -1.59, 1.32, 0.50, 0.000 +20141014, 0.28, 0.85, -0.12, 0.000 +20141015, -0.53, 1.80, -1.31, 0.000 +20141016, 0.23, 1.08, 0.17, 0.000 +20141017, 1.14, -1.56, -0.10, 0.000 +20141020, 0.94, 0.20, -0.33, 0.000 +20141021, 1.98, -0.41, 0.02, 0.000 +20141022, -0.85, -0.57, 0.21, 0.000 +20141023, 1.29, 0.52, -0.46, 0.000 +20141024, 0.66, -0.46, -0.11, 0.000 +20141027, -0.17, 0.11, -0.26, 0.000 +20141028, 1.37, 1.58, -0.02, 0.000 +20141029, -0.18, -0.02, 0.44, 0.000 +20141030, 0.60, 0.27, -0.47, 0.000 +20141031, 1.23, 0.28, 0.19, 0.000 +20141103, -0.01, -0.26, -0.06, 0.000 +20141104, -0.35, -0.03, -0.11, 0.000 +20141105, 0.48, -0.53, 0.86, 0.000 +20141106, 0.49, 0.09, -0.48, 0.000 +20141107, 0.09, 0.01, 0.44, 0.000 +20141110, 0.33, 0.19, -0.50, 0.000 +20141111, 0.10, 0.02, -0.29, 0.000 +20141112, 0.07, 0.77, -0.28, 0.000 +20141113, -0.03, -0.91, -0.33, 0.000 +20141114, 0.06, -0.14, 0.14, 0.000 +20141117, -0.05, -0.98, 0.27, 0.000 +20141118, 0.51, 0.04, -0.36, 0.000 +20141119, -0.21, -0.93, -0.06, 0.000 +20141120, 0.31, 0.87, -0.02, 0.000 +20141121, 0.48, -0.39, -0.08, 0.000 +20141124, 0.40, 0.94, -0.57, 0.000 +20141125, -0.08, 0.06, -0.04, 0.000 +20141126, 0.30, 0.09, -0.46, 0.000 +20141128, -0.35, -0.93, -1.02, 0.000 +20141201, -0.90, -0.96, 0.61, 0.000 +20141202, 0.65, 0.41, 0.05, 0.000 +20141203, 0.46, 0.45, 0.30, 0.000 +20141204, -0.17, -0.32, 0.08, 0.000 +20141205, 0.25, 0.57, 0.25, 0.000 +20141208, -0.82, -0.58, 0.27, 0.000 +20141209, 0.13, 1.71, -0.29, 0.000 +20141210, -1.72, -0.61, -0.10, 0.000 +20141211, 0.49, -0.08, -0.20, 0.000 +20141212, -1.55, 0.48, -0.58, 0.000 +20141215, -0.68, -0.26, 0.11, 0.000 +20141216, -0.80, 0.63, 0.60, 0.000 +20141217, 2.15, 0.85, -0.10, 0.000 +20141218, 2.36, -0.88, -0.21, 0.000 +20141219, 0.43, -0.22, 0.19, 0.000 +20141222, 0.37, 0.19, -0.04, 0.000 +20141223, 0.21, -0.26, 1.06, 0.000 +20141224, 0.07, 0.36, -0.17, 0.000 +20141226, 0.39, 0.37, -0.32, 0.000 +20141229, 0.13, 0.16, 0.57, 0.000 +20141230, -0.48, 0.06, 0.35, 0.000 +20141231, -0.93, 0.49, -0.39, 0.000 +20150102, -0.11, -0.59, 0.09, 0.000 +20150105, -1.84, 0.33, -0.63, 0.000 +20150106, -1.04, -0.78, -0.26, 0.000 +20150107, 1.19, 0.17, -0.65, 0.000 +20150108, 1.81, -0.11, -0.27, 0.000 +20150109, -0.85, 0.02, -0.50, 0.000 +20150112, -0.79, 0.37, -0.37, 0.000 +20150113, -0.19, 0.28, 0.03, 0.000 +20150114, -0.60, 0.29, -0.50, 0.000 +20150115, -1.08, -0.95, 0.63, 0.000 +20150116, 1.36, 0.47, -0.14, 0.000 +20150120, 0.11, -0.67, -0.55, 0.000 +20150121, 0.42, -0.95, 0.55, 0.000 +20150122, 1.58, 0.46, 0.41, 0.000 +20150123, -0.47, 0.51, -0.82, 0.000 +20150126, 0.42, 0.57, -0.05, 0.000 +20150127, -1.21, 0.67, 0.23, 0.000 +20150128, -1.39, -0.08, -0.77, 0.000 +20150129, 0.98, 0.24, 0.00, 0.000 +20150130, -1.30, -0.77, 0.03, 0.000 +20150202, 1.25, -0.46, 1.00, 0.000 +20150203, 1.49, 0.17, 0.51, 0.000 +20150204, -0.35, -0.07, -0.21, 0.000 +20150205, 1.10, 0.47, -0.16, 0.000 +20150206, -0.20, 0.07, 0.38, 0.000 +20150209, -0.46, -0.39, 0.09, 0.000 +20150210, 1.04, -0.31, -0.70, 0.000 +20150211, 0.03, -0.11, -0.33, 0.000 +20150212, 1.00, 0.16, -0.09, 0.000 +20150213, 0.47, 0.18, -0.29, 0.000 +20150217, 0.17, -0.02, 0.00, 0.000 +20150218, 0.03, 0.29, -0.81, 0.000 +20150219, -0.01, 0.27, -0.35, 0.000 +20150220, 0.61, -0.40, -0.26, 0.000 +20150223, -0.08, 0.04, -0.38, 0.000 +20150224, 0.32, -0.04, 0.69, 0.000 +20150225, 0.02, 0.22, -0.51, 0.000 +20150226, -0.08, 0.62, -0.49, 0.000 +20150227, -0.36, -0.21, 0.22, 0.000 +20150302, 0.62, 0.23, -0.43, 0.000 +20150303, -0.43, -0.31, 0.30, 0.000 +20150304, -0.41, 0.09, -0.40, 0.000 +20150305, 0.15, 0.24, -0.43, 0.000 +20150306, -1.29, 0.27, 0.43, 0.000 +20150309, 0.37, 0.08, -0.02, 0.000 +20150310, -1.63, 0.42, -0.47, 0.000 +20150311, -0.04, 0.57, 0.52, 0.000 +20150312, 1.28, 0.38, 0.50, 0.000 +20150313, -0.57, 0.21, -0.03, 0.000 +20150316, 1.23, -0.77, -0.42, 0.000 +20150317, -0.20, 0.54, -0.02, 0.000 +20150318, 1.08, -0.51, 0.00, 0.000 +20150319, -0.36, 0.87, -1.10, 0.000 +20150320, 0.81, -0.14, 0.54, 0.000 +20150323, -0.19, 0.21, 0.23, 0.000 +20150324, -0.51, 0.58, -0.28, 0.000 +20150325, -1.56, -0.98, 1.04, 0.000 +20150326, -0.22, 0.11, -0.06, 0.000 +20150327, 0.32, 0.50, -0.70, 0.000 +20150330, 1.24, 0.01, -0.04, 0.000 +20150331, -0.75, 0.42, 0.37, 0.000 +20150401, -0.38, 0.34, 0.42, 0.000 +20150402, 0.35, -0.08, 0.31, 0.000 +20150406, 0.61, -0.27, -0.15, 0.000 +20150407, -0.22, -0.19, -0.16, 0.000 +20150408, 0.37, 0.53, -0.72, 0.000 +20150409, 0.41, -0.70, -0.06, 0.000 +20150410, 0.49, -0.07, -0.28, 0.000 +20150413, -0.38, 0.49, 0.23, 0.000 +20150414, 0.11, -0.19, 0.19, 0.000 +20150415, 0.57, 0.25, 0.32, 0.000 +20150416, -0.08, -0.08, -0.20, 0.000 +20150417, -1.23, -0.46, 0.23, 0.000 +20150420, 0.95, 0.16, -0.27, 0.000 +20150421, -0.10, 0.19, -0.76, 0.000 +20150422, 0.46, -0.37, 0.16, 0.000 +20150423, 0.29, 0.29, -0.22, 0.000 +20150424, 0.17, -0.51, -0.28, 0.000 +20150427, -0.54, -0.70, 0.56, 0.000 +20150428, 0.27, 0.21, 1.02, 0.000 +20150429, -0.38, -0.74, 0.74, 0.000 +20150430, -1.11, -1.06, 0.77, 0.000 +20150501, 1.01, -0.31, -0.63, 0.000 +20150504, 0.32, 0.03, 0.25, 0.000 +20150505, -1.19, -0.15, 0.51, 0.000 +20150506, -0.31, 0.64, -0.13, 0.000 +20150507, 0.39, 0.04, -0.40, 0.000 +20150508, 1.21, -0.57, -0.12, 0.000 +20150511, -0.39, 0.67, -0.03, 0.000 +20150512, -0.27, 0.00, 0.07, 0.000 +20150513, 0.01, 0.00, 0.02, 0.000 +20150514, 1.01, -0.11, -0.35, 0.000 +20150515, 0.05, -0.24, -0.21, 0.000 +20150518, 0.44, 0.74, -0.09, 0.000 +20150519, -0.09, -0.12, 0.23, 0.000 +20150520, -0.05, 0.22, -0.13, 0.000 +20150521, 0.23, -0.30, -0.02, 0.000 +20150522, -0.22, -0.12, -0.14, 0.000 +20150526, -1.01, -0.02, -0.01, 0.000 +20150527, 0.93, 0.33, -0.35, 0.000 +20150528, -0.12, 0.10, 0.13, 0.000 +20150529, -0.58, 0.02, 0.05, 0.000 +20150601, 0.17, -0.04, -0.22, 0.000 +20150602, -0.02, 0.32, 0.33, 0.000 +20150603, 0.39, 0.86, -0.24, 0.000 +20150604, -0.88, -0.10, -0.01, 0.000 +20150605, 0.06, 0.80, 0.05, 0.000 +20150608, -0.66, 0.05, 0.03, 0.000 +20150609, 0.02, -0.31, 0.35, 0.000 +20150610, 1.20, 0.15, 0.19, 0.000 +20150611, 0.21, -0.10, -0.11, 0.000 +20150612, -0.63, 0.33, 0.13, 0.000 +20150615, -0.45, 0.11, -0.13, 0.000 +20150616, 0.57, 0.10, 0.00, 0.000 +20150617, 0.16, -0.29, -0.63, 0.000 +20150618, 0.99, 0.21, -0.43, 0.000 +20150619, -0.43, 0.56, -0.20, 0.000 +20150622, 0.63, 0.08, -0.06, 0.000 +20150623, 0.12, 0.24, 0.27, 0.000 +20150624, -0.79, -0.11, 0.13, 0.000 +20150625, -0.25, 0.36, -0.20, 0.000 +20150626, -0.06, -0.23, 0.45, 0.000 +20150629, -2.15, -0.42, 0.18, 0.000 +20150630, 0.33, 0.31, -0.67, 0.000 +20150701, 0.60, -0.77, -0.06, 0.000 +20150702, -0.11, -0.56, -0.04, 0.000 +20150706, -0.37, 0.16, -0.55, 0.000 +20150707, 0.53, -0.44, -0.25, 0.000 +20150708, -1.68, -0.03, 0.08, 0.000 +20150709, 0.29, 0.16, -0.03, 0.000 +20150710, 1.24, 0.23, -0.55, 0.000 +20150713, 1.14, -0.07, -0.41, 0.000 +20150714, 0.47, 0.15, 0.12, 0.000 +20150715, -0.19, -0.81, -0.08, 0.000 +20150716, 0.78, -0.17, -0.62, 0.000 +20150717, 0.05, -0.60, -0.64, 0.000 +20150720, -0.01, -0.72, -0.57, 0.000 +20150721, -0.47, 0.03, 0.30, 0.000 +20150722, -0.18, 0.18, 0.19, 0.000 +20150723, -0.60, -0.36, -0.35, 0.000 +20150724, -1.08, -0.61, -0.02, 0.000 +20150727, -0.74, -0.25, 0.08, 0.000 +20150728, 1.23, -0.34, -0.12, 0.000 +20150729, 0.74, -0.36, 0.52, 0.000 +20150730, 0.12, 0.17, -0.25, 0.000 +20150731, -0.15, 0.82, -0.99, 0.000 +20150803, -0.35, -0.33, -0.17, 0.000 +20150804, -0.14, 0.09, -0.19, 0.000 +20150805, 0.36, 0.01, -0.45, 0.000 +20150806, -0.88, -0.53, 1.99, 0.000 +20150807, -0.36, -0.46, -0.35, 0.000 +20150810, 1.32, 0.16, 0.69, 0.000 +20150811, -0.98, -0.08, 0.43, 0.000 +20150812, 0.07, -0.09, -0.28, 0.000 +20150813, -0.14, -0.43, 0.01, 0.000 +20150814, 0.43, 0.13, 0.44, 0.000 +20150817, 0.60, 0.44, -0.87, 0.000 +20150818, -0.35, -0.63, 0.35, 0.000 +20150819, -0.85, -0.12, -0.22, 0.000 +20150820, -2.24, -0.28, 0.60, 0.000 +20150821, -2.95, 1.82, 0.14, 0.000 +20150824, -3.90, 0.34, -0.43, 0.000 +20150825, -1.17, 0.69, -0.61, 0.000 +20150826, 3.68, -1.35, -0.38, 0.000 +20150827, 2.40, -0.68, 0.60, 0.000 +20150828, 0.23, 0.97, 0.08, 0.000 +20150831, -0.74, 0.77, 1.42, 0.000 +20150901, -2.91, 0.32, -0.50, 0.000 +20150902, 1.81, -0.16, -0.93, 0.000 +20150903, 0.17, -0.32, 0.72, 0.000 +20150904, -1.39, 0.90, -0.57, 0.000 +20150908, 2.52, -0.37, -0.56, 0.000 +20150909, -1.34, 0.16, 0.11, 0.000 +20150910, 0.49, -0.13, -0.32, 0.000 +20150911, 0.44, -0.20, -0.70, 0.000 +20150914, -0.41, 0.03, 0.01, 0.000 +20150915, 1.22, -0.19, 0.24, 0.000 +20150916, 0.84, 0.02, 0.44, 0.000 +20150917, -0.17, 0.89, -1.49, 0.000 +20150918, -1.62, 0.46, -0.96, 0.000 +20150921, 0.36, -0.94, 1.21, 0.000 +20150922, -1.29, -0.27, 0.14, 0.000 +20150923, -0.27, -0.17, -0.14, 0.000 +20150924, -0.36, 0.25, 0.56, 0.000 +20150925, -0.22, -1.66, 1.87, 0.000 +20150928, -2.63, -0.27, 1.17, 0.000 +20150929, -0.07, -0.72, 0.72, 0.000 +20150930, 1.88, -0.43, -0.48, 0.000 +20151001, 0.13, -0.45, -0.04, 0.000 +20151002, 1.48, 0.34, -0.84, 0.000 +20151005, 1.93, 0.62, 0.77, 0.000 +20151006, -0.43, -0.23, 1.72, 0.000 +20151007, 0.94, 0.70, -0.24, 0.000 +20151008, 0.84, 0.24, 0.77, 0.000 +20151009, 0.12, 0.21, -1.08, 0.000 +20151012, 0.06, -0.40, -0.07, 0.000 +20151013, -0.74, -0.73, 0.69, 0.000 +20151014, -0.60, -0.26, -0.03, 0.000 +20151015, 1.56, 0.65, -0.15, 0.000 +20151016, 0.36, -0.49, -0.34, 0.000 +20151019, 0.00, 0.16, -0.71, 0.000 +20151020, -0.15, 0.02, 1.21, 0.000 +20151021, -0.74, -0.88, -0.18, 0.000 +20151022, 1.50, -0.78, 0.47, 0.000 +20151023, 1.09, -0.01, -0.60, 0.000 +20151026, -0.20, -0.35, -0.71, 0.000 +20151027, -0.42, -0.87, -0.88, 0.000 +20151028, 1.43, 1.41, 0.64, 0.000 +20151029, -0.20, -0.88, 0.10, 0.000 +20151030, -0.41, 0.22, -0.54, 0.000 +20151102, 1.25, 0.85, -0.02, 0.000 +20151103, 0.32, 0.45, 0.22, 0.000 +20151104, -0.26, 0.33, -0.33, 0.000 +20151105, -0.08, 0.03, 0.46, 0.000 +20151106, 0.14, 0.81, 0.27, 0.000 +20151109, -0.95, -0.21, -0.05, 0.000 +20151110, 0.13, 0.00, 0.27, 0.000 +20151111, -0.43, -0.52, -0.18, 0.000 +20151112, -1.45, -0.51, -0.45, 0.000 +20151113, -1.06, 0.30, 0.38, 0.000 +20151116, 1.39, -0.58, 0.46, 0.000 +20151117, -0.11, -0.12, -0.66, 0.000 +20151118, 1.61, 0.00, -0.09, 0.000 +20151119, -0.13, -0.26, -0.11, 0.000 +20151120, 0.35, 0.43, -0.41, 0.000 +20151123, -0.01, 0.66, -0.35, 0.000 +20151124, 0.21, 0.70, 0.26, 0.000 +20151125, 0.09, 0.87, -0.55, 0.000 +20151127, 0.09, 0.22, -0.29, 0.000 +20151130, -0.47, 0.14, 0.69, 0.000 +20151201, 0.97, -0.66, 0.24, 0.000 +20151202, -1.01, 0.25, -0.70, 0.000 +20151203, -1.50, -0.22, 0.43, 0.000 +20151204, 1.86, -1.04, -0.52, 0.000 +20151207, -0.84, -0.86, -0.66, 0.000 +20151208, -0.59, 0.48, -1.23, 0.000 +20151209, -0.83, -0.33, 0.41, 0.000 +20151210, 0.30, 0.11, -0.22, 0.000 +20151211, -2.03, -0.22, -0.06, 0.000 +20151214, 0.29, -1.05, -0.18, 0.000 +20151215, 1.10, 0.03, 0.76, 0.000 +20151216, 1.47, 0.01, -0.64, 0.000 +20151217, -1.46, 0.38, -0.31, 0.000 +20151218, -1.70, 0.76, -0.40, 0.000 +20151221, 0.74, -0.18, -0.06, 0.000 +20151222, 0.89, -0.04, 0.51, 0.000 +20151223, 1.30, 0.13, 0.59, 0.000 +20151224, -0.11, 0.30, -0.03, 0.000 +20151228, -0.29, -0.48, -0.38, 0.000 +20151229, 1.05, 0.09, -0.31, 0.000 +20151230, -0.74, -0.17, -0.13, 0.000 +20151231, -0.92, -0.24, 0.24, 0.000 +20160104, -1.59, -0.83, 0.53, 0.000 +20160105, 0.12, -0.22, 0.01, 0.000 +20160106, -1.35, -0.12, 0.00, 0.000 +20160107, -2.44, -0.29, 0.08, 0.000 +20160108, -1.11, -0.47, -0.03, 0.000 +20160111, -0.06, -0.65, 0.34, 0.000 +20160112, 0.71, -0.40, -0.77, 0.000 +20160113, -2.67, -0.70, 0.78, 0.000 +20160114, 1.65, -0.01, -0.41, 0.000 +20160115, -2.14, 0.42, -0.21, 0.000 +20160119, -0.20, -1.34, -0.07, 0.000 +20160120, -0.94, 1.85, -1.24, 0.000 +20160121, 0.45, -0.49, 0.01, 0.000 +20160122, 2.08, 0.22, -0.19, 0.000 +20160125, -1.71, -0.37, -0.98, 0.000 +20160126, 1.52, 0.38, 1.22, 0.000 +20160127, -1.11, -0.54, 1.72, 0.000 +20160128, 0.49, -0.47, 1.26, 0.000 +20160129, 2.57, 0.46, 0.37, 0.000 +20160201, -0.04, -0.21, -0.96, 0.001 +20160202, -2.00, -0.03, -0.34, 0.001 +20160203, 0.46, -0.32, 0.44, 0.001 +20160204, 0.27, 0.20, 0.32, 0.001 +20160205, -2.06, -1.10, 1.75, 0.001 +20160208, -1.51, -0.02, 0.90, 0.001 +20160209, -0.10, -0.47, -0.29, 0.001 +20160210, 0.01, -0.05, -0.56, 0.001 +20160211, -1.17, 0.50, -1.47, 0.001 +20160212, 1.98, -0.54, 1.14, 0.001 +20160216, 1.78, 0.55, -0.56, 0.001 +20160217, 1.75, -0.05, -0.63, 0.001 +20160218, -0.51, 0.00, 0.21, 0.001 +20160219, 0.06, 0.43, -0.62, 0.001 +20160222, 1.43, -0.27, 0.24, 0.001 +20160223, -1.22, 0.47, -0.52, 0.001 +20160224, 0.53, 0.68, -0.32, 0.001 +20160225, 1.10, -0.43, 0.23, 0.001 +20160226, -0.01, 0.82, 0.26, 0.001 +20160229, -0.69, 0.66, 0.26, 0.001 +20160301, 2.34, -0.64, 0.30, 0.001 +20160302, 0.54, 0.50, 0.71, 0.001 +20160303, 0.51, 0.44, 0.64, 0.001 +20160304, 0.37, 0.27, 0.28, 0.001 +20160307, 0.21, 1.21, 0.54, 0.001 +20160308, -1.27, -1.14, -0.49, 0.001 +20160309, 0.50, 0.04, 0.38, 0.001 +20160310, -0.11, -0.81, 0.63, 0.001 +20160311, 1.69, 0.27, 0.19, 0.001 +20160314, -0.12, -0.07, -0.87, 0.001 +20160315, -0.36, -1.43, 0.67, 0.001 +20160316, 0.63, 0.10, -0.04, 0.001 +20160317, 0.72, 0.84, 0.58, 0.001 +20160318, 0.54, 0.34, -0.19, 0.001 +20160321, 0.10, -0.20, -0.31, 0.001 +20160322, -0.05, -0.01, -0.45, 0.001 +20160323, -0.86, -1.17, -0.09, 0.001 +20160324, 0.00, 0.47, -0.06, 0.001 +20160328, 0.04, -0.03, 0.14, 0.001 +20160329, 1.07, 1.77, -1.18, 0.001 +20160330, 0.41, -0.29, 0.14, 0.001 +20160331, -0.11, 0.44, -0.48, 0.001 +20160401, 0.64, -0.25, -0.62, 0.000 +20160404, -0.41, -0.25, -0.74, 0.000 +20160405, -0.94, -0.08, -0.36, 0.000 +20160406, 1.14, 0.17, -0.82, 0.000 +20160407, -1.23, -0.05, -0.35, 0.000 +20160408, 0.29, 0.02, 0.68, 0.000 +20160411, -0.28, -0.10, 0.95, 0.000 +20160412, 0.99, -0.06, 0.85, 0.000 +20160413, 1.23, 0.84, 0.35, 0.000 +20160414, 0.03, -0.28, 0.18, 0.000 +20160415, -0.04, 0.33, -0.32, 0.000 +20160418, 0.65, 0.09, -0.19, 0.000 +20160419, 0.29, -0.36, 1.48, 0.000 +20160420, 0.15, -0.10, 0.54, 0.000 +20160421, -0.47, 0.11, -0.59, 0.000 +20160422, 0.12, 0.82, 0.49, 0.000 +20160425, -0.24, -0.58, -0.17, 0.000 +20160426, 0.29, 0.65, 0.78, 0.000 +20160427, 0.21, 0.09, 0.68, 0.000 +20160428, -0.96, -0.15, 0.05, 0.000 +20160429, -0.50, -0.14, 0.38, 0.000 +20160502, 0.78, -0.01, -0.36, 0.001 +20160503, -1.05, -0.66, -0.49, 0.001 +20160504, -0.66, -0.15, 0.06, 0.001 +20160505, -0.08, -0.50, 0.09, 0.001 +20160506, 0.38, 0.05, 0.24, 0.001 +20160509, 0.05, 0.36, -1.48, 0.001 +20160510, 1.26, -0.40, 0.47, 0.001 +20160511, -0.89, -0.36, 0.78, 0.001 +20160512, -0.11, -0.60, 0.15, 0.001 +20160513, -0.82, 0.38, -0.66, 0.001 +20160516, 0.99, 0.28, -0.24, 0.001 +20160517, -0.95, -0.78, 0.61, 0.001 +20160518, 0.10, 0.11, 0.83, 0.001 +20160519, -0.33, -0.32, -0.29, 0.001 +20160520, 0.75, 0.90, -0.30, 0.001 +20160523, -0.18, 0.26, -0.32, 0.001 +20160524, 1.43, 0.68, -0.34, 0.001 +20160525, 0.72, -0.21, 0.57, 0.001 +20160526, -0.04, -0.09, -0.51, 0.001 +20160527, 0.49, 0.33, -0.22, 0.001 +20160531, -0.01, 0.50, -0.36, 0.001 +20160601, 0.20, 0.65, -0.25, 0.001 +20160602, 0.35, 0.31, -0.59, 0.001 +20160603, -0.38, -0.14, -0.11, 0.001 +20160606, 0.60, 0.68, 0.32, 0.001 +20160607, 0.12, 0.19, 0.11, 0.001 +20160608, 0.37, 0.45, -0.11, 0.001 +20160609, -0.27, -0.40, -0.22, 0.001 +20160610, -1.05, -0.34, -0.18, 0.001 +20160613, -0.84, -0.36, 0.10, 0.001 +20160614, -0.19, 0.27, -0.71, 0.001 +20160615, -0.11, 0.25, -0.05, 0.001 +20160616, 0.24, -0.34, -0.40, 0.001 +20160617, -0.30, -0.10, 0.94, 0.001 +20160620, 0.71, 0.61, -0.01, 0.001 +20160621, 0.21, -0.62, 0.50, 0.001 +20160622, -0.20, -0.31, 0.08, 0.001 +20160623, 1.45, 0.50, 0.43, 0.001 +20160624, -3.70, 0.15, -1.14, 0.001 +20160627, -2.07, -0.95, -0.67, 0.001 +20160628, 1.76, -0.39, 0.14, 0.001 +20160629, 1.80, 0.27, -0.07, 0.001 +20160630, 1.42, 0.35, 0.45, 0.001 +20160701, 0.24, 0.53, -0.41, 0.001 +20160705, -0.85, -0.62, -1.36, 0.001 +20160706, 0.62, 0.17, -0.12, 0.001 +20160707, 0.02, 0.35, -0.20, 0.001 +20160708, 1.60, 0.89, 0.35, 0.001 +20160711, 0.43, 0.60, 0.25, 0.001 +20160712, 0.75, 0.62, 1.00, 0.001 +20160713, -0.05, -0.52, 0.51, 0.001 +20160714, 0.51, -0.46, 0.45, 0.001 +20160715, -0.05, 0.30, 0.01, 0.001 +20160718, 0.25, -0.02, -0.12, 0.001 +20160719, -0.22, -0.62, 0.05, 0.001 +20160720, 0.48, 0.45, -0.87, 0.001 +20160721, -0.38, -0.05, -0.01, 0.001 +20160722, 0.48, 0.23, -0.08, 0.001 +20160725, -0.27, -0.02, -0.24, 0.001 +20160726, 0.13, 0.58, 0.54, 0.001 +20160727, -0.14, 0.58, -0.42, 0.001 +20160728, 0.18, -0.41, -0.34, 0.001 +20160729, 0.17, -0.02, 0.04, 0.001 +20160801, -0.16, 0.18, -0.87, 0.001 +20160802, -0.70, -0.59, 0.16, 0.001 +20160803, 0.45, 0.46, 0.83, 0.001 +20160804, 0.05, 0.08, -0.33, 0.001 +20160805, 0.93, 0.44, 0.87, 0.001 +20160808, -0.06, 0.02, 0.57, 0.001 +20160809, 0.05, -0.02, -0.31, 0.001 +20160810, -0.29, -0.44, -0.12, 0.001 +20160811, 0.54, 0.15, 0.04, 0.001 +20160812, -0.06, 0.08, -0.18, 0.001 +20160815, 0.39, 0.73, 0.39, 0.001 +20160816, -0.57, -0.27, 0.61, 0.001 +20160817, 0.12, -0.55, 0.25, 0.001 +20160818, 0.32, 0.45, 0.37, 0.001 +20160819, -0.11, 0.12, -0.12, 0.001 +20160822, -0.02, 0.25, -0.41, 0.001 +20160823, 0.27, 0.56, -0.01, 0.001 +20160824, -0.56, -0.47, 0.40, 0.001 +20160825, -0.08, 0.19, 0.48, 0.001 +20160826, -0.15, 0.15, -0.13, 0.001 +20160829, 0.53, -0.07, 0.35, 0.001 +20160830, -0.14, 0.10, 0.31, 0.001 +20160831, -0.24, -0.39, 0.13, 0.001 +20160901, 0.03, 0.12, -0.49, 0.001 +20160902, 0.53, 0.39, 0.36, 0.001 +20160906, 0.26, 0.06, -0.53, 0.001 +20160907, 0.09, 0.61, 0.03, 0.001 +20160908, -0.18, -0.03, 0.57, 0.001 +20160909, -2.47, -0.56, 0.31, 0.001 +20160912, 1.44, 0.00, -0.46, 0.001 +20160913, -1.48, -0.25, -0.48, 0.001 +20160914, -0.08, 0.11, -0.83, 0.001 +20160915, 1.07, 0.30, -0.33, 0.001 +20160916, -0.36, 0.32, -0.46, 0.001 +20160919, 0.05, 0.40, 0.17, 0.001 +20160920, -0.02, -0.21, -0.51, 0.001 +20160921, 1.12, 0.14, 0.33, 0.001 +20160922, 0.70, 0.85, -0.06, 0.001 +20160923, -0.60, -0.10, -0.19, 0.001 +20160926, -0.88, -0.23, -0.35, 0.001 +20160927, 0.64, -0.07, -0.53, 0.001 +20160928, 0.56, 0.22, 1.10, 0.001 +20160929, -0.98, -0.41, 0.54, 0.001 +20160930, 0.88, 0.37, 0.35, 0.001 +20161003, -0.26, -0.03, -0.13, 0.001 +20161004, -0.46, 0.04, 0.09, 0.001 +20161005, 0.58, 0.28, 0.79, 0.001 +20161006, -0.06, -0.27, 0.37, 0.001 +20161007, -0.38, -0.51, 0.16, 0.001 +20161010, 0.52, 0.57, 0.01, 0.001 +20161011, -1.30, -0.60, 0.48, 0.001 +20161012, 0.06, -0.23, 0.37, 0.001 +20161013, -0.42, -0.68, -0.63, 0.001 +20161014, 0.01, -0.36, 0.57, 0.001 +20161017, -0.29, -0.05, 0.14, 0.001 +20161018, 0.60, -0.17, 0.03, 0.001 +20161019, 0.25, 0.04, 0.91, 0.001 +20161020, -0.16, -0.03, -0.11, 0.001 +20161021, 0.02, -0.13, -0.32, 0.001 +20161024, 0.54, 0.06, -0.16, 0.001 +20161025, -0.46, -0.58, 0.22, 0.001 +20161026, -0.23, -0.84, 0.75, 0.001 +20161027, -0.33, -0.96, 0.60, 0.001 +20161028, -0.29, -0.10, 0.11, 0.001 +20161031, 0.02, 0.03, 0.13, 0.001 +20161101, -0.68, -0.36, 0.17, 0.001 +20161102, -0.73, -0.66, 0.36, 0.001 +20161103, -0.40, -0.46, 1.02, 0.001 +20161104, -0.12, 0.86, -0.42, 0.001 +20161107, 2.23, 0.21, -0.15, 0.001 +20161108, 0.40, -0.07, -0.19, 0.001 +20161109, 1.46, 1.82, 0.99, 0.001 +20161110, 0.32, 1.14, 1.81, 0.001 +20161111, 0.18, 2.50, -0.04, 0.001 +20161114, 0.21, 0.58, 1.42, 0.001 +20161115, 0.80, -0.55, 0.14, 0.001 +20161116, -0.12, 0.30, -0.56, 0.001 +20161117, 0.56, 0.13, -0.13, 0.001 +20161118, -0.16, 0.56, 0.39, 0.001 +20161121, 0.77, -0.26, 0.08, 0.001 +20161122, 0.31, 0.54, 0.58, 0.001 +20161123, 0.16, 0.52, 0.19, 0.001 +20161125, 0.40, -0.08, -0.24, 0.001 +20161128, -0.64, -0.77, 0.06, 0.001 +20161129, 0.11, -0.36, -0.07, 0.001 +20161130, -0.25, -0.39, 2.25, 0.001 +20161201, -0.36, -0.66, 2.06, 0.001 +20161202, 0.00, 0.05, -0.32, 0.001 +20161205, 0.75, 1.09, 0.28, 0.001 +20161206, 0.48, 0.63, 0.23, 0.001 +20161207, 1.26, -0.63, 0.53, 0.001 +20161208, 0.36, 1.15, 0.58, 0.001 +20161209, 0.46, -0.28, 0.12, 0.001 +20161212, -0.30, -0.94, -0.11, 0.001 +20161213, 0.60, -0.51, -0.29, 0.001 +20161214, -0.82, -0.36, -0.29, 0.001 +20161215, 0.46, 0.37, 0.28, 0.001 +20161216, -0.22, 0.05, -0.42, 0.001 +20161219, 0.22, 0.31, 0.08, 0.001 +20161220, 0.44, 0.42, 0.68, 0.001 +20161221, -0.24, -0.38, 0.24, 0.001 +20161222, -0.30, -0.75, 0.24, 0.001 +20161223, 0.19, 0.56, -0.52, 0.001 +20161227, 0.27, 0.21, 0.13, 0.001 +20161228, -0.87, -0.27, 0.08, 0.001 +20161229, -0.04, 0.13, -0.31, 0.001 +20161230, -0.52, -0.11, 0.20, 0.001 +20170103, 0.83, -0.11, 0.09, 0.002 +20170104, 0.79, 0.96, -0.15, 0.002 +20170105, -0.21, -0.87, -0.80, 0.002 +20170106, 0.29, -0.63, -0.32, 0.002 +20170109, -0.37, -0.27, -1.03, 0.002 +20170110, 0.16, 0.97, 0.56, 0.002 +20170111, 0.31, -0.31, 0.53, 0.002 +20170112, -0.30, -0.57, -0.88, 0.002 +20170113, 0.29, 0.63, -0.08, 0.002 +20170117, -0.49, -0.86, -0.59, 0.002 +20170118, 0.24, 0.17, 0.23, 0.002 +20170119, -0.38, -0.50, -0.03, 0.002 +20170120, 0.33, 0.06, 0.18, 0.002 +20170123, -0.29, -0.02, -0.30, 0.002 +20170124, 0.83, 0.68, 0.81, 0.002 +20170125, 0.84, 0.15, 0.35, 0.002 +20170126, -0.10, -0.62, 0.38, 0.002 +20170127, -0.12, 0.03, -0.67, 0.002 +20170130, -0.68, -0.72, -0.41, 0.002 +20170131, 0.00, 0.88, -0.55, 0.002 +20170201, 0.04, -0.05, 0.02, 0.002 +20170202, -0.02, -0.26, -0.31, 0.002 +20170203, 0.82, 0.55, 0.65, 0.002 +20170206, -0.27, -0.57, -0.20, 0.002 +20170207, -0.01, -0.29, -0.51, 0.002 +20170208, 0.06, -0.24, -0.53, 0.002 +20170209, 0.72, 0.70, 0.03, 0.002 +20170210, 0.38, 0.38, 0.12, 0.002 +20170213, 0.49, -0.32, 0.33, 0.002 +20170214, 0.45, -0.23, 0.33, 0.002 +20170215, 0.54, 0.19, -0.44, 0.002 +20170216, -0.16, -0.21, -0.04, 0.002 +20170217, 0.20, -0.01, -0.57, 0.002 +20170221, 0.60, -0.03, 0.13, 0.002 +20170222, -0.15, -0.37, 0.12, 0.002 +20170223, -0.11, -0.68, 0.26, 0.002 +20170224, 0.15, 0.04, -0.91, 0.002 +20170227, 0.22, 0.82, -0.34, 0.002 +20170228, -0.42, -1.38, 0.20, 0.002 +20170301, 1.47, 0.43, 0.72, 0.001 +20170302, -0.70, -0.53, -0.88, 0.001 +20170303, 0.09, -0.22, 0.15, 0.001 +20170306, -0.38, -0.35, -0.10, 0.001 +20170307, -0.36, -0.29, -0.05, 0.001 +20170308, -0.19, -0.10, -0.82, 0.001 +20170309, 0.04, -0.47, -0.28, 0.001 +20170310, 0.34, 0.10, -0.38, 0.001 +20170313, 0.13, 0.32, -0.03, 0.001 +20170314, -0.36, -0.23, 0.02, 0.001 +20170315, 0.86, 0.73, -0.41, 0.001 +20170316, -0.06, 0.44, 0.23, 0.001 +20170317, -0.08, 0.62, -0.26, 0.001 +20170320, -0.25, -0.07, -0.75, 0.001 +20170321, -1.48, -1.34, -0.69, 0.001 +20170322, 0.16, -0.30, -0.54, 0.001 +20170323, -0.03, 0.69, 0.46, 0.001 +20170324, -0.05, 0.12, -0.24, 0.001 +20170327, -0.05, 0.56, -0.52, 0.001 +20170328, 0.72, -0.15, 0.71, 0.001 +20170329, 0.18, 0.40, -0.06, 0.001 +20170330, 0.36, 0.33, 0.93, 0.001 +20170331, -0.16, 0.57, -0.31, 0.001 +20170403, -0.28, -1.10, -0.11, 0.003 +20170404, 0.05, -0.22, 0.32, 0.003 +20170405, -0.44, -0.79, -0.30, 0.003 +20170406, 0.32, 0.69, 0.49, 0.003 +20170407, -0.08, 0.14, -0.26, 0.003 +20170410, 0.08, 0.11, 0.11, 0.003 +20170411, -0.05, 0.80, 0.25, 0.003 +20170412, -0.49, -0.84, -0.53, 0.003 +20170413, -0.75, -0.23, -0.79, 0.003 +20170417, 0.89, 0.24, 0.22, 0.003 +20170418, -0.25, 0.36, -0.16, 0.003 +20170419, -0.08, 0.59, -0.38, 0.003 +20170420, 0.83, 0.52, 0.27, 0.003 +20170421, -0.28, 0.10, -0.14, 0.003 +20170424, 1.18, 0.17, 0.52, 0.003 +20170425, 0.66, 0.36, -0.05, 0.003 +20170426, 0.04, 0.70, 0.32, 0.003 +20170427, 0.05, -0.13, -0.95, 0.003 +20170428, -0.30, -0.67, -0.59, 0.003 +20170501, 0.21, 0.27, -0.13, 0.003 +20170502, 0.03, -0.46, -0.21, 0.003 +20170503, -0.19, -0.54, 0.20, 0.003 +20170504, 0.02, -0.06, -0.35, 0.003 +20170505, 0.46, 0.07, 0.06, 0.003 +20170508, -0.04, -0.27, 0.29, 0.003 +20170509, -0.05, 0.49, -0.81, 0.003 +20170510, 0.21, 0.19, 0.02, 0.003 +20170511, -0.26, -0.36, -0.14, 0.003 +20170512, -0.18, -0.30, -0.62, 0.003 +20170515, 0.53, 0.25, 0.19, 0.003 +20170516, -0.03, 0.16, -0.09, 0.003 +20170517, -1.97, -0.88, -0.53, 0.003 +20170518, 0.40, 0.05, -0.40, 0.003 +20170519, 0.70, -0.38, 0.41, 0.003 +20170522, 0.56, 0.28, -0.30, 0.003 +20170523, 0.18, -0.07, 0.62, 0.003 +20170524, 0.24, -0.16, -0.50, 0.003 +20170525, 0.42, -0.27, -0.77, 0.003 +20170526, 0.06, -0.02, 0.09, 0.003 +20170530, -0.19, -0.50, -0.32, 0.003 +20170531, -0.02, 0.03, -0.56, 0.003 +20170601, 0.95, 0.99, 0.04, 0.003 +20170602, 0.35, 0.55, -0.80, 0.003 +20170605, -0.17, -0.46, 0.00, 0.003 +20170606, -0.28, 0.10, -0.07, 0.003 +20170607, 0.15, -0.19, 0.01, 0.003 +20170608, 0.18, 1.16, 0.92, 0.003 +20170609, -0.12, 0.01, 2.38, 0.003 +20170612, -0.11, -0.27, 0.35, 0.003 +20170613, 0.55, 0.08, -0.14, 0.003 +20170614, -0.17, -0.47, -0.54, 0.003 +20170615, -0.30, -0.23, -0.12, 0.003 +20170616, -0.03, -0.23, -0.18, 0.003 +20170619, 0.86, 0.12, -0.74, 0.003 +20170620, -0.73, -0.41, -0.51, 0.003 +20170621, -0.07, -0.05, -1.69, 0.003 +20170622, 0.02, 0.52, -0.41, 0.003 +20170623, 0.24, 0.82, -0.51, 0.003 +20170626, 0.04, -0.05, 0.69, 0.003 +20170627, -0.85, -0.40, 1.33, 0.003 +20170628, 1.02, 0.74, 0.21, 0.003 +20170629, -0.83, -0.11, 1.38, 0.003 +20170630, 0.14, -0.09, -0.23, 0.003 +20170703, 0.24, 0.35, 1.21, 0.004 +20170705, 0.12, -0.70, -0.57, 0.004 +20170706, -0.95, -0.50, 0.11, 0.004 +20170707, 0.70, 0.42, -0.41, 0.004 +20170710, 0.05, -0.43, -0.09, 0.004 +20170711, 0.00, 0.38, -0.53, 0.004 +20170712, 0.72, 0.13, -0.53, 0.004 +20170713, 0.17, -0.06, 0.37, 0.004 +20170714, 0.42, -0.13, -0.51, 0.004 +20170717, 0.00, 0.21, 0.13, 0.004 +20170718, 0.04, -0.30, -0.33, 0.004 +20170719, 0.59, 0.52, 0.03, 0.004 +20170720, -0.01, 0.05, -0.01, 0.004 +20170721, -0.08, -0.42, -0.28, 0.004 +20170724, -0.03, 0.12, -0.20, 0.004 +20170725, 0.38, 0.37, 0.92, 0.004 +20170726, -0.06, -0.35, -0.70, 0.004 +20170727, -0.14, -0.62, 0.45, 0.004 +20170728, -0.17, -0.06, 0.24, 0.004 +20170731, -0.11, -0.33, 0.44, 0.004 +20170801, 0.24, -0.24, 0.18, 0.004 +20170802, -0.08, -1.17, 0.15, 0.004 +20170803, -0.21, -0.33, -0.29, 0.004 +20170804, 0.25, 0.30, 0.36, 0.004 +20170807, 0.16, -0.09, -0.60, 0.004 +20170808, -0.24, -0.10, 0.21, 0.004 +20170809, -0.14, -0.76, -0.10, 0.004 +20170810, -1.49, -0.29, 0.25, 0.004 +20170811, 0.20, 0.24, -0.88, 0.004 +20170814, 1.03, 0.26, 0.06, 0.004 +20170815, -0.11, -0.85, -0.04, 0.004 +20170816, 0.18, -0.12, -0.45, 0.004 +20170817, -1.59, -0.17, -0.15, 0.004 +20170818, -0.15, 0.14, 0.21, 0.004 +20170821, 0.06, -0.25, -0.22, 0.004 +20170822, 1.06, -0.02, -0.25, 0.004 +20170823, -0.32, 0.10, 0.40, 0.004 +20170824, -0.14, 0.60, 0.18, 0.004 +20170825, 0.18, 0.12, 0.58, 0.004 +20170828, 0.08, 0.35, -0.74, 0.004 +20170829, 0.10, 0.13, -0.39, 0.004 +20170830, 0.53, 0.02, -0.32, 0.004 +20170831, 0.62, 0.47, -0.42, 0.004 +20170901, 0.27, 0.41, 0.44, 0.005 +20170905, -0.81, 0.10, -0.95, 0.005 +20170906, 0.28, -0.02, 0.13, 0.005 +20170907, -0.07, 0.15, -0.93, 0.005 +20170908, -0.16, 0.04, 0.36, 0.005 +20170911, 1.08, -0.12, 0.63, 0.005 +20170912, 0.43, 0.25, 0.71, 0.005 +20170913, 0.11, 0.31, 0.36, 0.005 +20170914, -0.12, -0.04, -0.07, 0.005 +20170915, 0.19, 0.28, 0.12, 0.005 +20170918, 0.24, 0.37, 0.20, 0.005 +20170919, 0.15, -0.28, 0.35, 0.005 +20170920, 0.16, 0.23, 0.52, 0.005 +20170921, -0.28, 0.10, 0.37, 0.005 +20170922, 0.12, 0.44, 0.13, 0.005 +20170925, -0.25, 0.31, 0.63, 0.005 +20170926, 0.05, 0.38, 0.13, 0.005 +20170927, 0.63, 1.38, 0.17, 0.005 +20170928, 0.13, 0.16, -0.07, 0.005 +20170929, 0.35, -0.12, -0.27, 0.005 +20171002, 0.50, 0.84, 0.16, 0.004 +20171003, 0.26, -0.03, -0.02, 0.004 +20171004, 0.05, -0.28, -0.45, 0.004 +20171005, 0.55, -0.34, 0.35, 0.004 +20171006, -0.08, -0.08, -0.25, 0.004 +20171009, -0.22, -0.28, -0.05, 0.004 +20171010, 0.24, -0.01, 0.42, 0.004 +20171011, 0.16, -0.20, -0.22, 0.004 +20171012, -0.18, 0.04, -0.51, 0.004 +20171013, 0.04, -0.22, 0.11, 0.004 +20171016, 0.17, -0.28, 0.37, 0.004 +20171017, 0.01, -0.33, -0.28, 0.004 +20171018, 0.14, 0.31, 0.22, 0.004 +20171019, 0.02, -0.38, 0.17, 0.004 +20171020, 0.57, -0.07, 0.28, 0.004 +20171023, -0.45, -0.42, 0.12, 0.004 +20171024, 0.20, -0.18, 0.47, 0.004 +20171025, -0.51, -0.01, 0.11, 0.004 +20171026, 0.20, 0.04, 0.22, 0.004 +20171027, 0.82, -0.02, -1.01, 0.004 +20171030, -0.46, -0.80, -0.06, 0.004 +20171031, 0.23, 0.81, -0.22, 0.004 +20171101, 0.05, -0.80, 0.15, 0.004 +20171102, 0.06, -0.03, 0.49, 0.004 +20171103, 0.31, -0.42, -0.69, 0.004 +20171106, 0.06, 0.20, 0.19, 0.004 +20171107, -0.20, -1.36, -0.37, 0.004 +20171108, 0.12, 0.06, -0.62, 0.004 +20171109, -0.41, -0.02, 0.22, 0.004 +20171110, 0.01, 0.05, -0.38, 0.004 +20171113, 0.09, -0.30, 0.02, 0.004 +20171114, -0.22, -0.13, 0.00, 0.004 +20171115, -0.52, -0.05, 0.24, 0.004 +20171116, 1.01, 0.85, -0.52, 0.004 +20171117, -0.14, 0.74, 0.29, 0.004 +20171120, 0.21, 0.56, 0.00, 0.004 +20171121, 0.67, 0.41, -0.35, 0.004 +20171122, -0.05, 0.10, -0.03, 0.004 +20171124, 0.21, 0.02, -0.45, 0.004 +20171127, -0.06, -0.37, 0.03, 0.004 +20171128, 1.06, 0.39, 0.86, 0.004 +20171129, 0.02, 0.04, 1.44, 0.004 +20171130, 0.82, -0.56, -0.51, 0.004 +20171201, -0.22, -0.37, 0.37, 0.004 +20171204, -0.10, -0.35, 1.23, 0.004 +20171205, -0.43, -0.44, -0.24, 0.004 +20171206, -0.09, -0.45, -0.52, 0.004 +20171207, 0.42, 0.25, -0.17, 0.004 +20171208, 0.51, -0.44, -0.13, 0.004 +20171211, 0.26, -0.40, -0.14, 0.004 +20171212, 0.07, -0.52, 0.52, 0.004 +20171213, 0.02, 0.71, -0.88, 0.004 +20171214, -0.47, -0.69, -0.21, 0.004 +20171215, 0.92, 0.68, 0.03, 0.004 +20171218, 0.67, 0.75, 0.26, 0.004 +20171219, -0.30, -0.36, -0.26, 0.004 +20171220, 0.01, 0.36, 0.05, 0.004 +20171221, 0.24, 0.27, 0.63, 0.004 +20171222, -0.07, -0.23, -0.20, 0.004 +20171226, -0.07, 0.34, -0.06, 0.004 +20171227, 0.05, -0.13, -0.19, 0.004 +20171228, 0.22, 0.12, 0.04, 0.004 +20171229, -0.57, -0.30, 0.02, 0.004 +20180102, 0.85, 0.36, -0.22, 0.005 +20180103, 0.59, -0.39, -0.21, 0.005 +20180104, 0.42, -0.26, 0.24, 0.005 +20180105, 0.66, -0.34, -0.26, 0.005 +20180108, 0.19, -0.16, 0.07, 0.005 +20180109, 0.15, -0.36, -0.03, 0.005 +20180110, -0.07, 0.07, 0.58, 0.005 +20180111, 0.87, 1.16, 0.29, 0.005 +20180112, 0.66, -0.30, 0.17, 0.005 +20180116, -0.49, -1.02, -0.02, 0.005 +20180117, 0.95, -0.02, -0.15, 0.005 +20180118, -0.18, -0.50, -0.25, 0.005 +20180119, 0.57, 0.94, -0.07, 0.005 +20180122, 0.77, -0.34, -0.14, 0.005 +20180123, 0.22, 0.14, -0.33, 0.005 +20180124, -0.13, -0.80, 0.39, 0.005 +20180125, 0.07, 0.17, -0.49, 0.005 +20180126, 1.11, -0.62, -0.50, 0.005 +20180129, -0.62, -0.02, -0.26, 0.005 +20180130, -1.06, 0.11, -0.17, 0.005 +20180131, -0.07, -0.72, 0.06, 0.005 +20180201, 0.03, 0.10, 0.51, 0.006 +20180202, -2.13, 0.03, -0.27, 0.006 +20180205, -4.03, 0.78, -0.56, 0.006 +20180206, 1.67, -0.51, -0.23, 0.006 +20180207, -0.37, 0.51, 0.27, 0.006 +20180208, -3.67, 0.83, 0.47, 0.006 +20180209, 1.36, -0.62, 0.11, 0.006 +20180212, 1.36, -0.43, -0.29, 0.006 +20180213, 0.31, 0.05, -0.23, 0.006 +20180214, 1.52, 0.26, 0.46, 0.006 +20180215, 1.21, -0.14, -0.65, 0.006 +20180216, 0.03, 0.36, 0.13, 0.006 +20180220, -0.62, -0.36, -0.26, 0.006 +20180221, -0.43, 0.78, 0.20, 0.006 +20180222, 0.01, 0.04, -0.39, 0.006 +20180223, 1.54, -0.36, -0.14, 0.006 +20180226, 1.12, -0.49, -0.07, 0.006 +20180227, -1.25, -0.20, 0.01, 0.006 +20180228, -1.10, -0.40, -0.31, 0.006 +20180301, -1.18, 1.01, -0.04, 0.006 +20180302, 0.70, 1.16, -0.50, 0.006 +20180305, 1.06, -0.39, 0.25, 0.006 +20180306, 0.36, 0.67, 0.10, 0.006 +20180307, 0.05, 0.80, -0.45, 0.006 +20180308, 0.37, -0.49, -0.33, 0.006 +20180309, 1.70, -0.27, 0.28, 0.006 +20180312, -0.09, 0.46, -0.06, 0.006 +20180313, -0.67, 0.09, -0.01, 0.006 +20180314, -0.53, 0.23, -0.54, 0.006 +20180315, -0.18, -0.41, 0.31, 0.006 +20180316, 0.25, 0.46, 0.20, 0.006 +20180319, -1.38, 0.34, 0.41, 0.006 +20180320, 0.15, -0.07, -0.38, 0.006 +20180321, -0.06, 0.75, 0.45, 0.006 +20180322, -2.54, 0.50, -0.46, 0.006 +20180323, -2.09, 0.20, -0.20, 0.006 +20180326, 2.67, -0.69, 0.02, 0.006 +20180327, -1.87, -0.24, 0.39, 0.006 +20180328, -0.35, 0.11, 0.65, 0.006 +20180329, 1.41, -0.29, -0.21, 0.006 +20180402, -2.29, -0.14, 0.39, 0.007 +20180403, 1.24, -0.05, 0.17, 0.007 +20180404, 1.17, 0.32, -0.31, 0.007 +20180405, 0.75, 0.03, 0.48, 0.007 +20180406, -2.19, 0.40, -0.06, 0.007 +20180409, 0.30, -0.15, -0.50, 0.007 +20180410, 1.77, 0.40, -0.12, 0.007 +20180411, -0.49, 0.92, -0.31, 0.007 +20180412, 0.84, -0.22, 0.19, 0.007 +20180413, -0.37, 0.02, -0.25, 0.007 +20180416, 0.82, 0.08, -0.04, 0.007 +20180417, 1.09, 0.16, -1.18, 0.007 +20180418, 0.13, 0.24, 0.02, 0.007 +20180419, -0.49, -0.46, 1.08, 0.007 +20180420, -0.81, 0.06, 0.62, 0.007 +20180423, -0.05, -0.08, 0.20, 0.007 +20180424, -1.30, 0.52, 0.98, 0.007 +20180425, 0.10, -0.34, 0.01, 0.007 +20180426, 0.96, -0.41, -0.85, 0.007 +20180427, 0.01, -0.27, 0.07, 0.007 +20180430, -0.80, 0.03, -0.08, 0.007 +20180501, 0.24, 0.22, -0.53, 0.006 +20180502, -0.63, 1.26, -0.28, 0.006 +20180503, -0.25, -0.50, -0.17, 0.006 +20180504, 1.30, 0.03, -0.23, 0.006 +20180507, 0.42, 0.42, -0.36, 0.006 +20180508, 0.07, 0.48, 0.26, 0.006 +20180509, 0.89, -0.19, 0.24, 0.006 +20180510, 0.84, -0.43, -0.04, 0.006 +20180511, 0.19, 0.11, -0.37, 0.006 +20180514, 0.05, -0.35, 0.11, 0.006 +20180515, -0.55, 0.68, 0.41, 0.006 +20180516, 0.49, 0.70, -0.24, 0.006 +20180517, 0.02, 0.90, 0.25, 0.006 +20180518, -0.23, 0.56, -0.58, 0.006 +20180521, 0.72, -0.21, 0.43, 0.006 +20180522, -0.42, -0.75, 0.59, 0.006 +20180523, 0.29, 0.05, -0.71, 0.006 +20180524, -0.16, 0.34, -0.31, 0.006 +20180525, -0.21, 0.23, -0.40, 0.006 +20180529, -1.03, 1.32, -1.03, 0.006 +20180530, 1.31, 0.06, 0.35, 0.006 +20180531, -0.70, 0.07, -0.40, 0.006 +20180601, 1.06, -0.22, -0.13, 0.006 +20180604, 0.48, 0.17, -0.46, 0.006 +20180605, 0.16, 0.82, -0.41, 0.006 +20180606, 0.86, -0.34, 0.17, 0.006 +20180607, -0.14, -0.29, 0.92, 0.006 +20180608, 0.31, 0.08, -0.40, 0.006 +20180611, 0.12, 0.18, -0.16, 0.006 +20180612, 0.23, 0.24, -0.61, 0.006 +20180613, -0.33, 0.10, -0.21, 0.006 +20180614, 0.27, 0.32, -0.99, 0.006 +20180615, -0.08, 0.04, -0.24, 0.006 +20180618, -0.09, 0.74, 0.09, 0.006 +20180619, -0.38, 0.56, -0.18, 0.006 +20180620, 0.23, 0.73, -0.52, 0.006 +20180621, -0.73, -0.63, 0.32, 0.006 +20180622, 0.11, 0.01, 0.44, 0.006 +20180625, -1.48, -0.56, 0.55, 0.006 +20180626, 0.27, 0.61, -0.19, 0.006 +20180627, -1.02, -0.99, 0.39, 0.006 +20180628, 0.58, -0.19, -0.51, 0.006 +20180629, 0.07, -0.19, -0.24, 0.006 +20180702, 0.36, 0.45, -0.35, 0.008 +20180703, -0.44, 0.76, 0.09, 0.008 +20180705, 0.87, 0.42, -0.40, 0.008 +20180706, 0.87, 0.07, -0.38, 0.008 +20180709, 0.93, -0.37, 0.78, 0.008 +20180710, 0.21, -0.81, -0.08, 0.008 +20180711, -0.69, 0.00, -0.53, 0.008 +20180712, 0.86, -0.33, -1.08, 0.008 +20180713, 0.08, -0.12, -0.29, 0.008 +20180716, -0.16, -0.73, 0.84, 0.008 +20180717, 0.48, 0.24, -0.68, 0.008 +20180718, 0.27, -0.25, 0.61, 0.008 +20180719, -0.34, 0.97, -0.37, 0.008 +20180720, -0.10, -0.17, 0.08, 0.008 +20180723, 0.15, -0.24, 0.38, 0.008 +20180724, 0.22, -1.38, 0.52, 0.008 +20180725, 0.83, -0.39, -1.21, 0.008 +20180726, -0.20, 0.64, 0.61, 0.008 +20180727, -0.82, -1.38, 1.15, 0.008 +20180730, -0.70, -0.25, 1.66, 0.008 +20180731, 0.51, 0.78, -0.96, 0.008 +20180801, -0.13, 0.10, -0.30, 0.007 +20180802, 0.67, 0.37, -0.73, 0.007 +20180803, 0.31, -1.06, 0.55, 0.007 +20180806, 0.46, 0.27, -0.32, 0.007 +20180807, 0.29, 0.01, -0.13, 0.007 +20180808, -0.04, -0.13, 0.23, 0.007 +20180809, -0.05, 0.38, -0.32, 0.007 +20180810, -0.60, 0.43, -0.23, 0.007 +20180813, -0.46, -0.16, -0.31, 0.007 +20180814, 0.69, 0.32, 0.20, 0.007 +20180815, -0.91, -0.55, -0.14, 0.007 +20180816, 0.86, -0.08, 0.27, 0.007 +20180817, 0.30, 0.08, 0.04, 0.007 +20180820, 0.25, 0.12, 0.17, 0.007 +20180821, 0.33, 0.87, 0.15, 0.007 +20180822, 0.05, 0.41, -0.45, 0.007 +20180823, -0.19, -0.05, -0.33, 0.007 +20180824, 0.62, -0.04, -0.51, 0.007 +20180827, 0.74, -0.69, -0.11, 0.007 +20180828, -0.01, -0.12, -0.29, 0.007 +20180829, 0.56, -0.04, -0.59, 0.007 +20180830, -0.41, 0.30, -0.43, 0.007 +20180831, 0.08, 0.50, -0.43, 0.007 +20180904, -0.11, -0.33, -0.08, 0.008 +20180905, -0.41, -0.19, 0.69, 0.008 +20180906, -0.44, -0.39, -0.13, 0.008 +20180907, -0.18, 0.08, -0.21, 0.008 +20180910, 0.23, 0.10, -0.33, 0.008 +20180911, 0.37, -0.30, -0.21, 0.008 +20180912, 0.03, -0.09, -0.06, 0.008 +20180913, 0.45, -0.44, -0.39, 0.008 +20180914, 0.12, 0.26, 0.25, 0.008 +20180917, -0.71, -0.47, 0.92, 0.008 +20180918, 0.57, 0.07, -0.53, 0.008 +20180919, 0.06, -0.62, 1.17, 0.008 +20180920, 0.77, 0.30, -0.18, 0.008 +20180921, -0.13, -0.44, 0.38, 0.008 +20180924, -0.31, 0.03, -0.87, 0.008 +20180925, -0.05, 0.30, -0.44, 0.008 +20180926, -0.40, -0.40, -0.58, 0.008 +20180927, 0.27, -0.26, -0.57, 0.008 +20180928, -0.03, 0.40, -0.19, 0.008 +20181001, 0.16, -1.63, 0.37, 0.008 +20181002, -0.21, -1.00, 0.66, 0.008 +20181003, 0.20, 0.88, 0.44, 0.008 +20181004, -0.93, -1.04, 1.54, 0.008 +20181005, -0.64, -0.40, 0.39, 0.008 +20181008, -0.17, -0.38, 1.19, 0.008 +20181009, -0.18, -0.26, 0.17, 0.008 +20181010, -3.33, 0.28, 1.14, 0.008 +20181011, -1.96, 0.43, -0.89, 0.008 +20181012, 1.38, -0.88, -1.69, 0.008 +20181015, -0.48, 0.92, 0.47, 0.008 +20181016, 2.24, 0.68, -1.45, 0.008 +20181017, -0.08, -0.64, 0.18, 0.008 +20181018, -1.54, -0.57, 0.52, 0.008 +20181019, -0.25, -1.32, 0.80, 0.008 +20181022, -0.38, 0.44, -1.19, 0.008 +20181023, -0.62, -0.14, -0.33, 0.008 +20181024, -3.33, -0.88, 0.62, 0.008 +20181025, 1.93, 0.47, -0.72, 0.008 +20181026, -1.65, 0.56, 0.36, 0.008 +20181029, -0.77, -0.29, 1.63, 0.008 +20181030, 1.66, 0.37, 0.11, 0.008 +20181031, 1.22, -0.63, -0.69, 0.008 +20181101, 1.29, 1.30, -1.10, 0.008 +20181102, -0.53, 0.80, 0.64, 0.008 +20181105, 0.40, -0.98, 1.55, 0.008 +20181106, 0.58, -0.15, 0.04, 0.008 +20181107, 2.11, -0.33, -1.03, 0.008 +20181108, -0.28, -0.24, 0.22, 0.008 +20181109, -1.04, -0.91, 0.38, 0.008 +20181112, -2.06, 0.00, 0.96, 0.008 +20181113, -0.13, -0.10, 0.07, 0.008 +20181114, -0.77, -0.02, -0.20, 0.008 +20181115, 1.18, 0.37, -0.55, 0.008 +20181116, 0.15, 0.00, -0.01, 0.008 +20181119, -1.88, -0.66, 2.32, 0.008 +20181120, -1.85, 0.14, -0.63, 0.008 +20181121, 0.51, 0.97, -0.30, 0.008 +20181123, -0.55, 0.79, -0.57, 0.008 +20181126, 1.62, -0.67, -0.18, 0.008 +20181127, 0.11, -1.07, 0.27, 0.008 +20181128, 2.42, 0.48, -1.27, 0.008 +20181129, -0.22, -0.12, -0.17, 0.008 +20181130, 0.78, -0.35, -0.38, 0.008 +20181203, 1.13, -0.07, -0.70, 0.010 +20181204, -3.45, -0.97, -0.12, 0.010 +20181206, -0.16, 0.10, -1.00, 0.010 +20181207, -2.36, 0.23, 1.29, 0.010 +20181210, 0.10, -0.22, -1.57, 0.010 +20181211, -0.08, -0.08, -0.35, 0.010 +20181212, 0.68, 0.55, -0.13, 0.010 +20181213, -0.26, -1.50, -0.17, 0.010 +20181214, -1.89, -0.10, 0.59, 0.010 +20181217, -2.13, -0.26, 0.98, 0.010 +20181218, -0.03, 0.00, -0.55, 0.010 +20181219, -1.58, -0.65, 0.17, 0.010 +20181220, -1.62, -0.23, 0.77, 0.010 +20181221, -2.17, -0.58, 0.83, 0.010 +20181224, -2.55, 0.99, -0.45, 0.010 +20181226, 5.06, -0.01, -1.05, 0.010 +20181227, 0.78, -0.67, -0.08, 0.010 +20181228, -0.03, 0.74, 0.25, 0.010 +20181231, 0.90, -0.09, -0.47, 0.010 +20190102, 0.23, 0.57, 1.15, 0.010 +20190103, -2.45, 0.39, 1.22, 0.010 +20190104, 3.55, 0.44, -0.73, 0.010 +20190107, 0.94, 0.94, -0.66, 0.010 +20190108, 1.01, 0.50, -0.53, 0.010 +20190109, 0.56, 0.50, -0.05, 0.010 +20190110, 0.42, 0.00, -0.41, 0.010 +20190111, -0.01, 0.10, 0.30, 0.010 +20190114, -0.60, -0.56, 0.87, 0.010 +20190115, 1.06, 0.00, -0.88, 0.010 +20190116, 0.28, 0.11, 0.83, 0.010 +20190117, 0.75, 0.10, -0.19, 0.010 +20190118, 1.29, -0.35, 0.12, 0.010 +20190122, -1.53, -0.38, 0.30, 0.010 +20190123, 0.15, -0.41, -0.13, 0.010 +20190124, 0.23, 0.45, -0.09, 0.010 +20190125, 0.90, 0.47, -0.36, 0.010 +20190128, -0.80, -0.17, 0.66, 0.010 +20190129, -0.19, 0.00, 0.17, 0.010 +20190130, 1.51, -0.10, -1.06, 0.010 +20190131, 0.92, 0.13, -1.08, 0.010 +20190201, 0.14, -0.12, 0.34, 0.010 +20190204, 0.72, 0.52, -0.57, 0.010 +20190205, 0.43, -0.10, -0.56, 0.010 +20190206, -0.22, -0.01, 0.01, 0.010 +20190207, -0.93, -0.14, 0.41, 0.010 +20190208, 0.09, 0.03, -0.68, 0.010 +20190211, 0.14, 0.64, 0.21, 0.010 +20190212, 1.36, 0.03, -0.24, 0.010 +20190213, 0.28, 0.08, 0.05, 0.010 +20190214, -0.21, 0.50, -0.55, 0.010 +20190215, 1.13, 0.24, 0.53, 0.010 +20190219, 0.19, 0.28, 0.32, 0.010 +20190220, 0.19, 0.21, 0.59, 0.010 +20190221, -0.37, -0.07, -0.26, 0.010 +20190222, 0.65, 0.51, -1.37, 0.010 +20190225, 0.15, -0.24, -0.20, 0.010 +20190226, -0.16, -0.63, -0.32, 0.010 +20190227, 0.09, 0.22, -0.16, 0.010 +20190228, -0.31, 0.01, -0.27, 0.010 +20190301, 0.72, 0.32, -0.48, 0.009 +20190304, -0.52, -0.38, 0.32, 0.009 +20190305, -0.17, -0.31, -0.22, 0.009 +20190306, -0.84, -1.27, 0.08, 0.009 +20190307, -0.82, -0.07, -0.28, 0.009 +20190308, -0.22, 0.04, -0.13, 0.009 +20190311, 1.49, 0.33, -0.49, 0.009 +20190312, 0.25, -0.27, -0.05, 0.009 +20190313, 0.68, -0.31, 0.02, 0.009 +20190314, -0.10, -0.39, 0.26, 0.009 +20190315, 0.48, -0.27, -0.28, 0.009 +20190318, 0.46, 0.16, 0.34, 0.009 +20190319, -0.09, -0.38, -0.89, 0.009 +20190320, -0.39, -0.01, -0.99, 0.009 +20190321, 1.11, 0.25, -1.12, 0.009 +20190322, -2.17, -1.56, 0.06, 0.009 +20190325, -0.05, 0.65, -0.30, 0.009 +20190326, 0.76, 0.19, 0.43, 0.009 +20190327, -0.50, 0.09, 0.51, 0.009 +20190328, 0.40, 0.39, -0.10, 0.009 +20190329, 0.66, -0.26, -0.84, 0.009 +20190401, 1.19, -0.29, 0.96, 0.010 +20190402, -0.05, -0.14, -0.40, 0.010 +20190403, 0.27, 0.20, -0.37, 0.010 +20190404, 0.19, 0.21, 0.96, 0.010 +20190405, 0.52, 0.51, -0.01, 0.010 +20190408, 0.08, -0.30, 0.12, 0.010 +20190409, -0.65, -0.58, -0.08, 0.010 +20190410, 0.48, 0.94, -0.05, 0.010 +20190411, 0.00, -0.34, 0.43, 0.010 +20190412, 0.65, -0.53, 0.69, 0.010 +20190415, -0.09, -0.21, -0.59, 0.010 +20190416, 0.13, 0.14, 0.64, 0.010 +20190417, -0.32, -0.68, 0.77, 0.010 +20190418, 0.11, -0.26, -0.46, 0.010 +20190422, 0.11, -0.44, -0.55, 0.010 +20190423, 0.97, 0.73, -0.58, 0.010 +20190424, -0.23, 0.31, -0.22, 0.010 +20190425, -0.14, -0.70, -0.27, 0.010 +20190426, 0.53, 0.43, 0.05, 0.010 +20190429, 0.18, 0.12, 0.61, 0.010 +20190430, -0.04, -0.71, 0.27, 0.010 +20190501, -0.83, -0.10, -0.05, 0.009 +20190502, -0.16, 0.50, -0.48, 0.009 +20190503, 1.13, 0.95, -0.27, 0.009 +20190506, -0.39, 0.62, -0.45, 0.009 +20190507, -1.69, -0.30, 0.54, 0.009 +20190508, -0.21, -0.15, -0.30, 0.009 +20190509, -0.28, 0.08, 0.08, 0.009 +20190510, 0.35, -0.39, 0.11, 0.009 +20190513, -2.67, -0.75, 0.36, 0.009 +20190514, 0.93, 0.40, -0.03, 0.009 +20190515, 0.58, 0.04, -0.94, 0.009 +20190516, 0.91, -0.41, -0.24, 0.009 +20190517, -0.73, -0.82, 0.36, 0.009 +20190520, -0.65, -0.23, 0.78, 0.009 +20190521, 0.90, 0.42, -0.34, 0.009 +20190522, -0.40, -0.49, -0.63, 0.009 +20190523, -1.37, -0.71, -0.24, 0.009 +20190524, 0.23, 0.51, 0.29, 0.009 +20190528, -0.78, 0.26, -0.60, 0.009 +20190529, -0.71, -0.29, 0.44, 0.009 +20190530, 0.14, -0.28, -0.78, 0.009 +20190531, -1.37, -0.15, -0.22, 0.009 +20190603, -0.40, 0.40, 1.44, 0.009 +20190604, 2.33, 0.47, -0.16, 0.009 +20190605, 0.69, -1.01, -0.91, 0.009 +20190606, 0.55, -1.02, -0.01, 0.009 +20190607, 1.04, -0.01, -1.15, 0.009 +20190610, 0.53, 0.01, -0.07, 0.009 +20190611, -0.12, -0.26, 0.59, 0.009 +20190612, -0.20, 0.36, -0.89, 0.009 +20190613, 0.52, 0.66, -0.01, 0.009 +20190614, -0.27, -0.76, 0.31, 0.009 +20190617, 0.15, 0.61, -1.08, 0.009 +20190618, 1.04, 0.20, 0.19, 0.009 +20190619, 0.32, 0.11, -0.59, 0.009 +20190620, 0.89, -0.36, -0.23, 0.009 +20190621, -0.21, -0.46, -0.07, 0.009 +20190624, -0.34, -0.92, 0.15, 0.009 +20190625, -0.98, 0.34, 0.73, 0.009 +20190626, -0.06, -0.06, 0.23, 0.009 +20190627, 0.60, 1.42, -0.09, 0.009 +20190628, 0.68, 0.64, 0.60, 0.009 + +Copyright 2019 Kenneth R. French diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html new file mode 100644 index 0000000..9972cb0 --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html @@ -0,0 +1,3 @@ +

      + This tutorial implements a strategy that standardizes the unexpected earnings of stocks and trades the top 5% of those standardized stocks. It is written based on a paper published in The Accounting Review by Foster, Olsen, and Shevlin (1984). Our implementation narrows down our universe to 1000 liquid assets based on daily trading volume and price, and the availability of fundamental data on the stocks in our data library. We calculate the unexpected earnings at the beginning of each month, standardize the unexpected earnings, go long on the top 5%, and rebalance the portfolio monthly. We observed a Sharpe ratio of 0.83 relative to SPY Sharpe of 0.88 using this implementation during the period of December 1, 2009 to September 1, 2019 in backtesting. +

      \ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html b/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html new file mode 100644 index 0000000..0179e8b --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html @@ -0,0 +1,3 @@ +

      + In market efficiency literature, one frequently discussed topic is the anomalous behavior of stock returns following earnings announcements. The market does not adjust to news from earning announcements instantaneously. Instead, many studies report evidence that the direction and magnitude of returns in the post-earnings announcement period are positively correlated with the direction and magnitude of the unexpected component in the earnings releases. This observed phenomenon is consistent with suggestions that the capital market is inefficient. +

      \ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html new file mode 100644 index 0000000..a1b3ba6 --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html @@ -0,0 +1,125 @@ +

      + Unexpected earnings, or earnings surprise, is the difference between reported earnings and the expected earnings of a firm. Expected earnings is calculated using a combination of analyst forecasts and mathematical models based on earnings of previous periods. In this tutorial, we use standardized unexpected earnings (SUE) to measure earnings surprise. SUE's numerator is the change in quarterly earnings per share (EPS) from EPS four quarters ago. Its denominator is the standard deviation of a series of deltas each calculated by subtracting EPS at quarter q-4 from EPS at quarter q. It can be formulated as +

      + +\[ + SUE_q = \frac{ EPS_q - EPS_{q-4} }{ \sigma( EPS_q - EPS_{q-4} ) } +\] + +

      + where \(\sigma(X)\) is the standard deviation of X, EPS a firm's quarterly earnings per share, q the current quarter, and q-4 four quarters ago. Keep in mind that although we use quarterly EPS data, the portfolio rebalances monthly. Additionally, note that SUE's stock ranking changes month to month because each company's earnings announcement release date for the quarter differs (i.e., firm A's Q3 announcement may come out in August while firm B's Q3 announcement comes out in September). +

      + + +

      Step 1: Narrow down the universe with a coarse selection filter function

      + +

      + We use a coarse selection filter to narrow down the universe to 1000 stocks at the beginning of each month according to dollar volume, price and whether the stock has fundamental data in our data library. +

      + +
      + +
      def CoarseSelectionFunction(self, coarse):
      +    '''Get dynamic coarse universe to be further selected in fine selection
      +    '''
      +    # Before next rebalance time, keep the current universe unchanged
      +    if self.Time < self.next_rebalance:
      +        return Universe.Unchanged
      +        
      +    ### Run the coarse selection to narrow down the universe
      +    # Filter stocks by price and whether they have fundamental data
      +	# Then, sort descendingly by daily dollar volume
      +    sorted_by_volume = sorted([ x for x in coarse if x.HasFundamentalData and x.Price > 5 ],
      +                                key = lambda x: x.DollarVolume, reverse = True)
      +    self.new_fine = [ x.Symbol for x in sorted_by_volume[:self.num_coarse] ]
      +        
      +    # Return all symbols that have appeared in Coarse Selection
      +    return list( set(self.new_fine).union( set(self.eps_by_symbol.keys()) ) )
      +	
      +
      + +

      Step 2: Sort the universe by SUE and select the top 5%

      + +

      + Next we use a fine universe selection filter to extract quarterly EPS data and save it in a rolling window for each stock. We don't trade during the first 36-month warm-up period because the window is not ready yet. After the warm-up period, we can calculate quarterly EPS change from four quarters ago and the standard deviation of the change over the prior eight quarters using historical EPS data saved in the rolling windows. Then we sort the universe and assign the top 5% of symbols to self.long. +

      + + +
      + +
      def FineSelectionAndSueSorting(self, fine):
      +	'''Select symbols to trade based on sorting of SUE'''
      +	
      +	sue_by_symbol = dict()
      +	
      +	for stock in fine:
      +		
      +		### Save (symbol, rolling window of EPS) pair in dictionary
      +		if not stock.Symbol in self.eps_by_symbol:
      +			self.eps_by_symbol[stock.Symbol] = RollingWindow[float](self.months_count)
      +		# update rolling window for each stock
      +		self.eps_by_symbol[stock.Symbol].Add(stock.EarningReports.BasicEPS.ThreeMonths)
      +	
      +		### Calculate SUE
      +	
      +		if stock.Symbol in self.new_fine and self.eps_by_symbol[stock.Symbol].IsReady:
      +	
      +			# Calculate the EPS change from four quarters ago
      +			rw = self.eps_by_symbol[stock.Symbol]
      +			eps_change = rw[0] - rw[self.months_eps_change]
      +			
      +			# Calculate the st dev of EPS change for the prior eight quarters
      +			new_eps_list = list(rw)[:self.months_count - self.months_eps_change:3]
      +			old_eps_list = list(rw)[self.months_eps_change::3]
      +			eps_std = np.std( [ new_eps - old_eps for new_eps, old_eps in 
      +								zip( new_eps_list, old_eps_list )
      +							] )
      +			
      +			# Get Standardized Unexpected Earnings (SUE)
      +			sue_by_symbol[stock.Symbol] = eps_change / eps_std
      +	
      +	# Sort and return the top quantile
      +	sorted_dict = sorted(sue_by_symbol.items(), key = lambda x: x[1], reverse = True)
      +	
      +	self.long = [ x[0] for x in sorted_dict[:math.ceil( self.top_percent * len(sorted_dict) )] ]
      +	# If universe is empty, OnData will not be triggered, then update next rebalance time here
      +	if not self.long:
      +		self.next_rebalance = Expiry.EndOfMonth(self.Time)
      +	
      +	return self.long
      +	
      +
      + +

      Step 3: Form an equal-weighted portfolio and place orders

      + +

      + Once the symbols are selected, we form an equal-weighted portfolio and place orders. Finally, we update the next rebalance time to the beginning of the next calendar month. The portfolio will be held until liquidated at next rebalance time. +

      + + +
      + +
      def OnSecuritiesChanged(self, changes):
      +	'''Liquidate symbols that are removed from the dynamic universe
      +	'''
      +	for security in changes.RemovedSecurities:
      +		if security.Invested:
      +			self.Liquidate(security.Symbol, 'Removed from universe')        
      +	
      +
      +def OnData(self, data):
      +	'''Monthly rebalance at the beginning of each month. Form portfolio with equal weights.
      +	'''
      +	# Before next rebalance, do nothing
      +	if self.Time < self.next_rebalance or not self.long:
      +		return
      +	
      +	# Placing orders (with equal weights)
      +	equal_weight = 1 / len(self.long)
      +	for stock in self.long:
      +		self.SetHoldings(stock, equal_weight)
      +	
      +	# Rebalance at the beginning of every month
      +	self.next_rebalance = Expiry.EndOfMonth(self.Time)
      +	
      +
      \ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html new file mode 100644 index 0000000..291c81a --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html @@ -0,0 +1,10 @@ +

      + This tutorial shows that SEU is a valid indicator for earnings surprise, which can be used as a trading signal to follow post-earning announcement drifts. Our implementation generates a Sharpe ratio of 0.83 relative to SPY Sharpe ratio of 0.88. Interested users can build from this implementation by trying the following extensions: +

      + +
        +
      1. Using a more complicated measure for expected earnings to replace the historical EPS from four quarters ago. +
      2. Using different investment horizons such as 3 months, 6 months, 1 year. In a longer investment horizon of n months, each month’s decile will have n subdeciles, each of which is initiated in a different month in the prior n-month period. An example is a horizon of 6 months with each month having 6 subdeciles, each initiated in a different month in the prior 6-month period. +
      3. Importing custom data of analysts’ forecasts of firms’ earnings to replace the expected earnings based on historical EPS. +
      4. Selecting small-size companies and then trade based on SUE ranking, since studies suggest that post-earnings announcement is more significant for small-size companies than larger ones. +
      \ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html b/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html new file mode 100644 index 0000000..26f8e7e --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html @@ -0,0 +1,6 @@ +
      +
      +
      + +
      +
      \ No newline at end of file diff --git a/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html b/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html new file mode 100644 index 0000000..b138986 --- /dev/null +++ b/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html @@ -0,0 +1,8 @@ +
        +
      1. + Foster G, Olsen C, Shevlin T. Earnings releases, anomalies, and the behavior of security returns. Accounting Review. 1984 Oct 1:574-603 Online Copy +
      2. +
      3. + Hou K, Xue C, Zhang L. Replicating Anomalies. The Review of Financial Studies Online Copy +
      4. +
          diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html new file mode 100644 index 0000000..a095d84 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html @@ -0,0 +1,3 @@ +

          + In this tutorial we implement a correlation-adjusted time-series momentum strategy (TSMOM-CF) that addresses three weaknesses typically found in traditional time-series momentum strategies (TSMOM). Our implementation is based on the paper "Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations" by Nick Baltas and Robert Kosowski. We will also compare TSMOM-CF to the basic momentum strategy implemented in our strategy library - Momentum Effect in Commodities Futures. +

          \ No newline at end of file diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html new file mode 100644 index 0000000..2130e92 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html @@ -0,0 +1,16 @@ +

          + Baltas and Kosowski modify the basic momentum strategy by incorporating trend strength into the trading signal, using an efficient volatility estimator, and adding a dynamic leverage mechanism. The modifications overcome these three weaknesses: +

          + +
            +
          1. + An Oversimplified Trading Signal: The traditional time-series momentum strategy (TSMOM) results in high portfolio turnover which, after accounting for transaction costs, leads to diminished performance. Baltas and Kosowski attribute the traditional strategy's extreme long/short positions to an oversimplified trading signal whose values are a discrete +1 or -1. The traditional trading signal is based on the sign of the past 12-month average simple return. Baltas and Kosowski propose a trading signal with a continuous value between +1 and -1. Their signal is a statistical measure that reflects the strength of the price trend. +
          2. +
          3. + An Inefficient Volatility Estimator: The TSMOM generally scales asset positions using the estimated volatility of portfolio constituents. The traditional strategy's volatility estimator is the standard deviation of past daily close-to-close returns, which is subject to large estimation errors. Baltas and Kosowski demonstrate that a more efficient volatility estimator can significantly reduce portfolio turnover which, after taking into account transaction costs, boosts the portfolio performance. They present the Yang and Zhang volatility estimator, a range-based estimator that considers the open, high, low, and close prices of assets. The next section will discuss this estimator in greater detail. +
          4. +
          5. + A Fixed Portfolio Allocation Mechanism: The TSMOM does not consider the correlation between assets during portfolio construction. It simply allocates funds to each asset based on the properties of the individual assets. Strategies based on TSMOM significantly underperform in the post-2008 global financial crisis (GFC) period due to the increased level of asset co-movement at the time. As a remedy, Baltas and Kosowski introduce a dynamic leverage adjustment for the overall portfolio by adding a correlation factor to the weighting scheme. +
          6. +
          + diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html new file mode 100644 index 0000000..cff2f81 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html @@ -0,0 +1,99 @@ +

          +Baltas and Kosowski's modifications to the basic time-series momentum strategy can be summarized in the formula below: +

          + +\[r_{t,t+1}^{TSMOM-CF} = \frac{1}{N_t} \sum_{i=1}^{N_t} X_t^i \frac{\sigma_{P,tgt}}{\sigma_t^i} CF(\bar{\rho}_t)r_{t,t+1}^i\] + +

          + where: +

          +\[r_{t,t+1}^{TSMOM-CF} = \text{TSMOM-CF portfolio return from time t to time t+1}\] +\[N_t = \text{Number of portfolio constituents at time t}\] +\[X_t^i = \text{Trading signal value of asset i at time t}\] +\[\sigma_{P,tgt} = \text{Target level of volatility for the overall portfolio}\] +\[\sigma_t^i = \text{Estimated volatility of asset i at time t}\] +\[CF(\bar{\rho}_t) = \text{Correlation factor that adjusts the level of leverage applied to each portfolio constituents at time t}\] +\[r_{t,t+1}^i = \text{return of asset i from time t to time t+1}\] + +

          + The formula shows that the weights for each portfolio constituent are dependent on three parts: +

          + + +

          Part I: Trading Rule Adjustment (\(X_t^i\))

          + +

          +The TREND trading rule determines the trading signal based on the statistical strength of the realized return: +

          + + +\[ +\text{TREND}_i^{12M} \quad +\begin{cases} +1, \text{ if } t(r_{t-12,t})>+1 \\ +t(r_{t-12,t}), \text{ otherwise} \\ +-1, \text{ if } t(r_{t-12,t})<-1 \\ +\end{cases} +\] + +

          +where t() is the t-statistic of the daily futures log-returns over the past 12 months to scale the gross exposure to each portfolio constituents. +

          + +

          +When the absolute value of our t-statistic is greater than 1, the trend is highly statistically significant, so the strategy puts 100% exposure to the asset. When the t-statistic is between -1 and 1, the strength of the trend is not as significant, so the strategy scales its exposure to less than 100%. +

          + + +

          Part II: Yang and Zhang Volatility Estimato(\(\sigma_{YZ}\))

          +

          + Instead of estimating each asset's volatility as the standard deviation of past close-to-close daily logarithmic returns, Baltas and Kosowski adopt a more efficient volatility estimator proposed by Yang and Zhang (2000). The formula for the Yang and Zhang volatility estimator (\(\sigma_{YZ}\)) is shown below: +

          + +\[\sigma_{YZ}^2(t) = \sigma_{OJ}^2(t) + k \sigma_{SD}^2(t) + (1-k) \sigma_{RS}^2(t)\] + +

          + where: +

          + +\[\sigma_{OJ} = \text{Overnight jump estimator (standard deviation of close-to-open daily logarithmic returns)}\] +\[\sigma_{SD} = \text{Standard volatility estimator (standard deviation of close-to-close daily logarithmic returns)}\] +\[\sigma_{RS} = \text{Rogers and Satchell (1991) range estimator}\] +\[k = \text{parameter that minimizes YZ estimator variance, which is a function of the numbers of days in the estimation}\] + +

          +The formula for parameter k is below: +

          +\[k = \frac{0.34}{1.34+\frac{N_D+1}{N_D-1}}\] + +

          +The Rogers and Satchell range estimator calculation is based on the following formula: +

          + +\[\sigma_{RS}^2(\tau) = h(\tau)[h(\tau)-c(\tau)]+l(\tau)[l(\tau)-c(\tau)]\] + +

          + where \(h(\tau)\), \(l(\tau)\) and \(c(\tau)\) denote the logarithmic difference between the high, low and closing prices respectively with the opening price. The RS volatility of an asset at the end of month t, assuming a certain estimation period, is equal to the average daily RS volatility over this period. +

          + +

          +The estimation period is chosen to be 1 month, or 21 trading days, based on Baltas and Kosowski's suggestions. +

          + + +

          Part III: Correlation Factor (CF)

          +Baltas and Kosowski's correlation factor (CF) is a function of \(\bar{\rho}\), which is the average pairwise signed correlation of all portfolio constituents. The calculations are shown below: + +\[CF(\bar{\rho}) = \sqrt{\frac{N}{1+(N-1)\bar{\rho}}}\] +\[\bar{\rho} = 2 \frac{\sum_{i=1}^N \sum_{j=i+1}^N X_i X_j \rho_{i,j}}{N(N-1)}\] + +

          + where: +

          + +\[N = \text{number of assets in the portfolio}\] +\[\rho_{i,j} = \text{correlation between asset i, j}\] +\[X_i = \text{trade signal of asset i}\] +\[\bar{\rho} = \text{average pairwise signed correlation for the entire portfolio}\] + diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html new file mode 100644 index 0000000..2014718 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html @@ -0,0 +1,207 @@ +

          + The strategy requires the continuous futures contract, so we import the custom data from Quandl. We manually create a universe of tradable commodity futures from all available commodity futures traded on CME and ICE. They are all liquid and active continuous contracts #1. The data from Quandl are non-adjusted price based on spot-month continuous contract calculations. The data resolution is daily. +

          + + +

          Step 1: Import the data

          + +
          +
          +from QuantConnect.Python import PythonQuandl
          +class ImprovedCommodityMomentumTrading(QCAlgorithm):
          +	def Initialize(self):
          +		for ticker in tickers:
          +			data = self.AddData(QuandlFutures, ticker, Resolution.Daily)
          +			data.SetLeverage(3) # Leverage was set to 3 for each of the futures contract
          +class QuandlFutures(PythonQuandl):
          +    def __init__(self):
          +        self.ValueColumnName = "Settle"
          +
          +
          + + + +

          Step 2: Set the portfolio target volatility and decide rebalance schedule

          +
          +
          +def Initialize(self):
          +	# Last trading date tracker to achieve rebalancing the portfolio every month
          +    self.nextRebalance = self.Time
          +
          +	# Set portfolio target level of volatility, set to 12% 
          +	self.portfolio_target_sigma = 0.12
          +
          +
          + +

          Step 3: Implement functions to calculate the three components of Baltas and Kosowski weights

          +

          1. TREND Trade Signal

          +
          +
          +def GetTradingSignal(self, history):
          +	'''
          +	TREND Trading Signal
          +	- Uses the t-statistics of historical daily log-returns to reflect the strength of price movement trend
          +	- TREND Signal Conditions:
          +		t-stat > 1 => TREND Signal = 1
          +		t-stat < 1 => TREND Signal = -1
          +		-1 < t-stat < 1 => TREND Signal = t-stat
          +	'''
          +	settle = history.settle.unstack(level = 0)
          +
          +	# daily futures log-returns based on close-to-close
          +	log_returns = np.log(settle/settle.shift(1)).dropna()
          +
          +	# Calculate the t-statistics as
          +	# (mean-0)/(stdev/sqrt(n)), where n is sample size
          +	mean = np.mean(log_returns)
          +	std = np.std(log_returns)
          +	n = len(log_returns)
          +	t_stat = mean/(std/np.sqrt(n))
          +
          +	# cap holding at 1 and -1
          +	return np.clip(t_stat, a_max=1, a_min=-1)
          +
          +
          + +

          2. Yang and Zhang Volatility Estimator

          +
          +
          +def GetYZVolatility(self, history, available_symbols):
          +	'''
          +	Yang and Zhang 'Drift-Independent Volatility Estimation'
          +	
          +	Formula: sigma_YZ^2 = sigma_OJ^2 + self.k * sigma_SD^2 + (1-self.k)*sigma_RS^2 (Equation 20 in [1])
          +		where,  sigma_OJ - (Overnight Jump Volitility estimator)
          +				sigma_SD - (Standard Volitility estimator)
          +				sigma_RS - (Rogers and Satchell Range Volatility estimator)'''
          +	YZ_volatility = []
          +
          +	time_index = history.loc[available_symbols[0]].index
          +	today = time_index[-1]
          +
          +	#Calculate YZ volatility for each security and append to list
          +	for ticker in available_symbols:
          +	    past_month_ohlc = history.loc[ticker].loc[today-timedelta(self.OneMonth):today]
          +	    open, high, low, close = past_month_ohlc.open, past_month_ohlc.high, past_month_ohlc.low, past_month_ohlc.settle
          +	    estimation_period = past_month_ohlc.shape[0]
          +
          +	    # Calculate constant parameter k for Yang and Zhang volatility estimator
          +	    # using the formula found in Yang and Zhang (2000)
          +	    k = 0.34 / (1.34 + (estimation_period + 1) / (estimation_period - 1))
          +
          +	    # sigma_OJ (overnight jump => stdev of close-to-open log returns)
          +	    open_to_close_log_returns = np.log(open/close.shift(1))
          +	    open_to_close_log_returns = open_to_close_log_returns[np.isfinite(open_to_close_log_returns)] 
          +	    sigma_OJ = np.std(open_to_close_log_returns) 
          +
          +	    # sigma_SD (standard deviation of close-to-close log returns)
          +	    close_to_close_log_returns = np.log(close/close.shift(1))
          +	    close_to_close_log_returns = close_to_close_log_returns[np.isfinite(close_to_close_log_returns)]
          +	    sigma_SD = np.std(close_to_close_log_returns) 
          +
          +	    # sigma_RS (Rogers and Satchell (1991))
          +	    h = np.log(high/open)
          +	    l = np.log(low/open)
          +	    c = np.log(close/open)
          +	    sigma_RS_daily = (h * (h - c) + l * (l - c))**0.5
          +	    sigma_RS_daily = sigma_RS_daily[np.isfinite(sigma_RS_daily)] 
          +	    sigma_RS = np.mean(sigma_RS_daily) 
          +		
          +	    # daily Yang and Zhang volatility
          +	    sigma_YZ = np.sqrt(sigma_OJ**2 + k * sigma_SD**2 + (1 - k) * sigma_RS**2) 
          +
          +	    # append annualized volatility to the list
          +	    YZ_volatility.append(sigma_YZ*np.sqrt(252)) 
          +
          +	return YZ_volatility
          +
          +
          + +

          3. Correlation Factor (CF)

          +
          +
          +def GetCorrelationFactor(self, history, trade_signals, available_symbols):
          +	'''
          +	Calculate the Correlation Factor, which is a function of the average pairwise correlation of all portfolio contituents
          +	- the calculation is based on past three month pairwise correlation
          +	- Notations:
          +	    rho_bar - average pairwise correlation of all portfolio constituents
          +	    CF_rho_bar - the correlation factor as a function of rho_bar'''
          +
          +	# Get the past three month simple daily returns for all securities
          +	settle = history.settle.unstack(level = 0)
          +	past_three_month_returns = settle.pct_change().loc[settle.index[-1]-timedelta(self.ThreeMonths):]
          +
          +	# Get number of assets 
          +	N_assets = len(available_symbols)
          +	
          +	# Get the pairwise signed correlation matrix for all assets
          +	correlation_matrix = past_three_month_returns.corr() 
          +
          +	# Calculate rho_bar
          +	summation = 0
          +	for i in range(N_assets-1):
          +	    for temp in range(N_assets - 1 - i):
          +		    j = i + temp + 1
          +		    x_i = trade_signals[i]
          +		    x_j = trade_signals[j]
          +		    rho_i_j = correlation_matrix.iloc[i,j]
          +		    summation += x_i * x_j * rho_i_j
          +			
          +	# Equation 14 in [1]
          +	rho_bar = (2 * summation) / (N_assets * (N_assets - 1)) 
          +
          +	# Calculate the correlation factor (CF_rho_bar)
          +	# Equation 18 in [1]
          +	return np.sqrt(N_assets / (1 + (N_assets - 1) * rho_bar)) 
          +
          +
          + +

          Step 4: Construct/Rebalance the Portfolio

          +

          +For efficiency purposes, a History() request is called once on each rebalance date to get all the data from the past year for all securities. We retrieve our trade signal, Yang and Zhang volatility, and correlation factor by passing the history data frame to each respective function. +

          + +
          +
          +def OnData(self, data):
          +	'''
          +	Monthly rebalance at the beginning of each month.
          +	Portfolio weights for each constituents are calculated based on Baltas and Kosowski weights.
          +	'''
          +
          +	# skip if less than 30 days passed since the last trading date
          +	if self.Time < self.nextRebalance:
          +		return
          +
          +	'''Monthly Rebalance Execution'''
          +	# dataframe that contains the historical data for all securities
          +	history = self.History(self.Securities.Keys, self.OneYear, Resolution.Daily)
          +	history.replace(0, np.nan, inplace = True)
          +
          +	# Get the security symbols are are in the history dataframe
          +	available_symbols = list(set(history.index.get_level_values(level = 0)))
          +
          +	# Liquidate symbols that are not in the history dataframe anymore
          +	for security in self.Securities.Keys:
          +		if security.Value not in available_symbols:
          +			self.Liquidate(security, 'Not found in history request')
          +
          +	# Get the trade signals and YZ volatility for all securities
          +	trade_signals = self.GetTradingSignal(history) 
          +	volatility = self.GetYZVolatility(history, available_symbols) 
          +	
          +	# Get the correlation factor
          +	CF_rho_bar = self.GetCorrelationFactor(history, trade_signals, available_symbols)
          +
          +	#Rebalance the portfolio according to Baltas and Kosowski suggested weights
          +	N_assets = len(available_symbols)
          +	for symbol, signal, vol in zip(available_symbols, trade_signals, volatility):
          +		# Baltas and Kosowski weights (Equation 19 in [1])
          +		weight = (signal*self.portfolio_target_sigma*CF_rho_bar)/(N_assets*vol)
          +		self.SetHoldings(symbol, weight)
          +
          +	# Set next rebalance time
          +	self.nextRebalance = Expiry.EndOfMonth(self.Time)
          +
          +
          diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html new file mode 100644 index 0000000..572eb95 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html @@ -0,0 +1,3 @@ +

          +The implementation of TSMOM-CF in the post-GFC period, January 2018 to September 2019, shows significant performance improvement over the basic TSMOM. The backtest of TSMOM-CF produces Sharpe ratio of 0.321, compared to TSMOM's Sharpe ratio of -0.746 and SPY Sharpe ratio of 0.46. The exact TSMOM algorithm can be found in the strategy library. +

          \ No newline at end of file diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html new file mode 100644 index 0000000..6eebbb0 --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html @@ -0,0 +1,6 @@ +
          +
          +
          + +
          +
          diff --git a/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html new file mode 100644 index 0000000..5a494dd --- /dev/null +++ b/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html @@ -0,0 +1,8 @@ +
            +
          1. + Baltas, Nick & Kosowski, Robert. (2017). Demystifying Time-Series Momentum Strategies: Volatility Estimators, Trading Rules and Pairwise Correlations. SSRN Electronic Journal. 10.2139/ssrn.2140091. Online Copy +
          2. +
          3. + Yang, Dennis & Zhang, Qiang. (2000). Drift-Independent Volatility Estimation Based on High, Low, Open, and Close Prices. The Journal of Business, 73(3), 477-492. doi:10.1086/209650. Online Copy +
          4. +
              \ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html b/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html new file mode 100644 index 0000000..46860f0 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html @@ -0,0 +1,3 @@ +

              + In this tutorial we implement a trend following strategy on commodities futures based on a 2014 paper "Two Centuries Of Trend Following" by Y. Lempérière, C. Deremble, P. Seager, M. Potters, and J. P. Bouchaud. +

              \ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html b/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html new file mode 100644 index 0000000..21ba8d1 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html @@ -0,0 +1,21 @@ +

              +The paper highlights the existence of trends as an anomaly that contradicts the efficient market hypothesis. If financial markets are completely efficient as the hypothesis suggests, then asset price changes should be totally unpredictable. In other words, no systematic excess return based on public information should exist since asset prices ought to reflect all public information available. However observationally, trend existence in the market do exist. They make it possible to use the simple trend following strategy which states, buy when prices goes up and sell when prices goes down. Numerous academic studies have demonstrated that trend following strategies generate persistent returns over long periods of time. +

              + +

              +The paper extends the backtest period of trend following strategies to two centuries and demonstrates statistically significant systematic excess returns on four asset classes (commodities, currencies, stock indices, and bonds). It implements a risk managed strategy that buys or sells a quantity of \(\sigma_n^{-1}\) of the underlying contract depending on the sign of \(s_n\). +

              + +

              +The signal \(s_n(t)\) at the beginning of month t is: +

              + +\[s_n(t) = \frac{p(t-1)-\text{<}p\text{>}_{n,t-1}}{\sigma_n(t-1)}\] + +

              +where \(\text{<}p\text{>}_{n,t-1}\) is last month's exponential moving average of past prices with a decay rate equal to n months,\(p(t-1)\) is the price of last month, and \(\sigma_n(t-1)\) is last month's volatility, estimated as the exponential moving average of the absolute monthly price changes, with a decay rate equal to n months. The decay rate was set to 5 months. +

              + +

              +Below, we will implement the above monthly-rebalanced trend following strategy on commodities futures. +

              \ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html new file mode 100644 index 0000000..6e8e094 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html @@ -0,0 +1,123 @@ +

              + The strategy requires the continuous futures contract, so we import the custom data from Quandl. We manually create a universe of tradable commodity futures. They are all liquid and active continuous contracts #1. The data from Quandl are non-adjusted price based on spot-month continuous contract calculations. The data resolution is daily. +

              + + +

              Step 1: Import futures data from Quandl

              + +

              +The paper selected a well-balanced commodities pool to include 7 representative contracts: Crude oil, Henry Hub Natural Gas, Corn, Wheat, Super, Live Cattle and Copper. We will add continuous futures data of these contracts from Quandl. This implementation performs a backtest on 20 years as opposed to 200 years of data for the purpose of comparing to benchmark SPY. +

              + +
              +
              +from QuantConnect.Python import PythonQuandl
              +class ImprovedCommodityMomentumTrading(QCAlgorithm):
              +	def Initialize(self):
              +		tickers = ["CHRIS/CME_W1",  # Wheat Futures, Continuous Contract #1
              +                   "CHRIS/CME_C1",  # Corn Futures, Continuous Contract #1
              +                   "CHRIS/CME_LC1", # Live Cattle Futures, Continuous Contract #1 
              +                   "CHRIS/CME_CL1",  # Crude Oil Futures, Continuous Contract #1
              +                   "CHRIS/CME_NG1",  # Natural Gas (Henry Hub) Physical Futures, Continuous Contract #1
              +                   "CHRIS/LIFFE_W1", # White Sugar Future, Continuous Contract #1
              +                   "CHRIS/CME_HG1"] # Copper Futures, Continuous Contract #1
              +		for ticker in tickers:
              +			data = self.AddData(QuandlFutures, ticker, Resolution.Daily)
              +			data.SetLeverage(3) 
              +class QuandlFutures(PythonQuandl):
              +    def __init__(self):
              +        self.ValueColumnName = "Settle"
              +
              +
              + + + +

              Step 2: Create a SymbolData class to store and update the number of contracts to trade for each security

              + +

              +In Initialize(), we create a dictionary to store the SymbolData object for each security. The strategy is designed to trade monthly, so we will create a monthly consolidator for each security as well. When a new monthly data becomes available, the consolidator calls an event handler CalendarHandler. Within this event handler, we will update the SymbolData object with the freshly received monthly data. +

              +
              +
              +def Initialize(self):                   
              +	# Container to store the SymbolData object for each security
              +	self.Data = {}
              +	
              +	for ticker in tickers:
              +		# Add Quandl data and set desired leverage
              +		data = self.AddData(QuandlFutures, ticker, Resolution.Daily)
              +		data.SetLeverage(3) 
              +		
              +		# Create a monthly consolidator for each security
              +		self.Consolidate(ticker, CalendarType.Monthly, self.CalendarHandler)
              +		
              +		# Create a SymbolData object for each security to store relevant indicators 
              +		# and calculate quantity of contracts to Buy/Sell
              +		self.Data[data.Symbol] = SymbolData()
              +def CalendarHandler(self, bar):
              +	'''
              +	Event Handler that updates the SymbolData object for each security when a new monthly bar becomes available
              +	'''
              +	self.Data[bar.Symbol].Update(bar)
              +
              +
              + +

              +The SymbolData class is designed to contain everything we need for calculating how many contracts to Buy/Sell at the beginning of each month. LEAN provides helpful indicators to get the exponential moving average and momentum indicators. The Introduction section above detailed the formula for calculating the number of contracts to Buy/Sell. We implement the formula in the Update function. +

              + +
              +
              +class SymbolData:
              +    '''
              +    Contains the relevant indicators used to calculate number of contracts to Buy/Sell
              +    '''
              +    def __init__(self):
              +        self.ema = ExponentialMovingAverage("MonthEMA", 5)
              +
              +        # Volatility estimation is defined as the EMA of absolute monthly price changes
              +        # Use Momentum indicator to get absolute monthly price changes. 
              +        # Then use the IndicatorExtensions.EMA and pass the momentum indicator values to get the volatility
              +        self.mom = Momentum("MonthMOM", 1)
              +        # Note: self.vol will automatically be updated with self.mom
              +        self.vol = IndicatorExtensions.EMA(self.mom, 5)
              +
              +        self.Quantity = 0
              +
              +
              +    def Update(self, bar):
              +        self.ema.Update(bar.Time, bar.Value)
              +        self.mom.Update(bar.Time, bar.Value)
              +        
              +        if self.ema.IsReady and self.vol.IsReady:
              +            # Equation 1 in [1]
              +            signal = (bar.Value - self.ema.Current.Value) / self.vol.Current.Value
              +            # Equation 2 in [1]
              +            self.Quantity = np.sign(signal)/abs(self.vol.Current.Value)
              +
              +        return self.Quantity != 0
              +
              +
              + +

              Step 3: Buy and Sell at the beginning of each month

              +

              +Now we’ll place orders based on the quantity of contracts calculated from previous month stored in the SymbolData object. Note that we warm up the algorithm with 150 days of data to allow the algorithm to execute trades on the start date. +

              + +
              +
              +def OnData(self, data):
              +        '''
              +        Buy/Sell security every month
              +        '''
              +        if self.Time < self.nextRebalance or self.IsWarmingUp:
              +            return
              +
              +        for symbol in data.Keys:
              +            symbolData = self.Data[symbol]
              +            if symbolData.Quantity != 0:
              +                self.MarketOrder(symbol, symbolData.Quantity)
              +
              +        self.nextRebalance = Expiry.EndOfMonth(self.Time)
              +
              +
              \ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html new file mode 100644 index 0000000..363d402 --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html @@ -0,0 +1,7 @@ +

              +For the backtest period (January 1998 to September 2019), the trend following strategy produced a Sharpe ratio of 0.266, compared to SPY’s Sharpe ratio of 0.459. The positive performance of the trend-following strategy over the approximately 20-year time horizon indeed suggests the existence of statistically significant, anomalous, systematic, excess returns from trends. Furthermore, the paper suggests the anomaly is universal across 3 other asset classes (currencies, stock indices and bonds). +

              + +

              +This tutorial demonstrates trends as one of the most powerful sources of anomalous excess returns in financial markets. We hope to inspire the community to develop more trend-based strategies and encourage you to test out this strategy on other asset classes from the original paper. +

              \ No newline at end of file diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html new file mode 100644 index 0000000..c56a62c --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html @@ -0,0 +1,6 @@ +
              +
              +
              + +
              +
              diff --git a/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html b/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html new file mode 100644 index 0000000..cb5636b --- /dev/null +++ b/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html @@ -0,0 +1,5 @@ +
                +
              1. + Y. Lempérière, C. Deremble, P. Seager, M. Potters, J. P. Bouchaud (2014). Two centuries of trend following. Online Copy +
              2. +
                  \ No newline at end of file diff --git a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 Introduction.html b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 Introduction.html new file mode 100644 index 0000000..654173f --- /dev/null +++ b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 Introduction.html @@ -0,0 +1,4 @@ +

                  + Growth stocks refer to high-quality, successful companies whose earnings are expected to continue growing at an above-average rate relative to the market. + Growth stocks generally have high price-to-earnings (P/E) ratios and high price-to-book(P/B) ratios. At times, growth stocks are considered expensive and overvalued. The value stocks refer to stocks which have high dividend payout ratios or low financial ratios such as P/E ratios and P/B ratios. The value stocks are often considered undervalued by the market. This algorithm will create the long-short positions based on the relation between investor sentiment and the performance of value stocks over growth stocks. +

                  diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..c26b591 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,3 @@ +

                  + 成长型股票指的是高质量、成功的公司,它们的盈利预期将继续以高于市场平均水平的速度增长。成长型股票通常具有高市盈率(P/E)和高市净率(P/B)。有时,成长型股票被认为价格过高。价值型股票是指股息率高或财务比率(如市盈率和市净率)低的股票。价值型股票通常会被市场低估。此算法将基于投资者情绪和价值型股票相对于成长型股票表现之间的关系来建立多空头寸。 +

                  diff --git a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 Method.html b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 Method.html new file mode 100644 index 0000000..a29b638 --- /dev/null +++ b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 Method.html @@ -0,0 +1,129 @@ +

                  The measure of investment sentiment

                  +

                  + To measure investors' sentiment, we use gauges: the CBOE equity put-call ratio and the market volatility (VIX) index. + The VIX index is constructed using the implied volatilities on S&P 500 index options and shows the market's expectation of 30-day volatility. + The CBOE equity put-call ratio is calculated by dividing the trading volume of CBOE equity put options by the trading volume of CBOE equity call options. + A rising put-call ratio means equity traders are buying more puts than calls and indicates a bearish sentiment in the market while a falling put-call ratio + is considered as the bullish market sentiment. +

                  +

                  + We import the daily VIX data from Quandl. CBOE provides the volume put-call ratio data from 11-01-2006 to present so we import the custom data from CBOE. +

                  +
                  +
                  +class SentimentAndStyleRotationAlgorithm(QCAlgorithm):
                  +  def Initialize(self):
                  +      self.SetStartDate(2010, 1, 1)
                  +      self.SetEndDate(2018, 7, 1)
                  +      self.SetCash(100000)
                  +      self.AddData(QuandlVix, "CBOE/VIX", Resolution.Daily)
                  +      self.AddData(CBOE, "PutCallRatio", Resolution.Daily)
                  +
                  +class QuandlVix(PythonQuandl):
                  +    '''Quandl VIX data class'''
                  +    def __init__(self):
                  +        self.ValueColumnName = "VIX Close"
                  +
                  +class CBOE(PythonData):
                  +    '''Cboe Equity Volume Put/Call Ratios (11-01-2006 to present) Custom Data Class'''
                  +    def GetSource(self, config, date, isLiveMode):
                  +        return SubscriptionDataSource("http://www.cboe.com/publish/scheduledtask/mktdata/datahouse/equitypc.csv", SubscriptionTransportMedium.RemoteFile)
                  +
                  +    def Reader(self, config, line, date, isLiveMode):
                  +        if not (line.strip() and line[0].isdigit()): return None
                  +        index = CBOE()
                  +        index.Symbol = config.Symbol
                  +
                  +        try:
                  +            # Example File Format:
                  +            # DATE       CALL      PUT       TOTAL      P/C Ratio
                  +            # 11/1/06    976510    623929    1600439    0.64
                  +            data = line.split(',')
                  +            index.Time = datetime.strptime(data[0], "%m/%d/%Y").strftime("%Y-%m-%d")
                  +            index.Value = Decimal(data[4])
                  +
                  +        except ValueError:
                  +                return None
                  +
                  +        return index
                  +
                  +
                  +

                  The Measure of the Growth and Value Stocks

                  +

                  + All stocks on NYSE and NASDAQ are used as the investment universe. In CoarseSelectionFunction, we eliminate ETFs which don't have fundamental data. + In FineSelectionFunction, stocks are sorted into deciles based on a size measure - market capitalization. We use only the first three size deciles + for the algorithm to avoid potential problems with small illiquid stocks. +

                  +
                  +
                  +def FineSelectionFunction(self, fine):
                  +    if self.month_start:
                  +        self.selection = True
                  +
                  +        fine = [i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths>0
                  +                                and i.EarningReports.BasicEPS.TwelveMonths>0
                  +                                and i.ValuationRatios.PERatio>0
                  +                                and i.ValuationRatios.PBRatio>0]
                  +        # Calculate the market cap and add the "MakretCap" property to fine universe object
                  +        for i in fine:
                  +            i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
                  +        # sort fine object by MarketCap
                  +        sotrted_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)
                  +        decile_top1 = sotrted_market_cap[:floor(len(sotrted_market_cap)/10)]
                  +        decile_top2 = sotrted_market_cap[floor(len(sotrted_market_cap)/10):floor(len(sotrted_market_cap)*2/10)]
                  +        decile_top3 = sotrted_market_cap[floor(len(sotrted_market_cap)*2/10):floor(len(sotrted_market_cap)*3/10)]
                  +
                  +
                  +

                  + In the next step, we subdivide each size decile into five portfolios based on the P/B ratio. For each of the first three size deciles, the value portfolio consists of all firms included in the quintile with the lowest P/B ratio, and the growth portfolio consists stocks with the highest P/B ratio. +

                  +
                  +
                  +sorted_PB1 = sorted(decile_top1, key = lambda x: x.ValuationRatios.PBRatio)
                  +sorted_PB2 = sorted(decile_top2, key = lambda x: x.ValuationRatios.PBRatio)
                  +sorted_PB3 = sorted(decile_top3, key = lambda x: x.ValuationRatios.PBRatio)
                  +# The value portfolio consists of all firms included in the quintile with the lowest P/B ratio
                  +PB_bottom1 = sorted_PB1[:floor(len(decile_top1)/5)]
                  +PB_bottom2 = sorted_PB2[:floor(len(decile_top2)/5)]
                  +PB_bottom3 = sorted_PB3[:floor(len(decile_top3)/5)]
                  +self.value_portfolio = [i.Symbol for i in PB_bottom1 + PB_bottom2 + PB_bottom3]
                  +# The growth portfolio consists of all firms included in the quintile with the highest P/B ratio
                  +PB_top1 = sorted_PB1[-floor(len(decile_top1)/5):]
                  +PB_top2 = sorted_PB2[-floor(len(decile_top2)/5):]
                  +PB_top3 = sorted_PB3[-floor(len(decile_top3)/5):]
                  +self.growth_portfolio = [i.Symbol for i in PB_top1 + PB_top2 + PB_top3]
                  +
                  +
                  + +

                  The Relation Between Investor Sentiment and Equity Style

                  +

                  + According to the research paper from Lee and Song, When Do Value Stocks Outperform Growth Stocks?: Investor Sentiment and Equity Style Rotation Strategies, + value stocks tend to outperform growth stocks when the CBOE equity put-call ratio is relatively low, and the VIX is relatively high. The value portfolio significantly underperforms the growth portfolio when the put-call ratio and VIX are both high. + To convert the daily put-call ratio and VIX data into monthly value, we take an average over the recent one month and the previous six months. +

                  +

                  + If the recent monthly average CBOE put-call ratio is lower than its six-month average and the one-month average of VIX is higher than its six-month average, the algorithm goes long on an equally weighted portfolio consisting of value stocks (the lowest P/B quintile) from the top three size deciles. If recent monthly average CBOE put-call ratio and the VIX index are both higher than their six-month average, the algorithm goes short the value stocks. + Otherwise, the algorithm goes long both value stocks and growth stocks. The position holding period is three months, and the portfolio is rebalanced every three months. +

                  +
                  +
                  +stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
                  +for i in stocks_invested:
                  +    if i not in self.value_portfolio+self.growth_portfolio:
                  +        self.Liquidate(i)
                  +
                  +if self.vix_SMA_1.Current.Value > self.vix_SMA_6.Current.Value:
                  +    if self.PCRatio_SMA_1.Current.Value < self.PCRatio_SMA_6.Current.Value:
                  +        long_weight = 1/len(self.value_portfolio)
                  +        for long in self.value_portfolio:
                  +            self.SetHoldings(long, long_weight)
                  +    elif self.PCRatio_SMA_1.Current.Value > self.PCRatio_SMA_6.Current.Value:
                  +        short_weight = 1/len(self.value_portfolio)
                  +        for short in self.value_portfolio:
                  +            self.SetHoldings(short, -short_weight)
                  +else:
                  +    long_weight = 1/len(self.value_portfolio+self.growth_portfolio)
                  +    for long in self.value_portfolio+self.growth_portfolio:
                  +        self.SetHoldings(long, long_weight)
                  +
                  +
                  diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..3104b1b --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,120 @@ +

                  投资情绪的测量

                  +

                  + 要衡量投资者的情绪,我们使用的指标是:芝加哥期权交易所(CBOE)的股票看跌/看涨比率和市场波动率(VIX)指数。VIX指数是利用标准普尔500指数期权的隐含波动率构建的,它显示了市场对30天波动率的预期。芝加哥期权交易所(CBOE) 股票看跌/看涨比率的计算方法是将芝加哥期权交易所股票看跌期权的交易量除以芝加哥期权交易所股票看涨期权的交易量。看跌/看涨期权比率上升,意味着股票交易员买入的看跌期权多于看涨期权,表明市场人气看跌,而看跌/看涨比率下降则被视为市场人气上涨。 +

                  +

                  + 我们从Quandl导入每日波动率数据。CBOE提供了从2006年11月1日到现在的成交量看跌/看涨比率数据,因此我们从CBOE导入自定义数据。 +

                  +
                  +
                  +class SentimentAndStyleRotationAlgorithm(QCAlgorithm):
                  +  def Initialize(self):
                  +      self.SetStartDate(2010, 1, 1)
                  +      self.SetEndDate(2018, 7, 1)
                  +      self.SetCash(100000)
                  +      self.AddData(QuandlVix, "CBOE/VIX", Resolution.Daily)
                  +      self.AddData(CBOE, "PutCallRatio", Resolution.Daily)
                  +
                  +class QuandlVix(PythonQuandl):
                  +    '''Quandl VIX data class'''
                  +    def __init__(self):
                  +        self.ValueColumnName = "VIX Close"
                  +
                  +class CBOE(PythonData):
                  +    '''Cboe Equity Volume Put/Call Ratios (11-01-2006 to present) Custom Data Class'''
                  +    def GetSource(self, config, date, isLiveMode):
                  +        return SubscriptionDataSource("http://www.cboe.com/publish/scheduledtask/mktdata/datahouse/equitypc.csv", SubscriptionTransportMedium.RemoteFile)
                  +
                  +    def Reader(self, config, line, date, isLiveMode):
                  +        if not (line.strip() and line[0].isdigit()): return None
                  +        index = CBOE()
                  +        index.Symbol = config.Symbol
                  +
                  +        try:
                  +            # 示例文件格式:
                  +            # 日期        看涨      看跌       合计      看跌/看涨比率
                  +            # 11/1/06    976510    623929    1600439    0.64
                  +            data = line.split(',')
                  +            index.Time = datetime.strptime(data[0], "%m/%d/%Y").strftime("%Y-%m-%d")
                  +            index.Value = Decimal(data[4])
                  +
                  +        except ValueError:
                  +                return None
                  +
                  +        return index
                  +
                  +
                  +

                  股票增长和价值的衡量

                  +

                  + 纽交所和纳斯达克的所有股票都被用作投资集合。在CoarseSelectionFunction中,我们剔除了没有基本数据的基金。在FineSelectionFunction中,股票根据市值大小被分成十等分。我们的算法只使用前百分之三十来避免小型非流动性股票的潜在问题。 +

                  +
                  +
                  +def FineSelectionFunction(self, fine):
                  +    if self.month_start:
                  +        self.selection = True
                  +
                  +        fine = [i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths>0
                  +                                and i.EarningReports.BasicEPS.TwelveMonths>0
                  +                                and i.ValuationRatios.PERatio>0
                  +                                and i.ValuationRatios.PBRatio>0]
                  +        # 计算市场价值并将“市值”属性添加到精细集合对象中
                  +        for i in fine:
                  +            i.MarketCap = float(i.EarningReports.BasicAverageShares.ThreeMonths * (i.EarningReports.BasicEPS.TwelveMonths*i.ValuationRatios.PERatio))
                  +        # 根据市值对精细对象分类
                  +        sotrted_market_cap = sorted(fine, key = lambda x:x.MarketCap, reverse=True)
                  +        decile_top1 = sotrted_market_cap[:floor(len(sotrted_market_cap)/10)]
                  +        decile_top2 = sotrted_market_cap[floor(len(sotrted_market_cap)/10):floor(len(sotrted_market_cap)*2/10)]
                  +        decile_top3 = sotrted_market_cap[floor(len(sotrted_market_cap)*2/10):floor(len(sotrted_market_cap)*3/10)]
                  +
                  +
                  +

                  + 在接下来的步骤中,我们根据市净率将十等分中的每一份再细分为五个投资组合。对于前百分之三十的股票,价值型投资组合由市净率最低的五分之一公司组成,而成长型投资组合则由市净率最高的股票组成。 +

                  +
                  +
                  +sorted_PB1 = sorted(decile_top1, key = lambda x: x.ValuationRatios.PBRatio)
                  +sorted_PB2 = sorted(decile_top2, key = lambda x: x.ValuationRatios.PBRatio)
                  +sorted_PB3 = sorted(decile_top3, key = lambda x: x.ValuationRatios.PBRatio)
                  +# 价值型投资组合由市净率最低的五分之一公司组成
                  +PB_bottom1 = sorted_PB1[:floor(len(decile_top1)/5)]
                  +PB_bottom2 = sorted_PB2[:floor(len(decile_top2)/5)]
                  +PB_bottom3 = sorted_PB3[:floor(len(decile_top3)/5)]
                  +self.value_portfolio = [i.Symbol for i in PB_bottom1 + PB_bottom2 + PB_bottom3]
                  +# 成长型投资组合由市净率最高的五分之一公司组成
                  +PB_top1 = sorted_PB1[-floor(len(decile_top1)/5):]
                  +PB_top2 = sorted_PB2[-floor(len(decile_top2)/5):]
                  +PB_top3 = sorted_PB3[-floor(len(decile_top3)/5):]
                  +self.growth_portfolio = [i.Symbol for i in PB_top1 + PB_top2 + PB_top3]
                  +
                  +
                  + +

                  投资者情绪和股票风格之间的关系

                  +

                  + 根据Lee和Song的研究论文《When Do Value Stocks Outperform Growth Stocks?: Investor Sentiment and Equity Style Rotation Strategies》,当芝加哥期权交易所股票看跌/看涨比率相对较低,并且波动率指数相对较高时,价值型股票的表现往往优于成长型股票。当看跌/看涨比率和波动率指数均较高时,价值组合的表现明显要逊于成长型投资组合。要将每日看跌/看涨比率和波动率数据转换为月度数值,我们取最近一个月和前六个月的平均值。 +

                  +

                  + 如果最近芝加哥期权交易所的月平均看跌/看涨比率低于6个月平均水平,而波动率指数(VIX)的一个月平均水平高于6个月平均水平,那么该算法就会做多由排名前百分之三十价值股(市净率最低的五分之一)组成的平均加权投资组合。如果最近芝加哥期权交易所的月平均看跌/看涨比率和VIX指数均高于6个月平均水平,该算法就会做空价值股。否则,该算法既做多价值型股票,也做多成长型股票。持仓期为三个月,投资组合每三个月重新平衡一次。 +

                  +
                  +
                  +stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
                  +for i in stocks_invested:
                  +    if i not in self.value_portfolio+self.growth_portfolio:
                  +        self.Liquidate(i)
                  +
                  +if self.vix_SMA_1.Current.Value > self.vix_SMA_6.Current.Value:
                  +    if self.PCRatio_SMA_1.Current.Value < self.PCRatio_SMA_6.Current.Value:
                  +        long_weight = 1/len(self.value_portfolio)
                  +        for long in self.value_portfolio:
                  +            self.SetHoldings(long, long_weight)
                  +    elif self.PCRatio_SMA_1.Current.Value > self.PCRatio_SMA_6.Current.Value:
                  +        short_weight = 1/len(self.value_portfolio)
                  +        for short in self.value_portfolio:
                  +            self.SetHoldings(short, -short_weight)
                  +else:
                  +    long_weight = 1/len(self.value_portfolio+self.growth_portfolio)
                  +    for long in self.value_portfolio+self.growth_portfolio:
                  +        self.SetHoldings(long, long_weight)
                  +
                  +
                  diff --git a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html new file mode 100644 index 0000000..cff2414 --- /dev/null +++ b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..cff2414 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 Source.html b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 Source.html new file mode 100644 index 0000000..d965226 --- /dev/null +++ b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git "a/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..d965226 --- /dev/null +++ "b/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/37 Momentum and State of Market Filters/01 Introduction.html b/04 Strategy Library/37 Momentum and State of Market Filters/01 Introduction.html new file mode 100644 index 0000000..4d5fa7a --- /dev/null +++ b/04 Strategy Library/37 Momentum and State of Market Filters/01 Introduction.html @@ -0,0 +1,7 @@ +

                  + The momentum effect states that what was strongly going up in the near past will probably continue to go up shortly. It is one of the most used trading anomalies, but the strategy using only the momentum can suffer significant drawdowns sometimes. + + Some research papers show that the return of momentum strategies depend on the overall market conditions. + This state of the market can be defined in various ways like the investors' sentiment, prior market returns and so on. + Therefore, this algorithm will combine the momentum effect with the market state filter to turn off the momentum trading in down market state times. +

                  diff --git a/04 Strategy Library/37 Momentum and State of Market Filters/02 Method.html b/04 Strategy Library/37 Momentum and State of Market Filters/02 Method.html new file mode 100644 index 0000000..31414d9 --- /dev/null +++ b/04 Strategy Library/37 Momentum and State of Market Filters/02 Method.html @@ -0,0 +1,114 @@ +

                  + As we know, a stock market index tracks the price changes of a select group of stocks and compiles those stock price changes into a single value. + For example, S&P500 is composed of only 500 large-cap stocks. A broad market index is characterized by including stocks from companies of all sizes(large, mid and small-cap based on their values). + The most popular U.S. broad market indexes include the Russell 3000, the Wilshire 5000 Total Market Index and the MSCI U.S. Broad Market Index. Those broad-based market indexes attempt to cover the entire market + and their return can be a good benchmark of the current market state. +

                  +
                  +
                  +class MomentumandStateofMarkeFiltersAlgorithm(QCAlgorithm):
                  +    def Initialize(self):
                  +        self.SetStartDate(2011, 1, 1)
                  +        self.SetEndDate(2018, 1, 1)
                  +        self.SetCash(100000)
                  +        # add Wilshire 5000 Total Market Index data from Dropbox
                  +        self.AddData(Wilshire5000, "W5000", Resolution.Daily)
                  +        # calculate the index yearly return
                  +        self.W5000Return = self.ROC("W5000", 252)
                  +        # initialize the RateOfChange indicator of Wilshire 5000 total market index
                  +        history = self.History(["W5000"], 500, Resolution.Daily)
                  +        for tuple in history.loc["W5000"].itertuples():
                  +            self.W5000Return.Update(tuple.Index, tuple.value)
                  +
                  +
                  +

                  + In this algorithm, we choose the Wilshire 5000 Total Market Index to be the market state measure. For the period of index return, longer horizons should capture more dramatic changes in the state of the market, but longer horizons also reduce the number of observations of changes in the market's state. Here we choose 12 months return according to the paper Market States and Momentum from Guttierez, Cooper and Hameed. + The daily index price comes from the Yahoo Finance. +

                  +
                  +
                  +class Wilshire5000(PythonData):
                  +    "Class to import Wilshire 5000 Total Market Index data from Dropbox"
                  +
                  +    def GetSource(self, config, date, isLiveMode):
                  +        return SubscriptionDataSource("https://www.dropbox.com/s/z9rof4fr9cqzgpt/W5000.csv?dl=1",
                  +                                      SubscriptionTransportMedium.RemoteFile)
                  +    def Reader(self, config, line, date, isLiveMode):
                  +        if not (line.strip() and line[1].isdigit()): return None
                  +        index = Wilshire5000()
                  +        index.Symbol = config.Symbol
                  +        try:
                  +            # Example File Format: (Data starts from 01/04/2010)
                  +            # Date    Open         High         Low          Close        Adj Close    Volume
                  +            # 1/4/10  11549.13965  11749.37012  11549.13965  11743.54004  11743.54004  0
                  +            data = line.split(',')
                  +            index.Time = datetime.strptime(data[0], "%Y-%m-%d")
                  +            index.Value = Decimal(data[5])
                  +        except:
                  +            return None
                  +        return index
                  +
                  +
                  + +

                  + The investment universe contains all stocks on NYSE and NASDAQ with a price higher than $1. We use the momentum indicator to gauge the momentum effect. + In CoarseSelectionFunction, the MOM indicator value for each symbol in coarse is updated with the adjusted price and saved in the dictionary self.mom. +

                  +
                  +
                  +def CoarseSelectionFunction(self, coarse):
                  +    coarse = [x for x in coarse if (x.HasFundamentalData and x.AdjustedPrice > 1)]
                  +    for i in coarse:
                  +        if i.Symbol not in self.mom:
                  +            self.mom[i.Symbol] = SymbolData(i.Symbol, self.lookback)
                  +        self.mom[i.Symbol].MOM.Update(self.Time, i.AdjustedPrice)
                  +
                  +
                  +

                  + When the indicator is ready, stocks are then sorted based on the previous six months momentum value. + Top 20 Stocks with the highest MOM are in the long stock list, 20 Stocks with the lowest MOM are in the short stock list. +

                  +
                  +
                  +self.MOMReady = {symbol: SymbolData for symbol, SymbolData in self.mom.items() if SymbolData.MOM.IsReady}
                  +if self.MOMReady:
                  +    # sort stocks by 6 months' momentum
                  +    sortByMOM = sorted(self.MOMReady, key = lambda x: self.MOMReady[x].MOM.Current.Value, reverse = True)
                  +    self.long = sortByMOM[:20]
                  +    self.short = sortByMOM[-20:]
                  +    return self.long+self.short
                  +
                  +
                  + +

                  + The strategy is rebalanced monthly. At the beginning of each month, we identify the state of the market. + If the market’s one-year return is positive, we define the state of the market as "UP" otherwise the state is "DOWN". + When the market is in "UP" state, we go long on the previous six-month winners (highest Momentum) and goes short on the last six-month losers (lowest Momentum). + Stocks are equally weighted. If the market is in "DOWN" state, we liquidate all asset holdings and invest in the long-term Treasury bond ETF to control the downside risk. +

                  +
                  +
                  +def OnData(self, data):
                  +    if self.month_start and self.selection:
                  +        self.month_start = False
                  +        self.selection = False
                  +        if self.long is None or self.short is None: return
                  +        # if the previous 12 months return on the broad equity market was positive
                  +        if self.W5000Return.Current.Value > 0:
                  +            stocks_invested = [x.Key for x in self.Portfolio if x.Value.Invested]
                  +            for i in stocks_invested:
                  +                if i not in self.long+self.short:
                  +                    self.Liquidate(i)
                  +            short_weight = 0.5/len(self.short)
                  +            # goes short on the prior six-month losers (lowest decile)
                  +            for short_symbol in self.short:
                  +                self.SetHoldings(short_symbol, -short_weight)
                  +            # goes long on the prior six-month winners (highest decile)
                  +            long_weight = 0.5/len(self.long)
                  +            for long_symbol in self.long:
                  +                self.SetHoldings(long_symbol, long_weight)
                  +        else:
                  +            self.Liquidate()
                  +            self.SetHoldings(self.tlt, 1)
                  +
                  +
                  diff --git a/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html b/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html new file mode 100644 index 0000000..926770b --- /dev/null +++ b/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/37 Momentum and State of Market Filters/04 Source.html b/04 Strategy Library/37 Momentum and State of Market Filters/04 Source.html new file mode 100644 index 0000000..ad4f813 --- /dev/null +++ b/04 Strategy Library/37 Momentum and State of Market Filters/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/38 Accrual Anomaly/01 Introduction.html b/04 Strategy Library/38 Accrual Anomaly/01 Introduction.html new file mode 100644 index 0000000..3979090 --- /dev/null +++ b/04 Strategy Library/38 Accrual Anomaly/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + Accrual anomaly is based upon the reasoning that it is important to measure if a company's earnings are based on real cash inflow or on revenue recognition from questionable accounting practices. Since companies with lower levels of accruals have more certain real earnings, they should earn higher market returns. This strategy will take a long position in low accrual companies and a short position in high accrual accompanies. It is important to note that this strategy requires fundamental data from the current and past year in order to perform its analysis. As a result, it won't be implementable in live trading at this time. +

                  \ No newline at end of file diff --git a/04 Strategy Library/38 Accrual Anomaly/02 Method.html b/04 Strategy Library/38 Accrual Anomaly/02 Method.html new file mode 100644 index 0000000..e800787 --- /dev/null +++ b/04 Strategy Library/38 Accrual Anomaly/02 Method.html @@ -0,0 +1,69 @@ +

                  + The first step is coarse and fine universe selection. Using coarse selection, we create an investment universe with stocks that have fundamental data. The universes will be saved so that we can perform analysis on the annual changes of specific balance sheet data in the following year. +

                  +
                  +
                  + def CoarseSelectionFunction(self, coarse):
                  +        if self.yearly_rebalance:
                  +            self.filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)
                  +                                                            and (x.Market == "usa")]
                  +            return self.filtered_coarse
                  +        else: 
                  +            return []      
                  +    
                  +def FineSelectionFunction(self, fine):
                  +    if self.yearly_rebalance:
                  +        fine = [x for x in fine if (float(x.FinancialStatements.BalanceSheet.CurrentAssets.Value) > 0) 
                  +                                and (float(x.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value) > 0)
                  +                               and (float(x.FinancialStatements.BalanceSheet.CurrentLiabilities.Value) > 0)
                  +                                and (float(x.FinancialStatements.BalanceSheet.CurrentDebt.Value) > 0)
                  +                                and (float(x.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value) > 0)
                  +                                and (float(x.FinancialStatements.IncomeStatement.DepreciationAndAmortization.Value) > 0)]
                  +        
                  +        if not self.previous_fine:
                  +            self.previous_fine = fine
                  +            self.yearly_rebalance = False
                  +            return []
                  +        else:
                  +            self.filtered_fine = self.CalculateAccruals(fine,self.previous_fine)
                  +            sorted_filter = sorted(self.filtered_fine, key=lambda x: x.bs_acc)
                  +            self.filtered_fine = [i.Symbol for i in sorted_filter]
                  +            self.previous_fine = fine
                  +            return self.filtered_fine
                  +    else:
                  +        return []
                  +
                  +
                  +

                  + During fine universe selection we take the stocks from the previous and current year and calculate their balance sheet based accrual values. The stocks are then sorted in ascending order based upon the implemented formula. Note that we account for size difference across the sample firms by scaling the accruals by the average of the beginning and end-of-year book value of total assets. +

                  +
                  +
                  + def CalculateAccruals(self, current, previous):
                  +    accruals = []
                  +    for stock_data in current:
                  +        try:
                  +            prev_data = None
                  +            for x in previous:
                  +                if x.Symbol == stock_data.Symbol:
                  +                    prev_data = x
                  +                    break
                  +            
                  +            delta_assets = float(stock_data.FinancialStatements.BalanceSheet.CurrentAssets.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentAssets.Value)
                  +            delta_cash = float(stock_data.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value)-float(prev_data.FinancialStatements.BalanceSheet.CashAndCashEquivalents.Value)
                  +            delta_liabilities = float(stock_data.FinancialStatements.BalanceSheet.CurrentLiabilities.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentLiabilities.Value)
                  +            delta_debt = float(stock_data.FinancialStatements.BalanceSheet.CurrentDebt.Value)-float(prev_data.FinancialStatements.BalanceSheet.CurrentDebt.Value)
                  +            delta_tax = float(stock_data.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value)-float(prev_data.FinancialStatements.BalanceSheet.IncomeTaxPayable.Value)
                  +            dep = float(stock_data.FinancialStatements.IncomeStatement.DepreciationAndAmortization.Value)
                  +            avg_total = (float(stock_data.FinancialStatements.BalanceSheet.TotalAssets.Value)+float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value))/2
                  +
                  +            stock_data.bs_acc = ((delta_assets-delta_cash)-(delta_liabilities-delta_debt-delta_tax)-dep)/avg_total
                  +            accruals.append(stock_data)
                  +        except:
                  +            pass
                  +    return accruals
                  +
                  +
                  +

                  + In OnData(), we short top decile of the stocks in the sorted list and long the bottom decile of stocks. The portfolio is rebalanced every year at the start of June. +

                  diff --git a/04 Strategy Library/38 Accrual Anomaly/03 Algorithm.html b/04 Strategy Library/38 Accrual Anomaly/03 Algorithm.html new file mode 100644 index 0000000..0ed7669 --- /dev/null +++ b/04 Strategy Library/38 Accrual Anomaly/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/38 Accrual Anomaly/04 Source.html b/04 Strategy Library/38 Accrual Anomaly/04 Source.html new file mode 100644 index 0000000..623fba7 --- /dev/null +++ b/04 Strategy Library/38 Accrual Anomaly/04 Source.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/39 Asset Growth Effect/01 Introduction.html b/04 Strategy Library/39 Asset Growth Effect/01 Introduction.html new file mode 100644 index 0000000..f9177b2 --- /dev/null +++ b/04 Strategy Library/39 Asset Growth Effect/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + The asset growth effect is based upon the reasoning that high asset growth stocks underperform stocks with low asset growth. Some papers suggest that the return premium achieved by low asset growth stocks is consistent with the compensation for risk. There are two popular arguments to suggest this return premium. One arguments is that as firms grow, the asset mix of the firm becomes less risky as assets-in-place displace the value of assets the firm's expected to invest in the future. The second argument is that there is a systematic market mispricing of growing businesses due to the extrapolation of past gains to growth for high asset growth companies. +

                  +

                  + This strategy will take a long position in low asset growth companies, and a short position in high asset growth accompanies. It is important to note that this strategy requires fundamental data from the current and past year to perform its analysis. As a result, this strategy would need a year in live trading to determine signals. +

                  \ No newline at end of file diff --git "a/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" new file mode 100644 index 0000000..69d32c7 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/01 \347\256\200\344\273\213.cn.html" @@ -0,0 +1,6 @@ +

                  + 资产增长效基于高资产增长股票的表现弱于低资产增长股票。一些研究认为,低资产成长型股票的收益溢价与风险补偿是一致的。有两种流行的观点支持这种回报溢价。一种观点是,随着公司的成长,公司的资产组合风险会降低,因为现有资产取代了公司未来预期投资的资产价值。第二种观点是,由于将过去的收益推断为高资产成长型企业的增长,导致了对成长型企业的系统性市场定价错误。 +

                  +

                  + 这一策略将在低资产增长型公司做多,同时在高资产增长的公司做空。值得注意的是,这一策略需要根据当前和过去一年的基本数据来进行分析。因此,这种策略需要一年的实时交易时间来确定信号。 +

                  \ No newline at end of file diff --git a/04 Strategy Library/39 Asset Growth Effect/02 Method.html b/04 Strategy Library/39 Asset Growth Effect/02 Method.html new file mode 100644 index 0000000..0335c63 --- /dev/null +++ b/04 Strategy Library/39 Asset Growth Effect/02 Method.html @@ -0,0 +1,57 @@ +

                  + The first step is coarse and fine universe selection. Using coarse selection, we create an investment universe with all non-financial U.S. stocks listed on NYSE, AMEX, and NASDAQ that contain fundamental data. The universes will be saved so that we can perform analysis on the annual changes of the total assets in the following year. +

                  +
                  +
                  +def CoarseSelectionFunction(self, coarse):
                  +        if self.yearly_rebalance:
                  +            filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)
                  +                                                            and (x.Market == "usa")]
                  +            return filtered_coarse
                  +        else: 
                  +            return []
                  +
                  +def FineSelectionFunction(self, fine):
                  +    if self.yearly_rebalance:
                  +        fine = [x for x in fine if x.FinancialStatements.BalanceSheet.TotalAssets.Value > 0
                  +                and ((x.SecurityReference.ExchangeId == "NYS") or (x.SecurityReference.ExchangeId == "NAS") or (x.SecurityReference.ExchangeId == "ASE"))
                  +                and (x.CompanyReference.IndustryTemplateCode!="B")
                  +                and (x.CompanyReference.IndustryTemplateCode!="I")]
                  +        if not self.previous_fine:
                  +            self.previous_fine = fine
                  +            self.yearly_rebalance = False
                  +            return []
                  +        else:
                  +            self.filtered_fine = self.Calculate(fine,self.previous_fine)
                  +            sorted_filter = sorted(self.filtered_fine, key=lambda x: x.delta_assets)
                  +            self.filtered_fine = [i.Symbol for i in sorted_filter]
                  +            self.previous_fine = fine
                  +            return self.filtered_fine
                  +    else:
                  +        return []
                  +
                  +
                  +

                  + During fine universe selection we take the stocks from the previous and current year and calculate their total asset growth. The stocks are then sorted in ascending order based upon the implemented calculation. Note that we account for size difference across the sample firms by scaling the growth by last year's total assets. +

                  +
                  +
                  +def Calculate(self, current, previous):
                  +        growth = []
                  +        for stock_data in current:
                  +            try:
                  +                prev_data = None
                  +                for x in previous:
                  +                    if x.Symbol == stock_data.Symbol:
                  +                        prev_data = x
                  +                        break
                  +                stock_data.delta_assets = (float(stock_data.FinancialStatements.BalanceSheet.TotalAssets.Value)-float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value))/float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value) 
                  +                growth.append(stock_data)
                  +            except:
                  +                pass
                  +        return growth
                  +
                  +
                  +

                  + In OnData(), we short top decile of the stocks in the sorted list and long the bottom decile of stocks. The portfolio is rebalanced every year at the end of June. +

                  diff --git "a/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" new file mode 100644 index 0000000..983e337 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/02 \346\226\271\346\263\225.cn.html" @@ -0,0 +1,57 @@ +

                  + 第一步是粗略和精细集合选择。通过粗选,我们创建了一个包含所有在纽交所、美国证券交易所和纳斯达克上市的非金融类美国股票的投资领域,这些股票都包含基本数据。这一集合将被保存下来,这样我们就可以对下一年中总资产的年度变化进行分析。 +

                  +
                  +
                  +def CoarseSelectionFunction(self, coarse):
                  +        if self.yearly_rebalance:
                  +            filtered_coarse = [x.Symbol for x in coarse if (x.HasFundamentalData)
                  +                                                            and (x.Market == "usa")]
                  +            return filtered_coarse
                  +        else: 
                  +            return []
                  +
                  +def FineSelectionFunction(self, fine):
                  +    if self.yearly_rebalance:
                  +        fine = [x for x in fine if x.FinancialStatements.BalanceSheet.TotalAssets.Value > 0
                  +                and ((x.SecurityReference.ExchangeId == "NYS") or (x.SecurityReference.ExchangeId == "NAS") or (x.SecurityReference.ExchangeId == "ASE"))
                  +                and (x.CompanyReference.IndustryTemplateCode!="B")
                  +                and (x.CompanyReference.IndustryTemplateCode!="I")]
                  +        if not self.previous_fine:
                  +            self.previous_fine = fine
                  +            self.yearly_rebalance = False
                  +            return []
                  +        else:
                  +            self.filtered_fine = self.Calculate(fine,self.previous_fine)
                  +            sorted_filter = sorted(self.filtered_fine, key=lambda x: x.delta_assets)
                  +            self.filtered_fine = [i.Symbol for i in sorted_filter]
                  +            self.previous_fine = fine
                  +            return self.filtered_fine
                  +    else:
                  +        return []
                  +
                  +
                  +

                  + 在精细集合选择中,我们从上一年和当年的股票中计算出它们的总资产增长。然后根据采用的计算按照升序对股票进行排序。要注意的是,我们通过去年总资产的增长比例来计算样本公司之间的规模差异。 +

                  +
                  +
                  +def Calculate(self, current, previous):
                  +        growth = []
                  +        for stock_data in current:
                  +            try:
                  +                prev_data = None
                  +                for x in previous:
                  +                    if x.Symbol == stock_data.Symbol:
                  +                        prev_data = x
                  +                        break
                  +                stock_data.delta_assets = (float(stock_data.FinancialStatements.BalanceSheet.TotalAssets.Value)-float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value))/float(prev_data.FinancialStatements.BalanceSheet.TotalAssets.Value) 
                  +                growth.append(stock_data)
                  +            except:
                  +                pass
                  +        return growth
                  +
                  +
                  +

                  + 在OnData()中,我们做空排序列表中前百分之十的股票,做多后百分之十的股票。投资组合每年会在6月底重新调整。 +

                  diff --git a/04 Strategy Library/39 Asset Growth Effect/03 Algorithm.html b/04 Strategy Library/39 Asset Growth Effect/03 Algorithm.html new file mode 100644 index 0000000..04cf1c1 --- /dev/null +++ b/04 Strategy Library/39 Asset Growth Effect/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git "a/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" new file mode 100644 index 0000000..04cf1c1 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/03 \347\256\227\346\263\225.cn.html" @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/39 Asset Growth Effect/04 Source.html b/04 Strategy Library/39 Asset Growth Effect/04 Source.html new file mode 100644 index 0000000..a9d5834 --- /dev/null +++ b/04 Strategy Library/39 Asset Growth Effect/04 Source.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git "a/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" "b/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" new file mode 100644 index 0000000..a9d5834 --- /dev/null +++ "b/04 Strategy Library/39 Asset Growth Effect/04 \346\235\245\346\272\220.cn.html" @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/04 Strategy Library/40 Pairs Trading with Country ETFs/01 Introduction.html b/04 Strategy Library/40 Pairs Trading with Country ETFs/01 Introduction.html new file mode 100644 index 0000000..f9bd0fd --- /dev/null +++ b/04 Strategy Library/40 Pairs Trading with Country ETFs/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + Pairs trading is a non-directional, market-neutral trading strategy which seeks to identify the price divergence from two highly correlated assets. + Pairs trading assumes the co-movement and the mean reversion of two asset prices. It indicates that the price of selected assets + tend to move together, and when they diverge, we can exploit the investment opportunity by taking a market neutral position as we assume their price will tend to move back to the average price over time. + In this algorithm, we use a large family of international exchange-traded funds(ETFs) to examine the performance of the pairs trading strategy. +

                  diff --git a/04 Strategy Library/40 Pairs Trading with Country ETFs/02 Method.html b/04 Strategy Library/40 Pairs Trading with Country ETFs/02 Method.html new file mode 100644 index 0000000..8a84d14 --- /dev/null +++ b/04 Strategy Library/40 Pairs Trading with Country ETFs/02 Method.html @@ -0,0 +1,69 @@ +

                  The selection of pairs

                  +

                  + The investment universe consists of 25 international ETFs. The pair selection is based on a rolling time period called the formation period. + During each formation period, we save the history closing price of each ETF. Here we use a Python list-like container calleddeque to keep a fixed-length price series. From these prices, we compute normalized cumulative price indices which are comparable across the ETFs in the group. + According to the paper Pairs Trading on International ETFs from Panagiotis, Dimitrios and Tao, + here the formation period is 120 days. +

                  +\[R_t^n=\prod_{1}^{t}(1+r_t^n) \ \ \ for \ \ \ t=1,2,...,120 \] +\[r_t^n=\frac{P_t}{P_{t-1}}-1\] +

                  + Where \(r_t^n\) is the simple return of the n-th ETF. \(R_t^n\) is the index value. +

                  +

                  + For each formation period, we compute the average absolute distance among all pairs in the group and + then rank the distances from the smallest to largest to identify the trading opportunities. + The top 5 pairs with the smallest distance are used in the subsequent 20 day trading period. + The definition of distance is +

                  +\[D_t^{a,b}=\frac{1}{120}\sum_{t+1}^{t+120}\mid P_t^a-P_t^b\mid \ for \ all\ pairs \ a,b \] +
                  +
                  +  class Pair:
                  +      def __init__(self, symbol_a, symbol_b, price_a, price_b):
                  +          self.symbol_a = symbol_a
                  +          self.symbol_b = symbol_b
                  +          self.price_a = np.array(price_a)
                  +          self.price_b = np.array(price_b)
                  +          # compute normalized cumulative price indices
                  +          self.index_a = np.cumprod(self.price_a[1:]/self.price_a[:-1])
                  +          self.index_b = np.cumprod(self.price_b[1:]/self.price_b[:-1])
                  +
                  +      def distance(self):
                  +          return 1/120*sum(abs(self.index_a -self.index_b))
                  +
                  +
                  + +

                  The Definition of Divergence

                  +

                  + Now we consider the top 5 pairs. For each of the one month trading period, we compute the 120-day normalized cumulative price indices and compare them to a fraction of the distance value \(D_t^{a,b}\) for each pair (a,b). Assume the threshold is 0.5, if the index value of asset A is greater than asset B by 0.5 times the current distance \(D_t^{a,b}\), + then we sell asset A and buy asset B. The quantity of A and B is based on the dollar neutral. We invest the same amount of money in the long leg and the short leg, vice versa if the index value of asset B is greater than asset A by 0.5 times the distance. When the difference between index A and index B falls into the range \(\left(-0.5D_t^{a,b},0.5D_t^{a,b}\right)\), + we liquidate the pair. The above procedure is repeated for all top 5 pairs. At the start of next month, the new pairs are selected and trade for next month. +

                  +
                  +
                  +for i in self.sorted_pairs:
                  +    pair = Pair(i[0], i[1], self.history_price[i[0].Value],  self.history_price[i[1].Value])
                  +    index_a = pair.index_a[-1]
                  +    index_b = pair.index_b[-1]
                  +    delta = pair.distance()
                  +    if index_a - index_b > self.threshold*delta:
                  +        if not self.Portfolio[pair.symbol_a].Invested and not self.Portfolio[pair.symbol_b].Invested:
                  +            ratio = self.Portfolio[pair.symbol_a].Price / self.Portfolio[pair.symbol_b].Price
                  +            quantity = int(self.CalculateOrderQuantity(pair.symbol_a, 0.2))
                  +            self.Sell(pair.symbol_a, quantity)
                  +            self.Buy(pair.symbol_b,  floor(ratio*quantity))
                  +
                  +    elif index_a - index_b < -self.threshold*delta:
                  +        if not self.Portfolio[pair.symbol_a].Invested and not self.Portfolio[pair.symbol_b].Invested:
                  +            ratio = self.Portfolio[pair.symbol_b].Price / self.Portfolio[pair.symbol_a].Price
                  +            quantity = int(self.CalculateOrderQuantity(pair.symbol_b, 0.2))
                  +            self.Sell(pair.symbol_b, quantity)
                  +            self.Buy(pair.symbol_a, floor(ratio*quantity))
                  +
                  +    # the position is closed when prices revert back
                  +    elif self.Portfolio[i[0]].Invested and self.Portfolio[i[1]].Invested:
                  +            self.Liquidate(pair.symbol_a)
                  +            self.Liquidate(pair.symbol_b)
                  +
                  +
                  diff --git a/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html b/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html new file mode 100644 index 0000000..36343ed --- /dev/null +++ b/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/40 Pairs Trading with Country ETFs/04 Source.html b/04 Strategy Library/40 Pairs Trading with Country ETFs/04 Source.html new file mode 100644 index 0000000..e9da602 --- /dev/null +++ b/04 Strategy Library/40 Pairs Trading with Country ETFs/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/58 VIX Predicts Stock Index Returns/01 Introduction.html b/04 Strategy Library/58 VIX Predicts Stock Index Returns/01 Introduction.html new file mode 100644 index 0000000..a519011 --- /dev/null +++ b/04 Strategy Library/58 VIX Predicts Stock Index Returns/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + VIX index is the weighted average of the implied volatilities computed from a total of eight near-the-money, nearby and second nearby American option contracts on the underlying S&P100 index. The index is calculated on an intraday basis by the CBOE. + The extreme levels of the VIX index are a strong indicator of equity index returns. + One could anticipate that the higher the fear in the markets, indicated by the VIX index, the higher the subsequent returns on the broad equity index. + In this algorithm, we will explore if VIX index is the forward-looking indicator of future stock index returns. +

                  diff --git a/04 Strategy Library/58 VIX Predicts Stock Index Returns/02 Method.html b/04 Strategy Library/58 VIX Predicts Stock Index Returns/02 Method.html new file mode 100644 index 0000000..3564d32 --- /dev/null +++ b/04 Strategy Library/58 VIX Predicts Stock Index Returns/02 Method.html @@ -0,0 +1,49 @@ +

                  + To assess if the implied volatility turns out to be relevant trading signals for + long and short positions, we must first define what we mean by large or small implied volatility levels. + At any given time, we create 20 equally spaced percentiles for the history close price of VIX in the last two years. + By 20 equally spaced percentiles, it means the 5%, 10%, . . . , 95% percentiles. Then the current VIX index price is compared to these percentiles and ranked accordingly. +

                  +

                  + We import the daily VIX data from Quandl. The correspondent stock index is S&P100 index. We use the iShares S&P 100 ETF OEF + In the first step, we create a rolling window to save the history VIX price. The history request is used to initialize the rolling window. +

                  +
                  +
                  +def Initialize(self):
                  +    self.SetStartDate(2006, 1, 1)
                  +    self.SetEndDate(2018, 8, 1)
                  +    self.SetCash(100000)
                  +    self.AddEquity("OEF", Resolution.Daily)
                  +    self.vix = 'CBOE/VIX'
                  +    self.AddData(QuandlVix, self.vix, Resolution.Daily)
                  +    self.window = RollingWindow[float](252*2)
                  +    hist = self.History([self.vix], 1000, Resolution.Daily)
                  +    for close in hist.loc[self.vix]['vix close']:
                  +        self.window.Add(close)
                  +
                  +class QuandlVix(PythonQuandl):
                  +    def __init__(self):
                  +        self.ValueColumnName = "VIX Close"
                  +
                  +
                  + +

                  + The rolling past 2-year history of the VIX index is then split to create 20 equally spaced percentiles. + The algorithm goes long on the equity index if the VIX index on the current day is higher than on any other day during the rolling 2-year window or if the VIX index value is in the highest 2 percentile boxes. + If the VIX index on the current day is lower than on any other day during the rolling 2-year window or if the VIX index value is in the lowest two percentile boxes. The algorithm goes short on the equity index. +

                  +
                  +
                  +def OnData(self, data):
                  +    if not data.ContainsKey(self.vix): return
                  +    self.window.Add(self.Securities[self.vix].Price)
                  +    if not self.window.IsReady: return
                  +    history_close = [i for i in self.window]
                  +
                  +    if self.Securities[self.vix].Price > np.percentile(history_close, 90):
                  +        self.SetHoldings("OEF", 1)
                  +    elif self.Securities[self.vix].Price < np.percentile(history_close, 10):
                  +        self.SetHoldings("OEF", -1)
                  +
                  +
                  diff --git a/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html b/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html new file mode 100644 index 0000000..529a2d1 --- /dev/null +++ b/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/58 VIX Predicts Stock Index Returns/04 Source.html b/04 Strategy Library/58 VIX Predicts Stock Index Returns/04 Source.html new file mode 100644 index 0000000..1afea81 --- /dev/null +++ b/04 Strategy Library/58 VIX Predicts Stock Index Returns/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/61 Lunar Cycle in Equity Market/01 Introduction.html b/04 Strategy Library/61 Lunar Cycle in Equity Market/01 Introduction.html new file mode 100644 index 0000000..49a362d --- /dev/null +++ b/04 Strategy Library/61 Lunar Cycle in Equity Market/01 Introduction.html @@ -0,0 +1,8 @@ +

                  + The lunar phase is the shape of the direct sunlight portion of the Moon as viewed from Earth. + The lunar phases gradually and cyclically change over the period of a month. + Lunar phases have proven effects on human biology and psychology. + Investors are subject to various psychological and behavioral biases and mood fluctuations. + Therefore if lunar phases affect mood, by extension, these phases may affect investor behavior and thus asset prices. + This tutorial we will build an algorithm based upon the Moon phase. +

                  diff --git a/04 Strategy Library/61 Lunar Cycle in Equity Market/02 Method.html b/04 Strategy Library/61 Lunar Cycle in Equity Market/02 Method.html new file mode 100644 index 0000000..450d0cf --- /dev/null +++ b/04 Strategy Library/61 Lunar Cycle in Equity Market/02 Method.html @@ -0,0 +1,65 @@ +

                  + The lunar calendar data is obtained from the United States Naval Observatory (USNO) website. We import the custom data as a CSV file. + The four phases of the lunar cycle are New Moon, First Quarter, Full Moon and Last Quarter. They are in string format in the data file so + we convert the string names to numbers as New Moon(0), First Quarter(1), Full Moon(2) and Last Quarter(3). +

                  +
                  +
                  +class MoonPhase(PythonData):
                  +    "Class to import Phases of the Moon data from Dropbox"
                  +
                  +    def GetSource(self, config, date, isLiveMode):
                  +        return SubscriptionDataSource("https://www.dropbox.com/s/q9rt06tpfjlvymt/MoonPhase.csv?dl=1", SubscriptionTransportMedium.RemoteFile)
                  +
                  +    def Reader(self, config, line, date, isLiveMode):
                  +        index = MoonPhase()
                  +        index.Symbol = config.Symbol
                  +        try:
                  +            # Example File Format: (Data starts from 01/07/2004)
                  +            # date                 phase
                  +            # 2004 Jan 07 15:40    Full Moon
                  +            data = line.split(',')
                  +            if data[0] == "date": return None
                  +            index.Time = datetime.strptime(data[0], "%Y %b %d %H:%M").replace(hour=0, minute=0)
                  +            if data[1] == "New Moon":
                  +                index.Value = 0
                  +            elif data[1] == "First Quarter":
                  +                index.Value = 1
                  +            elif data[1] == "Full Moon":
                  +                index.Value = 2
                  +            elif data[1] == "Last Quarter":
                  +                index.Value = 3
                  +        except:
                  +            return None
                  +
                  +        return index
                  +
                  +
                  + +

                  + Research shows that the effect is strongest in emerging markets. + Here we choose the iShares MSCI Emerging Markets Index ETF EEM. + The algorithm therefore goes long in emerging market index ETF 7 days before the new moon and switch to a short position on ETF 7 days before the full moon. + The benchmark is set to EEM. +

                  + +
                  +
                  +def Initialize(self):
                  +    self.SetStartDate(2004, 1, 1)
                  +    self.SetEndDate(2018, 8, 1)
                  +    self.SetCash(100000)
                  +    # import the custom data
                  +    self.AddData(MoonPhase, "phase", Resolution.Daily)
                  +    self.AddEquity("EEM", Resolution.Daily)
                  +    self.SetBenchmark("EEM")
                  +
                  +def OnData(self, data):
                  +    # long in emerging market index ETF 7 days before the new moon (It's the Last Quarter)
                  +    if self.Securities["phase"].Price == 3 and not self.Portfolio["EEM"].IsLong:
                  +        self.SetHoldings("EEM", 1)
                  +    # short on emerging market index ETF 7 days before the full moon (It's the First Quarter)
                  +    elif self.Securities["phase"].Price == 1 and not self.Portfolio["EEM"].IsShort:
                  +        self.SetHoldings("EEM", -1)
                  +
                  +
                  diff --git a/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html b/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html new file mode 100644 index 0000000..8caed63 --- /dev/null +++ b/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/61 Lunar Cycle in Equity Market/04 Source.html b/04 Strategy Library/61 Lunar Cycle in Equity Market/04 Source.html new file mode 100644 index 0000000..2a93cea --- /dev/null +++ b/04 Strategy Library/61 Lunar Cycle in Equity Market/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/66 Combining Momentum Effect with Volume/01 Introduction.html b/04 Strategy Library/66 Combining Momentum Effect with Volume/01 Introduction.html new file mode 100644 index 0000000..0b90427 --- /dev/null +++ b/04 Strategy Library/66 Combining Momentum Effect with Volume/01 Introduction.html @@ -0,0 +1,5 @@ +

                  + The Momentum traders take on a long or short position in the stock, in the hopes that the momentum will continue in the same direction. + The momentum strategy has a higher degree of volatility than most other strategies. + In the tutorial, we'll introduce the trading volume factor to enhance the portfolio return and control the risk of momentum strategy. +

                  diff --git a/04 Strategy Library/66 Combining Momentum Effect with Volume/02 Method.html b/04 Strategy Library/66 Combining Momentum Effect with Volume/02 Method.html new file mode 100644 index 0000000..a2593a9 --- /dev/null +++ b/04 Strategy Library/66 Combining Momentum Effect with Volume/02 Method.html @@ -0,0 +1,108 @@ +

                  + The investment universe consists of all stocks on NYSE and NASDAQ. The momentum is usually defined by the stock return in the last N months. + The indicator RateOfChange is constructed to represent the return. The lookback period is one year. +

                  +
                  +
                  +  class SymbolData:
                  +      def __init__(self, symbol, lookback):
                  +          self.Symbol = symbol
                  +          self.ROC = RateOfChange(lookback)
                  +          self.Volume = None
                  +
                  +
                  +

                  + The ROC indicator and volume are updated everyday in CoarseSelectionFunction. Securities which do not have fundamental data are eliminated. +

                  + +
                  +
                  +  def CoarseSelectionFunction(self, coarse):
                  +      for i in coarse:
                  +          if i.Symbol not in self.dataDict:
                  +              self.dataDict[i.Symbol] = SymbolData(i.Symbol, self.lookback)
                  +          self.dataDict[i.Symbol].ROC.Update(i.EndTime, i.AdjustedPrice)
                  +          self.dataDict[i.Symbol].Volume = i.Volume
                  +
                  +      if self.monthly_rebalance:
                  +          # drop stocks which have no fundamental data
                  +          filteredCoarse = [x for x in coarse if (x.HasFundamentalData)]
                  +          return [i.Symbol for i in filteredCoarse]
                  +      else:
                  +          return []
                  +
                  +
                  +

                  + Trading volume (turnover) serves as a useful indicator of the level of investor interest in stocks. + The number of sellers tends to exceed the number of buyers when the stock falls into disfavor, which will lead to a falling share price. + When a stock is popular, the number of buyers exceeds the number of sellers, the price tends to rise. + As a result, a firm’s turnover may be a measure of investors' interest in the firm's stock so it could help to identify the future trend of stocks. + Here the turnover is calculated as the ratio of the number of shares traded each day to the number of shares outstanding. +

                  +

                  + In FineSelectionFunction, after the indicator is ready for all symbols in dictionary self.dataDict, turnover is calculated + with the Volume and EarningReports.BasicAverageShares. +

                  +
                  +
                  +def FineSelectionFunction(self, fine):
                  +    if self.monthly_rebalance:
                  +        dataReady = {symbol: symbolData for (symbol, symbolData) in self.dataDict.items() if symbolData.ROC.IsReady}
                  +        if len(dataReady) < 100:
                  +            self.filteredFine = []
                  +        else:
                  +            sortedFine = [i for i in fine if i.EarningReports.BasicAverageShares.ThreeMonths != 0 and i.Symbol in dataReady]
                  +            sortedFineSymbols = [i.Symbol for i in sortedFine]
                  +            filteredData = {symbol: symbolData for (symbol, symbolData) in dataReady.items() if symbol in sortedFineSymbols}
                  +            for i in sortedFine:
                  +                if i.Symbol in filteredData and filteredData[i.Symbol].Volume != 0:
                  +                    filteredData[i.Symbol].Turnover = i.EarningReports.BasicAverageShares.ThreeMonths / filteredData[i.Symbol].Volume
                  +
                  +
                  +

                  + Stocks are sorted into deciles every month based on previous 12-month returns. + Each momentum decile is then divided into terciles based on turnover. The long and short portfolios are constructed with the highest turnover from the top momentum decile and the highest volume from the bottom momentum decile respectively. +

                  +
                  +
                  +for i in sortedFine:
                  +    if i.Symbol in filteredData and filteredData[i.Symbol].Volume != 0:
                  +        filteredData[i.Symbol].Turnover = i.EarningReports.BasicAverageShares.ThreeMonths / filteredData[i.Symbol].Volume
                  +sortedByROC = sorted(filteredData.values(), key = lambda x: x.ROC.Current.Value, reverse = True)
                  +topROC = sortedByROC[:int(len(sortedByROC)*0.2)]
                  +bottomROC = sortedByROC[-int(len(sortedByROC)*0.2):]
                  +HighTurnoverTopROC = sorted(topROC, key = lambda x: x.Turnover, reverse = True)
                  +HighTurnoverBottomROC = sorted(bottomROC, key = lambda x: x.Turnover, reverse = True)
                  +self.long =  [i.Symbol for i in HighTurnoverTopROC[:int(len(HighTurnoverTopROC)*0.01)]]
                  +self.short = [i.Symbol for i in HighTurnoverBottomROC[:int(len(HighTurnoverBottomROC)*0.01)]]
                  +self.filteredFine = self.long + self.short
                  +self.portfolios.append(self.filteredFine)
                  +
                  +
                  +

                  + A long-short portfolio is held for three months, and then it is rebalanced. + Therefore, the investor buys 1/3 of its portfolio for three consecutive months and rebalances 1/3 of its portfolio each month. + We save each portfolio in deque list self.portfolios and liquidate the portfolio three-months ago when rebalancing. +

                  +
                  +
                  +def OnData(self, data):
                  +    if self.monthly_rebalance and self.filteredFine:
                  +     self.filteredFine = None
                  +     self.monthly_rebalance = False
                  +
                  +     # 1/3 of the portfolio is rebalanced every month
                  +     if len(self.portfolios) == self.portfolios.maxlen:
                  +         for i in list(self.portfolios)[0]:
                  +             self.Liquidate(i)
                  +
                  +     # stocks are equally weighted and held for 3 months
                  +     short_weight = 1/len(self.short)
                  +     for i in self.short:
                  +         self.SetHoldings(i, -1/3*short_weight)
                  +
                  +     long_weight = 1/len(self.long)
                  +     for i in self.long:
                  +         self.SetHoldings(i, 1/3*long_weight)
                  +
                  +
                  diff --git a/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html b/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html new file mode 100644 index 0000000..57f98de --- /dev/null +++ b/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/66 Combining Momentum Effect with Volume/04 Source.html b/04 Strategy Library/66 Combining Momentum Effect with Volume/04 Source.html new file mode 100644 index 0000000..44c69e4 --- /dev/null +++ b/04 Strategy Library/66 Combining Momentum Effect with Volume/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/71 Short Term Reversal with Futures/01 Introduction.html b/04 Strategy Library/71 Short Term Reversal with Futures/01 Introduction.html new file mode 100644 index 0000000..68196fe --- /dev/null +++ b/04 Strategy Library/71 Short Term Reversal with Futures/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + The short-term reversal strategy buys stocks which are past losers and sells stocks which are past winners. + It is commonly used in the equity market. This algorithm will explore the reversal effect in the futures market. + Research also suggests that trading volume contains information about future market movements. The algorithm will + be constructed with both the volume and return reversal effect. +

                  diff --git a/04 Strategy Library/71 Short Term Reversal with Futures/02 Method.html b/04 Strategy Library/71 Short Term Reversal with Futures/02 Method.html new file mode 100644 index 0000000..6b0c293 --- /dev/null +++ b/04 Strategy Library/71 Short Term Reversal with Futures/02 Method.html @@ -0,0 +1,108 @@ +

                  + The daily continuous futures data with the adjusted price is from Quandl. + The investment universe consists of 24 types of US futures contracts: 4 currencies, five financial indices, eight agricultural products, and seven commodities. + The contracts are all front month contracts. +

                  +
                  +
                  +class Futures(PythonData):
                  +    # import the futures custom data from dropbox
                  +    def GetSource(self, config, date, isLiveMode):
                  +        source = "your_custom_source_url"
                  +        return SubscriptionDataSource(source, SubscriptionTransportMedium.RemoteFile)
                  +
                  +    def Reader(self, config, line, date, isLiveMode):
                  +        futures = Futures()
                  +        futures.Symbol = config.Symbol
                  +        data = line.split(',')
                  +        if data[0] == "date": return None
                  +        futures.Time = datetime.strptime(data[0], "%m/%d/%y")
                  +        futures.Value = float(data[4])
                  +        futures["settle"] = float(data[4]) # add the settle price
                  +        futures["volume"] = float(data[5]) # add the volume
                  +        futures["open_interest"] = float(data[6]) # add the open interest
                  +        return futures
                  +
                  +
                  +

                  + The algorithm uses a weekly time frame(Wednesday-Wednesday interval). Therefore the self.Schedule.On() will fire the trading every Wednesday. + To compare the weekly change of volume and open interest, we create the deque list with the length to be two to save the history data frame of + the most recent week and the week before. +

                  +
                  +
                  +  def Initialize(self):
                  +      self.SetStartDate(2017, 7, 10)
                  +      self.SetEndDate(2018, 8, 1)
                  +      self.SetCash(10000000)
                  +
                  +      self.tickers = ["CME_SF1_EF", "CME_MP1_FF",  "CME_CD1_EF", "CME_ED8_FF",               # Currencies
                  +                      "CME_NQ1_EF", "CME_MD1_EF", "CME_ES1_EF", "CME_YM1_EF", "CME_NK1_EF",  # Financial indices
                  +                      "CME_C1_EF", "CME_SM1_EF",  "ICE_CC1_EF",  "CME_LC1_EF",               # Agricultural product
                  +                      "CME_KW1_EF", "CME_S1_EF", "ICE_KC1_EF", "CME_LC1_EF",
                  +                      "CME_HG1_FF",  "CME_GC1_EF", "SHFE_AL1_EF",  "SHFE_CU1_EF",            # Commodities
                  +                      "CME_CL1_EF", "ICE_T1_FR", "CME_HO1_EF"]
                  +      self.length = len(self.tickers)
                  +      for ticker in self.tickers:
                  +          self.AddData(Futures, ticker)
                  +      # create the deque list to save the weekly history dataframe
                  +      self.window = deque(maxlen=2)
                  +      # rebalance the portfolio every week on Wednesday
                  +      self.Schedule.On(self.DateRules.Every(DayOfWeek.Wednesday, DayOfWeek.Wednesday), self.TimeRules.At(0, 0), self.WeeklyTrade)
                  +
                  +
                  +

                  + In the weekly rebalance function, weekly history data frame is saved. The contract is defined as the high(low) volume contract if the contract's volume changes between the period from t-1 to t and period from t-2 to t-1 is above(below) the median volume change of all contracts, + In addition, all contracts are also assigned to either high-open interest (top 50% of changes in open interest) or low-open interest groups (bottom 50% of changes in open interest) based on lagged changes in open interest between the period from t-1 to t and period from t-2 to t-1. + We created the method CalculateChange to calculate the increment value and rank the contracts based on the weekly history data frame. +

                  + +
                  +
                  +  def WeeklyTrade(self):
                  +      hist = self.History(self.tickers, self.Time-timedelta(days=7), self.Time,Resolution.Daily)
                  +      self.window.append(hist)
                  +      if len(self.window) == self.window.maxlen:
                  +          hist_t2 = self.window[0] # the weekly history dataframe two week ago
                  +          hist_t1 = self.window[1] # the weekly history dataframe a week ago
                  +          top_vol, bottom_vol = self.CalculateChange("volume", hist_t2, hist_t1)
                  +          top_OI, bottom_OI = self.CalculateChange("open_interest", hist_t2, hist_t1)
                  +
                  +
                  + +
                  +
                  +  def CalculateChange(self, column_name, hist_t2, hist_t1):
                  +      # calculate the weekly change and sort by the colume value
                  +      value_t2 = hist_t2[column_name].unstack(level=0).sum(axis=0)
                  +      value_t1 = hist_t1[column_name].unstack(level=0).sum(axis=0)
                  +      delta = (value_t1 - value_t2).sort_values(ascending=True)
                  +      top = list(delta[:int(self.length*0.5)].index)
                  +      bottom = list(delta[-int(self.length*0.5):].index)
                  +      return top, bottom
                  +
                  +
                  + +

                  + We take the intersection of the top volume group and bottom open interest group. The trading candidates are selected from this group. + Next futures in the intersection are sorted based on the return in the previous week. + The algorithm goes long on futures from the high-volume, low-open interest group with the lowest return and shorts the contract with the highest return. +

                  +
                  +
                  +# the intersection of top volume group and bottom open interest group
                  +trade_group = list(set(top_vol) & set(bottom_OI))
                  +returns = {}
                  +for ticker in trade_group:
                  +    res = (hist_t1.loc[ticker]["settle"][-1] - hist_t2.loc[ticker]["settle"][-1]) / hist_t2.loc[ticker]["settle"][-1]
                  +    returns[ticker] = res
                  +
                  +sortedByReturn = sorted(returns, key = lambda x: returns[x])
                  +
                  +if len(sortedByReturn) >= 2:
                  +    if self.Portfolio.Invested:
                  +        self.Liquidate()
                  +    self.SetHoldings(sortedByReturn[-1], -0.3)
                  +    self.SetHoldings(sortedByReturn[0], 0.3)
                  +
                  +
                  diff --git a/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html b/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html new file mode 100644 index 0000000..d3f5c48 --- /dev/null +++ b/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/71 Short Term Reversal with Futures/04 Source.html b/04 Strategy Library/71 Short Term Reversal with Futures/04 Source.html new file mode 100644 index 0000000..168dc1b --- /dev/null +++ b/04 Strategy Library/71 Short Term Reversal with Futures/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/77 Beta Factors in Stocks/01 Introduction.html b/04 Strategy Library/77 Beta Factors in Stocks/01 Introduction.html new file mode 100644 index 0000000..4b193a4 --- /dev/null +++ b/04 Strategy Library/77 Beta Factors in Stocks/01 Introduction.html @@ -0,0 +1,10 @@ +

                  + Beta is a statistical measure of a stock's volatility in relation to the market. Stock analysts use this measure to get a sense of stocks' risk profiles. + It is also a key component of the capital asset pricing model (CAPM), A stock's price variability is essential to consider when assessing risk. It represents the co-movement instead of the volatility. Therefore, it is possible for a stock to have zero beta and higher volatility than the market. +

                  +

                  + In the real world, some investors are prohibited from using leverage and other investors’ leverage is limited by margin requirements. + Therefore, their only way to achieve higher returns is to buy more risky stocks, which would cause the overvaluation of higher-beta stocks. + This behavior suggests that high-beta (risky) stocks should deliver lower risk-adjusted returns than low-beta stocks. + In this algorithm, we'll use the leverage to explore the inefficiency of the beta factor. +

                  diff --git a/04 Strategy Library/77 Beta Factors in Stocks/02 Method.html b/04 Strategy Library/77 Beta Factors in Stocks/02 Method.html new file mode 100644 index 0000000..e043cf6 --- /dev/null +++ b/04 Strategy Library/77 Beta Factors in Stocks/02 Method.html @@ -0,0 +1,125 @@ +

                  + The investment universe consists of all stocks in Nasdaq and NYSE. + We use the Wilshire 5000 Total Market Index which covers all stocks actively traded in the United States. +

                  +
                  +
                  +def Initialize(self):
                  +    self.SetStartDate(2011, 1, 1)
                  +    self.SetEndDate(2018, 9, 1)
                  +    self.SetCash(1000000)
                  +    self.UniverseSettings.Resolution = Resolution.Daily
                  +    self.AddUniverse(self.CoarseSelectionFunction)
                  +    self.AddEquity("SPY", Resolution.Daily)
                  +    # add Wilshire 5000 Total Market Index data from Dropbox
                  +    self.AddData(Wilshire5000, "W5000", Resolution.Daily)
                  +    self.Schedule.On(self.DateRules.MonthStart("SPY"), self.TimeRules.AfterMarketOpen("SPY"), self.rebalance)
                  +    self.data = {}
                  +    self.monthly_rebalance = False
                  +    self.long = None
                  +    self.short = None
                  +    self.market_price = deque(maxlen=253)
                  +    hist = self.History(["W5000"], 400, Resolution.Daily)
                  +    for i in hist.loc["W5000"].itertuples():
                  +        self.market_price.append(i.value)
                  +
                  +
                  +

                  + The formula for calculating beta is the covariance of the return of an asset with the return of the market divided by the variance of the return of the market over a certain period. +

                  +\[\beta_i=\frac{cov(R_i,R_{m})}{Var(R_m)}\] +

                  + We choose the 1-year rolling window as the period in the beta calculation. We created the SymbolData class to update the rolling window of return + and the calculation of beta. +

                  +
                  +
                  +  class SymbolData:
                  +      def __init__(self, symbol):
                  +          self.Symbol = symbol
                  +          self.window = RollingWindow[Decimal](2)
                  +          self.returns = deque(maxlen=252)
                  +
                  +      def Update(self, price):
                  +          if price != 0:
                  +              self.window.Add(price)
                  +              if self.window.IsReady:
                  +                  self.returns.append((self.window[0]-self.window[1])/self.window[1])
                  +
                  +      def IsReady(self):
                  +          return len(self.returns) == self.returns.maxlen
                  +
                  +      def beta(self, market_ret):
                  +          asset_return = np.array(self.returns, dtype=np.float32)
                  +          market_return = np.array(market_ret, dtype=np.float32)
                  +          return np.cov(asset_return, market_return)[0][1]/np.var(market_return)
                  +
                  +
                  +

                  + In CoarseSelectionFunction, we filter the stocks which price is lower than five as they are not active in the market. + When the return rolling window is ready, Stocks are then ranked in ascending order on the basis of their estimated beta. + The algorithm goes long on five stocks at the bottom beta list and short on five stocks at the top beta list. +

                  +
                  +
                  +  def CoarseSelectionFunction(self, coarse):
                  +
                  +      if self.Securities["W5000"].Price is not None:
                  +          self.market_price.append(self.Securities["W5000"].Price)
                  +      for i in coarse:
                  +          if i.Symbol not in self.data:
                  +              self.data[i.Symbol] = SymbolData(i.Symbol)
                  +          self.data[i.Symbol].Update(i.AdjustedPrice)
                  +
                  +      if self.monthly_rebalance:
                  +          sortedByPrice = [i.Symbol for i in coarse if i.AdjustedPrice>5]
                  +          ready_data = {symbol: data for symbol, data in self.data.items() if symbol in sortedByPrice and data.IsReady()}
                  +          if len(ready_data) > 20:
                  +              self.market_return = np.diff(np.array(self.market_price))/np.array(self.market_price)[:-1]
                  +              # sort the dictionary in ascending order by beta value
                  +              sorted_beta = sorted(ready_data, key = lambda x: ready_data[x].beta(self.market_return))
                  +              self.long = sorted_beta[:5]
                  +              self.short = sorted_beta[-5:]
                  +              return self.long+self.short
                  +          else:
                  +              self.monthly_rebalance = False
                  +              return []
                  +      else:
                  +          return []
                  +
                  +
                  +

                  + In each portfolio, securities are weighted by the ranked betas. Lower-beta stocks have larger weights in the low-beta portfolio and higher-beta + stocks have larger weights in the high-beta portfolio. The portfolios are rebalanced every calendar month. +

                  +
                  +
                  +def OnData(self, data):
                  +      if not self.monthly_rebalance: return
                  +      if self.long is None or self.short is None: return
                  +
                  +      long_invested = [x.Key for x in self.Portfolio if x.Value.IsLong]
                  +      short_invested = [x.Key for x in self.Portfolio if x.Value.IsShort]
                  +
                  +      for i in long_invested:
                  +          if i not in self.long:
                  +              self.Liquidate(i)
                  +
                  +      for i in short_invested:
                  +          if i not in self.short:
                  +              self.Liquidate(i)
                  +
                  +      long_scale_factor = 0.5/sum(range(1,len(self.long)+1))
                  +      for rank, symbol in enumerate(self.long):
                  +          self.SetHoldings(symbol, (len(self.long)-rank+1)*long_scale_factor)
                  +
                  +      short_scale_factor = 0.5/sum(range(1,len(self.long)+1))
                  +      for rank, symbol in enumerate(self.short):
                  +          self.SetHoldings(symbol, -(rank+1)*short_scale_factor)
                  +
                  +
                  +      self.monthly_rebalance = False
                  +      self.long = None
                  +      self.short = None
                  +
                  +
                  diff --git a/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html b/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html new file mode 100644 index 0000000..91f1e5a --- /dev/null +++ b/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/77 Beta Factors in Stocks/04 Source.html b/04 Strategy Library/77 Beta Factors in Stocks/04 Source.html new file mode 100644 index 0000000..f65d0bf --- /dev/null +++ b/04 Strategy Library/77 Beta Factors in Stocks/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/01 Introduction.html b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/01 Introduction.html new file mode 100644 index 0000000..6d6f826 --- /dev/null +++ b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + Some investors are prohibited from using leverage and other investors’ leverage is limited by margin requirements. + Their only way to achieve higher returns is to buy more risky stocks which makes these assets more expensive. + High-beta and risky assets should therefore deliver lower risk-adjusted returns than low-beta assets. + Investors could exploit this inefficiency by using ETFs. This algorithm is going to explore this phenomenon. +

                  diff --git a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/02 Method.html b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/02 Method.html new file mode 100644 index 0000000..d2c9c93 --- /dev/null +++ b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/02 Method.html @@ -0,0 +1,113 @@ +

                  + The implementation of this algorithm uses the alpha framework. + The algorithm picks 35 country indexes ETFs as the trading universe. As the symbols in the universe don't change over time, + we use the ManualUniverseSelectionModel to subscribe the daily data for those symbols. +

                  +

                  + Beta is a statistical measure of a stock's volatility in relation to the market. + Stock analysts use this measure to get a sense of stocks' risk profiles. + The formula for calculating beta is the covariance of the return of an asset with the return of the market divided by the variance of the return of the market over a certain period. +

                  +\[\beta_i=\frac{cov(R_i,R_{m})}{Var(R_m)}\] +
                  +
                  +def beta(self, asset_return, market_return):
                  +    asset_return = np.array(asset_return, dtype=np.float32)
                  +    market_return = np.array(market_return, dtype=np.float32)
                  +    return np.cov(asset_return, market_return)[0][1]/np.var(market_return)
                  +
                  +
                  +

                  + We use S&P500 ETF as the market measure. The beta for each country is calculated with respect to the SPY using a 1-year rolling window. + SymbolData class save the one-year rolling window price data. +

                  +
                  +
                  +class SymbolData:
                  +    def __init__(self, symbol):
                  +        self.Symbol = symbol
                  +        self.Price = deque(maxlen=253)
                  +
                  +
                  +

                  + self.assets is a dictionary to save the price series for each country ETF. The key is the ETF symbol. + For new symbols added to the algorithm, we request the one-year history data to initialize the price series. +

                  +
                  +
                  +def OnSecuritiesChanged(self, algorithm, changes):
                  +    for added in changes.AddedSecurities:
                  +        if added.Symbol.Value == "SPY":
                  +            self.market_price = deque(maxlen=253)
                  +            hist_SPY = algorithm.History(["SPY"], 500, Resolution.Daily)
                  +            for i in hist_SPY.loc["SPY"].itertuples():
                  +                self.market_price.append(i.close)
                  +
                  +        if added not in self.assets and added.Symbol.Value != "SPY":
                  +            hist = algorithm.History([added.Symbol.Value], 500, Resolution.Daily)
                  +            if not hist.empty:
                  +                self.assets[added.Symbol] = SymbolData(added)
                  +                for i in hist.loc[added.Symbol.Value].itertuples():
                  +                    self.assets[added.Symbol].Price.append(i.close)
                  +
                  +    for removed in changes.RemovedSecurities:
                  +        self.assets.pop(removed.Symbol)
                  +
                  +
                  +

                  + In the Alpha model, Update(self, algorithm, data) method updates this model with the latest data from the algorithm. + This method is called each time the algorithm receives data for subscribed securities. In this method, we update the price series with new trade bars. + The price series is converted to return series. We plug the market return and the country ETF return into the beta formula. + ETFs are then ranked in ascending order by their estimated beta. The ranked ETFs are assigned to one of two portfolios: low beta and high beta. + Each portfolio contains a quarter of the total assets. +

                  +
                  +
                  +def Update(self, algorithm, data):
                  +    if data.ContainsKey("SPY"):
                  +        self.market_price.append(float(algorithm.Securities["SPY"].Price))
                  +    for key, value in self.assets.items():
                  +        if data.ContainsKey(key):
                  +            value.Price.append(float(algorithm.Securities[key].Price))
                  +    insights = []
                  +    if self.month != algorithm.Time.month:
                  +        self.month = algorithm.Time.month
                  +        beta_values = {}
                  +        market_return = np.diff(np.array(self.market_price))/np.array(self.market_price)[:-1]
                  +        long = None
                  +        for key, value in self.assets.items():
                  +            if key != "SPY" and len(value.Price) == value.Price.maxlen:
                  +                asset_return = np.diff(np.array(value.Price))/np.array(value.Price)[:-1]
                  +                beta_values[key] = self.beta(asset_return, market_return)
                  +        sorted_by_beta = sorted(beta_values, key = lambda x: beta_values[x])
                  +
                  +
                  +

                  + The algorithm shorts the high-beta portfolio and longs the low-beta portfolio. Securities are rebalanced every calendar month. + PortfolioConstructionModel is set to emit the target weight monthly. + The time period of insight is from the current day to the end of the calendar month. + In Python calendar library, calendar.monthrange(year, month) returns the number of days in a month for the specified year and month. + The insight direction is set to be flat for symbols removed from the long/short list at the end of the month. +

                  + +
                  +
                  +long = sorted_by_beta[:int(0.25*len(sorted_by_beta))]
                  +short = sorted_by_beta[-int(0.25*len(sorted_by_beta)):]
                  +# day: the weekday of first day of the month
                  +# num_days: number of days in month
                  +day, num_days = calendar.monthrange(algorithm.Time.year, algorithm.Time.month)
                  +insight_period = num_days - algorithm.Time.day - 1
                  +if long and short:
                  +    invested = [x.Key for x in algorithm.Portfolio if x.Value.Invested]
                  +    for i in invested:
                  +        if algorithm.Portfolio[i].IsLong and i not in long:
                  +            insights.append(Insight.Price(i, timedelta(days=1), InsightDirection.Flat))
                  +        if algorithm.Portfolio[i].IsShort and i not in short:
                  +            insights.append(Insight.Price(i, timedelta(days=1), InsightDirection.Flat))
                  +    for i in long:
                  +        insights.append(Insight.Price(i, timedelta(days=insight_period), InsightDirection.Up))
                  +    for i in short:
                  +        insights.append(Insight.Price(i, timedelta(days=insight_period), InsightDirection.Down))
                  +
                  +
                  diff --git a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html new file mode 100644 index 0000000..0447f1a --- /dev/null +++ b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/78 Beta Factor in Country Equity Indexes/04 Source.html b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/04 Source.html new file mode 100644 index 0000000..3c11e0b --- /dev/null +++ b/04 Strategy Library/78 Beta Factor in Country Equity Indexes/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/83 Pre-Holiday Effect/01 Introduction.html b/04 Strategy Library/83 Pre-Holiday Effect/01 Introduction.html new file mode 100644 index 0000000..824943d --- /dev/null +++ b/04 Strategy Library/83 Pre-Holiday Effect/01 Introduction.html @@ -0,0 +1,6 @@ +

                  + Pre-holiday days on the market are often characterized with lower liquidity as a lot of market participants are not involved in the market or they lower their exposure. + Historical research shows that stock prices often behave in a specific manner in each of the two trading days preceding these holidays. + This anomaly in equities is often called the pre-holiday effect. It is the market in-efficiency for short-term traders to gain on the final trading day before a holiday. + In this algorithm, we'll construct a simple strategy to exploit this pre-holiday effect in the equity market. +

                  diff --git a/04 Strategy Library/83 Pre-Holiday Effect/02 Method.html b/04 Strategy Library/83 Pre-Holiday Effect/02 Method.html new file mode 100644 index 0000000..d1c4444 --- /dev/null +++ b/04 Strategy Library/83 Pre-Holiday Effect/02 Method.html @@ -0,0 +1,27 @@ +

                  + TradingCalendar class can help us find all the available holidays during a period of time. + GetDaysByType returns trading days of the specified TradingDayType that contains trading events associated with the range of dates. + Here we choose the type to be TradingDayType.PublicHoliday and list all holidays from today to the next two days. As PublicHoliday includes weekends, + we use the type TradingDayType.Weekend to subtract weekend holidays. +

                  +
                  +
                  +  def OnData(self, data):
                  +      calendar1 = self.TradingCalendar.GetDaysByType(TradingDayType.PublicHoliday, self.Time, self.Time+timedelta(days=2))
                  +      calendar2 = self.TradingCalendar.GetDaysByType(TradingDayType.Weekend, self.Time, self.Time+timedelta(days=2))
                  +      holidays = [i.Date for i in calendar1]
                  +      weekends = [i.Date for i in calendar2]
                  +      public_holidays = list(set(holidays) - set(weekends))
                  +
                  +
                  +

                  + The investment vehicle is SPDR S&P500 ETF. The algorithm will trade the ETF if there are holidays within the next two days and stays in cash during other trading days. +

                  +
                  +
                  +if not self.Portfolio.Invested and len(holidays)>0:
                  +    self.SetHoldings("SPY", 1)
                  +elif self.Portfolio.Invested and len(holidays)==0:
                  +    self.Liquidate()
                  +
                  +
                  diff --git a/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html b/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html new file mode 100644 index 0000000..64580ab --- /dev/null +++ b/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/83 Pre-Holiday Effect/04 Source.html b/04 Strategy Library/83 Pre-Holiday Effect/04 Source.html new file mode 100644 index 0000000..7859f12 --- /dev/null +++ b/04 Strategy Library/83 Pre-Holiday Effect/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/01 Introduction.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/01 Introduction.html new file mode 100644 index 0000000..ec8c6d8 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/01 Introduction.html @@ -0,0 +1,9 @@ +

                  + Researchers have shown that the historical returns of a mutual fund and the nearness of its net asset value (NAV) to + a previous high can provide significant predictive power about the fund's future returns. In respect to the + historical returns, some have attributed the persistence to investor herding and macroeconomic variables. When it + comes to the NAV, some suggest the outperformance of funds with a NAV near its trailing high is a result of + anchoring bias in investors' psychology. As we do not have access to invest in individual mutual funds on the QC + platform or access to NAV metrics, in this tutorial, we trade asset management firms and use their respective share + price as a proxy for fund performance and NAV. +

                  diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html new file mode 100644 index 0000000..a43b163 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html @@ -0,0 +1,186 @@ +

                  Universe Selection

                  +

                  + In coarse universe selection, we return symbols that have fundamental data. +

                  +
                  +
                  +def SelectCoarse(self, algorithm, coarse):
                  +    if self.month == algorithm.Time.month:
                  +            return Universe.Unchanged
                  +            
                  +    return [x.Symbol for x in coarse if x.HasFundamentalData]
                  +
                  +
                  + +

                  + In fine universe selection, we return symbols that Morningstar has classified as being in the asset management industry. +

                  +
                  +
                  +def SelectFine(self, algorithm, fine):
                  +    self.month = algorithm.Time.month
                  +        
                  +    return [f.Symbol for f in fine if f.AssetClassification.MorningstarIndustryCode == MorningstarIndustryCode.AssetManagement]
                  +
                  +
                  + +

                  Alpha Construction

                  +

                  + When constructing the alpha model, we can provide parameters for the lookback windows and the percentage of the universe to + long/short. Both of these arguments are validated in the constructor. By default, this alpha model uses the trailing 6 months to + calculate the rate of change factor and the trailing 12 months to calculate the nearness to historical highs. +

                  +
                  +
                  +def __init__(self, roc_lookback_months=6, nearness_lookback_months=12, holding_months=6, pct_long_short=10):
                  +    if roc_lookback_months <= 0 or nearness_lookback_months <= 0 or holding_months <= 0:
                  +        algorithm.Quit(f"Requirement violated:  roc_lookback_months > 0 and nearness_lookback_months > 0 and holding_months > 0")
                  +        
                  +    if pct_long_short <= 0 or pct_long_short > 50:
                  +        algorithm.Quit(f"Requirement violated: 0 < pct_long_short <= 50")
                  +
                  +    self.roc_lookback_months = roc_lookback_months
                  +    self.nearness_lookback_months = nearness_lookback_months
                  +    self.holding_months = holding_months
                  +    self.pct_long_short = pct_long_short
                  +
                  +
                  + +

                  + For each security added to the universe, we construct a ROCAndNearness indicator which warm up the lookback windows and registers + a data consolidator. When a security is removed from the universe, we unsubscribe the associated consolidator. +

                  +
                  +
                  +def OnSecuritiesChanged(self, algorithm, changes):
                  +    for added in changes.AddedSecurities:
                  +        roc_and_nearness = ROCAndNearness(added.Symbol, algorithm, self.roc_lookback_months, self.nearness_lookback_months)
                  +        self.symbol_data_by_symbol[added.Symbol] = roc_and_nearness
                  +
                  +    for removed in changes.RemovedSecurities:
                  +        symbol_data = self.symbol_data_by_symbol.pop(removed.Symbol, None)
                  +        if symbol_data:
                  +            symbol_data.dispose()
                  +
                  +
                  + +

                  Alpha Update

                  +

                  + On the first trading day of each month, we rank the symbols in the universe and emit insights for the portfolio construction + model. We instruct the alpha model to emit insights on a monthly basis by adding the following guard to the Update method. +

                  +
                  +
                  +def Update(self, algorithm, data):
                  +    # Emit insights on a monthly basis
                  +    time = algorithm.Time
                  +    if self.month == time.month:
                  +        return []
                  +    self.month = time.month
                  +
                  +    ...
                  +
                  +
                  + +

                  Alpha Ranking

                  +

                  + We only rank symbols that have enough history to fill the rate of change lookback window. Therefore, we define the + IsReady method of the ROCAndNearness as +

                  +
                  +
                  +@property
                  +def IsReady(self):
                  +    return self.get_lookback(self.roc_lookback_months).shape[0] > 1
                  +
                  +
                  + +

                  + To rank the symbols, we start by filling a DataFrame with the rate of change and nearness to trailing high values for each + symbol. When the DataFrame is full, we rank the symbols by both metrics and sum the ranks. The symbols with a larger final + sum have a greater index in the `ranked_symbols` list. +

                  +
                  +
                  +def Update(self, algorithm, data):
                  +    ...
                  +    ranking_df = pd.DataFrame()
                  +    for symbol, symbol_data in self.symbol_data_by_symbol.items():
                  +        if data.ContainsKey(symbol) and symbol_data.IsReady:
                  +            row = pd.DataFrame({'ROC': symbol_data.roc, 'Nearness': symbol_data.nearness}, index=[symbol])
                  +            ranking_df = ranking_df.append(row)
                  +    ranked_symbols =  ranking_df.rank().sum(axis=1).sort_values().index
                  +   ...
                  +
                  +
                  + +

                  + Calculating the rate of change and nearness factors is done by slicing the historical data into the approriate lookback window + size, and then computing the respective values. +

                  +
                  +
                  +@property
                  +def roc(self):
                  +    lookback = self.get_lookback(self.roc_lookback_months)
                  +    start_price = lookback.iloc[0].open
                  +    end_price = lookback.iloc[-1].close
                  +    return (end_price - start_price) / start_price 
                  +
                  +@property
                  +def nearness(self):
                  +    lookback = self.get_lookback(self.nearness_lookback_months)
                  +    return lookback.iloc[-1].close / lookback.high.max()
                  +
                  +
                  + +

                  Alpha Insights

                  +

                  + We return insights that instruct the portfolio construction model to form a balance long-short portfolio. The percentage of the + universe we long and short is customizable in the alpha model constructor. Here, we long the 25% of symbols with the highest + rank, short the 25% of symbols with the lowest ranks, and instruct the portfolio construction model to hold positions for 6 months. +

                  +
                  +
                  +def Update(self, algorithm, data):
                  +    ...
                  +    insights = []
                  +    num_long_short = int(len(ranked_symbols) * (self.pct_long_short / 100))
                  +    if num_long_short > 0:
                  +        hold_duration = Expiry.EndOfMonth(time) + relativedelta(months=self.holding_months-1, seconds=-1)
                  +        for symbol in ranked_symbols[-num_long_short:]:
                  +            insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Up))
                  +        for symbol in ranked_symbols[:num_long_short]:
                  +            insights.append(Insight.Price(symbol, hold_duration, InsightDirection.Down))
                  +    return insights
                  +
                  +
                  + +

                  Portfolio Construction

                  +

                  + We utilize a custom portfolio construction model that rebalances monthly and performs allocations based on the net direction of + insights for each symbol. A symbol that has two active insights with an up direction will have twice the allocation than a symbol + with only one. Furthermore, a symbol that has an up active insight and a down active insight will have no position. We calculate + the net direction of the symbols with the following helper method. +

                  +
                  +
                  +def get_net_direction(self, insights):
                  +    net_direction_by_symbol = {}
                  +    num_directional_insights = 0
                  +
                  +    for insight in insights:
                  +        symbol = insight.Symbol
                  +        direction = insight.Direction
                  +        if symbol in net_direction_by_symbol:
                  +            net_direction_by_symbol[symbol] += direction
                  +        else:
                  +            net_direction_by_symbol[symbol] = direction
                  +
                  +        num_directional_insights += abs(direction)
                  +
                  +    return net_direction_by_symbol, num_directional_insights
                  +
                  +
                  + + diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html new file mode 100644 index 0000000..93109c0 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  \ No newline at end of file diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html new file mode 100644 index 0000000..26cb3ef --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html @@ -0,0 +1,81 @@ +

                  + To analyze the value of this trading strategy, we compare its performance to buying-and-holding the S&P 500 index + ETF, SPY. We can see the results from the table below. The strategy has a lower Sharpe ratio than the SPY for all of + the time frames we tested, except for the downfall of the 2020 stock market crash. During this time it greatly + outperformed the SPY, achieving a 10.4 Sharpe ratio. We also notice that the strategy generates more consistent + returns than the benchmark, documented by the lower annual standard deviation of returns throughout all the testing + periods. +

                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  Period NameStart DateEnd DateStrategySharpeASD
                  Backtest1/1/20158/16/2020Strategy0.1920.046
                  Benchmark0.7090.186
                  Fall 20158/10/201510/10/2015Strategy-1.4480.052
                  Benchmark-0.7240.251
                  2020 Crash2/19/20203/23/2020Strategy10.3860.104
                  Benchmark-1.2430.793
                  2020 Recovery3/23/20206/8/2020Strategy-2.9420.177
                  Benchmark13.7610.386
                  + +

                  + We find the lack of performance for this strategy is not largely attributed to the trading fees. After ignoring the + transaction fees, spread costs, and slippage, the strategy still has a lower Sharpe ratio than the benchmark. See + the backtest results here. +

                  diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html new file mode 100644 index 0000000..fbc487d --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html @@ -0,0 +1,15 @@ +

                  + Although this strategy passes several of the + metrics required for Alpha Streams and + the Quant League competition, it requires further work to meet the following requirements: +

                  + + +
                    +
                  • Profitable
                  • +
                  • PSR >= 80%
                  • +
                  • Max drawdown duration <= 6 months
                  • +
                  • Insights contain the following properties: Symbol, Duration, Direction, and Weight
                  • +
                  • Minute or second data resolution
                  • +
                  • Insight Weighting or Equal Weighting Portfolio Construction model
                  • +
                  \ No newline at end of file diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html new file mode 100644 index 0000000..763902d --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html @@ -0,0 +1,17 @@ +

                  + The momentum pattern examined throughout this tutorial has a greater Sharpe ratio than the SPY during the downfall + of the 2020 stock market crash and has more a lower annual standard deviation of returns than the SPY over all the + periods we tested. However, we conclude the strategy, which is loosely based on the research of Sapp (2010), does + not consistently outperform our benchmark. To continue the development of this strategy, future areas of research + include: +

                  + + +
                    +
                  • + Incorporating historical returns and NAV of mutual funds to better-reflect the strategy documented by Saap (2010). +
                  • +
                  • Adjusting the parameters in the ROCAndNearnessAlphaModel.
                  • +
                  • Performing more filtering and sorting in the AssetManagementUniverseSelection model.
                  • +
                  • Testing other portfolio construction techniques.
                  • +
                  diff --git a/04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html b/04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html new file mode 100644 index 0000000..29e36f1 --- /dev/null +++ b/04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html @@ -0,0 +1,5 @@ +
                    +
                  1. + Sapp, Travis, The 52-Week High, Momentum, and Predicting Mutual Fund Returns (April 1, 2010). Review of Quantitative Finance and Accounting, Vol. 37, pp. 149-179, 2011. +
                  2. +
                  \ No newline at end of file diff --git a/04 Strategy Library/91 Momentum and Style Rotation Effect/01 Introduction.html b/04 Strategy Library/91 Momentum and Style Rotation Effect/01 Introduction.html new file mode 100644 index 0000000..3d2db27 --- /dev/null +++ b/04 Strategy Library/91 Momentum and Style Rotation Effect/01 Introduction.html @@ -0,0 +1,5 @@ +

                  + Based on the market cap, we can divide the stocks into large-cap, mid-cap and small-cap stocks. In each of those categories, we can subdivide them into value stocks and growth stocks. The growth stocks typically grow revenues faster than the market average and have relatively high P/E ratios and P/B ratios. The value stocks have relatively low P/E ratios and P/B ratios. There are six styles in total. + We've demonstrated various momentum strategies to generate excess returns at the firm, industry, and country level. + In this algorithm, we'll explore the momentum effect at the style index ETF level. +

                  diff --git a/04 Strategy Library/91 Momentum and Style Rotation Effect/02 Method.html b/04 Strategy Library/91 Momentum and Style Rotation Effect/02 Method.html new file mode 100644 index 0000000..2efbe7b --- /dev/null +++ b/04 Strategy Library/91 Momentum and Style Rotation Effect/02 Method.html @@ -0,0 +1,49 @@ +

                  + We choose six index ETFs to represent different equity styles(small-cap value, mid-cap value, large-cap value, + small-cap growth, mid-cap growth, large-cap growth). After adding the assets, we save the momentum indicator in + the dictionary self.mom for each style. The formation period of 12-month is used to gauge the value of momentum. +

                  +
                  +
                  +def Initialize(self):
                  +
                  +    self.SetStartDate(2001, 1, 1)
                  +    self.SetEndDate(2018, 8, 1)
                  +    self.SetCash(100000)
                  +
                  +    tickers = ["IJJ",   # iShares S&P Mid-Cap 400 Value Index ETF
                  +               "IJK",   # iShares S&P Mid-Cap 400 Growth ETF
                  +               "IJS",   # iShares S&P Small-Cap 600 Value ETF
                  +               "IJT",   # iShares S&P Small-Cap 600 Growth ETF
                  +               "IVE",   # iShares S&P 500 Value Index ETF
                  +               "IVW"]   # iShares S&P 500 Growth ETF
                  +
                  +    lookback = 12*20
                  +
                  +    # Save all momentum indicator into the dictionary
                  +    self.mom = dict()
                  +    for ticker in tickers:
                  +        symbol = self.AddEquity(ticker, Resolution.Daily).Symbol
                  +        self.mom[symbol] = self.MOM(symbol, lookback)
                  +
                  +
                  +

                  + Six ETFs are ranked based on their prior 12-month performance in the formation period. The algorithm + goes long the top performing ETF and short the ETF at the bottom and holds the position for one month. + The portfolio is rebalanced at the start of next month. +

                  +
                  +
                  +def Rebalance(self):
                  +    # Order the MOM dictionary by value
                  +    sorted_mom = sorted(self.mom, key = lambda x: self.mom[x].Current.Value)
                  +
                  +    # Liquidate the ETFs that are no longer selected
                  +    for symbol in sorted_mom[1:-1]:
                  +        if self.Portfolio[symbol].Invested:
                  +            self.Liquidate(symbol, 'No longer selected')
                  +
                  +    self.SetHoldings(sorted_mom[-1], -0.5)   # Short the ETF with lowest MOM
                  +    self.SetHoldings(sorted_mom[0], 0.5)     # Long the ETF with highest MOM
                  +
                  +
                  \ No newline at end of file diff --git a/04 Strategy Library/91 Momentum and Style Rotation Effect/03 Algorithm.html b/04 Strategy Library/91 Momentum and Style Rotation Effect/03 Algorithm.html new file mode 100644 index 0000000..ae7ab5e --- /dev/null +++ b/04 Strategy Library/91 Momentum and Style Rotation Effect/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/91 Momentum and Style Rotation Effect/04 Source.html b/04 Strategy Library/91 Momentum and Style Rotation Effect/04 Source.html new file mode 100644 index 0000000..d09e0bf --- /dev/null +++ b/04 Strategy Library/91 Momentum and Style Rotation Effect/04 Source.html @@ -0,0 +1,5 @@ + diff --git a/04 Strategy Library/92 Price Earnings Anomaly/01 Introduction.html b/04 Strategy Library/92 Price Earnings Anomaly/01 Introduction.html new file mode 100644 index 0000000..c4cde16 --- /dev/null +++ b/04 Strategy Library/92 Price Earnings Anomaly/01 Introduction.html @@ -0,0 +1,11 @@ +

                  +The Price to Earnings ratio, also known as the P/E ratio, is the ratio of a company's +market price per share to the company's earnings per share. +

                  +

                  + \[Price \ to \ Earnings\ Ratio=\frac{Market \ price \ per \ share}{Earnings \ per \ share \ from \ the \ most \ recent \ financial \ year}\] +

                  +

                  +The P/E ratio is often used by investors to determine the valuation of a company's stock. Research suggests that a portfolio that consists of stocks with relatively low P/E +ratio outperforms a portfolio that consists of stocks with relatively high P/E ratio. +

                  diff --git a/04 Strategy Library/92 Price Earnings Anomaly/02 Method.html b/04 Strategy Library/92 Price Earnings Anomaly/02 Method.html new file mode 100644 index 0000000..def8def --- /dev/null +++ b/04 Strategy Library/92 Price Earnings Anomaly/02 Method.html @@ -0,0 +1,51 @@ +

                  +We pick the 10 stocks that have the lowest P/E ratio in our universe, at the beginning of each year, +and we invest an equal amount of capital in each stock. +

                  + +

                  +To construct the universe, first, we eliminate stocks which don't have fundamental data and +stocks that have a lower price than $5 per share, using the CoarseSelectionFunction. +

                  + +
                  +
                  +    def CoarseSelectionFunction(self, coarse):
                  +        
                  +        if self.Time.year == self.year:
                  +            return self.symbols
                  +        
                  +        # drop stocks which have no fundamental data or have low price
                  +        CoarseWithFundamental = [x for x in coarse if x.HasFundamentalData and x.Price > 5]
                  +        sortedByDollarVolume = sorted(CoarseWithFundamental, key=lambda x: x.DollarVolume, reverse=False) 
                  +        
                  +        return [i.Symbol for i in sortedByDollarVolume[:self._NumCoarseStocks]] 
                  +
                  +
                  + +

                  +Then, in the FineSelectionFunction, we retrieve the list of 10 stocks, that have the lowest P/E ratio. +

                  + +
                  +
                  + 
                  +    def FineSelectionFunction(self, fine):
                  +        
                  +        if self.Time.year == self.year:
                  +            return self.symbols
                  +        
                  +        self.year = self.Time.year
                  +        
                  +        fine = [x for x in fine if x.ValuationRatios.PERatio > 0]
                  +        sortedPERatio = sorted(fine, key=lambda x: x.ValuationRatios.PERatio)
                  +
                  +        self.symbols = [i.Symbol for i in sortedPERatio[:self._NumStocksInPortfolio]]
                  +        
                  +        return self.symbols
                  +
                  +
                  + +

                  +In OnData(), we buy the 10 stocks that have the lowest P/E ratio in our universe. We rebalance the portfolio at the beginning of each year. +

                  diff --git a/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html b/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html new file mode 100644 index 0000000..35a5232 --- /dev/null +++ b/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html @@ -0,0 +1,6 @@ +
                  +
                  +
                  + +
                  +
                  diff --git a/04 Strategy Library/92 Price Earnings Anomaly/04 Summary.html b/04 Strategy Library/92 Price Earnings Anomaly/04 Summary.html new file mode 100644 index 0000000..7140b66 --- /dev/null +++ b/04 Strategy Library/92 Price Earnings Anomaly/04 Summary.html @@ -0,0 +1,12 @@ +

                  +The portfolio significantly outperforms the benchmark, S&P 500, during the three and half years backtest period, from the beginning of the year 2016 to July of the year 2019. +

                  +

                  +The universe of stocks is filtered using dollar volume and price criteria. Most of the stocks chosen by the algorithm during the backtest period are small market capitalization stocks. +

                  +

                  +In theory, there is an additional factor, to the small P/E ratio factor, contributing to the excess returns of the portfolio, relative to the benchmark. This additional factor is known as the size factor, where size in this respect, is the market capitalization of a stock. +

                  +

                  +Ranking portfolios on market capitalization and subsequently tracking their performance has demonstrated that portfolio of stocks with a small market capitalization outperforms a portfolio of stocks with large market capitalization. Another investment strategy in the strategy library, Small Market Capitalization Stock Premium, demonstrates how to form a portfolio that only consists of stocks with relatively low market capitalization. +

                  diff --git a/04 Strategy Library/92 Price Earnings Anomaly/05 References.html b/04 Strategy Library/92 Price Earnings Anomaly/05 References.html new file mode 100644 index 0000000..b9f2706 --- /dev/null +++ b/04 Strategy Library/92 Price Earnings Anomaly/05 References.html @@ -0,0 +1,9 @@ +
                    +
                  1. + Persson E, Ståhlberg C (2006). P/E and EV/EBITDA Investment Strategies vs. the Market (Master's thesis, Linköping University, Linköping, Sweden). Online Copy +
                  2. + +
                  3. + Fama, Eugene F. and French, Kenneth R., Multifactor Explanations of Asset Pricing Anomalies. J. OF FINANCE, Vol. 51 No. 1, March 1996. Available at SSRN: https://ssrn.com/abstract=7365 +
                  4. +
                  diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.ipynb b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Data Types and Data Structures.ipynb old mode 100644 new mode 100755 similarity index 79% rename from Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.ipynb rename to 05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Data Types and Data Structures.ipynb index 751aa6e..e4566f2 --- a/Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.ipynb +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Data Types and Data Structures.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -16,12 +16,12 @@ "source": [ "my_string1 = 'Welcome to'\n", "my_string2 = \"QuantConnect\"\n", - "print my_string1 + ' ' + my_string2" + "print(my_string1 + ' ' + my_string2)" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -29,59 +29,59 @@ "output_type": "stream", "text": [ "10\n", - "\n" + "\n" ] } ], "source": [ "my_int = 10\n", - "print my_int\n", - "print type(my_int)" + "print(my_int)\n", + "print(type(my_int))" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "\n", - "\n" + "\n", + "\n" ] } ], "source": [ "my_string = \"100\"\n", - "print type(my_string)\n", - "my_int = int(my_string)E\n", - "print type(my_int)" + "print(type(my_string))\n", + "my_int = int(my_string)\n", + "print(type(my_int))" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "\n" + "\n" ] } ], "source": [ "my_string = \"100\"\n", "my_float = float(my_string)\n", - "print type(my_float)" + "print(type(my_float))" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -89,19 +89,19 @@ "output_type": "stream", "text": [ "False\n", - "\n" + "\n" ] } ], "source": [ "my_bool = False\n", - "print my_bool\n", - "print type(my_bool)" + "print(my_bool)\n", + "print(type(my_bool))" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -111,41 +111,41 @@ "Addition 2\n", "Subtraction 3\n", "Multiplication 6\n", - "Division 5\n", + "Division 5.0\n", "exponent 8\n" ] } ], "source": [ - "print \"Addition \", 1+1\n", - "print \"Subtraction \", 5-2\n", - "print \"Multiplication \", 2*3\n", - "print \"Division \", 10/2\n", - "print 'exponent', 2**3" + "print(\"Addition \", 1+1)\n", + "print(\"Subtraction \", 5-2)\n", + "print(\"Multiplication \", 2*3)\n", + "print(\"Division \", 10/2)\n", + "print('exponent', 2**3)" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0\n", - "0.333333333333\n" + "0.3333333333333333\n", + "0.3333333333333333\n" ] } ], "source": [ - "print 1/3\n", - "print 1.0/3" + "print(1/3)\n", + "print(1.0/3)" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -158,12 +158,12 @@ ], "source": [ "my_list = ['Quant', 'Connect', 1,2,3]\n", - "print my_list" + "print(my_list)" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -178,14 +178,14 @@ ], "source": [ "my_list = ['Quant', 'Connect', 1,2,3]\n", - "print len(my_list)\n", - "print my_list[0]\n", - "print my_list[len(my_list) -1]" + "print(len(my_list))\n", + "print(my_list[0])\n", + "print(my_list[len(my_list) -1])" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -199,7 +199,7 @@ "source": [ "my_list = ['Quant','Connect',1,2,3]\n", "my_list[2] = 'go'\n", - "print my_list" + "print(my_list)" ] }, { @@ -219,9 +219,9 @@ "source": [ "my_list = ['Quant']\n", "my_list.append('Connect')\n", - "print my_list\n", + "print(my_list)\n", "my_list.remove('Quant')\n", - "print my_list" + "print(my_list)" ] }, { @@ -239,7 +239,7 @@ ], "source": [ "my_list = ['Quant','Connect',1,2,3]\n", - "print my_list[1:3]" + "print(my_list[1:3])" ] }, { @@ -256,7 +256,7 @@ } ], "source": [ - "print my_list[1:]" + "print(my_list[1:])" ] }, { @@ -273,7 +273,7 @@ } ], "source": [ - "print my_list[:3]" + "print(my_list[:3])" ] }, { @@ -302,7 +302,7 @@ ], "source": [ "my_tuple = ('Welcome','to','QuantConnect')\n", - "print my_tuple[1:]" + "print(my_tuple[1:])" ] }, { @@ -321,7 +321,7 @@ "source": [ "stock_list = ['AAPL','GOOG','IBM','AAPL','IBM','FB','F','GOOG']\n", "stock_set = set(stock_list)\n", - "print stock_set" + "print(stock_set)" ] }, { @@ -349,7 +349,7 @@ } ], "source": [ - "print my_dic['GOOG']" + "print(my_dic['GOOG'])" ] }, { @@ -367,7 +367,7 @@ ], "source": [ "my_dic['GOOG'] = 'Alphabet Company'\n", - "print my_dic['GOOG']" + "print(my_dic['GOOG'])" ] }, { @@ -384,7 +384,7 @@ } ], "source": [ - "print my_dic.keys()" + "print(my_dic.keys())" ] }, { @@ -402,12 +402,12 @@ ], "source": [ "my_str = 'Welcome to QuantConnect'\n", - "print my_str[8:]" + "print(my_str[8:])" ] }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -421,14 +421,14 @@ } ], "source": [ - "print 'Counting the number of e appears in this sentence'.count('e')\n", - "print 'The first time e appears in this sentence'.find('e')\n", - "print 'all the a in this sentence now becomes e'.replace('a','e')" + "print('Counting the number of e appears in this sentence'.count('e'))\n", + "print('The first time e appears in this sentence'.find('e'))\n", + "print('all the a in this sentence now becomes e'.replace('a','e'))" ] }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 20, "metadata": {}, "outputs": [ { @@ -445,14 +445,14 @@ "splited_list = Time.split(' ')\n", "date = splited_list[0]\n", "time = splited_list[1]\n", - "print date, time\n", + "print(date, time)\n", "hour = time.split(':')[0]\n", - "print hour" + "print(hour)" ] }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 21, "metadata": {}, "outputs": [ { @@ -465,12 +465,12 @@ ], "source": [ "my_time = 'Hour: {}, Minute:{}'.format('09','43')\n", - "print my_time" + "print(my_time)" ] }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 22, "metadata": {}, "outputs": [ { @@ -483,28 +483,28 @@ } ], "source": [ - "print 'the pi number is %f'%3.14\n", - "print '%s to %s'%('Welcome','Quantconnect')" + "print('the pi number is %f'%3.14)\n", + "print('%s to %s'%('Welcome','Quantconnect'))" ] } ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Introduction.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Introduction.html new file mode 100755 index 0000000..c1dbfe6 --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + This tutorial provides a basic introduction to the Python programming language. If you are new to Python, you should run the code snippets while reading this tutorial. If you are an advanced Python user, please feel free to skip this chapter. +

                  diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/02 Basic Variable Types.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/02 Basic Variable Types.html new file mode 100755 index 0000000..1f3b20b --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/02 Basic Variable Types.html @@ -0,0 +1,69 @@ +

                  +The basic types of variables in Python are: strings, integers, floating point numbers and booleans. +

                  +

                  + Strings in python are identified as a contiguous set of characters represented in either single quotes (' ') or double quotes (" "). +

                  +
                  +
                  my_string1 = 'Welcome to'
                  +my_string2 = "QuantConnect"
                  +print(my_string1 + ' ' + my_string2)
                  +[out]: Welcome to QuantConnect
                  +
                  +
                  +

                  + An integer is a round number with no values after the decimal point. +

                  +
                  +
                  my_int = 10
                  +print(my_int)
                  +[out]: 10
                  +print(type(my_int))
                  +[out]: type 'int'
                  +
                  +
                  +

                  + The built-in function int() can convert a string into an integer. +

                  +
                  +
                  my_string = "100"
                  +print(type(my_string))
                  +[out]: type 'str'
                  +my_int = int(my_string)
                  +print(type(my_int))
                  +[out]: type 'int'
                  +
                  +
                  +

                  + A floating point number, or a float, is a real number in mathematics. In Python we need to include a value after a decimal point to define it as a float. +

                  +
                  +
                  my_float = 1.0
                  +print(type(my_float))
                  +[out]: type 'float'
                  +my_int = 1
                  +print(type(my_int))
                  +[out]: type 'int'
                  +
                  +
                  +

                  + As you can see above, if we don't include a decimal value, the variable would be defined as an integer. The built-in function float() can convert a string or an integer into a float. +

                  +
                  +
                  my_string = "100"
                  +my_float = float(my_string)
                  +print(type(my_float))
                  +[out]: type 'float'
                  +
                  +
                  +

                  + A boolean, or bool, is a binary variable. Its value can only be True or False. It is useful when we do some logic operations, which would be covered in our next chapter. +

                  +
                  +
                  my_bool = False
                  +print(my_bool)
                  +[out]: False
                  +print(type(my_bool))
                  +[out]: type 'bool'
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/03 Basic Math Operations.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/03 Basic Math Operations.html new file mode 100755 index 0000000..997b322 --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/03 Basic Math Operations.html @@ -0,0 +1,19 @@ +

                  + The basic math operators in python are demonstrated below: +

                  + +
                  +
                  +print("Addition ", 1+1)
                  +print("Subtraction ", 5-2)
                  +print("Multiplication ", 2*3)
                  +print("Division", 10/2)
                  +print("exponent", 2**3)
                  +[out]:
                  +Addition  2
                  +Subtraction  3
                  +Multiplication  6
                  +Division  5
                  +exponent 8
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/04 Data Collections.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/04 Data Collections.html new file mode 100755 index 0000000..12a2744 --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/04 Data Collections.html @@ -0,0 +1,141 @@ +

                  List

                  +

                  +A list is an ordered collection of values. A list is mutable, which means you can change a list's value without changing the list itself. Creating a list is simply putting different comma-separated values between square brackets. +

                  +
                  +
                  my_list = ['Quant', 'Connect', 1,2,3]
                  +print(my_list)
                  +[out]: ['Quant', 'Connect', 1, 2, 3]
                  +
                  +
                  +

                  + The values in a list are called "elements". We can access list elements by indexing. Python index starts from 0. So if you have a list of length n, the index of the first element will be 0, and that of the last element will be n − 1. By the way, the length of a list can be obtained by the built-in function len(). +

                  +
                  +
                  my_list = ['Quant', 'Connect', 1,2,3]
                  +print(len(my_list))
                  +[out]: 5
                  +print(my_list[0])
                  +[out]: Quant
                  +print(my_list[len(my_list) - 1])
                  +[out]: 3
                  +
                  +
                  +

                  + You can also change the elements in the list by accessing an index and assigning a new value. +

                  +
                  +
                  my_list = ['Quant','Connect',1,2,3]
                  +my_list[2] = 'go'
                  +print(my_list)
                  +[out]: ['Quant', 'Connect', 'go', 2, 3]
                  +
                  +
                  +

                  + A list can also be sliced with a colon: +

                  +
                  +
                  my_list = ['Quant','Connect',1,2,3]
                  +print(my_list[1:3])
                  +[out]: ['Connect', 1]
                  +
                  +
                  +

                  + The slice starts from the first element indicated, but excludes the last element indicated. Here we select all elements starting from index 1, which refers to the second element: +

                  +
                  +
                  print(my_list[1:])
                  +[out]: ['Connect', 1, 2, 3]
                  +
                  +
                  +

                  + And all elements up to but excluding index 3: +

                  +
                  +
                  print(my_list[:3])
                  +[out]: ['Quant', 'Connect', 1]
                  +
                  +
                  +

                  + If you wish to add or remove an element from a list, you can use the append() and remove() methods for lists as follows: +

                  +
                  +
                  my_list = ['Hello', 'Quant']
                  +my_list.append('Hello')
                  +print(my_list)
                  +[out]: ['Hello', 'Quant', 'Hello']
                  +my_list.remove('Hello')
                  +print(my_list)
                  +[out]: ['Quant', 'Hello']
                  +
                  +
                  +

                  + When there are repeated instances of "Hello", the first one is removed. +

                  +

                  Tuple

                  +

                  + A tuple is a data structure type similar to a list. The difference is that a tuple is immutable, which means you can't change the elements in it once it's defined. We create a tuple by putting comma-separated values between parentheses. +

                  +
                  +
                  my_tuple = ('Welcome','to','QuantConnect')
                  +
                  +
                  +

                  + Just like a list, a tuple can be sliced by using index. +

                  +
                  +
                  my_tuple = ('Welcome','to','QuantConnect')
                  +print(my_tuple[1:])
                  +[out]: ('to', 'QuantConnect')
                  +
                  +
                  +

                  Set

                  +

                  + A set is an unordered collection with no duplicate elements. The built-in function set() can be used to create sets. +

                  +
                  +
                  stock_list = ['AAPL','GOOG','IBM','AAPL','IBM','FB','F','GOOG']
                  +stock_set = set(stock_list)
                  +print(stock_set)
                  +[out]: set(['GOOG', 'FB', 'AAPL', 'IBM', 'F'])
                  +
                  +
                  +

                  + Set is an easy way to remove duplicate elements from a list. +

                  +

                  Dictionary

                  +

                  + A dictionary is one of the most important data structures in Python. Unlike sequences which are indexed by integers, dictionaries are indexed by keys which can be either strings or floats. +

                  +

                  + A dictionary is an unordered collection of key : value pairs, with the requirement that the keys are unique. We create a dictionary by placing a comma-separated list of key : value pairs within the braces. +

                  +
                  +
                  my_dic = {'AAPL': 'Apple', 'FB': 'FaceBook', 'GOOG': 'Alphabet'}
                  +
                  +
                  +

                  + After defining a dictionary, we can access any value by indicating its key in brackets. +

                  +
                  +
                  print(my_dic['GOOG'])
                  +[out]: Alphabet
                  +
                  +
                  +

                  + We can also change the value associated with a specified key: +

                  +
                  +
                  my_dic['GOOG'] = 'Alphabet Company'
                  +print(my_dic['GOOG'])
                  +[out]: Alphabet Company
                  +
                  +
                  +

                  + The built-in method of the dictionary object dict.keys() returns a list of all the keys used in the dictionary. +

                  +
                  +
                  print(my_dic.keys())
                  +[out]: ['GOOG', 'AAPL', 'FB']
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/05 Common String Operations.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/05 Common String Operations.html new file mode 100755 index 0000000..0c25160 --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/05 Common String Operations.html @@ -0,0 +1,59 @@ +

                  +A string is an immutable sequence of characters. It can be sliced by index just like a tuple: +

                  +
                  +
                  my_str = 'Welcome to QuantConnect'
                  +print(my_str[8:])
                  +[out]: to QuantConnect
                  +
                  +
                  +

                  + There are many methods associated with strings. We can use string.count() to count the occurrences of a character in a string, use string.find() to return the index of a specific character, and use string.replace() to replace characters. +

                  +
                  +
                  +print("Counting the number of e's in this sentence".count('e'))
                  +[out]: 6
                  +print('The first time e appears in this sentence'.find('e'))
                  +[out]: 2
                  +print('all the a in this sentence now becomes e'.replace('a','e'))
                  +[out]: ell the e in this sentence now becomes e
                  +
                  +
                  +

                  + The most commonly used method for strings is string.split(). This method will split the string by the indicated character and return a list: +

                  +
                  +
                  Time = '2016-04-01 09:43:00'
                  +splited_list = Time.split(' ')
                  +date = splited_list[0]
                  +time = splited_list[1]
                  +print(date, time)
                  +[out]: 2016-04-01 09:43:00
                  +hour = time.split(':')[0]
                  +print(hour)
                  +[out]: 09
                  +
                  +
                  +

                  + We can replace parts of a string by our variable. This is called string formatting. +

                  +
                  +
                  my_time = 'Hour: {}, Minute: {}'.format(9, 43)
                  +print(my_time)
                  +[out]: Hour: 9, Minute: 43
                  +
                  +
                  +

                  + Another way to format a string is to use the % symbol. +

                  +
                  +
                  print 'pi is %f' % 3.14
                  +[out]: pi is 3.140000
                  +print('%s to %s' % ('Welcome', 'QuantConnect'))
                  +[out]: Welcome to QuantConnect
                  +
                  +
                  +

                  + %s is a placeholder that takes in a string. Similarly %f takes a float and %d takes an integer. +

                  diff --git a/05 Introduction to Financial Python[]/01 Data Types and Data Structures/06 Summary.html b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/06 Summary.html new file mode 100755 index 0000000..3bdfaa1 --- /dev/null +++ b/05 Introduction to Financial Python[]/01 Data Types and Data Structures/06 Summary.html @@ -0,0 +1,3 @@ +

                  + We have seen the basic data types and data structures in Python. It's important to keep practicing to become familiar with these data structures. In the next tutorial, we will cover for and while loops and logical operations in Python. +

                  diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/01 Introduction.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/01 Introduction.html new file mode 100755 index 0000000..e3e2862 --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + We discussed the basic data types and data structures in Python in the last tutorial. This chapter covers logical operations and loops in Python, which are very common in programming. +

                  diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial02 Logical Operations and Loops-checkpoint.ipynb b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations and Loops.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial02 Logical Operations and Loops-checkpoint.ipynb rename to 05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations and Loops.ipynb diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations.html new file mode 100755 index 0000000..983c12f --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations.html @@ -0,0 +1,62 @@ +

                  + Like most programming languages, Python has comparison operators: +

                  +
                  + +
                  print 1 == 0    # 1 equals 0
                  +print 1 == 1    # 1 equals 1
                  +print 1 != 0    # 1 is not equal to 0
                  +print 5 >= 5    # 5 is greater than or equal to 5
                  +print 5 >= 6    # 5 is greater than or equal to 6
                  +[out]:
                  +False
                  +True
                  +True
                  +True
                  +False
                  +
                  +
                  + +

                  + Each statement above has a boolean value, which must be either True or False, but not both. +

                  +

                  + We can combine simple statements P and Q to form complex statements using logical operators: +

                  +
                    +
                  • The statement "P and Q" is true if both P and Q are true, otherwise it is false.
                  • +
                  • The statement "P or Q" is false if both P and Q are false, otherwise it is true.
                  • +
                  • The statement "not P" is true if P is false, and vice versa.
                  • +
                  + +
                  + +
                  print 2 > 1 and 3 > 2
                  +print 2 > 1 and 3 < 2
                  +print 2 > 1 or  3 < 2
                  +print 2 < 1 and 3 < 2
                  +[out]:
                  +True
                  +False
                  +True
                  +False
                  +
                  +
                  + +

                  + When dealing with a very complex logical statement that involves in several statements, we can use brackets to separate and combine them. +

                  + +
                  + +
                  print (3 > 2 or 1 < 3) and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))
                  +print 3 > 2 or 1 < 3 and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))
                  +[out]:
                  +False
                  +True
                  +
                  +
                  + +

                  + Comparing the above two statements, we can see that it's wise to use brackets when we make a complex logical statement. +

                  diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/03 If Statement.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/03 If Statement.html new file mode 100755 index 0000000..98c8f4e --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/03 If Statement.html @@ -0,0 +1,51 @@ +

                  + An if statement executes a segment of code only if its condition is true. A standard if statement consists of 3 segments: if, elif and else. +

                  + +
                  +
                  +
                  +
                  if condition1:
                  +    # if condition1 is true, execute the code here
                  +    # and ignore the rest of this if statement
                  +elif condition2:
                  +    # if condition1 is false, and condition2 is true, execute the code here
                  +    # and ignore the rest of this if statement
                  +else:
                  +    # if none of the above conditions is True, execute the code here
                  +
                  +
                  + +

                  + An if statement doesn't necessarily has elif and else part. If it's not specified, the indented block of code will be executed when the condition is true, otherwise the whole if statement will be skipped. +

                  + +
                  +
                  +
                  +
                  i = 0
                  +if i == 0: print 'i == 0 is True'
                  +[out]: i==0 is True
                  +
                  +
                  + +

                  + As we mentioned above, we can write some complex statements here: +

                  + +
                  +
                  +
                  +
                  p = 1 > 0
                  +q = 2 > 3
                  +if p and q:
                  +    print 'p and q is true'
                  +elif p and not q:
                  +    print 'q is false'
                  +elif q and not p:
                  +    print 'p is false'
                  +else:
                  +    print 'None of p and q is true'
                  +[out]: q is false
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/04 Loop Structure.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/04 Loop Structure.html new file mode 100755 index 0000000..fe5b599 --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/04 Loop Structure.html @@ -0,0 +1,113 @@ +

                  + Loops are an essential part of programming. The "for" and "while" loops run a block of code repeatedly. +

                  + +

                  While Loop

                  + +

                  + A "while" loop will run repeatedly until a certain condition has been met. +

                  + +
                  +
                  +
                  +
                  i = 0
                  +while i < 5:
                  +    print i
                  +    i += 1
                  +[out]:
                  +0
                  +1
                  +2
                  +3
                  +4
                  +
                  +
                  + +

                  + When making a while loop, we need to ensure that something changes from iteration to iteration so that the while loop will terminate, otherwise, it will run forever. Here we used i += 1 (short for i = i + 1) to make i larger after each iteration. This is the most commonly used method to control a while loop. +

                  + +

                  For Loop

                  + +

                  + A "for" loop will iterate over a sequence of value and terminate when the sequence has ended. +

                  + +
                  +
                  +
                  +
                  for x in [1,2,3,4,5]: print x
                  +[out]:
                  +1
                  +2
                  +3
                  +4
                  +5
                  +
                  +
                  + +

                  + We can also add if statements in a for loop. Here is a real example from our pairs trading algorithm: +

                  + +
                  +
                  +
                  +
                  stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
                  +selected = ['AAPL','IBM']
                  +new_list = []
                  +for stock in stocks:
                  +    if stock not in selected:
                  +        new_list.append(stock)
                  +print new_list
                  +[out]: ['GOOG', 'FB', 'F', 'V', 'G', 'GE']
                  +
                  +
                  + +

                  + Here we iterated all the elements in the list 'stocks'. Later in this chapter, we will introduce a smarter way to do this, which is just a one-line code. +

                  + +

                  Break and continue

                  + +

                  + These are two commonly used commands in a for loop. If "break" is triggered while a loop is executing, the loop will terminate immediately: +

                  + +
                  +
                  +
                  +
                  stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
                  +for stock in stocks:
                  +    print stock
                  +    if stock == 'FB': break
                  +[out]:
                  +AAPL
                  +GOOG
                  +IBM
                  +FB
                  +
                  +
                  + +

                  + The "continue" command tells the loop to end this iteration and skip to the next iteration: +

                  + +
                  +
                  +
                  +
                  stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
                  +for stock in stocks:
                  +    if stock == 'FB': continue
                  +    print stock
                  +[out]:
                  +AAPL
                  +GOOG
                  +IBM
                  +F
                  +V
                  +G
                  +GE
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/05 List Comprehension.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/05 List Comprehension.html new file mode 100755 index 0000000..72537b0 --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/05 List Comprehension.html @@ -0,0 +1,63 @@ +

                  + List comprehension is a Pythonic way to create lists. Common applications are to make new lists where each element is the result of some operations applied to each member of another sequence. For example, if we want to create a list of squares using for loop: +

                  + +
                  +
                  +
                  +
                  squares = []
                  +for i in [1,2,3,4,5]:
                  +    squares.append(i**2)
                  +print squares
                  +[out]: [1, 4, 9, 16, 25]
                  +
                  +
                  + +

                  + Using list comprehension: +

                  + +
                  +
                  +
                  +
                  foo = [1,2,3,4,5]
                  +squares = [x**2 for x in foo]
                  +print squares
                  +[out]: [1, 4, 9, 16, 25]
                  +
                  +
                  + +

                  + Recall the example above where we used a for loop to select stocks. Here we use list comprehension: +

                  + +
                  +
                  +
                  +
                  stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
                  +selected = ['AAPL','IBM']
                  +new_list = [x for x in stocks if x not in selected]
                  +print new_list
                  +[out]: ['GOOG', 'FB', 'F', 'V', 'G', 'GE']
                  +
                  +
                  + +

                  + A list comprehension consists of square brackets containing an expression followed by a "for" clause, and possibly "for" or "if" clauses. For example: +

                  + +
                  +
                  +
                  +
                  print [(x, y) for x in [1,2,3] for y in [3,1,4] if x != y]
                  +print [str(x) + ' vs ' + str(y) for x in ['AAPL','GOOG','IBM','FB']
                  +                                for y in ['F','V','G','GE'] if x != y]
                  +[out]:
                  +[(1, 3), (1, 4), (2, 3), (2, 1), (2, 4), (3, 1), (3, 4)]
                  +['AAPL vs F', 'AAPL vs V', 'AAPL vs G', 'AAPL vs GE', 'GOOG vs F', 'GOOG vs V', 'GOOG vs G', 'GOOG vs GE', 'IBM vs F', 'IBM vs V', 'IBM vs G', 'IBM vs GE', 'FB vs F', 'FB vs V', 'FB vs G', 'FB vs GE']
                  +
                  +
                  + +

                  + List comprehension is an elegant way to organize one or more for loops when creating a list. +

                  diff --git a/05 Introduction to Financial Python[]/02 Logical Operations and Loops/06 Summary.html b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/06 Summary.html new file mode 100755 index 0000000..cb27d18 --- /dev/null +++ b/05 Introduction to Financial Python[]/02 Logical Operations and Loops/06 Summary.html @@ -0,0 +1,3 @@ +

                  + This chapter has introduced logical operations, loops, and list comprehension. In the next chapter, we will introduce functions and object-oriented programming, which will enable us to make our codes clean and versatile. +

                  diff --git a/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/01 Introduction.html b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/01 Introduction.html new file mode 100755 index 0000000..4bd9a07 --- /dev/null +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + In the last tutorial we introduced logical operations, loops and list comprehension. We will introduce functions and object-oriented programming in this chapter, which will enable us to build complex algorithms in more flexible ways. +

                  diff --git a/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/02 Functions.html b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/02 Functions.html new file mode 100755 index 0000000..dc8cd02 --- /dev/null +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/02 Functions.html @@ -0,0 +1,27 @@ +

                  + A function is a reusable block of code. We can use a function to output a value, or do anything else we want. We can easily define our own function by using the keyword "def". +

                  + +
                  +
                  +
                  +
                  def product(x,y):
                  +    return x*y
                  +print product(2,3)
                  +[out]: 6
                  +print product(5,10)
                  +[out]: 50
                  +
                  +
                  +

                  + The keyword "def" is followed by the function name and the parenthesized list of formal parameters. The statements that form the body of the function start at the next line, and must be indented. The product() function above has "x" and "y" as its parameters. A function doesn't necessarily have parameters: +

                  + +
                  + +
                  def say_hi():
                  +    print "Welcome to QuantConnect'
                  +say_hi()
                  +[out]: Welcome to QuantConnect
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Built-in Function.html b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Built-in Function.html new file mode 100755 index 0000000..69758bf --- /dev/null +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Built-in Function.html @@ -0,0 +1,115 @@ +

                  + range() is a function that creates a list containing an arithmetic sequence. It's often used in for loops. The arguments must be integers. If the "step" argument is omitted, it defaults to 1. +

                  + +
                  + +
                  +print range(10)
                  +[out]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
                  +print range(1, 11)
                  +[out]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
                  +print range(1, 11, 2)
                  +[out]: [1, 3, 5, 7, 9]
                  +
                  +
                  +

                  + len() is another function used together with range() to create a for loop. This function returns the length of an object. The argument must be a sequence or a collection. +

                  + +
                  + +
                  +tickers = ['AAPL', 'GOOGL', 'IBM', 'FB', 'F', 'V', 'G', 'GE']
                  +print "The number of tickers is {}".format(len(tickers))
                  +for k in range(len(tickers)):
                  +    print k + 1, tickers[k]
                  +[out]:
                  +The number of tickers is 8
                  +1 AAPL
                  +2 GOOGL
                  +3 IBM
                  +4 FB
                  +5 F
                  +6 V
                  +7 G
                  +8 GE
                  +
                  +
                  +

                  + Note: If you want to print only the tickers without those numbers, then simply write "for ticker in tickers: print ticker" +

                  + +map() is a function that applies a specific function to every item of a sequence or collection, and returns a list of the results. +
                  + +
                  tickers = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
                  +print(list(map(len,tickers)))
                  +[out]: [4, 5, 3, 2, 1, 1, 1, 2]
                  +
                  +
                  +

                  + The lambda operator is a way to create small anonymous functions. These functions are just needed where they have been created. For example: +

                  + +
                  + +
                  map(lambda x: x**2, range(10))
                  +[out]: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
                  +
                  +
                  + +

                  + map() can be applied to more than one list. The lists have to have the same length. +

                  + +
                  + +
                  map(lambda x, y: x+y, [1,2,3,4,5], [5,4,3,2,1])
                  +[out]: [6, 6, 6, 6, 6]
                  +
                  +
                  +sorted() takes a list or set and returns a new sorted list: +
                  + +
                  sorted([5,2,3,4,1])
                  +[out]: [1, 2, 3, 4, 5]
                  +
                  +
                  +

                  + We can add a "key" parameter to specify a function to be called on each list element prior to making comparisons. For example: +

                  + +
                  + +
                  price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
                  +sorted(price_list, key = lambda x: x[1])
                  +[out]:
                  +[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOGL', 911.71)]
                  +
                  +
                  +

                  + By default the values are sorted by ascending order. We can change it to descending by adding an optional parameter "reverse'. +

                  + +
                  + +
                  price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
                  +sorted(price_list, key = lambda x: x[1], reverse = True)
                  +[out]:
                  +[('GOOGL', 911.71), ('FB', 150), ('AAPL', 144.09), ('WMT', 75.32), ('MSFT', 69)]
                  +
                  +
                  +

                  + Lists also have a function list.sort(). This function takes the same "key" and "reverse" arguments as sorted(), but it doesn't return a new list. +

                  + +
                  + +
                  price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
                  +price_list.sort(key = lambda x: x[1])
                  +print price_list
                  +[out]:
                  +[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOGL', 911.71)]
                  +
                  +
                  diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial03 Functions and Objective-Oriented Programming-checkpoint.ipynb b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Functions and Objective-Oriented Programming.ipynb old mode 100644 new mode 100755 similarity index 75% rename from Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial03 Functions and Objective-Oriented Programming-checkpoint.ipynb rename to 05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Functions and Objective-Oriented Programming.ipynb index 08b35ef..261e947 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial03 Functions and Objective-Oriented Programming-checkpoint.ipynb +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/03 Functions and Objective-Oriented Programming.ipynb @@ -17,13 +17,13 @@ "source": [ "def product(x,y):\n", " return x*y\n", - "print product(2,3)\n", - "print product(5,10)" + "print(product(2,3))\n", + "print(product(5,10))" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -36,34 +36,34 @@ ], "source": [ "def say_hi():\n", - " print 'Welcome to QuantConnect'\n", + " print('Welcome to QuantConnect')\n", "say_hi()" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n", - "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\n", - "[1, 3, 5, 7, 9]\n" + "range(0, 10)\n", + "range(1, 11)\n", + "range(1, 11, 2)\n" ] } ], "source": [ - "print range(10)\n", - "print range(1,11)\n", - "print range(1,11,2)" + "print(range(10))\n", + "print(range(1,11))\n", + "print(range(1,11,2))" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -84,14 +84,14 @@ ], "source": [ "tickers = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "print 'The length of tickers is {}'.format(len(tickers))\n", + "print('The length of tickers is {}'.format(len(tickers)))\n", "for i in range(len(tickers)):\n", - " print tickers[i]" + " print(tickers[i])" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -104,12 +104,12 @@ ], "source": [ "tickers = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "print map(len,tickers)" + "print(list(map(len,tickers)))" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -118,18 +118,18 @@ "[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]" ] }, - "execution_count": 8, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "map(lambda x: x**2, range(10))" + "list(map(lambda x: x**2, range(10)))" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 13, "metadata": {}, "outputs": [ { @@ -138,18 +138,18 @@ "[6, 6, 6, 6, 6]" ] }, - "execution_count": 9, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "map(lambda x, y: x+y, [1,2,3,4,5],[5,4,3,2,1]) " + "list(map(lambda x, y: x+y, [1,2,3,4,5],[5,4,3,2,1]))" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -158,7 +158,7 @@ "[1, 2, 3, 4, 5]" ] }, - "execution_count": 10, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -169,7 +169,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -178,7 +178,7 @@ "[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOG', 911.71)]" ] }, - "execution_count": 11, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -190,7 +190,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -199,7 +199,7 @@ "[('GOOG', 911.71), ('FB', 150), ('AAPL', 144.09), ('WMT', 75.32), ('MSFT', 69)]" ] }, - "execution_count": 12, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -211,7 +211,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 19, "metadata": {}, "outputs": [ { @@ -225,15 +225,13 @@ "source": [ "price_list = [('AAPL',144.09),('GOOG',911.71),('MSFT',69),('FB',150),('WMT',75.32)]\n", "price_list.sort(key = lambda x: x[1])\n", - "print price_list" + "print(price_list)" ] }, { "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": true - }, + "execution_count": 20, + "metadata": {}, "outputs": [], "source": [ "class stock:\n", @@ -250,15 +248,13 @@ " self.rate_return = float(self.close)/self.open - 1\n", " \n", " def print_return(self):\n", - " print self.rate_return" + " print(self.rate_return)" ] }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, + "execution_count": 21, + "metadata": {}, "outputs": [], "source": [ "apple = stock('AAPL', 143.69, 144.09, 20109375)\n", @@ -267,15 +263,15 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.0144653388227\n", - "0.000657318141981\n" + "0.014465338822744034\n", + "0.0006573181419806673\n" ] } ], @@ -288,7 +284,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 23, "metadata": {}, "outputs": [ { @@ -297,7 +293,7 @@ "'Tim Cook'" ] }, - "execution_count": 7, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } @@ -309,15 +305,38 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['__doc__',\n", + "['__class__',\n", + " '__delattr__',\n", + " '__dict__',\n", + " '__dir__',\n", + " '__doc__',\n", + " '__eq__',\n", + " '__format__',\n", + " '__ge__',\n", + " '__getattribute__',\n", + " '__gt__',\n", + " '__hash__',\n", " '__init__',\n", + " '__init_subclass__',\n", + " '__le__',\n", + " '__lt__',\n", " '__module__',\n", + " '__ne__',\n", + " '__new__',\n", + " '__reduce__',\n", + " '__reduce_ex__',\n", + " '__repr__',\n", + " '__setattr__',\n", + " '__sizeof__',\n", + " '__str__',\n", + " '__subclasshook__',\n", + " '__weakref__',\n", " 'ceo',\n", " 'close',\n", " 'open',\n", @@ -328,7 +347,7 @@ " 'volume']" ] }, - "execution_count": 8, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -339,10 +358,8 @@ }, { "cell_type": "code", - "execution_count": 9, - "metadata": { - "collapsed": true - }, + "execution_count": 25, + "metadata": {}, "outputs": [], "source": [ "class child(stock):\n", @@ -352,7 +369,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 27, "metadata": {}, "outputs": [ { @@ -362,47 +379,38 @@ "aa\n", "100\n", "102\n", - "0.02\n", + "0.020000000000000018\n", "None\n" ] } ], "source": [ "aa = child('aa')\n", - "print aa.name\n", + "print(aa.name)\n", "aa.update(100,102)\n", - "print aa.open\n", - "print aa.close\n", - "print aa.print_return()" + "print(aa.open)\n", + "print(aa.close)\n", + "print(aa.print_return())" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/04 Object-Oriented Programming.html b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/04 Object-Oriented Programming.html new file mode 100755 index 0000000..b8b85ac --- /dev/null +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/04 Object-Oriented Programming.html @@ -0,0 +1,138 @@ +

                  + Python is an object-oriented programming language. It's important to understand the concept of "objects" because almost every kind of data from QuantConnect API is an object. +

                  + +

                  Class

                  +

                  + A class is a type of data, just like a string, float, or list. When we create an object of that data type, we call it an instance of a class. +

                  + +

                  + In Python, everything is an object - everything is an instance of some class. The data stored inside an object are called attributes, and the functions which are associated with the object are called methods. +

                  + +

                  + For example, as mentioned above, a list is an object of the "list" class, and it has a method list.sort(). +

                  + +

                  + We can create our own objects by defining a class. We would do this when it's helpful to group certain functions together. For example, we define a class named "Stock" here: +

                  + +
                  + +
                  class Stock:
                  +    def __init__(self, ticker, open, close, volume):
                  +        self.ticker = ticker
                  +        self.open = open
                  +        self.close = close
                  +        self.volume = volume
                  +        self.rate_return = float(close)/open - 1
                  +
                  +    def update(self, open, close):
                  +        self.open = open
                  +        self.close = close
                  +        self.rate_return = float(self.close)/self.open - 1
                  +
                  +    def print_return(self):
                  +        print self.rate_return
                  +
                  +
                  + +

                  + The "Stock" class has attributes "ticker", "open", "close", "volume" and "rate_return". Inside the class body, the first method is called __init__, which is a special method. When we create a new instance of the class, the __init__ method is immediately executed with all the parameters that we pass to the "Stock" object. The purpose of this method is to set up a new "Stock" object using data we have provided. +

                  + +

                  + Here we create two Stock objects named "apple" and "google". +

                  + +
                  + +
                  apple  = Stock('AAPL', 143.69, 144.09, 20109375)
                  +google = Stock('GOOGL', 898.7, 911.7, 1561616)
                  +
                  +
                  +

                  + Stock objects also have two other methods: update() and print_return(). We can access the attribues of a Stock object and call its methods: +

                  + +
                  + +
                  apple.ticker
                  +[out]: 'AAPL'
                  +google.print_return()
                  +[out]: 0.0144653388227
                  +google.update(912.8,913.4)
                  +google.print_return()
                  +[out]: 0.000657318141981
                  +
                  +
                  + +

                  + By calling the update() function, we updated the open and close prices of a stock. Please note that when we use the attributes or call the methods inside a class, we need to specify them as self.attribute or self.method(), otherwise Python will deem them as global variables and thus raise an error. +

                  + +

                  + We can add an attribute to an object anywhere: +

                  + +
                  + +
                  +apple.ceo = 'Tim Cook'
                  +apple.ceo
                  +[out]: 'Tim Cook'
                  +
                  +
                  +

                  + We can check what names (i.e. attributes and methods) are defined on an object using the dir() function: +

                  +
                  + +
                  dir(apple)
                  +[out]:
                  +['__doc__',
                  + '__init__',
                  + '__module__',
                  + 'ceo',
                  + 'close',
                  + 'open',
                  + 'print_return',
                  + 'rate_return',
                  + 'ticker',
                  + 'update',
                  + 'volume']
                  +
                  +
                  + +

                  Inheritance

                  + +

                  + Inheritance is a way of arranging classes in a hierarchy from the most general to the most specific. A "child" class is a more specific type of a "parent" class because a child class will inherit all the attribues and methods of its parent. For example, we define a class named "Child" which inherits "Stock": +

                  + +
                  + +
                  class Child(Stock):
                  +    def __init__(self, name):
                  +        self.name = name
                  +
                  +
                  +

                  + Then we create an object: +

                  +
                  + +
                  aa = Child('AA')
                  +print aa.name
                  +[out]: 'AA'
                  +aa.update(100, 102)
                  +print aa.open
                  +[out]: 100
                  +print aa.close
                  +[out]: 102
                  +print aa.print_return()
                  +[out]: 0.02
                  +
                  +As seen above, the new class Child has inherited the methods from Stock. diff --git a/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/05 Summary.html b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/05 Summary.html new file mode 100755 index 0000000..03fd971 --- /dev/null +++ b/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/05 Summary.html @@ -0,0 +1,7 @@ +

                  + In this chapter we have introduced functions and classes. When we write a QuantConnect algorithm, we would define our algorithm as a class (QCAlgorithm). This means our algorithm inherited the QC API methods from QCAlgorithm class. +

                  + +

                  + In the next chapter, we will introduce NumPy and Pandas, which enable us to conduct scientific calculations in Python. +

                  diff --git a/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/01 Introduction.html b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/01 Introduction.html new file mode 100755 index 0000000..3a2904f --- /dev/null +++ b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + Now that we have introduced the fundamentals of Python, it's time to learn about NumPy and Pandas. +

                  diff --git a/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/02 NumPy.html b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/02 NumPy.html new file mode 100755 index 0000000..3388671 --- /dev/null +++ b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/02 NumPy.html @@ -0,0 +1,102 @@ +

                  + NumPy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays. It also has strong integration with Pandas, which is another powerful tool for manipulating financial data. +

                  +

                  + Python packages like NumPy and Pandas contain classes and methods which we can use by importing the package: +

                  +
                  + +
                  import numpy as np
                  +
                  + +

                  Basic NumPy Arrays

                  + +

                  + A NumPy array is a grid of values, all of the same type, and is indexed by a tuple of nonnegative integers. Here we make an array by passing a list of Apple stock prices: +

                  + +
                  + +
                  price_list = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]
                  +price_array = np.array(price_list)
                  +print price_array, type(price_array)
                  +[out]: [ 143.73  145.83  143.68  144.02  143.5   142.62]
                  +<class 'numpy.ndarray'>
                  +
                  + +

                  + Notice that the type of array is "ndarray" which is a multi-dimensional array. If we pass np.array() a list of lists, it will create a 2-dimensional array. +

                  + +
                  + +
                  Ar = np.array([[1,3], [2,4]])
                  +print Ar, type(Ar)
                  +[out]: [[1 3]
                  +        [2 4]]
                  +<class 'numpy.ndarray'>
                  +
                  + +

                  + We get the dimensions of an ndarray using the .shape attribute: +

                  + +
                  + +
                  print Ar.shape
                  +[out]: (2, 2)
                  +
                  + +

                  + If we create an 2-dimensional array (i.e. matrix), each row can be accessed by index: +

                  + +
                  + +
                  print Ar[0]
                  +[out]: [1 3]
                  +print Ar[1]
                  +[out]: [2 4]
                  +
                  + +

                  + If we want to access the matrix by column instead: +

                  +
                  + +
                  print 'First column:', Ar[:,0]
                  +[out]: First column: [1 2]
                  +print 'Second column:', Ar[:,1]
                  +[out]: Second column: [3 4]
                  +
                  + +

                  Array Functions

                  + +

                  + Some functions built in NumPy that allow us to perform calculations on arrays. For example, we can apply the natural logarithm to each element of an array: +

                  +
                  + +
                  np.log(price_array)
                  +[out]: [4.96793654  4.98244156  4.9675886   4.96995218  4.96633504  4.96018375]
                  +
                  + +

                  + Other functions return a single value: +

                  + +
                  + +
                  np.mean(price_array)
                  +[out]: 143.896666667
                  +print np.std(price_array)
                  +[out]: 0.967379047852
                  +print np.sum(price_array)
                  +[out]: 863.38
                  +print np.max(price_array)
                  +[out]: 145.83
                  +
                  +
                  +

                  + The functions above return the mean, standard deviation, total and maximum value of an array. +

                  diff --git a/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/03 Pandas.html b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/03 Pandas.html new file mode 100755 index 0000000..e14f201 --- /dev/null +++ b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/03 Pandas.html @@ -0,0 +1,252 @@ +

                  + Pandas is one of the most powerful tools for dealing with financial data. First we need to import Pandas: +

                  + +
                  + +
                  import pandas as pd
                  +
                  + +

                  Series

                  + +

                  + Series is a one-dimensional labeled array capable of holding any data type (integers, strings, float, Python object, etc.) +

                  + +

                  + We create a Series by calling pd.Series(data), where data can be a dictionary, an array or just a scalar value. +

                  + +
                  + +
                  price = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]
                  +s = pd.Series(price)
                  +print s
                  +
                  +0    143.73
                  +1    145.83
                  +2    143.68
                  +3    144.02
                  +4    143.50
                  +5    142.62
                  +
                  + +

                  + We can customize the indices of a new Series: +

                  + +
                  + +
                  s = pd.Series(price, index = ['a', 'b', 'c', 'd', 'e', 'f'])
                  +print s
                  +
                  +a    143.73
                  +b    145.83
                  +c    143.68
                  +d    144.02
                  +e    143.50
                  +f    142.62
                  +
                  + +

                  + Or we can change the indices of an existing Series: +

                  +
                  + +
                  s.index = [6,5,4,3,2,1]
                  +print s
                  +
                  +6    143.73
                  +5    145.83
                  +4    143.68
                  +3    144.02
                  +2    143.50
                  +1    142.62
                  +
                  + +

                  + Series is like a list since it can be sliced by index: +

                  +
                  + +
                  print s[1:]
                  +print s[:-2]
                  +
                  +5    145.83
                  +4    143.68
                  +3    144.02
                  +2    143.50
                  +1    142.62
                  +dtype: float64
                  +6    143.73
                  +5    145.83
                  +4    143.68
                  +3    144.02
                  +dtype: float64
                  +
                  + +

                  + Series is also like a dictionary whose values can be set or fetched by index label: +

                  + +
                  + +
                  print s[4]
                  +s[4] = 0
                  +print s
                  +
                  +143.68
                  +6    143.73
                  +5    145.83
                  +4      0.00
                  +3    144.02
                  +2    143.50
                  +1    142.62
                  +dtype: float64
                  +
                  + +

                  + Series can also have a name attribute, which will be used when we make up a Pandas DataFrame using several series. +

                  + +
                  + +
                  s = pd.Series(price, name = 'Apple Prices')
                  +print s
                  +print s.name
                  +
                  +0    143.73
                  +1    145.83
                  +2    143.68
                  +3    144.02
                  +4    143.50
                  +5    142.62
                  +Name: Apple Prices, dtype: float64
                  +Apple Prices
                  +
                  + +

                  + We can get the statistical summaries of a Series: +

                  + +
                  + +
                  print s.describe()
                  +
                  +count      6.000000
                  +mean     143.896667
                  +std        1.059711
                  +min      142.620000
                  +25%      143.545000
                  +50%      143.705000
                  +75%      143.947500
                  +max      145.830000
                  +
                  + +

                  Time Index

                  + +

                  + Pandas has a built-in function specifically for creating date indices: pd.date_range(). We use it to create a new index for our Series: +

                  + +
                  + +
                  time_index = pd.date_range('2017-01-01', periods = len(s), freq = 'D')
                  +print time_index
                  +s.index = time_index
                  +print s
                  +
                  +DatetimeIndex(['2017-01-01', '2017-01-02', '2017-01-03', '2017-01-04',
                  +               '2017-01-05', '2017-01-06'],
                  +              dtype='datetime64[ns]', freq='D')
                  +2017-01-01    143.73
                  +2017-01-02    145.83
                  +2017-01-03    143.68
                  +2017-01-04    144.02
                  +2017-01-05    143.50
                  +2017-01-06    142.62
                  +Freq: D, Name: Apple Prices, dtype: float64
                  +
                  + +

                  + Series are usually accessed using the iloc[] and loc[] methods. iloc[] is used to access elements by integer index, and loc[] is used to access the index of the series. +

                  + +

                  + iloc[] is necessary when the index of a series are integers, take our previous defined series as example: +

                  + +
                  + +
                  s.index = [6,5,4,3,2,1]
                  +print s
                  +print s[1]
                  +
                  +6    143.73
                  +5    145.83
                  +4    143.68
                  +3    144.02
                  +2    143.50
                  +1    142.62
                  +Name: Apple Prices, dtype: float64
                  +142.62
                  +
                  + +

                  + If we intended to take the second element of the series, we would make a mistake here, because the index are integers. In order to access to the element we want, we use iloc[] here: +

                  + +
                  + +
                  print s.iloc[1]
                  +[out]: 145.83
                  +
                  +
                  + +

                  + While working with time series data, we often use time as the index. Pandas provides us with various methods to access the data by time index. +

                  + +
                  + +
                  s.index = time_index
                  +print s['2017-01-03']
                  +[out]: 143.68
                  +
                  + +

                  + We can even access to a range of dates: +

                  + +
                  + +
                  print s['2017-01-02':'2017-01-05']
                  +
                  +2017-01-02    145.83
                  +2017-01-03    143.68
                  +2017-01-04    144.02
                  +2017-01-05    143.50
                  +Freq: D, Name: Apple Prices, dtype: float64
                  +
                  + +

                  + Series[] provides us a very flexible way to index data. We can add any condition in the square brackets: +

                  + +
                  + +
                  print s[s < np.mean(s)]
                  +print s[(s > np.mean(s)) & (s < np.mean(s) + 1.64*np.std(s))]
                  +
                  +2017-01-01    143.73
                  +2017-01-03    143.68
                  +2017-01-05    143.50
                  +2017-01-06    142.62
                  +Name: Apple Prices, dtype: float64
                  +2017-01-04    144.02
                  +Freq: D, Name: Apple Price List, dtype: float64
                  +
                  + +

                  + As demonstrated, we can use logical operators like & (and), | (or) and ~ (not) to group multiple conditions. +

                  diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.ipynb b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 NumPy and Basic Pandas.ipynb old mode 100644 new mode 100755 similarity index 74% rename from Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.ipynb rename to 05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 NumPy and Basic Pandas.ipynb index 2119ec7..32fd4f9 --- a/Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.ipynb +++ b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 NumPy and Basic Pandas.ipynb @@ -2,10 +2,8 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, - "metadata": { - "collapsed": true - }, + "execution_count": 2, + "metadata": {}, "outputs": [], "source": [ "import numpy as np" @@ -20,14 +18,14 @@ "name": "stdout", "output_type": "stream", "text": [ - "[ 143.73 145.83 143.68 144.02 143.5 142.62] \n" + "[143.73 145.83 143.68 144.02 143.5 142.62] \n" ] } ], "source": [ "price_list = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]\n", "price_array = np.array(price_list)\n", - "print price_array, type(price_array)" + "print(price_array, type(price_array))" ] }, { @@ -40,13 +38,13 @@ "output_type": "stream", "text": [ "[[1 3]\n", - " [2 4]] \n" + " [2 4]] \n" ] } ], "source": [ "Ar = np.array([[1,3],[2,4]])\n", - "print Ar, type(Ar)" + "print(Ar, type(Ar))" ] }, { @@ -63,7 +61,7 @@ } ], "source": [ - "print Ar.shape" + "print(Ar.shape)" ] }, { @@ -81,8 +79,8 @@ } ], "source": [ - "print Ar[0]\n", - "print Ar[1]" + "print(Ar[0])\n", + "print(Ar[1])" ] }, { @@ -100,8 +98,8 @@ } ], "source": [ - "print 'the first column: ', Ar[:,0]\n", - "print 'the second column: ', Ar[:,1]" + "print('the first column: ', Ar[:,0])\n", + "print('the second column: ', Ar[:,1])" ] }, { @@ -118,38 +116,36 @@ } ], "source": [ - "print np.log(price_array) " + "print(np.log(price_array))" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "143.896666667\n", - "0.967379047852\n", + "143.89666666666668\n", + "0.9673790478515796\n", "863.38\n", "145.83\n" ] } ], "source": [ - "print np.mean(price_array)\n", - "print np.std(price_array)\n", - "print np.sum(price_array)\n", - "print np.max(price_array)" + "print(np.mean(price_array))\n", + "print(np.std(price_array))\n", + "print(np.sum(price_array))\n", + "print(np.max(price_array))" ] }, { "cell_type": "code", - "execution_count": 10, - "metadata": { - "collapsed": true - }, + "execution_count": 9, + "metadata": {}, "outputs": [], "source": [ "import pandas as pd" @@ -157,80 +153,89 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 143.73\n", - "1 145.83\n", - "2 143.68\n", - "3 144.02\n", - "4 143.50\n", - "5 142.62\n", - "dtype: float64\n" - ] + "data": { + "text/plain": [ + "0 143.73\n", + "1 145.83\n", + "2 143.68\n", + "3 144.02\n", + "4 143.50\n", + "5 142.62\n", + "dtype: float64" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ "price = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]\n", "s = pd.Series(price)\n", - "print s" + "s" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "a 143.73\n", - "b 145.83\n", - "c 143.68\n", - "d 144.02\n", - "e 143.50\n", - "f 142.62\n", - "dtype: float64\n" - ] + "data": { + "text/plain": [ + "a 143.73\n", + "b 145.83\n", + "c 143.68\n", + "d 144.02\n", + "e 143.50\n", + "f 142.62\n", + "dtype: float64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ "s = pd.Series(price,index = ['a','b','c','d','e','f'])\n", - "print s" + "s" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "6 143.73\n", - "5 145.83\n", - "4 143.68\n", - "3 144.02\n", - "2 143.50\n", - "1 142.62\n", - "dtype: float64\n" - ] + "data": { + "text/plain": [ + "6 143.73\n", + "5 145.83\n", + "4 143.68\n", + "3 144.02\n", + "2 143.50\n", + "1 142.62\n", + "dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ "s.index = [6,5,4,3,2,1]\n", - "print s" + "s" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "metadata": {}, "outputs": [ { @@ -252,13 +257,13 @@ } ], "source": [ - "print s[1:]\n", - "print s[:-2]" + "print(s[1:])\n", + "print(s[:-2])" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -277,14 +282,14 @@ } ], "source": [ - "print s[4]\n", + "print(s[4])\n", "s[4] = 0\n", - "print s" + "print(s)" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -304,13 +309,13 @@ ], "source": [ "s = pd.Series(price, name = 'Apple Price List')\n", - "print s\n", - "print s.name" + "print(s)\n", + "print(s.name)" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -332,14 +337,14 @@ ], "source": [ "time_index = pd.date_range('2017-01-01',periods = len(s),freq = 'D')\n", - "print time_index\n", + "print(time_index)\n", "s.index = time_index\n", - "print s" + "print(s)" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -359,13 +364,13 @@ ], "source": [ "s.index = [6,5,4,3,2,1]\n", - "print s\n", - "print s[1]" + "print(s)\n", + "print(s[1])" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -377,7 +382,7 @@ } ], "source": [ - "print s.iloc[1]" + "print(s.iloc[1])" ] }, { @@ -395,7 +400,7 @@ ], "source": [ "s.index = time_index\n", - "print s['2017-01-03']" + "print(s['2017-01-03'])" ] }, { @@ -416,60 +421,56 @@ } ], "source": [ - "print s['2017-01-02':'2017-01-05']" + "print(s['2017-01-02':'2017-01-05'])" ] }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2017-01-01 143.73\n", - "2017-01-03 143.68\n", - "2017-01-05 143.50\n", - "2017-01-06 142.62\n", + "6 143.73\n", + "4 143.68\n", + "2 143.50\n", + "1 142.62\n", "Name: Apple Price List, dtype: float64\n", - "2017-01-04 144.02\n", - "Freq: D, Name: Apple Price List, dtype: float64\n" + "[6 False\n", + "5 False\n", + "4 False\n", + "3 True\n", + "2 False\n", + "1 False\n", + "Name: Apple Price List, dtype: bool]\n" ] } ], "source": [ - "print s[s < np.mean(s)] \n", - "print s[(s > np.mean(s)) & (s < np.mean(s) + 1.64*np.std(s))]" + "print(s[s < np.mean(s)] )\n", + "print([(s > np.mean(s)) & (s < np.mean(s) + 1.64*np.std(s))])" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 Summary.html b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 Summary.html new file mode 100755 index 0000000..10dcaf9 --- /dev/null +++ b/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 Summary.html @@ -0,0 +1,3 @@ +

                  + Here we have introduced NumPy and Pandas for scientific computing in Python. In the next chapter, we will dive into Pandas to learn resampling and manipulating Pandas DataFrame, which are commonly used in financial data analysis. +

                  diff --git a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/01 Introduction.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/01 Introduction.html new file mode 100755 index 0000000..b99780b --- /dev/null +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/01 Introduction.html @@ -0,0 +1,3 @@ +

                  + In the last chapter we had a glimpse of Pandas. In this chapter we will learn about resampling methods and the DataFrame object, which is a powerful tool for financial data analysis. +

                  diff --git a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html new file mode 100755 index 0000000..181f0fc --- /dev/null +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html @@ -0,0 +1,98 @@ +

                  + Here we use the Quandl API to retrieve data... +

                  +
                  + +
                  import quandl
                  +quandl.ApiConfig.api_key = 'dRQxJ15_2nrLznxr1Nn4'
                  +
                  +
                  +

                  + We will create a Series named "aapl" whose values are Apple's daily closing prices, which are of course indexed by dates: +

                  +
                  + +
                  aapl_table = quandl.get('WIKI/AAPL')
                  +aapl = aapl_table['Adj. Close']['2017']
                  +print aapl
                  +
                  +
                  + +

                  + Recall that we can fetch a specific data point using series['yyyy-mm-dd']. We can also fetch the data in a specific month using series['yyyy-mm']. +

                  +
                  + +
                  print aapl['2017-3']
                  +Date
                  +2017-03-01    138.657681
                  +2017-03-02    137.834404
                  +2017-03-03    138.647762
                  +2017-03-06    138.211326
                  +2017-03-07    138.389868
                  +2017-03-08    137.874080
                  +2017-03-09    137.556672
                  +2017-03-10    138.012946
                  +2017-03-13    138.072460
                  +2017-03-14    137.864161
                  +2017-03-15    139.322254
                  +2017-03-16    139.550391
                  +2017-03-17    138.856061
                  +2017-03-20    140.314154
                  +2017-03-21    138.707276
                  +2017-03-22    140.274478
                  +2017-03-23    139.778528
                  +2017-03-24    139.500796
                  +2017-03-27    139.738852
                  +2017-03-28    142.635200
                  +2017-03-29    142.952608
                  +2017-03-30    142.764147
                  +2017-03-31    142.496334
                  +
                  +
                  + +

                  + Or in several consecutive months: +

                  +
                  + +
                  aapl['2017-2':'2017-4']
                  +
                  +
                  + +

                  + .head(N) and .tail(N) are methods for quickly accessing the first or last N elements. +

                  +
                  + +
                  print aapl.head()
                  +print aapl.tail(10)
                  +
                  +
                  +

                  + The output: +

                  +
                  + +
                  +Date
                  +2017-01-03    114.715378
                  +2017-01-04    114.586983
                  +2017-01-05    115.169696
                  +2017-01-06    116.453639
                  +2017-01-09    117.520300
                  +Name: Adj. Close, dtype: float64
                  +Date
                  +2017-08-08    159.433108
                  +2017-08-09    160.409148
                  +2017-08-10    155.270000
                  +2017-08-11    157.480000
                  +2017-08-14    159.850000
                  +2017-08-15    161.600000
                  +2017-08-16    160.950000
                  +2017-08-17    157.870000
                  +2017-08-18    157.500000
                  +2017-08-21    157.210000
                  +Name: Adj. Close, dtype: float64
                  +
                  +
                  diff --git a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/03 Resampling.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/03 Resampling.html new file mode 100755 index 0000000..dc555b3 --- /dev/null +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/03 Resampling.html @@ -0,0 +1,218 @@ +

                  + series.resample(freq) is a class called "DatetimeIndexResampler" which groups data in a Series object into regular time intervals. The argument "freq" determines the length of each interval. +

                  +

                  + series.resample.mean() is a complete statement that groups data into intervals, and then compute the mean of each interval. For example, if we want to aggregate the daily data into monthly data by mean: +

                  +
                  + +
                  by_month = aapl.resample('M').mean()
                  +print by_month
                  +Date
                  +2017-01-31    118.093136
                  +2017-02-28    132.456268
                  +2017-03-31    139.478802
                  +2017-04-30    141.728436
                  +2017-05-31    151.386305
                  +2017-06-30    147.233064
                  +2017-07-31    147.706190
                  +2017-08-31    157.444303
                  +
                  +
                  + +

                  + We can also aggregate the data by week: +

                  + +
                  + +
                  by_week = aapl.resample('W').mean()
                  +print by_week.head()
                  +
                  +Date
                  +2017-01-31    120.932434
                  +2017-02-28    136.551200
                  +2017-03-31    143.532630
                  +2017-04-30    144.179981
                  +2017-05-31    156.100000
                  +2017-06-30    155.450000
                  +2017-07-31    153.460000
                  +
                  +
                  + +

                  + We can choose almost any frequency by using the format 'nf', where 'n' is an integer and 'f' is M for month, W for week and D for day. +

                  +
                  + +
                  three_day = aapl.resample('3D').mean()
                  +two_week  = aapl.resample('2W').mean()
                  +two_month = aapl.resample('2M').mean()
                  +
                  +
                  + +

                  + Besides the mean() method, other methods can also be used with the resampler: +

                  + +
                  + +
                  std = aapl.resample('W').std()    # standard deviation
                  +max = aapl.resample('W').max()    # maximum value
                  +min = aapl.resample('W').min()    # minimum value
                  +
                  +
                  + +

                  + Often we want to calculate monthly returns of a stock, based on prices on the last day of each month. To fetch those prices, we use the series.resample.agg() method: +

                  + +
                  + +
                  last_day = aapl.resample('M').agg(lambda x: x[-1])
                  +print last_day
                  +Date
                  +2017-01-31    119.851150
                  +2017-02-28    135.880362
                  +2017-03-31    142.496334
                  +2017-04-30    142.486415
                  +2017-05-31    152.142689
                  +2017-06-30    143.438008
                  +2017-07-31    148.248489
                  +2017-08-31    157.210000
                  +
                  +
                  + +

                  + Or directly calculate the monthly rates of return using the data for the first day and the last day: +

                  + +
                  + +
                  monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[1] - 1)
                  +print monthly_return
                  +
                  +Date
                  +2017-01-31    0.045940
                  +2017-02-28    0.070409
                  +2017-03-31    0.033823
                  +2017-04-30   -0.007736
                  +2017-05-31    0.039829
                  +2017-06-30   -0.073528
                  +2017-07-31    0.033035
                  +2017-08-31    0.004505
                  +
                  +
                  + +

                  + Series object also provides us some convenient methods to do some quick calculation. +

                  + +
                  + +
                  print monthly_return.mean()
                  +print monthly_return.std()
                  +print monthly_return.max()
                  +[out]: 0.0208974076157
                  +       0.0476398315185
                  +       0.0704090212384
                  +
                  +
                  + +

                  + Another two methods frequently used on Series are .diff() and .pct_change(). The former calculates the difference between consecutive elements, and the latter calculates the percentage change. +

                  +
                  + +
                  print last_day.diff()
                  +print last_day.pct_change()
                  +
                  +Date
                  +2017-01-31          NaN
                  +2017-02-28    16.029211
                  +2017-03-31     6.615972
                  +2017-04-30    -0.009919
                  +2017-05-31     9.656274
                  +2017-06-30    -8.704681
                  +2017-07-31     4.810482
                  +2017-08-31     8.961511
                  +Freq: M, Name: Adj. Close, dtype: float64
                  +Date
                  +2017-01-31         NaN
                  +2017-02-28    0.133743
                  +2017-03-31    0.048690
                  +2017-04-30   -0.000070
                  +2017-05-31    0.067770
                  +2017-06-30   -0.057214
                  +2017-07-31    0.033537
                  +2017-08-31    0.060449
                  +
                  +
                  + +

                  + Notice that we induced a NaN value while calculating percentage changes i.e. returns. +

                  + +

                  + When dealing with NaN values, we usually either removing the data point or fill it with a specific value. Here we fill it with 0: +

                  + +
                  + +
                  daily_return = last_day.pct_change()
                  +print daily_return.fillna(0)
                  +
                  +Date
                  +2017-01-31    0.000000
                  +2017-02-28    0.133743
                  +2017-03-31    0.048690
                  +2017-04-30   -0.000070
                  +2017-05-31    0.067770
                  +2017-06-30   -0.057214
                  +2017-07-31    0.033537
                  +2017-08-31    0.060449
                  +
                  +
                  + +

                  + Alternatively, we can fill a NaN with the next fitted value. This is called 'backward fill', or 'bfill' in short: +

                  +
                  + +
                  daily_return = last_day.pct_change()
                  +print daily_return.fillna(method = 'bfill')
                  +
                  +Date
                  +2017-01-31    0.133743
                  +2017-02-28    0.133743
                  +2017-03-31    0.048690
                  +2017-04-30   -0.000070
                  +2017-05-31    0.067770
                  +2017-06-30   -0.057214
                  +2017-07-31    0.033537
                  +2017-08-31    0.060449
                  +
                  +
                  + +

                  + As expected, since there is a 'backward fill' method, there must be a 'forward fill' method, or 'ffill' in short. However we can't use it here because the NaN is the first value. +

                  + +

                  + We can also simply remove NaN values by .dropna() +

                  + +
                  + +
                  daily_return = last_day.pct_change().dropna()
                  +print daily_return
                  +
                  +Date
                  +2017-02-28    0.133743
                  +2017-03-31    0.048690
                  +2017-04-30   -0.000070
                  +2017-05-31    0.067770
                  +2017-06-30   -0.057214
                  +2017-07-31    0.038050
                  +
                  +
                  diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/04 DataFrame.html old mode 100644 new mode 100755 similarity index 53% rename from Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.html rename to 05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/04 DataFrame.html index 7805251..1a716b7 --- a/Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.html +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/04 DataFrame.html @@ -1,247 +1,44 @@ -In the last chapter we had a glimpse of Pandas. In this chapter we will learn about resampling methods and the DataFrame object, which is a powerful tool for financial data analysis. - -Here we use data from the yahoo_finance API. -
                  import quandl
                  -quandl.ApiConfig.api_key = 'dRQxJ15_2nrLznxr1Nn4'
                  - -We will create a Series named "aapl" whose values are Apple's daily closing prices, which are of course indexed by dates: -
                  aapl_table = quandl.get('WIKI/AAPL')
                  -aapl = aapl_table['Adj. Close']['2017']
                  -print aapl
                  - -Recall that we can fetch a specific data point using series['yyyy-mm-dd']. We can also fetch the data in a specific month using series['yyyy-mm']. -
                  print aapl['2017-3']
                  -Date
                  -2017-03-01    138.657681
                  -2017-03-02    137.834404
                  -2017-03-03    138.647762
                  -2017-03-06    138.211326
                  -2017-03-07    138.389868
                  -2017-03-08    137.874080
                  -2017-03-09    137.556672
                  -2017-03-10    138.012946
                  -2017-03-13    138.072460
                  -2017-03-14    137.864161
                  -2017-03-15    139.322254
                  -2017-03-16    139.550391
                  -2017-03-17    138.856061
                  -2017-03-20    140.314154
                  -2017-03-21    138.707276
                  -2017-03-22    140.274478
                  -2017-03-23    139.778528
                  -2017-03-24    139.500796
                  -2017-03-27    139.738852
                  -2017-03-28    142.635200
                  -2017-03-29    142.952608
                  -2017-03-30    142.764147
                  -2017-03-31    142.496334
                  - -Or in several consecutive months: -
                  aapl['2017-2':'2017-4']
                  - -.head(N) and .tail(N) are methods for quickly accessing the first or last N elements. -
                  print aapl.head()
                  -print aapl.tail(10)
                  - -The output: -
                  -Date
                  -2017-01-03    114.715378
                  -2017-01-04    114.586983
                  -2017-01-05    115.169696
                  -2017-01-06    116.453639
                  -2017-01-09    117.520300
                  -Name: Adj. Close, dtype: float64
                  -Date
                  -2017-08-08    159.433108
                  -2017-08-09    160.409148
                  -2017-08-10    155.270000
                  -2017-08-11    157.480000
                  -2017-08-14    159.850000
                  -2017-08-15    161.600000
                  -2017-08-16    160.950000
                  -2017-08-17    157.870000
                  -2017-08-18    157.500000
                  -2017-08-21    157.210000
                  -Name: Adj. Close, dtype: float64
                  - -

                  Resampling

                  - -series.resample(freq) is a class called "DatetimeIndexResampler" which groups data in a Series object into regular time intervals. The argument "freq" determines the length of each interval. - -series.resample.mean() is a complete statement that groups data into intervals, and then compute the mean of each interval. For example, if we want to aggregate the daily data into monthly data by mean: -
                  by_month = aapl.resample('M').mean()
                  -print by_month
                  -
                  -Date
                  -2017-01-31    118.093136
                  -2017-02-28    132.456268
                  -2017-03-31    139.478802
                  -2017-04-30    141.728436
                  -2017-05-31    151.386305
                  -2017-06-30    147.233064
                  -2017-07-31    147.706190
                  -2017-08-31    157.444303
                  - -We can also aggregate the data by week: -
                  by_week = aapl.resample('W').mean()
                  -print by_week.head()
                  -
                  -Date
                  -2017-01-31    120.932434
                  -2017-02-28    136.551200
                  -2017-03-31    143.532630
                  -2017-04-30    144.179981
                  -2017-05-31    156.100000
                  -2017-06-30    155.450000
                  -2017-07-31    153.460000
                  - -We can choose almost any frequency by using the format 'nf', where 'n' is an integer and 'f' is M for month, W for week and D for day. -
                  three_day = aapl.resample('3D').mean()
                  -two_week  = aapl.resample('2W').mean()
                  -two_month = aapl.resample('2M').mean()
                  - -Besides the mean() method, other methods can also be used with the resampler: -
                  std = aapl.resample('W').std()    # standard deviation
                  -max = aapl.resample('W').max()    # maximum value
                  -min = aapl.resample('W').min()    # minimum value
                  - -OFten we want to calculate monthly returns of a stock, based on prices on the last day of each month. To fetch those prices, we use the series.resample.agg() method: -
                  last_day = aapl.resample('M').agg(lambda x: x[-1])
                  -print last_day
                  -
                  -Date
                  -2017-01-31    119.851150
                  -2017-02-28    135.880362
                  -2017-03-31    142.496334
                  -2017-04-30    142.486415
                  -2017-05-31    152.142689
                  -2017-06-30    143.438008
                  -2017-07-31    148.248489
                  -2017-08-31    157.210000
                  - -Or directly calculate the monthly rates of return using the data for the first day and the last day: -
                  monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[1] - 1)
                  -print monthly_return
                  -
                  -Date
                  -2017-01-31    0.045940
                  -2017-02-28    0.070409
                  -2017-03-31    0.033823
                  -2017-04-30   -0.007736
                  -2017-05-31    0.039829
                  -2017-06-30   -0.073528
                  -2017-07-31    0.033035
                  -2017-08-31    0.004505
                  - -Series object also provides us some convenient methods to do some quick calculation. -
                  print monthly_return.mean()
                  -print monthly_return.std()
                  -print monthly_return.max()
                  -[out]: 0.0208974076157
                  -       0.0476398315185
                  -       0.0704090212384
                  - -Another two methods frequently used on Series are .diff() and .pct_change(). The former calculates the difference between consecutive elements, and the latter calculates the percentage change. -
                  print last_day.diff()
                  -print last_day.pct_change()
                  -
                  -Date
                  -2017-01-31          NaN
                  -2017-02-28    16.029211
                  -2017-03-31     6.615972
                  -2017-04-30    -0.009919
                  -2017-05-31     9.656274
                  -2017-06-30    -8.704681
                  -2017-07-31     4.810482
                  -2017-08-31     8.961511
                  -Freq: M, Name: Adj. Close, dtype: float64
                  -Date
                  -2017-01-31         NaN
                  -2017-02-28    0.133743
                  -2017-03-31    0.048690
                  -2017-04-30   -0.000070
                  -2017-05-31    0.067770
                  -2017-06-30   -0.057214
                  -2017-07-31    0.033537
                  -2017-08-31    0.060449
                  - -Notice that we induced a NaN value while calculating percentage changes i.e. returns. - -When dealing with NaN values, we usually either removing the data point or fill it with a specific value. Here we fill it with 0: -
                  daily_return = last_day.pct_change()
                  -print daily_return.fillna(0)
                  -
                  -Date
                  -2017-01-31    0.000000
                  -2017-02-28    0.133743
                  -2017-03-31    0.048690
                  -2017-04-30   -0.000070
                  -2017-05-31    0.067770
                  -2017-06-30   -0.057214
                  -2017-07-31    0.033537
                  -2017-08-31    0.060449
                  - -Alternatively, we can fill a NaN with the next fitted value. This is called 'backward fill', or 'bfill' in short: -
                  daily_return = last_day.pct_change()
                  -print daily_return.fillna(method = 'bfill')
                  -
                  -Date
                  -2017-01-31    0.133743
                  -2017-02-28    0.133743
                  -2017-03-31    0.048690
                  -2017-04-30   -0.000070
                  -2017-05-31    0.067770
                  -2017-06-30   -0.057214
                  -2017-07-31    0.033537
                  -2017-08-31    0.060449
                  - -As expected, since there is a 'backward fill' method, there must be a 'forward fill' method, or 'ffill' in short. However we can't use it here because the NaN is the first value. - -We can also simply remove NaN values by .dropna() -
                  daily_return = last_day.pct_change().dropna()
                  -print daily_return
                  -
                  -Date
                  -2017-02-28    0.133743
                  -2017-03-31    0.048690
                  -2017-04-30   -0.000070
                  -2017-05-31    0.067770
                  -2017-06-30   -0.057214
                  -2017-07-31    0.038050
                  - -

                  DataFrame

                  - -The DataFrame is the most commonly used data structure in Pandas. It is essentially a table, just like an Excel spreadsheet. - -More precisely, a DataFrame is a collection of Series objects, each of which may contain different data types. A DataFrame can be created from various data types: dictionary, 2-D numpy.ndarray, a Series or another DataFrame. - -

                  Create DataFrames

                  - -The most common method of creating a DataFrame is passing a dictionary: -
                  dict = {'AAPL': [143.5,  144.09, 142.73, 144.18, 143.77],
                  +

                  + The DataFrame is the most commonly used data structure in Pandas. It is essentially a table, just like an Excel spreadsheet. +

                  +

                  + More precisely, a DataFrame is a collection of Series objects, each of which may contain different data types. A DataFrame can be created from various data types: dictionary, 2-D numpy.ndarray, a Series or another DataFrame. +

                  +

                  Create DataFrames

                  +

                  + The most common method of creating a DataFrame is passing a dictionary: +

                  +
                  + +
                  dict = {'AAPL': [143.5,  144.09, 142.73, 144.18, 143.77],
                           'GOOG': [898.7,  911.71, 906.69, 918.59, 926.99],
                           'IBM':  [155.58, 153.67, 152.36, 152.94, 153.49]}
                   dates = pd.date_range('2017-07-03', periods = 5, freq = 'D')
                   df = pd.DataFrame(dict, index = dates)
                   print df
                  -
                                 AAPL    GOOG     IBM
                   2017-07-03  143.50  898.70  155.58
                   2017-07-04  144.09  911.71  153.67
                   2017-07-05  142.73  906.69  152.36
                   2017-07-06  144.18  918.59  152.94
                  -2017-07-07  143.77  926.99  153.49
                  +2017-07-07 143.77 926.99 153.49 +
                  +
+ +

Manipulating DataFrames

-

Manipulating DataFrames

+

+ We can fetch values in a DataFrame by columns and index. Each column in a DataFrame is essentially a Pandas Series. We can fetch a column by square brackets: df['column_name'] +

+

+ If a column name contains no spaces, then we can also use df.column_name to fetch a column: +

-We can fetch values in a DataFrame by columns and index. Each column in a DataFrame is essentially a Pandas Series. We can fetch a column by square brackets: df['column_name'] +
-If a column name contains no spaces, then we can also use df.column_name to fetch a column: -
df = aapl_table
+
df = aapl_table
 print df.Close.tail(5)
 print df['Adj. Volume'].tail(5)
-
 Date
 2017-07-24    152.09
 2017-07-25    152.74
@@ -255,14 +52,25 @@ 

Manipulating DataFrames

2017-07-26 15172136.0 2017-07-27 32175875.0 2017-07-28 16832947.0 -Name: Adj. Volume, dtype: float64
+Name: Adj. Volume, dtype: float64 +
+
+ +

+ All the methods we applied to a Series index such as iloc[], loc[] and resampling methods, can also be applied to a DataFrame: +

-All the methods we applied to a Series index such as iloc[], loc[] and resampling methods, can also be applied to a DataFrame: -
aapl_2016 = df['2016']
+
+ +
aapl_2016 = df['2016']
 aapl_month = aapl_2016.resample('M').agg(lambda x: x[-1])
-print aapl_month
+print aapl_month +
+ + +
-
+
               Open      High     Low   Close      Volume  Ex-Dividend  \
 Date
 2016-01-31   94.79   97.3400   94.35   97.34  64416504.0          0.0
@@ -306,10 +114,17 @@ 

Manipulating DataFrames

2016-09-30 36379106.0 2016-10-31 26419398.0 2016-11-30 36162258.0 -2016-12-31 30586265.0
+2016-12-31 30586265.0 +
+
+ +

+ We may select certain columns of a DataFrame using their names: +

-We may select certain columns of a DataFrame using their names: -
aapl_bar = aapl_month[['Open', 'High', 'Low', Close']]
+
+ +
aapl_bar = aapl_month[['Open', 'High', 'Low', Close']]
 print aapl_bar
 
               Open      High     Low   Close
@@ -325,20 +140,34 @@ 

Manipulating DataFrames

2016-09-30 112.46 113.3700 111.80 113.05 2016-10-31 113.65 114.2300 113.20 113.54 2016-11-30 111.56 112.2000 110.27 110.52 -2016-12-31 116.65 117.2000 115.43 115.82
+2016-12-31 116.65 117.2000 115.43 115.82 +
+ + +

+ We can even specify both rows and columns using loc[]. The row indices and column names are separated by a comma: +

-We can even specify both rows and columns using loc[]. The row indices and column names are separated by a comma: -
print aapl_month.loc['2016-03':'2016-06', ['Open', 'High', 'Low', 'Close']]
+
+ +
print aapl_month.loc['2016-03':'2016-06', ['Open', 'High', 'Low', 'Close']]
 
               Open    High     Low   Close
 Date
 2016-03-31  109.72  109.90  108.88  108.99
 2016-04-30   93.99   94.72   92.51   93.74
 2016-05-31   99.60  100.40   98.82   99.86
-2016-06-30   94.44   95.77   94.30   95.60
+2016-06-30 94.44 95.77 94.30 95.60 +
+ + +

+ The subset methods in DataFrame is quite useful. By writing logical statements in square brackets, we can make customized subsets: +

-The subset methods in DataFrame is quite useful. By writing logical statements in square brackets, we can make customized subsets: -
above = aapl_bar[aapl_bar.Close > np.mean(aapl_bar.Close)]
+
+ +
above = aapl_bar[aapl_bar.Close > np.mean(aapl_bar.Close)]
 print above
 
               Open      High     Low   Close
@@ -348,12 +177,18 @@ 

Manipulating DataFrames

2016-09-30 112.46 113.3700 111.80 113.05 2016-10-31 113.65 114.2300 113.20 113.54 2016-11-30 111.56 112.2000 110.27 110.52 -2016-12-31 116.65 117.2000 115.43 115.82
+2016-12-31 116.65 117.2000 115.43 115.82 +
+ + +

Data Validation

-

Data Validation

+

+ As mentioned, all methods that apply to a Series can also be applied to a DataFrame. Here we add a new column to an existing DataFrame: +

+
-As mentioned, all methods that apply to a Series can also be applied to a DataFrame. Here we add a new column to an existing DataFrame: -
aapl_bar['rate_return'] = aapl_bar.Close.pct_change()
+
aapl_bar['rate_return'] = aapl_bar.Close.pct_change()
 print aapl_bar
 
               Open      High     Low   Close  rate_return
@@ -369,10 +204,17 @@ 

Data Validation

2016-09-30 112.46 113.3700 111.80 113.05 0.065504 2016-10-31 113.65 114.2300 113.20 113.54 0.004334 2016-11-30 111.56 112.2000 110.27 110.52 -0.026599 -2016-12-31 116.65 117.2000 115.43 115.82 0.047955
+2016-12-31 116.65 117.2000 115.43 115.82 0.047955 +
+
-Here the calculation introduced a NaN value. If the DataFrame is large, we would not be able to observe it. isnull() provides a convenient way to check abnormal values. -
missing = aapl_bar.isnull()
+

+ Here the calculation introduced a NaN value. If the DataFrame is large, we would not be able to observe it. isnull() provides a convenient way to check abnormal values. +

+ +
+ +
missing = aapl_bar.isnull()
 print missing
 print '---------------------------------------------'
 print missing.describe()
@@ -398,21 +240,37 @@ 

Data Validation

count 12 12 12 12 12 unique 1 1 1 1 2 top False False False False False -freq 12 12 12 12 11
+freq 12 12 12 12 11 +
+ -The row labelled "unique" indicates the number of unique values in each column. Since the "rate_return" column has 2 unique values, it has at least one missing value. +

+ The row labelled "unique" indicates the number of unique values in each column. Since the "rate_return" column has 2 unique values, it has at least one missing value. +

+

+ We can deduce the number of missing values by comparing "count" with "freq". There are 12 counts and 11 False values, so there is one True value which corresponds to the missing value. +

+

+ We can also find the rows with missing values easily: +

-We can deduce the number of missing values by comparing "count" with "freq". There are 12 counts and 11 False values, so there is one True value which corresponds to the missing value. +
-We can also find the rows with missing values easily: -
print missing[missing.rate_return == True]
+
print missing[missing.rate_return == True]
 
              Open   High    Low  Close rate_return
 Date
-2016-01-31  False  False  False  False        True
+2016-01-31 False False False False True +
+
+ +

+ Usually when dealing with missing data, we either delete the whole row or fill it with some value. As we introduced in the Series chapter, the same method dropna() and fillna() can be applied to a DataFrame. +

-Usually when dealing with missing data, we either delete the whole row or fill it with some value. As we introduced in the Series chapter, the same method dropna() and fillna() can be applied to a DataFrame. -
drop = aapl_bar.dropna()
+
+ +
drop = aapl_bar.dropna()
 print drop
 print '\n--------------------------------------------------\n'
 fill = aapl_bar.fillna(0)
@@ -447,14 +305,21 @@ 

Data Validation

2016-09-30 112.46 113.3700 111.80 113.05 0.065504 2016-10-31 113.65 114.2300 113.20 113.54 0.004334 2016-11-30 111.56 112.2000 110.27 110.52 -0.026599 -2016-12-31 116.65 117.2000 115.43 115.82 0.047955
+2016-12-31 116.65 117.2000 115.43 115.82 0.047955 +
+ -

DataFrame Concat

+

DataFrame Concat

+

+ We have seen how to extract a Series from a dataFrame. Now we need to consider how to merge a Series or a DataFrame into another one. +

+

+ In Pandas, the function concat() allows us to merge multiple Series into a DataFrame: +

-We have seen how to extract a Series from a dataFrame. Now we need to consider how to merge a Series or a DataFrame into another one. +
-In Pandas, the function concat() allows us to merge multiple Series into a DataFrame: -
s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')
+
s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')
 s2 = pd.Series([898.7, 911.71, 906.69, 918.59, 926.99], name = 'GOOG')
 data_frame = pd.concat([s1, s2], axis = 1)
 print data_frame
@@ -464,10 +329,17 @@ 

DataFrame Concat

1 144.09 911.71 2 142.73 906.69 3 144.18 918.59 -4 143.77 926.99
+4 143.77 926.99 +
+
+ +

+ The "axis = 1" parameter will join two DataFrames by columns: +

-The "axis = 1" parameter will join two DataFrames by columns: -
log_price = np.log(aapl_bar.Close)
+
+ +
log_price = np.log(aapl_bar.Close)
 log_price.name = 'log_price'
 print log_price
 print '\n--------------------------------------------\n'
@@ -504,10 +376,17 @@ 

DataFrame Concat

2016-09-30 112.46 113.3700 111.80 113.05 0.065504 4.727830 2016-10-31 113.65 114.2300 113.20 113.54 0.004334 4.732155 2016-11-30 111.56 112.2000 110.27 110.52 -0.026599 4.705197 -2016-12-31 116.65 117.2000 115.43 115.82 0.047955 4.752037
+2016-12-31 116.65 117.2000 115.43 115.82 0.047955 4.752037 +
+ + +

+ We can also join two DataFrames by rows. Consider these two DataFrames: +

-We can also join two DataFrames by rows. Consider these two DataFrames: -
df_volume = aapl_table.loc['2016-10':'2017-04', ['Volume', 'Split Ratio']].resample('M').agg(lambda x: x[-1])
+
+ +
df_volume = aapl_table.loc['2016-10':'2017-04', ['Volume', 'Split Ratio']].resample('M').agg(lambda x: x[-1])
 print df_volume
 print '\n-------------------------------------------\n'
 df_2017 = aapl_table.loc['2016-10':'2017-04', ['Open', 'High', 'Low', 'Close']].resample('M').agg(lambda x: x[-1])
@@ -533,10 +412,17 @@ 

DataFrame Concat

2017-01-31 121.15 121.390 120.62 121.35 2017-02-28 137.08 137.435 136.70 136.99 2017-03-31 143.72 144.270 143.01 143.66 -2017-04-30 144.09 144.300 143.27 143.65
+2017-04-30 144.09 144.300 143.27 143.65 +
+ + +

+ Now we merge the DataFrames with our DataFrame 'aapl_bar' +

-Now we merge the DataFrames with our DataFrame 'aapl_bar' -
concat = pd.concat([aapl_bar, df_volume], axis = 1)
+
+ +
concat = pd.concat([aapl_bar, df_volume], axis = 1)
 print concat
 
               Open      High     Low   Close  rate_return      Volume  \
@@ -575,10 +461,17 @@ 

DataFrame Concat

2017-01-31 1.0 2017-02-28 1.0 2017-03-31 1.0 -2017-04-30 1.0
+2017-04-30 1.0 +
+ + +

+ By default the DataFrame are joined with all of the data. This default options results in zero information loss. We can also merge them by intersection, this is called 'inner join': +

-By default the DataFrame are joined with all of the data. This default options results in zero information loss. We can also merge them by intersection, this is called 'inner join': -
concat = pd.concat([aapl_bar, df_volume], axis = 1, join = 'inner')
+
+ +
concat = pd.concat([aapl_bar, df_volume], axis = 1, join = 'inner')
 print concat
 
               Open    High     Low   Close  rate_return      Volume  \
@@ -592,10 +485,16 @@ 

DataFrame Concat

2016-10-31 1.0 2016-11-30 1.0 2016-12-31 1.0 +
-Only the intersection part was left if use 'inner join' method. -Now let's try to append a DataFrame to another one: -
append = aapl_bar.append(df_2017)
+
+

+ Only the intersection part was left if use 'inner join' method. Now let's try to append a DataFrame to another one: +

+ +
+ +
append = aapl_bar.append(df_2017)
 print append
              Close      High     Low    Open  rate_return
 Date
@@ -618,9 +517,16 @@ 

DataFrame Concat

2017-02-28 136.99 137.4350 136.70 137.08 NaN 2017-03-31 143.66 144.2700 143.01 143.72 NaN 2017-04-30 143.65 144.3000 143.27 144.09 NaN +
-'Append' is essentially to concat two DataFrames by axis = 0, thus here is an alternative way to append: -
concat = pd.concat([aapl_bar, df_2017], axis = 0)
+
+

+ 'Append' is essentially to concat two DataFrames by axis = 0, thus here is an alternative way to append: +

+ +
+ +
concat = pd.concat([aapl_bar, df_2017], axis = 0)
 print concat
              Close      High     Low    Open  rate_return
 Date
@@ -644,8 +550,13 @@ 

DataFrame Concat

2017-03-31 143.66 144.2700 143.01 143.72 NaN 2017-04-30 143.65 144.3000 143.27 144.09 NaN
-Please note that if the two DataFrame have some columns with the same column names, these columns are considered to be the same and will be merged. It's very important to have the right column names. If we change a column names here: -
df_2017.columns = ['Change', 'High', 'Low', 'Close']
+
+

+ Please note that if the two DataFrame have some columns with the same column names, these columns are considered to be the same and will be merged. It's very important to have the right column names. If we change a column names here: +

+
+ +
df_2017.columns = ['Change', 'High', 'Low', 'Close']
 concat = pd.concat([aapl_bar, df_2017], axis = 0)
 print concat
 
@@ -669,10 +580,9 @@ 

DataFrame Concat

2017-01-31 121.15 121.35 121.3900 120.62 NaN NaN 2017-02-28 137.08 136.99 137.4350 136.70 NaN NaN 2017-03-31 143.72 143.66 144.2700 143.01 NaN NaN -2017-04-30 144.09 143.65 144.3000 143.27 NaN NaN
- -Since the column name of 'Open' has been changed, the new DataFrame has an new column named 'Change'. - -

Summary

- -Hereby we introduced the most import part of python: resampling and DataFrame manipulation. We only introduced the most commonly used method in Financial data analysis. There are also many methods used in data mining, which are also beneficial. You can always check the Pandas official documentations for help. \ No newline at end of file +2017-04-30 144.09 143.65 144.3000 143.27 NaN NaN +
+ +

+ Since the column name of 'Open' has been changed, the new DataFrame has an new column named 'Change'. +

diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.ipynb b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Pandas-Resampling and DataFrame.ipynb old mode 100644 new mode 100755 similarity index 80% rename from Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.ipynb rename to 05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Pandas-Resampling and DataFrame.ipynb index 43eede9..a67e05c --- a/Tutorial Series/Introduction to Financial Python/Tutorial05 Pandas-Resampling and DataFrame.ipynb +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Pandas-Resampling and DataFrame.ipynb @@ -2,10 +2,8 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, + "execution_count": 1, + "metadata": {}, "outputs": [], "source": [ "import quandl\n", @@ -15,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -25,10 +23,8 @@ }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, + "execution_count": 3, + "metadata": {}, "outputs": [], "source": [ "aapl = aapl_table['Adj. Close']['2017']" @@ -36,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -75,47 +71,47 @@ "2017-02-13 132.210332\n", "2017-02-14 133.926319\n", " ... \n", - "2017-07-10 144.473805\n", - "2017-07-11 144.941906\n", - "2017-07-12 145.151057\n", - "2017-07-13 147.172854\n", - "2017-07-14 148.437722\n", - "2017-07-17 148.955620\n", - "2017-07-18 149.473519\n", - "2017-07-19 150.409720\n", - "2017-07-20 149.732468\n", - "2017-07-21 149.662751\n", - "2017-07-24 151.475396\n", - "2017-07-25 152.122770\n", - "2017-07-26 152.839860\n", - "2017-07-27 149.951579\n", - "2017-07-28 148.895863\n", - "2017-07-31 148.248489\n", - "2017-08-01 149.443640\n", - "2017-08-02 156.504989\n", - "2017-08-03 154.941334\n", - "2017-08-04 155.758020\n", - "2017-08-08 159.433108\n", - "2017-08-09 160.409148\n", - "2017-08-10 155.270000\n", - "2017-08-11 157.480000\n", - "2017-08-14 159.850000\n", - "2017-08-15 161.600000\n", - "2017-08-16 160.950000\n", - "2017-08-17 157.870000\n", - "2017-08-18 157.500000\n", - "2017-08-21 157.210000\n", - "Name: Adj. Close, Length: 159, dtype: float64\n" + "2017-11-16 171.100000\n", + "2017-11-17 170.150000\n", + "2017-11-20 169.980000\n", + "2017-11-21 173.140000\n", + "2017-11-22 174.960000\n", + "2017-11-24 174.970000\n", + "2017-11-27 174.090000\n", + "2017-11-28 173.070000\n", + "2017-11-29 169.480000\n", + "2017-11-30 171.850000\n", + "2017-12-01 171.050000\n", + "2017-12-04 169.800000\n", + "2017-12-05 169.640000\n", + "2017-12-06 169.010000\n", + "2017-12-07 169.452000\n", + "2017-12-08 169.370000\n", + "2017-12-11 172.670000\n", + "2017-12-12 171.700000\n", + "2017-12-13 172.270000\n", + "2017-12-14 172.220000\n", + "2017-12-15 173.870000\n", + "2017-12-18 176.420000\n", + "2017-12-19 174.540000\n", + "2017-12-20 174.350000\n", + "2017-12-21 175.010000\n", + "2017-12-22 175.010000\n", + "2017-12-26 170.570000\n", + "2017-12-27 170.600000\n", + "2017-12-28 171.080000\n", + "2017-12-29 169.230000\n", + "Name: Adj. Close, Length: 249, dtype: float64\n" ] } ], "source": [ - "print aapl" + "print(aapl)" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -151,12 +147,12 @@ } ], "source": [ - "print aapl['2017-3']" + "print(aapl['2017-3'])" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -227,7 +223,7 @@ "Name: Adj. Close, Length: 61, dtype: float64" ] }, - "execution_count": 8, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -238,7 +234,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -253,28 +249,28 @@ "2017-01-09 117.520300\n", "Name: Adj. Close, dtype: float64\n", "Date\n", - "2017-08-08 159.433108\n", - "2017-08-09 160.409148\n", - "2017-08-10 155.270000\n", - "2017-08-11 157.480000\n", - "2017-08-14 159.850000\n", - "2017-08-15 161.600000\n", - "2017-08-16 160.950000\n", - "2017-08-17 157.870000\n", - "2017-08-18 157.500000\n", - "2017-08-21 157.210000\n", + "2017-12-15 173.87\n", + "2017-12-18 176.42\n", + "2017-12-19 174.54\n", + "2017-12-20 174.35\n", + "2017-12-21 175.01\n", + "2017-12-22 175.01\n", + "2017-12-26 170.57\n", + "2017-12-27 170.60\n", + "2017-12-28 171.08\n", + "2017-12-29 169.23\n", "Name: Adj. Close, dtype: float64\n" ] } ], "source": [ - "print aapl.head(5)\n", - "print aapl.tail(10)" + "print(aapl.head(5))\n", + "print(aapl.tail(10))" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -289,19 +285,23 @@ "2017-05-31 151.386305\n", "2017-06-30 147.233064\n", "2017-07-31 147.706190\n", - "2017-08-31 157.444303\n", + "2017-08-31 158.856375\n", + "2017-09-30 157.606500\n", + "2017-10-31 157.811627\n", + "2017-11-30 172.214500\n", + "2017-12-31 171.893100\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ "by_month = aapl.resample('M').mean()\n", - "print by_month" + "print(by_month)" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -320,29 +320,34 @@ ], "source": [ "by_week = aapl.resample('W').mean()\n", - "print by_week.head()" + "print(by_week.head())" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Date\n", - "2017-01-31 120.932434\n", - "2017-02-28 136.551200\n", - "2017-03-31 143.532630\n", - "2017-04-30 144.179981\n", - "2017-05-31 156.100000\n", - "2017-06-30 155.450000\n", - "2017-07-31 153.460000\n", + "2017-01-31 120.443739\n", + "2017-02-28 135.999390\n", + "2017-03-31 142.952608\n", + "2017-04-30 143.597342\n", + "2017-05-31 155.469192\n", + "2017-06-30 154.821818\n", + "2017-07-31 152.839860\n", + "2017-08-31 164.000000\n", + "2017-09-30 164.050000\n", + "2017-10-31 169.040000\n", + "2017-11-30 175.880000\n", + "2017-12-31 176.420000\n", "Freq: M, Name: Adj. Close, dtype: float64" ] }, - "execution_count": 4, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -353,10 +358,8 @@ }, { "cell_type": "code", - "execution_count": 13, - "metadata": { - "collapsed": true - }, + "execution_count": 11, + "metadata": {}, "outputs": [], "source": [ "three_day = aapl.resample('3D').mean()\n", @@ -366,10 +369,8 @@ }, { "cell_type": "code", - "execution_count": 14, - "metadata": { - "collapsed": true - }, + "execution_count": 12, + "metadata": {}, "outputs": [], "source": [ "std = aapl.resample('W').std()\n", @@ -379,7 +380,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 13, "metadata": {}, "outputs": [ { @@ -394,19 +395,23 @@ "2017-05-31 0.039829\n", "2017-06-30 -0.073528\n", "2017-07-31 0.033035\n", - "2017-08-31 0.004505\n", + "2017-08-31 0.047890\n", + "2017-09-30 -0.049112\n", + "2017-10-31 0.094252\n", + "2017-11-30 0.022247\n", + "2017-12-31 -0.003357\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ "monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[1] - 1)\n", - "print monthly_return" + "print(monthly_return)" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -421,22 +426,24 @@ "2017-05-31 152.142689\n", "2017-06-30 143.438008\n", "2017-07-31 148.248489\n", - "2017-08-31 157.210000\n", + "2017-08-31 164.000000\n", + "2017-09-30 154.120000\n", + "2017-10-31 169.040000\n", + "2017-11-30 171.850000\n", + "2017-12-31 169.230000\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ "last_day = aapl.resample('M').agg(lambda x: x[-1])\n", - "print last_day" + "print(last_day)" ] }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, + "execution_count": 15, + "metadata": {}, "outputs": [], "source": [ "by_week = aapl.resample('W').mean()" @@ -444,21 +451,24 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Date\n", - "2017-01-31 1.788740\n", - "2017-03-31 4.341378\n", - "2017-05-31 5.476627\n", - "2017-07-31 3.927178\n", + "2017-01-31 1.781512\n", + "2017-03-31 4.323834\n", + "2017-05-31 5.454495\n", + "2017-07-31 3.865333\n", + "2017-09-30 3.634223\n", + "2017-11-30 8.011704\n", + "2018-01-31 2.291229\n", "Freq: 2M, Name: Adj. Close, dtype: float64" ] }, - "execution_count": 6, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -470,24 +480,29 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Date\n", - "2017-01-31 120.337440\n", - "2017-02-28 136.431689\n", - "2017-03-31 143.074505\n", - "2017-04-30 143.064546\n", - "2017-05-31 152.760000\n", - "2017-06-30 144.020000\n", - "2017-07-31 149.500000\n", + "2017-01-31 119.851150\n", + "2017-02-28 135.880362\n", + "2017-03-31 142.496334\n", + "2017-04-30 142.486415\n", + "2017-05-31 152.142689\n", + "2017-06-30 143.438008\n", + "2017-07-31 148.248489\n", + "2017-08-31 164.000000\n", + "2017-09-30 154.120000\n", + "2017-10-31 169.040000\n", + "2017-11-30 171.850000\n", + "2017-12-31 169.230000\n", "Freq: M, Name: Adj. Close, dtype: float64" ] }, - "execution_count": 7, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -499,7 +514,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -512,11 +527,16 @@ "2017-04-30 -0.007736\n", "2017-05-31 0.039829\n", "2017-06-30 -0.073528\n", - "2017-07-31 0.037546\n", + "2017-07-31 0.033035\n", + "2017-08-31 0.047890\n", + "2017-09-30 -0.049112\n", + "2017-10-31 0.094252\n", + "2017-11-30 0.022247\n", + "2017-12-31 -0.003357\n", "Freq: M, Name: Adj. Close, dtype: float64" ] }, - "execution_count": 8, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -528,28 +548,28 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.0208974076157\n", - "0.0476398315185\n", - "0.0704090212384\n" + "0.02114094011940022\n", + "0.04775652864223314\n", + "0.09425168306576914\n" ] } ], "source": [ - "print monthly_return.mean()\n", - "print monthly_return.std()\n", - "print monthly_return.max()" + "print(monthly_return.mean())\n", + "print(monthly_return.std())\n", + "print(monthly_return.max())" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 20, "metadata": {}, "outputs": [ { @@ -564,7 +584,11 @@ "2017-05-31 9.656274\n", "2017-06-30 -8.704681\n", "2017-07-31 4.810482\n", - "2017-08-31 8.961511\n", + "2017-08-31 15.751511\n", + "2017-09-30 -9.880000\n", + "2017-10-31 14.920000\n", + "2017-11-30 2.810000\n", + "2017-12-31 -2.620000\n", "Freq: M, Name: Adj. Close, dtype: float64\n", "Date\n", "2017-01-31 NaN\n", @@ -574,44 +598,48 @@ "2017-05-31 0.067770\n", "2017-06-30 -0.057214\n", "2017-07-31 0.033537\n", - "2017-08-31 0.060449\n", + "2017-08-31 0.106251\n", + "2017-09-30 -0.060244\n", + "2017-10-31 0.096808\n", + "2017-11-30 0.016623\n", + "2017-12-31 -0.015246\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ - "print last_day.diff()\n", - "print last_day.pct_change()" + "print(last_day.diff())\n", + "print(last_day.pct_change())" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "count 159.000000\n", - "mean 141.555690\n", - "std 11.555853\n", + "count 249.000000\n", + "mean 149.815713\n", + "std 15.065681\n", "min 114.586983\n", - "25% 137.695538\n", - "50% 142.853418\n", - "75% 149.842024\n", - "max 161.600000\n", + "25% 140.651400\n", + "50% 151.890000\n", + "75% 159.780000\n", + "max 176.420000\n", "Name: Adj. Close, dtype: float64\n" ] } ], "source": [ - "print aapl.describe()" + "print(aapl.describe())" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 22, "metadata": {}, "outputs": [ { @@ -626,19 +654,23 @@ "2017-05-31 0.067770\n", "2017-06-30 -0.057214\n", "2017-07-31 0.033537\n", - "2017-08-31 0.060449\n", + "2017-08-31 0.106251\n", + "2017-09-30 -0.060244\n", + "2017-10-31 0.096808\n", + "2017-11-30 0.016623\n", + "2017-12-31 -0.015246\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ "daily_return = last_day.pct_change()\n", - "print daily_return.fillna(0)" + "print(daily_return.fillna(0))" ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 23, "metadata": {}, "outputs": [ { @@ -653,28 +685,23 @@ "2017-05-31 0.067770\n", "2017-06-30 -0.057214\n", "2017-07-31 0.033537\n", - "2017-08-31 0.060449\n", + "2017-08-31 0.106251\n", + "2017-09-30 -0.060244\n", + "2017-10-31 0.096808\n", + "2017-11-30 0.016623\n", + "2017-12-31 -0.015246\n", "Freq: M, Name: Adj. Close, dtype: float64\n" ] } ], "source": [ "daily_return = last_day.pct_change()\n", - "print daily_return.fillna(method = 'bfill')" + "print(daily_return.fillna(method = 'bfill'))" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 12, + "execution_count": 24, "metadata": {}, "outputs": [ { @@ -686,11 +713,16 @@ "2017-04-30 -0.000070\n", "2017-05-31 0.067770\n", "2017-06-30 -0.057214\n", - "2017-07-31 0.038050\n", + "2017-07-31 0.033537\n", + "2017-08-31 0.106251\n", + "2017-09-30 -0.060244\n", + "2017-10-31 0.096808\n", + "2017-11-30 0.016623\n", + "2017-12-31 -0.015246\n", "Freq: M, Name: Adj. Close, dtype: float64" ] }, - "execution_count": 12, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -702,35 +734,16 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 29, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 5.880519\n", - "2017-02-28 9.093671\n", - "2017-03-31 5.417829\n", - "2017-04-30 4.073331\n", - "2017-05-31 10.167192\n", - "2017-06-30 13.180000\n", - "2017-07-31 10.730000\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "aapl.resample('M').agg(lambda x: max(x) - min(x))" + "# aapl.resample('M').agg(lambda x: max(x) - min(x))" ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 30, "metadata": {}, "outputs": [ { @@ -751,12 +764,12 @@ " 'IBM':[155.58, 153.67, 152.36, 152.94, 153.49]}\n", "data_index = pd.date_range('2017-07-03',periods = 5, freq = 'D')\n", "df = pd.DataFrame(dict, index = data_index)\n", - "print df" + "print(df)" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 31, "metadata": {}, "outputs": [ { @@ -776,19 +789,19 @@ "s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')\n", "s2 = pd.Series([898.7, 911.71, 906.69, 918.59, 926.99], name = 'GOOG')\n", "data_frame = pd.concat([s1,s2], axis = 1)\n", - "print data_frame" + "print(data_frame)" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 32, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Index([u'AAPL', u'GOOG', u'IBM'], dtype='object')\n", + "Index(['AAPL', 'GOOG', 'IBM'], dtype='object')\n", "2017-07-03 143.50\n", "2017-07-04 144.09\n", "2017-07-05 142.73\n", @@ -805,14 +818,14 @@ } ], "source": [ - "print df.columns\n", - "print df.AAPL\n", - "print df['GOOG']" + "print(df.columns)\n", + "print(df.AAPL)\n", + "print(df['GOOG'])" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 33, "metadata": {}, "outputs": [ { @@ -820,31 +833,31 @@ "output_type": "stream", "text": [ "Date\n", - "2017-07-24 152.09\n", - "2017-07-25 152.74\n", - "2017-07-26 153.46\n", - "2017-07-27 150.56\n", - "2017-07-28 149.50\n", + "2018-03-21 171.270\n", + "2018-03-22 168.845\n", + "2018-03-23 164.940\n", + "2018-03-26 172.770\n", + "2018-03-27 168.340\n", "Name: Close, dtype: float64\n", "Date\n", - "2017-07-24 21122730.0\n", - "2017-07-25 18612649.0\n", - "2017-07-26 15172136.0\n", - "2017-07-27 32175875.0\n", - "2017-07-28 16832947.0\n", + "2018-03-21 35247358.0\n", + "2018-03-22 41051076.0\n", + "2018-03-23 40248954.0\n", + "2018-03-26 36272617.0\n", + "2018-03-27 38962839.0\n", "Name: Adj. Volume, dtype: float64\n" ] } ], "source": [ "df = aapl_table\n", - "print df.Close.tail(5)\n", - "print df['Adj. Volume'].tail(5)" + "print(df.Close.tail(5))\n", + "print(df['Adj. Volume'].tail(5))" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 34, "metadata": {}, "outputs": [ { @@ -868,18 +881,18 @@ "\n", " Split Ratio Adj. Open Adj. High Adj. Low Adj. Close \\\n", "Date \n", - "2016-01-31 1.0 91.952819 94.426495 91.525989 94.426495 \n", - "2016-02-29 1.0 94.466655 95.802804 94.261844 94.300856 \n", - "2016-03-31 1.0 107.008893 107.184446 106.189649 106.296931 \n", - "2016-04-30 1.0 91.667571 92.379533 90.224141 91.423748 \n", - "2016-05-31 1.0 97.732787 98.517789 96.967410 97.987913 \n", - "2016-06-30 1.0 92.669522 93.974588 92.532147 93.807775 \n", - "2016-07-31 1.0 102.236738 102.589989 101.736299 102.256363 \n", - "2016-08-31 1.0 104.237384 105.135033 104.217653 104.671460 \n", - "2016-09-30 1.0 110.945828 111.843576 110.294715 111.527885 \n", - "2016-10-31 1.0 112.119806 112.691997 111.675865 112.011287 \n", - "2016-11-30 1.0 110.629129 111.263789 109.349893 109.597807 \n", - "2016-12-31 1.0 115.676657 116.222068 114.466837 114.853583 \n", + "2016-01-31 1.0 91.581233 94.044912 91.156128 94.044912 \n", + "2016-02-29 1.0 94.084911 95.415659 93.880927 93.919781 \n", + "2016-03-31 1.0 106.576465 106.751308 105.760531 105.867380 \n", + "2016-04-30 1.0 91.297138 92.006223 89.859540 91.054300 \n", + "2016-05-31 1.0 97.337844 98.119674 96.575559 97.591939 \n", + "2016-06-30 1.0 92.295040 93.594832 92.158220 93.428693 \n", + "2016-07-31 1.0 101.823594 102.175417 101.325177 101.843140 \n", + "2016-08-31 1.0 103.816156 104.710177 103.796505 104.248477 \n", + "2016-09-30 1.0 110.497491 111.391610 109.849008 111.077195 \n", + "2016-10-31 1.0 111.666724 112.236603 111.224577 111.558644 \n", + "2016-11-30 1.0 110.182071 110.814166 108.908004 109.154917 \n", + "2016-12-31 1.0 115.209202 115.752409 114.004271 114.389454 \n", "\n", " Adj. Volume \n", "Date \n", @@ -901,12 +914,12 @@ "source": [ "aapl_2016 = df['2016']\n", "aapl_month = aapl_2016.resample('M').agg(lambda x: x[-1])\n", - "print aapl_month" + "print(aapl_month)" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 35, "metadata": {}, "outputs": [ { @@ -932,12 +945,12 @@ ], "source": [ "aapl_bar = aapl_month[['Open', 'High', 'Low', 'Close']]\n", - "print aapl_bar" + "print(aapl_bar)" ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 36, "metadata": {}, "outputs": [ { @@ -954,12 +967,12 @@ } ], "source": [ - "print aapl_month.loc['2016-03':'2016-06',['Open', 'High', 'Low', 'Close']]" + "print(aapl_month.loc['2016-03':'2016-06',['Open', 'High', 'Low', 'Close']])" ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 37, "metadata": {}, "outputs": [ { @@ -979,12 +992,12 @@ ], "source": [ "above = aapl_bar[aapl_bar.Close > np.mean(aapl_bar.Close)]\n", - "print above" + "print(above)" ] }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 38, "metadata": {}, "outputs": [ { @@ -1011,7 +1024,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/usr/local/lib/python2.7/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", + "/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", @@ -1022,32 +1035,32 @@ ], "source": [ "aapl_bar['rate_return'] = aapl_bar.Close.pct_change()\n", - "print aapl_bar" + "print(aapl_bar)" ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 39, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 False False False False True\n", - "2016-02-29 False False False False False\n", - "2016-03-31 False False False False False\n", - "2016-04-30 False False False False False\n", - "2016-05-31 False False False False False\n", - "2016-06-30 False False False False False\n", - "2016-07-31 False False False False False\n", - "2016-08-31 False False False False False\n", - "2016-09-30 False False False False False\n", - "2016-10-31 False False False False False\n", - "2016-11-30 False False False False False\n", - "2016-12-31 False False False False False\n", + " Open High Low Close rate_return\n", + "Date \n", + "2016-01-31 False False False False True\n", + "2016-02-29 False False False False False\n", + "2016-03-31 False False False False False\n", + "2016-04-30 False False False False False\n", + "2016-05-31 False False False False False\n", + "2016-06-30 False False False False False\n", + "2016-07-31 False False False False False\n", + "2016-08-31 False False False False False\n", + "2016-09-30 False False False False False\n", + "2016-10-31 False False False False False\n", + "2016-11-30 False False False False False\n", + "2016-12-31 False False False False False\n", "\n", "------------------ separate line -----------------\n", "\n", @@ -1061,33 +1074,33 @@ ], "source": [ "missing = aapl_bar.isnull()\n", - "print missing\n", - "print '\\n------------------ separate line -----------------\\n'\n", - "print missing.describe()" + "print(missing)\n", + "print('\\n------------------ separate line -----------------\\n')\n", + "print(missing.describe())" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 40, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 False False False False True\n" + " Open High Low Close rate_return\n", + "Date \n", + "2016-01-31 False False False False True\n" ] } ], "source": [ - "print missing[missing.rate_return == True]" + "print(missing[missing.rate_return == True])" ] }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 41, "metadata": {}, "outputs": [ { @@ -1129,15 +1142,15 @@ ], "source": [ "drop = aapl_bar.dropna()\n", - "print drop\n", - "print '\\n---------------------- separate line--------------------\\n'\n", + "print(drop)\n", + "print('\\n---------------------- separate line--------------------\\n')\n", "fill = aapl_bar.fillna(0)\n", - "print fill" + "print(fill)" ] }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 42, "metadata": {}, "outputs": [ { @@ -1157,12 +1170,12 @@ "s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')\n", "s2 = pd.Series([898.7, 911.71, 906.69, 918.59, 926.99], name = 'GOOG')\n", "data_frame = pd.concat([s1,s2], axis = 1)\n", - "print data_frame" + "print(data_frame)" ] }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 43, "metadata": {}, "outputs": [ { @@ -1206,15 +1219,15 @@ "source": [ "log_price = np.log(aapl_bar.Close)\n", "log_price.name = 'log_price'\n", - "print log_price\n", - "print '\\n---------------------- separate line--------------------\\n'\n", + "print(log_price)\n", + "print('\\n---------------------- separate line--------------------\\n')\n", "concat = pd.concat([aapl_bar, log_price], axis = 1)\n", - "print concat" + "print(concat)" ] }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 44, "metadata": {}, "outputs": [ { @@ -1247,15 +1260,15 @@ ], "source": [ "df_volume = aapl_table.loc['2016-10':'2017-04',['Volume', 'Split Ratio']].resample('M').agg(lambda x: x[-1])\n", - "print df_volume\n", - "print '\\n---------------------- separate line--------------------\\n'\n", + "print(df_volume)\n", + "print('\\n---------------------- separate line--------------------\\n')\n", "df_2017 = aapl_table.loc['2016-10':'2017-04',['Open', 'High', 'Low', 'Close']].resample('M').agg(lambda x: x[-1])\n", - "print df_2017" + "print(df_2017)" ] }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 45, "metadata": {}, "outputs": [ { @@ -1304,12 +1317,12 @@ ], "source": [ "concat = pd.concat([aapl_bar,df_volume],axis = 1)\n", - "print concat" + "print(concat)" ] }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 46, "metadata": {}, "outputs": [ { @@ -1332,12 +1345,12 @@ ], "source": [ "concat = pd.concat([aapl_bar,df_volume],axis = 1, join = 'inner')\n", - "print concat" + "print(concat)" ] }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 47, "metadata": {}, "outputs": [ { @@ -1370,12 +1383,12 @@ ], "source": [ "append = aapl_bar.append(df_2017)\n", - "print append" + "print(append)" ] }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 48, "metadata": {}, "outputs": [ { @@ -1408,12 +1421,12 @@ ], "source": [ "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" + "print(concat)" ] }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 49, "metadata": {}, "outputs": [ { @@ -1447,12 +1460,12 @@ "source": [ "df_2017.columns = ['Change', 'High','Low','Close']\n", "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" + "print(concat)" ] }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 50, "metadata": {}, "outputs": [ { @@ -1485,27 +1498,41 @@ ], "source": [ "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" + "print(concat)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Summary.html b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Summary.html new file mode 100755 index 0000000..6ba7e57 --- /dev/null +++ b/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Summary.html @@ -0,0 +1,3 @@ +

+ Hereby we introduced the most import part of python: resampling and DataFrame manipulation. We only introduced the most commonly used method in Financial data analysis. There are also many methods used in data mining, which are also beneficial. You can always check the Pandas official documentations for help. +

diff --git a/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/01 Introduction.html b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/01 Introduction.html new file mode 100755 index 0000000..b02e12a --- /dev/null +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/01 Introduction.html @@ -0,0 +1,3 @@ +

+ In this chapter we are going to introduce some basic concepts in quantitative finance. We start with rate of return, mean and variance. You may think it's simple to calculate these values, however, there are number of different methods to calculate them. It's important to choose the appropriate calculation methods case by case. +

diff --git a/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/02 Rate of Return.html b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/02 Rate of Return.html new file mode 100755 index 0000000..aab985e --- /dev/null +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/02 Rate of Return.html @@ -0,0 +1,138 @@ +

Single-period Return

+

+ The single-period rate of return can be calculated as following: +

+\[r = \frac{p_t}{p_0} - 1 = \frac{p_t - p_0}{p_0}\] +

+ Where \(r\) is the rate of return, \(p_t\) is the asset price at time \(t\), and \(p_0\) is the asset price at time 0. +

+ +
+ +
+import numpy as np
+rate_return = 102.0/100 - 1
+print rate_return
+[out]: 0.02
+
+
+

+ Let's say we bought a stock at $100, and half a year later it will grow to $102. A year later the price will come to $104. How to calculate our total return? Well, we can either deem it as a single-period: +

+\[r = 104/100 - 1 = 0.04\] +

+ or as a two-stage period: +

+\[ r = (1+r_1)*(1+r_2) - 1 = \frac{102}{100} * \frac{104}{102} -1 = 0.04\] +

+ Here we make calculations twice a year. It's called semi-annual compounding. How about quarterly compounding? Let's assume the stock prices at the end of each quarter are \(p_1, p_2, p_3, p_4\) respectively. +

+\[r = (1+r_1)*(1+r_2)*(1+r_3)*(1+r_4) -1\] +

+ The rate of return we calculate here is called cumulative return or overall return. It measures the total return of this asset over a period of time. +

+

+ Now consider the following situation: we have two strategies: strategy A and strategy B. We backtested strategy A for 1 years and the cumulative return is 20%, while we backtested strategy B for 3 months(one quarter) and the cumulative return is 6%. Which strategy has a high rate of return? Our commonly used method is to convert all the returns into compounding annual return, regardless of the investing horizon of each strategy. We can compare the returns of strategies with different time horizon now. Since there are four quarters in a year,the annual return of strategy B is +

+\[(1+0.06)^4 = 1+r\] +\[ r = 0.262\] +

+ Strategy B has an higher compounding annual return when we compare 26% with 20%. +

+

Logarithm Return

+

+ In the above example, strategy A has 6% return over three months. Nominally, the annual return would be 4*6% = 24%. + This nominal annual interest rate is called the stated annual interest rate. + It is calculated as the periodic interest rate times the number of periods per year. It works according to the simple interest and does not take into account the compounding periods, while the effective annual interest rate is 26% as we calculated above and it does account for intra-year compounding. + The effective annual interest rate is an essential tool that allows the evaluation of the real return on investment. + If we assume the number of compounding periods in one year is n, the formula to convert the stated annual interest rate to the effective annual interest rate is +

+\[r_{effective}=(1+\frac{r_{nominal}}{n})^n-1\] +

+ Now imagine the price of asset is changing every second or even every millisecond, the period of compounding n approaches infinite. This is called continuous compounding. The calculation formula is given below: +

+\[\lim_{n \to \infty }(1+\frac{r}{n})^n = e^r\] +

+ From the above limitation equation, we know that if we assume continuous compounding: +

+\[e^{r_{nominal}} = 1 + r_{effective} = \frac{p_t}{p_0}\] +

+ Then we take \(ln\) on both side of the equation: +

+\[r_{nominal} = ln\frac{p_t}{p_0} = lnp_t - lnp_0\] +

+ Here we got the logarithmic return, or continuously compounded return. This return is the nominal return with the interest compounding every millisecond. To see how it is close to effective interest rate, recall the equation above: +

+\[e^{r_{nominal}} = 1 + r_{effective}\] +

then we have

+\[r_{effective} = e^{r_{nominal}} - 1 \approx r_{nominal}\] +

where the second equality holds due to Taylor Expansion and the interest rate being small. This is frequently used when calculating returns, because once we take the logarithm of asset prices, we can calculate the logarithm return by simply doing a subtraction. Here we use Apple stock prices as an example: +

+ +
+ +
import quandl
+import numpy as np
+import quandl
+quandl.ApiConfig.api_key = 'zNXvSaz2oX5afVGKjf6o'
+#get quandl data
+aapl_table = quandl.get('WIKI/AAPL')
+aapl = aapl_table.loc['2017-3',['Open','Close']]
+#take log return
+aapl['log_price'] = np.log(aapl.Close)
+aapl['log_return'] = aapl['log_price'].diff()
+print aapl
+
+
+

+ The output is: +

+ +
+ +
+Date          Open   Close  log_price  log_return
+2017-03-01  137.890  139.79   4.940141         NaN
+2017-03-02  140.000  138.96   4.934186   -0.005955
+2017-03-03  138.780  139.78   4.940070    0.005884
+2017-03-06  139.365  139.34   4.936917   -0.003153
+2017-03-07  139.060  139.52   4.938208    0.001291
+2017-03-08  138.950  139.00   4.934474   -0.003734
+2017-03-09  138.740  138.68   4.932169   -0.002305
+2017-03-10  139.250  139.14   4.935481    0.003311
+2017-03-13  138.850  139.20   4.935912    0.000431
+2017-03-14  139.300  138.99   4.934402   -0.001510
+2017-03-15  139.410  140.46   4.944923    0.010521
+2017-03-16  140.720  140.69   4.946559    0.001636
+2017-03-17  141.000  139.99   4.941571   -0.004988
+2017-03-20  140.400  141.46   4.952017    0.010446
+2017-03-21  142.110  139.84   4.940499   -0.011518
+2017-03-22  139.845  141.42   4.951734    0.011235
+2017-03-23  141.260  140.92   4.948192   -0.003542
+2017-03-24  141.500  140.64   4.946203   -0.001989
+2017-03-27  139.390  140.88   4.947908    0.001705
+2017-03-28  140.910  143.80   4.968423    0.020515
+2017-03-29  143.680  144.12   4.970646    0.002223
+2017-03-30  144.190  143.93   4.969327   -0.001319
+2017-03-31  143.720  143.66   4.967449   -0.001878
+
+
+ +

+ Here we calculated the daily logarithmic return of Apple stock. Given that we know the daily logarithm return of in this month, we can calculate the monthly return by simply sum all the daily returns up. +

+ +
+ +
month_return = aapl.log_return.sum()
+print month_return
+[out]: 0.0273081001636
+
+
+

+ It may sounds incorrect to sum up the daily returns, but we can prove that it's mathematically correct. Let's assume the stock prices in a period of time are represented by \([p_0, p_1, p_2, p_3.....p_n]\). Then the cumulative rate of return is given by: +

+\[1 + r_{effective} \approx 1+r_{nominal} = ln\frac{p_t}{p_0} = ln\frac{p_t}{p_{t-1}} + ln\frac{p_{t-1}}{p_{t-2}}+......+ln\frac{p_1}{p_0}\] +

+ According to the equation above, we can simple sum up each logarithmic return in a period to get the cumulative return. The convenience of this method is also one of the reasons why we use logarithmic return in quantitative finance. +

diff --git a/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/03 Mean.html b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/03 Mean.html new file mode 100755 index 0000000..72b9534 --- /dev/null +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/03 Mean.html @@ -0,0 +1,35 @@ +

Arithmetic Mean

+

+ Mean is a measure of the central tendency of a data series. It capture the key character of the distribution of the data series. When we talk about mean, by default it refers to arithmetic mean. It's defined as the sum of the values divided by the number of observations: +

+\[\mu = \frac{\sum_{i = 1}^{n}x_i}{n}\] +

+ Where \((x_1,x_2,x_3.....x_n)\) is our data series. +

+

+ In python we can use NumPy.mean() to do the calculation: +

+ +
+ +
print np.mean(aapl.log_price)
+[out]: 4.94597446551
+
+
+

Geometric Mean

+

+ The geometric mean is an average that is useful for data series of positive numbers that are better interpreted according to their product, such as growth rate. It's calculated by: +

+\[\bar{x} = \sqrt[n]{x_1x_2x_3...x_n}\] +

+ Let's calculate the geometric mean of a series of single-period return: +

+\[1+\bar{r} = \sqrt[t]{\frac{p_t}{p_{t-1}}*\frac{p_{t-1}}{p_{t-2}}*...*\frac{p_2}{p_1}*\frac{p_1}{p_0}}\] +\[(1+\bar{r}) = \sqrt[t]{\frac{p_t}{p_0}}\] +

+ Now the equation becomes the form which we are familiar with: +

+\[(1+\bar{r})^t = \frac{p_t}{p_0}\] +

+ This is why we said it make sense when applied to growth rates. +

diff --git a/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/04 Variance and Standard Deviation.html b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/04 Variance and Standard Deviation.html new file mode 100755 index 0000000..f11f818 --- /dev/null +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/04 Variance and Standard Deviation.html @@ -0,0 +1,27 @@ +

Variance

+

+ Variance is a measure of dispersion. In finance, most of the time variance is a synonym for risk. The higher the variance of an asset price is, the higher risk the asset bears. Variance is usually represented by \(\sigma^2\), and it's calculated by +

+\[\sigma^2 = \frac{\sum_{i = 1}^{n}(x_i- \mu)^2}{n}\] +

+ In python we can use NumPy.var to calculate it: +

+
+ +
print np.var(aapl.log_price)
+
+
+

Standard Deviation

+

+ The most commonly used measure of dispersion in finance is standard deviation. It's usually represented by \(\sigma\). It's obvious to see the relation between standard deviation and variance: +

+\[\sigma = \sqrt{\sigma^2} = \sqrt{\frac{\sum_{i = 1}^{n}(x_i- \mu)^2}{n}}\] +

+ NumPy also provides us a method to calculate standard deviation. +

+
+ +
print np.std(aapl.log_price)
+[out]: 0.000142032804482
+
+
diff --git a/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/05 Summary.html b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/05 Summary.html new file mode 100755 index 0000000..1cc6f60 --- /dev/null +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/05 Summary.html @@ -0,0 +1,3 @@ +

+ We introduced different types of rate of return in this chapter, which could be a little bit tricky when we calculate them. Mean and standard deviation are also very important concepts when we conduct hypothesis test or measure the risk associated with a asset. We will use those concepts intensively in our later chapter. +

diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.ipynb b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/06 Rate of Return, Mean and Variance.ipynb old mode 100644 new mode 100755 similarity index 84% rename from Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.ipynb rename to 05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/06 Rate of Return, Mean and Variance.ipynb index 3980d14..8c4c7b6 --- a/Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.ipynb +++ b/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/06 Rate of Return, Mean and Variance.ipynb @@ -9,19 +9,19 @@ "name": "stdout", "output_type": "stream", "text": [ - "0.02\n" + "0.020000000000000018\n" ] } ], "source": [ "import numpy as np\n", "rate_return = 102.0/100 - 1\n", - "print rate_return" + "print(rate_return)" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -66,88 +66,79 @@ "#take log return\n", "aapl['log_price'] = np.log(aapl.Close)\n", "aapl['log_return'] = aapl.log_price.diff()\n", - "print aapl" + "print(aapl)" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.0273081001636\n" + "0.0273081001636184\n" ] } ], "source": [ "month_return = aapl.log_return.sum()\n", - "print month_return" + "print(month_return)" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "4.94597446551\n" + "4.94597446550658\n" ] } ], "source": [ - "print np.mean(aapl.log_price)" + "print(np.mean(aapl.log_price))" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "0.000142032804482\n" + "0.00014203280448152512\n" ] } ], "source": [ - "print np.var(aapl.log_price)" + "print(np.var(aapl.log_price))" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/07 Random Variables and Distributions/01 Introduction.html b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/01 Introduction.html new file mode 100755 index 0000000..d557aea --- /dev/null +++ b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/01 Introduction.html @@ -0,0 +1,3 @@ +

+ In the last chapter we learned the definition of mean and variance, which are kind of point estimation. Point estimation means using sample data to calculate a single value which is to serve as a 'best estimation' of an unknown population. However, this it not enough because point estimations can be deceiving. We need to use more rigorous methods to test our ideas. That's why we consider distribution and hypothesis testing. Random variable distribution is the basis for almost all quantitative finance topics: linear regression, CAPM, Black-Scholes, binomial tree pricing, etc. +

diff --git a/05 Introduction to Financial Python[]/07 Random Variables and Distributions/02 Random Variables.html b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/02 Random Variables.html new file mode 100755 index 0000000..82718e8 --- /dev/null +++ b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/02 Random Variables.html @@ -0,0 +1,3 @@ +

+ First let's start with the concept of random variable. A random variable can be thought of as a drawing from a distribution whose outcome prior to the draw is uncertain. Imagine rolling a dice, you know that your chance of getting each is 1/6, but you don't know what's the number of your next roll is. If we roll the dice N times and record the number of each roll, a collection of those numbers is called discrete random variable. A discrete variable can take on a finite number of values. For our example, we can only take numbers from {1,2,3,4,5,6}. The other kind of variable is continuous random variable. A continuous variable can take on any value in a given range. You can think the rate of return as a continuous variable, it theoretically can take any value from \((-\infty, +\infty)\). +

diff --git a/05 Introduction to Financial Python[]/07 Random Variables and Distributions/03 Distributions.html b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/03 Distributions.html new file mode 100755 index 0000000..933b38c --- /dev/null +++ b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/03 Distributions.html @@ -0,0 +1,178 @@ +

+ Each random variable follows a probability distribution, which is a function that can be thought of as providing the probabilities of occurrence of different possible outcomes in an experiment. In our dice example, the probability distribution of each number is 1/6. We usually use \(P(X)\) to represent a probability distribution function, where X is the outcome value. In our example, \(P(1) = P(2) = p(3) = 1/6\). However, we can't use this for a continuous distribution, because the probability of drawing a specific number from a continuous variable is 0, due to the infinite possible outcomes we have. Instead, we use probability density function(PDF) function to describe the probability that a value is in a specific range. We cover this later. For each probability distribution function, we have a cumulative distribution function(CDF). It is defined as \(P(X\leq x)\), which models the probability that the random variable X will take a value less than or equal to x. For discrete random variables, we just sum up the values less than or equal to x and then divide it with number of observations. +

+ +

Uniform Distribution

+

+ Uniform distribution is the simplest type of probability distribution. A discrete uniform distribution has equal weight assigned to all outcomes. Both rolling a dice and tossing a fare coin are classical uniform distributions. Here we use python to simulate rolling a dice 10000 times. +

+ +
+ +
import random
+import matplotlib.pyplot as plt
+import numpy as np
+import pandas as pd
+#define a function to simulate rolling a dice
+def dice():
+    number=  [1,2,3,4,5,6]
+    return random.choice(number)
+
+series = np.array([dice() for x in range(10000)])
+print series
+
+
+ +

+ We create a series of random variables here. We can plot the values on the x-axis and put their numbers of occurrences on the y-axis to have a direct view of the distribution: +

+ +
+ +
plt.figure(figsize = (20,10))
+plt.hist(series,bins = 11,align = 'mid')
+plt.xlabel('Dice Number')
+plt.ylabel('Occurences')
+plt.grid()
+plt.show()
+
+
+plot1 +

+ Let's say we want to know the frequency that the observations are less than or equal to 3. In other words we want to seek the value of \(P(X\leq 3)\). +

+
+ +
print len([x for x in series if x <= 3])/float(len(series))
+[out]: 0.4956
+print np.mean(series)
+[out]: 3.5103
+
+
+

+ \(P(X\leq 3)\) is very close to 0.5. This is not surprising because we rolled the dice 1000 times, and the frequency that the observations are less than or equal to 3 should be close to the real probability, which is 0.5. For a given uniform distribution, it's straightforward to calculate its mean: it's the center of the distribution because every outcome is of equal weight. For our dice example, we can think of it as +

+\[\mu = (1+2+3+4+5+6)/6 = 3.5\] +

+ Or +

+\[E(x) = 1*\frac{1}{6} + 2*\frac{1}{6}+...+6*\frac{1}{6} = 3.5\] +

+ More generally, if we a assume the minimum value in a uniform distribution is a and the maximum value is b, the mean can be given by: +

+\[\bar{u} = \frac{a+b}{2}\] +

+ Usually we use \(\bar{u}\) to represents the population mean, or the 'real mean'. Here we create a sample with 1000 observations, the mean we calculated above is the sample mean. Sample mean usually doesn't equal to the theoretical population mean unless the number of observation approaches to infinity. The variance is given by: +

+\[\sigma^2 = \frac{(b-a)^2}{12}\] +

+ Deducing the formula is out of our lecture scope. It's useful to realize for a given standard distribution, we can formularize its mean and variance. +

+

Binomial Distribution

+

+ A binomial distribution is a discrete probability distribution of the number of successes in a sequence of n independent experiments. Let's assume that the market has 50% probability goes up and 50% probability goes down, and we observe it in the next 10 days, what's the distribution of the number of days it goes up? This is a binomial distribution example. In general, if we carry out the experiment n times, and each outcome is independent, with the same probability of success p, the probability of getting exactly k successes is given by the function: +

+ +\[P(X = K) = C_n^k p^k (1-p)^{n-k}\] +

+ Where +

+\[C_n^k = \frac{n!}{(n-k)!k!}\] +

+ Under such circumstance we say X follows the binomial distribution \(X \sim B(n,p)\). Let's simulate a binomial experiment with success rate p = 0.7 and experiment times n = 10 +

+ +
+ +
def trial():
+    number = [1,2,3,4,5,6,7,8,9,10]
+    a = random.choice(number)
+    if a<= 7:
+        return 1
+    else:
+        return 0
+
+
+

+ Each time we execute trial(), we did an experiment. If it succeed, it will return 1, otherwise it will return 0. Now we are going to do the experiment 10 times: +

+ +
+ +
res = [trial() for x in range(10)]
+print sum(res)
+[out]: 7
+
+
+

+ Now we did the experiment 10 times, and the number of success is sum(res). However, it just means during these 10 experiments we succeed sum(res) times. If we want to see the binomial distribution, we need experiment N times. When n is large enough, our frequency will approach the theoretical probability. Here we simulate each outcome 10000 times: +

+ +
+ +
def binomial(number):
+    l = []
+    for i in range(10000):
+        res = [trial() for x in range(10)]
+        l.append(sum(res))
+    return len([x for x in l if x == number])/float(len(l))
+print binomial(8)
+[out]: 0.2367
+
+
+

+ The number printed above is the simulated probability that we succeed 8 times if we experiment 10 times. For each possible outcome, we simulate the probability: +

+ +
+ +
prob = []
+for i in range(1,11):
+    prob.append(binomial(i))
+prob_s = pd.Series(prob,index = range(1,11))
+print prob_s
+[out]: 1     0.0002
+       2     0.0013
+       3     0.0087
+       4     0.0373
+       5     0.1041
+       6     0.2000
+       7     0.2674
+       8     0.2342
+       9     0.1153
+       10    0.0283
+
+
+

+ Here we got the simulated result of the binomial distribution. Now we are going to check if the simulated frequencies close enough to the theoretical probabilities. Let's take X = 7 and X = 8 as example: +

+ +
+ +
print (float(factorial(10))/(factorial(7)*factorial(10-7)))*(0.7**7)*(0.3**3)
+[out]: 0.266827932
+print (float(factorial(10))/(factorial(8)*factorial(10-8)))*(0.7**8)*(0.3**2)
+[out]: 0.2334744405
+
+
+

+ As we can see, the simulated results are pretty close to the real probability. we can plot the results as follows: +

+ +
+ +
plt.figure(figsize = (20,10))
+plt.bar(range(1,11),prob)
+plt.grid()
+plt.show()
+
+
+plot2 +

+ Another good property of binomial distribution is that its mean and variance are simple enough: +

+\[\bar{u} = np\] +\[\sigma^2 = np(1-P)\] +

+ We will not introduce the deduction here, but if you are interested in it, we encourage you to do it yourself, based on the probability functions we provided above. +

diff --git a/05 Introduction to Financial Python[]/07 Random Variables and Distributions/04 Normal Distribution.html b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/04 Normal Distribution.html new file mode 100755 index 0000000..6ab172b --- /dev/null +++ b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/04 Normal Distribution.html @@ -0,0 +1,78 @@ +

+ Before looking at normal distribution, let's first talk about continues distribution. As we mentioned above, we use a probability density function(PDF) to model the probability that our value is taken our a specific range. We define it as: +

+\[P(a<X<b) = \int_{a}^{b}f_x(x)dx\] +

+ Now we can talk about the normal distribution. The normal distribution is most commonly used distribution in natural sciences, of course also in financial research. The PDF of normal distribution is given as follows: +

+\[f(x) = \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{(x-\mu)^2}{2\sigma^2}}\] +

+ Where \(\mu\) is the mean of the normal distribution, and \(\sigma\) is the standard deviation. +

+

+ Generally, if a random variable X follows normal distribution, we represent it by \(X\sim N(\mu, \sigma^2)\). Specifically, if a normal distribution has a 0 mean and 1 standard deviation, we called it standard normal distribution. Now let's simulate a standard normal distribution using Python packages to see what it looks like: +

+ +
+ +
plt.figure(figsize = (20,10))
+norm.plot.density()
+plt.show()
+
+
+plot3 +

+ Financial data is highly disordered and is considered to has lots of noise. Most of the time we believe those noise follows normal distribution. It's also widely believed that the return on an asset over a short period of time follows normal distribution. Let's check it with the daily logarithm rates of return on SPY: +

+ +
+ +
import quandl
+quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'
+spy_table = quandl.get('BCIW/_SPXT')
+spy = spy_table.loc['2009':'2017',['Open','Close']]
+spy['log_return'] = np.log(spy.Close).diff()
+spy = spy.dropna()
+
+
+

+ We calculated the logarithm daily return of S&P 500 index from 2009 to present. Let's first have a look at the what the time-series return data looks like: +

+ +
+ +
plt.figure(figsize = (20,10))
+spy.log_return.plot()
+plt.show()
+
+
+plot4 +

+ This is a classic daily return chart. Let's now plot the density chart of the returns: +

+ +
+ +
plt.figure(figsize = (20,10))
+spy.log_return.plot.density()
+plt.show()
+
+
+plot5 +

+ If we observe the x-axis and y-axis carefully, we can see the return of asset is not a standard normal distribution. The peak of the standard normal distribution plot is around 0.4, while it's over 0.6 for this chart. This is because the standard deviation \(\sigma\) of the return is obviously not 1. We can demonstrate the normal distribution with different mean and variance by simulation: +

+ +
+ +
de_2 = pd.Series(np.random.normal(0,2,10000),name = 'μ = 0, σ = 2')
+de_3 = pd.Series(np.random.normal(0,3,10000),name = 'μ = 0, σ = 3')
+de_0 = pd.Series(np.random.normal(0,0.5,10000), name ='μ = 0, σ = 0.5')
+mu_1 = pd.Series(np.random.normal(-2,1,10000),name ='μ = -2, σ = 1')
+df = pd.concat([de_2,de_3,de_0,mu_1],axis = 1)
+plt.figure(figsize=(20,10))
+df.plot.density()
+plt.show()
+
+
+plot6 diff --git a/05 Introduction to Financial Python[]/07 Random Variables and Distributions/05 Summary.html b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/05 Summary.html new file mode 100755 index 0000000..1b84d06 --- /dev/null +++ b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/05 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we introduced random variable, the difference between discrete random distribution and continuous random distribution, and most importantly, normal distribution. In the next chapter we will introduce how to use these distributions to test our idea or generating trading signals. +

diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial07 Random Variable and Distributions.ipynb b/05 Introduction to Financial Python[]/07 Random Variables and Distributions/07 Random Variable and Distributions.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Financial Python/Tutorial07 Random Variable and Distributions.ipynb rename to 05 Introduction to Financial Python[]/07 Random Variables and Distributions/07 Random Variable and Distributions.ipynb diff --git a/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/01 Introduction.html b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/01 Introduction.html new file mode 100755 index 0000000..fd72d46 --- /dev/null +++ b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/01 Introduction.html @@ -0,0 +1,6 @@ +

+ In the last chapter we discussed random variables and random distributions. Now we are going to use the distributions we learned to test our hypothesis and also to model the financial data. When building a trading strategy, it's essential to do some research. However, you won't be able to test your idea using all the data, because it's infinity. You can only use a sample to do your experiment. That's why we need to understand the difference between population and sample, and then use confidence interval to test our hypothesis. +

+

+ As we mentioned before, both mean and standard deviation are point estimation, and they can be deceiving because sample means are different from population means. Financial data is generated every day now and in the future, thus even though we can use all the data available, it's still just a sample. This is why we need to use confidence interval to attempt to determine how accurate our sample mean estimation is. +

diff --git a/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/02 Confidence Interval.html b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/02 Confidence Interval.html new file mode 100755 index 0000000..2d4404b --- /dev/null +++ b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/02 Confidence Interval.html @@ -0,0 +1,112 @@ +

Sample Error

+

+ Let's use the daily return on S&P 500 index from Aug 2010 to present is our population. If we take the recent 10 daily returns to calculate the mean, will it be the same as the population mean? How about increasing the sample size to 1000? +

+ +
+ +
import matplotlib.pyplot as plt
+import numpy as np
+import pandas as pd
+
+qb = QuantBook()
+spy = qb.AddEquity("SPY").Symbol
+
+#get SPY data from August 2010 to the present
+start_date = datetime(2010, 8, 1, 0, 0, 0)
+end_date = qb.Time
+spy_table = qb.History(spy, start_date, end_date, Resolution.Daily)
+
+spy_total = spy_table[['open','close']]
+#calculate log returns
+spy_log_return = np.log(spy_total.close).diff().dropna()
+print('Population mean:', np.mean(spy_log_return))
+[out]: Population mean: 0.000443353825615
+print('Population standard deviation:',np.std(spy_log_return))
+[out]: Population standard deviation: 0.00784267293815
+
+
+ +

+ Now let's check the recent 10 days sample and recent 1000 days sample: +

+ +
+ +
+print('10 days sample returns:', np.mean(spy_log_return.tail(10)))
+[out]: 10 days sample returns: 0.000845189915474
+print('10 days sample standard deviation:', np.std(spy_log_return.tail(10)))
+[out]: 10 days sample standard deviation: 0.00313558001122
+print('1000 days sample returns:', np.mean(spy_log_return.tail(1000)))
+[out]: 1000 days sample returns: 0.000462827047221
+print('1000 days sample standard deviation:', np.std(spy_log_return.tail(1000)))
+[out]: 1000 days sample standard deviation: 0.00766589174299
+
+
+

+ As we expected, the two samples has different means and variances. +

+ +

Confidence Interval

+

+ In order to estimate the range of population mean, we define standard error of the mean as follows: +

+\[SE = \frac{\sigma}{\sqrt{n}}\] +

+ Where \(\sigma \) is the sample standard deviation and \(n\) is the sample size. +

+

+ Generally, if we want to estimate an interval of the population so that 95% of the time the interval will contain the population mean, the interval is calculated as: +

+\[(\mu - 1.96*SE, \mu + 1.96*SE)\] +

+ Where \(\mu\) is the sample mean and SE is the standard error. +

+

+ This interval is called confidence interval. We usually use 1.96 to calculate a 95% confidence interval because we assume that the sample mean follows normal distribution. We will cover this in detail later. Let's try to calculate the confidence interval using the samples above: +

+
+ +
+#apply the formula above to calculate confidence interval
+bottom_1 = np.mean(spy_log_return.tail(10))-1.96*np.std(spy_log_return.tail(10))/(np.sqrt(len((spy_log_return.tail(10)))))
+upper_1 = np.mean(spy_log_return.tail(10))+1.96*np.std(spy_log_return.tail(10))/(np.sqrt(len((spy_log_return.tail(10)))))
+bottom_2 = np.mean(spy_log_return.tail(1000))-1.96*np.std(spy_log_return.tail(1000))/(np.sqrt(len((spy_log_return.tail(1000)))))
+upper_2 = np.mean(spy_log_return.tail(1000))+1.96*np.std(spy_log_return.tail(1000))/(np.sqrt(len((spy_log_return.tail(1000)))))
+#print the outcomes
+print('10 days 95% confidence inverval:', (bottom_1,upper_1))
+[out]: 10 days 95% confidence inverval: (-0.0010982627102681939, 0.002788642541217079)
+print('1000 days 95% confidence inverval:', (bottom_2,upper_2))
+[out]: 1000 days 95% confidence inverval: (-1.230984558013321e-05, 0.00093796394002165957)
+
+
+ +

+ As we can see, the 95% confidence interval became much narrower if we increase the sample size from 10 to 1000. Imagine that if N goes positive infinite, then we have \(\lim_{n\rightarrow \infty}\frac{\sigma}{\sqrt{n}} = 0\). The confidence interval would become a certain value, which is the sample mean! +

+ +

Confidence Interval of Normal Distribution

+

+ Normal Distribution is so commonly used that we should be able to remember some critical values of it. Specifically, we usually use 90%, 95% and 99% as the confidence level of a confidence interval. The critical values for these three confidence levels are 1.64, 1.96, and 2.32 respectively. in other words: +

+\[\%90 upperabnd = \mu + 1.64*SE\] +\[\%90 lowerband = \mu + 1.64*SE\] +

+ The same for other confidence intervals. It's also important to remember the famous 'Three sigma rule' or '68-95-99.7' rule associated with normal distribution. This is used to remember the confidence level of the intervals with a width of two, four and six standard deviation. Mathematically: +

+\[P(\mu - \sigma \leq X \leq \mu+\sigma)\approx 0.6827\] +\[P(\mu - 2\sigma \leq X \leq \mu+2\sigma)\approx 0.9545\] +\[P(\mu - 3\sigma \leq X \leq \mu+3\sigma)\approx 0.9973\] +

+ This can also be remembered by using the chart: +

+empirical rule +

Central Limit Theory

+

+ As we mentioned, if we use the sample to estimate the confidence interval of the population, the 95% confidence interval is: +

+\[(\mu - 1.96*SE, \mu + 1.96*SE)\] +

+ Now you may have some sense to the number 1.96. It's the 95% critical value of a normal distribution. Does this means we assume the mean of sample follows a normal distribution? The answer is yes. This assumption is supported by central limit theorem. This theorem tells us that given a sufficiently large sample size from a population with a finite level of variance, the mean of all samples from the same population will be approximately equal to the mean of the population, and the means of the samples will be approximately normal distributed. This is the foundation of population mean confidence interval estimation. +

diff --git a/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/03 Hypothesis testing.html b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/03 Hypothesis testing.html new file mode 100755 index 0000000..e25e886 --- /dev/null +++ b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/03 Hypothesis testing.html @@ -0,0 +1,94 @@ +

+ Now we can talk about hypothesis testing. Hypothesis test is essentially test your inference based on a sample. Let's use our dataset, the daily return of S&P 500 us our population. Assume that we don't know the mean of this population. I guess that the mean of this population is 0. Is my guess correct? I need to test this hypothesis with my sample. Let's start from observing our sample: +

+ +
+ +
mean_1000 = np.mean(spy_log_return.tail(1000))
+std_1000 = np.std(spy_log_return.tail(1000))
+mean_10 = np.mean(spy_log_return.tail(10))
+std_10 = np.std(spy_log_return.tail(10))
+s = pd.Series([mean_10,std_10,mean_1000,std_1000],index = ['mean_10', 'std_10','mean_1000','std_1000'])
+print(s)
+
+[out]: mean_10      0.000845
+       std_10       0.003136
+       mean_1000    0.000463
+       std_1000     0.007666
+
+
+

+ We know how to calculate the confidence interval now. If I were right, i.e. the population mean is 0, then the 90% confidence interval of the sample with 1000 observations should be: +

+ +
+ +
bottom = 0 - 1.64*std_1000/np.sqrt(1000)
+upper = 0 + 1.64*std_1000/np.sqrt(1000)
+print((bottom, upper))
+[out]: (-0.00039756352254768874, 0.00039756352254768874)
+
+
+

+ Our mean of the sample is out of the 90% confidence interval. This means on a 90% confidence level, we can claim that the mean of our population is not 0. In other word, we rejected the hypothesis that the daily return on S&P500 from aug 2010 is zero. Can we claim that with 95% confidence level? +

+ +
+ +
bottom = 0 - 1.96*std_1000/np.sqrt(1000)
+upper = 0 + 1.96*std_1000/np.sqrt(1000)
+print((bottom, upper))
+[out]: (-0.00047513689280089639, 0.00047513689280089639)
+
+
+

+ This time the sample mean is within the confidence interval. Thus we can't reject my hypothesis. In other words, we can't claim with 95% confidence level that the mean return is positive. Even though we can claim it with 90% confidence level. We have actually already finished a hypothesis testing above! In general, we have null hypothesis \(H_0\) and alternative hypothesis. They are usually in the following forms: +

+\[H_0:\bar{\mu} = 0\] +\[H_0:\bar{\mu} \neq 0\] +

+ If the tested value is outside the confidence interval, we reject the null hypothesis, or accept the alternative hypothesis; If the tested value is within the confidence interval, we can't reject the null hypothesis. Although the hypothesis testing method we used above is straightforward, it's not so convenient to implement. Instead, we reverse the process to calculate the critical value, or Z-score. Z-score is defined as: +

+\[Z = \frac{X - \mu}{\frac{\sigma}{\sqrt{n}}}\] +

+ Let's calculate the Z score from our sample: +

+
+ +
print(np.sqrt(1000)*(mean_1000 - 0)/std_1000)
+[out]: 1.90922032428
+
+
+

+ We know that the critical value for the 90% confidence level is 1.64 and that for the 95% confidence level is 95%. The higher the Z score is, the further the tested value is from the hypothesized value(which is 0 in this example). Thus with 90% confidence level, we are far away enough from zero and we reject the null hypothesis. However with 95% confidence level, we are not far away enough from zero, so we can't reject the null hypothesis. One reason of doing in this way is that we can know how wide our confidence interval is. In our example, the z-score is 1.8488. We can know the width is the confidence interval referring to a normal distribution table. Of course we can do this in Python: +

+ +
+ +
import scipy.stats as st
+print((1 - st.norm.cdf(1.9488)))
+[out]: 0.025659656888
+
+
+

+ It's worth noting that st.norm.cdf will return the probability that a value take from the distribution is less than our tested value. In other words, 1 - st.norm.cdf(1.9488) will return the probability that the value is greater than our tested value, which is 0.025659 in this example. This calculated number is called p-value. If our confidence level our confidence interval is 95%, then we have 2.5% on the left side and 2.5% on the right side. This is called two-tail test. If our null hypothesis is \(\mu = 0\), we are conducting two-tail test because the tested sample mean can be either positive enough or negative enough to reject the null hypothesis. We can see it from the chart: +

+confidence interval +

+ If we use 95% confidence interval, we need a p-value less than 0.025 to reject the null hypothesis. However, now our p-value is 0.025659, which is greater than 0.025, thus we can't reject the null hypothesis. It's obviously less than 0.05, so we can still reject the null hypothesis with 90% confidence level. Now let's test the hypothesis that population mean = 0 again with a large sample, which has 1200 observations: +

+
+ +
mean_1200 = np.mean(spy_log_return.tail(1200))
+std_1200 = np.std(spy_log_return.tail(1200))
+z_score = np.sqrt(1200)*(mean_1200 - 0)/std_1200
+print('z-score = ',z_score)
+[out]: z-score =  2.19793023185
+p_value = (1 - st.norm.cdf(z_score))
+print('p_value = ',p_value)
+[out]: p_value =  0.0139770390655
+
+
+

+ Using the a larger sample, now we can reject the null hypothesis with a higher confidence interval! our p-value is 0.0105, and it's a two-tail test, so our confidence level of the interval is 1-(0.0105*2) = 0.979. We can say at most with 97.9% confidence interval, we can claim that the population mean is not zero. We already know that the population mean is not 0. As our sample size increasing, the accurate rate of our hypothesis goes up. +

diff --git a/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/04 Summary.html b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/04 Summary.html new file mode 100755 index 0000000..724eb85 --- /dev/null +++ b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/04 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we introduced confidence interval, especially that for the normal distribution, and hypothesis test. Now we know how to test our idea rigorously. Normal distribution and it's confidence interval can be applied to many quantitative finance theories, we will see it frequently in our following tutorials. +

diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial08 Confidence Interval and Hypothesis Testing.ipynb b/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/08 Confidence Interval and Hypothesis Testing.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Financial Python/Tutorial08 Confidence Interval and Hypothesis Testing.ipynb rename to 05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/08 Confidence Interval and Hypothesis Testing.ipynb diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/01 Introduction.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/01 Introduction.html new file mode 100755 index 0000000..142730d --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/01 Introduction.html @@ -0,0 +1,77 @@ +

+ In finance and economics filed, most of the models are linear ones. We can see linear regression everywhere, from the foundation of the model portfolio theory to the nowadays popular Fama-French asset pricing model. It's very important to understand how linear regression works in order to have a comprehensive understanding of those theories. +

+

+ If we are holding a stock, we must be curious about the relationship between our stock return and the market return. Let's say we hold Amazon stock on the first day of this year. In order to see the relation directly, we plot the daily return of our stock on the y-axis and plot the S&P 500 index daily return on the x-axis. +

+
+ +
import numpy as np
+import pandas as pd
+import quandl
+quandl.ApiConfig.api_key = '_fgkxjSbt5389zGt4crC'
+#get data from quandl
+spy_table = quandl.get('BCIW/_SPXT')
+amzn_table = quandl.get('WIKI/AMZN')
+#fetch data from Jan 2017 to Jun 2017
+spy = spy_table.loc['2017':'2017-6',['Close']]
+amzn = amzn_table.loc['2017':'2017-6',['Close']]
+#calculate log return
+spy_log = np.log(spy.Close).diff().dropna()
+amzn_log = np.log(amzn.Close).diff().dropna()
+df = pd.concat([spy_log,amzn_log],axis = 1).dropna()
+df.columns = ['spx','amzn']
+print df.tail()
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 spyamzn
2016-12-22-0.004462-0.005543
2016-12-230.001372-0.007531
2016-12-230.0009280.000946
2016-12-23-0.005671-0.009081
2016-12-230.002086-0.020172
+

+ We successfully create a DataFrame contains the daily logarithm return of Amazon stock and S&P500. Now let's plot it: +

+ +
+ +
import matplotlib.pyplot as plt
+plt.figure(figsize = (15,10))
+plt.scatter(df.spy,df.amzn)
+plt.show()
+
+
+ +plot1 +

+ The plot is scattered, but we can see they are approximately correlated: generally the higher SPX's daily return is, the higher Amazon stock's return is. This is called positively correlated. We will cover it in the following tutorials. +

diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/02 Slope and Intercept.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/02 Slope and Intercept.html new file mode 100755 index 0000000..f1d15b8 --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/02 Slope and Intercept.html @@ -0,0 +1,16 @@ +

+ It's natural that we want to model the relation between these two rates of return. Intuitively we use a straight line to model it, this is called Linear Regression. In order to find the best straight line, it's natural to think that the vertical distances between the points of the data set and the fitted line should be minimized. Those vertical distances are called residual. Our objective is to make the sum of squared residuals as small as possible. This method is called ordinary least square, or OLS method. We use x and y to represent the two variable, S&P 500 daily returns and AMZN daily returns. The linear relation is: +

+ +\[Y = Y = \alpha + \beta*X + \epsilon\] +

+ Where \(\alpha\) is called intercept, \(\beta\) is called slope. Generally, if the scatter points can be represented by\(\left\{\right (x_1,y_1),(x_2, y_2),(x_3,y_3)...(x_n,y_n) \left\}\right\), then the intercept and slope are given by: +

+\[\beta = \frac{\sum_{i=1}^{n}(x-\bar{x})(y-\bar{y})}{\sum_{i=1}^{n}(x-\bar{x})^2}\] +\[\alpha = \bar{y} - \hat{\beta}\bar{x}\] +

+ Where \(\bar{x}\) is the mean of X, \(\bar{y}\) is the mean of Y. +

+

+ In python, we don't need to do the above calculation manually because we have package for it. But it still very important to understand the calculation process of \(\beta\) in order the understand the modern portfolio theory and CAPM, which we will cover in the future. +

diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/03 Python Implementation.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/03 Python Implementation.html new file mode 100755 index 0000000..0e0f7d9 --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/03 Python Implementation.html @@ -0,0 +1,51 @@ +

+ In python, we have a very power package for mathematical models, which is named 'statsmodels'. +

+
+ +
import statsmodels.formula.api as sm
+model = sm.ols(formula = 'amzn~spy',data = df).fit()
+print model.summary()
+
+
+ +plot2 +

+ We built a simple linear regression model above by using the ols() function in statsmodels. The 'model' instance has lots of properties. The most commonly used one is parameters, or slope and intercept. We can access to them by: +

+
+ +
print 'pamameters: ',model.params
+[out]: pamameters:  Intercept    0.000012
+                   spy          0.492112
+print 'residual: ', model.resid.tail()
+[out]: residual:  Date
+2016-12-22   -0.003360
+2016-12-23   -0.008219
+2016-12-28    0.000477
+2016-12-29   -0.006303
+2016-12-30   -0.021211
+print 'fitted values: ',model.predict()
+[out]: fitted values:  [-0.00070299 -0.00218348  0.00068734  0.00046907 -0.00277819  0.00103882]
+
+
+ +

+ Now let's have a look at our fitted line: +

+
+ +
plt.figure(figsize = (15,10))
+plt.scatter(df.spy,df.amzn)
+plt.xlabel('spx_return')
+plt.ylabel('amzn_return')
+plt.plot(df.spy,model.predict(),color = 'red')
+plt.show()
+
+
+ +head +

+ The red line is the fitted linear regression straight line. As we can see there are lot of statistical results in the summary table. Now let's talk about some important statistical parameters. +

+regression table diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/04 Parameter Significance.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/04 Parameter Significance.html new file mode 100755 index 0000000..5f85774 --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/04 Parameter Significance.html @@ -0,0 +1,11 @@ +

+ From the summary table we can see 'std err'. This means standard errors of the intercept and slope. The null hypothesis here is \(H_0: \beta = 0\), and the alternative hypothesis is \(H_1: \beta \neq 0\). This hypothesis score is calculated by: +

+\[t = \frac{\beta - 0}{SE}\] +

+ Where SE is given by: +

+\[SE = \sqrt\frac{\frac{1}{n-2}\sum_{i = 1}^{n}\hat{\epsilon}^2}{\sum_{i = i}^{n}(x_i - \bar{x})^2}\] +

+ The distribution used here is 'Student's t-distribution'. It's different from normal distribution but used in the similar way. The column 't' in this table is the test score, and 'p>|t|' is the p-value. By observing the p-value, we can see that the significance level of spy, or the slope, is very high because the p-value is close to zero. In other words, we have 99.999 confidence to claim that the slope is not 0, and there exists linear relation between X and Y. However, regarding the intercept, the p-value is 0.923, which means we have only 7.7% confidence level that the value of intercept is not 0. We can also see from the plot that the line crosses the origin. The following 2 columns are the lower band and upper band of the parameters at 95% confidence interval. At 95% confidence level, we can claim that the true value of the parameter is within this range. +

diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/05 Model Significance.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/05 Model Significance.html new file mode 100755 index 0000000..00c8cca --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/05 Model Significance.html @@ -0,0 +1,14 @@ +Sum of Squared Errors, or SSE, is used to measure the difference between the fitted value and the actual value. It's given by: +\[SSE = \sum_{i=1}^{n}(y_i - \hat{y_i})^2 = \sum_{i = 1}^{n}\hat{\epsilon_i}^2\] +

+ If the linear model perfectly fitted the sample, the SSE would be zero. The reason we use squared error here is that the positive and negative errors would offset each other if we simply summed them up. Another measurement of the dispersion of the sample is called total sum of squares, or SS.. it's given by: +

+\[SS = \sum_{i = i}^{n}(y_i - \bar{y}_i)^2\] +

+ If you are familiar with variance, we can see that SS divided by the number of sample n is the sample variance. From SSE and SS, we can calculate the Coefficient of Determination, or r-square for short. R-square means the proportion of variation that 'explained' by the linear relationship between X and Y, it's calculated by: +

+\[r^2 =1 = \frac{SSE}{SS} =1 - \frac{\sum_{i=1}^{n}(y_i - \hat{y_i})^2}{\sum_{i = i}^{n}(y_i - \bar{y}_i)^2}\] +

+ Let's assume that the model perfectly fitted the sample, which means all of the sample points lie on the straight line. Then the SSE would become zero, and the r-square would become 1. This means perfect fitness. The higher r-square is, the more parts of variation can be explained by the linear relation, the higher significance level the model is. + Some other parameters, such as F-statistic, AIC and BIC, are related to multiple linear regression, with would be cover in the next chapter. +

diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/06 Summary.html b/05 Introduction to Financial Python[]/09 Simple Linear Regression/06 Summary.html new file mode 100755 index 0000000..97c4201 --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/06 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we introduced how to implement simple linear in python, and focused on how to read the summary table. In next chapter we will introduced multiple linear regression, which are commonly used to built models in finance and economics. +

diff --git a/05 Introduction to Financial Python[]/09 Simple Linear Regression/09 Simple Linear Regression.ipynb b/05 Introduction to Financial Python[]/09 Simple Linear Regression/09 Simple Linear Regression.ipynb new file mode 100755 index 0000000..c870f22 --- /dev/null +++ b/05 Introduction to Financial Python[]/09 Simple Linear Regression/09 Simple Linear Regression.ipynb @@ -0,0 +1,267 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import quandl\n", + "spy_table = quandl.get('LSE/SPY5')\n", + "amzn_table = quandl.get('WIKI/AMZN')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "spy = spy_table.loc['2016',['Last Close']]\n", + "amzn = amzn_table.loc['2016',['Close']]\n", + "spy_log = np.log(spy['Last Close']).diff().dropna()\n", + "amzn_log = np.log(amzn.Close).diff().dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
spyamzn
Date
2016-12-22-0.004462-0.005543
2016-12-230.001372-0.007531
2016-12-280.0009280.000946
2016-12-29-0.005671-0.009081
2016-12-300.002086-0.020172
\n", + "
" + ], + "text/plain": [ + " spy amzn\n", + "Date \n", + "2016-12-22 -0.004462 -0.005543\n", + "2016-12-23 0.001372 -0.007531\n", + "2016-12-28 0.000928 0.000946\n", + "2016-12-29 -0.005671 -0.009081\n", + "2016-12-30 0.002086 -0.020172" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.concat([spy_log,amzn_log],axis = 1).dropna()\n", + "df.columns = ['spy','amzn']\n", + "df.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0,0.5,'amzn_return')" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "plt.figure(figsize = (15,10))\n", + "plt.scatter(df.spy,df.amzn)\n", + "plt.xlabel('spx_return')\n", + "plt.ylabel('amzn_return')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: amzn R-squared: 0.044\n", + "Model: OLS Adj. R-squared: 0.040\n", + "Method: Least Squares F-statistic: 10.63\n", + "Date: Wed, 23 May 2018 Prob (F-statistic): 0.00128\n", + "Time: 14:20:17 Log-Likelihood: 608.99\n", + "No. Observations: 235 AIC: -1214.\n", + "Df Residuals: 233 BIC: -1207.\n", + "Df Model: 1 \n", + "Covariance Type: nonrobust \n", + "==============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "------------------------------------------------------------------------------\n", + "Intercept 1.234e-05 0.001 0.010 0.992 -0.002 0.002\n", + "spy 0.4921 0.151 3.261 0.001 0.195 0.789\n", + "==============================================================================\n", + "Omnibus: 51.597 Durbin-Watson: 2.255\n", + "Prob(Omnibus): 0.000 Jarque-Bera (JB): 570.651\n", + "Skew: 0.405 Prob(JB): 1.22e-124\n", + "Kurtosis: 10.591 Cond. No. 127.\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + } + ], + "source": [ + "import statsmodels.formula.api as sm\n", + "model = sm.ols(formula = 'amzn~spy',data = df).fit()\n", + "print(model.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pamameters: Intercept 0.000012\n", + "spy 0.492112\n", + "dtype: float64\n", + "residual: Date\n", + "2016-12-22 -0.003360\n", + "2016-12-23 -0.008219\n", + "2016-12-28 0.000477\n", + "2016-12-29 -0.006303\n", + "2016-12-30 -0.021211\n", + "dtype: float64\n", + "fitted values: [-0.00070299 -0.00218348 0.00068734 0.00046907 -0.00277819 0.00103882]\n" + ] + } + ], + "source": [ + "print('pamameters: ',model.params)\n", + "print('residual: ', model.resid.tail())\n", + "print('fitted values: ',model.predict()[-6:])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize = (15,10))\n", + "plt.scatter(df.spy,df.amzn)\n", + "plt.xlabel('spx_return')\n", + "plt.ylabel('amzn_return')\n", + "plt.plot(df.spy,model.predict(),color = 'red')\n", + "plt.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/01 Introduction.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/01 Introduction.html new file mode 100755 index 0000000..db3029b --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/01 Introduction.html @@ -0,0 +1,12 @@ +

+ In the last chapter we introduced simple linear regression, which has only one independent variable. In this chapter we will learn about linear regression with multiple independent variables. +

+

+ A simple linear regression model is written in the following form: +

+\[ Y = \alpha + \beta X + \epsilon \] + +

+ A multiple linear regression model with p variables is given by: +

+\[ Y = \alpha + \beta_1 X_1 + \beta_2 X_2 + \dots + \beta_p X_p + \epsilon \] diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/02 Python Implementation.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/02 Python Implementation.html new file mode 100755 index 0000000..6b532d0 --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/02 Python Implementation.html @@ -0,0 +1,282 @@ +

+ In the last chapter we used the S&P 500 index to predict Amazon stock returns. Now we will add more variables to improve our model's predictions. In particular, we shall consider Amazon's competitors. +

+ +
+ +
import numpy as np
+import pandas as pd
+import quandl
+import matplotlib.pyplot as plt
+import statsmodels.formula.api as sm
+
+# Get stock prices
+quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'
+spy_table  = quandl.get('BCIW/_SPXT')
+amzn_table = quandl.get('WIKI/AMZN')
+ebay_table = quandl.get('WIKI/EBAY')
+wal_table  = quandl.get('WIKI/WMT')
+aapl_table = quandl.get('WIKI/AAPL')
+
+ +

+ Then we fetch closing prices starting from 2016: +

+ +
+ +
+spy  = spy_table .loc['2016',['Close']]
+amzn = amzn_table.loc['2016',['Close']]
+ebay = ebay_table.loc['2016',['Close']]
+wal  = wal_table .loc['2016',['Close']]
+aapl = aapl_table.loc['2016',['Close']]
+
+
+ +

+ After taking log returns of each stock, we concatenate them into a DataFrame, and print out the last 5 rows: +

+ +
+ +
+spy_log  = np.log(spy.Close) .diff().dropna()
+amzn_log = np.log(amzn.Close).diff().dropna()
+ebay_log = np.log(ebay.Close).diff().dropna()
+wal_log  = np.log(wal.Close) .diff().dropna()
+aapl_log = np.log(aapl.Close).diff().dropna()
+df = pd.concat([spy_log,amzn_log,ebay_log,wal_log,aapl_log],axis = 1).dropna()
+df.columns = ['SPY', 'AMZN', 'EBAY', 'WAL', 'AAPL']
+df.tail()
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateSPYAMZNEBAYWALAAPL
2016-12-230.001351-0.0075310.008427-0.0007190.001976
2016-12-270.0022540.0141130.0149930.0022980.006331
2016-12-28-0.0082180.000946-0.007635-0.005611-0.004273
2016-12-29-0.000247-0.009081-0.001000-0.000722-0.000257
2016-12-30-0.004601-0.020172-0.009720-0.002023-0.007826
+ +

+ As before, we use the 'statsmodels' package to perform simple linear regression: +

+ +
+ +
simple = sm.ols(formula = 'amzn ~ spy', data = df).fit()
+print simple.summary()
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 coefstd errtP>|t|[0.0250.975]
Intercept9.876e-050.0010.0970.923-0.0020.002
spy1.07960.1248.7250.0000.8361.323
+ +

+ Similarly, we can build a multiple linear regression model: +

+ +
+ +
model = sm.ols(formula = 'amzn ~ spy + ebay + wal', data = df).fit()
+print model.summary()
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 coefstd errtP>|t|[0.0250.975]
Intercept0.00010.0010.1340.894-0.0020.002
spy1.04680.1706.1550.0000.7121.382
ebay-0.07950.058-1.3640.174-0.1940.035
wal-0.08650.089-0.9760.330-0.2610.088
aapl0.15290.0841.8310.068-0.0120.317
+ +

+ As seen from the summary table, the p-values for Ebay, Walmart and Apple are 0.174, 0.330 and 0.068 respectively, so none of them are significant at a 95% confidence level. The multiple regression model has a higher \( R^2 \) than the simple one: 0.254 vs 0.234. Indeed, \( R^2 \) cannot decrease as the number of variables increases. Why? If an extra variable is added to our regression model, but it cannot account for variations in the response (amzn), then its estimated coefficient will simply be zero. It's as though that variable was never included in the model, so \( R^2 \) will not change. However, it is not always better to add hundreds of variables or we will overfit our model. We'll talk about this in a later chapter. +

+ +

+ Can we improve our model further? Here we try the Fama-French 5-factor model, which is an important model in asset pricing theory. We will cover it in the later tutorials. +

+ +

+ The data needed are publicly available on French's website. We have saved a copy for convenience. The following code fetches the data. +

+ +
+ +
+import urllib2
+from datetime import datetime
+
+url = 'https://www.quantconnect.com/tutorials/wp-content/uploads/2017/08/F-F_Research_Data_5_Factors_2x3_daily.csv'
+response   = urllib2.urlopen(url)
+fama_table = pd.read_csv(response)
+
+# Convert time column into index
+fama_table.index = [datetime.strptime(str(x), "%Y%m%d")
+                    for x in fama_table.iloc[:,0]]
+# Remove time column
+fama_table = fama_table.iloc[:,1:]
+
+
+ +

+ With the data, we can construct a Fama-French factor model: +

+
+ +
+fama = fama_table['2016']
+fama = fama.rename(columns = {'Mkt-RF':'MKT'})
+fama = fama.apply(lambda x: x/100)
+fama_df = pd.concat([fama, amzn_log], axis = 1)
+fama_model = sm.ols(formula = 'Close~MKT+SMB+HML+RMW+CMA', data = fama_df).fit()
+print fama_model.summary()
+
+
+fama +

+ The Fama-French 5-factor model has a higher \( R^2 \) of 0.387. We can compare the predictions from simple linear regression and Fama-French multiple regression by plotting them together on one chart: +

+
+ +
+result = pd.DataFrame({'simple regression': simple.predict(),
+                       'fama_french': fama_model.predict(),
+                       'sample': df.amzn}, index = df.index)
+
+# Feel free to adjust the chart size
+plt.figure(figsize = (15,7.5))
+plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','simple regression'])
+plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','fama_french'])
+plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','sample'])
+plt.legend()
+plt.show()
+
+
+compare +

+ Although it's hard to see from the chart above, the predicted return from multiple regression is closer to the actual return. Usually we don't plot the predictions to determine which model is better; we read the summary table. +

diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/03 Model Significance Test.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/03 Model Significance Test.html new file mode 100755 index 0000000..63be11a --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/03 Model Significance Test.html @@ -0,0 +1,13 @@ +

+ Instead of using \( R^2 \) to assess whether our regression model is a good fit to the data, we can perform a hypothesis test: the F test. + The null and alternative hypotheses of an F test are: +

+ +\[ H_0: \beta_1 = \beta_2 = \dots = \beta_p = 0 \] +\[ H_1: \text{At least one coefficient is not 0} \] + +

+ We won't explain F test procedure in detail here. You just need to understand the null and alternative hypotheses. In the summary table of an F test, the 'F-statistic' is the F score, while 'prob (F-statistic)' is the p-value. Performing this test on the Fama-French model, we get a p-value of `2.21e-24` so we are almost certain that at least one of the coefficient is not 0. + If the p-value is larger than 0.05, you should consider rebuilding your model with other independent variables. + In simple linear regression, an F test is equivalent to a t test on the slope, so their p-values will be the same. +

diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/04 Residual Analysis.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/04 Residual Analysis.html new file mode 100755 index 0000000..5089062 --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/04 Residual Analysis.html @@ -0,0 +1,69 @@ +

+ Linear regression requires that the predictors and response have a linear relationship. This assumption holds if the residuals are zero on average, no matter what values the predictors \( X_1, \dots, X_p \) take. + Often it's also assumed that the residuals are independent and normally distributed with the same variance (homoskedasticity), so that we can contruct prediction intervals, for example. + To check whether these assumptions hold, we need to analyse the residuals. In statistical arbitrage, residual analysis can also be used to generate signals. +

+ +

Normality

+ +

+ The residuals of a linear model usually has a normal distribution. We can plot the residual's density to check for normality: +

+ +
+ +
plt.figure()
+#ols.fit().model is a method to access to the residual.
+fama_model.resid.plot.density()
+plt.show()
+
+
+residual + +

+ As seen from the plot, the residual is normally distributed. By the way, the residual mean is always zero, up to machine precision: +

+ +
+ +
print 'Residual mean:', np.mean(fama_model.resid)
+[out]: Residual mean: -2.31112163493e-16
+print 'Residual variance:', np.var(fama_model.resid)
+[out]: Residual variance: 0.000205113416293
+
+
+ +

Homoskedasticity

+ +

+ This word is difficult to pronounce but not difficult to understand. It means that the residuals have the same variance for all values of X. Otherwise we say that 'heteroskedasticity' is detected. +

+ +
+ +
plt.figure(figsize = (20,10))
+plt.scatter(df.spy,simple.resid)
+plt.axhline(0.05)
+plt.axhline(-0.05)
+plt.xlabel('x value')
+plt.ylabel('residual')
+plt.show()
+
+
+variance +

+ As seen from the chart, the residuals' variance doesn't increase with X. The three outliers do not change our conclusion. Although we can plot the residuals for simple regression, we can't do this for multiple regression, so we use statsmodels to test for heteroskedasticity: +

+ +
+ +
from statsmodels.stats import diagnostic as dia
+het = dia.het_breuschpagan(fama_model.resid,fama_df[['MKT','SMB','HML','RMW','CMA']][1:])
+print 'p-value: ', het[-1]
+[out]:p-value of Heteroskedasticity:  0.144075842844
+
+
+ +

+ No heteroskedasticity is detected at the 95% significance level. +

diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/05 Summary.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/05 Summary.html new file mode 100755 index 0000000..cff63c1 --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/05 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we have introduced multiple linear regression, F test and residual analysis, which are the fundamentals of linear models. In the next chapter we will introduce some linear algebra, which are used in modern portfolio theory and CAPM. +

diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/06 References.html b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/06 References.html new file mode 100644 index 0000000..7ac3bff --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/06 References.html @@ -0,0 +1,5 @@ +
    +
  1. + mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/f-f_factors.html +
  2. +
diff --git a/05 Introduction to Financial Python[]/10 Multiple Linear Regression/10 Multiple Linear Regression.ipynb b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/10 Multiple Linear Regression.ipynb new file mode 100755 index 0000000..3ae3a01 --- /dev/null +++ b/05 Introduction to Financial Python[]/10 Multiple Linear Regression/10 Multiple Linear Regression.ipynb @@ -0,0 +1,487 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import quandl\n", + "import matplotlib.pyplot as plt\n", + "import statsmodels.formula.api as sm" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "metadata": {}, + "outputs": [], + "source": [ + "quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'\n", + "goog_table = quandl.get('WIKI/GOOG')\n", + "amzn_table = quandl.get('WIKI/AMZN')\n", + "ebay_table = quandl.get('WIKI/EBAY')\n", + "wal_table = quandl.get('WIKI/WMT')\n", + "aapl_table = quandl.get('WIKI/AAPL')" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
googamznebaywalaapl
Date
2016-12-23-0.001708-0.0075310.008427-0.0007190.001976
2016-12-270.0020740.0141130.0149930.0022980.006331
2016-12-28-0.0082460.000946-0.007635-0.005611-0.004273
2016-12-29-0.002883-0.009081-0.001000-0.000722-0.000257
2016-12-30-0.014113-0.020172-0.009720-0.002023-0.007826
\n", + "
" + ], + "text/plain": [ + " goog amzn ebay wal aapl\n", + "Date \n", + "2016-12-23 -0.001708 -0.007531 0.008427 -0.000719 0.001976\n", + "2016-12-27 0.002074 0.014113 0.014993 0.002298 0.006331\n", + "2016-12-28 -0.008246 0.000946 -0.007635 -0.005611 -0.004273\n", + "2016-12-29 -0.002883 -0.009081 -0.001000 -0.000722 -0.000257\n", + "2016-12-30 -0.014113 -0.020172 -0.009720 -0.002023 -0.007826" + ] + }, + "execution_count": 120, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "goog = goog_table.loc['2016',['Close']]\n", + "amzn = amzn_table.loc['2016',['Close']]\n", + "ebay = ebay_table.loc['2016',['Close']]\n", + "wal = wal_table.loc['2016',['Close']]\n", + "aapl = aapl_table.loc['2016',['Close']]\n", + "goog_log = np.log(goog.Close).diff().dropna()\n", + "amzn_log = np.log(amzn.Close).diff().dropna()\n", + "ebay_log = np.log(ebay.Close).diff().dropna()\n", + "wal_log = np.log(wal.Close).diff().dropna()\n", + "aapl_log = np.log(aapl.Close).diff().dropna()\n", + "df = pd.concat([goog_log,amzn_log,ebay_log,wal_log,aapl_log],axis = 1).dropna()\n", + "df.columns = ['goog','amzn','ebay','wal','aapl']\n", + "df.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: Close R-squared: 0.346\n", + "Model: OLS Adj. R-squared: 0.319\n", + "Method: Least Squares F-statistic: 12.51\n", + "Date: Wed, 23 May 2018 Prob (F-statistic): 9.49e-10\n", + "Time: 14:16:24 Log-Likelihood: 419.66\n", + "No. Observations: 124 AIC: -827.3\n", + "Df Residuals: 118 BIC: -810.4\n", + "Df Model: 5 \n", + "Covariance Type: nonrobust \n", + "==============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "------------------------------------------------------------------------------\n", + "Intercept 0.0004 0.001 0.453 0.651 -0.001 0.002\n", + "MKT 1.2675 0.200 6.339 0.000 0.872 1.664\n", + "SMB -0.4920 0.187 -2.636 0.010 -0.862 -0.122\n", + "HML -0.4131 0.185 -2.228 0.028 -0.780 -0.046\n", + "RMW -0.1974 0.293 -0.673 0.502 -0.778 0.384\n", + "CMA -0.6478 0.283 -2.292 0.024 -1.208 -0.088\n", + "==============================================================================\n", + "Omnibus: 20.018 Durbin-Watson: 2.022\n", + "Prob(Omnibus): 0.000 Jarque-Bera (JB): 90.152\n", + "Skew: -0.269 Prob(JB): 2.65e-20\n", + "Kurtosis: 7.142 Cond. No. 410.\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + } + ], + "source": [ + "model = sm.ols(formula = 'amzn~goog+ebay+wal+aapl',data = df).fit()\n", + "print(model2.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: amzn R-squared: 0.351\n", + "Model: OLS Adj. R-squared: 0.348\n", + "Method: Least Squares F-statistic: 134.7\n", + "Date: Wed, 23 May 2018 Prob (F-statistic): 3.50e-25\n", + "Time: 14:16:25 Log-Likelihood: 702.38\n", + "No. Observations: 251 AIC: -1401.\n", + "Df Residuals: 249 BIC: -1394.\n", + "Df Model: 1 \n", + "Covariance Type: nonrobust \n", + "==============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "------------------------------------------------------------------------------\n", + "Intercept 0.0005 0.001 0.550 0.583 -0.001 0.002\n", + "goog 0.8636 0.074 11.607 0.000 0.717 1.010\n", + "==============================================================================\n", + "Omnibus: 67.564 Durbin-Watson: 1.823\n", + "Prob(Omnibus): 0.000 Jarque-Bera (JB): 1470.739\n", + "Skew: -0.374 Prob(JB): 0.00\n", + "Kurtosis: 14.835 Cond. No. 79.7\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + } + ], + "source": [ + "simple = sm.ols(formula = 'amzn ~ goog',data = df).fit()\n", + "print(simple.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "metadata": {}, + "outputs": [], + "source": [ + "from datetime import datetime\n", + "url = 'https://www.quantconnect.com/tutorials/wp-content/uploads/2017/08/F-F_Research_Data_5_Factors_2x3_daily.csv'\n", + "fama_table = pd.read_csv(url)\n", + "index = [datetime.strptime(str(x), \"%Y%m%d\") for x in fama_table.iloc[:,0]]\n", + "fama_table.index = index\n", + "fama_table = fama_table.iloc[:,1:]" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "metadata": {}, + "outputs": [], + "source": [ + "fama = fama_table['2016']\n", + "fama = fama.rename(columns = {'Mkt-RF':'MKT'})\n", + "fama = fama.apply(lambda x: x/100)\n", + "fama_df = pd.concat([fama,amzn_log],axis = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: Close R-squared: 0.387\n", + "Model: OLS Adj. R-squared: 0.375\n", + "Method: Least Squares F-statistic: 30.97\n", + "Date: Wed, 23 May 2018 Prob (F-statistic): 2.21e-24\n", + "Time: 14:16:27 Log-Likelihood: 709.59\n", + "No. Observations: 251 AIC: -1407.\n", + "Df Residuals: 245 BIC: -1386.\n", + "Df Model: 5 \n", + "Covariance Type: nonrobust \n", + "==============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "------------------------------------------------------------------------------\n", + "Intercept 0.0010 0.001 1.028 0.305 -0.001 0.003\n", + "MKT 0.9612 0.125 7.691 0.000 0.715 1.207\n", + "SMB -0.5890 0.182 -3.235 0.001 -0.948 -0.230\n", + "HML -0.1335 0.211 -0.632 0.528 -0.549 0.282\n", + "RMW -0.4851 0.264 -1.840 0.067 -1.005 0.034\n", + "CMA -1.5555 0.324 -4.801 0.000 -2.194 -0.917\n", + "==============================================================================\n", + "Omnibus: 69.457 Durbin-Watson: 1.937\n", + "Prob(Omnibus): 0.000 Jarque-Bera (JB): 2012.675\n", + "Skew: 0.241 Prob(JB): 0.00\n", + "Kurtosis: 16.864 Cond. No. 399.\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + } + ], + "source": [ + "fama_model = sm.ols(formula = 'Close~MKT+SMB+HML+RMW+CMA',data = fama_df).fit()\n", + "print(fama_model.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA3wAAAG6CAYAAABTOkSiAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvNQv5yAAAIABJREFUeJzs3Xl8XHd1///XnV0zkmVpJG/xIjtesngJJMRsIQ4lC1CSEkppKUug0Ib+Sr99UCDQQEoC/RZa+gUKX8ovbSCBQgOkJGEJELLQGEjsxInt2Flsx7a8ydq32bf7/ePOHe3SSBrNXI3ez8cjj5FGs3yikWfuued8zjFM00RERERERESqj6vSCxAREREREZG5oYBPRERERESkSingExERERERqVIK+ERERERERKqUAj4REREREZEqpYBPRERERESkSingExERERERqVIK+ERERERERKqUAj4REREREZEq5an0AmaiqanJbGlpqfQyREREREREKmLPnj1dpmk2T3W7eRnwtbS08NRTT1V6GSIiIiIiIhVhGEZrMbdTSaeIiIiIiEiVUsAnIiIiIiJSpRTwiYiIiIiIVKl5uYdPRERERGShSqfTnDp1ikQiUemlSBkEAgFWrlyJ1+ud0f0V8ImIiIiIzCOnTp2irq6OlpYWDMOo9HJkDpmmSXd3N6dOnWLt2rUzegyVdIqIiIiIzCOJRIJwOKxgbwEwDINwODyrbK4CPhERERGReUbB3sIx29daAZ+IiIiIiEiVUsAnIiIiIiKz9oEPfIDnnnuuJI9VW1tbkseppG984xt8+9vfrvQy1LRFRERERERm7z/+4z8qvQQAstksbrd7xvfPZDJ4PLMPk2688cZZP0YpKMMnIiIiIiJFi0ajvPnNb2bbtm1s3ryZ73//+wDs2LGDp556CrAydDfddBMXX3wxb3jDG9i9ezc7duxg3bp1/PjHPwbgzjvv5LrrruOaa65h06ZN3HrrreM+3z//8z/zile8gq1bt/L3f//3496mtraWW265he3bt/P444+zZ88eLr/8ci6++GKuvvpq2traAHjyySfZunUrr3rVq/jYxz7G5s2bC2t5+9vfzlve8hauuuqqCZ93ov/3T3ziE1xwwQVs3bqVj370owB85jOf4Ytf/CIAe/fu5ZWvfCVbt27lrW99K729vYXf2U033cSll17Kxo0b2blz5yxemfEpwyciIiIiMk/d+pODPHdmoKSPecGKRfz9Wy6c8Oe/+MUvWLFiBT/72c8A6O/vH3ObaDTKjh07+MIXvsBb3/pWPvWpT/GrX/2K5557jve+971ce+21AOzevZsDBw4QDAZ5xStewZvf/GYuueSSwuM8+OCDHD58mN27d2OaJtdeey2PPfYYr3vd68Y83+bNm7nttttIp9Ncfvnl3H///TQ3N/P973+fm2++mW9+85u8733v4/bbb+fVr341n/jEJ0Y8xuOPP87+/ftpbGyc8Hk7OzvH/L/39PRw77338sILL2AYBn19fWN+H+95z3v46le/yuWXX84tt9zCrbfeype//GXAyiju3r2bBx54gFtvvZWHHnqomJepaMrwiYiIiIhI0bZs2cJDDz3ETTfdxM6dO6mvrx9zG5/PxzXXXFO4/eWXX47X62XLli0cP368cLsrr7yScDhMTU0N119/Pb/5zW9GPM6DDz7Igw8+yMte9jJe/vKX88ILL3D48OExz+d2u3nb294GwIsvvsiBAwe48sorueiii/jc5z7HqVOn6OvrY3BwkFe/+tUAvPOd7xzxGFdeeSWNjY2TPu94/++LFi0iEAjwgQ98gB/96EcEg8ERj9vf309fXx+XX345AO9973t57LHHCj+//vrrAbj44otH/G5KRRk+EREREZF5arJM3FzZuHEje/bs4YEHHuCTn/wkV111FbfccsuI23i93sI4AZfLhd/vL3ydyWQKtxs9cmD096Zp8slPfpK/+Iu/mHRNgUCgsG/PNE0uvPBCHn/88RG3scsoJxIKhYp63vH+33fv3s3DDz/M3Xffzde+9jUeeeSRSZ9rOPt343a7R/xuSkUZPhERERERKdqZM2cIBoO8613v4qMf/ShPP/30jB/rV7/6FT09PcTjce677z5e85rXjPj51VdfzTe/+U0ikQgAp0+fpqOjY9LH3LRpE52dnYWAL51Oc/DgQRoaGqirq+OJJ54A4O67757wMSZ63vH+3yORCP39/bzpTW/iy1/+Mnv37h3xWPX19TQ0NBT2533nO98pZPvKQRk+EVkwMtkchmHgdmlYrYiIyEw9++yzfOxjH8PlcuH1evm3f/u3GT/Wa1/7Wt797ndz5MgR3vnOd47Yvwdw1VVX8fzzz/OqV70KsJqz/Od//idLliyZ8DF9Ph/33HMPf/3Xf01/fz+ZTIa/+Zu/4cILL+SOO+7ggx/8IKFQiB07doxbjjrZ8x45cmTM//vg4CDXXXcdiUQC0zT50pe+NObx7rrrLm688UZisRjr1q3jW9/61kx/ZdNmmKZZticrlUsuucS0OwCJiBTrrV//La9cF+ama86r9FJERERm7Pnnn+f888+v9DJm7c477+Spp57ia1/7WtmeMxKJFGb8ff7zn6etrY2vfOUrZXv+mRrvNTcMY49pmpdMcJcCZfhEZME43hXF71Elu4iIyEL1s5/9jH/8x38kk8mwZs0a7rzzzkovac4p4BORBSOaytLaHav0MkRERAS44YYbuOGGG8r6nO94xzt4xzveUdbnrDSd6haRBSGdzZHK5GjrT5BIZyu9HBEREZGyUMAnIgtCLDkU5J3oUZZPREREFgYFfCKyIERTQ3NtjndFK7gSERERkfJRwCciC0JsWMCnfXwiIiKyUCjgE5EFITqspLO1Rxk+ERERWRgU8InIgmCXdBqGMnwiIiKz9a//+q+cf/75/Omf/mnZnrOzs5Pt27fzspe9jJ07d87Z87S0tNDV1TVnj19uGssgIguC3bSlJRzieLcyfCIiIrPx9a9/nZ///OesXbu2bM/58MMPc95553HXXXeN+Vk2m8XtdpdtLfOJAj4RWRDsDN8Fyxfx8wNtpDI5fBrCLiIi893PPwFnny3tYy7bAm/8/IQ/vvHGGzl69CjXXnst73rXu7j//vuJx+PU1NTwrW99i02bNnHnnXdy3333kc1mOXDgAH/7t39LKpXiO9/5Dn6/nwceeIDGxkb+/d//ndtvv51UKsX69ev5zne+QzAYHPOce/fu5eMf/zjxeJyLLrqIxx9/nObmZj7ykY/wy1/+kn/5l3+hpqaGj3zkI0QiEZqamrjzzjtZvnw5O3bsYPv27Tz66KP09fVxxx13cNlll5HNZrnpppv45S9/iWEYfPCDH+TDH/4wAF/96lf5yU9+Qjqd5oc//CHnnXdeaX/HZaSjHRFZEGIpK8N3wYpF5Ew41auyThERkZn4xje+wYoVK3j00Uf50Ic+xGOPPcYzzzzDbbfdxt/93d8VbnfgwAG+973vsXv3bm6++WaCwSDPPPMMr3rVq/j2t78NwPXXX8+TTz7Jvn37OP/887njjjvGfc6LLrqI2267jXe84x3s3buXmpoaotEomzdvZteuXWzfvp0Pf/jD3HPPPezZs4f3v//93HzzzYX7ZzIZdu/ezZe//GVuvfVWAG6//XaOHTvGM888w/79+0eUpzY1NfH000/zoQ99iC9+8Ytz8WssG2X4RGRBiCaHMnxg7eNb11xbySWJiIjM3iSZuHLo7+/nve99L4cPH8YwDNLpdOFnV1xxBXV1ddTV1VFfX89b3vIWALZs2cL+/fsBKyj81Kc+RV9fH5FIhKuvvrro53a73bztbW8D4MUXX+TAgQNceeWVgFXiuXz58sJtr7/+egAuvvhijh8/DsBDDz3EjTfeiMdjhUSNjY3j3v5HP/rRtH4nTqOAT0QWhOEZPoBW7eMTERGZtU9/+tNcccUV3HvvvRw/fpwdO3YUfub3+wtfu1yuwvcul4tMxjoRe8MNN3Dfffexbds27rzzTn79618X/dyBQKCwb880TS688EIef/zxcW9rP7fb7S48t2maGIZR9O3nK5V0isiCEE1l8HtcLKnzU+v3cFydOkVERGatv7+fc845B4A777xz2vcfHBxk+fLlpNNpvvvd7854HZs2baKzs7MQ8KXTaQ4ePDjpfa666iq+8Y1vFAK6np6eGT+/kyngE5EFIZbMEvJ7MAyD1Y1BZfhERERK4OMf/zif/OQnec1rXkM2m536DqN89rOfZfv27Vx55ZWzaozi8/m45557uOmmm9i2bRsXXXQRv/vd7ya9zwc+8AFWr17N1q1b2bZtG9/73vdm/PxOZpimWek1TNsll1xiPvXUU5VehojMIx/5wV52H+vhNze9nr/87h5eaBvkkY/uqPSyREREpu3555/n/PPPr/QypIzGe80Nw9hjmuYlU91XGT4RWRCiyQwhn7VteU04xMneGJlsrsKrEhEREZlbatoiIgtCLJUl6Lc2dreEg6SzJm39CVY1jp31IyIiIpXzD//wD/zwhz8ccd3b3/72EWMWpHgK+ERkQRid4QNrNIMCPhERmY8m6zA53918880K7oaZ7RY8lXSKyIIQS2UJ+uwMnxXwHVfjFhERmYcCgQDd3d2zDgTE+UzTpLu7m0AgMOPHUIZPRBaEaCpDyG+95S2p8+P3uNSpU0RE5qWVK1dy6tQpOjs7K70UKYNAIMDKlStnfH8FfCKyIMSSQxk+l8tgTTioWXwiIjIveb1e1q5dW+llyDyhkk4RWRCGZ/jA2senDJ+IiIhUOwV8IlL1sjmTRDpXyPCB1amztTtGLqf9DyIiIlK9FPCJSNWLpTIAhS6dYGX4kpkcHYPJSi1LREREZM4p4BORqhdLZQEKc/hAnTpFRERkYVDAJyJVL5q0Mny1I/bwWfP3tI9PREREqpkCPhGpeoUM37CSzuX1AbxuQ506RUREpKop4BORqmdn+ELDmrZ43C5WNQSV4RMREZGqpoBPRKre0B6+kaNH14SDHO9Shk9ERESqlwI+Eal6kXEyfGB16jzRE8M0NZpBREREqpMCPhGpevZYhtEZvpZwkEgyQ3c0VYlliYiIiMw5BXwiUvWiSaukc7wMH6hTp4iIiFQvBXwiUvUKGT7f2D18gPbxiYiISNVSwCciVS+ayuJ1G/g8I9/yVjYEcRnK8ImIiEj1UsAnIlUvlsyMye4B+Dwuzmmo0Sw+ERERqVoK+ESk6kVT2TH792wt4RCtPQr4REREpDop4BORqhdLZcZ06LStCWv4uoiIiFQvBXwiUvWiyYkzfGsaQ/TF0vTFNJpBREREqo8CPhGperHU+Hv4YKhTZ6v28YmIiEgVUsAnIlUvmswSmqCks6XJmsV3XGWdIiIiUoUU8IlI1YulMoT845d0rm5Uhk9ERESqlwI+Eal60VR2wpLOgNfN8vqAMnwiIiJSlRTwiUjViyUzEzZtAWsf3wll+ERERKQKKeATkaqWy5lWhm+CPXxgderU8HURERGpRgr4RKSqxdNZgMkzfE1BuiJJIslMuZYlIiIiUhYK+ESkqkVTVhA3WYavJWx16tQAdhEREak2CvhEpKrFkkVk+DSLT0RERKqUAj4RqWqFDN8EXToB1oQ1i09ERESqkwI+EalqsVQ+wzfBHD6AWr+Hplq/OnWKiIhI1VHAJyJVLZqcOsMHVlmnMnwiIiJSbUoS8BmGcY1hGC8ahnHEMIxPjPNzv2EY38//fJdhGC356680DGOPYRjP5i9fX4r1iIjYisnwgRXwaQ+fiIiIVJtZB3yGYbiB/wu8EbgA+BPDMC4YdbM/A3pN01wPfAn4Qv76LuAtpmluAd4LfGe26xERGc7O8IWmyPC1hEO09SdI5Mc4iIiIiFSDUmT4LgWOmKZ51DTNFHA3cN2o21wH3JX/+h7g9wzDMEzTfMY0zTP56w8CAcMw/CVYk4gIMJThC07SpROGOnWe6FGWT0RERKpHKQK+c4CTw74/lb9u3NuYppkB+oHwqNu8DXjGNM1kCdYkIgIMdekMTTKHD4Zm8R3v0j4+ERERqR6THwEVxxjnOnM6tzEM40KsMs+rJnwSw/hz4M8BVq9ePf1VisiCFEtmcbsM/J7Jz2/ZAZ8yfCIiIlJNSpHhOwWsGvb9SuDMRLcxDMMD1AM9+e9XAvcC7zFN86WJnsQ0zdtN07zENM1LmpubS7BsEVkIoqkMQZ8bwxjvvNOQ+qCX+hqvOnWKiIhIVSlFwPcksMEwjLWGYfiAPwZ+POo2P8ZqygLwh8AjpmmahmEsBn4GfNI0zd+WYC0iIiPEktkpG7bYWtSpU0RERKrMrAO+/J68vwJ+CTwP/MA0zYOGYdxmGMa1+ZvdAYQNwzgCfASwRzf8FbAe+LRhGHvz/y2Z7ZpERGyRVIbgFCMZbGvCIWX4REREpKqUYg8fpmk+ADww6rpbhn2dAN4+zv0+B3yuFGsQERlPLJmZVobvp/vPkMrk8E2x509ERERkPtARjYhUtWgqO+VIBtuacIicCad6VdYpIiIi1UEBn4hUtVgqM+VIBltLkzWLr1WdOkVERKRKKOATkaoWSxaf4VvdaI1maNUsPhGR+eXkbnj6O5VehYgjKeATkaoWTRW/h6+p1kfI5+a4OnWKiMwvu/5/eOgzlV6FiCMp4BORqhZLZovu0mkYBmvCIVrVqVNEZH6JtENK790i41HAJyJVyzTNaWX4wNrHp1l8IiLzTLQTMnHIZiq9EhHHUcAnIlUrmcmRMyk6wwdWp86TvTGyOXMOVyYiIiUVabcu08ryiYymgE9EqlY0aZ3pnVaGLxwknTU50xefq2WJiEgpZVIQ77W+TkYquxYRB1LAJyJVK5bKAhQ9lgGGdepUWaeIyPwQ7Rz6Wvv4RMZQwCciVSuasjN8xZd02rP4jqtxi4jI/GCXcwKklOETGU0Bn4hUrWjSyvAFp5HhW1oXwO9xqVOniMh8EekY+loBn8gYCvhEpGrFZpDhc7kM1oSDmsUnIjJfRIcHfDpZJzKaAj4RqVp205bgNJq2AJrFJyIyn4wo6dR7t8hoCvhEpGrZJZ2haYxlAKtT54meGDmNZhARcb7hJZ3JwcqtQ8ShFPCJSNWySzqnm+FbHQ6RSOfoGEzOxbJERKSUIu1Qu8z6Whk+kTEU8IlI1YqmZp7hA3XqFBGZFyKd0LjW+loBn8gYCvhEpGrFkhkMAwKe6QZ89iw+HTiIiDhepB3qloOnBlIq6RQZTQGfiFStaCpL0OvG5TKmdb/l9QG8bkOdOkVE5oNIB9QuBV9IGT6RcSjgE6mge585xZPHeyq9jKoVS2WmNYPP5nG7WNUQVIZPRMTpUjErq1fbDP5aSGoOn8hoCvhEKsQ0TW65/yB37DxW6aVUrWgyO60ZfMOtCQdpVYZPRMTZ7Bl8tUvBV6sMn8g4FPCJVEj7QJLBRIbeWKrSS6lasVRm2h06bdYsvhimqdEMIiKOFRke8IUgpQyfyGgK+EQq5FC7tbFcAd/ciSaz0+7QaVsTDhJJZuiO6vUREXEsO+ALNeczfAr4REZTwCdSIXbA16OAYs7EUhlCM9jDB+rUKSIyL0TarUs1bRGZkAI+kQo53G6dheyNpcnlVDY4F6KpLKEZl3TmZ/F1aR+fiIhjRToAA0JN4K9TwCcyDgV8IhVyqMPK8GVzJoOJTIVXU51iyQzBGTZtWdkQxGUowyci4mjRDgiGwe21MnxJzeETGU0Bn0gFmKbJ4fYI9TVeAHq0j29ORFPZGZd0+jwuzmmoobVHGT4REceKdEDtEutrlXSKjEsBn0gFnOlPEElmeEVLI6B9fHPBNE2is8jwAaxpDGn4uoiIk0XahwV8tZBLQ0afqSLDKeATqQC7Ycsr11kBX68CvpJLZXNkcuaMM3xgz+LT2WIREceKtFsNW8AK+ECdOkVGUcAnUgGH8wHf9rVhQCWdcyGWzALMKsPXEg7RF0vTp9dHRMR5TBMindZIBrBKOkEBn8goCvhEKuBQe4TmOj/rmq0PJ2X4Si+ashrhzLRLJwx16mxVWaeIiPMkByETH8rw+fMZvqQCPpHhFPCJVMDh9kE2Lq0l6HPj87iU4ZsDsVQ+wzfDwesALU1WQH5cZZ0iIs5jD10fU9Kp92yR4RTwiZRZLmdyuCPChiV1GIZBY9CnDN8ciCZnn+Fb3Whl+E4owyci4jxRO+BTSafIZBTwiZTZ6b44sVSWjUvrAGgI+eiJpiu8qupTyPDNYg9fwOtm2aKAOnWKiDhRpN26VNMWkUkp4BMpM7tD58al1gdTY8hLr0o6S66Q4ZtFl05Qp04REccaU9JpZ/j0ni0ynAI+kTI71G6dedxgZ/hU0jknSpHhA6tTpzJ8IiIOFOkAww011ogj/NbnqjJ8IiMp4BMps8Ptgyxd5Ke+xgtAY8inpi1zoNClc7YZvqYgXZEkkXzGUEREHCLSbo1kcOUPZ+0Mn7p0ioyggE+kzA51DBb274GV4euPp8lkcxVcVfWx5/DNNuBrCVsHECrrFBFxmEgH1C4Z+t4bBAyVdIqMooBPpIxyOZMjHZERAV9jyIdpQn9cjVtKyc7w1XhnV9Jpz+JTp04REYeJdgzt3wMwDKtxiwI+kREU8ImU0cneGIl0rtCwBawunYAat5RYLJWlxuvG7TJm9ThrwvYsPgV8IiKOMjrDB1ZZZ2qwMuuR8or1wL+9FjpfrPRKHE8Bn0gZjW7YAtAYtAI+jWYorWgyQ2gWQ9dttX4PTbU+lXSKiDhJLjdJwKf36wWh5yi0Pwtt+yu9EsdTwCdSRvZIhg1Lhmf4rOYtPerUWVLRZIbgLIauD7cmHOK4Aj4REedI9EEuPbKkE8Bfq6YtC4XdjTWtCpypKOATKaND7YOsqA9QF/AWrmtUSeeciKaysx7JYLNm8ekDRUTEMewZfKHmkddrD9/Ckcp/Livgm5ICPpEyOtQeGVHOCVaXTlCGr9RiqcysO3TaWsIh2voTJNLZkjyeiIjMUqTduhyd4fOFNIdvobADewX4U1LAJ1Im2ZzJS52REQ1bAAJeN0GfWwFfiUWTpc3wAZzs0VlEERFHsDN8YwK+WgV8C0WhpDNe2XXMAwr4RMqktTtKKpMbMZLB1hD00auAr6RiqQyhEu7hA3XqFBFxjKgd8I0u6VTTlgUjrZLOYingEykTu0PneAFfY8hHj/bwlVQ0mSVYgi6dAC35DJ86dYqIOESkHdw+CCweeb2/TgHfQqGSzqIp4BMpk8P5Dp3rl9SO+VljSBm+Uitlhm9x0Ed9jVedOkVEnCKSH7pujJq1au/hM83KrEvKRyWdRVPAJ1ImhzoirGyoGbeRiDJ8pRdNlS7DB1aWT506RUQcYrwZfGAFfGZOQcBCoC6dRVPAJ1Imh84OjlvOCfYePg1eL5V0NkcqkytZhg80i09ExFEiHRAaL+DLV9GozK/6qaSzaAr4RMognc1xtCvChqVjyzkBGkNeIskMyYza/pdCLGX9HkvVpROsDN/p3jipTK5kjykiIjMUaZ8gw2cHfIPlXY+Un0o6i6aAT6Ylnc1xuk//sKartTtKOmuycckEGb788PW+mLJ8pRBLZQCoLdEcPoDV4RA5E/39i4hUWi4Lsa6xIxnAKukEZX0WgkKXTr3WU1HAJ9Ny9+4TvObzj/Dmf93Jtx8/Tr8ClKJM1qEToFHD10sqmsxn+EoY8NmdOlXWKSJSYbFua5/eeBk+fz7Dl9QsvqpXKOnUHr6pKOCTaTnVG8fjsjpi3XL/QV7xvx/ir//rGX57pItcTh2xJnKofRDDGL9DJwxl+NSpszTsDF+ohCWd9iy+1i4FfCIiFRVpty4nLenUe3XVK5R0KuCbSulOf8uC0B9P0xDy8bO/vowDp/v5wVMnue+Z0/x43xlWNtTw9otX8YeXrOScxTWVXqqjHG6PsLoxSM0EAUhjPuBTp87SKGT4Sti0panWR8jnnh/D188+C/f/f/Ce+6GmodKrEREprULAN1lJ5xxk+PpPQds+OO/NpX9smT516SyaMnwyLQOJNPU1XgA2n1PPbddtZvfNb+Arf3wRa8JBvvTQIV77hUd4zzd389P9Z9SEJO9Q+yAbJti/B1aXTlCGr1SiyXyGr4RjGQzDYE04ND+Gr5960jooadtX6ZWIiJRepNO6DDWP/VkhwzcHAd9j/ww/eA/k1LzLEVTSWTQFfDIt/fE0iwIjsyYBr5vrLjqH737glez8+BV8+PUbONI+yF997xle+b8f5tafHOT5toEKrbjyUpkcx7qibJygQyfA4qAVRPdoNENJRPMlnaXM8AG0NAVp7ZkHHyyxbuuy+6XKrkNEZC5MmuGbw5LOk7shl4Fkf+kf20FM0+TG7+zhkRfaK72UydmvcS4NWR0/TUYBn0zLQDzDonyGbzyrGoN85MqN7Lzp9Xz7/Zfy6vVNfPeJE7zxKzu59mu/4T+faKU/vrD+UR7ripLJmRM2bAHwul0sCnjoVUlnSdhjGUqZ4QNY3RjiZE+MrNP3q8Z6rUsFfCJSjSId4A0NNWgZzj9HGb54H3Q8P/R1FeuMJPnFwbPsPNxV6aVMzDSt7pye/BYilXVOSnv4ZFoGEmnWNYemvJ3bZfC6jc28bmMzvdEU9z5zmh88dZJP3XeAz/70Od60ZTl/dMkqtq9txJVvAlOtDrVbs4AmmsFnawz51KWzROySzpJn+MJB0lmTM31xVjUGS/rYJRXvsS67j1R2HSIicyHaAbXjlHMCuH3g8pS+S+epp4D8yb54L7C2tI/vIMc6rcyZo49JMol8p9Zm6DthlXUG6iu9KsdSwCfTYpV0TpzhG09DyMf7X7uW972mhWdP9/P9J0/y471nuPeZ06xuDPJHl6zkDy9exbL6wByturIOtw/iMuDc5skDvoaQTxm+EpmLweswrFNnd8zRAd9A91kWAZmuI3qTF5HqE2kfv5wTwDCsxi2lLuk8uWvo63hvaR/bYY51zYOAz359Q/mATxm+SamkU4pmmiYD8aGmLdNlGAZbVy7mH966hd03v4EvvWMbKxYH+OKDh3j15x/mhm/t5ufPtpHKVNdm6EPtEdaEQwS8kwcfjUFl+Eolmsrg87jwukv7FtfsUs4QAAAgAElEQVTSND9m8SUHrTIcV1+r9jWISPWJdIw/ksHmq5ubgM+X35qRqO6SznkX8IECviko4JOiRZIZciYsqpl9zqDG5+atL1vJ3X/+Kv7nYzv4yx3reaFtkA9992le+Y8P86VfHcI0Hb5PqkiHOgYnbdhiawj51KWzRGLJbEln8NmW1gXwe1yO79TpTfaSMV24zIx15lNEpJpEOibO8EE+wzdYuufLZuD0Hlj/euv7Ks/wHc0HfI4+Jhkd8KlT56QU8EnRBhLWvqjplnROZU04xEev3sRvP/F6vvW+V3DhikV85eHDHDwz/zt7JjNZWrtjkzZssTWGfJrDVyLRVKbk+/cAXC6DNeEgrQ6fxedP9/Ocucb6Ro1bRKSaZFLWPuXQZBm+Epd0djxnNYHZcLX1fZUHfMfzAV93NOXck+92Rq+Q4XP2idhKU8AnReuPWaVhMy3pnIrbZXDFpiV87g82A7D/1Pxve3y0M0o2Z7KhiICvIegjkc4RT2l24WzFktmSd+i0rW4MOTvgy2aoyQ7ydG4DAINnnq/wgkRESiian8E3WUmnv7a0TVvs/XtrLwNvsKq7dGZzJq3dMXweF8lMrrAn3nHsLqyFgC9eubXMAwr4pGgDCSvgm2wsQymsbgyyOOhl/6n5/4Zqd+gspqSzMZSfxacs36zNVYYPrE6drT1Rck4dzZA/83zCWEG/GaS79bkKL0hEpIQmm8Fn89WWNsN3chfULYf6VVDTUNUB35m+OKlsjq3nWB0vHbuPz3597cBfJZ2TUsAnRRuIz22Gz2YYBlvOqWfvyfn/hnqofRC3y2Bt09SjLBqCPgB6Ig59c51HYqkstf65CfjWNIVIpHN0DCbn5PFnLT+Sob5pGa2sINup0QwiUkWKyfD5QqWdw3dyF6y61OoAWtNQ1SWd9v69i9c0AE4O+FTSOR0K+KRo9sD0Uu/hG89FqxZzuCMy78sbD7VHaAkH8XumLi9sDOUDPmX4Zi2azJR8JIOtJezwTp2xbgBcwSYGQmuojbZWeEEiIiVUyPBNFvDVli7gG2izml+teqX1fWBxVXfpPNZp/d4KAZ9Tj0lU0jktCvikaHbTlrnO8AFsXbmYbM7k4Jn5vY/vcPtgUQ1bwOrSCQ7vijVPxFJZQnOU4WspzOJzasBnZfjcoTDe5vUsNTvp6Zvf/45ERArsgK9cTVtO7bYuV223LmsWV3WG71hXlDq/p3Ds4tiqozFdOh36mewQCvikaHaGrzYw96Oct620asf3zePGLYl0ltae4jp0gjWHDxxcPjGPxFJzl+FbXh/A6zYc27glF7UyfN66ME1rLgTguYN7K7kkEZHSiXSCvx68gYlv46+zujjmSlAldGIXeAKwbIv1/QIo6VzbHKKx1uHHJHaXzpoGMNyawzcFBXxStIF4mjq/B7fLmPPnWrIowLJFAfbN4318RzoimCZFB3z1NV5cBvQ6tXxiHokkM3OW4fO4XaxscO5ohsSAtb/Ft6iZVRusA5QzLx2s5JJEREon0j5uOedP9p3hsz/NN6ny5ffNlyLrc3IXrHg5eKwAyMrwzd9jk6kc64qytilEnd+D1204u6TT7Qe3J5/RdeZnslMo4JOiDSTSc96hc7htq+rndafOwx3Fd+gEa8ZbQ9Dn3LNp80Q2Z5JI5+YswwewJhx07B6+1GAXCdPLokWL8C2xRjPE2l6o8KpEREpkgqHrP9vfxo+ePmV9U6qALx2Htn1WwxbgwOl+dp01IROvyj1jiXSW031x1jaFMIz8MYmTSzp91p56vDXK8E1BAZ8UbSBe3oBv68rFHO+OFeb/zTeH2iN43QYtRXTotDWEfMrwzVIsZe01Dc3RWAaw9vG1dsccOZA2E+mihzoWB33gryPqDROMHC+MVRERmdeiHeNm+M4OJIjajd58+cqa2QZ8Z/ZCLl3Yv3f3kye4/8V8oFeFWb4TPTFMk0Jn8caQz8EZvpjVnAes2YgK+CalgE+KNhDPUF8z9/v3bNtWLgZg/+n5+aZ6uH2QtU0hvO7i/5k1KsM3a/aQ2OAcDV4HK8MXSWboduBrZUZ76DPrCmM+Mg3n0mKc5anjPRVemYhICUQmCPj6E6QyOdLZ3LAM3+DsnsseuJ4P+Fq7Y/Sb+ceuwk6dRzutAHldkxVINYYcfEySigy9zirpnJICPilafzxdlpEMti1245Z5uo/vxfZBNhS5f8/WEPLSG1UmZjaiyfJk+MCZnTqNeDe9Zi0NQevfamjFJtYZbew6qoBPROa5VAySA2MCvmzOpDNizUaNJbOlK+k8uQvC6yEUBqyAr4/8Y1dh45Zj+Rl8LU1WqaSzA76oldkDlXQWQQGfFK3ce/jqa7ysawrNy06dsVSGkz1xNi6ZXsDn6PKJeaKQ4ZvjPXyAIxu3eJJ99NolnYCnaT1NxgAHXjpR4ZWJiMxStMO6HLWHryuSJJuzSuyjqQz486V+yVnM4jPN/MB1K7uXzuY43Renz8w/dlUGfBGa6/zU5U/uOzrgS8eGAnuVdE5JAZ8UrT+eLssMvuG2rpyfjVuOdFgfMsU2bLE1BH30RlOO3Bs2XxQyfHPUpRNgZUMQlwHHHRjw+VK99FHLInt8Sng9ANGzhwq/GxGReSlidSEePYOvrT9R+DqWygzt7ZrN8PWeoxDrLjRsOd0bJ5sz6S9k+ObfsclU7A6dtsaQj/542iqTdZpUZOh1VknnlEoS8BmGcY1hGC8ahnHEMIxPjPNzv2EY38//fJdhGC3568OGYTxqGEbEMIyvlWItMjfS2RyxVLasJZ1gNW5pH0hydtib+XxwqD0f8C2bfoYvkzMZ1IH5jJUjw+fzuFixuMZ5JZ25HIHMIHHPYgwjPz4lH/CtNtvY01p9Z6RFZAGxh66PKukcfowQTWaHBXyzeI8evX+vxwoo+qs6wxdj3aiAD6DPic3zUlESRoCX3fYgfWmPMnxTmHXAZxiGG/i/wBuBC4A/MQzjglE3+zOg1zTN9cCXgC/kr08AnwY+Ott1yNwaTFgBSDmbtoA1mgFg3zzL8h1uH8TndrGmMTit+9mNNnqLLaFIxeCe90P3S9NdYtWKpuY+wwfWPj7HZfgSfbjIkfItHrquoQUTg3PdZ9l9TPv4RGSkHzx5kgeebav0MopTCPhGlnS2DwwL+FKZYXv4ZpHhO7kLAvXQtAkY2rM9SA05w111Ad9AIk1XJDkmwwcOHb6eihEx/fTG0nSnFPBNpRQZvkuBI6ZpHjVNMwXcDVw36jbXAXflv74H+D3DMAzTNKOmaf4GK/ATB+uPW2d3yrmHD+DCFfW4Xca8K+s81D7IuuYQnml06IQZvLmeehIO/Dcc/fU0V1i9Ysm5z/CBtY/PcRm+mBXQZfwNQ9d5AxiLV3FRsItdx7ortDARcaLnzgzwyXuf5d93Hq30UooTtUs6m0ZcPaKks1QZvhO7YOWl4LI+x1u7Y9R43XhcLhLu2qrr0nm80LBlvgR8UVKuGgAiOZ9KOqdQioDvHODksO9P5a8b9zamaWaAfiA8nScxDOPPDcN4yjCMpzo7O2exXJmJgXzAV+49fAGvm01L69g/zxq3HGqPsHGaHTrBmsMHFD+L7+x+6zKmzI3NzvDVliHD1xdLO2tOZNz6O8jVNI68PryeDZ4O9p3sJ5HOVmBhIuI0uZzJp+8/QDZn0j5ftk1E2iEYBvfIY5H2gQR2FXs0lQG3BzyBmWf44n3Q+XyhnBOsDN+acJDFQS8xV13VZfjsDp3jlXQ6LuAzTUhFSBoBAAayXmX4plCKgM8Y57rRHSeKuc2kTNO83TTNS0zTvKS5uXk6d5USqFSGD6yyzn0n++ZNI5NIMsPpvvi0G7aANYcPoKfY0Qxt+YAvroDPNrSHb24DvkKnzh4HZfliVgbPFRoV8DWey5LUSVLZLM+cqK6z0iIyM/fsOcWe1l7WNYVoHxzqculokY4x5Zxg7eE7Z7GV7Ykm7eHroZl36Tz1lHWZb9gCVoZvdWOQxUEfg0b1BXxHO6MYBqwOD21FGQr4kpVa1vgyCcAkbliveV/GC7k0ZB10AtZhShHwnQJWDft+JXBmotsYhuEB6gEdoc4jA4l8wFfmpi1gDWAfSGSct19qAofbrUGv053BB9YcPpjGHr5Chk+lerZoMoPXbeDzzG0T4jX5WXyO+rvMZ3o9daNOioXX40lHaDYGVNYpIvRGU/zjz5/n0pZGbnhNC9mcSVfEYQf144l0QGjsSf+zAwnWNVsnWWP5Kg+rc+MMT8id3AWGC865GLCyoa09MVqaQjQEvVanzirr0nmsK8rKhhr8nqHtEA3TPQldLvnXNW74AehNe0ZcL2OV4ojoSWCDYRhrDcPwAX8M/HjUbX4MvDf/9R8Cj5jzJV0jAAzE7aYt5Q/4tq60GlDMl318h+0OnTMI+Gr9Hrxuo7hZfKkYdB2yvlZJZ0EslZ3z7B7A6nxDntYu53zApCNdAPjqRlXM5zt17gj3awC7iPBPv3yBgUSGz/7BZpbXW1mSedENO9I+JsNnmiZn+xOFUsShDF/dzEs6T+6CpZsL8/zaBxOkMrlChq8nF6q6DJ81kmFkZZLX7WJRwOO8DF8+sIuZVsDXncp/5qfjlVqR48064Mvvyfsr4JfA88APTNM8aBjGbYZhXJu/2R1A2DCMI8BHgMLoBsMwjgP/B7jBMIxT43T4dLxMNsdTx3uc18ChhIZKOsvbpROsWXYBr4t9J+fHPr5D7YP4Pa5CQDAdhmEUZvFNqf0gmDlweVTSOUwkmSE0xw1bAGp8bpYtCjgqw5cc6CRluqmtaxj5g/C5ALw2PMDTJ3pJZRw4U0lEyuLpE7381+6T/Nlr17JpWR3LFln7oNqcHvCZZr6kc+RIhoFEhng6yzmLawh4XaMyfDMI+LIZOL0HVr+ycFVr/n2+JWxl+LqywaoK+EzT5FhXdMT+PVtjyEePk/aqQyHgi2L97XYl85/52sc3oZIcvZum+QDwwKjrbhn2dQJ4+wT3bSnFGiopkcnxx7c/wZ+/bh0fv+a8Si9nTgwk0njdBjXeuT+QHs3jdnHhivkzgP1QR4T1S2pxu8bbujq1xpCvuA3SZ/dZlytfAYPzpKV2GcRSGYJz3LDF5rROnenBbmLUFZr/FNSvApeXLYFOkpkc+0/1cUlL4/gPIiJVK5PN8en7DrBsUYD/9XsbAFhWbx00Dx9t4EipCGTiYzJ8dmZyaX2AkM9TaNw144Cv46B1v1ENW8B6z28I+ujM1ECuH3K5QhfP+awzkiSSzIwYyWCzjkmcmeGLmnbA5wEfKumcxPz/K3WAWr+Hl69pYOfhrkovZc70x9MsCniHhjmX2baVizlwpp9M1vmZicPtgzMq57Q1BH3Fdels2w+BxbBsK8Sq50zjbEWT2bJk+MB5s/hy0S56zVrqa0YFfG4PNK5lZc7aXr1L8/hEFqT/fKKVg2cG+Pu3XFCYVRoO+fC6Dedn+CId1uXooev5QHV5fYCg3z1U0umvnVnTlpO7rctRDVs8LoPl9QHqg166syHAhOT8qDyayrFOK1AaP+Dz0x1xWJfOtLXeSM76rIvhz1/vnM9jp1HAVyKv29DEgTP9dM+HTc8zMBBPV6RDp23bqnoS6RyH2mcxRLUMBhJp2voTbJhBh05bY8hHd1EZvv2wfKvVojrZr+5UebFUpix7+ADWNAXpiiSJJjNleb4pxXvopa7Q/GeE8Hp8/cfYuLRWAZ/IAtQxkOBfHjzE5RubuWbzssL1LpfBkroAZ/sdvv+pMHR9ZMBnj5RYtiif4bPfj321M8v4nNwFdcutyoi81u4YqxqDeNwuGoI++sx8YFQlZZ32SIbxAz5v8aOiyiX/ug5krUAvbuZPcirgm5ACvhK5bEMzpgm/fak6O+ANJDIVDfjmS+OWQsOWJbPI8IW8U+/hy6ah/TkruxfMl+ZVyQfPbEWTWUL+8mT41jRaH46tDsnyuRO99Jq1hc5qIzSug+6XeGVLA3uO98yLbLmIlM4/PPA8yWyOW6+9cEy1zvL6QCFT5liFgG9kSaedmVyyyE/I7ymM5rECvplk+HZZ2b1hv6PWnmhhX36hSydUTafOY11RfB4XK/KjLYZrDPnpiaacNRrLDvjyGb54fi+fhq9PTAFfiWw+p57FQS87D1XnUHirpLP8DVtsLeEgiwIe9jl8ALs9kmE2JZ2NQR998fTkM5E6X4RsEpZfNBTwqVMnUOYMnz2LzyH7+LzJPnrNOhYHx8/wkU3yumVJoqksB84MlH+BIlIRvzvSxf17z/CXO86lZZwszrL6gPO7dEbyx1ehsSWd4ZAPv8dN0Oee3R6+gTboOzFi/55pmrR2x2jJv98vDvroM/NVPFVyovVoV5SWcHDc3gONIS/prEnEKZUsUAj4+jNeq1GPSjqnpICvRNwug9esb2Ln4S5nnQUZbrAdHr4NEtMPmgbj6YqMZLAZhsG2VYsdn+F7sX2QGq+blQ1jz5IVqyHkwzSHOqOOy56/t3wr1NgBX3Vml6crmipjhi9/ADBiH99P/hc8+o9lef4RTJNApo+Ie9GIOUoF+dEMF9dZJwZ2ax6fyIKQyuT41P0HWBMOcuPl5457m2WLArT1J5x7/AJWhs9wD53kzGsfSLA032k05PMQSw7L8GVTkJlGOeLJXdblqqEOnb2xNIOJDKvzs1cbgj76yAd8CWcfkxTLGskw9kQAWBk+oLhmcuWSD/j6sn5WNQRV0lkEBXwl9LoNTZwdSHCkw4H7zHqPwzevhp3/As//dNp376/wHj6ArSvreeHsIIl0tqLrmMzhdqtDp2uGHTrB2sMHU7y5tu0Hb9A6iA/mZ65pNAMAsWT5Mnx1AS9Ntb6hDF8qCs98F156pCzPP0JyALeZJeFdPP7P8wFfQ+wE65pCmscnskD8+86jHO2M8plrLyQwQaftZfUBkpnc5CcaKy3Sbg1dd438f2jrTxQ6jQb9wzJ8+Rl6doOPopzcDZ4ALNtSuKrQobPRzvB5GaiiPXzZnMmJ7tiYGXy2cP6YpKjeAuViB3xpL021frKe/El2lXROSAFfCb12QzMAjzmtW2fH8/DNa6w3JpcXul6c1t1N02QgUdkMH1j7+LI5k4MOLkU7NMsOnTAU8E26Sfrsflh6ofXBF1SGz5bLmcTS5evSCbAmHOK4HfC1/g5y6aG9JuWUL+nN+BvG/3ndMvCGoPslLl3byO7jPZOXDYvIvHeyJ8ZXHznMGzcv44pNSya8nT183dGdOqOdUNs85ur2gaGAb2TTlnxQNp1OnSd3wYqXg2doH3RhBl/TUMA3tIdv/gd8Z/ripLK5cWfwAYUxP0XNBy6XdBTcfiJpCPrcBEOLhq6XcSngK6FzFtdwbnOInYcdtI/v1FPwrTdaA0vf93No2gCdh6b1EPF0lnTWZFGgsgHfNoc3bumPpekYTLJxFh06gULDjQkzfLkcnH3WatgCw0o6lbFJZLKYJmWbwwf2LL78WcWXHrUuI+3Wv7lyyr/+ucAEAZ9hQHgddB9h+7pGBhMZXjjr3JMnIjJ7t/7kOVyGwad//4JJb7es3irbc3Tjlkj7mIYtiXSWnmiqMDw+5PcQLTRtyQcw0+nU2X3YOpk6TGt3DMOAlQ1WwOf3uPH4AqRcgapo2nI036FzvL2d4OAMny9EPJ2lxudmcW2QLC5IO7zTbAUp4CuxyzY088TRbpIZB5QdvvQo3HWtNavt/b+ApRdA00bofGFaDzMQt86WLaqpXNMWsEpOli7ys9+hjVsOdcy+YQsMy/BN9ObaewySA7B8m/W9LwieGpV0phPkHv8GPtKF+VLlsKYxRFt/wio1PpoP+DIJ6zUqJ/v1t0t8xxNeDz0vsX2tdRuVdYpUr189185Dz7fzN2/YMG73xeGW5TN8jm7cEukYE/B1DFijsAoBn89NKpMjnc2BL/9ZXGzAl45bPQ7qlo24urUnyvJFgRHlsA1BH1FXXVUEfMc6rQzoRHv4HJnhywd8VpM2N011ARJGQCWdk1DAV2Kv29hEIp1jz/EKp/mfux++90fQuBbe/0vrEqB5E/S1Qrr4N/WBhFXTX+mSTrDKOveddOYb7KF8h87ZzOCDYRm+iUo6hzdssQXDyvDt/z61j97Mq10HylrSaZf5nDl5FDqeg6WbrR/YQ4LLJf/6u2snCfgaz4XeVlbUWo2Fdmsen0hViqeyfObHB9m4tJb3vWbtlLdfUufHMBxc0mma+YBv/KHrQ3v4rJN9sVR2WIZvsLjnGDxrXY4O+LpjrM436LItDnqJGHVVUdJ5rCtKnd9DU+0443ywgmifx+W8pi2+EPFUlqDPQ7jWR8z0q6RzEgr4Smz72jBet1HZfXxPfxt+eAOseBnc8FOoG3ZGrGkjmDnoPlL0w9mbuCtd0gmwbWU9R7uijtxYfrg9Qsjn5pwpzqROpcbnpsbrnvhsWtt+cHlgybASnWCDAr79PwCg2egvW9MWsPbwAcReeNi6Yus7rMsy7+PLRa33HF9d08Q3Cq8HMwt9rWxfG2b38R5nd+UTkRn52qOHOd0X53N/sAWve+pDPa/bRVOtvzDE3HHivdb+6HFGMgDD9vBZJ/tiqcz0SzoLc/7GBnz2zFVbYR9fFXTpPNoVZW1zaMxsRpthGIRDPmcGfPmSzqZaPzHTh6mSzgkp4CuxkN/DxWsaKreP77dfgR9/GM59Pbz7XqgZtZ+neZN1OY3GLQNxZ2X4AA6cdl5Z56H2QdYvrZvwTXM6GkM+eqITBLVn90PzeeDxD11X07iwm7b0nYTW3wCwhL6yjWUACrOZ/Cceg2ATrP896wdlDviSg11kTYOausaJb5Tv1En3S2xf20hPNMVhJ3YVFpEZO9IR4fbHjvK2l6/k0rWTvB+Msrw+QJtT9/DZFROjM3z91gG+PZbBzvBFk1nw50s6i23aUsjwDZ0kjyQzdEWSrGkaneHz0ZsLVU2Gb6JyTltD0HkBX84bJJ01qfG6Cdf6iZl+MnF9nk1EAd8cuGxDMwfPDNAVSZb3iZ+8A351C1x4Pfzxfw2d3RouvB4M17QatxQyfI4I+OoB2OfAxi2H2gfZuGR25Zy2hpB3/C6dpglt+4YattiC4YW9h+/APQDkXF6ajb6yZvgWB33UBzws63oC1l0OdcutHwyWN+BLD3TSRy0Ntf6JbxTOz+DKN24B2KWyTpGqYZomt9x/gBqvm0++6bxp3XfpokAhgHKcQvZt5B6+s/1Jgj43iwLWe76d4Ysmh2f4igwCxsnwncg35Bqd4WsIeunKBud9wJdIZzndF58y4AvX+pzVtCUdJeuxgvCgz01TrY8YftIJBXwTUcA3B16XH8/wm3KWdZomPPF1WHkpvO0/RrQUHsFbA4vXzCjDZ7+hVtLioI+WcNBx+/h6oim6IqlZN2yxTXg2bfCs1ZrabthiCy7wDN/+H8LKS4mFVtFslDfDB3D54k7qMt2w7gorq+7ylj3Dl4n20GvWsTg4wb99sP5Oahqg+wirG4MsWxRg19EF/HcjUmV+vO8Mv3upm49fcx5Nk538Ge7kk9C2n+X1Aec2bYnmq6ZGZfjaBxIsWxQoVNbYDbuiqYw1eB2KL+kcPGttlxjW+OpET34G36g9fA1BH52ZGsx53rTlRE8M05y4YYutIeibfFRUuaWiZNzWa1Ljc9Ocz/Blk2raMhEFfHPgwhWLaAh6eaycZZ2n91j78l7+njFDScdo3jStDN9Awu7SWfkMH1hlnU7r1Gk3bNm4rDQBX2NogjfX8Rq2QD7D1wc5B3SHLbezB6DjIGz9I2K+MM1GP6EyZvgAdngPWl+ce4U1/qB2aQWatnTTS22h6c+E8p06DcPg0rWN7DqmfXwi1WAgkeZzP3uebSvr+ZNLVxd3p0gH/Of18LO/ZVl9gIFExtr/5jSF7NvIgK+tP14o5wQK7/2xZBa8+SBtOhm+0BJwDR0aH7czfGOatvjoM2sxMvF5PQrgaKcV0K6bYOi6rTHkoyfitIDP6pcQ9FklnQn85KYzgmOBUcA3B1wug9duaGbn4a7yHUjt/Z7Vmv+C66a+bdNGa9ZMtrg39f54mqDPXdTG73LYurKetv4EHYPOORN52A74Ztmh0zZhhq8tH/DZnSBtNY2AabWUXmie/YF1VvbCtxLxNtFMH8EydukEeFn6GY7kVpAKrbCuqF1S9gyfK2Fl+BqCU5yYCa+H7pcA2L6ukc7BZOGgRkTmry/96hBdkSSf+4MtuF1F7iV/6DPWCJn2Ayyrs947HJnli7SD22eNmRqmfSDJ8vqhgC+Yr+6IpjJW4OYNTS/DN06HzsaQj7pRTesW13jpI/95P4+zfMcKM/iCk96uMeRjMJkhlcmVY1lTS8VIuayAr8brKZR0Ggr4JuSMI/gqdNmGJjoHk7zYXmQ74NnIJOHAf8P5vw+BRVPfvnkTZFPWeIYiDMTTjmjYYrtoVX4A+0nnBDeH2iPU+T2FWUCz1RjyMZjIWLOEhju7DxrXjX2dg/bw9QVWnpfLwbP3wLm/B6EmBjyNLDH6yjqHj0ySVQPPsDO3hdN9+TO9FcjweZN9U5d0gjWaYeA0pKLD5vEtsL8bkSpz8Ew/d/3uOO9+5Rq25Pe6T+nkbtj7XQhvgHSMtUYb4NSAr9PKvg1ripbLmbQPJFhaP06Gzx6+7q+dXoZvTMAXHZPdA2uffb+ZL4Ocx506j3VFaK7zjwloRyvMB3ZCWadpQipC0g74fG4WB33E8ePKzN9s61xTwDdHLttgtUbfeagM+/gO/dJ6w9n2x8XdvinfqbOzuH18/fG0I0Yy2C5cYX2YvXB2loOtSzjG4FD7IBuW1pakQycMG3Q6+s21bf/Y/XswLOBbYA04Wn9rBS9b/wiAflcDISOJP1fGjNWJJ/DkEvwmt5nj3fmzi+XO8Jkm/lQf/Ubt1Htt7cYtPUc5tzlEU61PjVtE5rFczuRT9x2gMeTjb6/aVOSdsvDAR1XkVhgAACAASURBVKFuBfzB1wE4J2GNa3LkLL5I+5hyzq5okkzOHHGitZDhS+YrmHyhaXTpbBvTFMYayTA24Fsc9NFHPuBzYuOW3f8O//NPU96smA6dAOH8MUm3E8o6MwnAJGnkO7P63LhdBqanBnfWgX+7DqGAb44sr69hw5La8uzj2/dfVlepdVcUd/vmjdZlkY1bBhLOyvDV5DtydQ7Oogvq8d/CPw+Vts2GaZpWh84SNWwBaMxnaXqHj2aI91pZ2dEdOiFf0snCy/A9+wNrY/6mNwHQ47LGkBjlzK4dfRTT5eGJ3AW0dtkB31KryUCRZdOzlo7hMVPEPYunPukwbDSDvY9vzgawH/8t9BZXSSAiM/ODp07yzIk+/u5N5xf/Wf30XVbH56s/Z83sdftpGHgBGJpt5yiRjjHBWHu/dQywbHhJp9cO+PIZPl+RJZ2ZlPX5OSzDl8xkaeuPF2atDteQ38MHODLgyz7735i/+TJkJ59ZfKwryroiAr4JT0JXQv71TBRKOq3X3PCF8OaU4ZuIAr45dNmGZnYf6yGRnsNGGtEuOPygleGYqlmLLVBvtY4vsnFLfzzDoprKd+gcrqnOT9dszjSdedoaQG03QZmFrkiK3liaDSUM+BpC1of2iH18Z5+1Lkc3bIGhrmILaTRDOgEH74fzfh981hnYbjO/v6OcAd9Lj8LKV4CvdmgvXO0SwIRYmTr15gP9tG/xFDfEKgkGq8kTsH1tmNN9cU72zEFW9Ic3FHWWWURmpiea4vO/eIFL1zby1pedU9ydYj3w8G3Qcpk1xsnthSXn4+04QH2N15klndEOqG0ecVVh6PqwDJ/H7SLgdQ01nvHVFVfSGbXn/A0Flad64+TMsQ1bwBrL0F/I8DmvpLO9vQ0jHaX9uZ0T3mYgkaYrkppehs8Joxnyr2ecoQwfgMsfwkPWCt5lDAV8c+iyjU0kMzmePD6HB+EH/htyGdj2J9O7X9PG4jN8DivpBGiu9c8uw2dn9nqOznotpW7YAhPUy9sNW5appBOwTnQk+wvlnAAd2AFfmcopYz3Qtg9j3RWsCYc4YQdN9lnicq4DyAaKGLLsr7VO+OT/DdiDmUte1pnLWQFv/4nSPq6IFHzh5y8QSWT43B9sLn5LwSOfhcQAvPGfhvbELdsCZ/ezfJHfeSWduaxVMTFmBp+VzRme4QNrH180Nayks5iAz56bWjfODL5xAr66gJcBnJvh86etLS8/v/97Ewbwx/MVKcUEfIUMnyMCPut1iZrW2BF77q43kP//SKsJ2XgU8M2h7Wsb8bld7JzLeXx7v2eV+C29YHr3s0czFNFFdCCRdsxIBpuV4ZtFwNdTuoCvMJJhDko6R2b49lsH6qPOcgJWWaPLu7BKOvd/39rEv/bywlXtuXyzgnJl+I7+GjDh3CtYEw4O28O3tLzryGd2zWARAR8URjMAbFpax+Kgl93HSvy3kxoEMwcDZ0r7uCICwJ7WHr7/1En+7LK1xX/+nNkLT30Ltv/FyOOG5dsg1s15oQjtTivpjHVb7yWjA76BBG6XMWbeYNDvtsYyQPElnZGz1uWw57Dfz8cr6XS7DFyBRWRxOy/gM01qTeu45KL0Xt75H0+Me4Lc7tC5rrmIgC/owzCckuGz1m0HfHZJp7cmH4Ar4BuXAr45FPR5uKSlgccOzdE+vo7noW0vXPTO6d+3aaN1QDbFwVg2ZzKYyDgu4Guu9dM5m4CvOx/o9Ryb9VoOdUSor/GypK7IIbdFWDxewDdRwxawztIGwwunpDPea2X4tvwhuIfKjdvTQbK4hj6859rRR8FfDytezppwiJM9MbI5c6i5QJkzfK5QeIob5jWuK5R0ulwGr2hpLH2Gzz4I6j9d1IklESleJpvj5nsPsKI+wF+/fkNxd8rl4IGPQagJdnxi5M+WbQHgIu8J52X47BNno5q2nO1PsqTOP2YExYgMn7+2uKYtg/nPjGEZvtbuGCGfu1DOOFpDyE/cFXJcl850MoqfNEl3iG2ulxjs6+Ldd+yib9T+u6OdUVwGrBqnKc1obpfB4hovPdFZHHeVSj5jGzWtzG5NvqQzELROesSjs2zoV6UU8M2xyzY088LZQTrm4ozZvrvBcMPmP5z+fZvznbymKOuM5IeuO6lpC0BTrTW2YEb7I9NxGDhlfV2iks6NJezQCeDzuKjze4YCvlTMeq3Ga9hiCzYunJLO5+63RotsefuIq6NpkwF3Q3kCLdOEl34Nay8Dt4eWcJB01uRMX9zKPMLQQcRcy7/uvrqm4m4fXm+dNc8HZdvXNtLaHSvt3h17X0sm7rwz4CLz3F2Pt/LC2UFuecuFxY+h2X83nNoNV95m7eUfbulmwGCjeYzuaNI589Zg6P08NCrgGxg5dN0W9LmHxjL4aovM8LUDxojnONETY3U4NOFn++Kgl0FXnePe37o7rd/XmaVXYJg57roiydHOKO/95m4GE0NNXI51RTmnoQa/p7j+Dw0h38hGcpWSz+BFTB8el4HPY4UyNUErw9c/oIBvPAr45pg9nuE3R0pc1pnLWiVtG64cv8RvKoXRDJM3bumPW/+4p2z1XmZ2CceMygvsIG/JBVYb5lkM6rQ6dEZK2rDF1hDyDe3h63jOKmkZr2GLLRheOAHf/h9as6NWvGzE1dFUhkFPY3lKKXuOWvvTzrW649plP63dMauJjH9R2Uo6MxGrisBfN42STihkugvz+EpZ1jn8IGjgdOkeV2SBO9uf4P88+CJXbGrm6guXTn0HgEQ//OoWWHkpbB1nhJO/FsLnsip5BNOEjkEHZfkmzPAlRgxdt4X8HiKFsQz5OXxTVRkMnoVQ84iKkePdUVrG2b9nawj66KfWcQFfX4/1+4qteT14Q1wQ28PX//TlHDwzwPvvfLLQ0MYayVB874FwyEe3IzJ81jHbQNZfyO4BhGqt+cT9A86Z0ewkCvjm2AXLFxEO+Uq/j+/Y/1jBynSbtdhql1hn+KbI8A3kzwY5LcPXnC+fnFHjFrthy/o3WJe9x2e8js7BJP3xNBuXzLBhyy/+Dp74xrg/agj5hjJ8bfusy8kyfDUNC6Oks+8ktP7GatYy6sxrLJkl6g2XJ8P30iPWZX4cSkuTdWAwYh9fmUo6k4Nd9Jkh6kNTl+YAwwI+q6zzghWLqPV7SlvWOfwgqF8Bn0ipfO5nz5HJmdx67TQatfz681ZX7zf9P/a+OzyO+tz6zPbe1SzJVrVxw9iATbFNJ7QQIJCQkB5ISM/lhntzc4H0BqT3EEi7BAgtBEJowQYbcMcFV1my5Catyvbe5vvjnVmtts7szu6KL3ueh0dmtTszq52d+b3vOe859wCyAku/1qVwBGhNMKucOvnraHYsgy+al+HTqxQzZ/jYJJfdVgT+McA4vf1kisVxVxhzixR8Fq0S7pRu1rl0+riCT2ebA3StBobW4+JFLfjxjadh+4gbn/jTdkTiScGRDDysulnC8HGSTm9SnXboBACjkVjrQKPgy4tGwVdlyGQMVvc7sGFgEqmUhHMsux6mgm3+ZeW9nmGI5SvB8Pl4hm+WFXw8wzdZTsHHG7b0X8L9f/myzkNOuvCUZdhybAuw6RfAc/8N7H8659c2nXKa4RvbDWgsgGVu4e3pbP8epi1vPUY/s+ScAIXthtVNtWHWBtfR58HFHLQYNVArZNNOnYaW2jF8/km4WQOsOoHfU2sXwMjSBZ9cxuCMLis2D0l4/mTOtTQYvgYakAQbBibwzO5RfOaCvqLFyAw49wGbfwOc8VFgzmmFn9d6KrTB4zAhOLuy+IITgFJHLCQHfySOQDSR49AJkGnLtEsn95pSSp7AGOUZcxj1hhFLptCVx7CFh0WnwlRSN+sYvpCXFB9mWzMpUFyDgOcorjp1Du6+fhk2Hp7Ehx7YgkA0Icihk4fdoJolpi10j/UmlWnDFgAwmojhCwb9dTms2Y5GwVcDrOlvwmQgigNjEp2EUT8VCIuvA5S5FzvBaFpQkuGblnTOsoKPY/jKcuqcGgR0jmkDlArC1w9yDp1lSTpfvZcC0+esAJ68FZiY+VnM0MuP7iY5Z7FuLi/pLMcg4+1kqrH7UZIl2bpnPMyyLIKxBKIaBxVaqSrmXyYTwPAGYve4z0QmYzDXpktbXcPQXDOGjw254IYxbfZTEgoVFatcwQeQrHNwIliZ+20m+EUQI2sUfG8XpJLA/mdKhjU3UB9EE0nc9dRedDv0+MTaHmEvYlngn/8FaEzAhXcWfy43MrBINjL7GL4sOSfvJJpX0qlSTM/w8UViqWgGv3MGw5eOZChiaGLVKTGZ1IOdZQVfzE+NO7OtOa1AweA6AMD1p3fgm9cswRZOzSGm4LPqaMyErfd6gSvevQkltKppCa7FTAxfuFHw5UWj4KsB+Dm+DQMSuXXu+zsNrZbjzpmJpgXUOSsy95WWdAplDmoE3jWrrMWpawiw9xJDqnNUxPANOP2w6pRwGAQutHmM7gIGngfO/jTw3v8DlFrg4ZsoG4mDTcdJOpNxwLm3uJwToOKRTdKshhgcfA64dz51gWc7xt4CxvfOyN7jEU2kkGKBuLaJ/g7VnGc8sR2I+tLzezzm2fU0wwfUlOFjwi64WSOsehHf04xoBgBY1UPzf1ukknWG3YBCCxjnNKIZ3i7Ych/wyE3AwWfrfSQN5MFvXxnCkckgvn71YmiUwow2sPcJak5ddNd0XmshcPeYZYqjs7Dgy87go3t/XtMWtRzBaEYOH1DcqTOV5ILdMxw6OaVGUUmnXkXh6xEvOaDOEiQCVPDJ9TZa5xnbyFGawwfPmoc7rlwIk0aBhW0mwdu16VVIplj4wgnJj1kUYgFAoUEwgRmSTpWWGu/RUKPgy4dGwVcDtJg0WNBilG6Ob9dDJCPrOLOy7fDGLZOFZZ2z1bRFo5TDqFFgMlCGvGBqELD10r9tPRVKOv2Y32IU79C54Qdk6nHmLYC5HbjhD3QcT96avnHYDCqE40lERg8AyWjhSAYeOs6SX+wc34ntdLN75KZZN4uQgz1/BWQKYPG1Ob/ib/ApXQ0iEYbWAWBmZAACQJddhxFXkOTbhmaKPqnAFEgo5BE3PDDAKpThA+g7MDWYZneXtpuhVcqlLfi0Vjq/vcel2WYD1YPfCaz7Nv27yD2hgfrgmCuEn687jCuXtmHtfIFGbdEA8PwddO9Y8eHSzzc0A4ZWrFAdw+hsknQGJshQJQOjfOh6gRm+aCKFRDI1XfAVuw4HJ8kULSOSYXgqCJVchjaztuDLrDolvKwBDFggOnvmxtiQG3EoSAbLMEDP+cDQKzOK0pvX9GDnXZem/RCEwM41tutu3BIPAUodQrHkjIIPSirOY5Hq33PfjmgUfDXCmn4Htgy7EI5VKDPzHKVu3bL3FZf3CUHTfPo5caDgU3zhBGQMYBBq+1xDNBnV4k1bogHS6tszC77ysvhYlsWAMyB+fm/8ALG0Kz8BaC30WNdq4B3fAQ7+A9hwLx0at3gPH91BzynF8PHd25BIeYnvJF0oPUeBJz85qzqVM5BKAXseA3ovohypLPASnlQtMvAG19EsTFbHfJ5Dj0g8hXF/NCN8vfqyTlXMAxdLAeqCYe+jTil3fEq5DKfPs2KTVHN8YQ+d36b26ko6x/YA7pHqbf/fBS/eRZE1atN0TmkDswIsy+Krf98LhYzBnVctKv0CHhvuBfwngSvuBWQCGcHWpTgFw7Oe4eMlnXln+LgiIBhLAiru/hwrwvrkCV0/OhVCh02bk/GXCYtWBQ/LFZSzSNYpi3oQlJum14g9F1AjeGzXzOcVeW/5wDcU3aE6z/HFgoDKgHAsOWOGjy/4EmEBuYv/hmgUfDXCmvlNiCVS2DJcYfd89yP089T3Vn5Q5rkkuSpi3OINx2HSKiXNmJMKjnLC13k2jy/47L2UyRcPi97/mC8CfzSB+S0iHTo3/pAknGd9eubjqz5Jn+u67wCHXoCVk60mT+6iz8mRG647NBHAO3+2EbuOeUjSCYg3bvEdp4iKy74HHHoOePUeca+vFUZeo8Ihj5wTQHpIX8Z3aaslp4z4gONbgd4Lc37FW3gPTwWn50GqLeuMR6BKhRGUmQTnKQGY/g5kzLCu7LbhoNOfE9BbFsIeYvhMnKSzGnMfwxuB+y6kRkUD5WP4NcpoO/fzxAZlzHY2UH+8uM+Jlw+M4z8umZ+3wMmLycPA6z8HTrsJ6FwpfGdtp6IjcRRTnlkii0vGqVjJlnT6IrDolHmlrXwuYSiWEMbw+bmmnLEt/dDwVKioYQtAOXxe8AXf7FHHqGJeRBUZUs2e8+nn0PqKtmvXc3FY5SirpEQsAKiI4cuMZYBChSTkSEmtqomFgNd+Qs3FtzEaBV+NsLLLBpVChg2HKpjjY1lg50PAvNWAdV7lByWTAY6+osYtvkh81hm28GgyqMXP8HEzS3FLD57ZfRKslTP+KIMh4B06RRm2uIaIpTrjY4DePvN3DANc9WOgdQnw+M1oS9Lck2J8Dz2W1aH1huK4+Y/bsOeEl/LTeLZJpKQz7j6GQ2ETEis+Rszx+u8Ch54XtY2a4MAz1MFbcEXeX59wU9EuN1aZ4RveSDOCPRfk/IpfIBydCtWO4eM+76jKKu51WdEMAAWwsyywdViCbnVa0tlBluhSz1SOHwAefj+QSgDHNs+qDvvbCsk48OyXAHMnsOY/qRHgKt/IqgFpEYol8PWn9+GUViM+fE6XsBfxRi1KLXDx18TtsPVUyJGEOTAgrbN4uQhya6Y8GXz55JzAdMEXjCaFFXw8w8c16ViWxdGpIOYWMWwByFjNw3IN31ly/YklUtAl/UioLdMPGluA5sVp45Zywc+I15/hCwEqfa6kE0BMppV+jCLsJgXE8W3SbrfGaBR8NYJWJcfKLltlc3zHt9GN+LQys/fyoUQ0gy8cn3UZfDwcBpX4WAaOzVg/ocdn//Im9sc4aWAZc3wDnEOnKEnnxh/TDNrZn83/e5UOeO+DgEyGBetvhR5h6F37cuSciWQKn31oB465Q1ApZDjuDmdIOkUwfCwLeE9gw7gaGwengKt+BLQuBR6/pSL30qog4CS2SJV7E37t8CS+8PBOzDFrsKS7nay4q1VoDb5MhWeernmbWQOFjCGGz1Ajho8rpBIaS4knZsHcAchVMwq+ZZ0WqBQyaeIZIrykcw79v5SyTv8Y8OD1gFwNXPtbmr+pcDHzb4st9wHj+4DLvkuLY1svXUOqaXrUgGD87OXDOOEJ45vXLIFSLnDJdvBZYPBfwAVfySmUSqJ1KQBgAYYxWe9ZLSAjgy+r4PNFCrKdeq4ICMUSgJq7PxczbfHPlHROBmIIxpKYVyL2wqpTwoPZVfBNBKKwMAGw2qwGYO8FwNFNZamZeKQZvnpHM8SCgEqPSDwJrXLmuFFSoQGTiCCelHA0Jc4ZsamEO5rORjQKvhpiTb8DB53+tPZcNHY9RNK+hVdLd1BNpwDeowU7IiTpzJrfmyUzXg6DGr5IAtGEiLlI1xBgaMWIn079t8LlF3yHnH44DCrY9AKNMrwngJ1/AZZ/ADC1FX6edR5w/QNQuQfwgOoeKBOBtF02j2/9Yz82DEziW9csQX+zAcdcIUBtBhi5uIVaxANlKoKTrA1P7DhBHeH3/h+xv498oCaGI4IR8dF8URae2nkCH/n9FrRbtHj80+eQFLaakQhD64B55wKK3GF3hVyGTpuOCj6dnSIJ+MVEtcAX+JoSDnzZkMlzTIs0SjlO67RIE8AedlN2pKmD/l+qgi8aAB68gc7zm/4KLLmOmMSBF6XZ/r8T/GMkIe+7GDjlKnqMZ34rMLNqQBoMOP2479Uh3HB6B87sEvj9joeB575MMv0zbxG/U2s3Ego9FjPDcHpnQ8HHNczyuHQWYvh0qnwMX4mCT2tNX9OPuui+V0rSqVXKEZZzBWVkdkg6x30RmJkA5NmOrD0XkPnbyOtlb1urkkOrlMNVd0lnEKxSh1AskcPwpRQ66JgoOZxLuD8A6RnBtysaBV8NsaafXKbKYvkSUeCtx4GFV1GejlTgjVsmB/L+2hdJzGT4dvwJ+NHiWWGS0JTO4hPxxZ4aBOy96YH0fW4ZXejLWNwcdAbQ3yyC3Xv9pwBY4NwvlH5u74VgL/wqVsk4Q50Mhu/BzSP4w+vD+Pjqbrz3zLnosGqJ4ZNx70WMpNNLi/BR1o4X9o3BH4mnC05MHACe+uzsyeiL+nPO/fteHcIXHt6JFXOt+OutZ087qlUrEsFzjBix3lw5J48uuw5DE0EqqPRNNZN05kiEhcDelzOvdVa3DXtPeulcKBfxCHVF+Rk+QJqCL5kAHv0I4HyLnG3nLKe/c++FwOGXZk0z6m2DF+6kReDld08bPKSlvrOM4f83A8uyuPOpt6BXK/Dly08R/sLXfkIGXJffDcjLMFuTyRBxLMZi2UjaCbOuyMPwxRIpTAaihRk+dQbDp9BQI7SopNM5M5JhqnQkAwAwDAMZb7w2Sxg+py8KC4JQGrLuB/POJkXHUGVKCJteBVe9JZ3xIFJKPVIsZs7wAYBSBx2i4g39iu6PZ/gaBV8DAnFKqxEOg7q8PL5Dz1EHaZmEck6gZDSDN5wxw8eydDPxn+TcHKsYbC0ADgNX8In5YrsGAVtP2nJ6YNxfVjQDy7I47PQLN2wJjAPb/0CmLALnL2Wrv4DncTYiMh11awG8PjiJrz61F+cvaMJXrlgIAOi06nDcHaYwVJ1dnKSTW4SzxjmIxFP451scG9V7IYX07n0CeOMXwrdXTUR9aXlOKsXim8/sw7ef3Y8rl7bhjx9bObMxUS2Gj79Z5pnf49HTZMDwFB/NUIMsPu7zVmTf4IWAP/czvsureuxIscC2kQoWMHy3W2ulz0KmSDcXygbLAv+4DTj8InDlD4H5l07/ru8SihYZ213ZPv6dMLyRYk7O/cK0gQ8AWLuImW4Yt9QVT+08iU1DLvz3ZafAbhBone8eBjb+CFjybqB7Tdn7lrUtxUJmBE5vqOxtSAb++qmfLvjG/ZxDZwmGLxBNUCNDZSjN8GWErg9PhSBjgA5r4UgGHnqdHhFGM2tMWyY9XuiYKLTmLCdrlR7oXAUMrq9o+za9Slr2rBzEgkjIqfjSZpn2yFQ6aBCVVnYa474HyoakswGBkMkYrOl3YOPApPhh6F0PUweq53xpD8rWQ92vAtEMM2b4jr5Bi4D5l9O/N/5Q2mMRCUea4RNY8EV8NACewfANOAPcoldcN/uEJ4xgLIn5rQIZvjd+QSzt6tuE74RhcI/hdny968+AUoPhySA+/eAOdDn0+On7lqftojusWoTjSbrA6WyiJJ0pD+WjLVm4CN0OPZ7ckbEoX/0fJB9+8S7gyKvCj7taiPgAtRnRRBJfeGQn7t94BB85pws/e9/yXKc2Q2t1Cr7BdbTt5oUFn9LTRNEMo74IV/BVl+FLBenzVhtzoypKwt4HJGOA91j6oeVzLVDIGGweqkDWyS9+tBZi4IxtlYevb/gBsOOP9B0646Mzf9d3Mf1syDqFIRkH/vElwDI395qkUNHjDeOW0vCeABLSL3694Ti+9Y/9WNZpwY1ndgp/4fP/S/fzS75Z0f41ncuhZ6KIOGdB0R8Yp3EF5XRxx4/FtJRk+LhGlkpfvODLYviOTgXRZtYKcj226JQIMIZZU/D53EQoaE157gc95wPOPRU1Ia16Fdx1L/hCiMupGM+WdMo1euiYqHh/h2KIc+xwg+FrQAzW9DswFYxh36hP+IuCk8DAC2RHLzRLJw9iiRR++MJB+DKlWgoVFTwTuU6dkXgS0UQKJr7g2/FnmqG6/n5gyfXAuu8Cx7eXfTyVwsGFgAou+PgFjG264Bv3RxExzqNg6ITwC8QA59ApyLAl5AK2/o5mjRx9gvcBABa9FiNRA3yROG7+EzlE3f/hM2Y4p3ZY6SJ03B2maAYRBV9g8igSrAzW1k5cu7wdm45M4YSHk/EwDHDNL6n7/+hH6x+eHfUhqtDjIw9sxdO7TuLLl5+Cr75zUf4sIUMzEPFWNKCeg1QKOPIK3TSLxJT0OIj1HZoI1IThi/kn4Ge1MBnK6D7mke/pVAqc2mHGliMVGLfw8ibeOKDSLL5djwAvfxNYegNw0V25vzc0kbzzcKPgE4TNvwEm9gOXfT//IsbW22D4SmHiEPCz04EnbpZ80z984SBcwSi+fc0S4VlpAy+Rk/F5twPm9or2L+NmxtWTb1W0HUkQcOYYtoxy9++2ggUfP8NHUT1QGwpLOlmW9pHF8JUybOFh1anghWHWSDpDHhoZkunyuDbzowgVNHDtelV9TVtYFogFyI0TuZJOpcYAHaLiHdyLIc3wNQq+BkRgdT91XUTN8e15jKzHK5Rz7jzmwU9fPowX92YxDk0L8ko6+cLQpFHQ4nnvkyQVUemBK39AszlP3Fzc/aqKSEs6hc7wcYvapLUHTl8EC9toHuykvI1c/jxHBe/7EO/QKWSGb8tvqbu45j8Fb5+HVa/CZCCKzz/0JoYng/jVTadjXtYgeSdnHX3MFSKGT8QMX3TyKMZhQYfNiGuXt4Nlgb+9mbEwVxuBG/9CxfAjH6TZrHoglQRiATy6x4etwy788D3LcOt5vYXzIavhkDm2m+STefL3MtHbRJ/P0ESQFirB8arOlsX9k3CzhrRltijkyeIDSNa5+7iXZmDKQXbBZ24vv2Ew9Arw1GeArjXAu35RuNjuv5TyEWeru+TQeiAoUah9JfCNUvRK/zuABZfnf469j8LXZ8v87mxDMgH87VYgEQb2PQUc2yLZpvcc9+LPm0bwobO7sKTdLOxFiSjFMNj7cvNdy0HTQsShgNmbX/lTUwQn8kYyAEUknco8DF+hdUrYTSqHjAy+o65Qzn22EKx6JYWvz5KCL+LnrjHZLp0A0HYaGWlV4Ghcd0lnPAyARVTGM3wz51Tlaj20TEzaojTN8DUknQ2IQLNRg4VtJnFzfLseojDclkUVL7AmLQAAIABJREFU7ZuXQYxMZXW6HPNpjic506TBF6bFnkmrpKIzEQZWfIh+qbUA1/4GcB0hR7A6QKOUw6hRCB/O5Ra1U6o5SKRYrJ1PxffhBHczETHHd8gZQLNRDbOuxCI74gM2/QpYcCXQsljw9nnYdCoccgaw/uAEvvGuJTi7N3dOi58zSEczhKYEL9RY73GMsnbMtenQadPhzC4rnnzzBM0D8nD0A9f+Gji5A/jn7aLfgySIEiN+NKTAAx85E9et6Cj+/GoUfOn5vfOLPq3JqIZBrZhm+FIJ0dmIYpAKuuCGERadQLfYTBhaaL4li81Z2W1DIsVix0iZMqXMGT6g/PD14BQ1Guy95B6bxxk1jb5LuHiGl8s75moiEQX+fB2w6Zf1PhLghTvoWn/59woXz/ZeIOav/vzp2xUbfwSc2A6865f0HXrhDkmK42SKxR1/2wObXo3bLp0v/IWbfkkKlsu/X/w7IhQKFcbUXWgLF45sqhnyMHxOXwRqhaxgZJRCLoNaIUOQb1ipijB8WZEMvkgcrmBMMMNn0akwldSBnSUunYlgkYJPJgd6zqN7WZnnq02vQiiWRCReJw8HzkAlylCxny3pZFQ6GKSWdDYYvgbKxdp+B7YNu4V1z8f3A6M7JTFr4Qu+4amsQeymU2hRmlXweMMcw6dVkjtny1KSTfHoOhdYcxvw5p+py1kHNBnUmBAj6TS1YzREp/3pc63QKuXYFRIfzTAw7hcm59x2Py1+14pn9wBi+ADgI+d04f2r5uZ9jl6tgE2vwjF3iExbkjHBcQrK4BhGWTvmWKhovG5FBw6PB7DnhHfmExdeBaz5Ep0H2/9Q1nupCBEq+JqbmrF2flPp5/MLBCnn5wbXUXitsaXo0xiGQU+THkOTweocRzbCU/CwBljLKfgYJm/Q9hnzrJAxKF/WyXe7+WxAUwe5QYoxFAJoUR31AlfcS02mYmhfQZLmwy+JP95qIzgJsElgKr8bcs0w9Arw1mM0n2vrKfy8NPPbkHXm4ORO4JXv0VjD8puA8/8HOLaZ5JQV4uGtR7HruBd3XrVwhmy/KLwngFfuoVgNfpZVAkwZFqAnMQS23s63gfGcSIZRbwRtZk1hhQfovhiK8gyfgRoY+eAfpZ9GmuE7yq2PuoQWfFolXCk92NmiLAhlqSuy0XM+yesLOLOXAh9DVTeWj5vFDHMFX878vlIPLRMVvi4UgkYOXwPlYk1/E2LJlLCsq10PkcPdkusr3u841/EYzmb4+GiGrDk+XtLZGjpEReeKD+Z2hM//HyoC//75yl34yoDDoBbeyZniHDo5OcgcixZ9zQbsnpLRULjAgi+VYjHgDKC/lENnLERmLb0XAu2nCzvGLLzrtDn43IV9uOPKwiYhAKajGbRc9o4QRollYYiOwadqhkpBl4IrlrZBpZBRJl82LvgK0HsR8OztwPFtYt9KRYiHqHtqswt0ouRu3pIVWrEQGRUViWPIRI9DT5JOqY8jD+QRD1wwwlqKbS6EPNEMRo0SS9rN2FRuHl/YTU6PfG5iudEMvNRcCDsukwN9F5FxS70XqdngC92pOmbbJWL03bXMA1Z/sfhz01l8DeOWGYhHgCdvBXQO4Ip76LHlHyS36xe/mqOSEYPJQBR3P3cQZ/fYcfWyOcJf+OKd1Ex4x7fL3nc+hO2L4GC88E/V/r6eRjxM6g79zCaf0xdBSwE5Jw+dSp7B8OkLN0HTsQ9UVKYjGWwCJZ06FbzQz4ocvmgiCUWMa9YWLPi4e1iZ8Qx8Y7F+BR99jmHkZ/ig1ELNRjElZVZgLAjI1RV5aMwGNAq+OuCMLivUChk2HCoxx5dKArv/SlIlgwBWowR4hu/IZDBLssdn8WUVfBzD1zb0GJ3sS2/I3ahcCVz3O2KV/vapmi+0HEaVONMWey/GuGyhNrMG/c0GHJ4IArZuwQXfcXcY4XiyNMO34080f7C2fBnkwjYT/vPSBVDIi39VqeDjZvgAYUxKyAUlG0NMPz27YNYqccnCFjy96yTiyazPUiYH3v07mnV45IM1lXudHKd9tTiaSzyTg84BgJHuGI++Tud4kTiGTHQ7DDjhCSOi5tjjKv6tVFE3PKyhPEknQAYdnqM5pkUru2zYecxTnnQn7CF2T8adt7yJhNim0OQhYq2zQ4QLoe8SIDRJDarZhBB3rXfVcS5u86/oGn/53YCyhN28uZMyuxoM30ys+zaZ3bzr59PnpFwBXPJ1ur9UoH743j8PIBhN4JvXLC7KXM3AkQ2Uz7v6PyhOQ0KkWsi4xTdUP2O2gqHrvkjBDD4eepVi2rSlWMHHSzq55hzfEC+VwcfDolPCyxogS0SkNQkrAxP+KCxMAClGno4wyoGtm86VMuf47IZ6F3xUkIfYAgWfSgcFkvD4JfSWiIfe9uwe0Cj46gKNUo5VPfbSc3xD60lusOxGSfbLF3z+SAKeUEYnUqWnG3w2wxeOQ40YTIeeABZdXXjR5egDLvseORhuqm1mW5NBLcy0JeQi1sHeh1FfBCq5DDa9Cn0tBox6I4hbugQXfGnDlmIMXyJKQetzzwHmnSNou5WAz+JLafiCTwAz4+NMNEwzHd2uXd6OqWAMrx7Kc37qbMCND9Lf8tGPVtTRFoOTY9SF7WhrLfFMDnIFoHcAgTFpDmBwHS2ABX6WPZxxy3CEO0eqxfAl41AlA/DAROZK5cDeR7Nv7uEZD6/qsSOWSGHXsTI612H3TAkmf46JZvgGphtSQtB3EQBm9sk6+e9jPFj1mI688J4A1n+fInUWXFb6+TI5YO1uhK9nYuQN4PWfAad/BOi/ZObv5l8GzDsXWP89IFpAOlgEW4ddeGz7cdyytgd9QozAALr2/vO/KELj3C+I3mcpaDuXAQDiJ3dJvm3ByFPwsSwLp7dw6DoPvVo+bdqiNhY2bQk4AZUxvaA/OhWCw0Bz2EJg1avgAXedr3M0w7g/CisCSKjMRZ2k0XMB5XCWcf/mGT53vcLXOUlnEDSrmhu8Tp9jJOQXH39WcJ+Ngq+BCrC234GB8QBGvUU6QrseBjTmwk5qIjHui6YvYkfyGbfkSDoTuEy2BbKod9qspRBWfIhmCF76OjBau/Bjh0ENbziOaKIEC8EXc1wkQyun/+ddNidVHcRyCLgAHhqnG3p/MYZv10O0uF37JUHvo1J0WLWIJVJw8zceAQVf3E0Fn9o+czbwvAVNsOlVeOLNAovz1qXA1T8FRjZSRl8NMDFBxeecFoEMHyBtJMLQegqtFZjDwxd8g17QoLe/Sot8blYuqjQLZwWykSeaASCGj2EgTHqe77gyJUX6ZkCmLE/S6egX/ny9g2b5Bl4Qt59qI5ih5qhHEfXC/5Ls7/LvCX+NvbdR8PGIBsiV0zIXuPRbub9nGMq+C00Cr/1E1KbjyRTuePIttFu0+NyFImJ7tv4OGN9HzdZSjG0ZaG5qwnCqBQrnHsm3LRhBvuCbvu67gjHEkqmCDp089Ooshi8ezK9AygpdH3EFBRu2AIBVp4SX5YqBOss6x30RmJkAWE0BOSeP3gtopvGEePbWzs3wSSqZFAOOqQ2wVPBlu3Ty92hlKpr2oagY8eDb3rAFaBR8dcOafpJoFoxniPiA/U9TDIIUrlsghu/0eXQhyHHqbFpA3fSMC6I3HMf7FK8Q/T9vdfGNMwxw9c9IfvX4zdOuRlUGH75e8uLDL1zsvRj1TstB+Dm8Y2wrGdcIiGYYcAbQZtYUHqpPJsjFbc7ykhb+UqGDj2aIcjd+ATN83rEjAABT87wZjyvlMly9bA5e3OcsfME89T3Aqk+RO9zuR8s/cIFwueh7otSVMO7IhKFZGjYlMA443xI8vwcA3Q4umoE3bqkWq8NJd+NqEX+XbNg5844s+Z5Zp8SCFiM2l2Pckl3wyWSAqU2cpDPkogW0GIYPIFnn8W2zK54hU2ItwhxKEgyuo0id1beJk/3Ze+lYZ9s8ZD3w4p2Ae4TcigtJ5TpOBxZfB7z+c4q+EIg/vj6Mg04/vvrORbmL10IIjAPrvkMmLQuuELwvMWg2arCPnQejZ39Vti8I6fm66YJvzFc8koGHTpXB8Km4Rmg8z7okK3T9mCuMuTbhi3uzVgUPuIKvztEMTl8UFgQg05co+LrXAmDKknWatUrImDpKOrnP0J+iwlObY9pCn52OkTCLLxZ624euA42Cr26Y32JAs1FduODb/3eKQZDAnRMAAtEEgrFk2n3vyGTWhc8xn/bnPZZ+SOk5grNke2koXSbgVNHZgGu5OZEaMT/TWXwlvtiuQTKRsHZhjHP4Aii0XK2QYX+Md+o8UnKfh5z+4uzeW4+TPG7t7cVlFRKik4tmGAmpADCCFruhyaOIs3I0tXbm/O7a5e2IJVL4554iC5dLv0mS1b9/DhirbkBvwMe7PpqEv8jQKg3DN7Sefooo3nUqBeaYNVzB11rFgo8+57SUtxxordSoyTOvdVaPHdtH3IglRC76I55c0wBTO0UzCAXvIie24Ou/BAA7q+IZkoEJeFg9koyitkYovFGLtUu87M/WS86qvjLzEyvBsa3A1vuJgUhI6LaXBUGSr8MvAdseAM7+TGlJ90V3UeNwnTADlSOTQfzoxUO46JRmXLKouPvvDLz0NZoXu+z7VbvHqBQyDCt7YYkcT7sk1xz89TvDtCWdwSdkhi/TtAVIywFnwD82ba4FKmR4FksILDolPCwv6ax3wReBlQlCoS9hbqa1UkO6DOMWmYyBVaeCq86STn9KDZVCBrks6/znCz5EhWc0l0I8lJaKvp3RKPjqBIZhsKa/CRsHJvLfdHY9TDfcjjMl2d841xXrtOkwx6LNz/ABMwLYl048jSRkwGk3Cd9R74XA2Z8Ftt4HHHyu0sMuCQc3QFyy4JsaBMwdYOWqtKQTAOQyBr1NBuwIcIvTEt33ZIrF4fEA5jcXmN9LpYANPyD7/vnSSHGFoN1CF7njnhjJgAWYtiQ8J+CEFZ2O3PdyaocZvU36/G6dPORK4IY/0KzWIzdVjVGZ8Echj/losawofpOfAZ5Zq9QkY3AduZ+2LhP1sp4mA5fF11w90xb+c9YJdC8tBHtf3nN/VbcNkXgqN6ajFMLu6UgGHqZ2ccUDfy0SI+kEaCGjs88qWWfEN4EJ1oIJRWttZZKbfkFREJffDShFfHeADKlvHYxbnvsy8I/bgPsuBL7TDvxmLfD0F4Htf6SRgQpnh93BGG749ev4yB+2Fn9i2A089VmKLrrwztIbtnUDK28Bdj4IOPcVfeoJTxg33bcJaqUcX7tahFHLsS20/XM+S/PzVcS4nmu2OKvb0CuIgJO+y/JpNU2a4StR8OnU8pmxDECucQvL0j64gi8STyIcT6bjkIRAKZchqTLT/8yCGT6bLAimkENnJnovICVEROS1HVz4ep0lnb6kOtewBUgzcVpEJGT4gg2Gr4HKsHa+A+5QHHtPZnXP3CPA8AZi9yTq3jl9dOI3G9XosuvzZ/EB03N8yQRWeZ/Dm6ozSIolBhfdBbQsAZ76TNWdHJs4SWfJ8HXXIGDrTev/2zLkIPNbDNg2oaQOTomC75grhGgiVdih88DTxHCuuU0YKyoRtCo5HAY1jrm4LD4Bkk65/wTGWDtajLk3ToZhcN2KDmwZdtE2C8HYArznzyTVe+IWcpaVGPtHfTAihJTKJO77YGghZ81Kuq4sS13QnvNEf549TRTNwBpaqsfwcZ+z3FBhwWfrzbuwP7ObmMMtYub4Uila+Git+NX6QbzCm/+IDV+fPEhGOZZ5pZ+bCZmc4kMO/2vWyBET/gm4YMRQskWQikASeI8Dr9wNLLgSmP8O8a8vMNtZE3iPAQvfCbznT1TYaK3A3ieApz8P/GYNFYH3cRExO/9CebUCrz1j3gje85s3sHXYjc1DU0gWY/me/S9yWr7218IL5rW3kwnIS18t+JRxfwQ33bcJ/mgCf/rYSnQKlRCmksCzXwKMcygXtcrwWxbRP2o4lz8DgXGa/82A0xuBjCHDtmLQqxQI8DN8ar7gy2L4oj5ibzhTGN7MziI24oYfNZgFDJ+ZCRSOZMhE3yU013v4X6L3Y9XXk+Gj9YgnoYQuW84JpBk+LRPDlFQFXzzUmOFroDKc20cywlez3Tp3/5V+nvoeyfY17qeuWLNJg3l2HYYnszpdOhtZ2fPRDIdfhDXlwuvmK8XvTKEm+/5YgIq+KtqQT0s6i1x8WJbyr7j5PQBoNU8Pufe3GHHCG0HSWjqagXfozJvBx7LAq/fS4nnxtSLfSeVIZ/HpbIIYPl3ECa+qGbJsSQSHd51GWVB/K2TewqPzTOCKu0n6tF6EKYRA7B/1wcCEIdOKkHMCGaHnFTQdJg6QU67AOIZM9Dj08EcTCKpsJHGMR8o/jkLgPmeVyVHZduy99D6znOwcBjX6mg3i5viiPgAsAnIj7n7+AL761FukYjB3UAEeLBFHw2NygIqOcrKP+vl4hjfFv7YaCE3BxRqxP9YMtlbRDM9/hdxXL/tuea83tlITrNYFXyJG39mWJcCidwEXfw340FPAf48An9sBvPt+YtEUGir2/vYp4JdnAd/tBB64DHjuKzRXPHk4p+Afmgjg3b96HaPeCN69ogPRRAon3FnGaVODwMYfU0G5569UwM1ZLvz4dTZq+A28QEH3WfCEYvjQ/Vsw7o/iDx89E0vazcK3veOPwOgu4B3fmi5iqgidrR1TMANjdTJuCYzPmN8DKHS9yaguGVWkVysQTaSQSKamJZ3ZTp28mRbH8HnCtI6wioy4UekspIaqc8E35Q1Cx4aFxdh0rqQ134F/iN6PXa+qb/C6QoNQPI9DJ5AuzAxMTDpJ5/8nLp1l+ng3IAUcBjUWzzHh1UMT+MwFXDeVZcnhsWsNYBXZ2S4CPpKhxaRGt0MPbzgOTyg2M7uracE0w7fjT5iCFUds55a3w+aF5Fr2z9vJTWzlLRW+g/zQKOUwqhXFGb7QFBD1ph06AaRn+ACgj5Nn+nWdsLiKy5emC748DN/Ai8DYbuBdv6hLQGeHVUvSu3Z76VmpVAqW+DgixsKfb4dVh7N6bHjizRP47IV9xSVHp3+U5m1evRuYcxpwShmNggI4MObHYkUUcq2IhREwbeUdcALNp5S3c36oXYRhC4+eJjqvnCkLeacGx8nlT0IkAlOIsWro9QKt3AshHbQ9BLSdOuNXK7tt+PvOk0gkUyUXWQDSi569LhlYFhieCmHdwXFclBm+LiRXdPIQ0Hpq6eflQy8XzzDwItB+ennbkBDKiAtudi6G2RYwfDSDUWDESDk4/C9g31PABXeUfx9hGDL0qXX4un8UAJsTF0PH00v/Lb2eHksliZk++eb0f9seoHl0AFCbgLZlwJzlOKo9BV9YxyKCZjz8ibMQjifx+I7jGBz3Y25sANj/DBmlTXAmJW2nAZd8Azjr0+Lfw6pPAlvuo1n2W9al1QGBaAIffmALhiaC+P1Hz8Tp80TM3oZcwL++QWuDxdeJP6Yy0GrR4q3kPKwZ3VUfdiDgJHfkDIz5IiUNW4DpfLZQPAlTIUknH9vD3SvcQY7h04pj+Mw6FYIuA0x1dumM+LnGnBCGTyaniJZ9f6cmi0J4kWura8EXBFR6hGKJ/AUfV5g1aRKSSTpTsSCe2O2CYt4JXLO8vfQLZikaDF+dsaa/CTuOuqelB8e30g1Wouw9Hk5fFDqVHAa1AvPs9IU4ks3y8dEM/jHg0PP4G86DUVeB3fPKW0g28MIdwPiBCo6+OBxGdfEvdqZDpy+34OvnCr4xRTuZrRSRBh1yBtBu0eZm9LAsFTvmTuDU95b1PipFp02Hk54wUlpr6U5jaApKJJAyFr94Xbe8A0cmg9hZKouNYYArfkCd8Cc+OW24IQH2j/rQrIrS4k0M0gVfBQzf0DpibMso1HinzmMxk+jj2DQ0hRBvOFAEMf8k3DCI7kjnoMi81qpuGwLRBPaPCswX4869LWMpzDFrMMeswQOvHRGXxZeI0ndRrGELD72dCr2BF8t7vZRIpaCOe+GCCcMsV+RVkzVLRCmfzdYDnPv5yrZVQOpbVfDnh1nAwkomp0blshuBy78PfPwF4H+OA596Hbj658DSG4BYEKlNv8bcf30aT6c+gy3KW7Dk5Y9gyYGf4E7Fn3HGU+fTjOCGe0kOf9n3gC/uAT75ChndyEXK+wCKSbjoTmB0J5l4AQjHkvj4H7birZM+/OKmFWmFj2C8/E0yT7n87pqZgbWayKmTmThARUEtwbIkp81i+Jy+CFoEFHx67h4diiYzZviyrmHZDB8nU7SIvJ5adSp4YagrwxdNJMFEuP0LKfgAitKK+miESARsehU8oVhxOXS1wBmohONJ6JR5OCsuosSuSkrI8AUxGVMUVEO9XdAo+OqMtf0OxJMsNg9xnZldDwEKLbDwakn3w18kGYZBt4Mo75GcOb4FJD177ScAm8SDsTWFoweEgGGI7VIZKKqhSm5rDoOqeMHHd6htvRjzhqGQMbBn6P/n2nRQyWUYTDYDqTjNvhTAIac/f+D6kVepWF/9xfIWCBKgw6pFPMkiJDeVlHSGJkcAAAprrkNnJi5f2gq1QlbcvIWHUkPzfAoV8MgHygogzkY0kcTh8QAs8oj4gs+YwfCVg0QMGH6tLHYPANotWqgVMhwO6UQdx3F3CDf+dhN+/9pwyecmA1PwsAZYxc6cZMPGRzPkFiKrumk+ULCsk1v0vH4yhUsWteBD53ThtcNTGIhyn58Qp07XEMkRyy34AJJ1ntgOBMuIlZASEQ/kSEJhcGBMzrGc1WTN3vg5FWmX31N5pI+9j2bKKzRJEQU+usPUUd7r5QqgZTGw4oPAVT/Ei6sfxtLYA7hV/yN4L7ob8sVXA8EJaDf/DB9UvIjjynkUKfSlAeCj/wDO+pQ0TPzS91Bm6cvfQCwawace3I4twy788D3LxDlyAsDJncC23xNz2LKo8mMTiDazBntTXWBScZK31xKxADdflyvpbCth2AJMM3zBWCLDpbM4w+fhYoisenHXU6tOCTerr2vBN+6Lwgzu/WkFxvT0nE8SSJGyTptehRQL6XLuxCAWAFR6hGPJopJOh1oihi+ZgCwVQ4hVo8UoTURavdAo+OqM07us0ChlFM8Qj1A3cOE7xdnPC8C4L4pm7mTtsOrAMMBwvvB1ANhyHxKd52Ao1QazSGlDDowtVPQ595AcpQpoMqqLSzqnDgOMHLDOw6iXCt9MK1+FXIaeJj32hDnjiwJzfIlkCkMTwfyGLRvuJfv90z5QyVupCJ1WutC5YaIbZTxc8LlTJ+k9GpqLL2yMGiUuXdyKp3efFGbNb+kErv89yfEkmN88PB5AIsXCwAbFfyfUJprzKbfgO76FAlfLmN8DyL6626HHfj/Hkgs8ju0jtGjYNFS6UGG52TCxHekcqHTEwOVhc1rNNPe7aUigcQsna5pIaHHJolbceGYntEo57t8eoPD1Ig2VNMp16MxEOp5BvCmBpODca2WGJhiau5CAonpZfJ5jwCv30D2k/+LKt2fvJWMH90jl2xIK3slVCMNXAo9tP45b/287+tps+O6nPwDzmk9ScXfrRuArJ/Cxlsdwp+4uYMWHAH2Fc7DZkMmAC+8CPEfx1/vvwfqDE/jOtUvxrtNEvq9Uisxp9A7g/C9Le4wl0GImhg8AjSvUErwiwjBdHIdiCfgjCbQIKPj0qkyGr0DB5x+je4SGxgXcPMOnFXc9tehUcCV1YOvo0jnuj8LCcDOKQhk+pRbouwg4+Kwogysb52JaF1kn55gZiiULuHTSZ21VSlTwxemcCUEtiFmezWgUfHWGWiHHWT12Mm459BxZ5Eos5wQAp39aBqFRyjHHrM01buGjGVJx+Ba9HwBg0kow5rngMuCMj1PnuYygz1JwGNTFqfupQerYypUzIhky0d9ixGYPNyNWYDE24gohlkzlzu8d20IM3zmfE299LiE6uCy+iQTHKBWJSQiM0wLO1tZdcrvXLW+HJxTH+oMCJYk959Hsy76niC2uALyMUJ0Mimf4GKay0PPBddQo6F5T3utBTp273FzTRKCkc9swFXzbR9yIJ4vfhGURFzwwiO5I54W9tyDztKrbhq3DLmG5ZVyXO6G2YFWPDRadCtetaMcTu0aRNLYJk3TyBZ+9Atv5tuVkSlBvWWeITGqURgf62yw4jubqSTqf/x/6+Y4yjVqyUY9oBu8JivSo0CThdxuG8KVHd+GcXjv+cvOqXKt9pRadLXYMTuTJZpMIqd6LcUxzCtaO/RF3Xt6H960sgznc/TA1ny75RrowqRVaTRocYVsRl2lrb9ySLvgyQtd50zUhM3xqKgYC0cS0pDPbtIWfpeUksp5QHGqFLD9zVARWnRIe6JGqUjSREIz7IrBAZMEHkKzTPyrK4Kq+BV+Im+ErwPDJlYBMAbM8jikpJJ2cK2i4UfA1IAXW9DdhaCKI8LYHAWMb0ewSgmVZTtI5TUd3OXS50Qymdrowqs1wtl9KD1Ui6czEpd8iBvFvn5I8r81hUMMbjhdmoFyDtJgFChd8zQbs8mrAKrQFC74BzrAlR9L56r2U03bGR8t/ExJgjoUKvpMxbqFUJJoh7j6OKKtA25zikk4AWNPvgMOgEibr5HH2Z8mp9F9fr6jIPzDqg0YByGL+8ljvSiIRhtYBHWdUtMjqcRhwxB0Dq7NTN1kAto+4oVLIEIol8VaJ/Dtl1AMXa6x8hg8oOq+1qtsObziOg87SMt1UiAq+5f1dUHImLx89twuxRApjrABDIYBmQE0dlTkRymTUvR78V1XiQoQi6iMXZp21BQtaTRhMtiAxWYUCauAlMh0573Zi2qVA2synhsYtvhPk6FomWJbF3c8dwLf+sR9XLm3D7z58RnqeKxu9TQa4Q/GqLVx/99oRfM13JebKJvBxU4nMv3yIeMn4pWMlcKr0jeBS0KsVMGpUGNX21T6agb9u6/MUfAIYPn7OPhRL0JiBXJVNxj9OAAAgAElEQVQby+AfI2UOB3cwVta11KJTUfh6HRk+py8CC8NLOkUUfP2XUmNThKyT/xu5gtUZ0ymKWBBQGRCOJ6HNF8sAAEo9TIo4wvEkgtHSs/BFEad1MqvUiW4EzDY0Cr5ZgLX9DtjhhXr4ZYpikNjh0RdJIBJPzehOzLPrcyWdDEPZf2tugzdBF8uKJZ08VDqKaghOAn//nKS25Hw0w1S+i086kqEPLMuS/j9Pl6a/2YAUK0PUOLdgwXfISTeLvszQ9dFdwMDzwNmfrrttr0YpR4tJjWMR7v0VKawZ3wmMwwarvrQmXSGX4epl7Xj5wHh6qL0kGIZMExwLgMc+BniOCntdFvaP+bCsWQkGrHiGD+AKvjJMW0IucvwrU87Jo6dJj2SKRUzTJOg4AtEEDoz5cMPptOAtmn+XSkIV98EDo/jcqHyw9xE7l+e8Wcnl8W0WIDMdHx9DkFXjgiXTRUdfsxHnzW/CHr8BrFBJZyVyTh79l9I868n6xTP4pkYBACZbC05pNWKYbQXjOiJtNEMiSo7I9j5qtkgFnY3YtpoyfMdzHToFIpli8ZUn38Iv1w/i/avm4qfvWw61ovD9tJe7lh8erw7L9/xeJybbLgDbtowag0mRi8/136N75hX31DTXNROtZg0G5d3E8NUy1zKPpDMdui7IpZPWMMFYRvh6PkmncXr7nnC8rGupRaeEF3rIot66ZX86udB1FgygFtGk1NmArnNFFXx2A1/w1WGGLx4ElDqEC0k6AUClg56h9WDFLB93zqi11Y9BqTYaBd8sQF+zATfpt0LGJqjgkhjjvukMPh7ddj08oXjuAv7Ke4HVX0wP45qkKvgAsse+6E7gwDPAm3+WbLMO7uIz6c/zxQ446QJh64UvnEA4niwg6aQvs0vdUaTg86PTpk3fSAAAG35AF9eVn6j8jUiADqsOQ0GuiCti3KIOjcKtaCoetZCB61a0I5ZM4Zndo8IPRm0AbnyQ2JVHPlB0pjAfWJbF/lE/ljVxl6laMnxHXiXTkDINW3jw0Qx+pV3Qcbx51I0UC7xjcSt6m/TYXKzgC3vAgEVQZiq6qBWMIkHbnTYd2i1abBkuzc47x8fggx7nL5gZvfCx1d0YjluQ8p0svihiWWL4KjFs4dF7IcDI6irrDLlp4WprmoP5LUYcYVshT4YFM76C8PpP6bp1+d2VG7Vkw95X2yw+34my5veiiSQ+99AOPLTlKD5zQS++fc2SGbPa+dDHfT+rIeuMxJPYfdyDs3odYM77b8B9BNjzqPANOPcBm39DypE5p0l+fELRatZib2oeOVx6y2vclYWAk5injEy5dMEnZIaPk3SGeIZHZchl+ALOGQwfRVWJX/NYdSp4WQM1JqPFVRnVwrgvijZVGIzWIr45cMpVZMojUHlQb4aPVZFLp1ZVYORIqYVeRuvBiUrn+DiGT6OX1lejHmgUfLMADMPgPcqN2IseJB1l5oUVwThnaJLpMDTPXsCpk4OPK/gkY/h4nP05oHst8M8vS7aIaOLe10QgT7B1OpKhB6M+KjjazLlRE/PseijlDI4xrYDrSN4F6SGnH/ObM+b3xg9Qhs3KW2o+W1EInVYtDvq5z6yIpNMUG0dIIzwHbPEcE+a3GPBkqRD2bNh7get+S0zoM7eJYjXG/VG4gjEssnGvKZfhC02JdxkcWgeojBVnuPU0Ees7BYsghm/7iBsMAyyfa8HKbju2DrsKW19zn29MLUK+Uwwl5rVWdduw5YgLbInP0O+eQExlyZGDr+13IG5ogzwVBxucKLwB30lamEnB8OlsXDzDC5Vvq0xEfePk8Ga3osmohlvNFTNSGbe4R4BXf0Ah5X0XSbPNTNh7a1fwxcP0fRXJ8AWjCdz8x214ds8Y7rhyIW5/xymCmllpJ90qMHy7jnkQT7I4s8sGLLgCaFkKvHqPMJaPZSlaQ2MCLrxT8mMTg1aTGrvCHAs2cah2Ow6Ok1FNhuJpzBuBSaOY2XQtgFyGTz+z4IuFKJIgg+Fzh+JlSTqtOhU8LD9KUR+nznF/BE2KkDg5J48FV9DPg8JYPo1SDr1KXh+GLxZEQkHr14IMn1IPLWjdW7FxC8fw6QwVZt3OAjQKvtkA5z50RA7h0fhqCs6WevN5GL4uLiMsR9bJIc3wSTXDx0MmA675NQ3WPn6zJHbfvKQzL8OXEckw6incHVTKZeh26HEw1gQko4B/5pxRPJnCkckg5rdmfOk3/pBcrsoJ5q0SOqw6HPJxn1kBSSebSsKemkLCOEfwdhmGwbXLO7B9xI2RAudMQSy4DFh9G7DrL6Ly+faN+gAA/WauwCiL4ePmP8TKOgfXkVlLhREbJo0SDoMao0kTdZNLFEvbR9xY0GKEUaPEqm4b/JEE9nN/hxxwDG5SLdCCuxSs86ijXqDgW9ltw2QgVpQNGZwIQBnzQmXIDZRmGAanLiJL+X0Hi1i884YtvIlUpei/lCSdwUlpticSqcAEXDCmrzuKJq6QlWou7vmvkIT6Hd+RZnvZsPeRc6ZIhr4s8POdImb43MEY3v+7zXh9cAr33rAMN6/pEfxamYxBT5OhKgzfVo4NP32elT6f8/6LPnMul68o9j5B2WgX3TWD4aoHWs1abAtxbP3kwdrtODCeE8lQaAY/H9LB6zzDp86SdKYjGbIZvjJm+PQk6QRQtzk+py8Cu6zMgs/SSQosEbJOm0FVe4aPZYFYkEyEUKTgU+mgTtF6r1JJZ4o7Z4zG2dHUrwSNgm82YNdDYGUKPJ06BxsOFel8lwmnj76UzcaZ2XMMAwxPFmD4IgkwDGDUSODSmQ1zO/DOnwAnd9CMQoWYZvjyXHymBskK3tyJUW9u6Hom+puN2BnkLpZZ3ffhySDiSXbasMU1BOx5DDjjYxTyPEvQYdUikpIjpTIWLPjc4yegZJKQi5RNXbN8DhgG4sxbePScTz9FyCv5QqfLwHVoy2X4RO4XriHAM1Lx/B6PHocewxEDNRIihRcDyRSLN496cEYXnYP83FzBOT7u82V1Ep1/ciUVfYWcOnv4PL7CzPFL+5wwIwiLrTnv71ctOxUAsGHbzsLHwTcFpJB0AkDfxQBY4HB94hmYsAs+xgQNZzBgb+9GjJWDnZSg4Dv0Aknkz/uvioxOioLPaKxWlEQm+PlOgQzfqDeMG37zBvaP+vDrD5yO608X/zfoazZUheHbOuzG/BbDtDvoKVcBzYuJ5StmIhQNAM/fQQvwFR+W/LjEos2sgZs1IqlzABO1LPicM+b3AOGh6wA1cVUKGQIxXtKpn+nSmQ5dp32wLAtPKF5WpqlRrYCf4ZrBdWP4ojAzgfIKPoDOz2Nbpv8uJWDTqeAK1Zjhi4cBsIhxBZ+moGmLDkqW1nuVMnzBAK1DzKZGwddApUglgd1/BdN/KebM6aQ8Ponh9EVgVCtmOJVplHK0mTQFGT5fOA6DWgFZiRmIsrH4Gsqs2/hDYOT1ijalUcphUCvyf7Fdg4C1C5ArMOYNQ8ZMF4jZ6Gs2YIs3f8HHG7b085LOjT8GZAppDRIkQKeNpA4xlaWgpHOSy+DTOuaJ2nabWYtzeu148s0TJWV9OeC71CJuhgdG/Wi3aKFnuXO0ooJPBMPHu4pWOL/Ho6dJj0NBPny98HEcHPMjEE1gZYcOuP9SzJnYiE6btnDgOcfwyaRsONj7CjJ8XXYdmo1qbC6Sx/fiPicc8iC0pvzHpLGTkcvYsUEcc+VvNmHyEH3WBpHh1IXQdhqgb6qbrFMVdSGknF6EzW+14hjbjJBTONudF/EIyf7s/cBZn6nwKIugltEMfGSHgGbU0EQA1//qDYx5I/jTx1aKDzPn0NukxwlPGOGYdE6uyRSLHSNunNGVwc7JZFSYTw0Abz1R+MUb7iWFyRX3Sm7gVg54g5SQqbfGBd/EDIdOQHjoOg+DWkE5fECuaUsWwxeIJpBIsWXN8DEMM620qEPBF4kn4QnFYUz5yi/4FlwBgAUO/VPQ0236OjB83OcXlZdg+JQ6yOJhmDQKTFVY8Pl9pLqzWCRS0tQRjYKv3hhaRxeeZTdiTb8DO4664Y9I2zUZ90fQbMotcroceZw6OfjCcenlnNm4/HuAZR7wxCcqlkE4DKr8WXxTQ+lIhlFvBE1GddoqPhv9LQacYG1IydV5Cj4/ZAzn0Ok9Aez8C7Dig4CpraLjlhp8Fl9Ibi5o2uIdGwYAmNu6RG//2uUdOOoKpcPBBYO/CRWZK8zG/lEfFrYZac4CKE/SaSyD4RtaB5g7K8uAy0BPkx5HooaSx7H9KP1Nz5btB45tBl64E2d1WQvPzXF/S6VBwoLPxs1r5dkfwzBY2W3D5iNTeY9nKhDF9qNusgYvtOjQOcDKVWiTufCnN4bzP4d36BRoKFQSMhmxfHWKZ9AmPIirpv8eC1rJuCVVaTTD6z8lI5Ar7iHb+WqBu37WZI7PyxV8JeTmb53w4oZfv4FIPImHP3EWzuop/zvQ12wAywJDk9KxfPtHffBHE1jZlSXHXHg10LSwMMs3eRh4/efAaTcBnSslO55KwEsoXdpuknRK6S5bCCzLMXzTBV8imcJkICrIoZOHTiVHMJZp2pIRK5Nm+Kjg83BsVTmSTgBklgIUVXFUCxOcT4M26S+/4GtZTOsxgbJOm14NlxQ5d2LAhaBHQedAMUknYkE4jCUymgUgFKBzxtYo+BqoGLseJtvr+ZdhTX8TEikWm4p00MuB0xfNK4OYZ9cXNm2JxKU3bMmG2khRDb6TwLNfqmhTTUY1JvxZpi2pFBVuNi6DzxdBax7DFh7zW4xgIUNQ155T8A2M+zHXpiMJwes/BcAC536homOuBtrMWsgYwMsUlnRGpshprbm9V/T2L1vSCq1SjifEmrdoxTF8kXgSQ5NBLGwzARGu4CuH4dNzsydCGb5Ukhw6e86XrODocRgwzlpKHsf2YReajWo4xl+jByb24xrtTrhD8bySs1TQhSirgN4godTE3kuuZP78bqyreuxw+qI4moed+9eBcajYGBSpaOFFh0wGxjQHp1tCeHjrMQpFzoZUDp2Z6LuYzr0TO6TdrgCYUt4Zstv5LUaMsK3Q+EfKXzy7h8khePG1kjHRBaE2Ettai4LPdxzQOQBl4UX9G4NTuPG3m6BRyvHorWdjSXtl539v2qlT5GxyEWzj5vfO7M4q+GQyykmcPAjs+9vM3/FGLUotcPHXJDuWSsEzaieVcykXsJyYG7EIu4FUfAbLPxGIIsUCLSIYPr0qk+HT5zJ8MmX63sQXfOVmmir0fFOz9gzfuD8CGVJQxStg+BiGZJ1DrwDR0nmrNr0SLqExTVKB+/zCDJ0DWmUhl04dEA/DYVBX7NIZCtL6w2Gr7yytFGgUfPVExAfsfwZY8m5AocaKeRboVHJsGJB2jq+Q7r3LroMrGEsbtGTCG47DpK3C/F42Os4Azv8y2VXv/mvZm3EY8nRy/KNAIgzYaQalUAYfjy67HnIZA6einZjBDBxyBtDfYqSb3fY/UAiuZW7Zx1stqBQytJo0cLGGggwf6z2BCFTQW/LPWRWDQa3AOxa34JldJxFNiGBLlFpAri6aDZiJAWcAyRRLBV/UR2Yi5eQcKtR0AxTK8J18kxY1Ei6ie5r0mGC5RWmR49g24sbp86xgBtcBXWsAWw/OPHo/ABab8szNxf0T8MAAi4AsRcEoEs0AAGel8/hyj+fFfU4sMHEFnLZIN9TUjlN0fvgjCTy+PSuTL+onOZsUDp2ZSMcz1FbWGQz4oUMUcoMj/ZherYBH2wllKlJ+NMNz/0PfiUu/LdGRloC9rzbh697ikQwv7B3Dh3+/BW1mDR7/1Dnp2JNK0O3Qg2GAQQnn+LYOuzHHrEG7JU+DcdE1lE/6yj0z3aAPPkss9AVfyTErqSfMWiXUChmOgPtcamHcwrv4ZvwdSs3g54NOncnwZRV8/jEqKLkIAzdXvJSbaWrQGxCGpi6mLU5fFCaUEbqejVOupFlzAfPONr0akXiKgu1rBe7zC3EMX8EgdKUOiIfgMKgqlnRGw37EWDmaLY0cvgYqwb6nqCDhsvfUCjnO6rFLOsfHsizGfdGCkk4AeV0XfeFE9Rk+HqtvAzrPAv7xn2QxXgao4Mv6Ymc4dALk8NVmKXyzUClk6LLrMJxqJoaP675HE0kMTwbJsOWNXwDJGLD6P8o6zlqgw6rDWFxfsNOoDI7CJXOUzWBdt6IDvkgCL+8X0ellGJrjE9j95A1bqODzE8tQLuNmaJme1yiFwZcBMED3+eXtKw86bTqEZAYkGGXBgs/pi+C4O4w1LXFgYj85S66+DaqJPbjWsC+vcUsiMAUXa4RVL+H3NC3fyy837Gs2wKZXYVPWXGEknsSGgQlc2sNdZ4otOkztMETHsHyuBb9/7QhSmbETUhu28NDZgI4zgcO1zeObcJLrpMo0cwHPcNeksoqog89RcXD+f5eVV1cWbD21m+Ez5TdeeXTbMdz6f9uxqM2Ev37ybMFujaWgUcrRadXhsEROnSzLYuuwK5fd4yGT0yzfxH5g/1P0WDwMPPdloHkRcOYtkhyHVGAYBm1mDfYlOJltLeb4+OtkRsHn5Ao+oaYtAMfw8bOZaiOQiEzHYmSFrvMFXzmmLQAVij7o61TwRWBhuPO3koKvcxWgswuSddq4+44rWEOWjy/4WLrPlJR06guM+ohAPBxEhNEUHAV6O+Ht/w7eztj1MBUjHWekH1rT78CRyWBhQwOR8ITiiCVTaDHmY/io4Dsymafgi9Rgho+HXEFZbQDN8wnJKcqCw6CGJxRHPJnRMU1n8PXCH4kjEE2U7A72NxvxVsRBhTjXfT8yGUQixWKxNQls/R3JqBzSzHdVAx02LU5ENcSM5Ym9MESd8KvLN8Q4t8+BZqO6DFmnVXDBt2/UB61Sjnk2HTHh5czv8TA0C5chDa4D2k6V1HlVKZdhrl0Pr9xa0AGNn4k8l9lFD/ReCJz6XsDcic8rnsTmwcmcublUaAoe1lj2zElemDqIiS2wuGcYBiu7bDkF6MaBSUTiKazp4G7ARQu+OYBvFB87Zx6Gp0JYdzDjs6lWwQcAfZcQg1sLSRoH1yRJY/XWmQWfcQ69v/iEyCIqHibZX9MptY2DsfcR6xKpcqh0AYbvvleHcPtju3FunwMP3rxq2vlSIvQ26SVj+I66Qhj3R2catmRj8bVktsOzfK/9BPAcBS6/m+6HswytZg0OBvWUTTpZgyw+/juaIelMh66LneGLZjB8wHQWX07oemUzfFadEm62cKO1mnD6onDIuTWjtgLpoVwBzL8cOPR8ycgsG6csqUfBF+QZviIunWCTaNbJ4A3HEUvk5ioLRSoaQIyRprlUbzQKvnrBPQyMbAROe98M5mJNP80cScXyOf2Fu2LFwtdJ0lmjgg8gO/gr7gWObQI2/kj0yx1GukjPyFxxDdLi1dSBMS+fwVd4hg8A5rcY8GaAu2Byc3y8Q+eZzsfoZrHmP0UfXy3RYdXhWIR7n1kSymSKhT05gbheeOh6NuQyBu86bQ7WHRgXd7EXUfAdGPNhQauRXGKjPkBdwZyOoUWYpDPqB45vkSyOIRM9DgMmWEvB49g+4oZaIUOHaxMdb8tiMuJY/UV0R/ahN/RmzvdUFnbBBUPZMyd5IZMRy1fEgn9ltw3H3WGc8Eznsr24zwmjWoFFVj4zsYik09wBpOK4rFuONrMGP35pAK8PTpJEePIgSRWt3VK9o2n0X0w/axjP4J+ippHZMdPcqXVeP2KsHN7jItmSjT+myJAr7qk4I1IUamHcEvUDUe+MSAaWZfH95w7g28/ux5VL2/C7D58xw21aKvQ1GzA0GUQyVbkhCd8MyTFsyYRMDqy9HRjfC2z6Jd3zlrybsj9nIVpNGoz5o0DTfGCiSIamVEgXfNONkjFvBCq5DDYRxb5BrZhp2gJMyzqzGL50wVfmuseiU8GdMiAlcGxBSoz7I5in5RROlTB8AMk6o15geGPRp9n0KmgRgc9Vpiy9HHCfXSBVguFT0tq2RUeFXiVFaSoWQlxefN34dkGj4KsX+Hm1U9874+HeJj3mmDWSzfGNcxl8LXkknRolLbiynTrjyRRCsWTtJJ08Tn0PsOR6YP13gePbRb20iQtf592qANDixNYNyGSC9f99LUYMpbibDLfoHXD6YZaF4dj7ALDgSlqMz2J0WrVwsXwm0Mybz5gniGa4K5aCXbeiA4kUi2d2nyz9ZB5aq6AZPpZlsX/UT3JOgBg+tbH4i4rB0EILiFIGGcOvAalEVUwwepv0OB43gS1Q8G0bceO0DhPkR9Zz82ZcE+i0DyCha8Hn5U/mxDPIIx54WGPZEqSCsPcWle+t6uHzAel4UikW/zrgxHkLmqCMcXKmUgwfAGVgFLddMh/7R314/32bcdrXX8S27Zvh0XbisCsmPvqjFFqXkc17DWWdYQ9dx61NM10nF7RZcIxtRnRcBFviOcoVBtcD3WulPMzSKDHbKQl4h04uTzCZYvGVJ/fgV+sH8f5Vc/HT9y2HWlGdmILeJgNiiRROuCsPl9827IZZq0R/c4mZnyXvJoXPC/9LTY5LvlnxvquFVrMWTm8UrGM+MFELhs8JyFUzGkdjvghazGowIqT9OrV8pmkLQE3bRIzujRkMnzsUg1GtgKJM6Z5Vp4IXeiRDdTBt8UXRIVXB13sBFUwlZJ1tvt14SX07VvzzmrJUWWWBc+n0pwu+As0fFRV8TWr67CvJ4mPiIaQUjYKvgXLBssCuh8iYIcv4g2EYrOlvwmuHJ5FIlk9D83ByMojmPJJOgFi+4SxJp48zcTFVI3S9GBgGuPIHtCB8/ON0URYIB5etN+OLPTU4Y34PKC0H6W824CTrQIpRZDB8fnzG8AqYiAdYO7vZPeD/sffm4Y2d5fn/52i1Nlu2vM14HW/jmcyeyUy2yUJmQgI0IawB2gKFAm3h+4OWb6ELdIXSvRTowhcKtJRAoJCyk5BlMtknmWSWzL7PeLzb2nfp/P54z5ElW8uRJduyR/d15dJEOjqSbek97/Pc93PfguGbRtlszDJuGblyAYOUxNxQmuHMulW1DLY6igth18jwDXvCeEIx1q9SiryIp0RJZ4twnowWkGydfRwMNWKetMxY02hjNFlHMoukMxRN8OqQh7sbx8QmpPc1Mw8aa9Df/H+4QX+UsVefmLlfljHF3ExjL6+kE8R3Zupczov4YGsttTWGlHHLy5fcTPijIgdN/fsWmOEDwDvEW7d38Mqf3MlXfn07b93eTmP4Ai/4XOz+h73c9LnH+MT3DvHzI8PlKf7UeIbTixfPEPMJpsLkaMq4f02jjQuswuA5r/1kr/5AGCrc8ekyvkONqF8DSAtr3OKdCV2PxBN8+FsHeOCFS3z49j4+88YN6BcqExYlbgc4PV7YnbAQ9p+fYntXfeEMW71BsHwAt3x88eYx54FVdTVEE0kCjl4xD73Q0l7/mGjOpBV3I55wUXJOEDN8cxk+/4zSIoPhi+IsYR663mrEvWSSzjCrTEqzotSCz2gR16DjP8neJJVleOYLrPrBm3AQwhoahnNPlPaaWqEwfL6E+DuZDTlKGKMo7hvNYi8734IvlkhiSITmZxhXgagWfEuBSy+IYkIxa5mNXQONeMNxDg2VvqiOKYxXNtMWUDYes6Ri3rBYIOvKzRxogcUpNjTT54TcRSNSDJ/6xU4mxDnSMvig8MD3mkYbsqTHY16dKvgujkxyf+JHYhFsu7bYn2jR0V5vYVpl+GYxau7hcwA4WrpLfp03b2vnlUtuzmg1O1BNWwps3jMMW0Bh+Eos+CDn/FwKZx6HrpvyWsLPFz1NdsapQxeamjMbceiym3hS5mZ1fq/ntozHpe3vxad3sv3if8zcGfagkxO4qS1/Y8bVJyzRPZeyPqzXSVzX3cDzinTtkaOjGHQSt61tFoYFkj4/I6sWfAqjYzcb2L2+hT9/wyDdjHD9jhv47H0b2dzh5KdHhvnQNw/wjWfOl+dn698tcrIuv1ie8xVAMjBJAt0ciatRr8NtaccZuqw9muHkw9CyQcjfFxvGGpFNuZDGLcrn4aFzcO8Xn+ZnR0b449ev4+OvXVsUqzMfpKIZxkqLZpjwRzg7Echt2DIbm++H9z8KN320pNddaKgF8SV9h7hjoVm+WRl8UDhWKRusJgPhWFJIdc1pks6UKUw6wxcrSR7vtJpwY0cXWXzTljFfhBaDUvDVlCGmZ/ANwi35ysuZ9wen4IF3wMN/DGvvZnfsHwjpa+Hgd0p/TS1QCj5v0oTFqM/dVDGKz0mDSWX45ifpnPBHsBBGqhZ8VcwbBx8AgwXW35P14Zt6G5Ek2Hey9Dm+UW+YOotR5MdlQZfLxmQgijct7N2TYviWoOADWLVZ3BbhBtZon8XweS4LN02XmsEnMllMuTpCCmqMerpcNoZ0rTB1lnAswfWeH1ObmJ7pxlY4VtXV4JXUgi+T4QtOiAy+hnmErs/GvVtWo5PgIa3mLZZ6wVDE8hsSqQXfoFrwRcpg2gL55/g8Q2J+bIEyzUQ0gxMJecZyXMGLimFLl/t5aN0415LdZOPEml/nhuTLjB5/Rtyn/F2jxrryb4Y1yPd29jRwbiLAmDfML4+NsrOnQUjAQ9OiaZPvPdkaxWytd9bnxn0BkjFq29fzzp2d/OuvXsvLn9rDzjUNfOmJM4RjZWDl1HiGRZJ16kOTBHS1Kev3dCScPZhljdEMYQ9cfFa4ty4VXL0weQZZlssutz0y5OHRF14mKUt8/OeCFf3Xd23j/bt6yvo6uVBvM+GymbQ3r3Iglb+Xb34vHZIkTNuyfD4qCQMt4nryalyZRV3oaIbAWMY6KMuywvAVF0FjM4t9TzAan2FpIv6Z75wjzbQlFCtJLeG0GvHKNvSJiDBXWiSEYwk8oRgN+oCYdS+H6c/Aa0Xj7sRPZ+67tB/+/RY4/Uu4+2+Q3vZfyLYmDtbdDsd/LH6vC41oAKk1N+EAACAASURBVAw1BGJ55vcgJemsNwjyYr4M36g3gpUIhprlH8kA1YJv8RELw6vfh3W/krMLXm8zsamtrixzfCKDL/ciqTp1XpiY2YSrks5Fn+FT0dADOkNRw+EWkx6bSc+ET+nkzIpkGPaENef39DfbORlvgalznBuZ4jf1P2bStR26bizqx1gqGPQ6zLVK7tesGb7ktGBtTPUdJb9Oc20NN/U18v0DQ5nW+rmgMXz92IgIubebDYL9KBfDl6/gO/uEuF0AwxYAl82E39iQ9X0cuDDNhkYJ49B+6L0j6/PtN38It2wj8cTfijuU32GspkT5TtY3mz+aAWDnGuFi+p39lzg95mfPupaZ91VIUiRJilPnrIJPdf9Lc+g06HX87p4Bxn0Rvvnc/CJbMmCph/YdcGpxCj5TdJqwKfvvw9wisgb9wxo2z2ceAzlREQXf2//tWf7wB0dKPl0wGuc7+y9y7xef4g1feIrp4XP4jC4e/O1b+Nn/t4u7N64qfJIyorfJzukSnTpfOCfMlzaWGAZfaWi0m6i3GjngrRXNmoU2bvFnFnyeUIxIPFlUJAPMzHgFIolM0xafcM/NKPiC0XkbtoCY4XOroxSLGM2g+jQ48efPPy0G1gax31Flnc98Eb52l2iWve8XsPODIEk0WE08UfMa0cQ99qPyvHY+RANgshGKJnJn8EFK0lkjh6kx6uadxTfqDWOVIhgt1YIvBUmS7pIk6YQkSaclSfpklsfNkiR9R3n8eUmSutMe+wPl/hOSJL22HO+nonHyZ6JbuyW7nFPFrv4mXr7kzmDe5oNRbyTvItndKDoh6cYt6msuqktnOvRGwTIUmffT5DDPSDrTIhlA0f9rLfha7BwONkDUB8/8M6ulKYLXV27uXja0NNQTZm7Qud4/TFgyl67zV/Dmbe0MuUPsP6/BmUx9zQLGLceGvQy2Ks2QWEhsdEth+NSLej47/jOPiZmRBTLkkSQJk3P1nPeRTMq8dHGaNzcIditjfi8N/Z2r+Zb0OlaPPAYjR2aY21IsuHPB1iQK7DwF3zWra7GZ9PzbXvE9272+iIIPhKzTO8vwJ1XwZUae7OxxcVOfi3/be6Y8Ib/9e2D4lcIS3xLhC8eokz3Ezdl/H42dgwCMXzha+GSnHhGy0PbryvkWi4OrDyIeTl+4wPcPXE4pQYpFIinz2Z8eY+dnHuUT/3OYUCzBn/7Keu7tgbqWbrZ11i+4hDMbepvtpTN8F6bY0uEsqCRZbpAkiYEWByfGQsq1eQElncmEUEGkRTLMmK4VJ+lUGb5ANJ5W8PlE003SibVOwXQgWpIBltNqxCMrLOIizvGpTux22V+26zog3DrHjsJ/3iOMhQbugg8+mTHW0mAz8WK8H+q74dC3y/fauaAUfMFoIj/Dp0g6pXhIyWien6Rz1BvGQgSztQTTuApCyauSJEl64EvA3cB64B2SJK2fddj7gGlZlvuAfwT+WnnueuB+4BrgLuBflPOtXBz8NjhWwZpb8x62q7+RRFLm2TOTeY8rhDFvOKdhC0BXg1ig0o1bllzSCSJnqsguYqPdzITq0jl1VjhNOUSXuDiGz8G5pLjY9B//Nw4me2nZcndR72Wp0V5vwY1jTnFlCY3gMbbMP8R8Fu68pgWrSa/NvMVamOELRUXI/bp0OSeUxvDVOEGXO/ScZFIwfD23le33kg21jcrsWtr7ODvhxx2McbN0SMi8O7Mbxuh1Eic630EAC+z7+9TfVbKWLy8wBUlSohlySzoNeh3XdjcQiCZYv6qW9nrROCLszh/JoKKubcaVUcXESVF0Z9m0fGz3ABP+KP/1bBlYvv494vbMwsYzDHvC1OMTEtYs6OoZJCIbCAyfyn+iZFIUfH13LG1Gm6KWWCMNE4kni3PoTcNjx8f48pNnuWWgie996AZ+8dFbeM9NazD6ryypcUlvk43pYGzebEAgEufVK17tcs5lhrWtDk6O+JCbBhZW0hmcAjkp1gIFqQy+uiIlnQrDF4wk0lw6A0LSaWsS8RhAPJHEG46XJOmsMeoJ6ZXCILz4DJ814S1vwbf2deL2wrNw1+fg7d+cwyA22E1MBmPCbf7s3rlNvHIjFgCjjWAskTuDD9L+1kFcdnMJks4wViJYqgVfCjuA07Isn5VlOQp8G7h31jH3At9Q/v094A5JtPDuBb4ty3JEluVzwGnlfCsT/nFx4d70ttRCkwtbO+uxmfQlyTqTSVkM8+aRdFpMelprazg/mS7pVExblorhA1HwTZ0rSgvfmP7FnjgpNiiSRDAaxxOKaWb4+prtnJdFwWeQo/yP7e2Y8i0uFYj2eisTSTuJwEzDIBJP0JAYJ2KZf+j6bFhNBu7esIqfHh4uPGOlXoxCuRm+E6M+kvIswxYobRBdp8sfvj56BIITCza/p6JplZDRRt3DqfvUwPUuz3PQfTMYcn9Xr+nr5hvxPciv/gAuPQ+A3r4ABR+I704Bg46dijFFit2DIhi+1cIUIJnmRDxxKmfg+vbuBnb1N/LvT56dCVKeL1o3Cfbg1MOlnacArrhDNEg+DPbsBd/qehtDtCAVcr4cfkXMNPUvsQBGUUtssU4w0GLnuy9entdp/vv5C7TUmvn8/VvY3t0g2DxZFg2A2vZyvuOioBqTnBmfn3HLgYvTJJKydsOWZYb+Fge+SBy/vQemLyzcnFrKUGWm4BvVaLo2G9YMhi+t4POPZjCIqlGds0SjuqTa7FpMhk8phk1RT3kLvvouuO/L8P5H4PrfytoM7W20cWEyQHDwzYAMh79bvtfPBoXhCxeUdCoNyFiAJrtp3gzfmCeERYpWTVvS0Aak27ldVu7Leowsy3HAA7g0PhcASZI+IEnSi5IkvTg+Xp6MukXH4e8KeVoOd850mAw6buh1lRTAPhWMEk/KBRfJLpc1Q9LpCcUw6iVqjEsoS2laC8hiE6gRjQ7TTME3cgRaN4h/aszgU9HbZGeIJpLoOSN1MdWWfa6qktHRYGFathPzzXxXhqZDtEpTJGvL20V/07Y2fJE4vzxWQCKnYYZPNWxZP4fhK7HDZm8WduLZcPZxcdtzW2mvUQBdzQ14ZCu+iZku6Ivnp1lvmcbkPisYnDzYucbFV+KvI6k3w4H/JC7rqLEvwAwfCNmW+5KYOc6BPetbaHaYuWdzWsZcMZLOZFwUMiA2/OMnoLE/51M+tmeAqUCUbzx7XtvPkAuSBH17hIx3AfOjRtxB6vFR42zO+rgkSUyZ27AFLuY/0alHAKng52OhEa/tIIaem+o9vPXaDl655Ob0WHExBpemguw9Oc7913Vm5p2F3aJ7v6QMnxLNMM85vv3np9FJsK2zTHNUFYa1inHLRX0HIC+cY2uq4MuUdEpS7nipXEgxfNG4aLIbrRDxKaHrmRl8QEkunUBaU3NxJZ0mvU64g5az4APY/HZYvTXnw1u76knKcDDYKOTmC+3WGQ2CyUowFs+dwQcp0xZioUwioEhMezyZ51vmKMeOPpsGaraDQ65jtDxX3CnLX5Zlebssy9ubmpqyHVL5OPgArNoCzes0Hb6rv4kLk0EuTM6v46h2fvIxfKBGM2TO8NVZjEsyR5FCk5hvKdapczoYI+YdE5v7lsyCr7VWm/7fYtKzuqGWB1y/ze9F3kdfawlywiWCyOJzkEyTdF6a9NHMNIYyGLak4/oeF621NYVlnaocJM8M37FhL3azgfZ65W+l5j2VIukEJXw9R0F65nHxeatdnf3xMqGnyc647CTinin4Xro4zdsblI1Tjvk9FdesriVsque5hntBTogMPltxEifNcPUBMkyfz3nIQIuDF/5od4oZIZkQjKzWgg9mjFsCE2LT37Q251O2ddZz+9omvvzkWXwlzjaLeAYPDC1cPMPU5Bh6ScbmzM2oh2vX0BK/gpzMk7l66hdibiaHNHSxcPBKgIvJZtaZxnjj1jb0OonvvlQcy/fACxeRgPt3zFqDVHlvmZtRxaDNaaHGqJv3HN/+c1OsW1WLYylHIRYQAy3ie35UdeoscsZeM1QX43SGzxvGZSvssj0bqRm+9PD1LAyfWyn4SmX49Da1qbl4ks5xb4QWhxFJa7OtjNjSLq7pBy5OC1nn2KswcnjhXjAaAJOdoFaGLxrEZTcxFYhqM5abBZ/Xk3m+ZY5yFHyXgfTVux2YLeRNHSNJkgGoA6Y0PndlYPRVGDmkid1TsatfXODny/Kp2u7mggyfjQl/NLWJ8oZiSzu/B2LDKemLmuNrUsLXfeeV7BiF4RsukuED4dT5Z6M38UqyL2VJvZygMnz68EyncXL4AnpJxt5UWuj6bOh1Em/c2sbek+P5O2lGi5hTy9P9PD7sY7DVMZOvozJ8pZi2gFLwZZF0xsLC7r5AsVUOdLmsjONEVsxCpgJRzo4HxPxebVtOOaMKg17HtV31fDF8N7LehFt2lN6RzgUNTp1zEPYAsjanOJXJUTf6KcOW3AwfwEd3D+AOxkrP5eu5XawvGmSdl6aCfP3pczxV5DrsnxKMst6eu0FpbOrFQoSx4fM5TjIOQweETfoSY+/Jcc7LrTTHhmhymLl9bTPfPzBEPJGnWE1DNJ7kwRcvcce6lrnmG2rhX7d0kk6dTqKncX5OnbFEkpcvTa/Y+T0QOXPNDjP7vS5heLJQBV8WSafI4Cu+uTXj0pkWvh7xiqIyw6FT7H1KXU9rbE6Ru7nIDF+XPSHmHhe54Ku3mehptPHyRTdseLOYlT+4gOYtUX/KpdOab8xGbxTvJRag0W4mkZRxz8Nkyu9TGb6qpFPFfqBfkqQ1kiSZECYsP5x1zA+Bdyv/fgvwmCyCfH4I3K+4eK4B+oEXyvCeKg8HHxBRAxvfovkpaxpttDkt857jG/Np0713u0T3Qg1g94RiOJZyfg/AYBKbziIKPjWLLzJ0SNzRshFIH/jWXvD1NTuIxsVGRu1sLic0O2rwSLWYYl7BvAD+8fMA1DZ3l/313rStjURS5oevFOjXWBtydj9lWebYiJfBVWkFdrgMpi0gCr7AeOp3kcLFZyEeXrA4hnTUGPX4jS5MYfF9PnBhGj0Jurz7xfygBkb9+h4Xz46bOL/54/wgcXNJrnJ5MZ+CT93kaGL4lI29d3bBl7/o3dzhZPe6Zv7fvnOlORhbnNCxM2s8gyzLHBny8A+PnOTuz+9j1988zp/+6Cif/mFxUQQRr7JuW3MXAbVtgtG8cvbV7AeceRSQZ4xmlhB7T44TdHSjnz4LySRvubadcV+EJzVenx4+OsKEP8o7d2ZpOHkUpnAJGT6Yv1PnkSEP4VhyRRd8IIxbjk9EhCvjQhm3+McEo2Kaue6KDL7iHDoBbGal4IuqDJ9deAPIyVmSTrGWlMrwOW0mfNgWeYYvwhqbMqO2yAUfwJZOJ69cmka21IvYmMPfm3udLRdiQTBaCzN8IGSYsRCu2RnNGhGOJUhEFOVbleETUGbyPgz8AjgGPCjL8quSJP25JElqsvhXAZckSaeB3wU+qTz3VeBB4Cjwc+B3ZFleoE/KEiIRh0MPii9DEbIcSZK4ZaCJZ05Pau6ipmNUYfia7Pk7Y92NilOnIuv0huNLa9iiomntvAo+afSwcOe0CUOLYU+Iemvu8Pls6Fdkaka9RJdr+XV39DoJ2VIvgr6VAis2JTZVOmf5u+gDLQ6uWV3LDwqFsFvqc5q2XJ4O4QvHZwxboIwMX7O4yM8Koufs46IT2H1TaefXiIS1GXtM/PwvXphmm+EchqhXM8O4QzGE+AZv4F8S95bkKpcXNXXCxa4ohk8p5LVsOqwNYKhJK/hOCfZXg2nHR3cP4AnF+NpT57W/t2zo3y1UF74RYokkT5+e4E9/+Co3//XjvOELT/HFx07hMBv4o9et41ev7+TcRKAoKWnMqzDKedb8tl6hQvBezrF5PvkL0axo3az5dRcCU4Eohy67sa1eC/EQ+IZ5zWAzDTaTZvOWbz1/kfZ6C7f0Z2E8vUOiIWrPPu+4WOhrsjPkDhGKFrcNUWNprluz+BvuxcRAi4OToz7kxoGFi2bwj4rPQVoDbP4MnxK8nmL4bDORTfbMDD6g5PW03mpiWrYhL6pLZ5iOGqWYWYKCb1tnPRP+KJenQ2Lmzz8yk2tbbiiSzlBMQ8FntEI0QKNd/E2LLfjGvBGsKDPsVYZvBrIs/1SW5QFZlntlWf6Mct+nZVn+ofLvsCzLb5VluU+W5R2yLJ9Ne+5nlOetlWX5Z+V4PxWHs0+IRWzz/UU/9Zb+RnyROAcvF7+AjHrDNNhMBXXvXQrDp0YzCEnnEtp/q2gaFPEKcW1fVLWwrZk8mprfAzWDr7juYL/C6vU02jHql2emUsodUClypJRsamG66G/a1s7hIQ+nRvMYOVjqc3Y/VcOWzILPB0hgKtW0RZnX8M0ybjnzmGB6FmlB1ztasBBGjvh46cIU99WeBCTNDOOm9jrMBh2/eFX8HPW2BWzMuPrE908r1L+rllgGNXw9XdLZ2CccVQtgQ1sdd65v4StPnZ13FhxAsEsU2d/67//g2r94hHd95XkeeOEi61bV8jdv2cT+P9rNgx+6gd+8pYc7BluQZXj1ilfTuWVZnplVzROdUduyhigGEhNZCutEXDB8fXs0/V4WEvtOjSPL0NW/SdwxeRqTQccbt7Txy2OjTAfyu+CdGffzzJlJ3rGjE70uC5PtGQLH6oLu1QuN3mYbsiziUorB/vPTdLusRZuKLDcMtNgJx5J47T2iGbQQpkf+sYxIhnAsgTsYo7VIh04Ao16HyaCbYfjMdogoMr1Zpi16nVTyvsdpNeKW7cT9GnJpy4BQNIE3HKfVpDimLkHBt7UzbY5v4C7RLDy0AOYtsgzRAEmjlWg8idVY4G9ltEIsmNoXFuvUOeoLY5EiM+daAVieO9nlhoMPiE3QwF1FP/XG3kZ0Ejx5svg5vlFvhGZH4a6Y1WSgpdacimbwhmIVwvANClZGI8vQ6DBhIobDfzY1vwfFZfCpUI0oBlqX3/yeippapZOuMGo1wWEiOkvp8sgcuGfzavQ6ie/nY/ks9TlNW44N+5AkZkLXQUg6zY7SN7xqwZc+x+cfFwPmvbeVdu4iYG0QxjAjQxc4eNnDLumgcEHLI/tLh9mgZ2unMzWXumAzfKApmiEDoSIYPsgMX584WVDOmY6P7h7AF47z1afOaX9/CJn7t56/yHu/9gJb/n2YUdlJ48iT3HlNK//+a9fy8qf38JV3b+dt2ztSUiAQRSYI6Z4WeENx7Anl95EvK1GnZ8KwCrM3S77g5RfEXOTAnZp/voXC3pPjNNhMrBmYKfgA3rq9nVhC5n9fyc/sP/D8RQw6ibdtz2EY5R1aUodOFfOJZkgmZV48P8X2FS7nBFLz7Jf0nZCM5TV1mjf8Y5nze6rpWpFNWxU2k164dEJmYy/DtCWGswxGdU6rCY9sIxlcHEmnOrbTbFy6gm9tiwOLUS/m+AxmuOY+OPYjiMzP/CgnYiFAJqYXn4O8wesgJJ1KDh9QdL6mmsGXOtcKQLXgW2iEvXD8x2KgNU/GVi7UWY1s7nDOa45vzBfWnFvT5RJOnbIs4w3HqK2Ugg80yzqtJgMbTSPo5UQWhq/I/B6Tgd+6rZe359qgLAM4GsQFLeKdwB+JU5+YIFDTumDh4k0OM7f0N/LQy0O5HbGsDXkZvm6XLdNuOeItT4GqbiDSnTrP7RW3PQtv2KLC2Swki88ePEZN3Edb8GjRhjE718wUEKXOnOSFq1f8vsLaWK2iZvhAKfiGxIXcfbGogm/96lru3tDKfzx1LiXHyoXTY37+9Ykz3PcvT7Pzs4/yhz84zJnxAL92QzdS/x72mF/l7950Da+9pjWn1XeTw8yquhoOayz4hr0igy+utwqzojwI2DtxRS/Ple2feljIHHtu0/SaC4VkUubJkxPc3NeIrq5NSG8V5nfdqlo2tNXmdesMxxJ878BlXntNa8pYaw48l5d8fg+g22VDJxUXzXB2ws90MMaOq6Dg61cKvmOqU+dCzPHNctBMzeDPg+EDcS2fcelMm8efVfDVlWEtrbcacS/iDJ86ttOoVxoUGhuH5YRBr2NTex0vX1R+5k33i1m74z8u7wtFxc8Y1Yn1VJOkMxbEaTGi10lFSzpHPGEsasFnrEo6q9CCow8JU4gi3DlnY1d/E69cchctXxr1hgtGMqjodlk5NxEkFEsQS8iVwfC5+oQb2Jj2Ob5ra5ROc6voRIdjCSYDUVbN42LxibsGubl/aa3QS4GzUVzQ3JPDXJoKskqaJG5f2OiB+7a1M+wJ89zZyewHqDN88tyC8NiIl3WrZjGqYU/pGXyQxvClFXxnHhfM++otpZ9fI5rbugA4ePwEN+iOopMT8yj4xEXdatJjNiygBM7VJ261yjpTDJ/GHLLa1eAbVgxb5IIOnbPx0d0DBKJxvrIvk+VLJmVeujDFX/3sGK/5+yfY/Q97+eufHyeekPnd3QP8/KO72Pt/b+NTb1hP89Y3IEW8gk0rgA1tdRy+rLHgc4dpkHwkLIU3YHJDL12MpCT1KZx6BDpvEBKpJcTRYS8T/gi3DjQJpr1lvfjuKN/ht2xr59UrXo7mkLv+9PAw7mCMd2UzawFxHu+VBY9F0YIao56OBmtRxi0vnBMb3ZUauJ4Ou9lAm9PCfp9yXSxixl4TEjFxfZgVyQDMa4YPRDTDDMOnFHyWBmEMp2A6GC2LWsJpNeGW7SITbxGgMnxOSVk7tMjpFwDbuup59YqXcCwBndeDs6v8bp1R8Z0MS0rBV8iTQSn4dDqJBpuJCV9xks4xX4RavfKcKsNXhSYc/LbYOLVvn/cpbulvJCnDs2e0yzoTSZlxX0Qzw9fdaGPCH+GKWywgSx7LAGCsgfo1RV1UNhouEZHMKZdBNZqiWIZvJaCpWXRhfVNjXJoKslqaQr8Ahi3puHN9C3azIbes09IgArejmRuq585OcmEyONflLuIt3bAFxIJtrp2RdMqyMGxZc8uizg01tiiMsX+Mu63HxAakY0dR59jaWY9RLy2snBOKd+oMTYufR69x7ahTwtfPPy3+vwiGD4Rj4Os2ruJrT59jxBPmseOjfPJ/DrHjs4/y5n99lq/uO0eb08Kf33sNz3zyNfzoIzfzkTv6GWytnZFu9arxDHPdOmdjY1sdZzUat1zxhGjAh2TLI+dUYF+1FosU5fz5MzN3ei7D6BFh9LXE2HtSqEt2DSib/GvfK/K2zj4OwL1b2jDpdXwvB8v3389fpKfRxg29OX4XgQlIRJY0kiEdvU12zhTB8O0/P0Wj3ZRyu17pWNvq4NBEUsxcltu4JUsG33Cpkk6zAX9klqQzbX4PhEtnORyP661GPNiEEVe+bM0yQWX47EmfWHsNC3xNyIGtHU7iSeFujCSJTL5ze8E7XL4XiYmRo4hO7OUKSzptIqgdkUV9xRMq6uVGvWFaahRmuDrDV0VBTJ+HC08Ls5YSZHSbO5w4zAaeLCIHatIfISkXzuBT0a04UR4eEp2pWksFmLaAkHUWkffTL5/nnK4ztYkfVr7kc3KfrgK0NTUSkQ2EPWMMTXppxIO1sbwZfLNRY9Tzuo2t/OzwcHanO1XulzbHJ8syf/3z47TW1vCOHbPeX7hMkk4QmwiV4Zs4JeSEi5C/lw7J6iKBjibJLfL31tyivUBSYDHp2dLhzC2PKxcaesTt5Jn8x6koNvhXlfCdeQyQZhjFIvDRO/oJxhLc8LlH+Y2vv8iPDw2zs6eBz9+/hZc+tYf/et9Ofv2GblY7c3z/a+pER/q0hoKvXTBtWoxbht1hXJIXo6Ow62Rjp5CuT106NnOnWoBWSMF3zeraGUOSTW8TphrPfBEQWVy71zfz0CtDqSgbFcdHvLx0YZp37uzMPR/lrYxIBhW9TTbOTgRIaAxq3n9+iuu6G0qe/1ouGGhxcHY8QLJxoPySzlQGX5qk0xPGbjZgN89vT2IzGQhG04LXZ50fwBOMUmcpD8Pnke3CHTuiTQ1QCsa8YUwGHeaYZ0nm91Rs7RSv/fJFhdncfL/wXzj83fK9iCLpDCHWocKSTkuqSBxoFu6yxWDUG6bRnGX2cxmjWvAtJA4qTkWbinfnTIdRr+OGXhdPnhwX7m8aoHZ+WjRuCtWC7+AlsUhVhKQToHkQps5AXAMdL8t0RM9yNDFTNMwng2+loNFRgxsH8cAkntGL6CSZGtfCzyTet7WdQDTBw0dH5j6oXpTSZhweOTrKyxfdfHR3/9zojHIxfKCErysbCoWdoHfh8/cyoNPh0zdwne4EjbEr8y44//6tW/i7t24q85ubBaMF6jrE908Lwm7tck6Y2eBfeBqcnQVn3bKhv8XBJ+4a5J07Ovn6e6/jpU/t5kvv3Ma9W9q0r2F9u4V5T4Fu9MYijFuGPWEadX4kDTE8pmYhZQ2PprElpx4Wv5OmtQWfv5DwhmMcuDAt5JwqDGbY+QHhIDp6FIC3XtvBVCDKY8fHMp7/recvYjLoePO2POydZ2Hdg4tFX7OdaDzJ0HRhRmDYE+LydOiqMGxRMdBiJ5pI4rWvEY0zjXsSTfArDJ8tU9KpdTQlG6wm/Uzwujoe4FiVcUy5GL46i2D4gEWZ4xvzRWipNSOFilx7y4wmh5mOBgsvX1J+ZlcvtG0vr1unogoKoZq2aHPpBBhc5WDUGynoJpyOMW+EBlNcKED0S8OclhvVgm+hIMvCnbN7FzhL32TvGmji8nQoFY5eCKruXbtpi6CsDynxDxUh6QTB8CXj2jadvmFsCQ+vxNqJKQYIM3KQq6/g0+kk/PpaCE4RmboIgLQIsqmdaxpoc1r4/oEssk51qFxxDk0kZf72FyfoabLxlmuzvLeFYvjOPC7kwvXd5Tl3EYjUNLJTp8iU51nwdbqs9DUvgoOsqwinztB0cTMk6mcxFixazpmOD93ay2fu28hta5vnN9Oosminf5n3sEa7MG45pGGOb9gToh5vfodOFXXtxDBicCuziPGIcmSlTQAAIABJREFUiPLpv3PBDJa04pnTk8STcmbBB7D9fcK85VnB8u3qb6TZYc6QdQYicb5/YIjXb1xFvS3PhkmNi9GQwbgY6G0Sc16nxwszAi+cE+vY1WDYokJ16rys7xSbcG9+h9aikGL4MiWdpSh0bOYsDJ9jhuELxxKEYon8n1GN0OskYkZl5ja08HN8o96wYN6LVVcsALZ21M8wfCBYvtEjMHKkPC+gyDMDsvg7FSPpXNsq9hDHR7SxfLIsM+IN4zTExXlWCHtfLfgWCpdegOlzJZm1pOMWxTzkSY1unaO+4go+m9lAk8OckitVDMOndri1zPGNHAbgWLKLKaWTM+wO4aiZvxxkuSNirMcYcSO7F082pdNJvHHravadGmdMaTykMIvh+/6By5wa8/N/71yLIVveYcRXRoavVczwJWJwft/is3sKapvExlZ2ds7IJisVajSDli5+sZsOS70IX4eSCr6S0XKNmEfSIOvc0FanieGbcnuoIaKt4NPp8VnaqA9fFuYSF54WRXD/a7W8+wXF3pPj2M0GtnXN+rtaG2Dru+DQg+AbwaDXcd+2Nh4/Mca4T6hLfnTwCv5IPLdZiwrPZdCb8wbULybUgu/MWOFohhfPT2Mz6eeaTa1g9DXb0UlwVHXqLGLkoiCyFHyC4Zt/w9ZqymLakha6rprhlcvxOKk2vRaB4Uuxn5VQ8ClxQeoYDde8SbgMHyqTeYsi6Qyg5C0XNG1RJJ2ynIp6OjGizXHaH4kTjCao00dXzPweVAu+hcPBb4kPyvp7ynK6LpeNzgar5jy+MW8ESYJGu/au1RqXjYgyg1ERsQwArn5A0nZRUQq+43JnatMxnwy+lYREjRNL3I0hoMjVFkk2dd/WdpIy/PDglcwHVNfC0DThWIJ/+uUpNrXXcdeG1rkniUeEmUM5Gb6IF849KTrTGsPOyw1LvdgoSb13VH7n0NUnnFKDOVxX01HspkOSZhoQRTp0lhWSBH13CNY3kd+QZZMG4xZZlol4FWmjloIPiDvX0C2NiDiAkw+LQrj75oxjTo/5efDFSylnvoWGLMs8eXKcm/pcGLM1Y67/baG+eOHLgJB1JpIyDymGTf/9/EXWtji4dnaxOBveIeHQWSHfhXqbCZfNVDCaQZZlnjs7ybau+uzNqhWKGqOeLpeNF/0K61vOgi8wDua6lLw7kZQZ80Xm7dAJopk9J5YhjeGbVmJdnGWY4QOIWZVi9crLZTlfPoz5IpXD8M2e47O5hErh8PcgmWWev1gokk5/UqNpi9EKcgISUZodZuqtRk5onONLmeHooivGoROqBd/CIBaGIz+Adb9SHkt5Bbv6G3n2zERKrpgPY74wLpu5qAtRV5rLWG1NhTBiJivUd2lj+EaPELF34MOaylwZ8Ybn7e61EqCzuqiVfTQmJ4gY7GX9POZDX7Odze11c2WdKdOWab753AWG3CE+cddgdsMDNf+tXLb06qD+oe+IuI81t5TnvPN9H4tsGDMvqEYqhYxbZFlImIrddKhW/EvJ8IHYmES8QpmRBxva1Tm+3J1idzCGNa6wgBpZK1NzH93SKMeHPWJ+r3sXmKyM+cJ89alz/MoXnmL3P+zl9793iJs/9zgf/+5Bjg1rzEecJ86M+xlyh7h1IIfxjKsXBl8P+78K0QB9zXa2djr57kuXOHTZzeEhD++6Po9ZiwrPUMU4dKrobbYXjGb4u4dPcGrMz90bVuU9biVioMXOSxN68X0vp3GLfxTsM/LhCX+ERFIu6RpuMxkIxRLChKd5UKgqVm9NPT4dEM2bcszwAUQcnew3XgdP/zMENDTK5olgNI4vHKfZYaqIgm/9qlpMBt1MHh8It07f8EzmbSlQ5vF8ySIknQDRAJIksbbVwbFhbQWfqkyySpEVk8EH1YJvYXDyZ8KhaXNpZi2zsau/iUA0kamTzoFRb6ToQefuRvHBtpn0ldWxbFqnkeE7QqL5GoBMhq8EOchyh7G2ESd+2qRJorbFzbm6b2sbR4e9HE+XURhMYLIT9U/wpcdPs6u/kZv6cmyKI8rzylWkqoXWsR/B6m1LN+S+ajPYmpau4CwGWqMZYiHBxhb7O1U3+ktd8PXcJuRHpx7Oe5gW45YrnhAuSfnsamT4atsGsUhRwqf2wdQZXrHs4Ne++jzXf/ZR/uLHwhjlj1+/jod+5ybu39HBTw4Nc/fn9/GrX3mex4+PkdToKFkMnjghxgduGchTtN74EWHW88q3AMHynRz186n/fRWLUc8bt2pQFHiHKsahU0Vvk53T4/6cJmnffO4CX3r8DO/Y0ck7diy8EValYW2Lg/NTIZKugfJGM/jH5jh0wvxD10Hk8IEokKhrh//zcsbstltl+MoUc1NvNfFPul8TjNTez5XlnNmgRk6ttiYhGVvygs9k0LGxrS5zfzpwl2BsD5bBvEWRdKoFnyaXThDXJmCwtZaToz5Na6U6EmWRw1WGr4oCeOUBMROy5taynvaGXhd6ncQ+DXN889G9q06dFSPnVNG0VriB5ZNbRYMwdQbDauFcOOGPEo0nmfBHrkrDFhU2ZzMGKcmAdAlpkYONf2Xzagw6iR9kYflOnb/IdDDG7792MPcJwsqmupySThCdwiWa3wOEzPvjp5bUVU0znJ2iECpU8KnzKsVuOrp3iXDxpZ7fqqmFjus1GbesrqvhcJ6Cb9gdph6lk2zV9nPplMK6/eTXAfjwi02cmwjwO7f38cvfvZUffeRm3r+rhy0dTv783g08+wev4RN3DXJ6zM97v76fPf+4l/9+/kL2KJR54slTE/Q122mvz7Ph6dgp3Pie/SIkE7xh8yrMBh0HL7m5Z/PqwuZfyYQIXa8Qh04Vfc123MFYahY8HY8cHeXT/3uE1ww28xf3XnPVxDGko7/FQSIp47H3LADDN8Mop1y2S5rhE2qlYI7vhluZ4au3lWff47QaORhuhWvfDS/+h9i7LABUY742syj8lrrgA5HHd2jIMxPPYqyBa94omqzRwjOxeRENgMFCICaj10mYCpESKjOnOnW2OghGE1zW4L474hG/U5Mcrs7wVZEH/jGxadj0trIHOtdZjGzpcGrK45sPw6dKOivGsEVF06DoYE2dy33M2DGQk5jaNmE16ZnwRxjzhZFlruoZvtoG0S3t0o1hdi1sBt9suOxmblvbxEOvDGVkWsXMTsbGRnj9plWpbLOsUBm+cpm2pIftLrWccrlsEvVG0Q0v5JIbVrq6xW46tr4LfuPnlfH76N8jXOW8V/IetqGtLn/B5w3jktSCT6N7o2LecysvMmbu5p8+eC/7fv92fu/OtfQ12+cc7rSa+K3betn3idv5/P1bsJoM/NEPjnDj5x7l735xYq5ZUpEIxxI8f3ZyrjvnbEiSYPmmz8Pxn1BbY0zN477reg3rjX9UzNlUHMMnNouz5/hevjjNRx44wIa2Or74zq2VpYRZRKxVTDCGDB1ivjegPSM4L/zjGZEMI2Vw2VYZvlQ0wyyUe4av3mrCH4kTu+WTwsn2kT8py3lnY0xRMTUbFef2Sij4OuuJxpOZcvPN90MsAMd+XNrJowEwWQlGE1iM+sKNFpWZUwpN9TN7TINxy6g3jMNsQB8PrZgMPqgWfOXH4e+KC1iZ3DlnY1d/I4cuu1MyhGyIJZJMBiIzQbkaoUo6KyaSQYUWp85RYdhCywYa7WYm/JGyXCyWO+z1MxdPY/3iS4/u29rOqDfCM2dmNgQXg2bqZB+/t6eAjE+d4SsXw2d1idk9kx3aryvPOa8GuPoKz/CpDF8xsQyVhv494vZUfrfOjW11nJsI4M1h3DLsDuHS+ZAlvfbfR1076E3okWne9ga2awzyNup13LuljR9++CYe/OANXNfdwJeeOM1Nf/0Yv/fgQY5qCInPhufOThKJJ7mlUMEHYlbd2ZWKaPj4nWv5qzdtZFO7hp9dLa4rbIZPLbLPjM+wEucnArzvGy/S7KjhP95zXeEcsBWMbpcNo17iWFxRjZTDuCUWEqMwsxg+o17CVUJkQkGGLxjDbNAVlghqhDoL6JacsOtjcOIncP6pspw7HSrD59Ipn9EKKPi2dYnvfMYcX8f1QilSqltnNAAmG+FYQtvfSmXmFEmnGidyQkM0w5gvTHOtWbxmleGrIicOPiAGgpvzSNVKwK7+JmQZnj6dexh4wh9BlrVHMqiwmw002s3UWirsQpYq+PJcVEaOgMkBzi4a7SYm/JFUBl8pGT7LHVL6DNEiSzoB7ljXjKPGkJJ1XpwMcsKrp8MSoadpLnORgYiyMJeL4dPphR139y7BXFWhDQ29ouBL5jGLmq+ks5LQvF5TPINq3PJqDuOWYU+YNlMQydoAOo2XWJ1+Zq5ooPg4BkmS2LGmgS//+nYe/73beNfOLn52ZJjX/fM+3vn/nuPRY6NFzfntPTmO2aBj5xoNDKVOLxw7Lz0Pl/bT0WDlHTs0qgk8ixcXUwxW11moMepSxi2T/gjv/toLyLLMN35jB432+btGrgSYDDrWNNrYrzp1lkPW6VecbdNm+EY9ImdOp5u/AsBmKsDwBaLUl2l+D6BOOZc7GBXfi7oO+MUf5l8/54ExXwSzQYctoaxDFbD2rqqz0Fpbw4H0OT6dTpi3nH0CfCPzP3ksACY7wWiisGELpBV8oiC2mQ10uayaCj6hkKsRctDqDF8VWTFyREQDLBC7B7C5vQ5HjSHvHJ9qKVuspBPgk3cP8u4bu+f79hYGJpvoEI0fy33M6BGRp6XT0eQwM+6rMnxApqRsCTZVNUY9b9i0ip8dGSEQifOPvzyJB8dMVzIfImVm+ADe+nW4e+EG6VckXL0QDwm3tVxYCQWfJAmW78wTeeeFCxm3XHGHWGXwa57fS8HVJ5pWHdcX97xZ6G608af3XMOzn7yDT949yDmFmdr9D3v55nPa5vz2nhzn+h5X4awrFVt/VbjpPvuF4t6sGtpdYTN8Op1ET6Od02N+QtEEv/GNFxnxhPnqe65jTePKkXiVgoEWB89PWsTGuhzGLQFlTzMrdL3U67dVyeANRLMXfO5QrGwZfDDD8E0HY8I45I5Pw/BBOPxg2V4DhJNkS20NUriy1t6tnU5evjQrg3DT/SAnhQJuvlDYNlXSWRApSWcwddfaFocmSeeIR/HAiAZnojxWAKoFXzlx8AFhcLDhzQv2Ega9jpt6G9l3aiKng5hK9c8nrPQt17azq1+DjGex0TSYm+FLJkWx3boBQJF0Rhn2hLGa9JUTMbEUsKQVfEskm3rTtnZCsQSff/QUD70yRFd7O7rwdOGOZ7klnQCdOzMc2qrQgFQ0Qx7jltA8Z/gqDf17IOqDi8/lPEQ1bjmUo+Ab8YZx6fyaHTpTuP0PRUPCUB62oc5q5EO39vLk74s5P3uNgT9+6Ag3fO5R/vYXx1PXidm4NBXk7Hig8PxeOsx22P4bwpwh36z1bHiGhLlCBUqB+5rtnBr18ZEHDnD4spsvvGMr2zqX+ee7jFjb4uDCdJikq79MDF/20PVSDFsA7KkZvlySzmiZCz7x/f3MT47yie8d4vOjm5mqu4bIL/6E88PjhGPlMVYa9UZodpgrrtm2tdPJpalQyikdgMY+aLu2NLdORdIZKprhmyn4BlsdnJ8I5P0byLIsJJ0Ok3huVdJZxRwk4qJ70f/aBXec2zXQyJA7xNmJ7CyJOrDfPA+Gr2KRcurM0qVzXxCbtNaNgNiQTQejXJ4O0lpXc1W6qKVQUweSsjgugaQTYHtXPR0NFr785FkcZgNb1/aIbl+0gLQi4hWbQf1VXLBXArREM4SmRbNruQ+4r7lV/ByFZJ1tdVkZPlmWGfaEccoeETxcDFo3Qv/u4p6jAeqc3//+zk1890M3sHNNA//yxBlu/uvH+N3vvDLn59h7UjAtt64tsvG344NirXnuX7U/x3tZsHsVuEb3Ntm54gnzy2Nj/Nm9G7jzmtbCT7qK0K/MRHlsa8rD8KUKPiHplGWZkXm4jc/GzAxfLtOWWFklnf0tdt5ybTtIEo+dGOMfHz3Nh8behDk4woNf/EMGP/Vztv/lI9zzxaf40H+9xJ/96FW+su8sPz08zCuX3Ix5w5qjA1pqldB1Q81MDMESQ22KvHJpVnzYpvuF18Loq/M7cTQoCr6iZ/jSCr5VtSTluWZM6ZgOxoglZNrsAPKKknRWd1LlwtknxIJV5uy9bLhFYeD2nRynN8sc1Jgvgl4n4bKtpIJvUOR8uS/MbEBVjB4Rty1KwecwI8vw6hUv3Y0r58s6L0iSkHUmYku2GZckifu2tPHPj53mt2/vw1KrGLgEp/KHqoc9ixYUX0UeOFYLt7l8xi1q8G8FbtyLQk2tiIk49UvY8+c5D9vUXsfDR0fxhmMZJleTAREHY094i2f4FhiSJHFddwPXdTdwYTLA154+z4MvXuL7Lw9xfU8D77+5h9cMNrP35Djt9RZ6ipUu1q6CjW+Bl78Jt/+BNsbBU3kZfCpUV7/fuq2XX7u+a4nfTeVB/f1cNnRQ731IzFyXsl77FUmnTexvvOE4wWiiZJdtm1Lw5Wb4YmXL4AMwG/T83Vs3p/4/Ek8w4rmNqYee52NXfkzD9vdxJmRlyB3mzLifJ0+NzzGUMeolVtVZWO2sYXWdhdVO9b8a2pwWVjktjHsj3DpgrojQ9XRsaKvDoJM4cHGaPetb0h54M/ziD+Dgt+HOvyj+xFE/mGwEowltBXo2Safq1DnsZUNb9r2HqnxYbVWK7hUUvF4t+MqFg98SspR5DNwXi44GK90uK/tOTfCem9bMeXzUG6bJbkZfwqBzxaFpnbgdPz634Bs5ItwXm8UxTXaxGAy5Q9zQW1mbriWB1SVYiyXEe25agyRJvOfGbjirdIND08Dcz28KEW/5DFuqmD90OvGdyxfNEHZX1KajJPTvgUc+LQxFcsigN6TN8d3YO6PoGPGE0ZHEHHMXP8O3iOhyiTm/j+0Z4Dv7L/L1p8/z/v98kTWNNkY8Yd60rW1+yogbfkeMNrz4Ndj1u4WP9w5B3x3Fv84iYPe6Zr79gevZ0a0xWuMqQ2eDFbNBx4nEajYCTJwUsr35wj8qRhAUQ63UaEqJBZ/KBmVj+GRZLrukczbMBj1dLhvc+1fwLzt5f/zb8KZ/yngP3lCcIXeIYU+IK+4QQ+4wV9zi38+fm2LEG86INlLR7KiBEXfm6MYSo8aoZ/3q2kynThCKh749Qgm3+0+Ljy1LSTrj85Z0drts4jObx7gl9bmrUYrwKsNXRQbCHjj+EzG4blgcVm1XfxP/c+Ay0XgSkyFTmTvqjawsOSdAk2LhP3YMBl+f+djoEeEkqHwxmxwzP/vVnMGXQteNgqFZQjTYTHxMjWFQC4PQVP4nhb3lnd+rYv5o6IGxo7kfD01X5BzWvNCnFHynfwnXvifrIRtzFHxX3CHq8CMhVxzDlw11FiMfuKWX9960hp8dGeGr+85ybiLBa+crX2zdCD23w/P/Djd8OP88YiImXPtqKyuSQYVBr+P6nsr/Gy4V9DqJvmY7+wPNvAWErLPUgi/NoTNlulaipNNk0GHS6whkMSvyR+LEk3LKaGVB0dgH170fXvgy7PxgqkEtSRJ1ViN1ViPrV2e/3sUTScZ8EVEEekQxOOmPcM+W1fCDymL4QASwf/ely8QTycysys1vh5M/g3NPQu/txZ00FgSjTbtLp94IOmNGwafXSQy0ODgxWrjgazQrn5fqDF8VGTBa4S3/ATs+sGgvuau/kWA0wYHZXRTEB7bYDL6Kh9khNgbZjFtGDqcMW4AMy+yr2qFTxRv+Ee767FK/ixmo3ciQO/9xVYavcuDqE+Ha2WZooeJkRSWheZ1Ya/Lk8bnsZtqcFg7PimYY9oRpUEPXF3iWu5ww6nXcs3k1D/3OTbzwR3doy9/LhRs/DP6Rwo58vmFArjiHziq0Y22Lg6cnHUJBUqpxi38sM4MvFatU+jXcatZnjWVwB4UbbzklnXlx6yfEXubhTxX1NINex2qnhe3dDdyzeTUfurWXP3r9etqcFmXtraxm27aueoLRBCdHZ83KDdwN5jo4VKR5SzKZYdqiOTPRZM2QdIKQdR4bzlfwCbMZl0lxal7uc+lpqBZ85YDeKFgnNS9uEXBDrwu9TsoazzDmi8wrkqHi0bR2bvh62Cvm+lqyF3xVhq8CoRYGwQIMX8RXZfgqBa4+SMbFdy0bVlLBJ0nCPOXsExCP5jxsQ1sthy9nNi2ueEK06JVNjrVyZFZaIUlS6c3C3jvEevzMF/I78XqUSIYKneGrojAGWh1c9sZJ1PeUbtwSGJsTug7lMZ+zmQxZZ/jUgq+cpi15YW2AW/6vMIU681h5zlmBa+/WDvF+5hASxhq45l44+kNRwGlFPIQwUFFMW7TGxRhtqRw+FYOtDib8ESb9kaxPGfWGabCZMCVCyjmqDF8VSwxHjZFtnU72nZrIuD8STzAViJbsbFWRaF4n5gSSaQu36vikOHSCCNhUF4TW2spwrqoiDSlJ51x2OgPhKsNXMUhFM+SY4wt5Kq7LXBL67xQmAZdyxzNsbKvj/GQQb3gms2/EE6bHqsQdVPAM34JCkuDGj4jc1Hxup6kMvsqUdFZRGAMtwjTOa+8pjeGTZYXhS5N0Khtvs6HIWa8ssJn1WWf4poOiobOQM3xzsOMD4OwSLF+yDBENFVjwdTRYcNlMvHwxi4pn0/2iCDv+E+0nVFi6uMFCPClrk3SCcC6NhTLuGmwVe4pcc3ypuAtVCrqCZviqBd8yxq7+Jg4PeZgKzHSh1eyTFcvwxcOZLEPKoXNDxqGNDtGxqzJ8FQi9QTB3hWb4ItUZvopBvmiGRBwinorbdJSENbeI+Y88ss4NWQLYh91hOizKBmMZSTrLjg1vFszd0/+c+xjPZXG7RHExVZSOASWaYcjQIfIX49lZk4KI+sUGe5aks9T5PRVWkyHrDJ9a8C3KDJ8Kg1mYlowegVe+Vdq5YiGxJ6qwtVeSpOwB7CBckOs6hVunVkSFaiKqE8WXxaTRfiSHpBPgWI6Cb0yNu1AZyBXk0lkt+JYxdvU3Isvw9OkZlk/VHzevRIavaVDcps/xjRwSM2GzNg1NdjNmg25xO3dVaIfFmZ/hS8TEBiBfbEMViwerS/wtsjl1hpWCp8I2HSXB7ICuG/IWfBuzFHxXPCHajcpGYRmYtiwY9Ea4/rfgwlMw9FL2Y7xDYp6nGr2ybNHmtGAz6TmRaAM5kT+6JR/8Y+LWNqvgK1PD1mbWE6yEGT4V19wH7Tvgsb+ESO5MuIKosND1dGztrOfseAB3cJYsXqeDTW+Ds48L0yYtUIqviE58HrQzfHMlnU0OMy6biRMj3qxPGfGEBWFSZfiqqCRsandSW2PImONTQ9dbVpppC0Cj4vKYPsc3ckQYtsyyEF9VZ6G93nJ1h65XMiwN+Qu+iNJ9q24GKwOSJGSd2Ri+sCLbqcBNR0nov1PIEt2Xsj6sGrccuiwKvmRSFoZZhgCYHIvm2Fyx2PZuwdDnYvk8Q1XDlmUOSZLob3HwYkAx+ZmvrFMt+NIYvtEyhK6ryMXwqQVfnWWRG8OSBK/9jDA3euYL8z9PRRd8QuL/8uwAdhB51XISDn9P28mU4itEsQXfXEknwOAqR1ZJZzyRZMIfURg+peCrMnxVVAL0Oomb+xvZd2oCWRYZLakMkZUo6bQ4wbFqhuFLJkRMQ8vGOYd+8u5BvvSubYv8BqvQDEt9ftMWlTWqSjorBw292Tv46qZjpcQyqOjbI27zzKFtaKtNMXwTgQixhIxL8i5Lw5ayo6YWtr8Xjv1QyP1mw3u5atiyArC2xcG+KUWJMXV2fifxj4pbZYYvEk8wGYiWbSTDZsru0jkdjOIwGzDql2Ar3LFDMH3P/DN4h+d3jgou+Da3O9FJZJ/ja+yH1dvgkEZZpyLpDEvi81Cj1bTFZJsj6QRY21LLiVHfnGzDyUCUpIwo+FRmsMrwVVEp2NXfxLAnzJlx8YUY9UUw6qXFc51abDQNzjB8k2eEe1PrhjmHdTRYU8O5VVQgrIUYPkVuUTVtqRy4+sBzaW7HtII3HSWhaS3UdcCpX+Y8ZFO7k/OTQTyhGMNu0WyrlX1X9/xeOnb+Fkh6ePZLcx+rMnwrAgOtDi4HdCTNdfMvXAKKSklh+MaU0ZRyzfDZzIaspi3uYBSnbQnHPnb/qXA/fuwv5/f8Cl57bWYDa1uzBLCr2Hy/iNQazZPvqkKRdAYRJnzaGT7rHEknCKfOcCzJxanMYnCGMFEZPgkMK0ctVy34ljlu7hMbiydPijm+MW+EZkcNOt0KlTI2DQqGL5mE0cPivpa5BV8VFQ5LfX7TlrBS8FUZvsqBatwym62p4E1HSZAk6N8D5/bmNKNQjVteHfIw7BGFsC0+fXXP76WjdpWY13n5mxCYnLk/FobgRMWGrlehHapTZ7imWclWnAf8oyDpUt8bNZKhpWwzfDliGUKxpW2O13eLEPZX/huGDxX//Apfe7d2OnnlkpvkLCYNEMZOOoM2lk9h6YKyUK5pLvhM1pySTmDOHJ/qgZGa4TPZ5owLLWdUC75ljo4GKz2NttQc35gvTJNjBco5VTStFV9EzyUxv6czLGr+YRVlgqVBBK/nyulSZ/iqDF/lIJdTZ0id4Vthkk4Qss6oHy4+m/Vh1bjl8JCHYSUo2hR1X72RDNlw40eEEmP/V2buS0UyVBm+5Y61ilPntKERvFfmdxL/KNiaQCc28sNlDF0HUSCEYok5Er7pYGzx5/dmY9fHxdr58B+LeIpiUOkFX4cTXzieUqBlwNYIfbvh0HcLx1Moks6ALIpzi1GjS6dxrksnQH+zA0mC47Pm+EYyGL7Aisrgg2rBtyKwq7+R585OEYknlEHnlVzwpTl1jh6BxrVVc4TlCEs9IM8YfsxGpMrwVRwachV8K3SGD0Q8g96U062zwWaizWlJFXxmgw5dcLI6w5eO5nXCAOeFL890273V0PXuaU5kAAAgAElEQVSVgiaHGafVyHCyvgSGbzzTsMWTtvEuA2yKjX8olllYuIPRpR9/sTjh1k8KJUEeV+CsCE6J+BhTZRqLbO0UhWjWOT6ATW8H3xU4vy//iRTTFp9crGmLIumcVUhbTHq6XTaOD2cWfGPeMDoJXDaTwvBVC74qKgy7+psIxRK8dGGaUW9kZYauq1DZvPHjMw6dVSw/qBviXHN8qqSzGstQOaipFaYKs6MZQtOiMNdr7LouJ5jt0HUjnM49x7exrY4jQx6uuEN010pI8VB1hm82bvw/QsKp5o55qqHrKwWSJDHQ7OB8tFYwdYm5s3IF4R/NjGTwhrEY9dTWlGdNsZpFgTA7mmE6EF3cDL5c2P4boqH28B8X9/tTQ9crVHbY02ijzmLMnscHsPZuce04+J38J1Jm+PxJ8beyFCPplJNZJfmDrQ5OjGYWfKNeoZAz6HWCGVxBDp1QLfhWBK7vdWHQSTxydBRPKLayCz5rg9h0XnhadIZa5zp0VrEMoEpQchV8EdWlsxrLUFFw9c116gy7V6acU0XfHtFgcl/M+vDG9jrOTwY5MeJjwK5sLKozfJnovhlWb4VnvyjkW95q6PpKwkCrneMBu9hcB8YLP2E2/GMph04QWWir6mrKFqukMnz+tIIvkZTxhuPULTXDB2AwwZ4/F7EWB76h/XlqwVeh0OkktnQ4czN8Rgusv1c4+WaRXqYQ9YPBgpKiob3gUyWZsSxOna0Ozk8GCKXFdWQQJrFAleGrovJgNxvY1lXP/74i9PPNK3mGDwTLd/pR8e+qYcvyRKGCL+wFvbkq1600NPRkl3SuRDmnin4lniGH3Eo1bjk15meNTZEsVmf4MiFJguWbOgvHfyIYPqtLbPiqWPZY2+LgfFRRY/iKnOOTZQiMZUg6R8qYwQfCtAUgmLa594RE9VARDB/A4Ouh6yZ4/LMzCpdCqPCCD4Rxy4lRH75wLPsBm+8XBd3xn+Q+SVQYqKh/P6vWWIY8Bd9gqwNZhpNpLN+oN0yzmmEdDVZn+KqoTNzS38hUIAqUT/desWgahKSyeFQZvuUJSwFJZ8RbNWypRLj6RAdfzUmEZbHpKAmNA+DszFnwqcYtAB1mteCrMnxzsO4ecHYpuWND1fm9FYT+FgcjsrIGFBvNEHZDIppZ8HnCtJbJsAVEDh+QkcU3HRT7pSWf4VMhSXDnXwrp81P/qO05IXfFr71bO+uRZTh02ZP9gM4bRfxNPrfOqGDbgtEEJr1OSC61QJ1tzMIeqrFd6QHsGR4YqkvnCkK14Fsh2NXflPr3yi/4lDk+e2t1Vma5Qr1I5QpfD3urhi2VCFefuE2Xda70gk+SYOBuOPs4ROa6zanGLQCrjUrmU3Vdmgu9AW74MFzeD+efrs7vrSD0N9sZlZUmXrHGLf4xcatIOpNJmVFveQs+axaGz60UfM5KYfgA2rYJI5Pn/gXclwofH5queIOoLR1C/ZEzj0+nE9EtZx4D32j2Y6J+MNkJRePa5ZwwoyDIwvB1NlixGPUpp85IPMF0MG0kqurSWUWlYkNbXWrhWtEunQBN68Rt1bBl+UKd+aoyfMsLqWiG9IJvhc/wAay/B+JhOPVw1odVlq/ZoBSEFb4JWzJsfZdoDsQCVYZvBaHBZsKrryOJvvhoBr+yyVcYvslAlHhSLlvoOqQxfGnh625lIMxZKQyfitd8Stw+9heFj10GzbY6i5G+ZnvuOT6ATfeL+c8j38v+eEzIK0OxBBatck7IK+nU6SQGWuwcV7L4xpQMvtTnrurSWUWlQq+TuKmvEbNBt/S5MgsNNZqhKudcvtDphQNnrvD1iK/K8FUi6tcA0swcnywvi01Hyei8QeSEHfth1oc3touCr172gqRf2TONpcBkg+t+U/y7msG3YiBJEk5bDV6Da/4Mn+LSOeotbyQDpDF8aeHr08EKm+FT4eyA638bDn0Hhg7kPi4eEY2TZdBs29rh5OVLbuRcOYNNA8LU6WAOWWc0kJrh0xzJAHklnSBknaqkc8wnPnfNKmFSdemsopLxidcO8qV3biubs1XFwuaCt/2XWBSrWL6wNOQ3bakyfJUHY43YkKjRDNGAmKdd6QWfTg+Db4CTD89kyaXhTdva+MAtPTRIfjG/t9LX4FKw84OwarMwqKhixaDBZmZS31CCpFMUfOUOXYcZhi/dpXNG0llhDB/AzR8TDaZ8YewhhTFbBmvv1s56pgJRLkzmceLcdD+MHIKxY3MfiwYUSWeibJJOEE6dk4Eo474IowrD11JbI37nVZfOKioZnS4ru9e3FD5wJWD9PRlD3lUsQ1jqc8/wRbxgrmbwVSRcfTMMX3j5bDpKxvp7xCZAdQhOw6o6C3/4unXoQpPV+b1CsDXCB5+Ejh1L/U6qKCNcNhNjNBRv2uIfFeHhyhoyojB8ZZ3hM6kzfJmSTr1OKlvWX1lRUwu3/YGIn8rlXqk2S5fB2rutS5njy5XHB7DhzUIdkY3lSzNtKYrhyyPpBOHUCXB8xMuIJ41ZjkeExLQ6w1dFFVVUUQZYqwzfskRDr5jhU+WccHVIGLt3iZ8zh6wTgOBk1aGziqsSLruJK4n64hm+wLho3iqs+KgnjF4n0WgvnxeByaDDpNcRiKZLOqPUWYyVq4ja9m4xvvLIpyEenfv4Mir4+psd2Ex6DlzIM8dnb4K+3XD4u5BMZj6mSjpjCWqKmeFLSToDWR9eqxR8J0Z8jPrCmPQ6IfFVC8SqS2cVVVRRRRlgqc8+w5dMQNRXDV2vVLj6BAMbmFhWm46SoTeKrKwTP8++AQPxO6kWfFVchWiwmbgQqxNrQxY325zwj2aodYY9YZodZvS68hZiVrOeYCST4asoh87Z0Btgz18I+fxLX5v7+DJae/U6ic0dzvwMH8Dmt4vIlvP7Mu9XJJ3hohk+VdI5V4YP4LKbaXKYOT7iY8wbobnWLBoAaoFYLfiqqKKKKsoAS312hi+i5OJUTVsqE6lohtPLao6kLFh3D0Q8cG5v9serDF8VVylcNhOXYmr4ehEsn380FckAahZa+aOlbCbDHIavYjL4cqF/D/TcBk98bmatVbGMCj4QAezHhn2E0v4Gc7D2deK6f+g7M/clkymXzmAsnpLnaoJqupJD0glC1nl8xJv5uVOPr0o6q6iiiirKAEuDCPBOxDPvjwib5Kqks0Lh6hG3k6fTNh1XgaQToPd2MDng6ENzH0smxO+jOsNXxVUIl93MCEocSTHRDP6xzNB1b7ishi0qrCb9nBk+Z6U7mqth7KFp2Pd3mY8ts4JvW2c9iaTM4aEcAewgGLn198DR/51x1oyHABlMtuJNW/QG0JtySjpBFHynRv0Me9JC16sMXxVVVFFFGaFeqMKzLgBhpeCrMnyVibpOYbKQUfAtj01HyTCYYe1dcPyncxsVoWlABmu14Kvi6kODzcSorKwDvhFtT0omhAzallbw/f/t3X90pNdd3/H3VxrNSJrRr5F2tWvvyk78I7ZJHMuYhCSUQBw7PwoJKVDMj+C2CbRQSCmlbdq0jU9Ceii0pYdyCrgmwc3JgbSBkgCBHMckBUISYuzE2HESO8H2rnel3ZW00mpG80Oj2z/ufWZG2pE0kmY8M48+r3N0ZvTM88w8O3dnNN/5fu/9LrcnwzecSrBa3Nx4vStX6Nzq2Evglh+Gz/8GLD1d27625Bc56ZG/k1ED9oe3a8Aeufku32j9qx/3v9cFX/lSheG9zOEDn6XbpqQT4EXHRimub/C3F3IcHVGGT0Sk9aLm1FvLOqOSTmX4ulN/ArIv8HNL1pb8N6gx+8O4oxvf5OeePvMXm7fnLvhLNV2XQ2gynWTOhf/7l5rM8OUXwVWqJZ2rxXVWi+stXaEzktkyh28pX+6+Hnzbec2/g74EfPKe2ra1JV9Z0a2LzmwxmUlx1eQwj+wW8F31Khg7CV/6bf97CPhc1Hh9Lxk+CAHfzhm+SPWLhpIWbRERaZ0oK7R14ZaopFNtGbpXtFJn4aIfxx750NES177Wf4j48pbVOvML/lIlnXIITWZS5BmknMg035phdd5fhpLOuTb04IsM183hK5QrrJUrTKR7IMMHMHocXvkOePz/wqm/8tvWlnqusmL25DgPP7tDA3aAvj64+e/D1/8ULs1XA75yYhjn2HvAlxzetvE6wLVHM0TrAx0bCyWdUYAYsy8yFfCJSGcMbZPhK2gOX9ebvAYWv+GDnMPQkqFectgvpvCVP/QlaZF8lOHToi1y+GRD8JRLHmk+w5fb3HR9Uy+0FkvXzeFbXisDMNbtc/jqveodkDkGn/i3oSXOYs8FfLdeNcH5S0XOhHHe1s13+T54j32kGvAVza+4ub+Szu0DvsGBfl4w5TN50yNbM3wK+EREDi5a6GNr8/VimNPXI3MTDqXJa2G9APOP99yHjpa48U0+O3Hq87VtUYZPc/jkEBodTDDQb1xMTO0hwxcFfL6ks9p0vU1z+HJhDt9S3rdV6fpVOusl07608/QX/KJRPZnh8+f78DO7lHUeuR6umPVN2EO2bQ2ffdvTKp2wa8AHcMMx/1njaLWkM8rwqaRTROTgtpvDV120RX34ulbUmmHxGz33oaMlrn8d9Kc2l3XmooBPc/jk8DEzsukkF/qyzS/asqWkcz4K+NpQ0lmf4VvK+Qxfz8zhi9zyQzD9Ynjg3T5Y7rH33huOj5BK9PHIszs0YI/cfBfMPQqn/xqAtZDha3VJJ8BLTowx0G+1/3dRSacyfCIiLZAaA+trPIevL1FrmirdZ/Ka2vXD0pKhXmoErnkNPPEHvrwKfElnatSv5ClyCGXTKeZdFlbnfP+03ayeg8QQJDMAnF1eY3x4gMG9lu01YTiZIF+qsLHhWF7zGb6eWKWzXl8/3PleuPiM73XYYwHfQH8fN58Y270BO8CLv9evQvrw/QCs4YOxoRaXdAL8g1dezcd+6tvIpEL2MAoQE/H6DKKAT0Q6o6/Pz/9qlOFLjR6uhUB6zcjx2oT2HvvQ0TI3vQlWTsNzD/vf8wvK7smhNpVJ8lxlHDbWIXd+9wOiHnzhvX5uudiWck6g+mE+X66wlPcZvvFey/CB/6Lp2jv89R587711ZoLHn1uhuL5DA3aAzBG/QNbyKQByLirpbH3ANzjQz43H66aQhEbv9MUrRIrXv0ZEesvQRIM5fCtasKXbmdWyfD34oaMlXvQGn4l+4qP+99wFzd+TQy2bTvJ0Kayu3MzCLavz1fl74Es621HOCTCc8oFCvrjem3P46t35Xt8OZ/yqTp/Jns3OjFOqbPD4mZXdd37pD1SvRgFfO0o6L1PKxW6FTlDAJyKdNDTRuA+fFmzpftlDHvANTcALXg1f/qgv68wvaIVOOdSy6STfKIb37mYWbsmdr87fAzi7XGhbhi8dFvvIlSpczJdJJfr2Hjx0i6M3ws8+ATf/wO77dpnZGf/3oql5fC96Y/WzwKUNH5zvfdGW9K4ZvsuU87GbvwcK+ESkk4azjUs6B9WDr+tFC7cctrYM9W56Eyw9DXN/4wM+9eCTQ2wqk+Jvo4Cv6QyfD/jKlQ0WcsW2tGSAWilgrrjOxXypN8s566WnerLkcHp0kCvHh3ZvwA5+Hv83vQWGJ8mX/VzpvZd0DvkAbqfef1uVcrFboRMU8IlIJw1NNF60RRm+7hcFfIc1wwdww3f5hYee+Jjm8Mmhl00nucAYzvp2X6mzUvavmVDSee5SEefa03QdIB3N4Sv5OXw9W84ZA7fMjDeX4QN43X+Ef/QJCmU/52/PC/okh31Pv/Vi88cowyci0mJDWVjb8sZf0By+nnD1t8GVt8Gxl3T6TDonPQVXvQoe/bDvS6g5fHKIZdNJKvSzPnRk95LOaFGXatP1NQCm2zWHL8rwlWKS4ethsyfHee7iGudWdmnADpDKwNR15Es+4Nt7hi9k6vZS1lnKaw6fiEhLDU34jF6lXNtWXFYPvl4wfhJ+7EEYmd593zi76c1w8Vl/XXP45BCbyvis2drg9O4lnVHT9XQU8PkMTLtX6cwV15Xh67BoHt/DzWb5oBrw7b0tQ2itsJeAr5zzje5jRgGfiHROtfl6eON3Tou2SG+54btq1zWHTw6xbNqvpLiabCLDFwV8oaRzLmR72lXSORyVdBb9oi3K8HXOi68cJdnf11w/vmCtXGFwoI++vj22a4oCt72s1KkMn4hIi0Xzv6J5fKVVX2+vkk7pFaPH4eTL/XVl+OQQy6Z91uxi/2QTGb55f1lX0plK9DE21J5ALB1KAVeri7Yow9cpqUQ/N10x2vw8PiBfWt/7Cp1QC9zKueaP0Rw+EZEWqwZ84Zu+QujNowyf9JJveou/HDne2fMQ6aDRwQQD/cb5vkkoLO+cVclFGb4Q8K0UOTY2iNkeMzhNioKFc5eKrG84JpTh66jZmXEePX2RcmWjqf3XSht7L+eEWuBWXmv+mFJeq3SKiLRUFPBFzdeLl/ylMnzSS77lx+BtD/h5jSKHlJmRTSeZ2witWi7tUNa5es5/sRfmWM23sQcfQDLRx0C/8dxF/8FfGb7Omp2ZoFDe4Ktzl5raf628vr++iVGGby8lneWcMnwiIi21NcNXjDJ86sMnPaQ/ASdf1umzEOm4bDrF6UozAd/85qbrK2sca9P8vchwMsGZKOBrU+moNOfWGf9/pKl+fPhFW/a8QifsvaRzvQQb68rwiYi0VHXRli0lncrwiYj0nKlMkqdL4Qu7nRZuWT1fXaHTOcf8SrGtGT7wK3U+t+QDvom0MnyddOX4EEdGUk3P48uXKgcr6Ww2wxcFhsrwiYi0UGoUrL+2aEtxubZdRER6Sjad5Km10FZnp4Vb6jJ8S/kypfWN5yHD18/8Jb8aqObwdZaZMXtynIebzPCtHTjD12TAFwWGWqVTRKSFzHxZ52WLtqgPn4hIr8mmk5zKJ3xJ3I4ZvnPVlgxnQ9P1dmf4hlMJnPPXx4aU4eu02ZkJnl7Is5gr7brvWrlysDl8zQZ80X7qwyci0mJDE3WLtqikU0SkV01lUqwWK2yMHN8+w1cu+GqOkOGbDz34ptuc4UvXBQzqw9d50Ty+LzbRj2+tVGFo4ABtGZot6SzlNh8XIwr4RKSzhrObM3zWB8lMZ89JRET2LOrFVx6ehktzjXfa2pJhuQi0r+l6JGrNMJJKMNCvj7+d9pITY/T3GQ8/s/s8Pt+Hbx8Zvv4E9Cf3keFTwCci0lpDE3Vz+C75cs429WISEZH2iQK+tcGj25d0rkYBny/pnFteo8/gSCbV1nNLp3zAMJ5Wdq8bDCcT3HBshEeayPDte5VO8Nm6vc7hi+GXzgr4RKSzhrKwFr7hK66oJYOISI+ayviAb2XgiG/LsNGgsfbqvL+sNl0vMJVJkWhz1i2d8hm+cc3f6xqzM+N86dQylQ237T4bG47i+sb+5vCBn4+311U6VdIpItJi9XP4Ciuavyci0qOyaZ+lW+qfhI0y5Bcu3ynK8KWjgK/Y9nJOqM3h0/y97nHrzASrxXWeOre67T5r5QrA/toyAAwM7SPDp4BPRKS1hib8t2rrxZDhU8AnItKLopLO8xZ6rDZauKUa8B0BfEnndJtX6ITaHL6JYWX4usXszATAju0Z8iUf8O27pHMoC/kLze1bzfBplU4RkdYa9m/4rF2EwrIyfCIiPWp0MMFAv3GmEt7XG83jW533H8ITPvCaWy60vQcf1ObwqQdf97h6cpjx4QEe2SHgWwsB31ByH6t0AoydgOXnmttXGb7GzCxrZg+Y2ZPhcmKb/e4O+zxpZnfXbX+fmZ0ys+1zuSISb0NRwLcYMnzqwSci0ovMzPfiWw9zsS81CPhy56rz9/KldVYK689LwBdl+MaU4esaUQP2R57dfqXOfHkdOECGb+wELJ+m2oRxJ2U1Xt/OO4EHnXPXAQ+G3zcxsyzwbuDlwMuAd9cFhn8QtonIYTUUSn/WlvwcPpV0ioj0rGw6xbOlEcAaB3yr5+paMvgefO1uug7K8HWrW2cmePLcKstr5Ya31zJ8+w34TkKlCLkmyjpLOUgMQt8+H6uLHTTgezNwf7h+P/A9DfZ5HfCAc27RObcEPAC8HsA59znn3Dbr9orIoRBl+PIhw6eSThGRnjWVSTKf2/BB3UqjOXzztZYMK89jwKc5fF0pmsf3pVONs3zVgG+/i7aMnfCXy6d237eUi2V2Dw4e8E1HAVu4PNpgnyuB+mf5dNgmIuIbr0NYwntdGT4RkR6WTSdZzJVg5Ng2Gb7z1YBvPgr4noeSzkwqKulUhq+bvPTkGGZsW9Z54EVbqgHf6d33Led9G4cY2nUGpJl9EjjW4KZ3NfkYjTooN1FIe9l5/Djw4wAzMzN7PVxEulWU4Vt62l8qwyci0rOqAd+JK+Dis5tvLK76lRDDCp1nl5+/gO+br57gX9xxPa944WTbH0uaNzI4wPVHt2/Ani8/jwFfjDN8uwZ8zrnXbnebmc2b2XHn3FkzOw6ca7DbaeA76n4/AXx6j+eJc+5e4F6A2267bc8Bo4h0qWQG+gZqAZ8ar4uI9KypTIrV4jrrmWMkTn1u843Vpushw7dcYGQwUV1QpZ1SiX5++vbr2v44snezM+P88WNzOOcw25wnWiv5RVv2vUrn0IRvs9BMSWc5H8sVOuHgJZ0fA6JVN+8GPtpgn08Ad5rZRFis5c6wTUQEzPwb8sVn/O/K8ImI9KyoF18+ddQvxlUu1G6MevBFi7asFJ6XpuvS3WZnxlleK/ONC7nLbovm8A3vdw6fWVips5k5fPlY9uCDgwd8vwDcYWZPAneE3zGz28zsPgDn3CLwXuAL4ec9YRtm9otmdhoYNrPTZnbPAc9HRHrRcBaWQsCnOXwiIj1rMgR8KwO+bHPTPL7cloBvufC8NF2X7hYt3NJoHl9U0rnvVTqh1pphN+WcMnyNOOcWnHO3O+euC5eLYftDzrm31+33fufcteHnA3Xb/5Vz7oRzri9c3nOQ8xGRHjU04VfoBPXhExHpYZMZH/At9NUtyBWpZvhqq3Q+Hyt0Sne79kiGkVSiYQP2tVIFM0glDhCyNBvwlfKxncN30AyfiMjBRQu3gEo6RUR6WDadAuA8IeCrb82wOg/WB8OTrFc2OH+pqJJOoa/PuGWmcQP2fKnC8ED/ZXP79mTsJOTOQ3lt5/1ivEqnAj4R6byo+TqopFNEpIdFGb4zG+GLvK0ZvuEp6Ovn/GqRDQfTCvgEmD05zlfmVsgV1zdtz5cq+1+wJRKt1NmoL2S9GK/SqYBPRDpvaLx2XSWdIiI9aySVYKDfOFNIQWIIVrYEfFE55/Lz13Rdut/szAQbDh49vbxpe6Fc2X9Lhkizzde1SqeISBtFzdeTI9B3wDd2ERHpGDPzvfjyJRg9viXDN19dsOX5bLou3e+Wk/6L3639+PKldYb2u0JnpJlefJV1qJS0SqeISNtEc/g0f09EpOdNplMsrJZg5Iotq3SerwZ8Z5XhkzoT6SQvnEpfNo/Pl3QeMOAbvQKwnQO+cmgJoQyfiEibRHP4NH9PRKTnTWaSLORKMHKsNm/KuU0ZvrmVAsn+vmrfPhG/cMsSzrnqtrVSC0o6EylfSrxTSWcp7y81h09EpE2U4RMRiY1sOsliLirpnPPBXuGiL5kLc/jmlwtMj6UOtvqixMrszAQXVkucXqqtpplvRcAHMH5ylwxfCPi0SqeISJsMK8MnIhIXvqSz6Es6K0XIL17Wg+/ssnrwyWa3zvh5fA/X9eMrlFuwSifs3ouvFEo6leETEWmTKMOnFTpFRHreZCZJrlShlPbBHZfO1AK+9BHAL9oyrYBP6rxoeoShgf5N8/jypQpDAy0IV6KAr65cdJNqhk8Bn4hIe6ikU0QkNqJ5ecsJH9xxac7P3wPITOOcY26loKbrskmiv4+bT4zxSF2GL19aZ7glGb6TsF6A/ELj26sZPpV0ioi0x8AwDE/C6IlOn4mIiBzQZAj4FiyU66/UZfgyR1leK1MobyjDJ5eZnZng8TMrFMoVANbKLVilE3bvxacMn4hIm5nBP/4zeMU/7fSZiIjIAU1mfMA37/ycLC6dhdw56BuAoQnm1INPtnHrzDjrG47HzyxTrmxQrjiGD9qHD3bvxVddpVMZPhGR9hk7Edtv1kREDpNsOgXAQgEYnqpl+DJHwYy50INPJZ2y1S3Rwi3PXGQtZPlak+E76S+3C/jUh09EREREpDlRhm9hNWrNcHZzD74Q8KmkU7Y6OjLIiYkhHjm1xFqphQHf0ISfPnJxm5LOmPfha8EsSBERERERbySVYKDfQvP1K3yGzwxGjgNUSzqPjijgk8vNzkzw0NOL5EPA15I+fGZhpc7d5vCppFNEREREZEdmFpqvF+syfOeqGb75lQJTmRTJhD6GyuVunRnn7HKBv72wCsDQQIvyUzv14ivloD8J/QOteawuo1eaiIiIiLSUb75e8lm9/AW/aEt90/WxVIfPULrV7Ixv1fSZp3wLhZZk+GDngK+cj205JyjgExEREZEWm8wkQ0mnL+PEbVQDvrnlAsc0f0+2cdPxUZKJPj7z1AWglQHfSf/FQ7lw+W2lfGzLOUEBn4iIiIi0mC/pLMHoFbWNGd+IfX6loJYMsq1koo8XXzHKV+YuATDYirYMUGvNsPLc5beVc8rwiYiIiIg0y5d0FmsZPoDMNIVyhaV8WRk+2dGtoawTWlzSCY3LOku52LZkAAV8IiIiItJik5kkuVKFwtB0bWNmmvkVtWSQ3c1uCvhauGgLbBPw5WPbdB0U8ImIiIhIi2XTvhff4kYa+sMCLekjdU3Xhzp1atIDZkMDdmhRHz6A0Sv9ZaOAr6wMn4iIiIhI0yZDwLeQK8PIMUgMQWqk2oNPq3TKTq4YH6qW/Q61ag5fIgWZY4178ZW0SqeIiIiISNMmM1HAV/QLt2SOglk1w6eSTtnN7Mw4iT5rbb/G7VozlOO9SmeLimJFRERERLxs2kb6SwAAAA8bSURBVGfwFlZL8JLvh5xfYn9upUAmlWBkMJ4NrqV13vqKq7h6qsVB2NgJmH/88u2leK/SqYBPRERERFoqyvAt5krw7W+rbp9bLjA9qnJO2d0rr5nilddMtfZOx07A1z4BzoFZbXs5rzl8IiIiIiLNGkklGOg333y9zpx68EknjZ2E9TXIL9a2bVRgvaBVOkVEREREmmVmtV58deaXCxwb1Qqd0iHV1gx1C7eU8/5SGT4RERERkeZl00lf0hlUNhzzl4paoVM6p1EvvlII+GI8h08Bn4iIiIi03GQmuamkc2G1SGXDVZfbF3nejZ30l5syfDl/GeNVOhXwiYiIiEjLTaaTvi1DUOvBp5JO6ZDhrO8JqQyfiIiIiMjBZNMpFldrGb6zoQefMnzSMWahF1+jOXzK8ImIiIiING0ykyRXqlAoVwCYDxm+ac3hk07a2ny9FEo6leETEREREWneZNr34ovm8c0tF0j0GVNpBXzSQVsDPq3SKSIiIiKyd9kQ8EVlnb7p+iB9fbbTYSLtNXYSVudhPcwvrc7hU0mniIiIiEjTJjNRhs9/sJ5bKTA9quyedFjUmmHlOX9ZXaVTGT4RERERkaZNhtLNhSjDt1LguFbolE7b2otPq3SKiIiIiOxdNmT4FnMlnHPVkk6Rjtoa8KkPn4iIiIjI3o2kEgz0Gwu5EpeK6+RLFY5phU7ptNEr/WV9hs/6oT/ZuXNqMwV8IiIiItJyZsZkOsXCapH5ZTVdly4xMAiZ6VovvnLeZ/csvosJKeATERERkbbIppMs5kpqui7dpb41QykX6/l7oIBPRERERNpkMpNkIVdibkUBn3SR+oAvyvDFmAI+EREREWmLyXSShVytpPOo2jJINxg76QM+5/wcvhi3ZAAFfCIiIiLSJtl0isXVEmdXCmTTSQYH+jt9SiI+w1fOw9qSX6Uzxk3XQQGfiIiIiLTJZCZJrlThmYWcWjJI96i2ZjilDJ+IiIiIyH5Npv1S918+s8LxMQV80iXqe/GV81q0RURERERkP7Ih4FvKl5Xhk+4xdtJfXjwFpVUt2iIiIiIish+TmVoza2X4pGsMT0JisFbSqQyfiIiIiMjeTaZrq3KqJYN0DbNaawa1ZRARERER2Z9sXYZvWhk+6SZjJ+Dis5rDJyIiIiKyXyOpBAP9BqikU7rM2AlY+Lq/rlU6RURERET2zsyqZZ1atEW6ythJKC776+rDJyIiIiKyP9l0kqGBfkYHE50+FZGaqDUDxD7Dp1eeiIiIiLTNZCbJWrmCmXX6VERq6gO+mM/hU8AnIiIiIm3zjtuv41Kh3OnTENks6sUHsV+lUwGfiIiIiLTNt1yd7fQpiFxu9Mra9Zhn+DSHT0REREREDpeBQUgf9ddjPodPAZ+IiIiIiBw+0Tw+rdIpIiIiIiISM1HApwyfiIiIiIhIzEQLtyjDJyIiIiIiEjNXvQKmXgSDo50+k7bSKp0iIiIiInL43Pjd/ifmlOETERERERGJKQV8IiIiIiIiMaWAT0REREREJKYU8ImIiIiIiMSUAj4REREREZGYUsAnIiIiIiISUwr4REREREREYkoBn4iIiIiISEwp4BMREREREYkpBXwiIiIiIiIxpYBPREREREQkphTwiYiIiIiIxJQCPhERERERkZg6UMBnZlkze8DMngyXE9vsd3fY50kzuztsGzazPzKzr5jZ42b2Cwc5FxEREREREdnsoBm+dwIPOueuAx4Mv29iZlng3cDLgZcB764LDP+zc+4GYBZ4lZm94YDnIyIiIiIiIsFBA743A/eH6/cD39Ngn9cBDzjnFp1zS8ADwOudc3nn3KcAnHMl4GHgxAHPR0RERERERIKDBnzTzrmzAOHyaIN9rgRO1f1+OmyrMrNx4LvxWcKGzOzHzewhM3vo/PnzBzxtERERERGR+EvstoOZfRI41uCmdzX5GNZgm6u7/wTw28CvOOe+sd2dOOfuBe4Nx5w3s2eafHxpvSngQqdPQlpKYxo/GtP40ZjGk8Y1fjSm8dOtY3pVMzvtGvA551673W1mNm9mx51zZ83sOHCuwW6nge+o+/0E8Om63+8FnnTO/bdmTjic05Fm95XWM7OHnHO3dfo8pHU0pvGjMY0fjWk8aVzjR2MaP70+pgct6fwYcHe4fjfw0Qb7fAK408wmwmItd4ZtmNnPA2PAzxzwPERERERERGSLgwZ8vwDcYWZPAneE3zGz28zsPgDn3CLwXuAL4ec9zrlFMzuBLwu9CXjYzL5oZm8/4PmIiIiIiIhIsGtJ506ccwvA7Q22PwS8ve739wPv37LPaRrP75Pud2+nT0BaTmMaPxrT+NGYxpPGNX40pvHT02Nqzrnd9xIREREREZGec9CSThEREREREelSCvhiwMxOmtmnzOwJM3vczP5Z2J41swfM7MlwORG232BmnzWzopn93Jb7Gjezj5jZV8L9vWKbx3y9mX3VzJ4ys3fWbf/zMB/zi2Z2xsx+f5vjX2Bmnw/n9mEzS4btM+Hf8oiZPWpmb2zV89RLenRMPxSOf8zM3m9mA2H7D4exfNTM/tLMXtqq56mXdNmY3m5m0dzpvzCza7c5/pvN7G/C8b9iZha232Nmz9X9v9DrtHfG9H1mdsrMVrdsv8rMHgyv00+bn2d/6HTZmL4mjOljZna/+TZWjY5/gTX+e/qzZvblMKYPmllTy7fHTY+O6U+FY52ZTW257TvC6/xxM/t/B31+elWPjutvmtmXwmvyI2aWCdtT4bX7VHgtX92aZ6mOc04/Pf4DHAduDddHgK/hF8P5ReCdYfs7gf8Urh8FvgV4H/BzW+7rfuDt4XoSGG/weP3A14EXhn2+BNzUYL/fBX50m3P+38Bd4fqvAz8Rrt9bd/0m4OlOP78a06bH9I34ebmG760ZjeMrgYlw/Q3A5zv9/B72MQ2PfWO4/pPAb21zzn8FvCKM6R8Dbwjb79l6Tofxp0fH9FvDea9u2f5/gLvD9dcAH+z083uYxxT/hfwp4Pqw33uAt21zztv9Pf1OYDhc/wngw51+fjWmTY/pLHA18DQwVbd9HPgyMBOda6efX43rnsZ1tO76f607z58Efj1cv6sdr1Vl+GLAOXfWOfdwuH4JeAK4Engz/j8x4fJ7wj7nnHNfAMr192Nmo8C3A78Z9is55y42eMiXAU85577hnCsBvxMeq/6+RvAfGi7LBpmZhds+svXcAAeMhutjwJkmnoLY6bUxDff9cRfgA4UTYftfOueWwm6fi7YfNl02pru+zsz3Vh11zn02jOn/ovY6FXpvTMN9f845d7bBTTcBD4brn2LL6/+w6KIxnQSKzrmvhf0eAL5368E7/T11zn3KOZcP2/XeS2+MabjvR5xzTze46YeA33POPRud6+7PQDz16LiuhMc0YAj/vs2Wc/4IcHvYp2UU8MVMSAPPAp8HpqM/7OHy6C6HvxA4D3zAfEnlfWaWbrDflfhvMyKnw7Z6bwEejP5zbzEJXHTOrTc4/h7gR8zsNPBx4Kd3OefY65ExrT/fAeCtwJ80uPlt+EzRodYFY/p24OPhdfZWQkudBsef3uZ4gJ8KZSnvj0pmDrMeGdOdfInah5S3ACNmNrnH+4iVDo/pBWDAzKJGz98HnGxw/E5/T+vpvZeeGdOdXA9MmC+7/msz+9E9Hh9LvTSuZvYBYA64AfjvW+87vJaX8a/tllHAFyOhFvh3gZ/Z7UP5NhLArcCvOedmgRw+HX7ZQzXYtnW51x/El/U1PNUdjv9BfCnSCXyJ4AfN7ND+P+2hMa33P4A/c879+aYHMPtO/IeOf93EfcRWl4zpPwfeGF5nH8CXluzl+F8DrgFuAc4C/6Xps4+hHhrTnfwc8GozewR4NfAcsL7zIfHV6TENWfW7gF82s78CLtF4PHZ97zazHwFuA36p+dOPnx4a093O4ZuBvwu8Dvj3Znb9Hu8jVnptXJ1z/xC4Ap+R/IGd7rvpf0ETDu0H6bgJWZXfBT7knPu9sHk+lGVF5Vm7pf5PA6edc58Pv38EuDVMjI0WZ/gnYb/6by9OUFc+FL4VfhnwR3XbPhGOvw//bch43aTW+uPfhp+PgHPus8AgsGnC8mHRY2MabXs3cAT42S3/lpuB+4A3O9+/81DqhjE1syPAS+uO/zDwSjPrrzv+PeH4E1uPB3DOzTvnKs65DeB/4v9vHEo9Nqbbcs6dcc79vfCB511h23Izz0HcdMOYgv8b6Jz7O865lwF/BjwZHr/Zv6eY2Wvx4/km51xx789GPPTYmO52Dn/inMs55y6E+ziUC6FB746rc66Cf5+Oqiqq9x1ey2PA4l6ei90cqPG6dAczM3zt8RPOufpvdT8G3I0v7bkb+OhO9+OcmzO/etuLnHNfBW4HvuycO4X/Jj96vARwnZm9AP8t8F34uvLI9wN/6Jwr1N3367ac86fwae/f2XJuz4bH/S0zuxEf8J1v6omIkR4d07fjv3G8PQQC0fYZ4PeAt9bVuB86XTSmS8CYmV0fxuOOcE6V+uPDfVwys2/Fl8n8KKH8xMyOu9o8sLcAj+39Gel9vTimO/xbpoDF8Nr9N8D7mzkubrpoTDGzo865c2aWwldGvC/cd1N/T81sFvgN4PXuEM/16sUx3cFHgV8Nj5EEXg78cpPHxkqvjWs432ucc0+F698NfGXLOX8W/1r+05A5bB3XBSvt6OdgP8C34VO/jwJfDD9vxNf/Poj/puFBIBv2P4b/NmEFuBiuj4bbbgEeCvf1+4TVFRs85hvxKyJ9HXjXlts+jf8Ds9M5vxC/sMdT+NXhUmH7TcBn8PNJvgjc2ennV2Pa9Jiuh2Oj8/0PYft9+A+k0faHOv38HvYxxQdpfxNeZ58GXrjN8bfhg7mvA78KWNj+wXD8o/g/VMc7/fxqTJse018Mj7sRLu8J278vnO/Xwms21ennV2PKL+HLvr6KL1fb7py3+3v6SWC+7t/xsU4/vxrTpsf0HeFx1/FZpPvqbvuX+JU6H9vpPuL+02vjiq+q/Az+ffox4EN1jz8YXrtPhddyw/fvg/xEf7xFREREREQkZjSHT0REREREJKYU8ImIiIiIiMSUAj4REREREZGYUsAnIiIiIiISUwr4REREREREYkoBn4iIiIiISEwp4BMREREREYkpBXwiIiIiIiIx9f8BUd0AK+pnbJcAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "result = pd.DataFrame({'simple regression':simple.predict(),'fama_french':fama_model.predict(),'sample':df.amzn},index = df.index)\n", + "plt.figure(figsize = (15,7.5))\n", + "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','simple regression'])\n", + "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','fama_french'])\n", + "plt.legend()\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure()\n", + "simple.resid.plot.density()\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m print 'residual mean: ', np.mean(fama_model.resid)\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "print 'residual mean: ', np.mean(fama_model.resid)\n", + "print 'residual variance: ', np.var(fama_model.resid)" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKcAAAJQCAYAAABbxwfmAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvNQv5yAAAIABJREFUeJzs3X2UZGd9H/jvMzONaGGbESC8VoMt2SbDgcholl6bzWx8QEkYHAzMERDwEgfvkkOchLPB9pmT0UlsXkJWQ2YTcrLxJsFxvHaMbWGsHYsV8QR7hPdEaxxGbmFZtuZYvKvljQdLTQxqi57Rs39M1ainp967qm5V9+dzzpzpunWr6ql7b93u+63n+T2l1hoAAAAAaMKephsAAAAAwO4lnAIAAACgMcIpAAAAABojnAIAAACgMcIpAAAAABojnAIAAACgMcIpAAAAABojnAIAAACgMcIpAAAAABqzr+kGzILnPOc59frrr2+6GQAAAAA7xr333vvlWuu1/dYTTiW5/vrrc+bMmaabAQAAALBjlFK+MMh6hvUBAAAA0BjhFAAAAACNEU4BAAAA0BjhFAAAAACNaTScKqW8qpRytpTyUCnlWIf7v7eU8jullPOllDdsue+tpZQ/bP1766blLy2l3N96zn9RSinTeC8AAAAADK+xcKqUsjfJTyb5viQvSvIDpZQXbVnti0l+KMkvbHnss5K8K8n3JPnuJO8qpVzTuvtfJXl7khe0/r1qQm8BAAAAgG1qsufUdyd5qNb62Vrr15P8UpLXbV6h1vr5WuvvJnlyy2MPJ/l4rfXRWutjST6e5FWllG9J8k211t+qtdYkP5fkyMTfCQAAAAAjaTKcWkrypU23H24t285jl1o/933OUsrbSylnSilnzp07N3CjAQAAABifJsOpTrWg6jYfO/Bz1lo/WGtdrrUuX3vttQO+LAAAAADj1GQ49XCS52+6/bwkj2zzsQ+3fh7lOQEAAACYsibDqU8leUEp5YZSytOSvDnJnQM+9lSSV5ZSrmkVQn9lklO11j9K8qellJe1Zun7G0l+dRKNBwAAAGD7Ggunaq3nk7wjF4OmP0jy4VrrA6WU95ZSXpskpZT/rpTycJI3Jvk3pZQHWo99NMk/ysWA61NJ3ttaliR/O8m/TfJQks8k+Q9TfFsAAAAADKFcnNRud1teXq5nzpxpuhkAAAAAO0Yp5d5a63K/9Zoc1gcAAADALiecAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGiOcAgAAAKAxwikAAAAAGrOv6QYAAMC0nVxZzYlTZ/PI2nqu27+Yo4cP5MjBpaabBQC7knAKAIBd5eTKam694/6sb1xIkqyurefWO+5PEgEVADTAsD4AAHaVE6fOXgqm2tY3LuTEqbMNtQgAdjfhFAAAu8oja+tDLQcAJks4BQDArnLd/sWhlgMAkyWcAgBgVzl6+EAWF/ZetmxxYW+OHj7QUIsAYHdTEB0AgF2lXfTcbH0AMBuEUwAA7DpHDi4JowBgRhjWBwAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANKbRcKqU8qpSytlSykOllGMd7r+qlHJ76/7fLqVc31r+llLKfZv+PVlKual13ydaz9m+77nTfVcAAAAADKqxcKqUsjfJTyb5viQvSvIDpZQXbVntbUkeq7V+Z5IPJHl/ktRaP1RrvanWelOSH0zy+VrrfZse95b2/bXWP574mwEAAABgJE32nPruJA/VWj9ba/16kl9K8rot67wuyc+2fv5Ikr9USilb1vmBJL840ZYCAAAAMBFNhlNLSb606fbDrWUd16m1nk/ylSTP3rLOm3JlOPUzrSF9P94hzEqSlFLeXko5U0o5c+7cuVHfAwAAAADb0GQ41Sk0qsOsU0r5niSP11p/b9P9b6m13pjkL7b+/WCnF6+1frDWulxrXb722muHazkAAAAAY9FkOPVwkudvuv28JI90W6eUsi/JM5M8uun+N2dLr6la62rr/z9N8gu5OHwQAAAAgBnUZDj1qSQvKKXcUEp5Wi4GTXduWefOJG9t/fyGJKdrrTVJSil7krwxF2tVpbVsXynlOa2fF5J8f5LfCwAAAAAzaV9TL1xrPV9KeUeSU0n2Jvl3tdYHSinvTXKm1npnkp9O8u9LKQ/lYo+pN296iu9N8nCt9bObll2V5FQrmNqb5NeT/NQU3g4AAAAAIyitjki72vLycj1z5kzTzQAAAADYMUop99Zal/ut1+SwPgAAAAB2OeEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQGOEUAAAAAI0RTgEAAADQmEbDqVLKq0opZ0spD5VSjnW4/6pSyu2t+3+7lHJ9a/n1pZT1Usp9rX//etNjXlpKub/1mH9RSinTe0cAAAAADKOxcKqUsjfJTyb5viQvSvIDpZQXbVntbUkeq7V+Z5IPJHn/pvs+U2u9qfXvhzct/1dJ3p7kBa1/r5rUewAAAABge/Y1+NrfneShWutnk6SU8ktJXpfk9zet87ok7279/JEk/7JXT6hSyrck+aZa62+1bv9ckiNJ/kPPlpw9m7z85SO9CQAAAABG1+SwvqUkX9p0++HWso7r1FrPJ/lKkme37ruhlLJSSvnNUspf3LT+w32eM0lSSnl7KeVMKeXMxsbG9t4JAAAAACNpsudUpx5QdcB1/ijJt9Za/6SU8tIkJ0spLx7wOS8urPWDST6YJMvLyzWf+MSg7QYAAACgnwHLgDfZc+rhJM/fdPt5SR7ptk4pZV+SZyZ5tNb6RK31T5Kk1npvks8k+XOt9Z/X5zkBAAAAmBFNhlOfSvKCUsoNpZSnJXlzkju3rHNnkre2fn5DktO11lpKubZVUD2llG/PxcLnn621/lGSPy2lvKxVm+pvJPnVabwZAAAAAIbX2LC+Wuv5Uso7kpxKsjfJv6u1PlBKeW+SM7XWO5P8dJJ/X0p5KMmjuRhgJcn3JnlvKeV8kgtJfrjW+mjrvr+d5P9MspiLhdB7F0MHAAAA6OLkympOnDqbR9bWc93+xRw9fCBHDnYsb82ISq0dSzLtKsvLy/XMmTNNNwMAAACYISdXVnPrHfdnfePCpWWLC3tz2y03CqgGUEq5t9a63G+9Jof1AQAAAMysE6fOXhZMJcn6xoWcOHW2oRbtTMIpAAAAgA4eWVsfajmjEU4BAAAAdHDd/sWhljMa4RQAAABAB0cPH8jiwt7Lli0u7M3RwwcaatHO1NhsfQAAAACzrF303Gx9kyWcAgAAAOjiyMElYdSEGdYHAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGOEUwAAAAA0RjgFAAAAQGP2Nd0AAABgeCdXVnPi1Nk8srae6/Yv5ujhAzlycKnpZgHA0IRTAAAwZ06urObWO+7P+saFJMnq2npuveP+JBFQATB3DOsDAIA5c+LU2UvBVNv6xoWcOHW2oRYBwOiEUwAAMGceWVsfajkAzDLhFAAAzJnr9i8OtRwAZplwCgAA5szRwweyuLD3smWLC3tz9PCBhloEAKNTEB0AAOZMu+i52foA2AmEUwAAMIeOHFwSRgGwIxjWBwAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANEY4BQAAAEBjhFMAAAAANGZf0w0AYHc7ubKaE6fO5pG19Vy3fzFHDx8wNToAAOwiwikAGnNyZTW33nF/1jcuJElW19Zz6x33J4mACgAAdgnD+gBozIlTZy8FU23rGxdy4tTZhloEAABMm3AKgMY8srY+1HIAAGDnEU4B0Jjr9i8OtRwAANh5hFMANObo4QNZXNh72bLFhb05evhAQy0CAACmTUF0hmJWLWCc2ucP5xUAANi9hFMMzKxawCQcObjkHAIAALuYcIqB9ZpVy4UlAMBk6cEOwE4lnGJgZtUCYLtcXMNo9GAHYCdTEJ2BmVULgO1oX1yvrq2n5qmL65Mrq003DWZerx7sADDvhFMMzKxaAGyHi2sYnR7sAOxkhvUxMLNqAbAdLq53PsM2J+e6/YtZ7fBZ0YMdgJ1AOMVQzKoFwKhcXO9saiJN1tHDBy7bvoke7ADsHIb1AQBTYXj4zmbY5mQdObiU2265MUv7F1OSLO1fzG233Cj4A2BH0HMKAJgKw8N3NsM2J08PdgB2KuEUADA1Lq5nwyRqQxm2CQCMyrA+AIBdpF0banVtPTVP1YY6ubK6rec1bBMAGFWj4VQp5VWllLOllIdKKcc63H9VKeX21v2/XUq5vrX8r5RS7i2l3N/6/+ZNj/lE6znva/177vTeEQDAbJtUbSg1kQCAUTU2rK+UsjfJTyb5K0keTvKpUsqdtdbf37Ta25I8Vmv9zlLKm5O8P8mbknw5yWtqrY+UUv58klNJNv/l85Za65mpvBEAgDkyydpQhm0CAKNosufUdyd5qNb62Vrr15P8UpLXbVnndUl+tvXzR5L8pVJKqbWu1FofaS1/IMnTSylXTaXVAABzrFsNKLWhAICmNBlOLSX50qbbD+fy3k+XrVNrPZ/kK0mevWWd1ydZqbU+sWnZz7SG9P14KaV0evFSyttLKWdKKWfOnTu3nfcBADA31IYCAGZNk+FUp9CoDrNOKeXFuTjU729tuv8ttdYbk/zF1r8f7PTitdYP1lqXa63L11577VANBwCYV2pDAQCzprGaU7nYU+r5m24/L8kjXdZ5uJSyL8kzkzyaJKWU5yX5v5L8jVrrZ9oPqLWutv7/01LKL+Ti8MGfm9SbAABm08mV1Zw4dTaPrK3nuv2LOXr4gACmRW0oAGCWNNlz6lNJXlBKuaGU8rQkb05y55Z17kzy1tbPb0hyutZaSyn7k9yV5NZa6z3tlUsp+0opz2n9vJDk+5P83oTfBwAwY06urObWO+7P6tp6apLVtfXcesf9Obmy2nTTAADYorFwqlVD6h25ONPeHyT5cK31gVLKe0spr22t9tNJnl1KeSjJjyY51lr+jiTfmeTHW7Wl7iulPDfJVUlOlVJ+N8l9SVaT/NT03hUAMAtOnDqb9Y0Lly1b37iQE6fONtQiAAC6aXJYX2qtH0vysS3LfmLTz3+W5I0dHve+JO/r8rQvHWcbAYD588ja+lDLAQBoTpPD+gAAJuK6/YtDLQcAoDnCKQBgxzl6+EAWF/ZetmxxYW+OHj7QUIsAAOim0WF9AACT0J6Jzmx9sDOZjZNJcnzB9AmnAIAd6cjBJRcTsAO1Z+NsT3rQno0zic882+b4gmYY1gcAAMwNs3EySY4vaIZwCgAAmBtm42SSHF/QDOEUAAAwN8zGySQ5vqAZwikAgF3o5MpqDh0/nRuO3ZVDx0/n5Mpq002CgZiNk0lyfEEzFEQHANhlFPxlnpmNk0lyfEEzSq216TY0bnl5uZ45c6bpZgAATMWh46ez2qF+ytL+xdxz7OYGWgQA7ESllHtrrcv91jOsDwBgl1HwFwCYJYb1AQDsMtftX+zYc0rBX7o5ubJqmBMAE6PnFADALqPgL8No1yhbXVtPzVM1yhTRB2Bc9JwCACZOr4vZMs6Cv/btznfi1NlLxfPb1jcu5MSps/Y1AGMhnAKAGTfvF/9mhpusUY+PIweXtr397dv+5v3zm4y/RtlO2CYAjJdhfQAww3bCcJpevS7YnqaPD/u2t6b3z7h0q0U2So2ynbJNABgv4RQAzLCdcPFvZrjJafr4sG97a3r/jEu/GmUnV1Zz6Pjp3HDsrhw6frpn0LRTtgmTN8xxBcw/w/oAYIbthIt/M8NNTtPHx6zv26aHjzW9f8alV42yYYd27pRtwmQZMgy7j55TADDDxjmcpinjnhnOt+lPafr4mOVZ/2Zh+FjT+2ecjhxcyj3Hbs7njr869xy7+bLAapieUDtpmzA5etjB7iOcAoAZNssX/4M6cnApt91yY5b2L6YkWdq/mNtuuXHkmeGaDhxmyajHx7gCvnHu23GbhYvbnfD57WfYnlC7YZuwfXrYwe5jWB8AzLBew2nmyThmhktMab/VKMfHuIfLjGvfjltTF7dbhxK+/qVLufvBc3P9+e1l2KGdO+WcxmTN+pBhYPyEUwAw42b14r8Jvk2/0rDHx24J+Jq4uO0U/P3Kvasz05tsEo4ePnDZe07694RyTmOrraHuK154bX7l3tWhjitgvhnWBwDMDfVqtm+3BHxNDB+bhaGE0zbLQzuZD52Ga//Kvat5/UuXHFewi+g5BQDMjVF6aXC5cfcoanpGvG6aGD62W4K/rfSEYju6hbp3P3gu9xy7uaFWAdMmnAKAXWxWg4Vu1KvZvnEGfOOuXzXu43HaoYk6OTC83RrqApcTTgHALjXuYGFa9NLYnnEGfOOsX/UPT96fD33yi6mt27MWdA1Czz4YnlAXSIRTALBr7ZbC2FxpXAHfuHo8nFxZvSyYahv1eGwqeNWzD4Yn1AUS4RQA7FqGUrBd4+rxcOLU2SuCqbZRjscmg9fd1LNv3oYFbzbPbd9phLpAIpwCgF3LUAq2a1w9HnoFUKMcj5MKXucp0Jh0Wzv1Tnvn7fflPR99IO96zYtndrsk8zukeSfbTaEu0JlwCgDGYJ4uWtsMpdjZpnFMbu7xsLq2nr2lXOqhtPn+froFpSUZ6XicRPA6qUBjEvtpGuFLp95pSfLY4xszE/R027aGNAPMnj1NNwAA5l37QnB1bT01T10InlxZbbppPR05uJTbbrkxS/sXU5Is7V/Mbbfc6OJsB5jmMXnk4FKOHj6QxYW9uVAvDs4b9vXaj9+sJHnLy751pOOx0/NtN3jtFWiMalL7aRJt3apXL7Rxv9bJldUcOn46Nxy7K4eOnx5o+/TatoY0A8wePacAYJvm+Vt4Qyl2pmkck5t7pewp5VIwNcrrjbvmzCRq2Ewi0JjUfppG+NKtd9q4X2vUXmC9tq0hzQCzRzgFANvkW3hmzaSPya2BwdZgapTXG3dQOu7nm0SgMan91K2te0rJyZXVsWyXTsOCt7ZhHEYN8Hpt2w+86SZDmgFmjHAKALbJt/C7w9b6Na944bW5+8Fz2+qZM6m6UJM+JrvVG5rU682CSdRom9R+6hYcXah1bPWg2o9/950PZG1944r7v/bE+bEEYaMGeL22rdnhAGaPcAoAtklh8Z2v09Cin//kFy/d3x5qdOYLjw4cWE2yaPV2j8l2aNYucn6h1ixtej+D9OwZtZj5rOoWaCTJoeOnRwo5JnXuaL/+j33409sabjnI6xw5uJSTK6t5z0cfyGOPPxVSra2PpzD6qAFev227nZ518zgBBsCsK7VLN+zdZHl5uZ45c6bpZgAwx1ys7GyHjp/uWV+nrSTZ/JfV4sLerkXmuz3n0v7F3HPs5m209qJRj8mtodlm7ffTDq76+fzxV4/U9mkYx2e207bqtc8n1Y5ubjh2Vzr9pV+SfG7M+2ZSx/N2tvG4tu3m59l/9UK++mfns/HkU1t22H0OsJuUUu6ttS73XU84JZwCAHrrdpE/iG4X59MMDobRL4hr96DqVW8oSfYvLuQZV+1rJLDtF0p0CjzaswO+78iNA7/OpAPG7Zpm+yZ5PDcZ/vcKazeblX0OMGsGDacM6wMA6KPfzGS9dBsCN6u1yvoN2Xtkbf2yIW6ra+tX9Bhb2FPyta+fv1SLaJxDFvsZZLhkp5pZNcmHPvnFLH/bswZu46xPhjDNIceTPJ6bnFV00Ppqs7LPAebVnqYbAMDudHJlNYeOn84Nx+7KoeOnc3JltekmQVdHDx/I4sLekR7b7eK803POQq2yfmFC+/4jB5dyz7Gb8/njr84H3nRTlvYvpuRiD5JvePq+bFy4stbRj3340xP/rPea3a2tW5BQW4/vZfO5a08pHde5bv/iTJzjjhxcym233HjZvpnU8LNZPZ63a9DQqelQmcmYhc8x7BZ6TgEwdZMsBA2T0KkY9mNfeyKPbzzZ83G9Ls5ndcawXkP2ur2fzYWxT5w6e1lh7M3GOVtcN4P0ZurVE65XD7mt566txcaTi9voFS+8dqBz3DSGq02r19GsHs/bNUivyZ0QwnElf6vAdKk5FTWnAKZt1uu0wCD61aHaW0r+6V97SeMXMaMEIP1m6+v2mEFq8yST/ax3O79sroH1zMWFS0MOt9pbSj5z218d6rn3lpIna720fbsVjN/8vsdRTH0SZn1yh2m3r9N+Wthb8oyn7ctX1jdmchsxHv5WgfFQcwqAmTXrdVqYf9O4gO3Vo2IWQoZk9G/+R+ltM2htnmSyn/Wjhw/k6Ec+fdmwwj0ll9XA6hZMJZ17Q7V1a/eTtV5W9PtHbr+v7+N7DT9s6riZ9Z4iTbRvp/YIoz9/q8B0CacAmLpZLQS92816j4lBTesCttvwt2uuXsi7XvPimdh23QKQ93z0gbG3b5gLtq2f9bEfe1vypSdr8uSFwUYLLPU4Dw167uq13uZeaZ2M+8J3mG07i4HZZk21r8mC7DTH3yowXQqiAzB1O7Vw7jxrBzqra+upeSrQmbfirydXVvNjH/5034LY49Cp2PQ/f9NNWfmJV87MhWy3oOOxxzfGvm+7XbBtLRm+9bM+7mPvxKmz2XhytLIV/c5Dg567uq3XrkXVq4bROC98h9223Y6X1bX1mTgX6MnCNPlbBaZLzyl2lJ3yrT/sdIZJzJ5Z7zExiPaFeLdhWZO4gB1nj4pJ/A7rNfRw3Pu2U0+yxYW9ef1Ll3L3g+e6vq9xH3vD7OfNdagG2eaDnru6rddv6OO4L3yH3ba9jpdZGN6nJwvT5G8VmC7hFDvGrNdJAC5nmMRs2Qk9Evpd+M/yBWyn32FHf/nTec9HH8ja46MXXT56+EDeOUD9o35tG+TibNQLuXEfe90CjJLLR/uVXKw99Yyr9uUDb7pp4G076Lmr03rdalEl6VtwfhTDbtteMzXOQljdLQDVk4VJ8bcKTI9wih1jJ3zrD9CUndAjoVeYsfkCdhZ72Xb6HbbxZM1jj18s3D3qFy5HDi7l3Xc+0LEA+CD7dtgvfka5kBv3sdevB9fq2vplQdU0v8zq9l6vuXphIrN/9du2nT4Lt91y47YDzU7G8bnTkwVg51Jzih1jJ3zrD9CUnVBbo1uYsbeUSzPnzWptrUF+V41aN+vdr33xyPu2V0H1Q8dP54Zjd+XQ8dPb2n6veOG1Qy3vp1MtsNtuuTHvO3Jj7jl2c5b2L26tlz6RmmSdHD18IAt7t1bhSr76Z+cncgz2+lx3+ywk3YvCjxoYjvNzd+TgUu45dnM+d/zVuefYzYIpgB2iZ8+pUsp/2+v+WuvvjLc5MLqd8K0/sDPMYs+cfnZCj4RuPWbawVSy/V62k9q3vWr9bDbKFy7b2be9Cqpvt1dX290Pnuu4/Oc/+cXc/eC5kXvYdHtMk19mdevJtvFknUhP7177/tDx010/C+MePqd3++4zj78HgWb1G9b3T3vcV5OMv/8xjEgdAmAWzHP9u3mvrTFICNNvNrJe7/8fnrw/H/rkFycyHKxXrZ/NRv3CZdR9O2hoNmrQcHJltefzT+Lz09SXWe2L9U5DLJPJhWPd9n2vkG7cYbXe7bvLPP8eBJrTM5yqtb5iWg2B7doJ3/oD82+eegg0/c32JF6/Xwgz6mxkJ1dWLwum2sa1b7f+Dnvm4kK+9vXz2bjw1CtO4wuXrfvkFS+8Nr9y72rf0CwZPmhoX8D2s75xIe+8/b5LPXomEQROettuvVjv5Lr9i1P9TPYL6cYZVuvdvrvM0+9BYHYMXBC9lPLnk7woydPby2qtPzeJRsGo5v1bf2D+zUsPgaa/2W7q9UedjezEqbNXBFNt2923WwOJ9sxx0w4PO+2TX7l39VIh8XY7vvbE+ZELrG/Wb3bFrcZ1jEzyy6xu+6zfe11c2JtXvPDaqX4mphnS6d3eW9NfFIzbvPweBGbLQOFUKeVdSV6ei+HUx5J8X5L/lEQ4BQCbzEsPgaa/2W7q9dvP3Ws2sk4Xir0uqrazb/uFdNMKCk+cOtvxuF3fuJC7Hzx32UxynXoBjRI0DDJcsFN7xtVTbdzbtte+7HX8LLWOsWE+E/M2853e7d11O27OfOHRy0Lhedpe8/J7EJgtg/acekOSlyRZqbX+T6WUb07ybyfXLACYT/PSQ2C732xv9+K46aLU3cKYZy4udLxQfObiQsfeQiXZ1r5tOiQ8ubKao7/86Ww82a1f2OXbgcDHAAAgAElEQVT7pL3f1zcuZG8puVDrpXBl0PaeXFnNu+98YOQ2N937YpjeUe192e1ifWn/4qXg70d6BKZbX//oRz59acjn6tp6jn7k00mG72E1zR7nerd31u24mVR9u2mYl9+DwGwZNJxar7U+WUo5X0r5piR/nOTbJ9gugCQ7r6s7O9+89BDYzjfb4xiS1/Q3690unkpJxwvFpy/syeLC3svuK0ne8rJv3da+bXr4y7vvfKBnMJU8tU+27vcLtV664Oy1DTafxzvV0hpWk70vRukd9cjaej7wppv6XqwP+pl4z0cfuGL7bVyoec9HH5i580zi93g/3Y6bSdW3m4Z5+T0IzJY9A653ppSyP8lPJbk3ye8k+c/bffFSyqtKKWdLKQ+VUo51uP+qUsrtrft/u5Ry/ab7bm0tP1tKOTzocwLzo30RsLq2npqnLgJOrqw23TTo6cjBpdxz7OZ87virc8+xm2fyD/Kjhw9kcWHvZcsG/Wa7Vw+Rabz+OBw5uJTbbrkxS/sXU3KxB8ttt9yYtcc7z6S29vjGFet/4E035X1HbtxWO7oFLdMKYLrNHNe2eZ+Mst+3nsfX1je2FUwt7CmN9r7o1zuqk+v2L3Y93jafGwb9TDzW5RjttrxJfo/3N8xnveleg8OYh9+DwGwZqOdUrfXvtH7816WUX0vyTbXW393OC5dS9ib5ySR/JcnDST5VSrmz1vr7m1Z7W5LHaq3fWUp5c5L3J3lTKeVFSd6c5MVJrkvy66WUP9d6TL/nBOZE08NdYCfbzjfb4+jtMwvfrHcaZtRtuF87YBh3+17xwmuvmAVwVoa/bB2uN8p+H7boeT/f8PR9Ey8Kv/WYTJ46TnsVxe/XO6rf8TPIZ2LeQh2/x/vr1Iuz5MqeU4maTcDOVmrt/+1VKeV7Oy2vtf4/I79wKf99knfXWg+3bt/aes7bNq1zqrXOb5VS9iX5/5Jcm+TY5nXb67Ue1vM5O/nGb/zG+tKXvnTUtwJMyCc/+ydd73vZtz97ii0BNlv54lqeOH9l4HDVvr05+K37G2jR+Hz5q0/ks+e+lic3/X20p5R8+7XPyHO+4aqJv1aSfPM3PT03POcZY32tbs584bGcv/DkFcv37d2T5W+75rJlo+z3XufxrUop2VtKzj95ZXs2G/b8/+WvPpEvPbqeJ85fyFX79ub5z1q8Yl9++atP5PNffvyK1y6lJEn6/b3c3gaDvNawNj9nL/v27Mny9df0XGfapvl7fBLbflq2tn3/1Qs596dPTOU8BDBpv/mbv3lvrXW533qD1pw6uunnpyf57lwc3ndz59UHspTkS5tuP5zke7qtU2s9X0r5SpJnt5Z/cstj21+/9HvOJEkp5e1J3p4kV13lJA+z6Kp9e7teCAHNef6zFjsGOM9/1vx/q9++8JvGRe6XHl2/IphK0nVo4SCGvUC//tlX5zPnvnZZ+FJKyfXPvvqKdZ//rMWO6/ba793O41vt27sn1z/76ktt7RaEJU8FaoO8v60B4BPnL+Sz576W5Kl9/eWvPnHF+2ob5Evczcf+c77hqrEeK90CzK1KKbn+OVfus6ZN6/f4IPt5lnU6br7x6fvmNmwDGMWgw/pes/l2KeX5Sf7JNl+7dHqpAdfptrxTDa2Ov81rrR9M8sEkWV5erp/4xCe6NhRoRrfpyrfW6QCmT5Hj7bvh2F0d/0gpST5x/NVDP1/7nHnNpnPm15Icedm3ZvnbntV1fw26LzvN7Lewp+R9b3xJ133f6Ty+sKfkG56+L2uPb3R9vZMrq/mR2+/rOoyu7cLC3ryzx++EQ8dP57mdZmXcv5hPtGbJu+k9/zHf3Kf2Viclmfix3639W/3zN900k5+/UX+PD3t+GWQ/A9CMdi/kfgbtObXVw0n+/IiP3fwcz990+3lJHumyzsOtYX3PTPJon8f2e05gTsxCTRrYqbYbLpkWfvvGPWNhp/o+NcnPf/KLuf0/f+lSqLS6tp533n5f3n3nA3n3a1888L48cersFTP7bTxZe9YPGvU8fuTgUt55+31929SvftEgdbL6FYXvZGn/Yu6ZQugxSB23pVY9tEka9Xwxyv4fZTbQpme9BGD7BgqnSin/e57qgbQnyU1JPr3N1/5UkheUUm5IspqLBc7/xy3r3JnkrUl+K8kbkpyutdZSyp1JfqGU8s9ysSD6C3Jx9sAywHMCc8QFMIzfKBd/DGeQi/lOhZC3Uwy914X41lApuRjKDLPfRw0ARj2PL3UJ74Z5/XEHgMl4CtYPGvZ0a/8429LPds8Xw+7/UYqoT2I/AzBdnYbBdXImF2tM3ZuLQdHfr7X+9e28cK31fJJ3JDmV5A+SfLjW+kAp5b2llNe2VvvpJM8upTyU5EfzVCH0B5J8OMnvJ/m1JH+31nqh23Nup50AsNP0uvjbDU6urObQ8dO54dhdOXT89NhnQGtfzK+2ZndbXVvP0Y98Oje95z9e9ppHDi7ltltuzNL+xZRcDGO2M2x5lAvxYfZ7t+ffU8pEZpE7evhAFhf61ybq9b47PcfWQOeaqxf6vsaekrHso6Tz8XHrHfd33Iad2t8eHDGOtgxi2ueLUULQQfYzALNt0JpTPzuJF6+1fizJx7Ys+4lNP/9Zkjd2eew/TvKPB3lOABjFTq2rNA9DYCa17afRa6zTxfzGhXpp+NjW1xzX6x49fGCgOk1bDbrfO/X0SpILtV56P8n4hmJvHRL2zMWFfO3r57Nx4al32C+AGGRY2bte8+Ic/cinL3verfaWkhN/7fLaWv2O0W73D9MzqF/720HrJM9R0z5fjNILShkAgPlXes1CUkq5P10KiidJrfW7JtGoaVteXq5nzpxpuhkAzJCdXJD/0PHTHS/+plVHp59u2/71L13K3Q+e29bF5zTee7dC55N6zc0hyOLCnjy+8eRQjx+mHSdXVvNjH/50LnT4+7Hkyj8ax/2Z6RT4JNsPJTY/b9L5j9/9iwu5712vvLR+r/NDr/u7BYglyeeGKIQ/rXPUtM8XO/ncC7AblVLurbUu91uv37C+70/ymlwcOvdrSd7S+vexJB/ZbiMBYFbt5KFvsz4Eptu2/9AnvzjQUKheuvX2WF1bH9sQv0GH142j58nWIWKPbzyZhT0l11y9cGkYWq9ha8Ps93aA0ymYSjoHOuP+zBw5uJR7jt2czx1/9aVgZNAhcoM+bzdr6xuXnrff+aHX/d2Oj2GHZU7rHDXt88W4h7sCMB96DuurtX4hSUoph2qthzbddayUck+S906ycQDQlHkY+jaqYYbANDG0sds23hp+9CuS3EmvAtPjGuLXbfhbp7Z0M+h27ziE8Mmaq5+2Lys/0b2XT5JcvbAn/+uAF/3dnmMQ2/nM9NsOoxTP7qfXMdJ+3n7nh173f+BNN42lEP60zlFNDJkzGQrA7jNQzakkzyil/A+11v+UJKWUv5DkGZNrFgA0a6fP/jTIxV9Ts/r1m6Fss2EvxPsFR9sNNpIrL+b3X72Qr/7Z+ctmzOsVRnTa7kd/+dN5z0cfyNrjG5eFA4MEFEcOLuXMFx7Nhz75xcsCvnqptPblrz1onaRBDfOZ2fz6W2tMdTr+JhHQHD18IO+8/b6ez9vv/NDt/j3l4ja/7ZYbtx32TPMcJSwCYNIGna3vbUl+spTy+VLK55P8H0n+54m1CgAaNutD36ahqaGNvWYo22rYC/HNQ4a6GUfPk83DxFZ+4pU58caXDDxMqVtvqMce37hi6NqgQ8TufvBc155nbb1mkRt1m5TW83zHrR/L9X1mR9z6+mvrG1cUKd/a5nENkdvsyMGlrkMh28/b7/zQbabBzcXjNw9PHCX4mdVz1KRnwwRgZxoonKq13ltrfUmS70ryklrrTbXW35ls0wCgOeqeNDe0sdO2f8vLvnVsF+Lt4KhbQDWpnieDhhGDbN92SDNoQDHIvhylTlI/7WipXaeqV02oQXtnbW7zpAKad73mxT2fd+sxes3VC7lq3578yO335dDx00ku9o7aW66MVccV8M7iOapXwLmd5xR2Aex8PYf1lVL+eq3150spP7pleZKk1vrPJtg2AGjUbh/K0uTQxk7bfvnbnjXWujedhvjNQs+TQYc1PrK2PnA9oEH25bB1kjrNzte2pyRPdrmz29DJQUPPzW2eVD2kQZ63fYx2G/562y035skuxePHFfBO8hw1Sr25cdUAa7/26tr6ZcfZtIYWAzB9/WpOtetKfeOkGwIAzJZZC2/GfSHeRKHnQQxbUH2Q7TLIvuwVYHXbVkk6Pm+/tncKZwYJ5Todf5MKaAZ93n49ziYd8PYLkUYJmUatNzeO3pZbX3scEyEAMPv6zdb3b1r/v2c6zQEAZsWshjej6HaBPou947Zu962FwZPhQ8JB9mW/AKvXtnr3nQ9kbX0jSfL0hT25at+eS7c76RTOdAvl2r2wljYFYoeOn56ZY3IaM/N10y9EGjVkGrUH1DjCuEGGd26351kTs5AC0NtAs/WVUv5JkvclWU/ya0lekuSdtdafn2DbAGBkLj7GYxbDm2E1NevgIAYNzcZxPPfbl51CsVKSH7n9vkv1rbo9/onzT176+bHHu4dSSfdwpv3cm4Ou5GIwtfkxs7YvR+lxNq629guRRg2ZRu0BNY7eloMET9vpeTbL5wOA3WzQ2fpeWWv9r0m+P8nDSf5ckqMTaxUAbMMkivIyv5qadbCfYY7TYQqqb0f7dT7wppvyxPknO84QuFWvni7tcuDtwuD9inYfObiUZ1x15Xen7f01i/uyyVnzug2DbAc8o4ZMo86COI4i7f1eY7vbdhaPIQAG7DmVpD2f7l9N8ou11kdLh9lHAGAWjKsoLztDU7MO9jPLx2m3tv3oh+/Lu+98IF9Z37jUC6jXdqy5GFDcc+zmgV97lP01zn05bC+1Xr2jJtlL5+TKatei9O2AZ9RhdtvpAbXd3padXrv9PpfG0PNsVs8HALvdoOHUR0spD+bisL6/U0q5NsmfTa5ZADA6Fx9s1uSsg73M8nHarQ1P1lwactcOWvZfvdBzKN+w76fX/vraE+c71rIa174cNUzaPHPfiVNnLw2F/NoT5ycWQJ44dbZjMFWSSyHSqCFTk/XmJv3as3o+ANjtBgqnaq3HSinvT/Jfa60XSimPJ3ndZJsGAKNx8TE7ZqH216zNOtg2K8dpp300yMx5ycWg5ap9e3rO0Dfs++nWc+b6Zy/mP3/+sY6Pefzr53NyZXUsgc+oYVKnYKubcQSQ3Z6j5qmAZztBT5P15ib52rN6PgDY7QaqOVVKuTrJ303yr1qLrkuyPKlGAcB2NFkDhqfMSu2vcdTBmYRZOE677aNXvPDaK9rWzVfWN3LbLTfmmqsXrrhvlPdz5OBSXv/SpWwuIFGT/L+fefSyGQs3e+zxjbEcW/1qOPUyyCxzbeMIILs9x9KW5dOqVzYvZvV8MC0nV1Zz6Pjp3HDsrhw6flotRmBmDDqs72eS3JvkL7RuP5zkl5P835NoFABsR5NDUnjKLNVUmsVZB2fhOO22j+5+8Fxuu+XG/NiHP50LtXMg1NaelW7zsLbtvp+7Hzx3xZC13q3Y/rE1SA2nXgbtDTWuAFIPoNHN4vlgGsxUCMyyQcOp76i1vqmU8gNJUmtdLyqiAzDD5v3iYxaGw23XLNdUmhVNH6e99lG7XVsDkM22hiHjej+jHiNbHzfM52iQGk69dBsKec3VC7n6afvG/lmehXBzmnbCObFps/SFAcBWg4ZTXy+lLKb1ZVIp5TuSPDGxVgHALjbv3263LyK79XRR+2s2nFxZzZ5SOvaMau+jrQHI/qsXUmsum61vEsdkt6CnW8+mre1Ohv8cDVLDqZduPZne9ZoXT+xz23S4OS3zfk6cFb4wAGZZ33Cq1UPqXyf5tSTPL6V8KMmhJD802aYBwO40z99ub72I3Mqwo9nQ3k+dgqlJ9YYaRreg5/UvXcrdD57L6tr6FUHV1nYP+znqFohtreHUzbh6Ms17D6FJtH+S58R5397DmJVJGAA66RtO1VprKeXvJXllkpfl4pdWf6/W+uVJNw4AdqN5/na7V1HopR1+4TdPuu2nvaXMRHHoQYKefqFCr89Rp8eOo4bTdoO8cfYQmkTo0u85J9XDaVLnxN3WI0udMmCWDTqs75NJvr3WetckGwMAzPe3290uFkuSe47dPN3G0FW3/fRkrTNzUd4v6Ol3f7fP0TMXFzoGErfdcmNuu+XGmSxQP2wPoUmELoM856R6OE3qnDjPvVRHsdvqlAHzZdBw6hVJ/lYp5QtJvpbWkP9a63dNrGUAsEvN87fb8xysjWJehwTN4n4aZFsOs727fY5KSddA4p5jN89sgfphTCJ0GeQ5J9XDaVLnxFnppTrN88huqVMGzJ89A673fUm+I8nNSV6T5Ptb/wMAY3bk4FJuu+XGLO1fTMnF4XCzMNRqEEcPH8jiwt7Lls1LsDasdk+S1bX11DzVk+TkymrX9Q8dP50bjt2VQ8dPd11vGmZtPw2yLYfd3t0+R2uPb3RcfxaGzXYLB4cNDScRugzynONq/1aTOidOqr3DGPa4BtipBuo5VWv9wqQbAgA8ZV6/3d5Nw0aG6Z0ya7VtZm0/DbItR+kN1OlzdOLU2ZnrNdY2rh5Ck+gZN8hzTrLX59Zj9sSps5ctH8Us9FLdbUMLAboZdFgfAMBA5jVYG9YwvVNm8QJ0lvbTINtyXL2BZiGQ6GZcoeEk3uMgzznJ0HMSAe/W9j5zcSGlJD9y+305cersVALbWRlaCNA04RQAwAiG6Z3iArS3QbbluHoDzVqvsa3GERpO4j0O+pyTCj0nFfC229tU78ZZrP8G0AThFADACIbpneICtLN2IejVtfWLs+1sum/rthxnb6BZ6jU2KZN4j01ut0kHvE31bpzlnnwA0yScAiDJ/M46Ni9s351nmN4pLkCvtLWnSk0uBVRLHbblrPd4YrImHfA21bvRcQ1wkXAKgJkr1rzT2L4716A9SebhAnTaAWqnnirtYOqeYzd3fMwg21sQPBnDbNdJ7INJB7xN9m7cDT35APoRTgHQczhD+34XeqMb93ARF9/zaZYvQJsIUCfRU2U3BcHTPA8Ms10ntQ8mHfDq3QjQLOEUAF0vBtsXFbvhQm+SxnkRvpsuvneTpgPHJurtTKKnyizOijgJ0z4PDLNdJ7kPJhnwzkPvRoCdbE/TDQCged0uBveW0rNHFYPptn1HuQjv18uN+dMOGlbX1lPzVNBwcmV1am1oot7O0cMHsriw97Jl2+2psltmRZz2eWCY7TrP++DIwaXcc+zmfO74q3PPsZsFUwBTJJwCoOtF4oVaO64/DxcZs2ScF+HzfOFHZ7MQOI4zQB3UkYNLue2WG7N/ceHSsqcvbO9P0ybeRxOmfR4YZrvO2z44ubKaQ8dP54Zjd+XQ8dNTDYUBeIpwCoBLF4lL+xdTcrEgcft2J7N6kTGrum3fUb6Vn7cLP/qbhcBxEr2YBvXE+Scv/fzY4xvb6jXW5PuYpmmfB4bZrvO0D5rstSgUA7icmlMAJOley0OB2PEYV60URXt3niZnCWtrqt7OuOsT7Za6QdM+DwyzXedpHzRVo0ztQIArldplyMZusry8XM+cOdN0MwBmUtOFmrmSfbKzbL1QTS4GDaP2rpsnNxy7K53+Ei1JPnf81dNuzlxxHti+po6/Q8dPdwykl/Yv5p5jN0/sdQGaUEq5t9a63G89PacA6GmSsyMxGvtkZ5mnnibjNgu9xuaV88D2NXX8zcJQXoBZI5wCAGjYbg0aDFOlSU0df0JZgCsJpwAAaMRu7jVG85o6/oSy88lQWpgsNaei5hQAADA9go75sptrA8J2qTkFAAAwg3brUN551dTMjrCb7Gm6AQAAADCrFLGHyRNOAQAAQBfditUrYg/jI5wCYNc5ubKaQ8dP54Zjd+XQ8dM5ubLadJMAgBl19PCBLC7svWyZIvYwXmpOAbCrbC1qurq2nlvvuD9J1I0AAK5gZlGYPOEUALuKoqYAwLAUsYfJMqwPgF1FUVMAAJgtwikAdhVFTQEAYLYIpwDYVRQ1BQCA2aLmFAC7iqKmAAAwW4RTAOw6ipoCAMDsMKwPAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABoTCPhVCnlWaWUj5dS/rD1/zVd1ntra50/LKW8tbXs6lLKXaWUB0spD5RSjm9a/4dKKedKKfe1/v3Nab0nAAAAAIbX1Gx9x5L8Rq31eCnlWOv239+8QinlWUnelWQ5SU1ybynlziRPJPnfaq13l1KeluQ3SinfV2v9D62H3l5rfcfU3gkAADTs5MpqTpw6m0fW1nPd/sW84oXX5u4Hz126ffTwAbOUAjCzmhrW97okP9v6+WeTHOmwzuEkH6+1PlprfSzJx5O8qtb6eK317iSptX49ye8ked4U2gwAADPn5Mpqbr3j/qyuracmWV1bz89/8ouX3b71jvtzcmW16aYCQEdNhVPfXGv9oyRp/f/cDussJfnSptsPt5ZdUkrZn+Q1SX5j0+LXl1J+t5TykVLK87s1oJTy9lLKmVLKmXPnzo36PgAAoFEnTp3N+saFnuusb1zIiVNnp9QiABjOxMKpUsqvl1J+r8O/1w36FB2W1U3Pvy/JLyb5F7XWz7YWfzTJ9bXW70ry63mqd9aVT1TrB2uty7XW5WuvvXbAJgEAwGx5ZG19rOsBwLRNrOZUrfUvd7uvlPJfSinfUmv9o1LKtyT54w6rPZzk5ZtuPy/JJzbd/mCSP6y1/vNNr/knm+7/qSTvH6HpAAAwN67bv5jVAYKn6/YvTqE1ADC8pob13Znkra2f35rkVzuscyrJK0sp17Rm83tla1lKKe9L8swk79z8gFbQ1fbaJH8w5nYDAMBMOXr4QBYX9vZcZ3Fhb44ePjClFgHAcJqare94kg+XUt6W5ItJ3pgkpZTlJD9ca/2btdZHSyn/KMmnWo95b2vZ85L8gyQPJvmdUkqS/Mta679N8r+UUl6b5HySR5P80DTfFAAAF22dPc5scZPT3q5m6wNgXpVaa/+1drjl5eV65syZppsBALAjtGeP21yke3Fhb2675UYBCQDsIqWUe2uty/3Wa6rnFAAAO1Sn2ePas8VNO5zSgwsAZp9wCgCAseo2K9y0Z4vb2oNrdW09t95xf5IIqABghjRVEB0AgB2q26xw054trlcPLgBgdginALY4ubKaQ8dP54Zjd+XQ8dM5ubLadJMA5kqn2eOamC1uVnpwAQC9GdYHsIkhIADb12n2uCZqPV23fzGrHYKoaffgAgB6E04BbDJLRXwB5tmRg0uNnzePHj7QcdbAaffgAgB6E04BbGIICMDOMSs9uACA3oRTAJsYAgKws8xCDy4AoDcF0QE2mZUivgAAALuFnlMAmxgCAgDjdXJl1e9VAHoSTgFsYQgIAIyHWXABGIRhfQAAwET0mgUXANqEUwAAwESYBReAQQinAACAieg2261ZcAHYTDgFAABMhFlwARiEgugAAMBEmAUXgEEIpwAAgIkxCy4A/RjWBwAAAEBjhFMAAAAANMawPoABnVxZVTMDAABgzIRTAAM4ubKaW++4P+sbF5Ikq2vrufWO+5NEQAUAALANhvUBDODEqbOXgqm29Y0LOXHqbEMtAgAA2BmEUwADeGRtfajlAAAADEY4BTCA6/YvDrUcAACAwQinAAZw9PCBLC7svWzZ4sLeHD18oKEWAQAA7AwKogMMoF303Gx9AAAA4yWcAhjQkYNLwigAAIAxM6wPAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABojHAKAAAAgMYIpwAAAABoTCPhVCnlWaWUj5dS/rD1/zVd1ntra50/LKW8ddPyT5RSzpZS7mv9e25r+VWllNtLKQ+VUn67lHL9dN4RAAAAAKNoqufUsSS/UWt9QZLfaN2+TCnlWUneleR7knx3kndtCbHeUmu9qfXvj1vL3pbksVrrdyb5QJL3T/JNAAAAALA9+xp63dcleXnr559N8okkf3/LOoeTfLzW+miSlFI+nuRVSX6xz/O+u/XzR5L8y1JKqbXWnq05ezZ5+ct7rgIAAADA+DXVc+qba61/lCSt/5/bYZ2lJF/adPvh1rK2n2kN6fvxUkrZ+pha6/kkX0ny7E4NKKW8vZRyppRyZmNjY3vvBgAAAICRTKznVCnl15P8Nx3u+geDPkWHZe0eUG+pta6WUr4xya8k+cEkP9fnMZcvrPWDST6YJMvLyzWf+MSAzQIAAACgr9IpprnSxMKpWutf7nZfKeW/lFK+pdb6R6WUb0nyxx1WezhPDf1Lkufl4vC/1FpXW///aSnlF3KxJtXPtR7z/CQPl1L2JXlmkke3/24AAAAAmISmhvXdmaQ9+95bk/xqh3VOJXllKeWaViH0VyY5VUrZV0p5TpKUUhaSfH+S3+vwvG9IcrpvvSkAAAAAGtNUQfTjST5cSnlbki8meWOSlFKWk/xwrfVv1lofLaX8oySfaj3mva1lz8jFkGohyd4kv57kp1rr/HSSf19KeSgXe0y9eXpvCQAAAIBhFR2LLtacOnPmTNPNAADYtU6urObEqbN5ZG091+1fzNHDB3Lk4FL/BwIAM6uUcm+tdbnfek31nAIAgCQXg6lb77g/6xsXkiSra+u59Y77k0RABQC7wP/f3r3HWlaWdwD+vWFQqRoBCwiDFRIpDdpW61RjbBtvMNpEoZVaTaNjqjFN25gWS8QY47UWRLuXHi4AABAfSURBVIOxtk2oNiGt9UYsoqZOENQYm1gGMSpVHGq9DFABAaMVL+jbP/Ya2TOekZlzzt7fXJ4nOdl7fetb67wrnJdzzm/W+s6oNacAACBJcuHW638aTO10149+nAu3Xj+oIgBgmYRTAAAMddOdd+3TOABwcBFOAQAw1AlHHrFP4wDAwUU4BQDAUOduPjVHHH7YLmNHHH5Yzt186qCKONRddu2NecL5V+Xk8z6cJ5x/VS679sbRJQEc1CyIDgDAUDsXPffX+tgfWKAfYPmEUwAADHfWozf6xZ/9ws9boN/XKMBieKwPAABgYoF+gOUTTgEAAEws0A+wfMIpAACAiQX6AZbPmlMAAAATC/QDLJ9wCgAAYI4F+gGWy2N9AAAAAAwjnAIAAABgGOEUAAAAAMMIpwAAAAAYRjgFAAAAwDDCKQAAAACGEU4BAAAAMIxwCgAAAIBhhFMAAAAADCOcAgAAAGAY4RQAAAAAwwinAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAAAAMI5wCAAAAYBjhFAAAAADDCKcAAAAAGEY4BQAAAMAwwikAAAAAhhFOAQAAADCMcAoAAACAYYRTAAAAAAwjnAIAAABgGOEUAAAAAMMIpwAAAAAYRjgFAAAAwDDCKQAAAACGEU4BAAAAMIxwCgAAAIBhhFMAAAAADCOcAgAAAGAY4RQAAAAAwwinAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAAAAMI5wCAAAAYBjhFAAAAADDDAmnquroqrqiqrZPr0ftYd6Wac72qtoyjT2wqj4793FbVb1l2veCqrp1bt+LlnldAAAAAOybUXdOnZfkyu4+JcmV0/YuquroJK9K8rgkj03yqqo6qru/092P2vmR5GtJ3j936Hvm9r998ZcCAAAAwGqNCqfOTHLJ9P6SJGetMGdzkiu6+/buviPJFUmeNj+hqk5JcmySTy6wVgAAAAAWZFQ4dVx335wk0+uxK8zZmOQbc9s7prF5z83sTqmeG3tWVX2uqi6tqofuqYCqenFVbauqbbfeeuvqrgIAAACANVlYOFVVH62qL6zwcebenmKFsd5t+zlJ3jW3/cEkJ3X3ryX5aO65O+tnT9R9cXdv6u5NxxxzzF6WBAAAAMB62rCoE3f3U/e0r6q+WVXHd/fNVXV8kltWmLYjyRPntk9M8vG5c/x6kg3dfc3c5/zW3Px/THLB6qoHAAAAYBlGPdZ3eZIt0/stST6wwpytSc6oqqOmv+Z3xjS203Oz611TmYKunZ6Z5IvrVjEAAAAA625hd07di/OTvLeqXpjk60n+IEmqalOSP+nuF3X37VX1uiRXT8e8trtvnzvHs5P87m7nfUlVPTPJ3UluT/KCBV4DAAAAAGtUu64lfmjatGlTb9u2bXQZAAAAAAeNqrqmuzfd27xRj/UBAAAAgHAKAAAAgHGEUwAAAAAMI5wCAAAAYBjhFAAAAADDCKcAAAAAGEY4BQAAAMAwwikAAAAAhhFOAQAAADCMcAoAAACAYYRTAAAAAAwjnAIAAABgGOEUAAAAAMMIpwAAAAAYRjgFAAAAwDDCKQAAAACGEU4BAAAAMIxwCgAAAIBhhFMAAAAADCOcAgAAAGAY4RQAAAAAwwinAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAAAAMI5wCAAAAYBjhFAAAAADDCKcAAAAAGEY4BQAAAMAwwikAAAAAhhFOAQAAADCMcAoAAACAYYRTAAAAAAwjnAIAAABgGOEUAAAAAMMIpwAAAAAYRjgFAAAAwDAbRhcAAAAw0mXX3pgLt16fm+68KycceUTO3Xxqznr0xtFlARwyhFMAAMAh67Jrb8zL3//53PWjHydJbrzzrrz8/Z9PEgEVwJJ4rA8AADhkXbj1+p8GUzvd9aMf58Kt1w+qCODQI5wCAAAOWTfdedc+jQOw/oRTAADAIeuEI4/Yp3EA1p9wCgAAOGSdu/nUHHH4YbuMHXH4YTl386mDKgI49FgQHQAAOGTtXPTcX+sDGEc4BQAAHNLOevRGYRTAQB7rAwAAAGAY4RQAAAAAwwinAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAAAAMMyScqqqjq+qKqto+vR61h3kfqao7q+pDu42fXFWfno5/T1XdZxq/77R9w7T/pMVfDQAAAACrNerOqfOSXNndpyS5ctpeyYVJnrfC+AVJLpqOvyPJC6fxFya5o7sfnuSiaR4AAAAA+6lR4dSZSS6Z3l+S5KyVJnX3lUm+Mz9WVZXkyUkuXeH4+fNemuQp03wAAAAA9kOjwqnjuvvmJJlej92HYx+c5M7uvnva3pFk4/R+Y5JvTOe9O8m3p/k/o6peXFXbqmrbrbfeuopLAAAAAGCtNizqxFX10SQPWWHXK9Z66hXGei/27TrYfXGSi5Nk06ZNK84BAAAAYLEWFk5191P3tK+qvllVx3f3zVV1fJJb9uHUtyU5sqo2THdHnZjkpmnfjiQPTbKjqjYkeVCS21d3BQAAAAAs2qjH+i5PsmV6vyXJB/b2wO7uJB9LcvYKx8+f9+wkV03zAQAAANgPjQqnzk9yelVtT3L6tJ2q2lRVb985qao+meR9mS1svqOqNk+7XpbknKq6IbM1pd4xjb8jyYOn8XOy578CCAAAAMB+oNxYNFtzatu2baPLAAAAADhoVNU13b3p3uaNunMKAAAAAIRTAAAAAIwjnAIAAABgGOEUAAAAAMMIpwAAAAAYRjgFAAAAwDDCKQAAAACGEU4BAAAAMIxwCgAAAIBhhFMAAAAADCOcAgAAAGAY4RQAAAAAwwinAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGqu0fXMFxV3Zrkawv+NL+Y5LYFfw44UOgHuId+gF3pCbiHfoBd6YkDz8O6+5h7myScWpKq2tbdm0bXAfsD/QD30A+wKz0B99APsCs9cfDyWB8AAAAAwwinAAAAABhGOLU8F48uAPYj+gHuoR9gV3oC7qEfYFd64iBlzSkAAAAAhnHnFAAAAADDCKfWSVUdXVVXVNX26fWoPczbMs3ZXlVb5sbvU1UXV9WXq+pLVfWs5VUP62+tPTG3//Kq+sLiK4bFWUs/VNUvVNWHp+8N11XV+cutHtZHVT2tqq6vqhuq6rwV9t+3qt4z7f90VZ00t+/l0/j1VbV5mXXDoqy2J6rq9Kq6pqo+P70+edm1w3pby/eIaf8vVdV3q+qvllUz60s4tX7OS3Jld5+S5MppexdVdXSSVyV5XJLHJnnV3C8or0hyS3f/cpLTknxiKVXD4qy1J1JVv5/ku8spFxZqrf3wpu7+lSSPTvKEqnr6csqG9VFVhyX5uyRPz+znnOdW1Wm7TXthkju6++FJLkpywXTsaUmek+QRSZ6W5O+n88EBay09keS2JM/o7l9NsiXJPy+naliMNfbDThcl+fdF18riCKfWz5lJLpneX5LkrBXmbE5yRXff3t13JLkisx+ykuSPk/xNknT3T7r7tgXXC4u2pp6oqgckOSfJ65dQKyzaqvuhu7/X3R9Lku7+YZLPJDlxCTXDenpskhu6+yvT1/G7M+uLefN9cmmSp1RVTePv7u4fdPf/JLlhOh8cyFbdE919bXffNI1fl+R+VXXfpVQNi7GW7xGpqrOSfCWzfuAAJZxaP8d1981JMr0eu8KcjUm+Mbe9I8nGqjpy2n5dVX2mqt5XVccttlxYuFX3xPT+dUnenOR7iywSlmSt/ZAkmb5fPCOzu6/gQHKvX9/zc7r77iTfTvLgvTwWDjRr6Yl5z0pybXf/YEF1wjKsuh+q6v5JXpbkNUuokwXaMLqAA0lVfTTJQ1bY9Yq9PcUKY53Zf4cTk3yqu8+pqnOSvCnJ81ZVKCzJonqiqh6V5OHd/Ze7P08O+6sFfo/Yef4NSd6V5K3d/ZV9rxCG+rlf3/cyZ2+OhQPNWnpitrPqEZk92nTGOtYFI6ylH16T5KLu/u50IxUHKOHUPujup+5pX1V9s6qO7+6bq+r4JLesMG1HkifObZ+Y5ONJvpXZ3SH/No2/L7NnamG/tsCeeHySx1TVVzP7/9SxVfXx7n5iYD+1wH7Y6eIk27v7LetQLizbjiQPnds+MclNe5izYwpjH5Tk9r08Fg40a+mJVNWJmf3u8Pzu/u/FlwsLtZZ+eFySs6vqjUmOTPKTqvp+d79t8WWznjzWt34uz2xBwkyvH1hhztYkZ1TVUdMit2ck2drdneSDueeXkqck+a/FlgsLt5ae+IfuPqG7T0ryW0m+LJjiALfqfkiSqnp9Zj+E/cUSaoVFuDrJKVV1clXdJ7MFzi/fbc58n5yd5KrpZ6TLkzxn+ktNJyc5Jcl/LqluWJRV98T0iPeHk7y8uz+1tIphcVbdD93929190vR7w1uSvEEwdWASTq2f85OcXlXbk5w+baeqNlXV25Oku2/PbB2dq6eP105jyew52VdX1ecye5zvpUuuH9bbWnsCDiar7ofpX8dfkdlfr/lMVX22ql404iJgtab1Qf48s8D1i0ne293XVdVrq+qZ07R3ZLZ+yA2Z/UGM86Zjr0vy3sz+4e4jSf6su3+87GuA9bSWnpiOe3iSV07fEz5bVSutZQgHhDX2AweJmv2DFAAAAAAsnzunAAAAABhGOAUAAADAMMIpAAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAB7Cq+u7oGgAA1kI4BQAAAMAwwikAgCWoqt+sqs9V1f2q6v5VdV1VPXK3ORdU1Z/Obb+6ql5aVQ+oqiur6jNV9fmqOnOF8z+xqj40t/22qnrB9P4xVfWJqrqmqrZW1fELvFQAgH0inAIAWILuvjrJ5Ulen+SNSf6lu7+w27R3J/nDue1nJ3lfku8n+b3u/o0kT0ry5qqqvfm8VXV4kr9NcnZ3PybJPyX567VcCwDAetowugAAgEPIa5NcnVnY9JLdd3b3tVV1bFWdkOSYJHd099engOkNVfU7SX6SZGOS45L87158zlOTPDLJFVOedViSm9fjYgAA1oNwCgBgeY5O8oAkhye5X5L/W2HOpUnOTvKQzO6kSpI/yiysekx3/6iqvjodP+/u7HpX/M79leS67n78elwAAMB681gfAMDyXJzklUnemeSCPcx5d5LnZBZQXTqNPSjJLVMw9aQkD1vhuK8lOa2q7ltVD0rylGn8+iTHVNXjk9ljflX1iHW5GgCAdeDOKQCAJaiq5ye5u7v/taoOS/IfVfXk7r5qfl53X1dVD0xyY3fvfPzunUk+WFXbknw2yZd2P393f6Oq3pvkc0m2J7l2Gv9hVZ2d5K1TaLUhyVuSXLeYKwUA2DfV3aNrAAAAAOAQ5bE+AAAAAIYRTgEAAAAwjHAKAAAAgGGEUwAAAAAMI5wCAAAAYBjhFAAAAADDCKcAAAAAGEY4BQAAAMAw/w+uQXnHb2sZKQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize = (20,10))\n", + "plt.scatter(df.goog,simple.resid)\n", + "plt.axhline(0.05,color = 'r')\n", + "plt.axhline(-0.05,color = 'r')\n", + "plt.axhline(0,color = 'black')\n", + "plt.xlabel('x value')\n", + "plt.ylabel('residual')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 140, + "metadata": {}, + "outputs": [], + "source": [ + "from pandas.core import datetools\n", + "from statsmodels.stats import diagnostic as dia" + ] + }, + { + "cell_type": "code", + "execution_count": 142, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "p-value of Heteroskedasticity: 0.14407584284381386\n" + ] + } + ], + "source": [ + "het = dia.het_breuschpagan(fama_model.resid,fama_df[['MKT','SMB','HML','RMW','CMA']][1:])\n", + "print('p-value of Heteroskedasticity: ', het[-1])" + ] + }, + { + "cell_type": "code", + "execution_count": 144, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1.7248088754041377, nan, 1.7298240426802394, 0.18963839548692538)" + ] + }, + "execution_count": 144, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dia.het_breuschpagan(simple.resid,pd.DataFrame(df.goog))" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.2668279319999998\n" + ] + } + ], + "source": [ + "print((float(factorial(10))/(factorial(7)*factorial(10-7)))*(0.7**7)*(0.3**3))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/01 Introduction.html b/05 Introduction to Financial Python[]/11 Linear Algebra/01 Introduction.html new file mode 100755 index 0000000..ebb8e05 --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/01 Introduction.html @@ -0,0 +1,3 @@ +

+ Many papers in statistics and quantitative finance make heavy use of linear algebra, so you need to have a working knowledge of it in order to read and apply them to your trading. +

diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/02 Vectors.html b/05 Introduction to Financial Python[]/11 Linear Algebra/02 Vectors.html new file mode 100755 index 0000000..2d75a1e --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/02 Vectors.html @@ -0,0 +1,15 @@ +

+ A vector can be thought of as an arrow pointing from the origin to a specific point. Any vector or point can be represented by its coordinates i.e. an array of numbers, such as \((x,y)\) for a 2-dimensional vector, or \((x,y,z)\) for a 3-dimensional one. We usually write a vector as a column: +

+\[ \mathbf{v} = \begin{pmatrix} +x \\ y \\ z +\end{pmatrix} \] + +

+ The scalar product of two vectors \( \mathbf{x} \) and \( \mathbf{y} \) in 2-dimensional space is defined as: +

+\[ \mathbf{x}^T \mathbf{y} = \begin{pmatrix} x_1 & x_2 \end{pmatrix} \begin{pmatrix} y_1 \\ y_2 \end{pmatrix} = x_1 y_1 + x_2 y_2 \] + +

+ This definition can be easily generalized to n dimensional space. Clearly, we cannot take the scalar product of two vectors with different dimensions. +

diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/03 Matrices.html b/05 Introduction to Financial Python[]/11 Linear Algebra/03 Matrices.html new file mode 100755 index 0000000..5d230de --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/03 Matrices.html @@ -0,0 +1,64 @@ +

+ If we have a few vectors \( \mathbf{v}_1, \mathbf{v}_2, \dots, \mathbf{v}_n \) with the same dimension, then we can put them side-by-side to form a matrix. For example, the vectors +

+\[ v_1 = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} \qquad + v_2 = \begin{pmatrix} 2 \\ 2 \\ 2 \end{pmatrix} \qquad + v_3 = \begin{pmatrix} 3 \\ 1 \\ 1 \end{pmatrix} \] + +

+ can be combined to produce a matrix: +

+\[ m = \begin{pmatrix} +1 & 2 & 3 \\ +2 & 2 & 2 \\ +3 & 1 & 1 +\end{pmatrix} \] + +

+ m is a 3 × 3 matrix. We typically describe the dimensions of a matrix as \(m \times n\) where m = number of rows and n = number of columns. +

+ +

+ A square matrix is one with as many rows as columns. +

+ +

+ Notation: \(x_{ij}\) refers to a specific value in row \(i\) and column \(j\) of a matrix \(X\). For example, \(x_{23}\) is the number in the second row and third column of \(X\). +

+ +

Python Implementation

+ +

+ In Python, the NumPy package deals with linear algebra. The array we learned in the NumPy chapter can be deemed as a vector: +

+ +
+ +
import numpy as np
+a = np.array([1,2,3])
+b = np.array([2,2,2])
+c = np.array([3,1,1])
+matrix = np.column_stack((a,b,c))
+print matrix
+print type(matrix)
+[out]:
+[[1 2 3]
+ [2 2 1]
+ [3 2 1]]
+
+
+ +

+ It is worth noticing that we used column_stack() here to ensure that the vectors are vertical and placed side-by-side to form a matrix. Without the column_stack() function, the vectors will be made horizontal and stacked on top of one another: +

+ +
+ +
matrix2 = np.array([a,b,c])
+print matrix2
+[out]:
+[[1 2 3]
+ [2 2 2]
+ [3 1 1]]
+
+
diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/04 Matrix Multiplication.html b/05 Introduction to Financial Python[]/11 Linear Algebra/04 Matrix Multiplication.html new file mode 100755 index 0000000..65073a3 --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/04 Matrix Multiplication.html @@ -0,0 +1,58 @@ +

+ How are two matrices multiplied? Suppose \(X = AB\). Each entry \(x_{ij}\) of matrix \(X\) is the scalar product of row \(i\) from matrix \(A\) with column \(j\) from matrix \(B\). This is best illustrated with an example: +

+ +\[ AB = \begin{pmatrix} +a_{11} & a_{12} \\ +a_{21} & a_{22} \\ +a_{31} & a_{32} +\end{pmatrix} +\begin{pmatrix} +b_{11} & b_{12} \\ +b_{21} & b_{22} +\end{pmatrix} = \begin{pmatrix} +x_{11} & x_{12} \\ +x_{21} & x_{22} \\ +x_{31} & x_{32} +\end{pmatrix} \] + +\[ x_{\color{red}11} = a_{{\color{red}1} 1} b_{1{\color{red} 1}} + a_{{\color{red}1} 2} b_{2 {\color{red}1}} \] +\[ x_{\color{red}12} = a_{{\color{red}1} 1} b_{1 {\color{red}2}} + a_{{\color{red}1} 2} b_{2 {\color{red}2}} \] +\[ x_{\color{red}21} = a_{{\color{red}2} 1} b_{1 {\color{red}1}} + a_{{\color{red}2} 2} b_{2 {\color{red}1}} \] +\[ x_{\color{red}22} = a_{{\color{red}2} 1} b_{1 {\color{red}2}} + a_{{\color{red}2} 2} b_{2 {\color{red}2}} \] +\[ \vdots \] + +

+ In NumPy, we can multiply matrices with the dot() function: +

+ +
+ +
A = np.array([[2,3],[4,2],[2,2]])
+B = np.array([[4,2],[4,6]])
+x = np.dot(A,B)
+print x
+[out]:
+[[20 22]
+ [24 20]
+ [16 16]]
+
+
+ +

+ Since matrix multiplication is defined in terms of scalar products, the matrix product \(AB\) exists only if \(A\) has as many columns as \(B\) has rows. It's useful to remember this shorthand: (m × n) × (n × p) = (m × p) which means that an (m × n) matrix multiplied by an (n × p) matrix yields an (m × p) matrix. +

+ +

+ Reversing the order of multiplication results in an error since B does not have as many columns as A has rows: +

+ +
+ +
x = np.dot(B,A)
+
+
+ +

+ A natrual consequence of this fact is that matrix multiplication is not commutative. In other words, \(AB \neq BA\) in general. +

diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/05 Inverse.html b/05 Introduction to Financial Python[]/11 Linear Algebra/05 Inverse.html new file mode 100755 index 0000000..ddaa975 --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/05 Inverse.html @@ -0,0 +1,84 @@ +

+ An identity matrix is a square matrix with ones on the main diagonal and zeros elsewhere. Here is an \(n \times n\) identity matrix: +

+ +\[ I_n = \begin{pmatrix} + 1 & 0 & 0 & ... & 0 \\ + 0 & 1 & 0 & ... & 0 \\ + 0 & 0 & 1 & ... & 0 \\ + \vdots & \vdots & \vdots & \ddots & \vdots \\ + 0 & 0 & 0 & ... & 1 +\end{pmatrix} \] + +

+ Multiplying any matrix by an identity matrix (of the correct shape) is like multiplying a number by 1. Concretely, if \(A\) is an \(m \times n\) matrix, then: +

+\[ I_mA = AI_n = A \] +\( A^{-1} \) is the inverse matrix of a square matrix \(A\) if: +\[ AA^{-1} = I = A^{-1}A \] + +

+ Some caveats: +

+
    +
  • A rectangular matrix will not have an inverse, but it may have a pseudoinverse (not covered in this tutorial).
  • +
  • A square matrix may not have an inverse i.e. it may be "singular".
  • +
  • If a square matrix has an inverse, then its inverse is unique.
  • +
+ +

+ Inverse matrices are computed using the Gauss-Jordan method. In NumPy, we use the linalg.inv() function to do it: +

+ +
+ +
print matrix
+print '\n-------------------------\n'
+print np.linalg.inv(matrix)
+[out]:
+[[1 2 3]
+ [2 2 1]
+ [3 2 1]]
+
+-------------------------
+
+[[ 0.   -1.    1.  ]
+ [-0.25  2.   -1.25]
+ [ 0.5  -1.    0.5 ]]
+
+
+ +

+ Now let's check if the multiplication is \(I\): +

+ +
+ +
inverse = np.linalg.inv(matrix)
+print np.dot(matrix, inverse)
+print '\n-------------------------\n'
+print np.dot(inverse,matrix)
+[out]:
+[[  1.00000000e+00  -6.66133815e-16   6.66133815e-16]
+ [  0.00000000e+00   1.00000000e+00   1.11022302e-16]
+ [  0.00000000e+00  -2.22044605e-16   1.00000000e+00]]
+
+-------------------------
+
+[[  1.00000000e+00  -4.44089210e-16  -2.22044605e-16]
+ [  6.66133815e-16   1.00000000e+00   0.00000000e+00]
+ [  0.00000000e+00   0.00000000e+00   1.00000000e+00]]
+
+
+ +

+ Not surprisingly, we ended up with an identity matrix. We can form a non-invertible matrix by making one of its rows a multiple of another: +

+ +
+ +
singular = np.array([[1,2,3],[1,2,3],[3,3,3]])
+inv = np.linalg.inv(singular)
+[out]: numpy.linalg.linalg.LinAlgError: Singular matrix
+
+
diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/06 Linear Equations.html b/05 Introduction to Financial Python[]/11 Linear Algebra/06 Linear Equations.html new file mode 100755 index 0000000..4b36d00 --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/06 Linear Equations.html @@ -0,0 +1,66 @@ +

+ A common problem in linear algebra is solving linear equations. Consider the following linear equations: +

+ +\[ 2x + y - z = 8 \] +\[ -3x - y + 2z = -11 \] +\[ -2x + y + 2z = -3 \] + +

+ If we let: +

+\[ A = \begin{pmatrix} + 2 & 1 & -1 \\ + -3 & -1 & 2 \\ + -2 & 1 & 2 +\end{pmatrix} \qquad +\mathbf{x} = \begin{pmatrix} x \\ y \\ z \end{pmatrix} \qquad +\mathbf{b} = \begin{pmatrix} 8 \\ -11 \\ -3 \end{pmatrix} \] + +

+ Then the linear equations above can be written as \( A\mathbf{x} = \mathbf{b} \) +

+ +

+ If A is invertible, then we can multiply \(A^{-1}\) on both sides of the equation to obtain the solution: +

+\[ A^{-1}A \mathbf{x} = A^{-1}\mathbf{b} \] +\[ \mathbf{x} = A^{-1}\mathbf{b} \] +

+ As long as \(A^{-1}\) exists, we can compute it to solve the linear equations: +

+ +
+ +
A = np.array([[2,1,-1],[-3,-1,2],[-2,1,2]])
+b = np.array([[8],[-11],[-3]])
+inv_A = np.linalg.inv(A)
+print np.dot(inv_A, b)
+[out]:
+[[ 2.]
+ [ 3.]
+ [-1.]]
+
+
+ +

+ The solution is x = 2, y = 3, z = −1. However, computing the inverse matrix is not recommended, since it is numerically unstable i.e. small rounding errors can dramatically affect the result. +

+ +

+ Instead, NumPy solves linear equations by LU decomposition: +

+ +
+ +
print np.linalg.solve(A, b)
+[out]:
+[[ 2.]
+ [ 3.]
+ [-1.]]
+
+
+ +

+ Of course, we get the same solution. We can check the correctness of the solution by substituting x, y and z into the linear equations. +

diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/07 Summary.html b/05 Introduction to Financial Python[]/11 Linear Algebra/07 Summary.html new file mode 100755 index 0000000..06f1c5e --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/07 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we have introduced vectors, matrices, inverse matrices and linear equations. Some applications in finance include: finding arbitrage opportunities by solving linear equations, computing portfolio variance, etc. In the next chapter, we will introduce modern portfolio theory and CAPM. +

diff --git a/05 Introduction to Financial Python[]/11 Linear Algebra/11 Linear Algebra.ipynb b/05 Introduction to Financial Python[]/11 Linear Algebra/11 Linear Algebra.ipynb new file mode 100755 index 0000000..06e6da5 --- /dev/null +++ b/05 Introduction to Financial Python[]/11 Linear Algebra/11 Linear Algebra.ipynb @@ -0,0 +1,234 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "a = np.array([1,2,3])\n", + "b = np.array([2,2,2])\n", + "c = np.array([3,1,1])" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [2 2 1]\n", + " [3 2 1]]\n", + "\n" + ] + } + ], + "source": [ + "matrix = np.column_stack((a,b,c))\n", + "print(matrix)\n", + "print(type(matrix))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [2 2 2]\n", + " [3 1 1]]\n" + ] + } + ], + "source": [ + "matrix2 = np.array([a,b,c])\n", + "print(matrix2)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "A = np.array([[2,3],[4,2],[2,2]])\n", + "B = np.array([[4,2],[4,6]])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[20 22]\n", + " [24 20]\n", + " [16 16]]\n" + ] + } + ], + "source": [ + "x = np.dot(A,B)\n", + "print(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mB\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mValueError\u001b[0m: shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)" + ] + } + ], + "source": [ + "x = np.dot(B,A)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [2 2 1]\n", + " [3 2 1]]\n", + "\n", + "-------------seperation line------------\n", + "\n", + "[[ 3.70074342e-17 -1.00000000e+00 1.00000000e+00]\n", + " [-2.50000000e-01 2.00000000e+00 -1.25000000e+00]\n", + " [ 5.00000000e-01 -1.00000000e+00 5.00000000e-01]]\n" + ] + } + ], + "source": [ + "print(matrix)\n", + "print('\\n-------------seperation line------------\\n')\n", + "print(np.linalg.inv(matrix))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1.00000000e+00 -6.66133815e-16 3.33066907e-16]\n", + " [ 0.00000000e+00 1.00000000e+00 1.11022302e-16]\n", + " [ 0.00000000e+00 -2.22044605e-16 1.00000000e+00]]\n", + "\n", + "-------------seperation line------------\n", + "\n", + "[[ 1.00000000e+00 0.00000000e+00 1.11022302e-16]\n", + " [ 0.00000000e+00 1.00000000e+00 -4.44089210e-16]\n", + " [-1.11022302e-16 0.00000000e+00 1.00000000e+00]]\n" + ] + } + ], + "source": [ + "inverse = np.linalg.inv(matrix)\n", + "print(np.dot(matrix,inverse))\n", + "print('\\n-------------seperation line------------\\n')\n", + "print(np.dot(inverse,matrix))" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 2.]\n", + " [ 3.]\n", + " [-1.]]\n" + ] + } + ], + "source": [ + "A = np.array([[2,1,-1],[-3,-1,2],[-2,1,2]])\n", + "B = np.array([[8],[-11],[-3]])\n", + "inv_A = np.linalg.inv(A)\n", + "print(np.dot(inv_A,B))" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 2.]\n", + " [ 3.]\n", + " [-1.]]\n" + ] + } + ], + "source": [ + "print(np.linalg.solve(A,B))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/01 Introduction.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/01 Introduction.html new file mode 100755 index 0000000..080a35d --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/01 Introduction.html @@ -0,0 +1,4 @@ +

+ The Modern Portfolio Theory (MPT) suggests how investors should spread their wealth across various assets to minimize risk and maximize return. + This chapter is mathematically intense, so don't feel demoralized if you don't understand it on your first reading. +

diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/02 Risk Aversion.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/02 Risk Aversion.html new file mode 100755 index 0000000..1fb2a12 --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/02 Risk Aversion.html @@ -0,0 +1,29 @@ +

+ In portfolio theory, the riskiness of an asset is often measured by the variance (or standard deviation) of its returns. Risk-averse investors do not want their wealth to fluctuate wildly. +

+ +

+ Risk aversion can be illustrated with a simple example. Which of the following assets do you prefer? +

+ +
    +
  • Asset A pays $200 or $0 with 50% probability each.
  • +
  • Asset B pays $400 or −$200 (i.e. you lose $200) with 50% probability each.
  • +
+ +

+ The expected payouts of A and B are: +

+ +\[ \mathbb{E}(A) = 0.5 \times 200 + 0.5 \times 0 = 100 \] +\[ \mathbb{E}(B) = 0.5 \times 400 + 0.5 \times (-200) = 100 \] + +

+ The standard deviation of their payouts are: +

+\[ \sigma_A = \sqrt{0.5(200-100)^2 + 0.5(0-100)^2} = 100 \] +\[ \sigma_A = \sqrt{0.5(400-100)^2 + 0.5(-200-100)^2} = 300 \] + +

+ If you are an risk seeker, you may choose asset B, because you can potentially get a higher payout. MPT assumes that investors prefer asset A since both assets have the same expected payout, but asset A has less risk. +

diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html new file mode 100755 index 0000000..493ae8b --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html @@ -0,0 +1,102 @@ +

+ Suppose we invest some fraction \(w_1, w_2, \dots, w_n\) of our wealth in n risky assets (labelled 1 to n), and the remainder \(w_0\) in a riskless asset such as cash in a bank account. +

+ +

+ Clearly \(w_0 + w_1 + \dots + w_n = 1\) since our wealth comprises all those assets. +

+ +

+ Let \(R_0, R_1, \dots, R_n\) be the respective asset returns, then our portfolio return is +

+ +\[ R_P = w_0 R_0 + w_1 R_1 + \dots + w_n R_n \] + +

+ Alternatively, we can eliminate \(w_0\) to get +

+\[ R_P - R_0 = w_1 (R_1 - R_0) + \dots + w_n (R_n - R_0) \] + +

+ Our expected portfolio return is +

+\[ \mathbb{E}(R_P) = w_0 R_0 + w_1 \mathbb{E}(R_1) + \dots + w_n \mathbb{E}(R_n) \] + +

+ Note that \( \mathbb{E}(R_0) = R_0 \) since the riskless return is known with certainty, by definition. +

+ +

Correlation

+ +

+ Before computing portfolio risk, we need to first understand covariance and correlation. They measure the linear relationship between two random variables. +

+ +

+ The covariance of two random variables X and Y is defined as +

+\[ \text{Cov}(X, Y) = \mathbb{E} \left[ (X-\mathbb{E}(X)) (Y-\mathbb{E}(Y)) \right] \] + +

+ The correlation of X and Y, which is always between −1 and 1, is their covariance after being standardized: +

+\[ \text{Corr}(X, Y) = \text{Cov} \left( \frac{X-\mathbb{E}(X)}{\sigma_X}, \frac{Y-\mathbb{E}(Y)}{\sigma_Y} \right) = \frac{\text{Cov}(X, Y)}{\sigma_X \sigma_Y} \] + +

Risk

+ +

+ Now we are ready to compute portfolio risk, as measured by the variance of portfolio returns: +

+\[ \text{Var}(R_P) = \text{Var}(w_0 R_0 + w_1 R_1 + \dots + w_n R_n) \] + +

+ Recall that \( \text{Var}(X + c) = \text{Var}(X) \) if c is a known constant, so the term \( w_0 R_0 \) involving the riskless return can be omitted. It will be convenient to use sigma notation: +

+ +\[ \text{Var}(R_P) = \text{Var} \left( \sum_{k=1}^n w_k R_k \right) \] +\[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k R_k - \mathbb{E} \left( \sum_{k=1}^n w_k R_k \right) \right)^2\right] \] +\[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k \, \left( R_k - \mathbb{E}(R_k) \right) \right)^2\right] \] + +

+ So we have a squared sum of n terms. How do we expand it? +

+\[ \left( \sum_{k=1}^n u_k \right)^2 = (u_1 + \dots + u_n) \, (u_1 + \dots + u_n) \] + +

+ If we expand the brackets on the right hand side, every term has the form \( u_i u_j \) where i and j can be 1, 2, ... , or n. +

+\[ \left( \sum_{k=1}^n u_k \right)^2 = \sum_{i=1}^n \sum_{j=1}^n u_i u_j \] + +

+ Therefore +

+\[ \text{Var}(R_P) = \mathbb{E} \left[ \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, (R_i - \mathbb{E}(R_i)) (R_j - \mathbb{E}(R_j)) \right] \] +\[ = \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, \text{Cov}(R_i, R_j) \] + +

+ The last step arises from the definition of covariance. The only thing left is to express portfolio risk in matrix notation: +

+ +\[ \text{Var}(R_P) = \mathbf{w}^T \Sigma \mathbf{w} \] +

+ where +

+\[ \mathbf{w} = \begin{pmatrix} w_1 \\ \vdots \\ w_n \end{pmatrix} \qquad +\Sigma = \begin{bmatrix} +\text{Cov}(R_1, R_1) & \text{Cov}(R_1, R_2) & ... & \text{Cov}(R_1, R_n) \\ +\text{Cov}(R_2, R_1) & \text{Cov}(R_2, R_2) & ... & \text{Cov}(R_2, R_n) \\ +\vdots & \vdots & \ddots & \vdots \\ +\text{Cov}(R_n, R_1) & \text{Cov}(R_n, R_2) & ... & \text{Cov}(R_n, R_n) +\end{bmatrix} \] + +

Intuition

+ +

+ How can we make sense of portfolio risk? Consider a simple case with a riskless asset and only n = 2 risky assets. +

+ +\[ \text{Var}(R_P) = w_A^2 \text{Var}(R_A) + w_B^2 \text{Var}(R_B) + 2w_A w_B \text{Cov}(R_A, R_B) \] + +

+ Portfolio risk can be reduced by choosing two assets that are negatively correlated. This is the benefit of diversification. +

diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html new file mode 100755 index 0000000..e60dcab --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html @@ -0,0 +1,65 @@ +

+ We now try to find a portfolio \( \mathbf{w} = (w_1, ..., w_n) \) that minimizes risk and maximizes return. +

+ +

+ The chart below has risk (standard deviation of returns) on the horizontal axis and expected return on the vertical axis. The 10 black points represent individual stocks, while each green / blue point is a portfolio of stocks: +

+CAPM portfolio1 + +

+ Notice that all points (i.e. stocks and portfolios) are enclosed by a hyperbola, known as the efficient frontier. + All portfolios on the efficient frontier have the maximum expected return for a given level of risk, if we only consider portfolios of risky stocks. Can we achieve higher returns by including a riskless asset? Yes. +

+ +

Capital Market Line

+ +

+ The black line on the chart is the Capital Market Line (CML). It is tangent to the efficient frontier and cuts the vertical axis at the riskfree return. The point of tangency represents the so-called market portfolio. + Every point on the CML represents a portfolio comprising the market portfolio and riskless asset in some proportion. Why? + Suppose some fraction w of a CML portfolio is the market portfolio, and the remainder (1 − w) is the riskless asset. Then its expected return is +

+ +\[ \mathbb{E} (R_P) = w \mathbb{E} (R_{\text{market}}) + (1-w) R_0 \] + +

+ Since there is only n = 1 risky asset, the variance of the CML portfolio return is +

+ +\[ \text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}}) \] + +

+ Taking square roots, we deduce that a CML portfolio's risk is proportional to the market portfolio's weight: +

+ +\[ \sigma_P = w \sigma_{\text{market}} \] + +

+ This equation can be used to eliminate w in the calculation of expected return: +

+ +\[ \mathbb{E} (R_P) = R_0 + \frac{\mathbb{E} (R_{\text{market}}) - R_0}{\sigma_{\text{market}}} \sigma_P \] + +

+ This proves that when \( \mathbb{E} (R_P) \) is plotted against \( \sigma_P \), we will obtain a straight line: the CML. +

+ +

Portfolio Selection

+ +

+ Why is the CML significant? For any given level of risk, CML portfolios have a higher return than those on the efficient frontier, so investors should select any of them according to their risk tolerance. + Risk-averse investors may give the riskless asset a larger weight in their portfolio. Risk-seeking investors may borrow money (i.e. sell the riskless asset) to invest >100% of their wealth in the market portfolio. + Regardless of their risk tolerances, all investors should hold the same stocks in the same proportion in the market portfolio. In other words, they should not pick stocks according to their risk tolerance. +

+ +

Diversification

+ +

+ What happens to the efficient frontier and hence the CML if we have only 3 stocks (IBM, GE, and PFE) instead of 10? +

+ +CAPM portfolio2 + +

+ Since we have fewer stocks to choose from, it's not too surprising that our maximum expected return is lower for any level of risk. This demonstrates why diversification is often said to be a "free lunch" in investing. +

diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/05 Summary.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/05 Summary.html new file mode 100755 index 0000000..569da12 --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/05 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we have learnt about the modern portfolio theory. It recommends investors to spread their wealth across many asset classes to maximize returns while minimizing risk. In the next chapter, we will introduce the Capital Asset Pricing Model. +

diff --git a/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html new file mode 100755 index 0000000..309e3c2 --- /dev/null +++ b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html @@ -0,0 +1,9 @@ +

+ Mean-variance analysis is used to optimize portfolios with several strategies. Here we treat Dow 30 stocks as strategy and designed an algorithm to test mean-variance analysis: +

+
+
+
+ +
+
diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial12 Modern Portfolio Theory.ipynb b/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/12 Modern Portfolio Theory.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Financial Python/Tutorial12 Modern Portfolio Theory.ipynb rename to 05 Introduction to Financial Python[]/12 Modern Portfolio Theory/12 Modern Portfolio Theory.ipynb diff --git a/05 Introduction to Financial Python[]/13 Market Risk/01 Introduction.html b/05 Introduction to Financial Python[]/13 Market Risk/01 Introduction.html new file mode 100755 index 0000000..93c047e --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/01 Introduction.html @@ -0,0 +1,3 @@ +

+ In the financial literature, you may hear terms like the "beta" or "market risk" of an asset. This chapter will explain where these terms come from and how they can be useful. +

diff --git a/05 Introduction to Financial Python[]/13 Market Risk/02 Capital Asset Pricing Model.html b/05 Introduction to Financial Python[]/13 Market Risk/02 Capital Asset Pricing Model.html new file mode 100755 index 0000000..ad70283 --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/02 Capital Asset Pricing Model.html @@ -0,0 +1,36 @@ +

+ As we shall see later, the name "Asset Pricing" is a bit misleading because the CAPM tells us the expected return, rather than the price, of an asset. In the last chapter, we introduced the Capital Market Line (CML) shown in black: +

+Tutorial13-capm1 +

+ All investors should hold a portfolio on the CML, which is constructed by investing some fraction w of our wealth in the market portfolio and the remainder (1 − w) in the riskless asset. So the return on a CML portfolio is +

+\[ R = w R_{\text{market}} + (1-w) R_0 \] + +

+ If we let β = w, then the equation above becomes +

+\[ R - R_0 = \beta (R_{\text{market}} - R_0) \] + +

+ Notice that β is a measure of how sensitive our CML portfolio return is to the market return. Taking expectation on both sides results in the CAPM: +

+\[ \mathbb{E}(R) - R_0 = \beta (\mathbb{E} (R_{\text{market}}) - R_0) \] + +

+ Taking covariance on both sides instead yields +

+\[ \text{Cov} (R - R_0, R_{\text{market}}) = \beta \text{Cov} (R_{\text{market}} - R_0, R_{\text{market}}) \] + +

+ Now apply two basic facts about covariance: +

+
    +
  • \( \text{Cov} (X + c, Y) = \text{Cov} (X, Y) \) where \( c \) is constant
  • +
  • \( \text{Cov} (X, X) = \text{Var} (X) \)
  • +
+ +

+ Hence we obtain +

+\[ \beta = \frac {\text{Cov} (R, R_{\text{market}})} {\text{Var} (R_{\text{market}})} \] diff --git a/05 Introduction to Financial Python[]/13 Market Risk/03 Computing beta in Practice.html b/05 Introduction to Financial Python[]/13 Market Risk/03 Computing beta in Practice.html new file mode 100755 index 0000000..3bfb5b9 --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/03 Computing beta in Practice.html @@ -0,0 +1,16 @@ +

+ While the Capital Asset Pricing Model is straightforward, applying it may not be. We first need to choose the timeframe for computing returns: should we use daily, weekly or monthly returns? Then we need to consider the number of data points available for linear regression. For example, if we compute beta using monthly returns in the past 1 year, then we only have 12 data points which is too few. + Furthermore, the β of an asset can change over time. The following plot is the daily rolling beta of GE stock with a 6-month rolling windows: +

+ +Tutorial13-rolling-beta2.png + +

+ The β of GE ranged from 0.1 to 0.5 approximately. This is why you need to be careful when using β. It makes no sense to talk about β without a timeframe in mind. +

+ +

+ The following graph is the rolling p-value of beta. The p-value stays close to zero most of the time. However, during some period it suddenly increased close to 0.1, which corresponds to a 90% confidence interval. This might be caused by some mispricing or market turmoil. +

+ +Tutorial13-Rolling-p-value3.png diff --git a/05 Introduction to Financial Python[]/13 Market Risk/04 Market-Neutral.html b/05 Introduction to Financial Python[]/13 Market Risk/04 Market-Neutral.html new file mode 100755 index 0000000..286f056 --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/04 Market-Neutral.html @@ -0,0 +1,53 @@ +

+ A portfolio is market-neutral if its β is zero. In other words, the portfolio's returns are uncorrelated with market returns. We say that it has no "market risk". Some classical market-neutral strategies are pairs trading, beta-hedged equity portfolio and other derivatives strategies. + We have daily returns of Dow 30 stocks from March 2012 to Jan 2015. For each stock, its β on any given day is computed using the past 6 months' returns. As this 6-month window moves forward in time, β will of course change. + Once we know how each stock's β has changed over time, we can ask: which stocks' betas are correlated with each other? The table below shows the correlation between each stock's beta. +

+ +Tutorial13-correlation4.png +

+ How can we construct a market-neutral portfolio? Consider two stocks A and B: +

+\[ R_A = R_0 + \beta_A (R_{\text{market}} - R_0) \] +\[ R_B = R_0 + \beta_B (R_{\text{market}} - R_0) \] + +

+ Let's allocate w on stock A and (1 − w) on stock B, then market neutrality means +

+\[ w\beta_A + (1-w) \beta_B = 0 \qquad \Rightarrow \qquad + w = \frac{\beta_B}{\beta_B - \beta_A} \] + +

+ As mentioned earlier, \(\beta_A\) and \(\beta_B\) will change with time, so will \(w\) in a market-neutral portfolio. However we can achieve market neutrality with constant \(w\) so long as \(\beta_A\) and \(\beta_B\) have a linear relationship: +

+\[ \beta_A = m\beta_B + c \] + +

+ Then eliminate \(\beta_A\) to get +

+\[ w = \frac{\beta_B}{(1-m) \beta_B - c} \] + +

+ If c ≈ 0 then w is roughly constant: +

+\[ w = \frac{1}{1-m} \] + +

+ Note: If c is signficant, then we need 3 stocks to get zero net beta. Usually 2 stocks are sufficient to cancel out most of the market risk. +

+ +

Example

+ +

+ The 6-month rolling betas of PG and KO stocks have a correlation of 93%. The linear relationship between their betas is +

+\[ \beta_{KO} = -0.0097 + 0.969 \beta_{PG} \] + +

+ Therefore the market neutral weights are +

+\[ w_{KO} = \frac{1}{1-0.969} = 32.3 \qquad w_{PG} = 1 - w_{KO} = -31.3 \] + +

+ We tested this portfolio both in-sample (March 2012 to Jan 2015) and out-of-sample. It achieved a beta of 0.01 and -0.004 respectively. See the backtest below. +

diff --git a/05 Introduction to Financial Python[]/13 Market Risk/05 Summary.html b/05 Introduction to Financial Python[]/13 Market Risk/05 Summary.html new file mode 100755 index 0000000..102ee5d --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/05 Summary.html @@ -0,0 +1,3 @@ +

+ This chapter has explained what market risk means in the context of CAPM, and how market risk can be reduced. In the next chapter we will generalize CAPM to multi-factor models, such as the Fama-French models. +

diff --git a/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html b/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html new file mode 100755 index 0000000..64474c1 --- /dev/null +++ b/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html @@ -0,0 +1,13 @@ +
+
+
+ +
+
+ +
+
+
+ +
+
diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.ipynb b/05 Introduction to Financial Python[]/13 Market Risk/13 Market Risk.ipynb old mode 100644 new mode 100755 similarity index 99% rename from Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.ipynb rename to 05 Introduction to Financial Python[]/13 Market Risk/13 Market Risk.ipynb index 12cde27..9990b04 --- a/Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.ipynb +++ b/05 Introduction to Financial Python[]/13 Market Risk/13 Market Risk.ipynb @@ -69,15 +69,6 @@ "spy = np.log(spy['Last Close']).diff().dropna()" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": 43, @@ -171,7 +162,7 @@ "beta_list = [x.r.beta_df['beta'] for x in stocks if len(x.r.beta_df['beta']) != 0]\n", "sd_beta_p = [np.std(x.r.beta_df['beta_p']) for x in stocks]\n", "df = pd.DataFrame({'mean_beta':mean_betas,'sd_beta':sd_betas,'sd_beta_p':sd_beta_p},index = tickers).dropna()\n", - "print df" + "print(df)" ] }, { @@ -194,8 +185,7 @@ "cov_matrix = np.corrcoef(beta_list)\n", "cov_df = pd.DataFrame(cov_matrix)\n", "plt.figure(figsize = (20,10))\n", - "sns.heatmap(cov_df, xticklabels = df.index, yticklabels = df.index,annot=True,cmap=\"YlGnBu\")\n", - "plt.show()" + "sns.heatmap(cov_df, xticklabels = df.index, yticklabels = df.index,annot=True,cmap=\"YlGnBu\")" ] }, { @@ -218,8 +208,7 @@ "plt.figure(figsize = (20,10))\n", "p_df = pd.DataFrame({'XOM':PG.r.beta_df['beta'],'PG':XOM.r.beta_df['beta']})\n", "plt.plot(KO.r.beta_df['beta'])\n", - "plt.plot(PG.r.beta_df['beta'])\n", - "plt.show()" + "plt.plot(PG.r.beta_df['beta'])" ] }, { @@ -263,20 +252,11 @@ "source": [ "x = sm.add_constant(PG.r.beta_df['beta'])\n", "coint = sm.OLS(KO.r.beta_df['beta'],x).fit()\n", - "print coint.summary()\n", + "print(coint.summary())\n", "adf = ts.adfuller(coint.resid,autolag = 'BIC')[0]\n", - "print adf" + "print(adf)" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": 12, @@ -295,19 +275,9 @@ ], "source": [ "plt.figure(figsize = (20,10))\n", - "plt.scatter(df['sd_beta'],df['sd_beta_p'])\n", - "plt.show()" + "plt.scatter(df['sd_beta'],df['sd_beta_p'])" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": 13, @@ -333,21 +303,21 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 2", + "display_name": "Python 3", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" + "pygments_lexer": "ipython3", + "version": "3.6.4" } }, "nbformat": 4, diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/01 Introduction.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/01 Introduction.html new file mode 100755 index 0000000..2f41a50 --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/01 Introduction.html @@ -0,0 +1,7 @@ +

+ In previous chapters, we learnt that the Capital Asset Pricing Model (CAPM) treats the market return as the only factor affecting the return of any asset. This chapter will generalize CAPM to multi-factor models of the following form: +

+\[ R = \alpha + \beta_1 f_1 + \beta_2 f_2 + \dots + \beta_n f_n \] +

+ where each \(f_i\) is a factor. +

diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html new file mode 100755 index 0000000..1f83f6d --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/02 Fama-French Three-Factor Model.html @@ -0,0 +1,17 @@ +

+ This model was proposed in 1993 by Eugene Fama and Kenneth French to describe stock returns. The 3-factor model is +

+\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML \] + +

+ where +

+
    +
  • MKT is the excess return of the market. It's the value-weighted return of all CRSP firms incorporated in the US and listed on the NYSE, AMEX, or NASDAQ minus the 1-month Treasury Bill rate.
  • +
  • SMB (Small Minus Big) measures the excess return of stocks with small market cap over those with larger market cap.
  • +
  • HML (High Minus Low) measures the excess return of value stocks over growth stocks. Value stocks have a higher book to price ratio (B/P) than growth stocks.
  • +
+ +

+ Data on these factors can be downloaded from French's website. +

diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/03 Model Test.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/03 Model Test.html new file mode 100755 index 0000000..29d8539 --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/03 Model Test.html @@ -0,0 +1,19 @@ +

+ To test the 3-factor model, we use it to predict returns on NASDAQ US Small Cap Index and NASDAQ US Large Cap Index. We estimate the model with daily returns in the past 6 years. +

+ +

+ Results for US Small Cap returns: +

+Tutorial14-regression1.png + +

+ The coefficient of SMB is positive, so when small caps outperform large caps, the Small Cap Index will have higher returns, which is not surprising. By comparing the t statistics of those factors, we know that MKT and SMB are more important factors driving the Small Cap Index. +

+

+ Results for US Large Cap returns: +

+Tutorial14-regression2.png +

+ As expected, the coefficient of SMB is negative for the Large Cap Index. The coefficient of HML is quite low, which suggests that value and growth stocks take approximately the same weight in the Large Cap Index. +

diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/04 Factor Returns.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/04 Factor Returns.html new file mode 100755 index 0000000..5da096f --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/04 Factor Returns.html @@ -0,0 +1,13 @@ +

+ The Fama-French 5-Factor model comprises two more factors: +

+
    +
  • RMW (Robust Minus Weak) measures the excess returns of firms with high operating profit margins over those with lower profits.
  • +
  • CMA (Conservative Minus Aggressive) measures the excess returns of firms investing less over those investing more.
  • +
+ +

+ RMW was proposed by Novy-Marx (2013) who wrote that: + "Controlling for gross profitability explains most earnings related anomalies, and a wide range of seemingly unrelated profitable trading strategies." CMA was proposed by Fama and French (2014). + The article pointed out that: "A five-factor model directed at capturing the size, value, profitability, and investment patterns in average stock returns is rejected on the GRS test, but for applied purposes it provides an acceptable description of average returns." Finally, momentum is another commonly used factor. It captures excess returns of stocks with highest returns over those with lowest returns +

diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html new file mode 100644 index 0000000..d2b7e7a --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html @@ -0,0 +1,3 @@ +

+ In this chapter we expand Capital Asset Pricing Model (CAPM) into multi-factor models: the Fama-French factor models in particular. They are the most empirically successful multi-factor models by far, and are commonly used in practice. +

diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html new file mode 100644 index 0000000..3eb4334 --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html @@ -0,0 +1,15 @@ +

+ Multi-factor strategies are stock picking strategies. Here we try to implement a 2013 paper published by AQR Capital Management. + The paper recommends picking stocks by their value, quality (profitability) and momentum. + The empirically successful measure of value is book-to-price ratio (B/P), but other measures can be used simultaneously to form a more robust and reliable view of a stock's value. The paper uses 5 measures: book-to-price, earnings-to-price ratio (EPS), forecasted EPS, cash flow-to-enterprise value and sales-to-enterprise value. + The paper suggested a few quality measures: total profit over assets, gross margin and free cash flow over assets. There are also various measures of momentum. 1-year momentum, fundamental momentum and returns around earnings announcement are good choices. +

+

+ In our backtested strategy, we used operating profit margin to measure quality, book value per share to measure value, and 1-month momentum. The portfolio was rebalanced every month. You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy. +

+
+
+
+ +
+
diff --git a/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html new file mode 100644 index 0000000..eb7216e --- /dev/null +++ b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html @@ -0,0 +1,20 @@ +
    +
  1. + mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/f-f_factors.html +
  2. +
  3. + AQR (2013). A New Core Equity Paradigm: Using Value, Momentum, and Quality to Outperform Markets. Retrieved from www.aqr.com/~/media/files/papers/aqr-a-new-core-equity-paradigm.pdf +
  4. +
  5. + Robert Novy-Marx (2013). The Other Side of Value: The Gross Profitability Premium Journal of Financial Economics 108 (1), 1-28. Retrieved from rnm.simon.rochester.edu/research/OSoV.pdf +
  6. +
  7. + Fama, E F; French, K R (2015). A Five-Factor Asset Pricing Model. 116: 1–22. doi:10.1016/j.jfineco.2014.10.010. Retrieved from www8.gsb.columbia.edu/programs/sites/programs/files/finance/Finance%20Seminar/spring%202014/ken%20french.pdf +
  8. +
  9. + Robert Novy-Marx (2013). The Other Side of Value: The Gross Profitability Premium Journal of Financial Economics 108 (1), 1-28. Retrieved from rnm.simon.rochester.edu/research/OSoV.pdf +
  10. +
  11. + Fama, E. F. & French, K. R. (1993). Common risk factors in the returns on stocks and bonds. Journal of Financial Economics, 33, 3-56. doi: 10.1016/0304-405X(93)90023-5. Retrieved from rady.ucsd.edu. +
  12. +
diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial14 Fama-French Multi-Factor Models.ipynb b/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/14 Fama-French Multi-Factor Models.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Financial Python/Tutorial14 Fama-French Multi-Factor Models.ipynb rename to 05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/14 Fama-French Multi-Factor Models.ipynb diff --git a/06 Introduction to Options[]/01 General Features of Options/01 Introduction.html b/06 Introduction to Options[]/01 General Features of Options/01 Introduction.html new file mode 100755 index 0000000..c07ec6b --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/01 Introduction.html @@ -0,0 +1,3 @@ +

+In this tutorial, we will discuss the basic features of options to help you gain insight on what the option is, how options market is organized and how these contracts are traded. Then we will discuss the settlement rules of option contracts and the moneyness of options. +

diff --git a/06 Introduction to Options[]/01 General Features of Options/02 Definition.html b/06 Introduction to Options[]/01 General Features of Options/02 Definition.html new file mode 100755 index 0000000..43a2e71 --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/02 Definition.html @@ -0,0 +1,45 @@ +

+ An option is a type of financial derivative. Derivatives are financial contracts and its value is dependent on or derived from underlying assets. The underlying assets could be stocks, indices, commodities, currencies, exchange rates, or the interest rate. When you trade options contracts, it can help you generate profits by betting on the future value or just the moving direction of the underlying assets. So, their value is derived from that of the underlying asset. This is why options are called derivatives. +

+

+ Puts and calls are two basic classes of options. Call options give the buyer the right to buy the underlying asset at a certain price while put options endow the buyer the rights to sell them. For strict definition, a call/put option is a standardized contract that gives the buyer the right to buy/sell an agreed quantity n of underlying asset S, at a predetermined price K at maturity T. The seller of a call/put option is obliged to sell/buy the underlying assets if the buyer exercises the option. +

+

+ First, we give the building blocks of an option contract and will discuss them further. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StyleAmerican Option: the holder of an option has the right to exercise his option at any time before the expiration date +European Option: an option which can only be exercised on its expiration date
TypeCall option, Put option
Underlying AssetThe security on which the option is bound. The underlying could be stocks(stock option), stock indices(index option), exchange rate(Foreign exchange option) or even futures(Futures Options). +Note: The options in the tutorial refer to the stock options.
PremiumThe price of the option. (Premiums are quoted on a per share basis). +The option premium depends on the strike price, volatility of the underlying, as well as the time remaining to expiration.
Strike PriceThe specified price at which the stock can be bought or sold when the option is exercised.
Expiration DateThe last day that an options contract is valid. All options expire after a certain period of time. The right to exercise the option will no longer exist once the stock option expires.
ParticipantsHolder: People who buy the options(have long positions) +Writer: People who sell the options(have short positions)
diff --git a/06 Introduction to Options[]/01 General Features of Options/03 Options Contract.html b/06 Introduction to Options[]/01 General Features of Options/03 Options Contract.html new file mode 100755 index 0000000..b23a213 --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/03 Options Contract.html @@ -0,0 +1,9 @@ +

+ Stock options are traded in units. Each contract entitles the option buyer/owner 100 shares of the underlying stock upon expiration. Thus, if you buy five call option contracts, you are acquiring the right to purchase 500 shares at expiration. For any given asset at any given time, an option can be bought or sold with multiple expiration dates and strikes. Suppose there are three expiration dates and four strike prices for options on a particular stock, there are a total of 24 different contracts if we consider both put and call options. Currently, all equity options traded on U.S. options exchanges are American-style. But many index options are European-style. +

+

+ Let us use the example of Apple. You can buy and sell Apple shares (NASDAQ: AAPL), and you can also buy and sell Apple options. But not all stocks have options associated with them. This means that there may be no options available to buy or sell written on a certain stock. You can view the websites of the exchanges to find out which stocks do have options. +

+

+ In this case, the stock AAPL is known as the underlying asset. The share price of AAPL is the underlying price. And a series of options contracts written on Apple are derivatives. Option contracts have their own symbols. For example, AAPL170728C00143000 is one of the option contracts, it is a call option and the strike price is $143. The contract expires on July 28th. The premium for this contract is $10. If you spend $10 cost on buying one contract, then you get the right to buy 100 shares of AAPL for $143 per share at any time before the expiration date. +

diff --git a/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html b/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html new file mode 100755 index 0000000..b392bbd --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html @@ -0,0 +1,16 @@ +

+ The option's premium consists of two parts: the intrinsic value and the time value. +

+
+\[Intrinsic Value_{call} = max(Current Underlying Price-Strike Price,0)\] +\[Intrinsic Value_{put} = max(Strike Price-Current Underlying Price,0)\] +
+

+ From the equations above, only in the money options have intrinsic value. After we know the intrinsic value, the time value is the difference between the options premium and the intrinsic value. +

+
+\[Time Value= Premium-Intrinsic Value\] +
+

+For example, an AAPL call option contract which expires after 10 days has strike $143 and premium $10. now the market price of AAPL is $150. The intrinsic value of this contract is 150-143=$7, the time value is 10-7=$3. Although the intrinsic value of OTM and ATM options is zero, they have time values if they still have a certain amount of time until the option expires so for OTM and ATM options, their premiums equal their time values. +

diff --git a/06 Introduction to Options[]/01 General Features of Options/05 Options Moneyness.html b/06 Introduction to Options[]/01 General Features of Options/05 Options Moneyness.html new file mode 100755 index 0000000..a089ece --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/05 Options Moneyness.html @@ -0,0 +1,30 @@ +

+ Option moneyness describes the relationship between an option's strike price and the underlying asset's price. It has important implications for options trading. +

+ + + + + + + + + + + + + + + +
At the Money(ATM)The strike price is the same as the current price of the underlying asset
In the Money(ITM)Call Option: the strike price is below the current trading price of the underlying +Put option: the strike price is above the spot price of the underlying
Out of the Money(OTM)Call Option: the strike price is above the current trading price of the underlying +Put Option: the strike price is below the current trading price of the underlying
+

+ For example, if the price of Apple stock is at $140, then all calls with a strike price below $140 are in the money calls, all puts with a strike price above $140 are in the money puts. All calls with a strike price above $140 are out of the money calls, all puts with a strike price below $140 are out of the money puts. +

+

+ But why are they in the money or out of the money? For a call option as an example, it is ITM because it already has an intrinsic value. If you buy the call option and own the right to buy AAPL at strike price $143 and the current market price is $150, then this call option is in the money 150-143=$7. If you need to exercise it, you can buy shares of AAPL at $143 and sell them immediately for $150 and secure $7 profit. +

+

+ Likewise, for a call option, it is OTM because it doesn't have any intrinsic value. If you buy the call option and own the right to buy AAPL at strike price $143 and the current market price is $130, then this call option is out of the money 130-143=-$13. If you need to exercise it, you can buy shares of AAPL at $143 and sell them immediately for $130 and then you will lose $13. In this case, you would not do that. But why this kind of OTM options still traded in the market and you need to pay for them? That because they still have time values and have time to expiration. There is probability or there is the expectation from the OTM option holders that the apple price will go up and above the strike price before the expiration. +

diff --git a/06 Introduction to Options[]/01 General Features of Options/06 Exercise and Assignment.html b/06 Introduction to Options[]/01 General Features of Options/06 Exercise and Assignment.html new file mode 100755 index 0000000..933c12d --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/06 Exercise and Assignment.html @@ -0,0 +1,18 @@ +

+ When you are the buyer of an option you have three ways to deal with your options. +

+
    +
  • You can close out the position at any given point prior to expiration (For buyers, write options and for sellers, buy options);
  • +
  • Wait until the expiration date and out-of-the-money options will become worthless;
  • +
  • Exercise the options which are in-the-money, resulting in a trade of the underlying stock (The seller will be assigned the obligation to sell or buy the underlying stocks)
  • +
+

+ For all of those methods, closing out an option in the market is the most frequently used method. At the expiration, you need to deal with the option exercise if you long the options. If you short put or call options, you have to think about the assignment. +

+
    +
  • Exercise: Exercising option means that the option holder executes the right to buy or sell the underlying assets at the strike price.
  • +
  • Assignment: When an option is exercised by the option holder, the option writer will be assigned the obligation to deliver the terms of the options contract. This is called the option assignment.
  • +
+

+ To be concrete, if you write a call option and the option holder decides to exercise, then you must sell the obligated quantity of the underlying security at the strike price to the option holder. Suppose you hold the underlying shares while writing the call option (covered call), those shares would be transferred from you to your counterpart. If you do not hold those shares in your account (naked call), you would then short those shares and deliver them to your counterpart. In another case, if you short a put and the holder decides to exercise, then you must buy those shares. You would now long shares in your account and don't hold options. +

diff --git a/06 Introduction to Options[]/01 General Features of Options/07 Summary.html b/06 Introduction to Options[]/01 General Features of Options/07 Summary.html new file mode 100755 index 0000000..4ec6d53 --- /dev/null +++ b/06 Introduction to Options[]/01 General Features of Options/07 Summary.html @@ -0,0 +1,3 @@ +

+ An option is a standardized contract between two parties to buy or sell an asset for a certain price. Options are pretty different from equity trading. Here we concerned primarily with the stock options. This chapter we present some introductory material on options market like the basic features of options contracts and the options trading mechanism. In addition, we explain how options markets are organized, how the contracts are traded. Next chapter we will take a close look at how to use QuantConnect API to start your options trading algorithm. +

diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/01 Introduction.html b/06 Introduction to Options[]/02 QuantConnect Options API/01 Introduction.html new file mode 100755 index 0000000..fd8f150 --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/01 Introduction.html @@ -0,0 +1,3 @@ +

+ QuantConnect provides US options trade and quotes price data for approximately 4000 symbols, each of which has roughly 10 strikes on average. Data is available starting January 1st, 2008. In this tutorial, we will discuss how to use QuantConnect to start your options trading algorithm. +

diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html b/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html new file mode 100755 index 0000000..44c5959 --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html @@ -0,0 +1,35 @@ +

+ Before trading options, you need to add options for a given underlying equity and set the resolution in step Initialize with AddOption method. The commonly used parameters will be explained in the method table. Please refer to the link below for details of each method. +

+ + + + + + + + + + + + + +
MethodParameters
AddOption(underlying, +resolution, +fillDataForward)underlying(string): The underlying equity symbol +resolution: Tick, Second, Minute, Hour, or Daily. Default is minute +fillDataForward(bool): If true, returns the last available data even if none in that time slice. The default value is true.
+
+ +
def Initialize(self):
+    self.SetStartDate(2017, 1, 1)  #Set Start Date
+    self.SetEndDate(2017, 6, 30)  #Set End Date
+    self.SetCash(50000)  #Set Strategy Cash
+    equity = self.AddEquity("GOOG", Resolution.Minute) # Add the underlying stock: Google
+    option = self.AddOption("GOOG", Resolution.Minute) # Add the option corresponding to underlying stock
+    self.symbol = option.Symbol
+
+
+

+ The return value of AddOption method is an option security object , please refer to the link for detailed properties and methods of option class. +

diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/03 Filter Contracts.html b/06 Introduction to Options[]/02 QuantConnect Options API/03 Filter Contracts.html new file mode 100755 index 0000000..be1a2be --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/03 Filter Contracts.html @@ -0,0 +1,43 @@ +

+ After adding the options for specific underlying stock,  you can set the filter criteria with SetFilter method to pull contracts using the specified min and max strike and expiration range values you need for a given symbol. +

+ + + + + + + + + + + + + + +
MethodParameters
SetFilter( +min strike, +max strike, +minexpiry, +maxExpiry)min Strike, max Strike: The min and max strike rank relative to market price +min Expiry, max Expiry: The range of time to expiration to include, for example, TimeSpan.FromDays(10) would exclude contracts expiring in less than 10 days
+

+ Here parameters min Strike and max Strike are the relative multipliers with respect to the market price. We use Google(NASDAQ: GOOG) as an example to describe the filter criteria. If today is 01/03/2017, the market price of underlying stock is $776, the strike prices of GOOG options are spaced $2.5. Then SetFilter(-1, +2, timedelta(0), timedelta(90)) will fist look up at the money contracts with strike being K=$777.5 (Here K is 777.5 the next closest multiple to the underlying price of 775 since rarely will an option be ATM exactly). Then SetFilter will look for options with strikes between and including ( 777.5 - 2.5*1, 777.5 + 2.5*2). The time to expiration of these options are restricted within 90 days from now on.  +

+

+ For the strike, the exchange normally chooses the strike prices at which options can be written so that they are spaced $2.50, $5, or $10 apart. Typically the spacing is $2.50 when the stock price is between $5 and $25, $5 when the stock price is between $25 and $200, and $10 for stock prices above $200. So you should carefully choose the parameters of min strike and max Strike in case there are no contracts that satisfy the filter criteria if the range is too small, less than the minimum units of strike prices change. +

+

+ For the expiry, there are many expiration dates that apply to the different series of options. An option cycle is the pattern of months in which options contracts expire. There are three kinds of common option cycles. The options on the January cycle have contracts available in the first month of each quarter (January, April, July and October). Options assigned to the February cycle use the middle month of each quarter (February, May, August and November). And options in the March cycle have options available during the last month of each quarter (March, June, September and December). In addition, individual stock options typically expire in the current month and the subsequent month. +

+ +
+ +
# filter the contracts with strikes between (market price - 10, market price + 10)
+option.SetFilter(-10,10)
+# filter the contracts which expires more than 30 days but no longer than 60 days
+option.SetFilter(TimeSpan.FromDays(30),TimeSpan.FromDays(60))
+# filter the contracts with strikes between(ATM Strike - 10 * strike space value, market price + 10 * strike space value) and with expiration days less than 180 days
+option.SetFilter(-10, +10, timedelta(0), timedelta(180))
+
+
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html new file mode 100755 index 0000000..07ea589 --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html @@ -0,0 +1,189 @@ +

+ For QuantConnect API, Slice class provides a data structure for all of an algorithm's data at a single time step. So you need use property Slice.OptionChains to request options data for this slice. + +OptionChains is a collection of  OptionChain keyed by the option's underlying symbol. The elements in Slice.OptionChains have properties Key(the underlying symbol object) Value(the option chain). + +OptionChain  represents an entire chain of option contracts for a single underlying security. In other words, It is a list of option contracts. + +OptionContract defines a single option contract at a specific expiration and strike price. For any contract x in option chain, you can use the following statements to check different options properties. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Properties of Option Contract x
x.Symbol.Value Get the string of option contract's symbol
x.AskPrice, x.BidPrice Get the ask price,  Get the bid price
x.Expiry Get the expiration date
x.Strike Get the strike price
x.ImpliedVolatility Get the implied volatility
x.GreeksGet the Greeks letter
x.RightGet the right being purchased +x.Right = 0  call option[right to buy] +x.Right = 1  put option[right to sell]
x.UnderlyingLastPriceGet the last price the underlying security traded at
x.UnderlyingSymbolGets the underlying security's symbol
+ +

+ We can print out the details of the contract after filtering with Python data frame to show these properties. Assume today is 01/03/2017.  The stock price at 01/03/2017 09:31:00 is $776.01 per share. Here we use  SetFilter(-1, +1, timedelta(0), timedelta(60)) to filter the contracts. +

+ +
+ +
def OnData(self,slice):
+    for i in slice.OptionChains:
+        if i.Key != self.symbol: continue
+        optionchain = i.Value
+        self.Log("underlying price:" + str(optionchain.Underlying.Price))
+        df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
+                           index=[x.Symbol.Value for x in optionchain],
+                           columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
+        self.Log(str(df))
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Symboltype(call 0, put 1)StrikeExpiryAsk PriceBid Price
GOOG 170217C007800000780.02017-02-1726.427.9
GOOG 170120P007825001782.52017-01-2014.716.3
GOOG 170120C007825000782.52017-01-209.410.2
GOOG 170120P007800001780.02017-01-2013.415.0
GOOG 170120C007800000780.02017-01-2010.611.5
GOOG 170217P007800001780.02017-02-1728.930.8
GOOG 170120P007775001777.52017-01-2012.213.7
GOOG 170120C007775000777.52017-01-2011.812.9
+ +

+ Here we give an example of how to find ATM, ITM OTM contracts for trading. First, we need to extract the OptionChain from OptionChains according to symbols we added in Initialize step. Secondly, we extract ATM, ITM and OTM contracts by using UnderlyingLastPrice and Strike properties. Note here the strikes of ATM options are not exactly the same as the market price of underlying stocks, thus here we first sort the contracts by the absolute values of the difference between the UnderlyingLastPrice and the Strike. Then we choose the contract with the minimum absolute value as the ATM contract. +

+ +
+ +
for i in slice.OptionChains:
+    if i.Key != self.symbol: continue
+    optionchain = i.Value
+    # differentiate the call and put options
+    call = [x for x in optionchain if x.Right == 0]
+    put = [x for x in optionchain if x.Right == 1]
+    # choose ITM call contracts
+    contracts = [x for x in call if x.UnderlyingLastPrice - x.Strike > 0]
+    # or choose ATM contracts
+    contracts = sorted(optionchain, key = lambda x: abs(x.UnderlyingLastPrice - x.Strike))[0]
+    # or choose OTM call contracts
+    contracts = [x for x in call if x.UnderlyingLastPrice - x.Strike < 0]
+    # sort the contracts by their expiration dates
+    contracts = sorted(contracts, key = lambda x: x.Expiry, reverse = True)
+
+
+

+ Finally, we trade the options by using the contract's symbol. +

+ +
+ +
if len(contracts) == 0: continue
+# trade the contracts with the farthest expiration
+symbol = contracts[0].Symbol
+self.MarketOrder(symbol, 1)
+self.MarketOnCloseOrder(symbol, -1)
+
+
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html b/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html new file mode 100755 index 0000000..e485feb --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html @@ -0,0 +1,9 @@ +

+ This simple example demonstrates how you can inspect the option chain to pick a specific option contract to trade. +

+
+
+
+ +
+
diff --git a/06 Introduction to Options[]/02 QuantConnect Options API/06 Summary.html b/06 Introduction to Options[]/02 QuantConnect Options API/06 Summary.html new file mode 100755 index 0000000..10bbff9 --- /dev/null +++ b/06 Introduction to Options[]/02 QuantConnect Options API/06 Summary.html @@ -0,0 +1,4 @@ +

+ After mastering the basic knowledge of options market, this tutorial we take a close at how to use Quantconnect to customize your own options trading. For example, how you can access an option chain, how to view the details of the contract as a Python data frame, and the most important how to trade the specific option contract. + Next chapter we will examine some important topics of options like the payoff, Put-Call parity, and the synthetic positions. By learning all those concepts, we will start some brief hedging strategies involving options. +

diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/01 Introduction.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/01 Introduction.html new file mode 100755 index 0000000..6684954 --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/01 Introduction.html @@ -0,0 +1,3 @@ +

+ In this chapter, we will discuss the option's payoff if you long or short the options. Then we discuss the put-call parity which is a relationship between the price of a European call option, the price of a European put option, and the underlying stock price. In addition, an application of put-call parity in arbitrage trading strategies was demonstrated. +

diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Option Payoff.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Option Payoff.html new file mode 100755 index 0000000..7f3f36a --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Option Payoff.html @@ -0,0 +1,75 @@ +

+ Consider Google(NASDAQ: GOOG) is trading at $910 now and you are bullish on this stock and expect it to rise over the next three months. The minimum capital requirement to buy 100 shares of GOOG is $90000 but you only have limited capital for stock investors. You could buy 1 call option contract written on GOOG which expires after three months with a $900 strike price. If GOOG rises to $950 in three months, you can get  ($950 - $900) *100 = $5000 by paying just a small amount of premium instead of a full cost of shares. Even if the share price of GOOG falls below $900, you lose only the premium. This is one of the biggest benefits of trading options and is also called the financial leverage. Without borrowing the capital, you can control a larger number of shares by investing in options other than purchasing the shares themselves. +

+

+ From the above example, the investor will buy a European call if he has a bullish view on the market and believes the underlying stock price will be above the strike price at the expiry date. He will make money when the underlying price goes up and lose when it goes down. The payoff of a call option at T is +

+\[Call_{payoff}=max[0,S_T-K]\] +

+ On the other hand, an investor will buy a European put if he is bearish about the market and believes that the underlying stock price will be below the strike at the expiry date. He will make money when the underlying price goes down and lose when it goes up. The European put payoff at T is +

+\[Put_{payoff}=max[0,K-S_T]\] +

+Where \(S_T\) is the price of underlying assets at maturity. K is the strike price. +

+

+ We use the GOOG option contract to show the call and put option payoff. The current share price of GOOG is $945 at 07/12/2017. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Contract NameTypeExpire DateStrike Premium
 GOOG170714C00940000 Call 07/14/2017 $940 $7.5
GOOG170714P00960000 Put 07/14/2017 $960 $19.5
+If you long these two options, the payoff at expiration date would be as follows +
+ +
import matplotlib.pyplot as plt
+%pylab inline
+price = np.arange(900,1000,1)
+strike = 940
+premium = 7.5
+payoff = [max(-premium, i - strike-premium) for i in price]
+plt.plot(price, payoff)
+plt.xlabel('Price at T S_T ($)')
+plt.ylabel('payoff')
+plt.title('Call option Payoff at Expiry')
+plt.grid(True)
+price = np.arange(900,1000,1)
+strike = 960
+premium = 19.5
+payoff = [max(-premium, strike - i -premium) for i in price]
+plt.plot(price, payoff)
+plt.xlabel('Price at T S_T ($)')
+plt.ylabel('payoff')
+plt.title('Put option Payoff at Expiry')
+plt.grid(True)
+
+
+call options payoff      +put options payoff + +

+ The above payoff diagrams illustrate the cash payoff on an option at the expiration date. For a call option, the net payoff is negative if the price of the underlying asset is less than the strike price(The negative payoff comes from the premium). If the underlying price exceeds the strike price, the gross payoff is the price of the underlying asset minus the strike price and the premium. For a put option, the net payoff is positive if the underlying price is less than the strike price. If the price of the underlying asset exceeds the strike price, the gross payoff is negative because you pay the premium for purchasing the contracts. +

diff --git a/Tutorial Series/Introduction to Options/Tutorial03 Put-Call Parity and Arbitrage Strategies.ipynb b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Put-Call Parity and Arbitrage Strategies.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial03 Put-Call Parity and Arbitrage Strategies.ipynb rename to 06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Put-Call Parity and Arbitrage Strategies.ipynb diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/03 Put-Call Parity.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/03 Put-Call Parity.html new file mode 100755 index 0000000..2f936a2 --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/03 Put-Call Parity.html @@ -0,0 +1,37 @@ +

+ Put-Call parity describes the relationship between the price of a European put and a call options with the identical strike price K, expiry T and their underlying stock's price. Next, we will demonstrate how to derive the put-call parity according to John Hull's book. +

+

We consider two portfolios as follows,

+

+ Portfolio A: buy one European call option (underlying non-dividend-paying stock S, strike K, expiring at T) plus a zero-coupon bond which pays K at T +

+

+ Portfolio B: sell one European put option (underlying non-dividend-paying stock S, strike K, expiring at T) plus one share of underlying stock S +

+ + + + + + + + + + + + + + + + + + +
 Payoff \(S_t > K\)\(S_t < K\)
Portfolio A\(S_t - K+K=S_t\)\(0+K=K\)
Portfolio B\(0+S_t =S_t\)\(K-S_t+S_t=K\)
+

+ From the above table we can see that in all states, Portfolio A has the same payoff at the options' expiration date as Portfolio B. Thus the present value of two portfolios must be the same. Otherwise, an investor can make risk-free profits by purchasing the undervalued portfolio and selling the overvalued portfolio and holding the position to maturity. Then we have the price equality(suppose the present price of stock S is \(S_0\) ) +

+\[Price_{call}+Ke^{-rT}=Price_{put}+S_0\] +

+ If the dividend is paid during the option holding period, the shareholder of the stock would receive that additional amount, but the option owner would not. For a dividend-paying stock, the put-call parity relationship is(D is the present value of dividends): +

+\[Price_{call}+D+Ke^{-rT}=Price_{put}+S_0\] diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/04 Synthetic Positions.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/04 Synthetic Positions.html new file mode 100755 index 0000000..85ce65c --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/04 Synthetic Positions.html @@ -0,0 +1,31 @@ +
+
+
+

+ Through the put-call parity, we can find that there is a synthetic equivalent for all of the basic positions in underlying assets and its corresponding options. In other words, the risk profile(the possible profit or loss) of any position can be exactly duplicated with a complex combination of the other basic positions. These equivalents are synthetic underlying and synthetic options. +

+The rule for creating synthetics is that the strike price and expiration date, of the calls and puts, must be identical. For creating synthetics, with both the underlying stock and its options, the number of shares of stock must equal the number of shares represented by the options. +

+ There are many arbitrage strategies based on the idea of the synthetic position. Here we demonstrate two of the most common strategies: the conversion and the reversal. +

+ + + + + + + + + + + + + + + +
StrategyContent
ConversionSynthetic Short Position: short call + long put +The actual stock position: long the underlying stocks
ReversalSynthetic Long Position: long call + short put +The actual stock position: short the underlying stocks
+

+ Traders use conversions when options are overpriced relative to the underlying stock and use reversals when options are relatively underpriced. +

diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html new file mode 100755 index 0000000..b196a80 --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html @@ -0,0 +1,6 @@ +
+
+
+ +
+
diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/06 Summary.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/06 Summary.html new file mode 100755 index 0000000..4be79e7 --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/06 Summary.html @@ -0,0 +1,6 @@ +

+ In this chapter, we derived an important relationship between the prices of European put and call options that have the same strike price and time to maturity by constructing two portfolios. Then we described the synthetic positions, a common concept which is always used in arbitrage trading strategies. Finally two simple arbitrage strategies conversion and reversal are demonstrated on QC platform to help you get a better understanding of how to implement algorithms with simple option mechanism. +

+

+ Next chapter we will dig into the famous option pricing model-Black Sholes Merton Model and discuss how to apply BSM in European options pricing. +

diff --git a/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/07 References.html b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/07 References.html new file mode 100644 index 0000000..76391e6 --- /dev/null +++ b/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/07 References.html @@ -0,0 +1,9 @@ +
    +
  1. + Bouzoubaa M, Osseiran A. Exotic options and hybrids: A guide to structuring, pricing and trading[M]. John Wiley & Sons, 2010. +
  2. +
  3. + Put-Call Parity and Arbitrage Opportunity, Jim Graham, February 6, 2017, Online Copy +
  4. +
      + diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/01 Introduction.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/01 Introduction.html new file mode 100755 index 0000000..ae313cc --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/01 Introduction.html @@ -0,0 +1,3 @@ +

      + Last few chapters we introduced the basic principles and mechanism of options trading. We already knew what an option contract is and the basic relationship between call and put options' price. But how do these contracts traded in the exchange are being priced and where does the option premium come from? In the next few chapters, we will discuss the pricing of options. +

      diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/02 Brownian motion.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/02 Brownian motion.html new file mode 100755 index 0000000..f0cf290 --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/02 Brownian motion.html @@ -0,0 +1,65 @@ +

      + In order to value the derivatives like options, the most significant part is to find a model to represent the underlying stock price so that we can price the options based on the underlying price.  We usually use the stochastic process to model the security price. +

      +

      + First, you need to know what the stochastic process is. We say any variable that changes over time in an uncertain way follows a stochastic process. The price of a certain stock at a future time t is unknown at the present so it is a random variable \(S_t\). Then we can think of the movement path of the stock price is a stochastic process since\(S_t\) is a random variable at each time t in the future. +

      +

      + Markov process is a special case of the stochastic process. It means that only the current value of a random variable is relevant for future prediction. In general, we usually assume that the stock price follows a Markov stochastic process, which means only the current stock price is relevant for predicting the future price, it is not correlated with the past price. +

      +

      + Brownian motion is a particular type of Markov stochastic process or we can think of it as a family of random variables \(\left\{W_t\mid t\geq0\right\}\) indexed by time t. The one-dimensional Brownian motion is called the Wiener Process. (Brownian motion is n-dimensional Wiener processes which mean each dimension is just a standard Wiener process). It has the following properties: +

      +
        +
      • \(W_0=0\)
      • +
      • For \(t\geq0\) and \(\Delta t\geq0\), the increment \(W_{t+\Delta t}-W_t\) is normally distributed with mean 0 and standard deviation \(\sqrt{\Delta t}\) .
      • +
      • For any partitions \(0\leq t_1<t_2<\cdot\cdot\cdot <t_n\), the increments \(W_{t_1}- W_{t_0},W_{t_2}-W_{t_1},\cdot\cdot\cdot, W_{t_n}-W_{t_{n-1}}\) are independent random variables.
      • +
      • With probability 1, the function W(t) is continuous at t.
      • +
      +

      + Intuitively understanding of the definition, Wiener process has independent and normally distributed increments and has continuous sample path. +

      +

      + Next, we simulate the Wiener process and plot the paths attempting to gain an intuitive understanding of a stochastic process. Each path is an independent Wiener process. +

      +
      + +
      +import numpy as np
      +import matplotlib.pyplot as plt
      +%pylab inline
      +def wiener_process(T, N):
      +    """
      +    T: total time
      +    N: The total number of steps
      +    """
      +    W0 = [0]
      +    dt = T/float(N)
      +    # simulate the increments by normal random variable generator
      +    increments = np.random.normal(0, 1*np.sqrt(dt), N)
      +    W = W0 + list(np.cumsum(increments))
      +    return W
      +
      +N = 1000
      +T = 10
      +dt = T / float(N)
      +t = np.linspace(0.0, N*dt, N+1)
      +plt.figure(figsize=(15,10))
      +for i in range(5):
      +    W = wiener_process(T, N)
      +    plt.plot(t, W)
      +    plt.xlabel('time')
      +    plt.ylabel('W')
      +    plt.grid(True)
      +
      +
      + +wiener process + +

      + In ordinary calculus,\(\text{d}x=a\ \text{d}t\) is used to indicate that\(\Delta x=a\Delta t\) as \( \Delta t\rightarrow0\). We use the similar notation here. The mean change per unit time for a stochastic process is known as the drift rate and the variance per unit time is known as the variance rate. We can write the derivative of Wiener process over time t in this form: \(dW_t\).A standard Wiener process has a drift rate (i.e. average change per unit time) of 0 and a variance rate of 1 per unit time. If we extend the concept of Wiener process to a generalized Wiener process in the form: \(\text d\ x_t=a\ \text d t+b\ \text dW_t\). The drift rate and the variance rate can be set equal to any chosen constant. If we write it as approximate discrete form as +

      +\[\Delta x=x_{t+\Delta t}-x_t=a\Delta t+b\epsilon\sqrt{\Delta t}\] +

      + Where ε follows the standard normal distribution N(0,1). Thus \(\Delta x\) has normal distribution with the mean being \(a\Delta t\), variance being \(b^2\Delta t\). And because \(\Delta t\) is independent, from time 0 to time T, the change in the value of x is just the sum of \(\Delta x\) in each small time interval. It means that the change in the value of x follows the normal distribution \(N(aT,b^2T)\). +

      diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/03 Modeling Stock Price as a Stochastic Process.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/03 Modeling Stock Price as a Stochastic Process.html new file mode 100755 index 0000000..8cec45a --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/03 Modeling Stock Price as a Stochastic Process.html @@ -0,0 +1,47 @@ +

      + Then we go back to the stock price. If we use the generalized Wiener process to model the stock price, for example, the share price of a stock is $30 now, then the percentage change in price from now to say the end of this year is normally distributed with constant mean and variance. But there is a problem that for normal distribution assumption of return, there is the possibility that the stock price will be negative this is unrealistic for stock prices. For example, this percentage change could be -1.1, which means the stock price at the end of the year is -$3. +

      +

      + On the other hand, if the spot price is small for a stock, then it tends to have small increments in price over a given time interval, on the contrary, stocks with high prices tend to have much larger increments in price on the same interval. But Wiener process has a variance which depends on just the time interval but not on the price itself. Thus it is not appropriate to assume that a stock price follows a generalized Wiener process with constant drift rate and variance rate. +

      +

      + In order to characterize the dynamics of a stock price process and fix this problem, we model the proportional increase in the stock price by using the stochastic differential equation (SDE): +

      + +\[\text dS_t=\mu S_t\ \text d t+\sigma S_t\ \text dW_t \cdot\cdot\cdot\cdot\cdot\cdot(1)\] +

      + Where \(dS_t\) is the change in the stock price over a short time period from \(t\) to \(t+\Delta t\). \(μ\) is the drift term and can be deemed as the annual expected level of the stock return, \(σ\) is the annual volatility of the stock. Here \(dS_t\) at different time \(t\) are independent, which means today's price change is independent with tomorrows change. \(W_t\) is a standard Wiener process (1) we discussed above. +

      + +

      + Now in the above equation, the drift and variance rate of stock price \(S\) is not only correlated with time \(t\) but also a function of both \(S\) itself and time \(t\). +

      + +

      + The discrete approximation form of (1) is +

      +\[\Delta S=\mu S\Delta t+\sigma S\epsilon\sqrt{\Delta t}\] +

      + We can also derive the process that \(ln(S_t)\) follows (here we just give the result, but the derivation uses the Ito Lemma): +

      +\[\text d\ ln(S_t)=(\mu-\frac{\sigma^2}{2}) \ \text d t+\sigma \ \text dW_t \cdot\cdot\cdot\cdot\cdot\cdot(2)\] +

      + Here \(ln(S_t)\) follows a generalized Wiener process as which has constant drift rate and variance rate. That means the change in \(ln(S_t)\) during time interval \(\Delta t\) is normally distributed. This is the lognormal property of stock prices. +

      +\[lnS_{t+\Delta t}-lnS_t\sim N\left[(\mu-\frac{\sigma^2}{2})\Delta t,\sigma^2\Delta t\right]\] + +\[lnS_{t+\Delta t}\sim N\left[\text ln{S_t}+(\mu-\frac{\sigma^2}{2})\Delta t,\sigma^2\Delta t\right]\] +

      + Now the logarithm stock price follows the normal distribution. We write (2) into discrete approximation form as: +

      +\[ln(S_{t+\Delta t})-ln(S_{t})=(\mu-\frac{\sigma^2}{2})\ \Delta t+\sigma \epsilon\sqrt{\Delta t}\] +

      Equivalently

      + +\[S_{t+\Delta t}=S_{t}\exp\left[(\mu-\frac{\sigma^2}{2})\ \Delta t+\sigma \epsilon\sqrt{\Delta t}\right]\cdot\cdot\cdot\cdot\cdot\cdot(3)\] +

      + If we change t to 0 and change \(\Delta t\) to T, we get +

      +\[S_{T}=S_{0}\exp\left[(\mu-\frac{\sigma^2}{2})\ T+\sigma \epsilon\sqrt{T}\right]\] +

      + According to the above equation, we know the stock price at time \(T\) should always be greater than 0 and the problem of having a negative price is fixed. Thus we say the stock price \(S\) is a Geometric Brownian motion because the logarithm of \(S\) follows a Brownian motion. +

      diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/04 Monte Carlo Simulation of Stock Price.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/04 Monte Carlo Simulation of Stock Price.html new file mode 100755 index 0000000..184bb1f --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/04 Monte Carlo Simulation of Stock Price.html @@ -0,0 +1,32 @@ +

      + We apply this technique to model stock prices in order to look at the potential evolution of stock prices over time and then demonstrate how to price European options. Here we use Google as an example. Suppose today is 07/31/2017 and that the share price of GOOG is $930.5. We use the historical close price from 01/2015 to 07/2017 to compute the historical annual return and volatility as the \(\mu\) and \(sigma\) parameters. (Note, we do not need to concern with the detailed determinants of \(\mu\) because the value of options written on a stock is, in general, is independent of \(\mu\). In contrast, the stock price volatility \(\sigma\) is of crucial importance to the determination of the value of options). Consider GOOG that pays no-dividends, has an expected return 39.64% per annum with continuous compounding and a volatility of 23.44% per annum. Observe today’s price $903.5 per share and with \(∆t\) = 0.001 yr. Then we apply Monte Carlo to simulate 500 price paths in the next three months. +

      +
      + +
      +import quandl
      +quandl.ApiConfig.api_key = 'NxTUTAQswbKs5ybBbwfK'
      +data = quandl.get('WIKI/GOOG')
      +close = data['2015-01':'2017-07']['Adj. Close']
      +annual_return = (close[-1]/close[1])** (365.0/len(close)) - 1
      +annual_vol = (close/close.shift(1)-1)[1:].std()*np.sqrt(252)
      +mu = annual_return # 0.39644
      +sigma = annual_vol # 0.2344
      +s0 = close[-1] # 903.5
      +T = 3.0/12
      +delta_t = 0.001
      +num_reps = 500
      +steps = T/delta_t
      +plt.figure(figsize=(15,10))
      +for j in range(num_reps):
      +    price_path = [s0]
      +    st = s0
      +    for i in range(int(steps)):
      +        st = st*e**((mu-0.5*sigma**2)*delta_t + sigma*np.sqrt(delta_t)*np.random.normal(0, 1))
      +        price_path.append(st)
      +    plt.plot(price_path)
      +plt.ylabel('stock price',fontsize=15)
      +plt.xlabel('steps',fontsize=15)
      +
      +
      +stock price path diff --git a/Tutorial Series/Introduction to Options/Tutorial04 Stochastic Processes and Monte Carlo Method.ipynb b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/04 Stochastic Processes and Monte Carlo Method.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial04 Stochastic Processes and Monte Carlo Method.ipynb rename to 06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/04 Stochastic Processes and Monte Carlo Method.ipynb diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/05 Monte Carlo Simulation of European Options.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/05 Monte Carlo Simulation of European Options.html new file mode 100755 index 0000000..5a438a9 --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/05 Monte Carlo Simulation of European Options.html @@ -0,0 +1,37 @@ +

      + Monte Carlo simulation is a commonly used method for derivatives pricing where the payoff depends on the history price of the underlying asset. +

      +

      + The essence of using Monte Carlo method to price the option is to simulate the possible paths for stock prices then we can get all the possible value of stock price at expiration. +

      +
        +
      • First, we need to divide the maturity T of options into N small time intervals, the length of each time interval is \(\Delta t\), N is the number of steps
      • +
      • Sample the possible random paths for the stock price according to equation (3) and get the stock price \(S_T\)at maturity T.
      • +
      • Calculate the payoff of options according to the \(S_T\)
      • +
      • Discount the payoff at the risk-free rate to get one estimate of options' price
      • +
      • Repeat the step 1 to 4 for a reasonable number of times and get many estimates of options price and then the average of these price estimates is the final options price.
      • +
      +

      + In option pricing, Monte Carlo simulations use the risk-neutral valuation result. More specifically, sample the paths to obtain the expected payoff in a risk-neutral world (The expected annual return rate and the risk-free annual rate should be the same in order to get the correct estimation of the option) and then discount this payoff at the risk-neutral rate. +

      +
      + +
      +def mc_euro_options(option_type,s0,strike,maturity,r,sigma,num_reps):
      +    payoff_sum = 0
      +    for j in range(num_reps):
      +        st = s0
      +        st = st*e**((r-0.5*sigma**2)*maturity + sigma*np.sqrt(maturity)*np.random.normal(0, 1))
      +        if option_type == 'c':
      +            payoff = max(0,st-strike)
      +        elif option_type == 'p':
      +            payoff = max(0,strike-st)
      +        payoff_sum += payoff
      +    premium = (payoff_sum/float(num_reps))*e**(-r*maturity)
      +    return premium
      +mc_euro_options('c',927.96,785,100.0/252,0.01,0.23,500)
      +
      +
      +

      + Suppose the risk-free rate is 1%. A European call option with strike price being $785 and expires in 100 days, the spot price is $927, the premium by using Monte Carlo method is $149. +

      diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/06 Summary.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/06 Summary.html new file mode 100755 index 0000000..f9ac402 --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/06 Summary.html @@ -0,0 +1,6 @@ +

      + In this chapter, we modeled stock price with the stochastic process. The stochastic process usually assumed for a stock price is geometric Brownian motion.The Black–Scholes–Merton model, which we cover in the next chapter, is based on the geometric Brownian motion assumption. Under this process, the logarithm of stock return in a small period of time is normally distributed and the returns in two nonoverlapping periods are independent. +

      +

      + In the second part of the tutorial,  we applied Monte Carlo method to simulate the stock price in order to gain an intuitive understanding of the stochastic process followed by stock price. Then we discussed how to use Monte Carlo method to price the options based on the underlying prices paths. +

      diff --git a/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/07 References.html b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/07 References.html new file mode 100644 index 0000000..55387f6 --- /dev/null +++ b/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/07 References.html @@ -0,0 +1,5 @@ +
        +
      1. + Hull J C. Options, futures, and other derivatives[M]. Pearson Education India, 2006. +
      2. +
      diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/01 Introduction.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/01 Introduction.html new file mode 100755 index 0000000..61306f2 --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/01 Introduction.html @@ -0,0 +1,3 @@ +

      + In the last chapter, we modeled the stock price with the Geometric Brownian motion. The logarithm of return \(\text{ln}(S_T/S_0)\) follows the normal distribution \(N\left[(\mu-\sigma^2/2)T,\sigma^2T\right]\). It means the logarithm of stock price\(\text{ln}(S_T)\)follows the normal distribution \(N\left[\text lnS_0+(\mu-\sigma^2/2)T,\sigma^2T\right]\). Based on this basic assumption, in this chapter, we will talk about a famous option pricing model: Black Scholes Merton Model. +

      diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/02 Determinants of Option Price.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/02 Determinants of Option Price.html new file mode 100755 index 0000000..5152d68 --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/02 Determinants of Option Price.html @@ -0,0 +1,11 @@ +

      + In different kinds of asset pricing model like bond pricing, enterprise valuation, the most commonly used valuation method is to calculate the present value of the expected cash flows of that asset. But options have some characteristics that are different from the common asset. For example, the options value depends on its underlying asset. In addition, the cash flow on options are not constant over periods but depends on the occurrence of specific events which are not predictable. In fact, the value of the option is determined by lots of variables. +

      +
        +
      • the underlying price: Change in the value of the underlying asset is the most important factor which affects the options price. For the call option, holders can earn profit from the price rising and put option holders earn profits from the price decline. Therefore, call options become more valuable as the underlying prices increase while the put options will become less valuable.
      • +
      • The volatility of the underlying asset: Volatility is a measure of the degree of fluctuation of the underlying stock price. It is a forward volatility, which means it is a prediction of how much the stock price of the underlying will move in the future over a certain period of time. The higher the predicted volatility is, the higher the probability that the underlying price will move a lot. Thus the greater will the value of the option is both for calls and puts. We will further discuss different types of volatilities in the subsequent tutorials.
      • +
      • The strike price of the option: Call options gain profit when stock prices greater than the strike, it is easy to understand that the higher the strike price is for the call option, the fewer profits the holder can get, the less valuable of the call option. Thus for the put options, options with higher strike price are more valuable.
      • +
      • Time to expiration: If the current date is t, the expiration date of the option contract is T. Then the time to expiration is T-t. For v=both call and put options, the longer time to expiration means there are more changes for the function of stocks prices, and higher probability for the option holders to gain profits from price movement.
      • +
      • The risk-free interest rate: As interest rates increase, the expected return required by investors from the stock tends to increase. On the other hand, the present value of discounted cash flow will decrease. Thus the increase in interest rate will increase the call option price and will decrease the put option price.
      • +
      • The dividend yield: After the dividends paid, the share price of the stock will decrease. During the options holding period, the decline in underlying price is unfavorable for call options holder. Therefore, the increase in dividend yield will decrease the price of call options and increase the price of put options.
      • +
      diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/03 Factors in BSM model.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/03 Factors in BSM model.html new file mode 100755 index 0000000..3e90225 --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/03 Factors in BSM model.html @@ -0,0 +1,51 @@ +

      + After we get an intuition about affecting factors of the options price, we will introduce the BSM option pricing model. The Black-Scholes model for pricing stock options was developed by Fischer Black, Myron Scholes and Robert Merton in the early 1970’s. +

      +

      + First, we introduce the factors in the model. For all the factors listed below, only volatility is not known.  There are many types of volatilities. Then which volatility should be used is a critical question in option pricing model. We will further discuss this part in the next few chapters. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Factors in the model
       Stock PriceS
       Strike Price K
       Time to Expiration T-t
       Interest Rates r
       Future Volatility of the underlying Stock σ
      +
      + +
      class BsmModel:
      +    def __init__(self, option_type, price, strike, interest_rate, expiry, volatility, dividend_yield=0):
      +        self.s = price # Underlying asset price
      +        self.k = strike # Option strike K
      +        self.r = interest_rate # Continuous risk fee rate
      +        self.q = dividend_yield # Dividend continuous rate
      +        self.T = expiry # time to expiry (year)
      +        self.sigma = volatility # Underlying volatility
      +        self.type = option_type # option type "p" put option "c" call option
      +
      +
      +

      + There are some details we need to pay attention to about the input of BSM model. Firstly, the model works in continuous time, rather than discrete time. Therefore the risk-free rate r has to be modified to the continuous form. Secondly, the time to expiration should be converted to year. The volatility is the annual volatlity. +

      diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/04 Model Assumptions.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/04 Model Assumptions.html new file mode 100755 index 0000000..ba6786f --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/04 Model Assumptions.html @@ -0,0 +1,12 @@ +

      + The market assumptions behind the Black–Scholes formula for pricing European options are as follows: +

      +
        +
      • The volatility of the underlying assets is constant over time
      • +
      • The underlying asset price follows the lognormal distribution, this means that the log-returns of stock prices are normally distributed
      • +
      • The underlying asset can be traded continuously
      • +
      • The underlying stock does not pay dividends during the option's life. But the basic Black-Scholes model was later adjusted for dividends, here we demonstrate the later version with dividend yields.
      • +
      • There are no transaction costs or taxes
      • +
      • All securities are perfectly divisible, meaning that it is possible to buy any fraction of a share
      • +
      • The risk-free rate of interest, r, is constant and the same for all maturities
      • +
      diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Model Equations.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Model Equations.html new file mode 100755 index 0000000..d389eac --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Model Equations.html @@ -0,0 +1,66 @@ +

      + The derivation of the Black-Scholes model is beyond the scope of this research, we only show the formula here. The basic principle is based on the idea of creating a portfolio of the underlying asset and the riskless asset with the same cash flows and hence the same cost as the option being valued. Then we get the Black–Scholes–Merton differential equation. The solutions to the differential equation are the Black-Scholes-Merton formulas for the price of European call and put options +

      +\[c = S_0N(d_1)-Ke^{-rT}N(d_2)\] + +\[p =Ke^{-rT}N(-d_2)- S_0N(-d_1)\] + +\[d_1=\frac{ln(S_0/K)+(r+\sigma^2/2)T}{\sigma\sqrt{T}}\] + +\[d_2=\frac{ln(S_0/K)+(r-\sigma^2/2)T}{\sigma\sqrt{T}}=d_1-\sigma\sqrt{T}\] +

      + N(x) is the cumulative probability distribution function for a variable with a standard normal distribution. It can be calculated by the integral of the probability density function of standard normal distribution from 0 to x. In Python, you can use the norm.pdf(x) in spicy.stats library. For the following chart, we plot the probability density curve of the standard normal distribution. For example, N(-1) is the area of the left hand of the red line under the curve. +

      +
      + +
      import scipy.stats as sp
      +mu = 0
      +variance = 1
      +x = np.linspace(mu-3*variance,mu+3*variance, 100)
      +y = [sp.norm.pdf(i) for i in x]
      +plt.plot(x,y)
      +d = [-1]
      +plt.plot(d*100,np.linspace(0,sp.norm.pdf(d), 100))
      +
      +
      +normal distribution +

      + Then in our BSM model class, we will calculate the European call and put option prices by using BSM formula. +

      +
      + +
      def n(self, d):
      +    # cumulative probability distribution function of standard normal distribution
      +    return norm.cdf(d)
      +
      +def dn(self, d):
      +    # the first order derivative of n(d)
      +    return norm.pdf(d)
      +
      +def d1(self):
      +    d1 = (log(self.s / self.k) + (self.r - self.q + self.sigma ** 2 * 0.5) * self.T) / (self.sigma * sqrt(self.T))
      +    return d1
      +
      +def d2(self):
      +    d2 = (log(self.s / self.k) + (self.r - self.q - self.sigma ** 2 * 0.5) * self.T) / (self.sigma * sqrt(self.T))
      +    return d2
      +
      +def bsm_price(self):
      +    d1 = self.d1()
      +    d2 = d1 - self.sigma * sqrt(self.T)
      +    if self.type == 'c':
      +        price = exp(-self.r*self.T) * (self.s * exp((self.r - self.q)*self.T) * self.n(d1) - self.k * self.n(d2))
      +        return price
      +    elif self.type == 'p':
      +        price = exp(-self.r*self.T) * (self.k * self.n(-d2) - (self.s * exp((self.r - self.q)*self.T) * self.n(-d1)))
      +        return price
      +    else:
      +        print "option type can only be c or p"
      +
      +a = BsmModel('c', 42, 35, 0.1, 90.0/365, 0.2)
      +a.bsm_price()
      +
      +
      +

      + For a call option which expires in 90 days and no dividends paid, the underlying price is $42, the strike is $35, the risk-free rate is 0.1, the volatility is 0.2. The price of this option is $6.157. +

      diff --git a/Tutorial Series/Introduction to Options/Tutorial05 Option Pricing Black Scholes Merton Model.ipynb b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Option Pricing Black Scholes Merton Model.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial05 Option Pricing Black Scholes Merton Model.ipynb rename to 06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Option Pricing Black Scholes Merton Model.ipynb diff --git a/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/06 Summary.html b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/06 Summary.html new file mode 100755 index 0000000..3c9ac3c --- /dev/null +++ b/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/06 Summary.html @@ -0,0 +1,3 @@ +

      + This tutorial discussed factors affecting the options price and introduced a famous option pricing model including input parameters, assumptions and the formula. +

      diff --git a/06 Introduction to Options[]/06 The Greek Letters/01 Introduction.html b/06 Introduction to Options[]/06 The Greek Letters/01 Introduction.html new file mode 100755 index 0000000..d8fd050 --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/01 Introduction.html @@ -0,0 +1,3 @@ +

      + Option Greeks measure the exposure of option price or option delta to movement of different factors such as the underlying price, time and volatility. In this tutorial we will discuss various Greeks, their meanings and their implications on the pricing and how to use them to hedge risks. +

      diff --git a/06 Introduction to Options[]/06 The Greek Letters/02 Delta.html b/06 Introduction to Options[]/06 The Greek Letters/02 Delta.html new file mode 100755 index 0000000..dce03fa --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/02 Delta.html @@ -0,0 +1,81 @@ +

      Definition

      +

      + Delta is the rate of change of the option price with respect to the price of the underlying asset. It measures the first-order sensitivity of the price to a movement in stock price S. The option delta is 0.4 means that if the underlying moves by for example 1%, then the value of the option will move by 0.4 × 1%. For European options on an asset that provides a yield at rate q: +

      +\[delta(call)=\frac{\partial c}{\partial S}=e^{-q(T-t)}N(d1)\] +\[delta(put)=\frac{\partial p}{\partial S}=e^{-q(T-t)}(N(d1)-1)\] +
      + +
      ''' Greek letters for European options on an asset that provides a yield at rate q '''
      +def delta(self):
      +    d1 = self.d1()
      +    if self.type == "c":
      +        return exp(-self.q * self.T) * self.n(d1)
      +    elif self.type == "p":
      +        return exp(-self.q * self.T) * (self.n(d1)-1)
      +
      +
      +

      Impact Factors

      +

      + Stock price, days remaining to expiration and implied volatility will impact the Delta. +

      +
        +
      • Stock Price: Call option has a positive Delta range from 0 to 1. The Delta is positively correlated to underlying stock price change. While put option has a negative Delta ranges from -1 to 0, its Delta is negatively correlated with the underlying stock price change. At-the-money call options usually have a Delta near .50. At-the-money put options have a Delta near -.50.
      • +
      • Implied Volatility: Low implied volatility stocks will tend to have higher Delta for the in-the-money options and lower Delta for out-of-the-money options.
      • +
      • Days remaining to expiration: As expiration nears, in-the-money call Deltas increase toward 1.00, at-the-money call Deltas remain at around 0.5 and out-of-the-money call Deltas fall to 0 provided other inputs remain constant.
      • +
      +

      + As a general rule, in-the-money options will move more than out-of-the-money options, and short-term options will react more than longer-term options to the same price change in the stock. +

      +

      + In order to demonstrate how those Greeks values change with the time to expiration and the underlying price, we choose 60*23 call options contracts with the stock price ranging from 10 to 70, time to expiration ranging from 0 to 1 year. The strikes of all the contracts are 40,  the interest rates are 0.1, the volatilities are all 0.5. We construct the contracts data as a 23*60 matrix. +

      +
      + +
      s = np.array([range(10,70,1) for i in range(23)])
      +I = np.ones((shape(s)))
      +time = arange(1,12.5,0.5)/12
      +T = np.array([ele for ele in time for i in range(shape(s)[1])]).reshape(shape(s))
      +
      +contracts = []
      +for i in range(shape(s)[0]):
      +    for j in range(shape(s)[1]):
      +        contracts.append(BsmModel('c',s[i,j],40*I[i,j],0.1*I[i,j], T[i,j],0.5*I[i,j]))
      +delta = [x.theta() for x in contracts]
      +gamma = [x.gamma() for x in contracts]
      +delta = [x.delta() for x in contracts]
      +vega = [x.vega() for x in contracts]
      +rho = [x.rho() for x in contracts]
      +
      +gamma = np.array(gamma).reshape(shape(s))
      +delta = np.array(delta).reshape(shape(s))
      +theta = np.array(theta).reshape(shape(s))
      +vega = np.array(vega).reshape(shape(s))
      +rho = np.array(rho).reshape(shape(s))
      +
      +import numpy as np
      +import matplotlib.pyplot as plt
      +from mpl_toolkits.mplot3d import Axes3D
      +from matplotlib import cm
      +from matplotlib import animation
      +
      +z = delta
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init(40,290)
      +ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
      +ax.plot_surface(s, T, z, facecolors=cm.jet(delta),linewidth=0.001, rstride=1, cstride=1, alpha = 0.75)
      +ax.set_zlim3d(0, z.max())
      +ax.set_xlabel('stock price')
      +ax.set_ylabel('Time to Expiration')
      +ax.set_zlabel('delta')
      +m = cm.ScalarMappable(cmap=cm.jet)
      +m.set_array(z)
      +cbar = plt.colorbar(m)
      +
      +
      +Greeks letter: delta + +

      + The color of the graph above represents delta value. + diff --git a/06 Introduction to Options[]/06 The Greek Letters/03 gamma.html b/06 Introduction to Options[]/06 The Greek Letters/03 gamma.html new file mode 100755 index 0000000..5a71535 --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/03 gamma.html @@ -0,0 +1,37 @@ +

      + Gamma is the rate of change of the portfolio's delta with respect to the underlying asset's price. It represents the second-order sensitivity of the option to a movement in the underlying asset’s price. +

      +

      + Long options, either calls or puts, always yield positive Gamma. Gamma is higher for options that are at-the-money and closer to expiration because the Delta of the near term options move toward either 0 or 1.00 is imminent. Deeper-in-the-money or farther-out-of-the-money options have lower Gamma as their Deltas already approached 0 or 1.00 (or 0 or -1.00 for puts) and will not change as quickly with movement in the underlying. For European options: +

      +\[gamma(call)=gamma(put)=\frac{N^{'}(d_1)e^{-q(T-t)}}{S\sigma\sqrt{(T-t)}}\] +
      + +
      def gamma(self):
      +    d1 = self.d1()
      +    dn1 = self.dn(d1)
      +    return dn1 * exp(-self.q * self.T) / (self.s * self.sigma * sqrt(self.T))
      +
      +
      + +
      + +
      z = gamma
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init(12,320)
      +ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
      +ax.plot_surface(s, T, z, facecolors=cm.jet(delta),linewidth=0.001, rstride=1, cstride=1, alpha = 0.75)
      +ax.set_zlim3d(0, z.max())
      +ax.set_xlabel('stock price')
      +ax.set_ylabel('Time to Expiration')
      +ax.set_zlabel('gamma')
      +m = cm.ScalarMappable(cmap=cm.jet)
      +m.set_array(delta)
      +cbar = plt.colorbar(m)
      +
      +
      +The Greeks letters: gamma +

      + The color of the graph above represents delta value. +

      diff --git a/06 Introduction to Options[]/06 The Greek Letters/04 vega.html b/06 Introduction to Options[]/06 The Greek Letters/04 vega.html new file mode 100755 index 0000000..c7d3dc7 --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/04 vega.html @@ -0,0 +1,39 @@ +

      + The Vega is the rate of change in the value of the option with respect to the volatility of the underlying asset. +

      +

      + Vega is always positive for long positions and is the same value for both puts and calls. Hence the option price always increases as the volatility increases. Vega for the European options: +

      +\[vega(call)=vega(put)=S\sqrt{(T-t)}N^{'}(d_1)e^{-q(T-t)}\] +
      + +
      def vega(self):
      +    d1 = self.d1()
      +    dn1 = self.dn(d1)
      +    return self.s * sqrt(self.T) * dn1 * exp(-self.q * self.T)
      +
      +
      + +
      + +
      z = vega
      +norm = matplotlib.colors.Normalize()
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init(20,45)
      +ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
      +ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
      +ax.set_zlim3d(z.min(), z.max())
      +ax.set_xlabel('stock price')
      +ax.set_ylabel('Time to Expiration')
      +ax.set_zlabel('vega')
      +m = cm.ScalarMappable(cmap=cm.jet)
      +m.set_array(z)
      +cbar = plt.colorbar(m)
      +
      +
      + +The Greeks letters: vega +

      + The color of the graph above represents Vega. +

      diff --git a/06 Introduction to Options[]/06 The Greek Letters/05 Theta.html b/06 Introduction to Options[]/06 The Greek Letters/05 Theta.html new file mode 100755 index 0000000..ecc937f --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/05 Theta.html @@ -0,0 +1,49 @@ +

      + Theta is the rate of change of the value of the option with respect to the passage of time. It is also referred to as the time decay of the portfolio. +

      +

      + The theta of  holding long position of a call or a put option is usually negative. An option that loses 0.1% per day is said to have a Theta of −0.1%. For example, if we buy an OTM call option, the value of this call option decreases as time passes since the option has less time to expiry. If time passes with the price of the underlying asset and its volatility remaining the same, the passing of time will lower the value of the option. Theta for European Options +

      +\[Theta(call)=-SN^{'}(d_1)\sigma e^{-q(T-t)}/(2\sqrt{T-t})+qSN(d_1)e^{(-q(T-t))}-rKe^{-r(T-t)}N(d_2)\] +\[Theta(put)=-SN^{'}(d_1)\sigma e^{-q(T-t)}/(2\sqrt{T-t})-qSN(-d_1)e^{(-q(T-t))}+rKe^{-r(T-t)}N(-d_2)\] +
      + +
      def theta(self):
      +    d1 = self.d1()
      +    d2 = d1 - self.sigma * sqrt(self.T)
      +    dn1 = self.dn(d1)
      +    if self.type == "c":
      +        theta = -self.s * dn1 * self.sigma * exp(-self.q*self.T) / (2 * sqrt(self.T)) \
      +                    + self.q * self.s * self.n(d1) * exp(-self.q*self.T) \
      +                    - self.r * self.k * exp(-self.r*self.T) * self.n(d2)
      +        return theta
      +    elif self.type == "p":
      +        theta = -self.s * dn1 * self.sigma * exp(-self.q * self.T) / (2 * sqrt(self.T)) \
      +                    - self.q * self.s * self.n(-d1) * exp(-self.q * self.T) \
      +                    + self.r * self.k * exp(-self.r * self.T) * self.n(-d2)
      +        return theta
      +
      +
      + +
      + +
      z = theta
      +# facecolors aren't normalizing as might be expected
      +# we need to normalize it to avoid all dark color for value under 0
      +norm = matplotlib.colors.Normalize()
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init(35,300)
      +ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
      +ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
      +ax.set_zlim3d(z.min(), z.max())
      +ax.set_xlabel('stock price')
      +ax.set_ylabel('Time to Expiration')
      +ax.set_zlabel('rho')
      +m = cm.ScalarMappable(cmap=cm.jet)
      +m.set_array(z)
      +cbar = plt.colorbar(m)
      +
      +
      + +The Greeks letters: theta diff --git a/06 Introduction to Options[]/06 The Greek Letters/06 Rho.html b/06 Introduction to Options[]/06 The Greek Letters/06 Rho.html new file mode 100755 index 0000000..85c4d45 --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/06 Rho.html @@ -0,0 +1,37 @@ +

      + Rho is the rate of change of the value of a derivative with respect to the interest rate. It is usually small and not a big issue in practice unless the option is deep in-the-money and has a long horizon. The interest rate would matter because we need to discount a larger cash flow over a longer horizon. Rho for the European options: +

      +\[Rho(call)=K(T-t)e^{-r(T-t)}N(d_2)\] +\[Rho(put)=-K(T-t)e^{-r(T-t)}N(-d_2)\] +
      + +
      def rho(self):
      +    d2 = self.d2()
      +    if self.type == "c":
      +        rho = self.k * self.T * (exp(-self.r*self.T)) * self.n(d2)
      +    elif self.type == "p":
      +        rho = -self.k * self.T * (exp(-self.r*self.T)) * self.n(-d2)
      +    return rho
      +
      +
      + +
      + +
      z = rho
      +norm = matplotlib.colors.Normalize()
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init()
      +ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
      +ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
      +ax.set_zlim3d(z.min(), z.max())
      +ax.set_xlabel('stock price')
      +ax.set_ylabel('Time to Expiration')
      +ax.set_zlabel('vega')
      +m = cm.ScalarMappable(cmap=cm.jet)
      +m.set_array(z)
      +cbar = plt.colorbar(m)
      +
      +
      + +The Greeks letters: rho diff --git a/Tutorial Series/Introduction to Options/Tutorial06 The Greek Letters.ipynb b/06 Introduction to Options[]/06 The Greek Letters/06 The Greek Letters.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial06 The Greek Letters.ipynb rename to 06 Introduction to Options[]/06 The Greek Letters/06 The Greek Letters.ipynb diff --git a/06 Introduction to Options[]/06 The Greek Letters/07 Delta, Gamma and Vega Hedging.html b/06 Introduction to Options[]/06 The Greek Letters/07 Delta, Gamma and Vega Hedging.html new file mode 100644 index 0000000..d087dfa --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/07 Delta, Gamma and Vega Hedging.html @@ -0,0 +1,6 @@ +

      + The delta of the underlying asset is always 1.0, the trader can hedge his positions by buying or selling the number of shares of the underlying asset indicated by the total delta. However, underlying asset positions have Gamma 0 because their Delta is always 1.00 (long) or -1.00 (short) and will not change. In addition, Vega of the underlying asset is also zero because the underlying asset's payoff doesn't vary depending on how its price moves (payoff is not contingent). Therefore, its price is not affected by price volatility. +

      +

      + In order to adjust Gamma and Vega, it is necessary to take a position in an option or other derivatives. However, if only one other derivative is added, either the Gamma risk or the Vega risk will be canceled out, but not both at the same time. Here we need to use 2 derivatives to make the portfolio delta, gamma, and vega neutral all at once. Note, Vega and Gamma for a portfolio is the sum of the vegas and Gammas of its constituents. +

      diff --git a/06 Introduction to Options[]/06 The Greek Letters/08 Summary.html b/06 Introduction to Options[]/06 The Greek Letters/08 Summary.html new file mode 100755 index 0000000..928b210 --- /dev/null +++ b/06 Introduction to Options[]/06 The Greek Letters/08 Summary.html @@ -0,0 +1,3 @@ +

      + In this chapter we discussed various Greeks, their meanings and their implications on the pricing and hedging of derivatives. We also presented some useful formulas for calculating the Greeks value of European options and generated the plots to show how they changed with strikes and time to expirations. The Greeks letter is the sensitivity measure of options price to the market variables. Next chapter we will discuss another major risk measures: volatility. +

      diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/01 Introduction.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/01 Introduction.html new file mode 100755 index 0000000..c61ff28 --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/01 Introduction.html @@ -0,0 +1,3 @@ +

      + The change of volatility can have a significant impact on the performance of options trading. In addition to the Vega we explained in Greeks letter chapter, this part of the volatility tutorial will discuss the concept of volatility, specifically, we discuss realized and implied volatility, their meanings, measurements, uses, and limitations. +

      diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/02 Historical Volatility.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/02 Historical Volatility.html new file mode 100755 index 0000000..2646bcc --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/02 Historical Volatility.html @@ -0,0 +1,42 @@ +

      1. Definition

      +

      + It is a measurement of how much the price of the asset has changed on average during the certain period of time. In common, volatility is said to be the standard deviation of the return of assets price. +

      +

      2. Calculation

      +

      + Next we discuss how to estimate the historical volatility of the option empirically. +

      +\[r_i=ln(\frac{S_i}{S_{i-1}})\quad for\ i=0,1,2,3,...,n\] +

      + Where (n+1) is the number of observations, \(S_i\) is the stock price at end of it time interval +

      +

      + The  standard deviation of the \(r_i\) is given by +

      +\[std=\sqrt{\frac{1}{n-1}\sum_{i=1}^n(r_i-\overline{r})^2}\] +

      + where \(\overline{r}\) is the mean of \(r_i\) +

      +

      + If we assume there are n trading days per year. Then the estimate of historical volatility per annum is +

      +\[std\times\sqrt{n}\] +
      + +
      +import pandas as pd
      +from numpy import sqrt,mean,log,diff
      +import quandl
      +quandl.ApiConfig.api_key = 'NxTUTAQswbKs5ybBbwfK'
      +goog_table = quandl.get('WIKI/GOOG')
      +# use the daily data of Google(NASDAQ: GOOG) from 01/2016 to 08/2016
      +close = goog_table['2016-01':'2016-08']['Adj. Close']
      +r = diff(log(close))
      +r_mean = mean(r)
      +diff_square = [(r[i]-r_mean)**2 for i in range(0,len(r))]
      +std = sqrt(sum(diff_square)*(1.0/(len(r)-1)))
      +vol = std*sqrt(252)
      +
      +

      + An asset has a historical volatility based on its past performance as described above, investors can gain insight on the fluctuations of the underlying price during the past period of time. But it does not tell us anything about the volatility in the market now and in the future. So here we introduce the implied volatility. +

      diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/03 Implied Volatility.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/03 Implied Volatility.html new file mode 100755 index 0000000..55fe947 --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/03 Implied Volatility.html @@ -0,0 +1,71 @@ +

      + In contrast to historical volatility, the implied volatility looks ahead. It is often interpreted as the market’s expectation for the future volatility of a stock and is implied by the price of the stock’s options. Here implied volatility means it is not observable in the market but can be derived from the price of an option. +

      +

      1. Definition

      +

      + We use volatility as an input parameter in option pricing model. If we take a look at the BSM pricing, the theoretical price or the fair value of an option is P, where P is a function of historical volatility σ, stock  price S, strike price K, risk-free rate r and the time to expiration T.  That is \(P=f(\sigma,S,K,r,T)\). But the market price of options is not always the same with the theoretical price. Now in contrast, if we are given the market’s prices of calls and puts written on some asset and also the value of S, K, r, T. For each asset we can solve a new volatility that corresponds to the price of each option – the implied volatility. Then the implied volatility is \(\IV=f^{-1}(P,S,K,r,T)\). +

      + +

      2. Calculation

      +

      + Here we use the bisection method to solve the BSM pricing equation and find the root which is the implied volatility. We use Yahoo Finance Python API to get the real time option data. +

      +
      + +
      def bsm_price(option_type, sigma, s, k, r, T, q):
      +    # calculate the bsm price of European call and put options
      +    sigma = float(sigma)
      +    d1 = (np.log(s / k) + (r - q + sigma ** 2 * 0.5) * T) / (sigma * np.sqrt(T))
      +    d2 = d1 - sigma * np.sqrt(T)
      +    if option_type == 'c':
      +        price = np.exp(-r*T) * (s * np.exp((r - q)*T) * stats.norm.cdf(d1) - k *  stats.norm.cdf(d2))
      +        return price
      +    elif option_type == 'p':
      +        price = np.exp(-r*T) * (k * stats.norm.cdf(-d2) - s * np.exp((r - q)*T) *  stats.norm.cdf(-d1))
      +        return price
      +    else:
      +        print('No such option type %s') %option_type
      +def implied_vol(option_type, option_price, s, k, r, T, q):
      +    # apply bisection method to get the implied volatility by solving the BSM function
      +    precision = 0.00001
      +    upper_vol = 500.0
      +    max_vol = 500.0
      +    min_vol = 0.0001
      +    lower_vol = 0.0001
      +    iteration = 0
      +
      +    while 1:
      +        iteration +=1
      +        mid_vol = (upper_vol + lower_vol)/2.0
      +        price = bsm_price(option_type, mid_vol, s, k, r, T, q)
      +        if option_type == 'c':
      +
      +            lower_price = bsm_price(option_type, lower_vol, s, k, r, T, q)
      +            if (lower_price - option_price) * (price - option_price) > 0:
      +                lower_vol = mid_vol
      +            else:
      +                upper_vol = mid_vol
      +            if abs(price - option_price) < precision: break if mid_vol > max_vol - 5 :
      +                mid_vol = 0.000001
      +                break
      +
      +        elif option_type == 'p':
      +            upper_price = bsm_price(option_type, upper_vol, s, k, r, T, q)
      +
      +            if (upper_price - option_price) * (price - option_price) > 0:
      +                upper_vol = mid_vol
      +            else:
      +                lower_vol = mid_vol
      +            if abs(price - option_price) < precision: break if iteration > 50: break
      +
      +    return mid_vol
      +implied_vol('c', 0.3, 3, 3, 0.032, 30.0/365, 0.01)
      +
      +
      +

      + From the result above, the implied volatility of European call option (with premium c=0.3, S=3, K=3, r=0.032, T =30 days, d=0.01) is 0.87. +

      +

      3. Factors Affecting Implied Volatility

      +

      + According to the time value description in the first tutorial, in general, the more time to expiration, the greater the time value of the option. Investors are willing to pay extra money for zero intrinsic value options which have more time to expiration because more time increases the likelihood of price movement and fluctuations, it is the options will become profitable. Implied volatility tends to be an increasing function of maturity. A short-dated option often has a low implied volatility, whereas a long-dated option tends to have a high implied volatility. +

      diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/04 Volatility Skew.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/04 Volatility Skew.html new file mode 100755 index 0000000..fba17fd --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/04 Volatility Skew.html @@ -0,0 +1,99 @@ +

      + For European options of the same maturity and the same underlying assets, the implied volatilities vary with the strikes. For a series of put options or call options, if we plot these implied volatilities for a series of options which have the same expiration date and the same underlying with the x-axis being the different strikes, we would get a convex curve. The shape of this curve is like people's smiling, it is being called the volatility. The shape of volatility smile depends on the assets and the market conditions. +

      +

      + Here we give an example how to plot the volatility smile by using the real time options data of SPDR S&P 500 ETF(NYSEARCA: SPY). +

      +
      + +
      # download option data for all expiry months from Yahoo Finance
      +# provide a formatted DataFrame with a hierarchical index
      +opt = Options('spy', 'yahoo')
      +opt.expiry_dates  # list all the available expiration dates
      +def IV_plot(opt,option_type,expiry_index):
      +    expiry = opt.expiry_dates[expiry_index]
      +    if option_type == 'c':
      +        data = opt.get_call_data(expiry=expiry)
      +    elif option_type == 'p':
      +        data = opt.get_put_data(expiry=expiry)
      +    r = 0.01 # risk free rate
      +    d = 0.01 # continuous devidend yield
      +    s = opt.underlying_price # data_call['Underlying_Price']  undelying price
      +    expiry = data.index.get_level_values('Expiry')[0] # get the expiry
      +    current_date = opt.quote_time # current_date = datetime.datetime.now() # get the current date
      +    time_to_expire = float((expiry - current_date).days)/365 # compute time to expiration
      +    premium = (data['Ask'] + data['Bid'])/2 # option premium
      +    strike = list(data.index.get_level_values('Strike')) # get the strike price
      +    IV = []
      +    for i in range(len(data)):
      +        IV.append(implied_vol(option_type, premium.values[i], s, strike[i], r, time_to_expire, d))
      +
      +    plt.figure(figsize=(16, 7))
      +    a = plt.scatter(strike,IV, c='r', label="IV by solving BSM")
      +    b = plt.scatter(strike,data['IV'],c = 'b', label="IV from Yahoo Finance")
      +    plt.grid()
      +    plt.xlabel('strike')
      +    if option_type == 'c':
      +        plt.ylabel('Implied Volatility for call option')
      +        plt.legend((a,b), ("IV(call) by solving BSM", "IV(call) from Yahoo Finance"))
      +    elif option_type == 'p':
      +        plt.ylabel('Implied Volatility for put options')
      +        plt.legend((a,b), ("IV(put) by solving BSM", "IV(put) from Yahoo Finance"))
      +
      +    return strike,IV
      +k_call, IV_call = IV_plot(opt,'c',23)
      +k_put, IV_put = IV_plot(opt,'p',23)
      +plt.figure(figsize=(16, 7))
      +e = plt.scatter(k_call,IV_call, c ='red', label="IV(call options)")
      +f = plt.scatter(k_put,IV_put, c = 'black', label="IV(put options)")
      +plt.xlabel('strike')
      +plt.ylabel('Implied Volatility')
      +plt.legend((e,f), ("IV (call options)", "IV (put options)"))
      +
      +
      +

      + The current date is 08/14/2017. We plot the implied volatilities for SPY options which expire on 12/21/2018. +

      +implied volatility of call options +implied volatility of put options +

      + Plotting these implied volatilities across strikes gives us the implied volatility skew. For the shape of volatility smile, it should be a symmetry convex curve. But from the above chart, the implied volatility curve slopes downward to the right. This is referred to the skew, which means that options with low strikes have higher implied volatilities than those with higher strikes. The smile is not symmetry. The skew of a distribution is a measure of its asymmetry. Although the volatility skew is dynamic, in equity markets it is almost always a decreasing function of the strike. Other asset classes such as FX and commodities have differently shaped skews. +

      +

      + If we plot the call and put options implied volatility smile in the same chart for the same expiration date: +

      +implied volatility of call and put options +

      + From the above chart, we can see the implied volatility for put options is higher than call options. Usually, put options trade for a higher price than call options, because traders place more risk in the short put positions, which raises the amount of reward they require to sell the position. Higher option prices signify an increase in risk and are represented by higher implied volatility levels derived from the option pricing model. Then we scattered all the implied volatilities of contracts across all the strikes. +

      + +
      + +
      opt = Options('spy', 'yahoo')
      +r = 0.01 # risk free rate
      +d = 0.01 # continuous devidend yield
      +expiry_dates = [i for i in opt.expiry_dates if i > opt.quote_time.date()]
      +current_date = opt.quote_time.date()  ## get the current date
      +s = opt.underlying_price # undelying price
      +num_expiry = len(expiry_dates)
      +IV = [] # (num_expiry * 3)-dimension list with each row being [time_to_expire, strike, implied_vol]
      +
      +for expiry_index in range(num_expiry):
      +    data = opt.get_put_data(expiry=expiry_dates[expiry_index])
      +    expiry = expiry_dates[expiry_index] # get the expiry
      +    time_to_expire = float((expiry - current_date).days)/365 # compute time to expiration
      +    premium = (data['Ask'] + data['Bid'])/2.0 # option premium
      +    strike = data.index.get_level_values('Strike') # get the strike price
      +    num_strike = len(data)
      +    for j in range(num_strike):
      +        IV.append([time_to_expire, strike[j], implied_vol('c', premium.values[j], s, strike[j], r, time_to_expire, d)])
      +x= [IV[i][0] for i in range(len(IV))]
      +y= [IV[i][1] for i in range(len(IV))]
      +z= [IV[i][2] for i in range(len(IV))]
      +fig = plt.figure(figsize=(20,11))
      +ax = fig.add_subplot(111, projection='3d')
      +ax.view_init(20,10)
      +ax.scatter(x,y,z)
      +
      +
      +implied volatility surface diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/05 Volatility Surface.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/05 Volatility Surface.html new file mode 100755 index 0000000..057ec70 --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/05 Volatility Surface.html @@ -0,0 +1,8 @@ +

      + By fixing the maturity and looking at the implied volatilities of European options on the same underlying but different strikes, we obtain the implied volatility skew or smile. The volatility surface is the three-dimensional surface when we plots the market implied volatilities of European options with different strikes and different maturities. +

      +

      + Through the interpolation method, we can generate the implied volatility surface of SPY options for both put and call options as follows: +

      +implied volatility surface for call options +implied volatility surface for put options diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/06 The Reason for Volatility Skew.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/06 The Reason for Volatility Skew.html new file mode 100755 index 0000000..3312b4b --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/06 The Reason for Volatility Skew.html @@ -0,0 +1,5 @@ +

      + The volatility skew reveals that for put options, implied volatility is higher for deep OTM options and is decreasing as it moves toward ITM options. For call options, the implied volatility is higher for deep ITM options and is decreasing as it moves toward OTM options. From the demand and supply degree, the skew reflects that investors are more willing to buy deep OTM puts and ITM calls. Why there is volatility skew in the market? + First, the majority of the equity positions are long. Investors usually have two ways to hedge those long positions risks: Buying downside puts or selling upside calls. The increase in demand create increases in the price of downside puts and decreases in the price of upside calls. The volatility is a reflection of options price. Therefore the volatility of in-the-money put is higher and the volatility of in-the-money call is lower. + The second reason for volatility skew is that the market moves down faster than it moves up. The downside market move is riskier than the upside move. Thus the price of OTM puts is higher than OTM calls. +

      diff --git a/Tutorial Series/Introduction to Options/Tutorial07 Historical Volatility and Implied Volatility.ipynb b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Historical Volatility and Implied Volatility.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial07 Historical Volatility and Implied Volatility.ipynb rename to 06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Historical Volatility and Implied Volatility.ipynb diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Summary.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Summary.html new file mode 100755 index 0000000..e8ac4a6 --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Summary.html @@ -0,0 +1,4 @@ +

      + In this chapter, we discussed the historical volatility and the implied volatility. The historical volatility of an asset is the statistical measure we know as the standard deviation of the stock return series. The implied volatility of the same asset, on the other hand, is the volatility parameter that we can infer from the prices of traded options written on this asset. In contrast to historical volatility, which looks at fluctuations of asset prices in the past, implied volatility looks ahead. The two volatilities do not necessarily coincide, and although they may be close, they are typically not equal. + Now we know the constant volatility assumption in Black-Sholes-Merton model is not applicable in the real market because there is volatility skew for most options. In next chapter, we will introduce some volatility models to capture the volatility skew in options pricing. +

      diff --git a/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/08 References.html b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/08 References.html new file mode 100644 index 0000000..34ceca1 --- /dev/null +++ b/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/08 References.html @@ -0,0 +1,5 @@ +
        +
      1. + Options Pricing: Intrinsic Value And Time Value, Jean Folger, Online Copy +
      2. +
      diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/01 Introduction.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/01 Introduction.html new file mode 100755 index 0000000..b9beab6 --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/01 Introduction.html @@ -0,0 +1,3 @@ +

      + In the last chapter, we discussed two types of volatility: historical volatility and implied volatility. This chapter, we will further extend the concept of volatility and introduce the local volatility and the stochastic volatility. +

      diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/02 Motivation.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/02 Motivation.html new file mode 100755 index 0000000..6546510 --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/02 Motivation.html @@ -0,0 +1,13 @@ +

      + We already knew that volatility is a measure of the fluctuation degree of the underlying assets price series. As we discussed in the last chapter, historical volatility is the standard deviation of the price series during a certain period. It is a constant and represents the price movement in the past. However, the implied volatility is not based on the historical pricing data of stocks. It is the value of volatility parameter derived from the market quote of options in BSM pricing model. In contrast to historical volatility, implied volatility is forward-looking and varies with different options contracts. +

      +

      + In the Black–Scholes model, the asset’s price is modeled as a log-normal random variable, which means that the asset’s log-returns are normally distributed. One of the most significant assumptions in BSM model is that the volatility is a constant term over time. +

      +\[\sigma=\sigma_{implied}\] +

      + But in the real world, it could be constant in a small time period but never constant in the long term. There is volatility skew for most options, which means the volatility is not constant across strikes. +

      +

      + One way to capture the volatility skew is to assume that the volatility itself is a random variable, this is the stochastic volatility model we will discuss next. On the other hand, the introduction of additional sources of randomness will increase the complexity of the model. Another way to capture the volatility skew but without introducing the additional source of randomness is the local volatility. +

      diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/03 Local Volatility.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/03 Local Volatility.html new file mode 100755 index 0000000..64f161e --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/03 Local Volatility.html @@ -0,0 +1,35 @@ +

      1. Definition

      +

      + The constant volatility assumption in BSM model is not reasonable in most of the options pricing. The volatility skew tells us that the stock’s log-returns are actually not normally distributed. There exist some other kinds of distributions of stock price so that if we use this distribution to price the options, it would give the accurate options' price as we see in the market. The local volatility is implied in this non-normal distribution. Let's look at the definition of local volatility. +

      +

      + The local volatility of the underlying assets is a deterministic function of assets price and the time t. +

      +\[\sigma=\sigma(S_t,t)\] +

      +Therefore with the local volatility model, the stochastic process followed by the stock price is +

      +\[\text d S_t=\mu S_t\ \text d t+\sigma(S_t,t)\text d W_t\] +

      +If \(\sigma(S_t,t)=\sigma S_t\), then this is the case of BSM model with constant volatility\(\sigma\). Here we are not assuming the volatility is constant but a function of the asset price so the stock’s log-returns are not normally distributed anymore. There is only one source of randomness from the stock price: \(W_t\). +

      +

      2. Model Calibration

      +

      + How to obtain the function \(\sigma(S_t,t)\)? Finding the function \(\sigma(S_t,t)\) is known as the calibration of local volatility model. This is answered by the following Dupire's formula. +

      +\[\sigma_{Local}(K,T)=\sqrt{\frac{\frac{\partial C}{\partial T}}{\frac{1}{2}K^2\frac{\partial^2 C}{\partial K^2}}}\] + +

      + If we assume that we know all the observed market price of European call options C(T, K) for every strike K and every maturity T.  Local volatility model calculates volatilities for a set of options with different combinations of strike prices and expiration dates. For a given date, time(t) and the underlying stock price(St), a local volatility is derived from the equation that options price calculated with the local volatility equals to the market options price. +

      +

      + Usually, we can only get a limited number of contracts with a few strikes and maturities, we can follow steps below to get the local volatility estimation: +

        +
      • First, use the available quoted price to calculate the implied volatilities.
      • +
      • Appy interpolation method to produce a smooth implied volatility surface.
      • +
      • Plug implied volatilities into BSM model to get all the market prices of European calls.
      • +
      • Calculate the local volatility according to Dupire formula. To avoid taking derivatives, we could use finite differences to approximate the derivative.
      • +
      +\[\frac{\partial C}{\partial T}\approx\frac{C(K,T+\Delta T)-C(K,T-\Delta T)}{2\Delta t}\] + +\[\frac{\partial^2 C}{\partial K^2}\approx\frac{C(K-\Delta K,T)-2C(K,T)+C(K+\Delta K,T)}{(\Delta K)^2}\] diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/04 Stochastic Volatility.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/04 Stochastic Volatility.html new file mode 100755 index 0000000..ba298ef --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/04 Stochastic Volatility.html @@ -0,0 +1,159 @@ +

      1. Definition

      + +

      + In stochastic volatility models, the asset price and its volatility are both assumed to be random processes and can change over time. There are many stochastic volatility models. Here we will present the most well-known and popular one: the Heston Model. In Heston model, the stock price is log-normal distributed, the volatility process is a positive increasing function of a mean-reversion process. That is +

      +\[dS_t = \mu_tS_tdt+\sqrt{v_t}S_tdW_{1,t}\] + +\[dv_t=-\lambda(v_t-\overline{v})\ dt+\eta\sqrt{v_t}\ dW_{2,t}\] + +\[dW_{1,t},\ dW_{2,t}=\rho \ dt\] + +

      + Where the instantaneous variance of the stock price \(v_t\) itself is a stochastic process. +

      +\(\lambda\) is the speed of reversion of \(v_t\) to its long-term mean \(\overline{v})\). We can think of\(\lambda\) as the rate at which the stock price variance reverts back to its long-term average value. + +\(\eta\) is the volatility of the variance process \(v_t\) (often called the volatility of volatility) + +\(W_{1,t}\) and \(W_{2,t}\) are two dependent Wiener processes with correlation coefficient \(\rho\). +

      2. Simulation of the Heston Process

      +

      + We already discuss how to simulate the stock price process with Monte Carlo method in the introduction to stochastic process tutorial. In order to simulate the variance process, we need to write it into discrete form. The derivation can be found in paper Rouah F D. Euler and Milstein discretization. +

      +\[v_{t+\Delta t}=\left(\sqrt{v_t}+\frac{1}{2}\eta\sqrt{\Delta t}W_1\right)^2-\lambda(v_t-\overline{v})\Delta t-\frac{\eta^2}{4}\Delta t\] +

      + Then, we take following steps to simulate Heston process: Given the value of \(v_t\) at time t, we first update to \(v_{t+\Delta t}\) using the formula above (Here note that in options pricing, Monte Carlo method uses risk-neutral result, so here the expected return \(\mu\) should equal the risk free rate r): +

      +
        +
      • Given the value of \(v_t\) at time t, we first update to \(v_{t+\Delta t}\) using the formula above
      • +
      • We obtain \(S_{t+\Delta t}\) using\[S_{t+\Delta t}=S_t\ \text {exp}\left[(r-\frac{1}{2}v_t)\Delta t+\sqrt{v_t\Delta t}W_2\right]\]
      • +
      • To generate \(W_1\) and \(W_2\) with correlation \(\rho\), we first generate two independent standard normal variables \(Z_1\) and \(Z_2\), set \(W_1=Z_1\), then \[W_2=\rho Z_1+\sqrt{1-\rho^2}Z_2\]
      • +
      +
      + +
      +from numpy import sqrt, exp
      +import numpy as np
      +
      +def mc_heston(option_type,S0,K,T,initial_var,long_term_var,rate_reversion,vol_of_vol,corr,r,num_reps,steps):
      +    """
      +    option_type:    'p' put option 'c' call option
      +    S0:              the spot price of underlying stock
      +    K:              the strike price
      +    T:              the maturity of options
      +    initial_var:    the initial value of variance
      +    long_term_var:  the long term average of price variance
      +    rate_reversion: the mean reversion rate for the variance
      +    vol_of_vol:     the volatility of volatility(the variance of the variance of stock price)
      +    corr:           the correlation between the standard normal random variables W1 and W2
      +    r:              the risk free rate
      +    reps:           the number of repeat for monte carlo simulation
      +    steps:          the number of steps in each simulation
      +    """
      +    delta_t = T/float(steps)
      +    payoff = 0
      +    for i in range(num_reps):
      +        vt = initial_var
      +        st = S0
      +        for j in range(steps):
      +            w1 = np.random.normal(0, 1)
      +            w2 = corr*w1+sqrt(1-corr**2)*np.random.normal(0, 1)
      +            vt = (sqrt(vt) + 0.5 * vol_of_vol * sqrt(delta_t) * w1)**2  \
      +                 - rate_reversion * (vt - long_term_var) * delta_t \
      +                 - 0.25 * vol_of_vol**2 * delta_t
      +            st = st * exp((r - 0.5*vt)*delta_t + sqrt(vt*delta_t) * w2)
      +        if option_type == 'c':
      +                payoff += max(st - K, 0)
      +        elif option_type == 'p':
      +                payoff += max(K - st, 0)
      +
      +    return (payoff/float(num_reps)) * (exp(-r*T))
      +  
      +
      +

      3. Calibration of Model Parameters

      +

      + The calibration of a model is the process of seeking the model parameters for which the model result best matches the market option data. This data usually consists of market quoted prices for European plain vanilla call options or of Black-Scholes implied volatilities derived from prices. Calibrating the Heston model is equivalent to solving the non-linear constrained optimization problem: Minimize the error between the market quotes of options and the options price estimated by Heston model. The object function could be the absolute value of the error or the absolute squared error. You can refer to this paper Parameters recovery via calibration in the Heston model for details of different error measure. +

      +

      + There are five parameters to be estimated in Heston model: +

      +
        +
      • \(v_t\) : the initial value of the variance (Bounds of 0 and 1)
      • +
      • \(\overline{v}\) : the long term average variance of stock price (Bounds of 0 and 1)
      • +
      • \(\lambda\) : the speed of reversion (non-negativity)
      • +
      • \(\eta\) : the volatility of the volatility (non-negativity)
      • +
      • \(\rho\) : the correlation coefficient between two Wiener process (Bounds of -1 and 1)
      • +
      +

      + Here we use QuantLib Python library to calibrate the parameters. +

      +

      + Let's look at how we can calibrate the Heston model to some market quotes. For example, let's say we are interested in trading SPDR S&P 500 ETF (SPY) options with 4-months maturity. Here we choose all the options contracts written on SPY expire in 4 months. We need the strikes and the market prices of those contracts and the underlying price as the input of our objective function to minimize. +

      + +
      + +
      import pandas as pd
      +from numpy import sqrt,mean,log,diff
      +import QuantLib as ql
      +from pandas_datareader.data import Options
      +import pandas_datareader.data as web
      +import datetime
      +opt = Options('spy', 'yahoo')
      +expiration_dates = [ql.Date(i.day, i.month, i.year) for i in opt.expiry_dates]
      +expiry_index = 14 # choose the contracts expire on 11/17/2017
      +data = opt.get_call_data(expiry=opt.expiry_dates[expiry_index])
      +strikes = list(data.index.get_level_values('Strike'))
      +premium = list(data['Last'])
      +day_count = ql.Actual365Fixed()
      +calendar = ql.UnitedStates()
      +calculation_date = ql.Date(opt._quote_time.day,opt._quote_time.month,opt._quote_time.year) # 08/10/2017
      +spot = opt.underlying_price  # spot price is 244.82
      +ql.Settings.instance().evaluationDate = calculation_date
      +dividend_yield = ql.QuoteHandle(ql.SimpleQuote(0.0))
      +risk_free_rate = 0.01
      +dividend_rate = 0.0
      +flat_ts = ql.YieldTermStructureHandle(
      +    ql.FlatForward(calculation_date, risk_free_rate, day_count))
      +dividend_ts = ql.YieldTermStructureHandle(
      +    ql.FlatForward(calculation_date, dividend_rate, day_count))
      +# dummy parameters
      +initial_var = 0.2; rate_reversion = 0.5; long_term_var = 0.2; corr = -0.75; vol_of_vol = 0.2;
      +# initial_var = 0.2; rate_reversion = 0.15; long_term_var = 0.6; corr = -0.75; vol_of_vol = 0.2;
      +process = ql.HestonProcess(flat_ts, dividend_ts,
      +                           ql.QuoteHandle(ql.SimpleQuote(spot)),
      +                           initial_var, rate_reversion, long_term_var, vol_of_vol, corr)
      +model = ql.HestonModel(process)
      +engine = ql.AnalyticHestonEngine(model)
      +heston_helpers = []
      +date = expiration_dates[expiry_index]
      +for j, s in enumerate(strikes):
      +    t = (date - calculation_date)
      +    p = ql.Period(t, ql.Days)
      +    sigma = premium[j]
      +    helper = ql.HestonModelHelper(p, calendar, spot, s,
      +                                  ql.QuoteHandle(ql.SimpleQuote(sigma)),
      +                                  flat_ts,
      +                                  dividend_ts)
      +    helper.setPricingEngine(engine)
      +    heston_helpers.append(helper)
      +lm = ql.LevenbergMarquardt(1e-8, 1e-8, 1e-8)
      +model.calibrate(heston_helpers, lm,
      +                 ql.EndCriteria(500, 50, 1.0e-8,1.0e-8, 1.0e-8))
      +long_term_var, rate_reversion, vol_of_vol, corr, initial_var = model.params()
      +print "long_term_var = %f, rate_reversion = %f, vol_of_vol = %f, corr = %f, initial_var = %f" % (long_term_var, rate_reversion, vol_of_vol, corr, initial_var)
      +
      +
      +

      + We get the market data at 08/10/2017 and choose the contracts which expire on 11/17/2017. Then we get the following parameters estimation +

      + +
      + +
      long_term_var = 0.191762, rate_reversion = 0.000001, vol_of_vol = 0.215442, corr = -0.817388, initial_var = 0.198778
      +
      +
      +

      + When you get the parameter estimation, you can plug the parameter values into the Heston Monte Carlo options pricing model and get the price estimation with stochastic volatility. But as we already discussed for Heston model, the introduction of randomness of volatility increases the complexity of the estimation. No matter which error measure is chosen, the objective function is highly non-linear and far from being convex and we have 5 parameters in the model. All these drawbacks of Heston models will make the estimated parameter values quite sensitive the initial guess of parameters. Therefore options prices generated by the Heston model are also parameter sensitive. From the above, we can get a sense of how computationally expensive it can be to get accurate values of options in a stochastic volatility model. +

      diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/05 Summary.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/05 Summary.html new file mode 100755 index 0000000..6f28de7 --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/05 Summary.html @@ -0,0 +1,6 @@ +

      + In Black–Scholes, that volatility is assumed to be constant, it is not reasonable especially for some exotic options in which the option's payoff is based on the changing volatility. Therefore we introduced the two volatility models to capture the volatility skew. The first approach, local volatility, assumes that the volatility is a deterministic function of time and the underlying asset price. This function must be chosen as to match the observed market option prices. In another stochastic volatility models, the asset price and its volatility are both assumed to be random processes. +

      +

      + The calibration needs the market price of the Vanilla options. When we get the model estimation we can use these models to price exotic options. +

      diff --git a/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/06 References.html b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/06 References.html new file mode 100644 index 0000000..750b8af --- /dev/null +++ b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/06 References.html @@ -0,0 +1,17 @@ +
        +
      1. + Bouzoubaa M, Osseiran A. Exotic options and hybrids: A guide to structuring, pricing and trading[M]. John Wiley & Sons, 2010.[/ref] +
      2. +
      3. + Gatheral J. The volatility surface: a practitioner's guide[M]. John Wiley & Sons, 2011 +
      4. +
      5. + Rouah F D. Euler and Milstein discretization[J]. Documento de Trabajo, Sapient Global Markets, Estados Unidos, 2011. Online Copy +
      6. +
      7. + Escobar, Marcos, and Christoph Gschnaidtner. "Parameters recovery via calibration in the Heston model: A comprehensive review." Wilmott 2016.86 (2016): 60-81. +
      8. +
      9. + Modeling Volatility Smile and Heston Model Calibration Using QuantLib Python, Goutham Balaraman, online copy +
      10. +
      diff --git a/Tutorial Series/Introduction to Options/Tutorial08 Local Volatility and Stochastic Volatility.ipynb b/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/08 Local Volatility and Stochastic Volatility.ipynb old mode 100644 new mode 100755 similarity index 100% rename from Tutorial Series/Introduction to Options/Tutorial08 Local Volatility and Stochastic Volatility.ipynb rename to 06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/08 Local Volatility and Stochastic Volatility.ipynb diff --git a/07 Applied Options[]/01 Covered Call/01 Definition.html b/07 Applied Options[]/01 Covered Call/01 Definition.html new file mode 100755 index 0000000..3c3a6a3 --- /dev/null +++ b/07 Applied Options[]/01 Covered Call/01 Definition.html @@ -0,0 +1,33 @@ +

      +A Covered Call is an options strategy that involves both the underlying stock and an options contract. The trader buys (or already owns) a stock, then sells call options for the same amount of stock. The aim of the Covered Call is to profits from the option premium by selling calls written on the stock you already owned. At any time for US options or at expiration for European options, if the stock moves below the strike price, you can keep the premium and still maintain the stock position. If the price moves above the strike, the options contract will be exercised and you will have to sell the stock at the strike price but you will still keep the premium. The risk of a Covered Call also comes from the long stock position whose price could drop. +

      +

      +The payoff is as follows: +

      +
      + +
      +  import numpy as np
      +  import matplotlib.pyplot as plt
      +  %pylab inline
      +  price = np.arange(110,230,1) # the stock price at expiration date
      +  strike = 160 # the strike price
      +  premium = 7.5 # the option premium
      +  # the payoff of short call position
      +  payoff_short_call = [min(premium, -(i - strike-premium)) for i in price]
      +  # the payoff of long stock postion
      +  payoff_long_stock = [i-strike for i in price]
      +  # the payoff of covered call
      +  payoff_covered_call = np.sum([payoff_short_call, payoff_long_stock], axis=0)
      +  plt.figure(figsize=(20,11))
      +  plt.plot(price, payoff_short_call, label = 'short call')
      +  plt.plot(price, payoff_long_stock, label = 'underlying stock')
      +  plt.plot(price, payoff_covered_call, label = 'covered call')
      +  plt.legend(fontsize = 20)
      +  plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +  plt.ylabel('payoff',fontsize = 15)
      +  plt.title('Covered Call Strategy Payoff at Expiration',fontsize = 20)
      +  plt.grid(True)
      +
      +
      +covered call strategy payoff diff --git a/07 Applied Options[]/01 Covered Call/02 Implementation.html b/07 Applied Options[]/01 Covered Call/02 Implementation.html new file mode 100755 index 0000000..a4bcc62 --- /dev/null +++ b/07 Applied Options[]/01 Covered Call/02 Implementation.html @@ -0,0 +1,57 @@ +

      +Step 1: Initialize the Algorithm: At the beginning of your algorithm, you need to set the start date, the end date and the cash required for the algorithm. For options algorithm, you need to add the equity and the options written on this equity. +

      +
      + +
      def Initialize(self):
      +   self.SetStartDate(2016, 1, 1)
      +   self.SetEndDate(2016, 3, 1)
      +   self.SetCash(100000)
      +   equity = self.AddEquity("IBM", Resolution.Minute)
      +   option = self.AddOption("IBM", Resolution.Minute)
      +   self.symbol = option.Symbol
      +   # set our strike/expiry filter for this option chain
      +   option.SetFilter(-3, +3, timedelta(0), timedelta(30))
      +   # use the underlying equity as the benchmark
      +   self.SetBenchmark(equity.Symbol)
      +   self.call = "IBM" # Initialize the call contract
      +
      +
      +

      + In the initialization process, you need to add a coarse selection for the options contracts. Here we use option.SetFilter(-3, +3, timedelta(0), timedelta(60)) to implement the coarse selection process. If today's market price of underlying stock is $159, the strike prices of IBM options are spaced $5. Then SetFilter will look up the most at the money contract with the strike being K=$160 (Here K might not be $159 since rarely will option be ATM exactly). The filter will look for options with strikes between and including (160-5*3, 160+5*3). The time to expiration of these options is restricted within 60 days from now on. +

      +

      + Step 2: Choose the Call Options Contract: Purchasing the underlying stock for 100 shares or an integer multiple of 100 shares. For options contract, one contract represents 100 shares of stock. +

      +

      + Step 3: Filter out the call options from candidate contracts. +

      +
      +
      +  
      +
      call = [x for x in chain if x.Right == OptionRight.Call]
      +  
      +
      +

      + Step 4: Select the most ATM contract with the furthest expiration date from call options contracts. Sell this call contract for each 100 shares of stock you own. Here you can also choose ITM or OTM contract based on your expected level of profit and the level of risk you can take. +

      +
      + +
      def TradeOptions(self,slice):
      +		if slice.OptionChains.Count == 0: return
      +    for i in slice.OptionChains:
      +        if i.Key != self.symbol: continue
      +        chain = i.Value
      +        call = [x for x in chain if x.Right == 0] # filter the call options contracts
      +        # sorted the contracts according to their expiration dates and choose the ATM options
      +        contracts = sorted(sorted(call, key = lambda x: abs(chain.Underlying.Price - x.Strike)),
      +                                        key = lambda x: x.Expiry, reverse=True)
      +        if len(contracts) == 0: return
      +        contract = contracts[0]
      +        self.call = contract.Symbol
      +        self.Sell(self.call, 1) # short the call options
      +        if self.Portfolio["IBM"].Quantity == 0:
      +            self.Buy("IBM",100)     # buy 100 the underlying stock
      +            self.Log("The stock price at time 0 S(0): {}".format(self.Securities["IBM"].Price))
      +
      +
      diff --git a/07 Applied Options[]/01 Covered Call/03 Summary.html b/07 Applied Options[]/01 Covered Call/03 Summary.html new file mode 100755 index 0000000..0f8bef9 --- /dev/null +++ b/07 Applied Options[]/01 Covered Call/03 Summary.html @@ -0,0 +1,3 @@ +

      +From the above strategy we can see that the share price of IBM had been increasing during the backtesting period from January 2016 to June 2016. The drawdown is small -- the Covered Call strategy performs better than a simple buy-and-hold strategy of underlying stock in a bearish market. The benefit of Covered Call is that you keep the premium, any gains from the underlying price increase up to the strike price, and accrued dividends during the stock holding period. In a bullish market, however, you miss out on any gains if the underlying stock price breaches the strike price. +

      diff --git a/07 Applied Options[]/01 Covered Call/04 Algorithm.html b/07 Applied Options[]/01 Covered Call/04 Algorithm.html new file mode 100755 index 0000000..6858e6e --- /dev/null +++ b/07 Applied Options[]/01 Covered Call/04 Algorithm.html @@ -0,0 +1,18 @@ +

      +Backtest using SetFilter +

      +
      +
      +
      + +
      +
      +

      +Backtest using OptionChainProvider +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/02 Bull Call Spread/01 Definition.html b/07 Applied Options[]/02 Bull Call Spread/01 Definition.html new file mode 100755 index 0000000..c361521 --- /dev/null +++ b/07 Applied Options[]/02 Bull Call Spread/01 Definition.html @@ -0,0 +1,36 @@ +

      + Bull Call Spread is an options strategy involving two call option contracts with the same expiration but different strikes. The strategy buys one call option with a lower strike and sells another call option with a higher strike price. +

      +

      + This strategy creates a ceiling and floor for the profit. By purchasing a call and selling a call with higher strike simultaneously, traders can reduce the cost of just one long call option with the premium of a short call option. But the premium of ITM call is more expensive than the OTM call. The strategy limits the loss resulting from a drop in the price of the underlying stock but still creates a ceiling to the profit while the underlying price is increasing. +

      +

      + Take GOOG as an example. If the share price of GOOG is $950 at time 0, the premium of ITM call option is 50 with strike 900 and the premium of OTM call option is 2 with strike 1000. If we ignore the commission, dividends and other transaction fees, the payoff of Bull Call Spread strategy is as follows: +

      +
      + +
      price = np.arange(800,1100,1)
      +k_low = 900 # lower strike price for call
      +k_high = 1000 # higher strike price for call
      +premium_low = 20 # premium of call option with lower strike
      +premium_high = 2 # premium of call option with higher strike
      +# long call with lower strike
      +payoff_long_call = [max(-premium, i-k_low-premium_low ) for i in price]
      +# short call with higher strike
      +payoff_short_call = [min(premium, -(i-k_high-premium_high)) for i in price]
      +payoff = np.sum([payoff_long_call, payoff_short_call], axis=0)
      +plt.figure(figsize=(20,11))
      +plt.plot(price, payoff_long_call, label = 'long call')
      +plt.plot(price, payoff_short_call, label = 'short call')
      +plt.plot(price, payoff, label = 'Bull Call Spread')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Bull Call Spread Payoff at Expiration',fontsize = 20)
      +plt.grid(True)
      +
      +
      +Tutorial02-bull-call-spread +

      + From the payoff plot we can see, the maximum payoff of the strategy is the difference between the option strike prices minus the difference between the premiums. +

      diff --git a/07 Applied Options[]/02 Bull Call Spread/02 Implementation.html b/07 Applied Options[]/02 Bull Call Spread/02 Implementation.html new file mode 100755 index 0000000..b486aab --- /dev/null +++ b/07 Applied Options[]/02 Bull Call Spread/02 Implementation.html @@ -0,0 +1,63 @@ +

      + Step 1: First, you need to initialize the algorithm including set the start date, end date and the cash required. Then use option.SetFilter(-6, 6, timedelta(30), timedelta(60)) to filter the candidate contracts which expire in 30 days to 60 days from now on. The strike price range involves both ITM and OTM options. Then we get the option chains of GOOG. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2016, 5, 1)
      +	self.SetEndDate(2016, 10, 1)
      +	self.SetCash(200000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	# set our strike/expiry filter for this option chain
      +	option.SetFilter(-6, 6, timedelta(30), timedelta(60))
      +	# use the underlying equity GOOG as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Choose the contracts with the same expiration date. For demonstration purpose here we sorted the contracts by their expiration dates and choose the options with the furthest expiration date in the option chain. +

      +
      + +
      def TradeOptions(self,optionchain):
      +	for i in optionchain:
      +		if i.Key != self.symbol: continue
      +		chain = i.Value
      +		# sorted the optionchain by expiration date and choose the furthest date
      +		expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
      +
      +
      +

      + Step 3: Filter the call options from the contracts which expire on the furthest expiration date in the option chain. +

      +
      + +
      call = [i for i in chain if i.Expiry == expiry and i.Right == OptionRight.Call]
      +
      +
      +

      + Step 4: Sort the call options with the same expiration date according to their strike price. Then buy the call option with the lowest strike price and sell the call with the highest strike price. +

      +
      + +
      call_contracts = sorted(call,key = lambda x: x.Strike)
      +	if len(call_contracts) == 0: continue
      +	# call option contract with lower strike
      +	self.call_low = call_contracts[0]
      +	# call option contract with higher strike
      +	self.call_high = call_contracts[-1]
      +	self.Buy(self.call_low.Symbol, 1)
      +	self.Sell(self.call_high.Symbol ,1)
      +
      +
      +

      + Note here you need to add the following rules in OnData(self,slice) method because you only need to trade options once and wait until the contracts expire. If you already had securities invested in the portfolio, then you do not need to trade new options. +

      +
      + +
      if not self.Portfolio.Invested:
      +	self.TradeOptions(optionchain)
      +
      +
      diff --git a/07 Applied Options[]/02 Bull Call Spread/03 Summary.html b/07 Applied Options[]/02 Bull Call Spread/03 Summary.html new file mode 100755 index 0000000..22f9601 --- /dev/null +++ b/07 Applied Options[]/02 Bull Call Spread/03 Summary.html @@ -0,0 +1,3 @@ +

      +This strategy can be implemented when you have a moderate outlook on the stock because the payoff reaches its maximum when the price is between the strike price range of two traded options. The strategy protects the downside move of the stock price. But when the price is above the higher strike, the profit is capped. +

      diff --git a/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html b/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html new file mode 100755 index 0000000..ef1b62b --- /dev/null +++ b/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html @@ -0,0 +1,18 @@ +

      +Backtest (SetFilter) +

      +
      +
      +
      + +
      +
      +

      +Backtest (OptionChainProvider) +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/03 Long Straddle/01 Definition.html b/07 Applied Options[]/03 Long Straddle/01 Definition.html new file mode 100755 index 0000000..8604edc --- /dev/null +++ b/07 Applied Options[]/03 Long Straddle/01 Definition.html @@ -0,0 +1,29 @@ +

      + Long Straddle is an options trading strategy involving the going long in both a call and a put option, where both options have the same underlying asset, strike price and expiration date. This strategy aims to profit from volatile movements in the underlying stock, either positive or negative. +

      +
      + +
      price = np.arange(750,1000,1)
      +strike = 900 # strike price for both call and put
      +premium_call = 20 # premium of call option
      +premium_put = 10 # premium of put option
      +# payoff for the long call
      +payoff_long_call = [max(-premium_call, i-strike-premium_call) for i in price]
      +# payoff for the long put
      +payoff_long_put = [max(-premium_put, strike-i-premium_put) for i in price]
      +payoff = np.sum([payoff_long_call, payoff_long_put], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_long_call, label = 'Long Call')
      +plt.plot(price, payoff_long_put, label = 'long put')
      +plt.plot(price, payoff, label = 'Long Straddle')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Long Straddle Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +long straddle strategy payoff +

      + Given this plot, if the stock price moves significantly away from the strike price in either direction, the Long Straddle will profit. The potential profit is unlimited on the upside because the stock price can rise indefinitely. On the downside, the potential profit is substantial but limited since the stock price can't fall below zero. The potential loss is limited to the premium of both call and put options. The maximum loss will be realized if the stock price is exactly equal to the strike price at expiration, and both options will expire worthless. +

      diff --git a/07 Applied Options[]/03 Long Straddle/02 Implementation.html b/07 Applied Options[]/03 Long Straddle/02 Implementation.html new file mode 100755 index 0000000..63d0380 --- /dev/null +++ b/07 Applied Options[]/03 Long Straddle/02 Implementation.html @@ -0,0 +1,48 @@ +

      + Step 1: Initialize your algorithm and filter the contract. Here we choose the time to expiration to be between 30 to 60 days. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2017, 4, 01)
      +	self.SetEndDate(2017, 6, 30)
      +	self.SetCash(100000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	# set our strike/expiry filter for this option chain
      +	option.SetFilter(-5, 5, timedelta(30), timedelta(60))
      +	# use the underlying equity GOOG as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Sort the option chain by expiration and choose the furthest date to filter the call contract. Then sort those call contracts by their strike price and choose the call contracts with the highest strike price to trade. +

      +
      + +
      for i in optionchain:
      +	if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# sort the optionchain by expiration date and choose the furthest date
      +	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
      +	# filter the call options from the contracts expires on that date
      +	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
      +	# sort the contracts according to their strike prices
      +	call_contracts = sorted(call,key = lambda x: x.Strike)
      +	if len(call_contracts) == 0: continue
      +	self.call = call_contracts[0]
      +
      +
      +

      + Step 3: According to the call option contract, choose the put option with the same strike price and the same expiration date. Then buy the call option and the put option at the same time and wait until expiration. +

      +
      + +
       for i in chain:
      +	if i.Expiry == expiry and i.Right == 1 and i.Strike ==call_contracts[0].Strike:
      +	    self.put = i
      +self.Buy(self.call.Symbol ,1)
      +self.Buy(self.put.Symbol ,1)
      +
      +
      diff --git a/07 Applied Options[]/03 Long Straddle/03 Summary.html b/07 Applied Options[]/03 Long Straddle/03 Summary.html new file mode 100755 index 0000000..95cadda --- /dev/null +++ b/07 Applied Options[]/03 Long Straddle/03 Summary.html @@ -0,0 +1,3 @@ +

      + There are three possible outcomes at expiration for the Long Straddle strategy. If the stock price is at the strike price at expiration, then both the call and the put become worthless and no stock position is created. If the stock price is above the strike price at expiration, the put option expires worthless, the long call is exercised, the stock is purchased at the strike price and a long stock position for is created. If the stock price is below the strike price at expiration, the call expires worthless, the long put is exercised, the stock is sold at the strike price and a short stock position is created. In this algorithm, the undelying asset is GOOG stock. We purchase both the $820 put and the $820 call at time 0. At the expiration, the share price of GOOG rises to 930 then the call option is exercised and the put options become worthless. After expiration, we hold long position for 100 shares of GOOG stock. +

      diff --git a/07 Applied Options[]/03 Long Straddle/04 Algorithm.html b/07 Applied Options[]/03 Long Straddle/04 Algorithm.html new file mode 100755 index 0000000..89e3d28 --- /dev/null +++ b/07 Applied Options[]/03 Long Straddle/04 Algorithm.html @@ -0,0 +1,18 @@ +

      + Backtest (Using SetFilter) +

      +
      +
      +
      + +
      +
      +

      +Backtest (Using OptionChainProvider) +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/04 Long Strangle/01 Definition.html b/07 Applied Options[]/04 Long Strangle/01 Definition.html new file mode 100755 index 0000000..4e3c5d7 --- /dev/null +++ b/07 Applied Options[]/04 Long Strangle/01 Definition.html @@ -0,0 +1,31 @@ +

      + A Long Strangle is an options trading strategy that involves the simultaneous buying of an out-of-the-money put and an out-of-the-money call with the same underlying stock and expiration date. Similar to a Long Straddle, the Long Strangle has unlimited profit and limited risk, and can be applied if traders think the underlying asset will become volatile and move significantly in either direction. It differs from Long Straddle, however, in that the call strike is above the put strike. +

      +
      + +
      price = np.arange(700,1000,1)
      +# Suppose the undelying price at time 0 is 830
      +k_call = 870 # The strike price of OTM call
      +k_put = 795 # The strike price of OTM put
      +premium_call = 8 # premium of call option
      +premium_put = 10 # premium of put option
      +# payoff for the long call
      +payoff_long_call = [max(-premium_call, i-k_call-premium_call) for i in price]
      +# payoff for the long put
      +payoff_long_put = [max(-premium_put, k_put-i-premium_put) for i in price]
      +payoff = np.sum([payoff_long_call, payoff_long_put], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_long_call, label = 'Long Call')
      +plt.plot(price, payoff_long_put, label = 'long put')
      +plt.plot(price, payoff, label = 'Long Strangle')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Long Strangle Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +long strangle strategy payoff +

      + From the payoff plot, the most that you can lose in a Long Strangle is the total premium you pay for holding the long position of both options. The maximum loss occurs when the stock price falls between the strike price of two options, in which case both options are worthless at expiration. The maximum gain of Long Strangle is unlimited for upside move because a stock's price has no maximum threshold. +

      diff --git a/07 Applied Options[]/04 Long Strangle/02 Implementation.html b/07 Applied Options[]/04 Long Strangle/02 Implementation.html new file mode 100755 index 0000000..71cc2bf --- /dev/null +++ b/07 Applied Options[]/04 Long Strangle/02 Implementation.html @@ -0,0 +1,62 @@ +

      + Step 1: Initialize your algorithm including setting the start and end date, setting the cash and filtering the options contracts. Note here in SetFilter, the strike price should range from negative to positive because we need to choose out-of-the-money put and call options from candidate contracts. The strike price of OTM call should be greater than ATM options and the strike price of OTM put should be lower than ATM options. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2017, 4, 1)
      +	self.SetEndDate(2017, 5, 30)
      +	self.SetCash(100000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	# set our strike/expiry filter for this option chain
      +	option.SetFilter(-15, 15, timedelta(30), timedelta(60))
      +	# use the underlying equity GOOG as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Sort the option chain by expiration date and choose an expiration date you want to trade. For demonstration purpose, here we choose options with the furthest expiration date in candidate contracts. Then filter out the call options which expire on that date. +

      +
      + +
      for i in optionchain:
      +	if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# sorted the option chain by expiration date and choose the furthest date
      +	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
      +	# filter the call options from the contracts expires on that date
      +	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
      +
      +
      +

      + Step 3: Sort the call options by their expiration date and choose the deep OTM contract which has the largest strike price. +

      +
      + +
      call_contracts = sorted(call,key = lambda x: x.Strike)
      +if len(call_contracts) == 0: continue
      +# choose the deep OTM call option
      +self.call = call_contracts[-1]
      +
      +
      +

      + Step 4: Select the put options which have the same expiration date with the call option and sort the put options by strike price. Then choose the deep out-of-the-money put which has the minimum strike price among all the available put options. +

      +
      + +
      put_contracts = sorted([i for i in chain if i.Expiry == expiry and i.Right == 1], key = lambda x: x.Strike)
      +# choose the deep OTM put option
      +self.put = put_contracts[0]
      +
      +
      +

      + Step 5: Buy the call and the put options at the same time and wait until expiration. +

      +
      + +
      self.Buy(self.call.Symbol ,1)
      +self.Buy(self.put.Symbol ,1)
      +
      +
      diff --git a/07 Applied Options[]/04 Long Strangle/03 Summary.html b/07 Applied Options[]/04 Long Strangle/03 Summary.html new file mode 100755 index 0000000..f567b6c --- /dev/null +++ b/07 Applied Options[]/04 Long Strangle/03 Summary.html @@ -0,0 +1,6 @@ +

      + In this algorithm, at time 0, we buy OTM call with strike price 870 and OTM put with strike price 795. The share price of GOOG at time 0 is $832.8. At the expiry, the share price of GOOG is $930.16, and so the call option is exercised and we get 100 shares of GOOG while the put option expires worthless. +

      +

      + You can enter into a Long Strangle if you have no clear idea of market direction but forecast that there will be a great movement in the underlying asset. As the options you buy are all out of the money, the premium cost of entering this position is low. However, because the call and the put options are all out of the money, the stock will need to move even more significantly than in a long straddle in order to profit from this strategy. +

      diff --git a/07 Applied Options[]/04 Long Strangle/04 Algorithm.html b/07 Applied Options[]/04 Long Strangle/04 Algorithm.html new file mode 100755 index 0000000..09a8a85 --- /dev/null +++ b/07 Applied Options[]/04 Long Strangle/04 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtest using SetFilter +

      +
      +
      +
      + +
      +
      + +

      + Backtest using OptionChainProvider +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/05 Butterfly Spread/01 Definition.html b/07 Applied Options[]/05 Butterfly Spread/01 Definition.html new file mode 100755 index 0000000..6d03a55 --- /dev/null +++ b/07 Applied Options[]/05 Butterfly Spread/01 Definition.html @@ -0,0 +1,66 @@ +

      + A Butterfly Spread strategy involves trading four option contracts with the same expiration but three different strike prices. There are four kinds of Butterfly Spread: +

      + + + + + + + + + + + + + + + + + + + + + + + + + +
       Name Strategy
       Long butterfly spread with calls Buy 1 ITM call, sell 2 ATM call, buy 1 OTM call
       Long butterfly spread with puts Buy 1 ITM put, sell 2 ATM put, buy 1 OTM put
       Short butterfly spread with calls Sell 1 ITM call, buy 2 ATM call, sell 1 OTM call
       Short butterfly spread with puts Buy 1 ITM put, sell 2 ATM put, buy 1 OTM put
      +

      + A Butterfly Spread consists of three legs with a total of four options. In this tutorial, we use the Long Butterfly Spread as an example: long one ITM call, short two ATM calls and long one OTM call. All the calls have the same expiration. On the other hand, the middle strike is halfway between the lower and the higher strikes. +

      +

      + The aim of a Butterfly Spread strategy is for a trader to profit from marginal price changes in the underlying stock in either direction. +

      +
      + +
      price = np.arange(800,1100,1)
      +# Suppose the undelying price at time 0 is 935
      +k_itm = 915 # the strike price of ITM call
      +k_otm = 955 # the strike price of OTM call
      +k_atm = 935 # the strike price of ATM call
      +premium_itm = 45 # the premium of ITM call
      +premium_otm = 15 # the premium of OTM call
      +premium_atm = 25 # the premium of ATM call
      +# payoff for the long ITM call position
      +payoff_itm_long = [max(-premium_itm, i-k_itm-premium_itm) for i in price]
      +# payoff for the long OTM call position
      +payoff_otm_long = [max(-premium_otm, i-k_otm-premium_otm) for i in price]
      +# payoff for the 2 short ATM call position
      +payoff_atm_short = [min(2*premium_atm, -2*(i-k_atm-premium_atm)) for i in price]
      +# payoff for Butterfly Spread Strategy
      +payoff = np.sum([payoff_itm_long,payoff_otm_long,payoff_atm_short], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_itm_long, label = 'Long ITM Call')
      +plt.plot(price, payoff_otm_long, label = 'Long OTM Call')
      +plt.plot(price, payoff_atm_short, label = 'Short 2 ATM Call')
      +plt.plot(price, payoff, label = 'Long Call Butterfly Spread')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Long Call Butterfly Spread Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +butterfly spread strategy payoff diff --git a/07 Applied Options[]/05 Butterfly Spread/02 Implementation.html b/07 Applied Options[]/05 Butterfly Spread/02 Implementation.html new file mode 100755 index 0000000..99e677e --- /dev/null +++ b/07 Applied Options[]/05 Butterfly Spread/02 Implementation.html @@ -0,0 +1,57 @@ +

      + Step 1: Initialize your algorithm including setting the start date and the end date, setting the cash and implement a coarse selection of option contract. SetFilter(-9, 9, timedelta(30), timedelta(60)) helps us choose the contracts which expire in 30 to 60 days. For the strike parameter, the first parameter is the minimum strike rank relative to market price,  the second parameter is the maximum strike rank relative to market price. The rank of ATM contract is 0. Here we need to choose 2 numbers which are symmetrical with 0 to get strike prices for both ITM and OTM contracts. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2017, 4, 1)
      +	self.SetEndDate(2017, 5, 30)
      +	self.SetCash(150000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	option.SetFilter(-9, 9, timedelta(30), timedelta(60))
      +	# use the underlying equity GOOG as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Second we need to choose an expiration date for all the contracts, then filter out all the call options that expire on that date. +

      +
      + +
      for i in optionchain:
      +	if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# sorted the optionchain by expiration date and choose the furthest date
      +	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
      +	# filter the call options from the contracts expires on that date
      +	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
      +
      +
      +

      + Step 3: Sort the call options by their strike price in ascending order. Then choose the ATM option to be the one with the smallest absolute difference between the strike price and the underlying asset price. The OTM option is the last one in the call options list with the highest strike price. The corresponding ITM option is the first one in the list with the lowest strike price. +

      +
      + +
      # sorted the contracts according to their strike prices
      +call_contracts = sorted(call,key = lambda x: x.Strike)
      +if len(call_contracts) == 0: continue
      +# choose OTM call
      +self.otm_call = call_contracts[-1]
      +# choose ITM call
      +self.itm_call = call_contracts[0]
      +# choose ATM call
      +self.atm_call = sorted(call_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
      +
      +
      +

      + Step 4: Purchase 1 ITM call option and 1 OTM call option, then sell 2 ATM call option. +

      +
      + +
      self.Sell(self.atm_call.Symbol ,2)
      +self.Buy(self.itm_call.Symbol ,1)
      +self.Buy(self.otm_call.Symbol ,1)
      +
      +
      diff --git a/07 Applied Options[]/05 Butterfly Spread/03 Summary.html b/07 Applied Options[]/05 Butterfly Spread/03 Summary.html new file mode 100755 index 0000000..052e555 --- /dev/null +++ b/07 Applied Options[]/05 Butterfly Spread/03 Summary.html @@ -0,0 +1,3 @@ +

      + From the following algorithm, at time 0, the GOOG share price is $832.8. We purchase 1 OTM call option with strike price $855, 1 ITM call option with strike price $810 and sell 2 ATM options with strike prices at 835. At the expiry 05/19/2017, the share price is $930 and so the long positions of the ITM option and the OTM option are exercised: we buy 100 GOOG shares at $810 and buy another 100 shares at $855. At the same time, the 2 short positions of the ATM option are also exercised: we sell 200  GOOG shares to the option holder at $835. After the expiration date, we don't hold any shares of the underlying. Since the stock price had a sharp increase during the life of options, we fail to profit from a Long Call Butterfly Spread. +

      diff --git a/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html b/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html new file mode 100755 index 0000000..beb7ac0 --- /dev/null +++ b/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtest using SetFilter +

      +
      +
      +
      + +
      +
      + +

      + Backtest using OptionChainProvider +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/06 Iron Condor/01 Definition.html b/07 Applied Options[]/06 Iron Condor/01 Definition.html new file mode 100755 index 0000000..5301009 --- /dev/null +++ b/07 Applied Options[]/06 Iron Condor/01 Definition.html @@ -0,0 +1,70 @@ +

      + An Iron Condor is an option strategy which involves four option contracts. All options have the same expiration date but different strike prices, where generally the spread in the put strike prices is the same as the spread in the calls. The order of strike for four contracts is A > B > C > D. +

      + + + + + + + + + + + + + + + + + + + + + + + + + +
       PositionStrike
      long 1 OTM put A
      short 1 OTM put B
      short 1 OTM call C
      long 1 OTM call D
      +

      + The Iron Condor is the combination of a bear put spread and a bull call spread in which the strike price of the long put is lower than the strike price of the long call. If the stock price is between the two short strike prices when the options expire, the strategy will be profitable. +

      +
      + +
      price = np.arange(700,920,1)
      +k_call_higher = 850 # the strike price of OTM call(Higher k)
      +k_call_lower = 820 # the strike price of OTM call(Lower k)
      +k_put_higher = 780 # the strike price of OTM put(Higher k)
      +k_put_lower = 750 # the strike price of OTM put(Lower k)
      +premium_call_higher = 2 # the premium of OTM call(Higher k)
      +premium_call_lower = 10 # the premium of OTM call(Lower k)
      +premium_put_higher = 10 # the premium of oTM put(Higher k)
      +premium_put_lower = 2   # the premium of OTM put(Lower k)
      +# payoff for the long put position
      +payoff_long_put = [max(-premium_put_lower, k_put_lower-i-premium_put_lower) for i in price]
      +# payoff for the short put position
      +payoff_short_put = [min(premium_put_higher, -(k_put_higher-i-premium_put_higher)) for i in price]
      +# payoff for the short call position
      +payoff_short_call = [min(premium_call_lower, -(i-k_call_lower-premium_call_lower)) for i in price]
      +# payoff for the long call position
      +payoff_long_call = [max(-premium_call_higher, i-k_call_higher-premium_call_higher) for i in price]
      +# payoff for Long Iron Condor Strategy
      +payoff = np.sum([payoff_long_put,payoff_short_put,payoff_short_call,payoff_long_call], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
      +plt.plot(price, payoff_short_put, label = 'Short Put',linestyle='--')
      +plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
      +plt.plot(price, payoff_long_call, label = 'Long Call',linestyle='--')
      +plt.plot(price, payoff, label = 'Long Iron Condor',c='black')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Long Iron Condor Strategy Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +iron condor strategy payoff +

      + Here the strike price is A (750), B (780), C (820) and D (850). As seen in the payoff plot, the maximum profit comes from the options premium because the deeper OTM options are cheaper than the shallower ones. It is reached when the stock price is between the higher put strike and lower call strike (the two short positions) and the options all expire worthless. The maximum loss of Iron Condor is reached when the stock price is lower than the lowest strike A, then the two call options become worthless, the two puts are in the money. For the other condition, the stock price is higher than the highest strike D. Consequently, the two call options are in the money but the two puts expire worthless. +

      diff --git a/07 Applied Options[]/06 Iron Condor/02 Implementation.html b/07 Applied Options[]/06 Iron Condor/02 Implementation.html new file mode 100755 index 0000000..f9c8e34 --- /dev/null +++ b/07 Applied Options[]/06 Iron Condor/02 Implementation.html @@ -0,0 +1,63 @@ +

      + Step 1: Initialize your algorithm by setting the start date, the end date and the cash for your algorithm. Then, implement the coarse selection of option contracts. +

      +
      + +
      +def Initialize(self):
      +		self.SetStartDate(2017, 2, 1)
      +		self.SetEndDate(2017, 3, 1)
      +		self.SetCash(500000)
      +		equity = self.AddEquity("GOOG", Resolution.Minute)
      +		option = self.AddOption("GOOG", Resolution.Minute)
      +		self.symbol = option.Symbol
      +		option.SetFilter(self.UniverseFunc)
      +		# use the underlying equity GOOG as the benchmark
      +		self.SetBenchmark(equity.Symbol)
      +
      +def UniverseFunc(self, universe):
      +    return universe.IncludeWeeklys().Strikes(-15, 15).Expiration(timedelta(0), timedelta(40))
      +
      +
      +

      + Step 2: Break the candidate options into two parts: calls and puts. +

      +
      + +
      for i in optionchain:
      +	if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# filter the call and put options on the contracts
      +	call = [i for i in chain if i.Right == 0]
      +	put = [i for i in chain if i.Right == 1]
      +
      +
      +

      + Step 3: Sort the call and put options by their strike prices. +

      +
      + +
      call_contracts = sorted(call,key = lambda x: x.Strike)
      +put_contracts = sorted(put,key = lambda x: x.Strike)
      +
      +
      +

      + Step 4: Choose the corresponding options and trade them. In this algorithm, according to criteria, SetFilter(-20, 20, timedelta(0), timedelta(40)) for put option list, there are 41 contracts in total: 1 ATM put, 20 OTM puts and 20 ITM puts. We choose the first in the put option list as the OTM put with the lower strike and the 15th contract as the OTM put with the higher strike. +

      +
      + +
      if len(call_contracts) == 0 or len(put_contracts) == 0 : continue
      +# Buy 1 OTM Put (Lower Strike)
      +self.otm_put_lower = put_contracts[0]
      +self.Buy(self.otm_put_lower.Symbol ,1)
      +# Sell 1 OTM Put
      +self.otm_put = put_contracts[15]
      +self.Sell(self.otm_put.Symbol ,1)
      +# Sell 1 OTM Call
      +self.otm_call = call_contracts[-15]
      +self.Sell(self.otm_call.Symbol ,1)
      +# Buy 1 OTM Call (Higher Strike)
      +self.otm_call_higher = call_contracts[-1]
      +self.Buy(self.otm_call_higher.Symbol ,1)
      +
      +
      diff --git a/07 Applied Options[]/06 Iron Condor/03 Summary.html b/07 Applied Options[]/06 Iron Condor/03 Summary.html new file mode 100755 index 0000000..8766e51 --- /dev/null +++ b/07 Applied Options[]/06 Iron Condor/03 Summary.html @@ -0,0 +1,3 @@ +

      + The iron condor is an option strategy that earns money as long as the underlying asset price does move out of a predetermined price range. In this algorithm, that range is $775 to $827.5. At 02/01/2017, we long $750 put at $1.25 and short $775 put at $3.5. At the same time, we short $827.5 call at$2.3 and long $850 call at $0.75. At this moment, the GOOG share price is $799.55 all the options are out the money. At expiration date 02/17/2017, the share price of GOOG is $828.07. The long put, short put and long call expire worthless. The short call is exercised. Thus we wind up going short 100 shares of GOOG. +

      diff --git a/07 Applied Options[]/06 Iron Condor/04 Algorithm.html b/07 Applied Options[]/06 Iron Condor/04 Algorithm.html new file mode 100755 index 0000000..7a08824 --- /dev/null +++ b/07 Applied Options[]/06 Iron Condor/04 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtesing using SetFilter +

      +
      +
      +
      + +
      +
      +

      + Backtest using OptionChainProvider +

      + +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/07 Iron Butterfly/01 Definition.html b/07 Applied Options[]/07 Iron Butterfly/01 Definition.html new file mode 100755 index 0000000..59eeb97 --- /dev/null +++ b/07 Applied Options[]/07 Iron Butterfly/01 Definition.html @@ -0,0 +1,72 @@ +

      + The Iron Butterfly is an option strategy which involves four option contracts, all of which have the same expiration date. The order of strike prices for the four contracts is A > B > C. +

      + + + + + + + + + + + + + + + + + + + + + + + + + +
       PositionStrike
      Buy 1 OTM put A
      Sell 1 ATM put B
      Sell 1 ATM call B
      Buy 1 OTM call C
      +

      + Similar to the Iron Condor, the Iron Butterfly is a limited risk, limited profit trading strategy. It profits from lower volatility, meaning that traders profit if the stock price has marginal movement within a small range. The Iron Butterfly has a more narrow range for the price to move up or down compared with the Iron Condor. +

      +
      + +
      price = np.arange(700,950,1)
      +k_atm = 830 # the strike price of ATM call & put
      +k_otm_put = 800 # the strike price of OTM put
      +k_otm_call = 860 # the strike price of OTM call
      +premium_otm_put = 2 # the premium of OTM put
      +premium_atm_put = 7 # the premium of ATM put
      +premium_atm_call = 8 # the premium of ATM call
      +premium_otm_call = 1 # the premium of OTM call
      +# payoff for the long put position
      +payoff_long_put = [max(-premium_otm_put, k_otm_put-i-premium_otm_put) for i in price]
      +# payoff for the short put position
      +payoff_short_put = [min(premium_atm_put, -(k_atm-i-premium_atm_put)) for i in price]
      +# payoff for the short call position
      +payoff_short_call = [min(premium_atm_call, -(i-k_atm-premium_atm_call)) for i in price]
      +# payoff for the long call position
      +payoff_long_call = [max(-premium_otm_call, i-k_otm_call-premium_otm_call) for i in price]
      +# payoff for Iron Butterfly Strategy
      +payoff = np.sum([payoff_long_put,payoff_short_put,payoff_short_call,payoff_long_call], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
      +plt.plot(price, payoff_short_put, label = 'Short Put',linestyle='--')
      +plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
      +plt.plot(price, payoff_long_call, label = 'Long Call',linestyle='--')
      +plt.plot(price, payoff, label = 'Iron Butterfly',c='black')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Iron Butterfly Strategy Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +iron butterfly strategy payoff +

      + From the payoff plot, the maximum gain is simply the net credit you received when you buy and sell 4 options. This occurs if the stock price is exactly the same as the strike price of the ATM options. In this situation, all options expire worthless and you keep all premiums received. Although the Iron Butterfly has a narrower structure than the Iron Condor, the profit can be higher than with the Iron Condor as you receive a higher premium by selling ATM options than OTM options. +

      +

      + The maximum loss occurs if the underlying price is either below the OTM put strike or above the OTM call strike. In these two situations, two puts or two calls are exercised and the other two options expire worthless. +

      diff --git a/07 Applied Options[]/07 Iron Butterfly/02 Implementation.html b/07 Applied Options[]/07 Iron Butterfly/02 Implementation.html new file mode 100755 index 0000000..c0092a5 --- /dev/null +++ b/07 Applied Options[]/07 Iron Butterfly/02 Implementation.html @@ -0,0 +1,60 @@ +

      + Step 1: Initialize your algorithm by setting the start date, end date and the cash. Then, implement the coarse selection of the options contracts. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2017, 2, 1)
      +	self.SetEndDate(2017, 3, 31)
      +	self.SetCash(300000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	option.SetFilter(-10, 10, timedelta(0), timedelta(30))
      +	# use the underlying equity GOOG as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Break the candidate contracts into the call and put options. +

      +
      + +
      def TradeOptions(self,optionchain):
      +    for i in optionchain:
      +        if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# filter the call and put options from the contracts
      +	call = [i for i in chain if i.Right == 0]
      +	put = [i for i in chain if i.Right == 1]
      +
      +
      +

      + Step 3: Sort the call and put options according to their strike prices. option.SetFilter(-10, 10, timedelta(0), timedelta(30)) helps us choose 21 call options and 21 put options which expire within 30 days from now. Then for the call options, the first 10 contracts are in the money and the last 10 contracts are out of the money. The middle one is an at the money option. For the put options, the first 10 contracts are out of the money and the last 10 contracts are in the money. +

      +
      + +
      call_contracts = sorted(call,key = lambda x: x.Strike)
      +put_contracts = sorted(put,key = lambda x: x.Strike)
      +if len(call_contracts) == 0 or len(put_contracts) == 0 : continue
      +
      +
      +

      + Step 4: Find the specific contracts to trade. At the money options have the minimum absolute difference between the underlying price and the strike price. +

      +
      + +
      # Sell 1 ATM Put
      +self.atm_put = sorted(put_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
      +self.Sell(self.atm_put.Symbol ,1)
      +# Sell 1 ATM Call
      +self.atm_call = sorted(call_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
      +self.Sell(self.atm_call.Symbol ,1)
      +# Buy 1 OTM Call
      +self.otm_call = call_contracts[-1]
      +self.Buy(self.otm_call.Symbol ,1)
      +# Buy 1 OTM Put
      +self.otm_put = put_contracts[0]
      +self.Buy(self.otm_put.Symbol ,1)
      +
      +
      diff --git a/07 Applied Options[]/07 Iron Butterfly/03 Summary.html b/07 Applied Options[]/07 Iron Butterfly/03 Summary.html new file mode 100755 index 0000000..61dcef0 --- /dev/null +++ b/07 Applied Options[]/07 Iron Butterfly/03 Summary.html @@ -0,0 +1,3 @@ +

      + In this algorithm, on 04/03/2017, the share price of Google is $832.8. We buy OTM put(strike = $805) at $2, OTM call(strike = $860) and sell an ATM call and an ATM put. At the expiry 04/21/2017, the share price is $841.53. The ATM call is exercised and the other 3 options expire worthless. As we hold the short position of the ATM call, after expiration we will be short 100 shares of GOOG. +

      diff --git a/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html b/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html new file mode 100755 index 0000000..05d0e03 --- /dev/null +++ b/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtest using SetFilter +

      +
      +
      +
      + +
      +
      + +

      + Backtest using OptionChainProvider +

      +
      +
      +
      + +
      +
      diff --git a/07 Applied Options[]/08 Protective Collar/01 Definition.html b/07 Applied Options[]/08 Protective Collar/01 Definition.html new file mode 100755 index 0000000..3d98e6e --- /dev/null +++ b/07 Applied Options[]/08 Protective Collar/01 Definition.html @@ -0,0 +1,36 @@ +

      + A Protective Collar is an option strategy that involves both the underlying stock and two option contracts. The trader buys (or already owns) a stock, then buys an out-the-money put option and sells an out-the-money call option.  It is similar to the covered call strategy but with the purchase of an additional put option. This strategy is employed if the trader is writing covered calls but wishes to protect himself from an unexpected drop in the price of the underlying security. As a tradeoff for loss-protection, the profit is limited compared with the Covered Call strategy. +

      +
      + +
      # Protective Collar
      +price = np.arange(700,950,1)
      +# assume at time 0, the price of the undelying stock is 830
      +k_otm_put = 800 # the strike price of OTM put
      +k_otm_call = 860 # the strike price of OTM call
      +premium_otm_put = 6 # the premium of OTM put
      +premium_otm_call = 2 # the premium of OTM call
      +# payoff for the long put position
      +payoff_long_put = [max(-premium_otm_put, k_otm_put-i-premium_otm_put) for i in price]
      +# payoff for the short call position
      +payoff_short_call = [min(premium_otm_call, -(i-k_otm_call-premium_otm_call)) for i in price]
      +# payoff for the underlying stock
      +payoff_stock = price - 830
      +# payoff for the Protective Collar Strategy
      +payoff = np.sum([payoff_long_put,payoff_short_call,payoff_stock], axis=0)
      +plt.figure(figsize=(20,15))
      +plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
      +plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
      +plt.plot(price, payoff_stock, label = 'Underlying Stock',linestyle='--')
      +plt.plot(price, payoff, label = 'Protective Collar',c='black')
      +plt.legend(fontsize = 20)
      +plt.xlabel('Stock Price at Expiry',fontsize = 15)
      +plt.ylabel('payoff',fontsize = 15)
      +plt.title('Protective Collar Strategy - Payoff',fontsize = 20)
      +plt.grid(True)
      +
      +
      +protective collar strategy payoff +

      + According to the payoff plot, the maximum profit is the strike price of short call minus the purchase price of the underlying asset plus the net credit from the premium. It occurs when the underlying price is beyond the strike price of the short call option. The maximum loss is the purchase price of the underlying asset minus the strike price of the long put minus the net credit from the premium. It occurs when the stock price is below the strike price of the long put. It is a strategy with both limited risk and limited profit. +

      diff --git a/07 Applied Options[]/08 Protective Collar/02 Implementation.html b/07 Applied Options[]/08 Protective Collar/02 Implementation.html new file mode 100755 index 0000000..0e3c4c7 --- /dev/null +++ b/07 Applied Options[]/08 Protective Collar/02 Implementation.html @@ -0,0 +1,65 @@ +

      + Step 1: Initialize your algorithm by setting the start date, end date and cash. Then implement the coarse selection of options contracts. +

      +
      + +
      def Initialize(self):
      +	self.SetStartDate(2017, 4, 1)
      +	self.SetEndDate(2017, 5, 30)
      +	self.SetCash(1000000)
      +	equity = self.AddEquity("GOOG", Resolution.Minute)
      +	option = self.AddOption("GOOG", Resolution.Minute)
      +	self.symbol = option.Symbol
      +	# set our strike/expiry filter for this option chain
      +	option.SetFilter(-10, +10, timedelta(0), timedelta(30))
      +	# use the underlying equity as the benchmark
      +	self.SetBenchmark(equity.Symbol)
      +
      +
      +

      + Step 2: Choose the expiration date for your options traded and break the options into the call and put contracts. The choice of expiration date depends on the holding period of stocks in your portfolio. +

      +
      + +
      def TradeOptions(self,optionchain):
      +    for i in optionchain:
      +	if i.Key != self.symbol: continue
      +	chain = i.Value
      +	# choose the furthest expiration date within 30 days from now on
      +	expiry = sorted(chain, key = lambda x: x.Expiry)[-1]
      +	# filter the call options contracts
      +	call = [x for x in chain if x.Right == 0 and x.Expiry == expiry]
      +	# filter the put options contracts
      +	put = [x for x in chain if x.Right == 1 and x.Expiry == expiry]
      +
      +
      +

      + Step 3: Choose the deep in-the-money call and put options in the list and then sell the call options and buy the put options. +

      +
      + +
      self.otm_call = sorted(call, key = lambda x: x.Strike)[-1]
      +self.otm_put = sorted(put, key = lambda x: x.Strike)[0]
      +if (self.otm_call is None) or (self.otm_put is None): continue
      +self.Sell(self.otm_call.Symbol, 1) # sell the OTM call
      +self.Buy(self.otm_put.Symbol, 1) # buy the OTM put
      +
      +
      +

      + Step 4: In OnData, if there are no assets in our portfolio, we buy the undelying stock. After that, we trade the options written on the same number of shares of underlying asset (one option contracts equals 100 undelying shares). +

      +
      + +
      def OnData(self,slice):
      +    optionchain = slice.OptionChains
      +    for i in slice.OptionChains:
      +    if i.Key != self.symbol: continue
      +    chains = i.Value
      +    contract_list = [x for x in chains]
      +    if (slice.OptionChains.Count == 0) or (len(contract_list) == 0): return
      +    # if you don't hold options and stocks, buy the stocks and trade the options
      +    if not self.Portfolio.Invested:
      +	self.Buy("GOOG",100)	 # buy 100 shares of the underlying stock
      +	self.TradeOptions(optionchain)   # sell OTM call and buy OTM put
      +
      +
      diff --git a/07 Applied Options[]/08 Protective Collar/03 Summary.html b/07 Applied Options[]/08 Protective Collar/03 Summary.html new file mode 100755 index 0000000..08e0894 --- /dev/null +++ b/07 Applied Options[]/08 Protective Collar/03 Summary.html @@ -0,0 +1,3 @@ +

      + In this algorithm, at the beginning  01/04/2016, we purchased 100 GOOG shares. At the same time, we purchased a $715 put at $6 and sells a $772.5 call at $2.45. The share price of GOOG is $739.32, which is between the strike prices of two out-the-money options. At the expiry 01/15/2016, the share price of GOOG drops to $714.32. The call option expire worthless but the put option is exercised. Then we sell 100 GOOG shares at $715. Then we hold neither option positions and stock positions. +

      diff --git a/07 Applied Options[]/08 Protective Collar/04 Algorithm.html b/07 Applied Options[]/08 Protective Collar/04 Algorithm.html new file mode 100755 index 0000000..77dc3ce --- /dev/null +++ b/07 Applied Options[]/08 Protective Collar/04 Algorithm.html @@ -0,0 +1,19 @@ +

      + Backtest using SetFilter +

      +
      +
      +
      + +
      +
      + +

      + Backtest using OptionChainProvider +

      +
      +
      +
      + +
      +
      diff --git a/08 Meta/01 Creating BootCamp Tutorials/00.html b/08 Meta/01 Creating BootCamp Tutorials/00.html new file mode 100644 index 0000000..cda40df --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/00.html @@ -0,0 +1,33 @@ + + + +
      +
      + Updated July 14th, 2019: The create BootCamp tutorial is a work in progress. +
      diff --git a/08 Meta/01 Creating BootCamp Tutorials/01 Introduction.html b/08 Meta/01 Creating BootCamp Tutorials/01 Introduction.html new file mode 100644 index 0000000..a854c3f --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/01 Introduction.html @@ -0,0 +1,7 @@ +

      +BootCamp is an interactive, education system for teaching the community the QuantConnect API, and the structure for building an algorithm. In January 2019, QuantConnect opened up the BootCamp technology to allow contributions of tutorials from the community! This guide seeks to show you how to create a BootCamp tutorial. +

      + +

      +Education and access to the information required to compete is a the cornerstone of QuantConnect's mission for radical openness, and the democratization of finance. With your help we can train the community on how to make the best algorithms possible. +

      diff --git a/08 Meta/01 Creating BootCamp Tutorials/02 Requirements.html b/08 Meta/01 Creating BootCamp Tutorials/02 Requirements.html new file mode 100644 index 0000000..f7f62c6 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/02 Requirements.html @@ -0,0 +1,11 @@ +

      +Ensuring high-quality writing in BootCamp lessons is important to maintain the interest and motivation of the community. The skills required to build a BootCamp lesson cover several areas of expertise: +

      +
        +
      1. QuantConnect API: Contributors must have knowledge of the QuantConnect API along with the correct way to implement the desired behavior.
      2. +
      3. Programming Polygot: BootCamp algorithms are provided in both C# and Python. The text documentation is written in HTML, and the task validation code is performed in JavaScript. You should be able to code neatly in all four languages.
      4. +
      5. Principles of Algorithmic Trading: Domain expertise in finance is important to be able to build thoughtful and educational content.
      6. +
      +

      +The combination of all these talents is fairly rare so we're reaching out to the community to help us create this content. If you can cover all three of these categories let us know and we'll enable BootCamp editing permissions on your account. In exchange for a completed BootCamp lesson we're offering compensation which we'll cover in the section below. +

      diff --git a/08 Meta/01 Creating BootCamp Tutorials/03 Compensation.html b/08 Meta/01 Creating BootCamp Tutorials/03 Compensation.html new file mode 100644 index 0000000..4835b4c --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/03 Compensation.html @@ -0,0 +1,39 @@ +

      +QuantConnect is offering contributing authors compensation for their BootCamp Lesson submissions. Depending on the complexity and topics covered a lesson ranges from $2,000 to $4,000USD. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Difficulty + + Compensation + + Estimated Effort +

      Beginner

      $2,000USD

      3-5 days fulltime work

      Intermediate

      $3,000USD

      4-6 days fulltime work

      Advanced

      $4,000USD

      5-8 days fulltime work

      +

      +Before starting a lesson reach out to the QuantConnect team for approval on the lesson concept. We are seeking to provide diverse and complementing content for the community. If you're interested in creating BootCamp lessons but don't have a topic in mind get in touch with us! +

      \ No newline at end of file diff --git a/08 Meta/01 Creating BootCamp Tutorials/04 Content Structure.html b/08 Meta/01 Creating BootCamp Tutorials/04 Content Structure.html new file mode 100644 index 0000000..dc4c918 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/04 Content Structure.html @@ -0,0 +1,31 @@ +

      +BootCamp is divided into Lessons, and Tasks. A Lesson focuses on the implementation of a single algorithm. A Task breaks up the algorithm implementation into tiny steps which can each be easily coded, with the aim of guiding the user through each layer of the algorithm design. +

      + + +

      Core Principle

      +

      The central guiding principle of BootCamp lessons is they are focused on the implementation of a single algorithmic trading strategy. At each level of the system, the titles should be directly related to the implementation of the strategy, not the concepts it is covering. This is actually quite difficult, but one way to help to get into this mindset is to focus on teaching how to implement the strategy.

      + + +
        +
      • Lesson: Buy and Hold Algorithm +
        • Task: Initializing Your Algorithm -> Set Cash
        +
      + + + + +

      Lessons

      +

      +A Lesson is a collection of tasks aiming to implement a single algorithmic strategy step by step. A lesson should be comprised of about 6-12 tasks, where each task builds upon the lessons learned from the previous task. We have built a system for the community to design and submit Boot Camp lessons and tasks. +

      + +

      Tasks

      +

      +A Task is the atomic unit of the Boot Camp system. It is a single step required to be completed in the pathway to an algorithm. Tasks are grouped with a subheading according to algorithm implementation concept. A task should aim to implement just few lines of code so that each task can be easily achieved. +

      \ No newline at end of file diff --git a/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html b/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html new file mode 100644 index 0000000..67986a8 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html @@ -0,0 +1,193 @@ +

      +Carefully planning and structuring your lesson is critical to ensuring its success. In the next section, we'll create this plan step by step. Boot Camp lessons typically fall into one of the following algorithm types: Macro Economics, Technical Indicators, Scaling, Market Making, Market Microstructure, Sentimental, or Value-Fundamental Investing. +

      + +

      1. Strategy Selection

      +

      +Every BootCamp lesson is focused on an algorithmic strategy's implementation. The first step to planning a lesson is choosing a strategy which does not overlap with any of the existing BootCamp topics. This can be incrementally more difficult but should introduce new concepts. +

      + +

      2. Strategy Implementation

      +

      +After selecting your strategy you need to fully implement the algorithm, writing the code in C# and Python as simply as possible. Users new to coding have a hard time deciphering large blocks of code so strategies should be kept very simple. +

      + +

      In writing the strategy remain aware of the conceptual layers you put into the algorithm's codebase. These layers of concepts are where you can separate out the lesson tasks. For example: in writing a lesson "Buy and Hold, with Trailing Stop" you might start by coding up the buy and hold logic, followed by placing a "trailing stop" (Stop Market Order), then finally you can make the stop move by updating its trigger price. These conceptual layers form the basis for how tasks are grouped together.

      + +

      +QuantConnect has worked with the community to create a list of lessons to be created which would be eligible for compensation. The table below describes these strategies and their associated difficulty level. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Beginner BootCamp LessonsStatus

      Buy and Hold (Equities/Forex)
      Strategy purchasing assets and holding them for the duration of the algorithm. Seeking to demonstrate how to initialize an algorithm and access price data.

      +Accessing DataInitializing Algorithms +

      Completed

      Buy and Hold with Trailing Stop
      Placing and updating a stop-market order combined with basic charting to visualize the stop price movement.

      +Order ManagementBasic Charting

      Completed

      Momentum-Based Tactical Allocation
      Using a momentum indicator to shift investment between the S&P500 to a Bond ETF. Introducing multiple asset portfolios and the use of an indicator.

      +Multi-Asset Portfolio +Using Indicators +Equities +

      Completed

      Open Range Breakout
      Uses consolidators to aggregate the first 20 minutes of a day and trades when the price moves beyond that range. Introduces custom period consolidated price bars.

      +Consolidators +Equities +

      Completed

      Liquid Universe Selection
      Using a universe selection filter, invest in the top 10 stocks which are liquid and cost more than $10 per share. Introduces universe selection features.

      +Universes +Price Volume Filtering +Equities +

      Completed

      200-50 EMA Momentum Universe
      Select assets where the 50-EMA is greater than the 200 EMA. Seeking to introduce creating structures to contain symbol specific data, and using the history API to warm them up.

      +Universes +SymbolData Pattern +History +Equities

      Completed

      Fading The Gap
      Using scheduled events to monitor for overnight price gaps in the market and shorting abnormal activity. Introduces scheduled events, and elimination of a parameter with STD indicator.

      +Scheduled Events +STD Indicator +Parameter Minimization +Equities

      Completed

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Intermediate BootCamp LessonsStatus

      The Algorithm Framework
      A simple strategy to buy SPY each morning on market open using the algorithm framework - a scaffolding for powerful strategy design.

      +Algorithm Framework +Execution Model +Portfolio Model +Universe Selection Model +

      Assigned

      Pairs Trading with SMA
      Simple pairs trading strategy monitoring for divergence in correlation of two hand picked assets. Invests in a market neutral manner, using position sizing to calculate the right holding of each asset.

      +Pairs Trading +Market Neutrality +Position Sizing +Equities +

      Assigned

      Pairs Trading with Cointegration Test
      Scanning a basket of assets monthly for potential cointegration and making a pairs trade when detect a divergent pair. Using scheduled events for the cointegration test.

      +Pairs Trading +Cointegration Test +Scheduled Events +Equities +

      Assigned

      Liquid Value Stocks
      Selecting a universe of the 100 most liquid assets and rank by their PE-Ratio to get the best value stocks. Each month buy the 10 best value stocks, and short the worst value stocks.

      +Universe Selection +Fine Universe Selection +Long-Short Hedge +Equities +

      Assigned

      Sector Balanced Universe Selection
      Selecting an equally weighted universe of assets covering 33% technology stocks, 33% finance and 33% consumer goods.

      +Universe Selection +Advanced Universe Selection +Sector Exposure +Equities +

      Assigned

      Hedging FX Books with Interest Rate
      Harnessing an alternative data source (Trading Economics) to invest proportionately with interest rate changes in the underlying economies.

      +Trading Economics +Alternative Data +Global Macro +Forex +

      Available

      +

      Sentiment Analysis on Stocks
      Harness Psychsignal data to rank the sentiment of a basket of US Equity stocks and invest in those with the most positive sentiment.

      +Psychsignal +NLP +Alternative Data +Sentiment Analysis +Equities +

      Available

      +
      + + + + + + + + + + + + + +
      Advanced BootCamp LessonsStatus

      Coming Soon

      +

      +
      diff --git a/08 Meta/01 Creating BootCamp Tutorials/06 Writing a Lesson.html b/08 Meta/01 Creating BootCamp Tutorials/06 Writing a Lesson.html new file mode 100644 index 0000000..56fadfc --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/06 Writing a Lesson.html @@ -0,0 +1,119 @@ +

      +Writing a BootCamp lesson starts by carefully writing out the complete code for the strategy, breaking it into tasks, and write small text summaries for each task with the documentation required to teach the reader how to complete the task. Finally, JavaScript is used to read the exhaust output of the algorithm to validate it achieved the required objective. +

      + + +
      +
      Lesson Algorithm
      +
      Task Guides
      +
      Validators
      +
      Hints, Solutions
      +
      Submit
      +
      + +

      1. Write Lesson Algorithm

      +

      +Writing a BootCamp lesson starts by carefully writing out the complete code for the strategy. This should be drafted as simply as possible to ensure each task the student needs to complete will only be 2-5 lines of code. +

      +Readability is critical and the code should be well commented with descriptive variable names. Depending on the complexity of the algorithm sometimes its more readable to use string tickers instead of class variables. +

      +

      +Carefully write code in a way which neatly separates the algorithm concepts as much as possible. Keep in mind the algorithm will be implemented in separate tasks by the student. +

      +
      + Action: +

      Write highly readable, concise C# and Python versions of the algorithm and request review by QuantConnect Education team. Plan ahead for divisions of the code into tasks.

      +
      + +

      +2. Write Task Guides +

      +

      +Each task has a short write-up to explain the features needed to complete the next task of BootCamp. This write-up should assume the student has no prior knowledge and include representative code snippets demonstrating the key API code needed. +

      + + + + + + + + + + + + + + + + + + +
      StyleExample Code Tag

      Headings

      <h4>Initializaing Algorithms</h4>

      Paragraphs

      <p>Setting cash is done with <span class="python">self.SetCash().</span></p>

      Code Snippets

      <pre class="prettyprint python">self.SetCash()</pre>
      +

      +For a fluent experience between lessons, all content should follow the same structure as the sections laid out below. +

      +

      + + +Tasks start their contents divided by subtitle using the h4 tag. Use a short title about the specific API or content you're trying to summarize.

      + +After each heading, write a short paragraph concisely summarizing the content in as few words as possible. Use inline <code> blocks to highlight API syntax, and links to new tabs referencing any documentation required.

      + +Any content which is specific to one programming language should be wrapped in a span tag with the language set in the class, for example: <span class="python">. + +Each section should include a code snippet of documentation using a <pre class="prettyprint"> code block.

      + +Finally, each task should define 2-4 objectives to achieve in the task. These tasks should guide the user on the required steps to implement the strategy step. At the end of the task, there should be a measurable output that the system can use to judge if the task is a success. This can be a state change of the algorithm, a debug/log statement, or a trade. This will be covered in the next section, Code Validators. +

      + diff --git a/08 Meta/01 Creating BootCamp Tutorials/07 Building Code Validators.html b/08 Meta/01 Creating BootCamp Tutorials/07 Building Code Validators.html new file mode 100644 index 0000000..97a2953 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/07 Building Code Validators.html @@ -0,0 +1,7 @@ +

      +Validators + Partial Class + Validating algorithm output + + Examples of validation +

      diff --git a/08 Meta/01 Creating BootCamp Tutorials/08 Style Guide.html b/08 Meta/01 Creating BootCamp Tutorials/08 Style Guide.html new file mode 100644 index 0000000..5fc6ae1 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/08 Style Guide.html @@ -0,0 +1,7 @@ +

      +H4 titles, verbs describing strategy step +Brief Short sentences, +Aim for no more than 3 todo's per task +Hint should give enough information to complete the task. +technical grammar, present tense. +

      diff --git a/08 Meta/01 Creating BootCamp Tutorials/09 Submitting Lesson for Review.html b/08 Meta/01 Creating BootCamp Tutorials/09 Submitting Lesson for Review.html new file mode 100644 index 0000000..b514e77 --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/09 Submitting Lesson for Review.html @@ -0,0 +1,3 @@ +

      +Lesson submission +

      diff --git a/08 Meta/01 Creating BootCamp Tutorials/10 Summary.html b/08 Meta/01 Creating BootCamp Tutorials/10 Summary.html new file mode 100644 index 0000000..517c4ef --- /dev/null +++ b/08 Meta/01 Creating BootCamp Tutorials/10 Summary.html @@ -0,0 +1,3 @@ +

      + +

      diff --git a/API Tutorials/Tutorial00 Introduction to QuantConnect API.html b/API Tutorials/Tutorial00 Introduction to QuantConnect API.html deleted file mode 100644 index 9d1e092..0000000 --- a/API Tutorials/Tutorial00 Introduction to QuantConnect API.html +++ /dev/null @@ -1,81 +0,0 @@ -

      About

      -

      In this tutorial series we introduce the core concepts of the QuantConnect/LEAN API with the aim of answering the commonly asked questions about using QuantConnect.

      - -

      The core of the documentation can be found on the documentation page, but these videos should give you an even deeper understanding. The QuantConnect underlying technology (LEAN) is written in C#, and most of these videos are in C# -- however the API is virtually the same in Python and F#. If you're a Python user just click the "Python" code snippet button on the documentation page to view the python examples.

      -
      -
      -

      -

      6 Tutorials

      -
      -

      -

      6 Backtests

      -
      -

      -

      25 Code Snippets

      -
      -
      - -

      What Will I learn ?

      -
      -
      Consolidating Data
      -
      Desktop Charting
      -
      Using API File Provider
      -
      Scheduling Events
      -
      Order Management
      -
      Using Options
      -
      -

      Tutorials

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      1 -

      Consolidating Data to Build Bars

      -Create any bar size by combining data together with Consolidators. - Read Tutorial
      2 -

      Desktop Charting with LEAN

      -Setting up desktop charting with the open source algorithmic trading engine LEAN. - Read Tutorial
      3 -

      Downloading Data with the API File Provider

      -Guide to downloading and interacting with your QuantConnect data repository. - Read Tutorial
      4 -

      Using Scheduled Events

      -Scheduling events to trigger code at specific times of day. - Read Tutorial
      5 -

      Tracking and Managing Orders

      -Simple guide to the basics of tracking and managing orders in QuantConnect. - Read Tutorial
      6 -

      Using Options in QuantConnect

      -The key API methods for requesting option data financial and focusing in on specific contracts. - Read Tutorial
      \ No newline at end of file diff --git a/API Tutorials/Tutorial02 Desktop Charting with LEAN.html b/API Tutorials/Tutorial02 Desktop Charting with LEAN.html deleted file mode 100644 index ff69fd4..0000000 --- a/API Tutorials/Tutorial02 Desktop Charting with LEAN.html +++ /dev/null @@ -1,22 +0,0 @@ -With a few configuration changes you can get desktop charting in LEAN with a HTML5 interface very similar to the one you see in QuantConnect.com. This gives you better visual feedback on your strategy and allows you to improve faster. This tutorial guides you through configuring a desktop charting environment with LEAN. - -Local charting (and all local backtesting) requires you to have your own source of data. We provide a way to download FX and CFD data through our API. To get started make sure you have your data in your data folder. By default this is the /Data/ directory relative to your LEAN installation. - -Two configuration changes are required for desktop charting to work: -
        -
      1. Change the "environment" field to use "backtesting-desktop". This instructs LEAN to use the configuration settings block at the bottom of the config file. -
          "environment": "backtesting-desktop",
        -
      2. -
      3. Insert your API token and user id into configuration file. This is required for chart streaming. -
          // To get your api access token go to quantconnect.com/account
        -  "job-user-id": "....",
        -  "api-access-token": "...........",
        -
      4. -
      -With those changes in place you can simply run the project and your backtesting chart will appear in a few seconds. For live trading; use the"live-desktop" configuration environment. - -If you get the run-time exception "The port configured in config.json is either being used or blocked by a firewall"- This normally means you've left the user interface open (you should close it between each run). It can also be because another program is sharing that port. You can fix this by changing the port LEAN transmits the data with the "desktop-http-port" setting. - -In the tutorial video below we demonstrate this feature on LEAN: - -https://www.youtube.com/watch?v=m6llfznP4d4 \ No newline at end of file diff --git a/API Tutorials/Tutorial03 How do I use the API File Provider.html b/API Tutorials/Tutorial03 How do I use the API File Provider.html deleted file mode 100644 index fbaf5a9..0000000 --- a/API Tutorials/Tutorial03 How do I use the API File Provider.html +++ /dev/null @@ -1,16 +0,0 @@ -Ensuring a high data quality is one of the hardest parts of setting reliable backtesting. There are many challenges to ensuring your data is in the right format, free of errors or omissions and historically accurate. We've tried to address this for you by opening the LEAN Data Library and letting you download our data. LEAN data is organized into millions of tiny files which can be difficult to put into place manually; but using the API File Provider we provide a way for you to automatically install this into your LEAN project. - -Currently we provide forex and cfd data for each of the major vendors we support in tick, second, minute, hour and daily resolution. To request data; go to your data library and specify what you'd like to download. - -Data library collection for FXCM EURUSD data - -Each data file has a unique URL to download the data for the day which will get a LEAN formatted CSV zip. By using the API File Downloader we check if you have the file in your data-folder; and if not we attempt to download it from the API. This assumes you have already added the data to your repository through the web interface. - -This requires 2 key changes to the config.json file in the QuantConnect.Lean.Launcher Project: -
        -
      1. Insert your job-user-id and api-access-token into the relevant config fields. You can find these on your Account page.
      2. -
      3. Update the data-provider configuration to refer to the APIDataProvider class. This is called QuantConnect.Lean.Engine.DataFeeds.ApiDataProvider.
      4. -
      -Check out the video below where we guide you step by step through how to use the API Data Provider. - -https://www.youtube.com/watch?v=uyHp_jyeSpA \ No newline at end of file diff --git a/API Tutorials/Tutorial05 Tracking and Managing Orders.html b/API Tutorials/Tutorial05 Tracking and Managing Orders.html deleted file mode 100644 index bd19104..0000000 --- a/API Tutorials/Tutorial05 Tracking and Managing Orders.html +++ /dev/null @@ -1,138 +0,0 @@ -

      Overview

      -Tracking and managing orders is an important part of an algorithmic trading strategy. Intelligent order management encourages discipline and a deep understanding of your algorithm. Through the QuantConnect API you can get order fields, update their values and cancel pending orders. This can be useful for lowering trading costs and improving order fills. - -When you place a trade you receive an OrderTicket for you to access the order. This allows you to safely (asynchronously) update and cancel the order while in live trading. In live trading you cannot assume order updates are processed successfully as the brokerage may have already filled the trade. - -You can place several types of orders including: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Supported Order Types
      Market OrderMarketOrder("SPY", 100);
      Limit Ordervar ticket = LimitOrder("SPY", 100, 100.10m);
      Stop Market Ordervar ticket = StopMarketOrder("SPY", 100, 100.10m);
      Stop Limit Ordervar ticket = StopLimitOrder("SPY", 100, 100.12m, 99.5m);
      Market On Open Ordervar ticket = MarketOnOpen("SPY", 100);
      Market On Close Ordervar ticket = MarketOnClose("SPY", 100);
      -

      Updating Orders

      -Once you have an order ticket you can use it to get order fields. In C# it looks like: -
      var currentStopPrice = _ticket.Get(OrderField.StopPrice);
      -Or update the order fields (LimitPrice, StopPrice, Tag or Quantity): -
      _ticket.Update(new UpdateOrderFields
      -{
      -    LimitPrice = newLongLimit,
      -    Tag = "Update #" + (longOrder.UpdateRequests.Count + 1)
      -});
      -You can also cancel your order if required: -
      _ticket.Cancel();
      -In Python, you can update order like this: -
      # Retrive the 'StopPrice' for an order from the ticket
      -currentStopPrice = _ticket.Get(OrderField.StopPrice)
      -# update the order fields (LimitPrice, StopPrice, Tag or Quantity)
      -updateOrderFields = UpdateOrderFields()
      -updateOrderFields.LimitPrice = newLongLimit
      -updateOrderFields.Tag = "Update #{0}".format(len(_ticket.UpdateRequests) + 1)
      -_ticket.Update(updateOrderFields)
      -# cancel your order if required
      -_ticket.Cancel()
      -
      -In the video below we demonstrate putting it all together to create a moving take-profit order which gradually decreases its profit target as time passes. -https://www.youtube.com/watch?v=HykXfstdNW0 - -

      Full Python Example

      -This is a complete port from C# to Python of this Quick Start Lesson. -
      -```Lesson 6 - Tracking and Managing Orders: 
      -Immediately place 4 orders. Plot end of day price of each order in 'Order Tickets' plot. Debug log filled orders.
      -```
      -import numpy as np
      -from decimal import Decimal
      -
      -class BasicTemplateAlgorithm(QCAlgorithm):
      -
      -    def Initialize(self):
      -        self._limitTicket = None
      -        self._stopMarketTicket = None
      -        self._stopLimitTicket = None
      -        self.SetCash(25000)
      -        self.SetStartDate(2009,1,1)
      -        self.SetEndDate(2009,6,1)
      -        self.spy = self.AddEquity("SPY", Resolution.Minute).Symbol
      -        
      -    def OnData(self, slice):
      -        if self._limitTicket is None:
      -        
      -            self.MarketOrder(self.spy, 100)
      -            
      -            self._limitTicket = self.LimitOrder(
      -                self.spy, 
      -                100, 
      -                slice["SPY"].Close * Decimal(0.9), 
      -                "limit order")
      -                
      -            self._stopMarketTicket = self.StopMarketOrder(
      -                self.spy,
      -                -100,
      -                slice["SPY"].Close * Decimal(0.95),
      -                "stop market")
      -                
      -            self._stopLimitTicket = self.StopLimitOrder(
      -                self.spy,
      -                -100,
      -                slice["SPY"].Close * Decimal(0.9),
      -                slice["SPY"].Close * Decimal(0.8),
      -                "stop market")
      -
      -
      -    def OnEndOfDay(self):
      -        ```End of each day, plot our asset & order prices```
      -        if self._limitTicket is None:
      -            return
      -        
      -        self.Plot("Order Tickets", "SPY", self.Portfolio['SPY'].Price)
      -        
      -        if self._stopMarketTicket.Status != OrderStatus.Filled:
      -            self.Plot("Order Tickets", "Stop Price", 
      -                      self._stopMarketTicket.Get(OrderField.StopPrice))
      -            
      -        if self._stopLimitTicket.Status != OrderStatus.Filled:
      -            self.Plot("Order Tickets", "Limit Price", 
      -                      self._stopLimitTicket.Get(OrderField.LimitPrice))
      -
      -    def OnOrderEvent(self, OrderEvent):
      -        ```Event when the order is filled. Debug log the order fill. :OrderEvent:``` 
      -        
      -        if OrderEvent.FillQuantity == 0:
      -            return
      -        
      -        fetched = self.Transactions.GetOrderById(OrderEvent.OrderId)
      -        
      -        self.Debug("{} was filled. Symbol: {}. Quantity: {}. Direction: {}"
      -                   .format(str(fetched.Type), 
      -                           str(OrderEvent.Symbol), 
      -                           str(OrderEvent.FillQuantity), 
      -                           str(OrderEvent.Direction)))
      -
      diff --git a/API Tutorials/Tutorial06 Using Options in QuantConnect.html b/API Tutorials/Tutorial06 Using Options in QuantConnect.html deleted file mode 100644 index 93086b9..0000000 --- a/API Tutorials/Tutorial06 Using Options in QuantConnect.html +++ /dev/null @@ -1,246 +0,0 @@ -QuantConnect provides US options trade and quotes price data for approximately 4000 symbols, each of which has roughly 10 strikes on average. Data is available starting January 1st, 2010. In this tutorial, we will discuss how to use QuantConnect to start your options trading algorithm. -

       Step 1: Add Options

      -Before trading options, you need to add options for a given underlying equity and set the resolution in step Initialize with AddOption method. The commonly used parameters will be explained in the method table. Please refer to the link below for details of each method. - - - - - - - - - - - - - -
      MethodParameters
      AddOption(underlying, -resolution, -fillDataForward)underlying(string): The underlying equity symbol -resolution: Tick, Second, Minute, Hour, or Daily. Default is minute -fillDataForward(bool): If true, returns the last available data even if none in that time slice. The default value is true.
      -
      def Initialize(self):
      -    self.SetStartDate(2017, 01, 01)  #Set Start Date
      -    self.SetEndDate(2017, 06, 30)  #Set End Date
      -    self.SetCash(50000)  #Set Strategy Cash
      -    equity = self.AddEquity("GOOG", Resolution.Daily) # Add the underlying stock: Google
      -    option = self.AddOption("GOOG", Resolution.Daily) # Add the option corresponding to underlying stock
      -    self.symbol = option.Symbol
      -
      -The return value of AddOption method is an option security object , please refer to the link for detailed properties and methods of option class. -

      Step 2: Filter Contracts - Coarse Selection

      -After adding the options for specific underlying stock,  you can set the filter criteria with SetFilter method to pull contracts using the specified min and max strike and expiration range values you need for a given symbol. - - - - - - - - - - - - - -
      MethodParameters
      SetFilter( -min strike, -max strike, -minexpiry, -maxExpiry)min Strike, max Strike: The min and max strike rank relative to market price -min Expiry, max Expiry: The range of time to expiration to include, for example, TimeSpan.FromDays(10) would exclude contracts expiring in less than 10 days
      -Here parameters min Strike and max Strike are the relative values with respect to the market price. We use Google(NASDAQ: GOOG) as an example to describe the filter criteria. If today is 01/03/2017, the market price of underlying stock is $776, the strike prices of GOOG options are spaced $2.5. Then SetFilter(-1, +2, timedelta(0), timedelta(90)) will fist look up at the money contracts with strike being K=$777.5 (Here K might not being $100 since rarely will option be ATM exactly). Then  filter will looks for options with strikes between and including (777.5 + 2.5*2, 777.5 - 2.5*1). The time to expiration of these options are restricted within 90 days from now on.  - -For the strike, the exchange normally chooses the strike prices at which options can be written so that they are spaced $2.50, $5, or $10 apart. Typically the spacing is $2.50 when the stock price is between $5 and $25, $5 when the stock price is between $25 and $200, and $10 for stock prices above $200. So you should carefully choose the parameters of min strike and max Strike in case there is no contracts satisfy the filter criteria if the range is too small, less than the minimum units of strike prices change. - -For the expiry, there are many expiration dates that apply to the different series of options. An option cycle is the pattern of months in which options contracts expire. There are three kinds of common option cycles. The options on the January cycle have contracts available in the first month of each quarter (January, April, July and October). Options assigned to the February cycle use the middle month of each quarter (February, May, August and November). And options in the March cycle have options available during the last month of each quarter (March, June, September and December). In addition, individual stock options typically expire in the current month and the subsequent month. -
      # filter the contracts with strikes between (market price - 10, market price + 10)
      -option.SetFilter(-10,10)
      -# filter the contracts which expires more than 30 days but no longer than 60 days
      -option.SetFilter(TimeSpan.FromDays(30),TimeSpan.FromDays(60))
      -# filter the contracts with strikes between(ATM Strike - 10 * strike space value, market price + 10 * strike space value) and with expiration days less than 180 days
      -option.SetFilter(-10, +10, timedelta(0), timedelta(180))
      -
      -
      -
      -

      Step 3: Choose Contracts - Fine Selection

      -For QuantConnect API, Slice class provides a data structure for all of an algorithm's data at a single time step. So you need use property Slice.OptionChains to request options data for this slice. - -OptionChains is a collection of  OptionChain keyed by the option's underlying symbol. The elements in Slice.OptionChains have properties Key(the underlying symbol object) Value(the option chain). - -OptionChain  represents an entire chain of option contracts for a single underlying security. In other words, It is a list of option contracts. - -OptionContract defines a single option contract at a specific expiration and strike price. For any contract x in option chain, you can use the following statements to check different options properties. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Properties of Option Contract x
      x.Symbol.Value Get the string of option contract's symbol
      x.AskPrice, x.BidPrice Get the ask price,  Get the bid price
      x.Expiry Get the expiration date
      x.Strike Get the strike price
      x.ImpliedVolatility Get the implied volatility
      x.GreeksGet the Greeks letter
      x.RightGet the right being purchased -x.Right = OptionRight.Call  call option[right to buy] -x.Right = OptionRight.Put  put option[right to sell]
      x.UnderlyingLastPriceGet the last price the underlying security traded at
      x.UnderlyingSymbolGets the underlying security's symbol
      -We can print out the details of the contract after filtering with Python data frame to show these properties. Assume today is 01/03/2017.  The stock price at 01/03/2017 09:31:00 is $776.01 per share. Here we use  SetFilter(-1, +1, timedelta(0), timedelta(60)) to filter the contracts. -
      def OnData(self,slice):
      -    for i in slice.OptionChains:
      -        if i.Key != self.symbol: continue
      -	optionchain = i.Value
      -	self.Log("underlying price:" + str(optionchain.Underlying.Price))
      -	df = pd.DataFrame([[x.Right,float(x.Strike),x.Expiry,float(x.BidPrice),float(x.AskPrice)] for x in optionchain],
      -			   index=[x.Symbol.Value for x in optionchain],
      -			   columns=['type(call 0, put 1)', 'strike', 'expiry', 'ask price', 'bid price'])
      -        self.Log(str(df))
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Symboltype(call 0, put 1)StrikeExpiryAsk PriceBid Price
      GOOG 170217C007800000780.02017-02-1726.427.9
      GOOG 170120P007825001782.52017-01-2014.716.3
      GOOG 170120C007825000782.52017-01-209.410.2
      GOOG 170120P007800001780.02017-01-2013.415.0
      GOOG 170120C007800000780.02017-01-2010.611.5
      GOOG 170217P007800001780.02017-02-1728.930.8
      GOOG 170120P007775001777.52017-01-2012.213.7
      GOOG 170120C007775000777.52017-01-2011.812.9
      -  - -Here we give an example of how to find ATM, ITM OTM contracts for trading. First, we need to extract the OptionChain from OptionChains according to symbols we added in Initialize step. Secondly, we extract ATM, ITM and OTM contracts by using UnderlyingLastPrice and Strike properties. Note here the strikes of ATM options are not exactly the same as the market price of underlying stocks, thus here we first sort the contracts by the absolute values of the difference between the UnderlyingLastPrice and the Strike. Then we choose the contract with the minimum absolute value as the ATM contract. -
      for i in slice.OptionChains:
      -    if i.Key != self.symbol: continue
      -    chain = i.Value
      -# differentiate the call and put options
      -call = [x for x in optionchain if chain.Right == 0]
      -put = [x for x in optionchain if chain.Right == 1]
      -# choose ITM contracts
      -contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike > 0]
      -# or choose ATM contracts
      -contracts = sorted(optionchain, key = lambda x: abs(optionchain.Underlying.Price - x.Strike))[0]
      -# or choose OTM contracts
      -contracts = [x for x in call if call.UnderlyingLastPrice - x.Strike < 0]
      -# sort the contracts by their expiration dates
      -contracts = sorted(contracts, key = lambda x:x.Expiry, reverse = True)
      -
      -Finally, we trade the options by using the contract's symbol. -
      if len(contracts) == 0: continue
      -# trade the contracts with the farthest expiration
      -symbol = contracts[0].Symbol
      -self.MarketOrder(symbol, 1)
      -self.MarketOnCloseOrder(symbol, -1)
      -
      -
      -

      Algorithm

      -This simple example demonstrates how you can inspect the option chain to pick a specific option contract to trade. - -

      Summary

      -After mastering the basic knowledge of options market, this tutorial we take a close at how to use Quantconnect to customize your own options trading. For example, how you can access an option chain, how to view the details of the contract as a Python data frame, and the most important how to trade the specific option contract. - -Next chapter we will examine some important topics of options like the payoff, Put-Call parity, and the synthetic positions. By learning all those concepts, we will start some brief hedging strategies involving options. - -
      -
      -
      diff --git a/API Tutorials/images/data library screen shot.png b/API Tutorials/images/data library screen shot.png deleted file mode 100644 index a845a5d..0000000 Binary files a/API Tutorials/images/data library screen shot.png and /dev/null differ diff --git a/Data/F-F_Research_Data_5_Factors_2x3.CSV b/Data/F-F_Research_Data_5_Factors_2x3.CSV new file mode 100644 index 0000000..8adb14e --- /dev/null +++ b/Data/F-F_Research_Data_5_Factors_2x3.CSV @@ -0,0 +1,748 @@ +This file was created by CMPT_ME_BEME_OP_INV_RETS using the 202007 CRSP database. +The 1-month TBill return is from Ibbotson and Associates Inc. + +,Mkt-RF,SMB,HML,RMW,CMA,RF +196307, -0.39, -0.47, -0.83, 0.66, -1.15, 0.27 +196308, 5.07, -0.79, 1.67, 0.40, -0.40, 0.25 +196309, -1.57, -0.48, 0.18, -0.76, 0.24, 0.27 +196310, 2.53, -1.29, -0.10, 2.75, -2.24, 0.29 +196311, -0.85, -0.84, 1.71, -0.45, 2.22, 0.27 +196312, 1.83, -1.89, -0.12, 0.07, -0.30, 0.29 +196401, 2.24, 0.08, 1.59, 0.22, 1.50, 0.30 +196402, 1.54, 0.32, 2.83, 0.06, 0.85, 0.26 +196403, 1.41, 1.41, 3.32, -2.01, 2.93, 0.31 +196404, 0.10, -1.52, -0.55, -1.35, -1.08, 0.29 +196405, 1.42, -0.68, 1.98, -0.26, 0.24, 0.26 +196406, 1.27, 0.09, 0.68, -0.42, 0.14, 0.30 +196407, 1.74, 0.53, 0.68, 0.14, 1.84, 0.30 +196408, -1.44, 0.30, 0.09, 0.06, 0.36, 0.28 +196409, 2.69, -0.31, 1.65, -0.48, 0.58, 0.28 +196410, 0.59, 0.88, 1.14, -0.29, 0.48, 0.29 +196411, 0.00, -0.27, -1.98, 0.60, -0.16, 0.29 +196412, 0.03, -0.58, -2.55, 1.13, -1.63, 0.31 +196501, 3.54, 2.49, 0.18, 0.84, 0.11, 0.28 +196502, 0.44, 3.31, 0.22, 0.40, -0.69, 0.30 +196503, -1.34, 2.03, 1.09, -0.30, 0.73, 0.36 +196504, 3.11, 1.18, 0.71, 0.26, -2.30, 0.31 +196505, -0.77, 0.05, -1.63, -0.38, 0.70, 0.31 +196506, -5.51, -4.30, 0.55, 0.12, 0.41, 0.35 +196507, 1.43, 1.08, 2.18, -1.41, -0.02, 0.31 +196508, 2.73, 2.72, -0.96, 2.06, -0.75, 0.33 +196509, 2.86, 0.62, -0.10, -0.82, 0.82, 0.31 +196510, 2.60, 3.42, 1.52, 1.22, -0.76, 0.31 +196511, -0.03, 5.19, 0.21, -1.06, -0.90, 0.35 +196512, 1.01, 2.64, 1.95, -1.28, -0.45, 0.33 +196601, 0.72, 4.72, 3.49, -2.83, -0.07, 0.38 +196602, -1.21, 4.86, 0.27, -0.15, -1.44, 0.35 +196603, -2.51, 0.22, -2.07, 1.30, -0.01, 0.38 +196604, 2.14, 3.36, -0.54, 0.41, -0.91, 0.34 +196605, -5.66, -5.18, -1.55, 1.66, -1.52, 0.41 +196606, -1.44, 1.34, 0.50, 0.06, 0.80, 0.38 +196607, -1.63, -0.50, 0.96, -0.45, 1.77, 0.35 +196608, -7.91, -3.03, 0.47, 0.05, 0.77, 0.41 +196609, -1.06, -1.18, 0.53, -1.65, 2.50, 0.40 +196610, 3.86, -6.53, 2.87, -3.64, 4.28, 0.45 +196611, 1.40, 3.37, -4.46, 4.17, -6.53, 0.40 +196612, 0.13, 1.91, -1.22, 0.68, -0.13, 0.40 +196701, 8.15, 9.00, 2.22, 0.62, -2.97, 0.43 +196702, 0.78, 3.03, -2.17, 1.94, -0.94, 0.36 +196703, 3.99, 1.90, 0.31, 0.90, -1.51, 0.39 +196704, 3.89, 0.46, -2.64, 2.43, -3.75, 0.32 +196705, -4.33, 2.37, 0.80, -1.75, 1.61, 0.33 +196706, 2.41, 6.46, 0.96, -0.64, -2.39, 0.27 +196707, 4.58, 3.48, 2.65, 0.51, 2.72, 0.31 +196708, -0.89, 0.76, 1.46, 0.42, 1.41, 0.31 +196709, 3.11, 2.46, -2.47, 0.22, -0.95, 0.32 +196710, -3.09, 0.47, -3.39, 0.81, -2.55, 0.39 +196711, 0.37, -0.06, -1.71, 1.29, -2.29, 0.36 +196712, 3.05, 5.75, -0.39, -0.64, 0.03, 0.33 +196801, -4.06, 4.48, 4.75, -4.58, 6.45, 0.40 +196802, -3.75, -2.91, 1.17, -0.14, 2.49, 0.39 +196803, 0.20, -1.52, -0.59, 1.17, -1.15, 0.38 +196804, 9.05, 6.25, -1.03, 2.79, -3.66, 0.43 +196805, 2.28, 7.03, 0.84, 0.39, -1.82, 0.45 +196806, 0.69, -0.26, 0.67, -1.33, 2.68, 0.43 +196807, -2.72, -1.33, 5.48, -3.00, 3.61, 0.48 +196808, 1.34, 2.29, 1.00, -0.60, 0.40, 0.42 +196809, 4.03, 2.77, 0.23, -2.03, 0.92, 0.43 +196810, 0.42, -0.43, 2.89, -1.30, 2.81, 0.44 +196811, 5.43, 2.41, -0.90, 0.46, -2.52, 0.42 +196812, -3.94, 3.60, 0.02, -1.78, 1.65, 0.43 +196901, -1.25, -0.46, 1.69, -1.54, 1.41, 0.53 +196902, -5.84, -4.12, 0.91, 2.17, 0.80, 0.46 +196903, 2.64, -0.41, -0.46, -1.34, -0.42, 0.46 +196904, 1.46, -0.82, 0.03, 0.38, 0.06, 0.53 +196905, -0.10, -0.18, 0.73, -0.97, 1.49, 0.48 +196906, -7.18, -5.49, -1.09, 4.26, -1.55, 0.51 +196907, -7.00, -3.37, 1.42, 1.40, 1.97, 0.53 +196908, 4.68, 0.71, -3.87, 1.16, -4.08, 0.50 +196909, -2.98, 1.29, -3.19, 3.42, -0.83, 0.62 +196910, 5.06, 3.89, -3.19, 0.01, -2.03, 0.60 +196911, -3.79, -2.41, -1.12, 1.44, 0.32, 0.52 +196912, -2.63, -3.70, -3.02, 2.47, -2.04, 0.64 +197001, -8.10, 3.09, 3.04, -1.77, 3.92, 0.60 +197002, 5.13, -2.58, 4.04, -2.28, 3.06, 0.62 +197003, -1.06, -2.40, 4.25, -0.87, 4.43, 0.57 +197004, -11.00, -6.30, 6.40, -0.64, 5.88, 0.50 +197005, -6.92, -4.42, 3.60, -1.30, 3.62, 0.53 +197006, -5.79, -2.17, 0.87, 0.19, 2.90, 0.58 +197007, 6.93, -0.69, 0.96, -0.07, 1.90, 0.52 +197008, 4.49, 1.54, 1.03, 0.57, -0.15, 0.53 +197009, 4.18, 8.49, -5.58, 0.24, -5.93, 0.54 +197010, -2.28, -4.50, 0.27, 1.83, 2.38, 0.46 +197011, 4.60, -4.00, 1.63, 1.75, 1.59, 0.46 +197012, 5.72, 3.02, 1.01, 0.14, 0.28, 0.42 +197101, 4.84, 7.54, 1.38, -2.19, -0.14, 0.38 +197102, 1.41, 2.05, -1.29, 0.65, -0.72, 0.33 +197103, 4.13, 2.15, -4.04, 1.97, -2.69, 0.30 +197104, 3.15, -0.37, 0.72, -1.56, 0.72, 0.28 +197105, -3.98, -1.17, -1.38, 1.46, 0.30, 0.29 +197106, -0.10, -1.45, -2.06, 1.52, -1.74, 0.37 +197107, -4.50, -1.41, 0.17, 0.48, 1.62, 0.40 +197108, 3.79, -0.18, 2.67, -0.34, 2.60, 0.47 +197109, -0.85, 0.19, -2.96, 2.59, -1.56, 0.37 +197110, -4.42, -1.65, -0.43, 1.48, -1.24, 0.37 +197111, -0.46, -2.90, -1.70, 2.45, -0.36, 0.37 +197112, 8.71, 3.27, -0.35, -0.43, -1.83, 0.37 +197201, 2.49, 6.33, 1.99, -1.48, 0.29, 0.29 +197202, 2.87, 0.95, -2.76, 1.65, -0.52, 0.25 +197203, 0.63, -0.49, -1.73, 1.58, -0.19, 0.27 +197204, 0.29, 0.15, 0.23, -0.59, -0.89, 0.29 +197205, 1.25, -3.15, -2.69, 2.33, -1.85, 0.30 +197206, -2.43, -0.35, -2.51, 1.75, -0.36, 0.29 +197207, -0.80, -2.74, 0.78, 1.08, -0.59, 0.31 +197208, 3.26, -3.53, 4.69, -2.02, 2.95, 0.29 +197209, -1.14, -2.25, 0.47, 1.67, -1.98, 0.34 +197210, 0.52, -2.53, 1.37, -0.12, -0.05, 0.40 +197211, 4.60, -0.53, 4.76, -1.98, 3.35, 0.37 +197212, 0.62, -1.82, -2.27, 2.60, -2.20, 0.37 +197301, -3.29, -2.79, 2.68, 0.40, 0.92, 0.44 +197302, -4.85, -4.01, 1.70, -0.34, -0.01, 0.41 +197303, -1.30, -2.31, 2.78, -1.07, 0.73, 0.46 +197304, -5.68, -3.00, 5.69, -1.63, 2.71, 0.52 +197305, -2.94, -5.98, 0.21, 2.02, -1.79, 0.51 +197306, -1.56, -2.54, 1.44, -0.27, 0.22, 0.51 +197307, 5.05, 7.26, -5.35, -0.10, -3.46, 0.64 +197308, -3.82, -1.75, 1.13, -1.36, 1.20, 0.70 +197309, 4.75, 3.54, 2.19, -2.30, 1.82, 0.68 +197310, -0.83, -0.27, 1.75, -1.94, 2.59, 0.65 +197311, -12.75, -7.26, 4.09, -2.71, 1.50, 0.56 +197312, 0.61, -4.60, 4.10, -2.80, 2.30, 0.64 +197401, -0.17, 10.41, 5.98, -3.01, 4.46, 0.63 +197402, -0.47, 0.16, 2.56, -1.93, 2.67, 0.58 +197403, -2.81, 2.64, -0.11, 2.82, 0.36, 0.56 +197404, -5.29, -0.63, 1.03, 2.86, 1.84, 0.75 +197405, -4.68, -3.16, -2.07, 5.08, -0.01, 0.75 +197406, -2.83, -0.02, 0.77, 0.62, 3.05, 0.60 +197407, -8.05, 1.99, 5.14, -3.26, 4.58, 0.70 +197408, -9.35, 0.30, 2.50, -0.26, 2.55, 0.60 +197409, -11.77, 1.46, 5.49, -4.28, 5.91, 0.81 +197410, 16.10, -6.85, -9.99, -0.03, -2.94, 0.51 +197411, -4.51, -1.44, -0.16, -3.39, 2.95, 0.54 +197412, -3.45, -4.36, 0.00, -0.65, 3.23, 0.70 +197501, 13.66, 12.79, 8.44, -0.89, -0.86, 0.58 +197502, 5.56, -0.65, -4.56, 1.15, -2.14, 0.43 +197503, 2.66, 3.98, 2.49, 1.23, -1.25, 0.41 +197504, 4.23, -0.59, -1.11, 1.37, -1.35, 0.44 +197505, 5.19, 2.89, -4.02, -1.05, -0.61, 0.44 +197506, 4.83, 1.32, 1.32, -2.62, 1.07, 0.41 +197507, -6.59, 3.42, 1.70, 0.43, 1.19, 0.48 +197508, -2.85, -2.79, -0.90, 1.03, -0.89, 0.48 +197509, -4.26, 0.02, 0.34, 0.53, 0.50, 0.53 +197510, 5.31, -4.23, 0.30, -0.46, 2.27, 0.56 +197511, 2.64, -1.07, 1.99, -0.62, 1.71, 0.41 +197512, -1.60, -0.03, 1.75, -0.12, 0.60, 0.48 +197601, 12.16, 6.35, 8.58, -1.90, 2.36, 0.47 +197602, 0.32, 7.97, 5.78, -2.58, 3.84, 0.34 +197603, 2.32, -1.34, -0.04, -0.38, 1.09, 0.40 +197604, -1.49, 0.14, -0.06, 0.39, -1.10, 0.42 +197605, -1.34, -1.12, -1.32, 2.47, -1.42, 0.37 +197606, 4.05, -1.13, 0.68, -0.59, 0.93, 0.43 +197607, -1.07, 0.62, 1.74, -1.09, 0.29, 0.47 +197608, -0.56, -2.03, 0.79, -0.46, -0.59, 0.42 +197609, 2.07, 0.12, -0.29, 0.99, -1.14, 0.44 +197610, -2.42, 0.16, -0.12, -0.22, -0.32, 0.41 +197611, 0.36, 2.66, 1.52, -1.39, 0.07, 0.40 +197612, 5.65, 3.60, 2.21, -0.62, 2.23, 0.40 +197701, -4.05, 5.90, 4.26, -0.53, 1.93, 0.36 +197702, -1.94, 1.11, 0.50, -0.13, -0.19, 0.35 +197703, -1.37, 1.29, 1.02, -0.32, -0.09, 0.38 +197704, 0.15, 0.61, 3.47, -2.05, 1.14, 0.38 +197705, -1.45, 1.28, 0.84, 0.33, 0.11, 0.37 +197706, 4.71, 2.07, -0.64, 0.88, -1.22, 0.40 +197707, -1.69, 1.82, -0.59, 0.83, 0.01, 0.42 +197708, -1.75, 0.89, -2.79, 0.96, -0.62, 0.44 +197709, -0.27, 1.56, -0.49, 1.23, -0.84, 0.43 +197710, -4.38, 1.50, 1.72, -0.30, -0.46, 0.49 +197711, 4.00, 3.62, 0.31, -0.05, 0.65, 0.50 +197712, 0.27, 1.60, -0.37, 0.94, -0.65, 0.49 +197801, -6.01, 2.69, 3.31, -1.67, 1.53, 0.49 +197802, -1.38, 3.67, 0.76, 0.36, 1.04, 0.46 +197803, 2.85, 3.72, 1.20, -0.60, 1.88, 0.53 +197804, 7.88, -0.31, -3.54, 2.82, -1.35, 0.54 +197805, 1.76, 4.56, -0.62, 0.27, 0.36, 0.51 +197806, -1.69, 1.59, 0.59, -1.44, -0.02, 0.54 +197807, 5.11, 0.15, -1.11, 1.58, -0.78, 0.56 +197808, 3.75, 4.93, -0.46, 1.39, 0.42, 0.56 +197809, -1.43, -0.28, 1.87, -0.68, 1.80, 0.62 +197810, -11.91, -10.05, 1.36, 0.17, 1.03, 0.68 +197811, 2.71, 2.85, -2.22, 1.09, -1.21, 0.70 +197812, 0.88, 1.07, -2.19, 1.96, -1.38, 0.78 +197901, 4.23, 3.84, 2.27, -2.50, 1.57, 0.77 +197902, -3.56, 0.55, 1.20, -1.14, 1.04, 0.73 +197903, 5.68, 3.16, -0.67, 0.62, 0.28, 0.81 +197904, -0.06, 2.40, 1.05, 1.05, 0.21, 0.80 +197905, -2.21, 0.15, 1.32, -1.39, -0.35, 0.82 +197906, 3.85, 0.99, 1.48, -1.61, -0.45, 0.81 +197907, 0.82, 1.24, 1.70, -0.20, 0.59, 0.77 +197908, 5.53, 1.97, -1.55, 1.58, -1.45, 0.77 +197909, -0.82, -0.27, -0.87, 1.02, 0.54, 0.83 +197910, -8.10, -3.46, -1.86, 1.04, 0.24, 0.87 +197911, 5.21, 2.44, -3.25, 0.11, -2.00, 0.99 +197912, 1.79, 4.34, -1.98, -0.67, -1.01, 0.95 +198001, 5.51, 1.90, 1.80, -1.67, 2.01, 0.80 +198002, -1.22, -1.49, 0.62, 0.11, 3.03, 0.89 +198003, -12.90, -6.97, -1.06, 1.38, -1.34, 1.21 +198004, 3.97, 1.00, 1.06, -2.09, 0.54, 1.26 +198005, 5.26, 2.10, 0.39, 0.31, -0.47, 0.81 +198006, 3.06, 1.47, -0.89, -0.09, -0.95, 0.61 +198007, 6.49, 3.93, -6.30, 3.94, -2.46, 0.53 +198008, 1.80, 4.26, -2.64, 2.10, -0.80, 0.64 +198009, 2.19, 0.58, -4.79, 2.03, -2.81, 0.75 +198010, 1.06, 2.33, -2.74, 1.67, -1.22, 0.95 +198011, 9.59, -3.40, -8.35, 4.53, -5.74, 0.96 +198012, -4.52, -0.31, 2.68, -1.25, 1.18, 1.31 +198101, -5.04, 3.37, 6.84, -3.54, 4.35, 1.04 +198102, 0.57, -0.49, 0.97, 0.19, 2.25, 1.07 +198103, 3.56, 3.08, 0.67, -2.34, -0.53, 1.21 +198104, -2.11, 4.60, 2.26, 0.82, 1.20, 1.08 +198105, 0.11, 2.45, -0.43, 0.33, -1.60, 1.15 +198106, -2.36, -0.97, 5.13, -1.35, 2.68, 1.35 +198107, -1.54, -1.97, -0.66, 1.08, -3.04, 1.24 +198108, -7.04, -1.81, 4.84, -0.25, 1.46, 1.28 +198109, -7.17, -2.49, 5.20, -0.02, 2.79, 1.24 +198110, 4.92, 2.24, -4.21, 3.29, -2.76, 1.21 +198111, 3.36, -1.38, 1.90, 0.10, 0.63, 1.07 +198112, -3.65, 1.19, 0.74, 0.19, 2.41, 0.87 +198201, -3.24, -1.18, 3.17, -1.52, 2.08, 0.80 +198202, -5.86, 0.37, 6.10, -3.38, 4.57, 0.92 +198203, -1.87, 0.00, 3.78, -1.44, 2.37, 0.98 +198204, 3.27, 1.15, -2.78, 1.51, -0.15, 1.13 +198205, -3.99, 0.56, 1.81, 0.91, -0.09, 1.06 +198206, -3.09, -0.51, 1.54, 0.03, 2.72, 0.96 +198207, -3.19, 0.95, 0.15, 1.03, 1.54, 1.05 +198208, 11.14, -4.29, 1.16, -1.96, 0.18, 0.76 +198209, 1.29, 2.57, 0.34, 2.12, -0.04, 0.51 +198210, 11.30, 1.92, -3.68, 0.30, -0.37, 0.59 +198211, 4.67, 4.53, -1.96, -1.05, 0.32, 0.63 +198212, 0.55, -0.01, 0.01, -0.07, 1.03, 0.67 +198301, 3.60, 3.28, -0.86, -1.50, -0.46, 0.69 +198302, 2.59, 2.90, 0.67, -0.57, 1.02, 0.62 +198303, 2.82, 1.42, 2.07, -0.07, 2.81, 0.63 +198304, 6.67, 0.49, 0.60, -0.16, 1.60, 0.71 +198305, 0.52, 6.22, -1.40, -1.85, -1.53, 0.69 +198306, 3.07, 1.15, -3.87, 2.52, -0.89, 0.67 +198307, -4.07, 0.98, 5.62, -0.03, 2.84, 0.74 +198308, -0.50, -4.34, 5.55, 0.45, 1.95, 0.76 +198309, 0.91, 0.25, 1.09, 1.21, 0.59, 0.76 +198310, -3.44, -3.82, 5.06, -0.81, 2.97, 0.76 +198311, 2.16, 1.88, -0.62, -0.48, 0.64, 0.70 +198312, -1.78, -0.47, 1.67, 1.59, 1.21, 0.73 +198401, -1.92, -0.07, 7.63, -0.93, 3.00, 0.76 +198402, -4.82, -1.62, 3.36, 0.82, 1.57, 0.71 +198403, 0.63, -0.28, 0.48, -0.93, 1.09, 0.73 +198404, -0.51, -1.01, 1.29, 3.27, 0.76, 0.81 +198405, -5.97, 0.08, 0.26, 2.32, -0.50, 0.78 +198406, 1.82, 0.07, -2.60, 3.08, -1.51, 0.75 +198407, -2.74, -2.22, 0.49, 3.69, -2.17, 0.82 +198408, 10.28, -0.30, -1.85, -0.89, -0.81, 0.83 +198409, -0.80, 0.00, 5.32, 1.40, 2.53, 0.86 +198410, -0.84, -1.43, 0.51, 1.17, -1.16, 1.00 +198411, -1.76, -0.98, 4.08, 0.81, 2.08, 0.73 +198412, 1.84, -0.69, -0.17, 1.21, -1.26, 0.64 +198501, 7.99, 3.49, -5.43, -0.83, -3.36, 0.65 +198502, 1.22, 1.00, -0.12, 1.26, 1.03, 0.58 +198503, -0.84, -1.48, 4.10, 1.18, 2.94, 0.62 +198504, -0.96, -0.10, 3.73, 1.59, 0.71, 0.72 +198505, 5.09, -2.33, -0.86, 1.30, -1.39, 0.66 +198506, 1.27, 0.31, 0.40, 1.73, -0.59, 0.55 +198507, -0.74, 2.89, -1.63, -0.45, -0.31, 0.62 +198508, -1.02, -0.32, 2.28, -0.04, 1.88, 0.55 +198509, -4.54, -1.81, 1.32, 1.16, 1.61, 0.60 +198510, 4.02, -1.55, 0.78, 0.92, -1.11, 0.65 +198511, 6.48, 0.00, -2.87, 0.29, -2.33, 0.61 +198512, 3.88, -0.39, -1.53, 0.97, -1.80, 0.65 +198601, 0.65, 1.01, 0.53, -2.02, -2.05, 0.56 +198602, 7.13, -0.76, -0.94, 1.15, -1.39, 0.53 +198603, 4.88, -0.57, -0.44, 1.12, 0.99, 0.60 +198604, -1.31, 2.92, -2.85, 2.91, 0.02, 0.52 +198605, 4.62, -1.26, -0.11, 2.08, 1.11, 0.49 +198606, 1.03, -0.87, 1.40, 1.83, 0.87, 0.52 +198607, -6.45, -3.54, 4.78, -0.57, 0.61, 0.52 +198608, 6.07, -4.36, 3.52, -1.74, 3.24, 0.46 +198609, -8.60, 1.97, 3.19, -0.05, 3.62, 0.45 +198610, 4.66, -2.33, -1.32, 0.13, 0.89, 0.46 +198611, 1.17, -1.88, -0.06, 1.12, 0.61, 0.39 +198612, -3.27, 0.07, 0.37, 0.83, -0.03, 0.49 +198701, 12.47, -1.51, -3.18, 0.20, -1.09, 0.42 +198702, 4.39, 3.41, -5.99, -0.90, -2.76, 0.43 +198703, 1.64, 0.21, 1.66, 1.36, 4.03, 0.47 +198704, -2.11, -1.55, -0.33, -0.46, 1.22, 0.44 +198705, 0.11, -0.59, 0.13, 0.52, 1.32, 0.38 +198706, 3.94, -2.29, 1.07, 1.73, 0.83, 0.48 +198707, 3.85, -1.11, 0.66, -0.50, 1.56, 0.46 +198708, 3.52, -0.90, -0.90, 2.03, -1.59, 0.47 +198709, -2.59, 0.37, 0.28, -0.90, 1.89, 0.45 +198710, -23.24, -8.09, 4.23, 2.01, 2.39, 0.60 +198711, -7.77, 2.83, 3.14, -1.92, 0.71, 0.35 +198712, 6.81, 0.09, -4.49, 3.01, -2.36, 0.39 +198801, 4.21, -0.54, 5.08, -1.12, 2.09, 0.29 +198802, 4.75, 3.32, -1.65, 1.56, -0.11, 0.46 +198803, -2.27, 6.26, 0.74, -0.16, 1.91, 0.44 +198804, 0.56, 1.12, 1.69, -0.23, 1.90, 0.46 +198805, -0.29, -2.59, 2.30, -0.70, 0.38, 0.51 +198806, 4.79, 2.19, -1.07, 1.42, -3.25, 0.49 +198807, -1.25, -0.17, 2.27, -0.59, 1.45, 0.51 +198808, -3.31, -0.02, 2.03, -0.76, 1.74, 0.59 +198809, 3.30, -1.31, -0.68, 1.72, -0.48, 0.62 +198810, 1.15, -2.95, 1.71, 1.40, 1.04, 0.61 +198811, -2.29, -1.66, 1.24, -0.31, 1.60, 0.57 +198812, 1.49, 2.01, -1.55, 0.64, -0.37, 0.63 +198901, 6.10, -2.23, 0.51, -1.03, 0.16, 0.55 +198902, -2.25, 2.67, 0.87, -0.82, 1.89, 0.61 +198903, 1.57, 0.76, 0.46, 0.01, 0.79, 0.67 +198904, 4.33, -0.70, -1.45, 0.76, -0.54, 0.67 +198905, 3.35, -0.01, -0.82, 0.49, -0.04, 0.79 +198906, -1.35, -1.08, 2.19, 0.24, 1.52, 0.71 +198907, 7.20, -4.04, -2.84, 1.99, -0.62, 0.70 +198908, 1.44, 0.43, 0.72, 0.41, -0.50, 0.74 +198909, -0.76, 0.46, -1.34, 1.40, 0.59, 0.65 +198910, -3.67, -3.33, -1.03, 0.00, 0.02, 0.68 +198911, 1.03, -1.30, -1.12, -0.91, 1.47, 0.69 +198912, 1.16, -2.30, 0.28, -0.10, 1.45, 0.61 +199001, -7.85, -1.33, 0.87, -1.13, 1.32, 0.57 +199002, 1.11, 1.18, 0.61, -0.19, -0.64, 0.57 +199003, 1.83, 1.64, -2.90, 2.15, -1.02, 0.64 +199004, -3.36, -0.40, -2.55, 1.72, -0.98, 0.69 +199005, 8.42, -2.40, -3.74, 1.65, -1.57, 0.68 +199006, -1.09, 1.38, -1.94, -1.00, -0.34, 0.63 +199007, -1.90, -3.27, -0.01, -0.27, 3.10, 0.68 +199008, -10.15, -3.85, 1.58, -0.43, 2.99, 0.66 +199009, -6.12, -3.78, 0.73, -0.16, 3.71, 0.60 +199010, -1.92, -5.07, 0.22, 2.87, -0.49, 0.68 +199011, 6.35, -0.05, -3.16, 0.81, -4.75, 0.57 +199012, 2.46, 0.61, -1.54, 2.86, -2.00, 0.60 +199101, 4.69, 3.86, -1.84, 1.55, -4.08, 0.52 +199102, 7.19, 3.96, -0.54, -0.27, -0.16, 0.48 +199103, 2.65, 3.82, -1.23, -0.39, -0.99, 0.44 +199104, -0.28, 0.33, 1.42, 0.53, 0.71, 0.53 +199105, 3.65, 0.17, -0.57, 2.11, -2.45, 0.47 +199106, -4.94, 0.17, 1.21, 1.75, 0.63, 0.42 +199107, 4.24, -0.96, -1.25, 1.61, -1.41, 0.49 +199108, 2.32, 1.44, -0.78, 0.88, -0.55, 0.46 +199109, -1.59, 1.55, -1.00, -1.81, 0.16, 0.46 +199110, 1.29, 0.95, -0.43, -1.73, -0.29, 0.42 +199111, -4.19, -0.87, -1.93, 1.08, 0.12, 0.39 +199112, 10.84, -2.42, -4.03, 3.58, -3.12, 0.38 +199201, -0.59, 9.26, 4.51, -1.33, 3.15, 0.34 +199202, 1.09, 1.35, 6.37, 0.09, 2.04, 0.28 +199203, -2.66, -0.90, 3.65, -0.08, 1.93, 0.34 +199204, 1.07, -5.73, 4.31, 1.71, 2.22, 0.32 +199205, 0.30, 0.21, 1.28, -0.96, 0.43, 0.28 +199206, -2.34, -2.71, 3.40, -0.03, 1.07, 0.32 +199207, 3.77, -0.61, -0.53, 1.57, -0.72, 0.31 +199208, -2.38, -0.42, -1.03, 3.79, -1.62, 0.26 +199209, 1.19, 0.48, -0.21, 1.53, -0.50, 0.26 +199210, 1.02, 2.02, -2.10, 1.31, -0.80, 0.23 +199211, 4.13, 3.91, -1.48, -0.84, -1.91, 0.23 +199212, 1.53, 1.64, 2.52, -0.44, 0.75, 0.28 +199301, 0.93, 2.09, 5.87, -1.77, 2.78, 0.23 +199302, 0.12, -3.42, 6.42, -0.50, 4.05, 0.22 +199303, 2.30, 0.05, 1.22, -0.29, 0.92, 0.25 +199304, -3.05, -0.86, 2.61, -3.69, 1.52, 0.24 +199305, 2.89, 1.88, -3.41, -0.01, -1.18, 0.22 +199306, 0.31, 0.11, 2.62, -1.06, 1.09, 0.25 +199307, -0.34, 0.90, 3.25, -2.17, 2.03, 0.24 +199308, 3.71, 0.24, -0.45, -1.15, -0.04, 0.25 +199309, -0.12, 3.06, -0.44, 0.77, -0.08, 0.26 +199310, 1.41, 1.62, -1.54, -0.10, 0.59, 0.22 +199311, -1.89, -1.42, -0.27, 1.55, -0.96, 0.25 +199312, 1.65, 1.37, 0.56, 0.71, -0.32, 0.23 +199401, 2.87, -0.14, 2.10, -2.30, 1.45, 0.25 +199402, -2.55, 2.65, -1.46, 2.45, -1.03, 0.21 +199403, -4.78, -1.02, 1.29, 0.77, 1.27, 0.27 +199404, 0.68, -1.04, 1.67, 1.01, 1.12, 0.27 +199405, 0.58, -2.46, 0.20, 0.90, 0.70, 0.31 +199406, -3.03, -0.52, 1.69, 1.16, 1.53, 0.31 +199407, 2.82, -1.83, 0.62, -0.89, 0.11, 0.28 +199408, 4.01, 1.29, -2.80, 0.87, -1.45, 0.37 +199409, -2.31, 2.67, -1.91, 0.60, 0.93, 0.37 +199410, 1.34, -2.30, -1.74, 0.58, -0.62, 0.38 +199411, -4.04, 0.11, -0.94, 0.81, -0.44, 0.37 +199412, 0.86, -0.02, 0.54, 0.42, 0.31, 0.44 +199501, 1.80, -2.76, 0.81, 0.62, -0.83, 0.42 +199502, 3.63, -0.55, 1.09, 0.57, -0.33, 0.40 +199503, 2.19, -0.72, -1.09, -0.33, 0.16, 0.46 +199504, 2.11, -0.34, 2.27, 0.05, 1.00, 0.44 +199505, 2.90, -2.06, 1.72, 0.46, 0.09, 0.54 +199506, 2.72, 2.95, -2.28, -0.48, -2.44, 0.47 +199507, 3.72, 2.10, -1.67, 0.45, -1.71, 0.45 +199508, 0.55, 1.83, 2.71, -1.36, 1.64, 0.47 +199509, 3.35, -1.88, -0.75, 1.33, 0.36, 0.43 +199510, -1.52, -4.05, -0.73, 2.14, -0.03, 0.47 +199511, 3.96, -1.17, 0.94, -0.82, 1.19, 0.42 +199512, 1.03, 0.67, 0.87, -1.33, 2.99, 0.49 +199601, 2.26, -2.59, 0.31, -0.64, 2.27, 0.43 +199602, 1.33, 1.82, -1.42, 0.40, -1.80, 0.39 +199603, 0.73, 1.54, 1.01, 1.30, -0.97, 0.39 +199604, 2.06, 4.64, -3.91, 0.18, -2.20, 0.46 +199605, 2.36, 3.18, -1.20, 0.43, -0.22, 0.42 +199606, -1.14, -3.47, 1.56, 3.46, 1.09, 0.40 +199607, -5.97, -3.68, 4.45, 2.83, 2.59, 0.45 +199608, 2.77, 2.54, -0.46, -0.30, -2.42, 0.41 +199609, 5.01, -1.33, -3.15, 1.51, -2.18, 0.44 +199610, 0.86, -3.88, 5.13, 1.32, 2.97, 0.42 +199611, 6.25, -3.78, 1.17, 2.00, -0.73, 0.41 +199612, -1.70, 3.20, 0.88, 0.54, 1.52, 0.46 +199701, 4.98, -1.82, -1.64, 1.31, -0.28, 0.45 +199702, -0.49, -2.53, 5.20, 0.68, 3.41, 0.39 +199703, -5.02, -0.48, 3.81, 0.36, 1.66, 0.43 +199704, 4.04, -5.73, -0.06, 3.25, -0.90, 0.43 +199705, 6.74, 4.65, -3.89, -0.96, -2.91, 0.49 +199706, 4.10, 1.26, 1.23, 1.01, 0.55, 0.37 +199707, 7.33, -2.84, 0.82, -0.24, -2.56, 0.43 +199708, -4.15, 7.66, 1.38, -0.93, -0.02, 0.41 +199709, 5.35, 2.56, 0.01, -1.39, -0.93, 0.44 +199710, -3.80, -0.51, 1.95, 1.09, 1.87, 0.42 +199711, 2.98, -5.03, 0.78, 3.07, 1.66, 0.39 +199712, 1.32, -2.01, 3.45, 1.19, 1.92, 0.48 +199801, 0.15, -1.41, -1.45, 0.46, -0.85, 0.43 +199802, 7.04, -0.02, -0.13, -0.86, -2.41, 0.39 +199803, 4.76, -0.65, 1.05, -1.02, -0.47, 0.39 +199804, 0.73, -0.02, 0.73, -2.13, -0.23, 0.43 +199805, -3.07, -3.11, 4.16, 0.96, 2.54, 0.40 +199806, 3.18, -3.68, -2.33, -0.52, -2.93, 0.41 +199807, -2.46, -5.32, -0.96, 1.82, 0.45, 0.40 +199808, -16.08, -5.02, 3.40, 3.47, 5.84, 0.43 +199809, 6.15, -0.84, -3.31, -1.51, -2.91, 0.46 +199810, 7.13, -3.51, -2.21, 0.59, 0.29, 0.32 +199811, 6.10, 0.64, -3.15, -1.24, -1.15, 0.31 +199812, 6.16, -1.51, -4.46, -0.75, -3.33, 0.38 +199901, 3.50, -0.75, -4.03, -2.69, -6.86, 0.35 +199902, -4.08, -5.15, 1.40, -1.71, 4.09, 0.35 +199903, 3.45, -4.29, -2.65, -4.20, -1.40, 0.43 +199904, 4.33, 4.67, 2.53, -2.42, 0.92, 0.37 +199905, -2.46, 3.73, 2.40, 1.09, 3.36, 0.34 +199906, 4.77, 2.25, -3.60, 1.32, -3.38, 0.40 +199907, -3.49, 2.53, -0.76, 0.49, 3.11, 0.38 +199908, -1.38, -1.93, -1.31, -0.30, 0.31, 0.39 +199909, -2.79, 2.57, -3.39, -0.72, -1.07, 0.39 +199910, 6.12, -7.09, -2.89, -1.72, -1.25, 0.39 +199911, 3.37, 5.90, -6.51, -3.85, -1.58, 0.36 +199912, 7.72, 5.42, -8.73, -7.91, -5.29, 0.44 +200001, -4.74, 4.15, -0.28, -6.05, 4.73, 0.41 +200002, 2.45, 18.32, -9.93, -18.34, -0.51, 0.43 +200003, 5.20, -14.91, 7.37, 11.67, -1.05, 0.47 +200004, -6.40, -5.55, 8.61, 7.55, 5.27, 0.46 +200005, -4.42, -3.68, 2.57, 4.64, 0.74, 0.50 +200006, 4.64, 10.39, -9.86, -6.83, -3.07, 0.40 +200007, -2.51, -0.95, 8.06, 6.00, 2.99, 0.48 +200008, 7.03, -1.10, -0.66, -3.07, 0.61, 0.50 +200009, -5.45, 0.23, 6.13, 3.08, 6.43, 0.51 +200010, -2.76, -2.83, 5.64, 9.66, 4.67, 0.56 +200011, -10.72, -0.46, 11.26, 13.33, 8.51, 0.51 +200012, 1.19, 3.17, 7.38, 1.85, 5.68, 0.50 +200101, 3.13, 5.80, -4.86, -4.44, -6.55, 0.54 +200102, -10.05, 2.67, 12.87, 9.00, 9.56, 0.38 +200103, -7.26, 2.32, 6.46, 3.41, 3.94, 0.42 +200104, 7.94, -0.64, -4.72, -2.72, -3.95, 0.39 +200105, 0.72, 3.58, 3.17, 0.18, 2.18, 0.32 +200106, -1.94, 6.61, -1.03, 2.03, -1.79, 0.28 +200107, -2.13, -2.91, 5.57, 7.16, 3.01, 0.30 +200108, -6.46, 2.73, 2.50, 3.95, 6.50, 0.31 +200109, -9.25, -5.68, 1.60, 4.96, 3.27, 0.28 +200110, 2.46, 5.41, -8.10, -2.66, -4.64, 0.22 +200111, 7.54, -0.31, 2.01, -3.76, -1.66, 0.17 +200112, 1.61, 5.14, 1.10, 0.30, -0.29, 0.15 +200201, -1.44, 1.19, 3.33, 4.35, 2.84, 0.14 +200202, -2.29, -0.46, 2.50, 7.62, 5.12, 0.13 +200203, 4.24, 4.28, 1.10, -1.36, 0.61, 0.13 +200204, -5.20, 6.66, 3.93, 4.57, 5.41, 0.15 +200205, -1.38, -3.07, 1.68, 2.27, 2.42, 0.14 +200206, -7.21, 3.78, 0.12, 3.62, 2.51, 0.13 +200207, -8.18, -6.24, -3.44, 4.19, -0.72, 0.15 +200208, 0.50, -1.27, 2.53, 1.15, -1.61, 0.14 +200209, -10.35, 3.07, 1.32, 3.24, -2.28, 0.14 +200210, 7.84, -4.12, -5.45, -3.28, 0.92, 0.14 +200211, 5.96, 2.90, -1.12, -9.13, 5.12, 0.12 +200212, -5.76, 0.50, 2.23, 6.04, -1.59, 0.11 +200301, -2.57, 0.81, -0.94, -0.63, 0.81, 0.10 +200302, -1.88, -0.89, -1.45, 1.04, -0.55, 0.09 +200303, 1.09, 0.56, -2.07, 1.80, -0.69, 0.10 +200304, 8.22, 1.06, 1.03, -4.57, 1.14, 0.10 +200305, 6.05, 4.83, -0.29, -6.92, 3.22, 0.09 +200306, 1.42, 1.68, 0.69, 0.55, -0.33, 0.10 +200307, 2.35, 4.73, -1.14, -4.17, 1.87, 0.07 +200308, 2.34, 2.54, 2.03, -2.46, 2.20, 0.07 +200309, -1.24, 0.52, 0.01, 1.34, 0.31, 0.08 +200310, 6.08, 2.64, 1.77, -1.59, 1.55, 0.07 +200311, 1.35, 2.21, 1.85, 0.08, 1.67, 0.07 +200312, 4.29, -2.68, 2.41, 0.00, 0.97, 0.08 +200401, 2.15, 2.54, 1.97, -3.53, 3.40, 0.07 +200402, 1.40, -0.91, 0.50, 2.28, -1.34, 0.06 +200403, -1.32, 2.11, 0.22, 1.50, -1.04, 0.09 +200404, -1.83, -2.19, -2.62, 3.31, -2.80, 0.08 +200405, 1.17, -0.40, -0.39, -0.97, -0.08, 0.06 +200406, 1.86, 2.56, 1.39, 1.12, -0.41, 0.08 +200407, -4.06, -3.03, 4.11, 5.08, -1.62, 0.10 +200408, 0.08, -1.27, 1.03, 1.30, -1.43, 0.11 +200409, 1.60, 3.28, -0.25, -1.34, -1.90, 0.11 +200410, 1.43, 0.28, -0.63, -0.07, 0.40, 0.11 +200411, 4.54, 4.12, 1.79, -1.06, -0.22, 0.15 +200412, 3.43, 0.01, -0.08, -1.26, 0.51, 0.16 +200501, -2.76, -1.11, 1.96, 3.05, -1.38, 0.16 +200502, 1.89, -0.30, 1.65, 1.20, -0.05, 0.16 +200503, -1.97, -1.39, 1.61, 0.47, 1.12, 0.21 +200504, -2.61, -4.01, -0.35, 0.96, -0.90, 0.21 +200505, 3.65, 2.72, -0.81, -1.31, 0.28, 0.24 +200506, 0.57, 3.26, 2.63, 0.98, -0.52, 0.23 +200507, 3.92, 2.83, -0.52, -1.19, -0.98, 0.24 +200508, -1.22, -0.86, 1.27, -2.23, 0.44, 0.30 +200509, 0.49, -0.31, 0.77, 0.49, -0.57, 0.29 +200510, -2.02, -1.41, 0.22, -0.58, -1.25, 0.27 +200511, 3.61, 0.80, -1.19, -0.60, -1.18, 0.31 +200512, -0.25, -0.27, 0.44, 0.12, 0.22, 0.32 +200601, 3.04, 5.77, 1.13, -0.94, -0.54, 0.35 +200602, -0.30, -0.44, -0.25, -0.70, 2.03, 0.34 +200603, 1.46, 3.44, 0.60, -0.04, -0.52, 0.37 +200604, 0.73, -0.82, 2.61, 1.15, -0.20, 0.36 +200605, -3.57, -3.00, 2.54, 0.96, 1.31, 0.43 +200606, -0.35, -0.23, 0.87, 1.38, -0.11, 0.40 +200607, -0.78, -3.69, 2.94, 1.54, 0.93, 0.40 +200608, 2.03, 0.44, -1.71, -1.74, 2.15, 0.42 +200609, 1.84, -1.44, 0.04, 0.88, 0.53, 0.41 +200610, 3.23, 1.93, -0.03, -0.22, 0.26, 0.41 +200611, 1.71, 0.82, 0.07, 0.10, -0.88, 0.42 +200612, 0.87, -0.79, 3.16, -0.80, 2.05, 0.40 +200701, 1.40, 0.08, -0.11, 0.22, 0.24, 0.44 +200702, -1.96, 1.40, -0.09, -0.47, -0.74, 0.38 +200703, 0.68, 0.07, -0.22, 0.24, -0.59, 0.43 +200704, 3.49, -2.02, -1.15, 1.02, 1.01, 0.44 +200705, 3.24, 0.28, -0.04, 1.13, -1.29, 0.41 +200706, -1.96, 0.76, -1.12, 0.53, 0.07, 0.40 +200707, -3.73, -2.87, -3.33, 0.57, -1.04, 0.40 +200708, 0.92, -0.34, -2.24, -0.91, -0.56, 0.42 +200709, 3.22, -2.41, -1.86, -0.58, -3.17, 0.32 +200710, 1.80, 0.03, -2.59, -0.31, -0.10, 0.32 +200711, -4.83, -2.81, -1.18, 1.88, -0.34, 0.34 +200712, -0.87, 0.18, -0.51, 0.70, -1.09, 0.27 +200801, -6.36, -0.52, 3.65, 1.98, 2.20, 0.21 +200802, -3.09, -0.53, -0.94, 0.76, -1.06, 0.13 +200803, -0.93, 0.75, -0.14, 1.09, 0.47, 0.17 +200804, 4.60, -1.15, -0.95, 1.28, -2.54, 0.18 +200805, 1.86, 3.22, -1.38, 0.81, 0.04, 0.18 +200806, -8.44, 1.15, -2.41, 4.30, -0.42, 0.17 +200807, -0.77, 3.64, 5.93, -1.00, 1.06, 0.15 +200808, 1.53, 3.42, 1.55, 1.84, 0.81, 0.13 +200809, -9.24, 0.35, 6.32, 2.95, 1.78, 0.15 +200810, -17.23, -3.21, -2.88, 3.58, 1.92, 0.08 +200811, -7.86, -3.88, -6.03, 4.79, 2.72, 0.03 +200812, 1.74, 3.38, -0.28, -0.08, -1.41, 0.00 +200901, -8.12, -1.99, -11.23, 0.23, -1.16, 0.00 +200902, -10.10, -1.17, -7.30, 1.71, -1.11, 0.01 +200903, 8.95, 0.66, 3.64, -2.33, -2.22, 0.02 +200904, 10.19, 6.70, 5.53, 0.29, 0.14, 0.01 +200905, 5.21, -2.33, -0.21, -0.98, -2.16, 0.00 +200906, 0.43, 2.31, -2.66, -1.06, -0.18, 0.01 +200907, 7.72, 2.45, 5.31, -0.59, 3.21, 0.01 +200908, 3.33, -0.05, 7.76, -2.99, 3.23, 0.01 +200909, 4.08, 2.74, 0.91, 1.44, 0.38, 0.01 +200910, -2.59, -4.78, -4.17, 4.18, -1.67, 0.00 +200911, 5.56, -2.80, -0.19, 0.82, 0.16, 0.00 +200912, 2.75, 6.24, -0.01, 0.65, -0.08, 0.01 +201001, -3.36, 0.28, 0.31, -1.41, 0.44, 0.00 +201002, 3.40, 1.47, 3.13, -0.28, 1.43, 0.00 +201003, 6.31, 1.79, 2.13, -0.62, 1.69, 0.01 +201004, 2.00, 5.05, 2.82, 1.12, 1.69, 0.01 +201005, -7.89, 0.06, -2.39, 1.29, -0.19, 0.01 +201006, -5.56, -2.49, -4.48, -0.27, -1.50, 0.01 +201007, 6.93, 0.09, -0.26, 0.24, 2.01, 0.01 +201008, -4.77, -3.11, -1.96, 0.72, -1.69, 0.01 +201009, 9.54, 3.72, -3.13, -0.21, 0.47, 0.01 +201010, 3.88, 0.78, -2.61, 1.29, -0.23, 0.01 +201011, 0.60, 3.61, -0.90, 0.24, 1.63, 0.01 +201012, 6.82, 0.95, 3.81, -3.65, 3.23, 0.01 +201101, 1.99, -2.42, 0.81, -0.89, 0.69, 0.01 +201102, 3.49, 1.64, 1.09, -1.93, 0.95, 0.01 +201103, 0.45, 2.67, -1.58, 1.65, -0.03, 0.01 +201104, 2.90, -0.51, -2.52, 1.10, -0.84, 0.00 +201105, -1.27, -0.68, -2.07, 2.02, -1.50, 0.00 +201106, -1.75, 0.11, -0.31, 2.38, -1.45, 0.00 +201107, -2.36, -1.35, -1.21, 2.43, -1.69, 0.00 +201108, -5.99, -3.21, -2.45, 3.19, -0.20, 0.01 +201109, -7.59, -3.77, -1.39, 1.89, 0.28, 0.00 +201110, 11.35, 3.56, -0.18, -1.94, -0.85, 0.00 +201111, -0.28, -0.26, -0.34, 1.77, 1.50, 0.00 +201112, 0.74, -0.44, 1.78, 0.76, 2.36, 0.00 +201201, 5.05, 2.16, -1.14, -1.80, -1.41, 0.00 +201202, 4.42, -1.63, 0.09, -0.19, -0.06, 0.00 +201203, 3.11, -0.46, 0.91, -0.41, 0.81, 0.00 +201204, -0.85, -0.59, -0.49, 1.12, 0.67, 0.00 +201205, -6.19, -0.10, -0.58, 2.25, 2.41, 0.01 +201206, 3.89, 0.96, 0.44, -1.23, 0.32, 0.00 +201207, 0.79, -2.68, -0.26, 1.13, 0.13, 0.00 +201208, 2.55, 0.44, 1.28, -1.27, -0.73, 0.01 +201209, 2.73, 0.66, 1.52, -1.38, 1.59, 0.01 +201210, -1.76, -0.81, 3.79, -1.39, 2.28, 0.01 +201211, 0.78, 0.36, -0.98, 0.67, 0.91, 0.01 +201212, 1.18, 1.88, 3.58, -1.99, 0.86, 0.01 +201301, 5.57, 0.56, 0.91, -1.64, 1.47, 0.00 +201302, 1.29, -0.38, 0.01, -0.68, 0.48, 0.00 +201303, 4.03, 0.83, -0.28, 0.17, 1.31, 0.00 +201304, 1.55, -2.30, 0.59, 0.08, 0.47, 0.00 +201305, 2.80, 2.07, 2.56, -1.68, -0.78, 0.00 +201306, -1.20, 1.35, -0.17, -0.45, -0.01, 0.00 +201307, 5.65, 1.79, 0.55, -1.45, 0.56, 0.00 +201308, -2.71, -0.02, -2.76, 0.62, -2.18, 0.00 +201309, 3.77, 2.67, -1.20, -0.77, -1.30, 0.00 +201310, 4.18, -1.51, 1.10, 2.66, 0.88, 0.00 +201311, 3.12, 1.35, 0.27, 0.13, 0.08, 0.00 +201312, 2.81, -0.53, -0.30, -0.49, 0.08, 0.00 +201401, -3.32, 0.59, -2.10, -3.97, -1.36, 0.00 +201402, 4.65, 0.13, -0.46, -0.25, -0.43, 0.00 +201403, 0.43, -1.17, 5.06, 2.14, 1.89, 0.00 +201404, -0.19, -4.17, 1.07, 3.48, 1.04, 0.00 +201405, 2.06, -1.88, -0.19, 0.09, -1.06, 0.00 +201406, 2.61, 3.08, -0.76, -1.95, -1.94, 0.00 +201407, -2.04, -4.25, 0.01, 0.94, 0.47, 0.00 +201408, 4.24, 0.28, -0.58, -0.63, -0.69, 0.00 +201409, -1.97, -3.79, -1.23, 1.12, -0.52, 0.00 +201410, 2.52, 3.78, -1.68, -0.47, -0.17, 0.00 +201411, 2.55, -2.30, -2.99, 1.40, 0.19, 0.00 +201412, -0.06, 2.87, 2.06, -1.16, 0.88, 0.00 +201501, -3.11, -0.89, -3.47, 1.67, -1.66, 0.00 +201502, 6.13, 0.22, -1.83, -1.06, -1.76, 0.00 +201503, -1.12, 3.04, -0.46, 0.10, -0.51, 0.00 +201504, 0.59, -3.02, 1.85, -0.14, -0.49, 0.00 +201505, 1.36, 0.80, -1.36, -1.73, -0.73, 0.00 +201506, -1.53, 2.85, -0.79, 0.50, -1.48, 0.00 +201507, 1.54, -4.55, -4.14, 0.04, -2.54, 0.00 +201508, -6.04, 0.41, 2.66, 0.76, 1.25, 0.00 +201509, -3.08, -2.79, 0.53, 1.83, -0.47, 0.00 +201510, 7.75, -2.17, -0.06, 0.81, 0.45, 0.00 +201511, 0.56, 3.36, -0.50, -2.59, -1.11, 0.00 +201512, -2.17, -2.99, -2.60, 0.32, 0.10, 0.01 +201601, -5.77, -3.42, 2.08, 2.60, 3.04, 0.01 +201602, -0.07, 0.95, -0.49, 3.27, 2.06, 0.02 +201603, 6.96, 1.10, 1.15, 0.82, -0.06, 0.02 +201604, 0.92, 1.18, 3.26, -2.88, 1.97, 0.01 +201605, 1.78, -0.72, -1.82, -1.01, -2.54, 0.01 +201606, -0.05, 0.49, -1.46, 1.19, 1.96, 0.02 +201607, 3.95, 2.64, -1.09, 1.32, -1.24, 0.02 +201608, 0.50, 1.73, 3.37, -1.31, -0.35, 0.02 +201609, 0.25, 1.76, -1.47, -2.31, -0.06, 0.02 +201610, -2.02, -4.04, 4.14, 1.19, 0.21, 0.02 +201611, 4.86, 6.80, 8.32, -0.06, 3.78, 0.01 +201612, 1.81, 0.42, 3.60, 0.98, -0.29, 0.03 +201701, 1.94, -1.26, -2.77, -0.01, -0.94, 0.04 +201702, 3.57, -2.14, -1.82, 0.79, -1.74, 0.04 +201703, 0.17, 0.78, -3.17, 0.66, -1.04, 0.03 +201704, 1.09, 0.48, -1.87, 1.99, -1.58, 0.05 +201705, 1.06, -3.07, -3.81, 1.21, -1.93, 0.06 +201706, 0.78, 2.49, 1.35, -1.99, -0.05, 0.06 +201707, 1.87, -1.57, -0.26, -0.58, -0.15, 0.07 +201708, 0.16, -1.82, -2.22, 0.24, -2.43, 0.09 +201709, 2.51, 4.80, 3.02, -1.35, 1.62, 0.09 +201710, 2.25, -1.94, -0.08, 0.96, -3.33, 0.09 +201711, 3.12, -0.43, -0.04, 3.12, 0.01, 0.08 +201712, 1.06, -1.04, 0.11, 0.68, 1.65, 0.09 +201801, 5.58, -3.11, -1.55, -0.41, -0.89, 0.11 +201802, -3.65, 0.34, -1.09, 0.53, -2.25, 0.11 +201803, -2.35, 3.50, 0.00, -0.60, -0.01, 0.12 +201804, 0.29, 0.93, 0.56, -2.36, 1.18, 0.14 +201805, 2.65, 4.75, -3.21, -2.04, -1.43, 0.14 +201806, 0.48, 0.88, -2.40, 0.73, 0.34, 0.14 +201807, 3.19, -1.95, 0.47, 1.55, 0.40, 0.16 +201808, 3.44, 0.64, -4.13, -0.26, -2.47, 0.16 +201809, 0.06, -2.52, -1.32, 0.60, 1.26, 0.15 +201810, -7.68, -4.53, 3.47, 0.82, 3.42, 0.19 +201811, 1.69, -0.84, 0.27, -0.63, 0.33, 0.18 +201812, -9.55, -3.05, -1.49, -0.14, 0.15, 0.19 +201901, 8.41, 3.08, -0.60, -0.70, -1.36, 0.21 +201902, 3.40, 1.78, -2.83, 0.23, -1.47, 0.18 +201903, 1.10, -3.58, -4.04, 0.87, -1.03, 0.19 +201904, 3.96, -1.15, 1.96, 1.72, -2.18, 0.21 +201905, -6.94, -1.51, -2.35, -0.43, 1.78, 0.21 +201906, 6.93, 0.36, -1.08, 0.94, -0.38, 0.18 +201907, 1.19, -1.89, 0.17, -0.04, 0.34, 0.19 +201908, -2.58, -3.30, -5.05, 0.41, -0.88, 0.16 +201909, 1.43, 0.27, 6.81, 1.98, 3.50, 0.18 +201910, 2.06, 0.22, -2.04, 0.39, -0.99, 0.15 +201911, 3.87, 0.52, -1.80, -1.52, -1.24, 0.12 +201912, 2.77, 0.96, 1.93, 0.19, 1.29, 0.14 +202001, -0.11, -4.40, -6.37, -1.24, -2.34, 0.13 +202002, -8.13, -0.05, -4.05, -1.67, -2.49, 0.12 +202003, -13.39, -8.42, -14.17, -1.33, 1.21, 0.12 +202004, 13.65, 2.81, -1.18, 2.65, -1.03, 0.00 +202005, 5.58, 1.92, -4.92, 0.66, -3.28, 0.01 +202006, 2.45, 1.93, -2.19, -0.02, 0.34, 0.01 +202007, 5.77, -3.11, -1.27, 0.61, 1.07, 0.01 + + Annual Factors: January-December +,Mkt-RF,SMB,HML,RMW,CMA,RF + 1964, 12.54, 0.33, 9.86, -2.99, 6.80, 3.54 + 1965, 10.52, 24.41, 7.36, -0.79, -3.17, 3.93 + 1966, -13.51, 2.15, -0.68, -0.12, -0.34, 4.76 + 1967, 24.49, 50.40, -8.58, 7.53, -15.04, 4.21 + 1968, 8.79, 26.32, 18.49, -12.84, 16.25, 5.21 + 1969, -17.54, -14.06, -9.81, 11.77, -4.14, 6.58 + 1970, -6.49, -12.36, 22.34, -2.65, 24.45, 6.52 + 1971, 11.78, 5.58, -11.29, 10.16, -5.86, 4.39 + 1972, 13.05, -11.43, 1.75, 7.99, -3.05, 3.84 + 1973, -26.19, -20.00, 18.08, -9.03, 6.66, 6.93 + 1974, -35.75, 0.67, 9.67, -4.04, 22.88, 8.00 + 1975, 32.44, 19.05, 9.49, 0.53, 0.48, 5.80 + 1976, 21.91, 19.90, 24.50, -6.67, 7.47, 5.08 + 1977, -8.26, 24.64, 7.51, 2.16, -0.39, 5.12 + 1978, 1.03, 13.68, 0.37, 5.07, 4.15, 7.18 + 1979, 13.09, 21.05, -2.12, -2.80, -0.99, 10.38 + 1980, 22.13, 4.91, -25.06, 14.08, -11.32, 11.24 + 1981, -18.13, 7.48, 25.01, -1.60, 10.36, 14.71 + 1982, 10.66, 7.42, 13.59, -4.46, 18.01, 10.54 + 1983, 13.74, 11.84, 20.85, 0.67, 16.43, 8.80 + 1984, -6.05, -8.45, 19.63, 14.88, 3.84, 9.85 + 1985, 24.91, -0.62, 1.35, 11.89, -2.49, 7.72 + 1986, 10.12, -10.37, 9.58, 7.13, 9.84, 6.16 + 1987, -3.87, -11.28, -1.64, 6.20, 6.90, 5.47 + 1988, 11.55, 6.46, 14.77, 3.08, 9.74, 6.35 + 1989, 20.49, -13.02, -4.29, 2.74, 8.21, 8.37 + 1990, -13.95, -14.30, -9.72, 7.44, 0.60, 7.81 + 1991, 29.18, 15.77, -14.41, 12.06, -14.91, 5.60 + 1992, 6.23, 9.07, 24.28, 7.54, 6.96, 3.51 + 1993, 8.21, 6.01, 18.91, -8.55, 11.99, 2.90 + 1994, -4.10, -2.51, -0.69, 6.35, 3.90, 3.90 + 1995, 31.22, -8.17, 5.30, 1.97, 2.81, 5.60 + 1996, 15.96, -2.80, 6.16, 15.53, 0.52, 5.21 + 1997, 25.96, -6.17, 17.46, 10.51, 5.19, 5.26 + 1998, 19.46, -28.67, -8.89, 0.63, -4.60, 4.86 + 1999, 20.57, 8.56, -31.77, -27.89, -8.44, 4.68 + 2000, -17.60, 4.21, 39.69, 26.67, 32.74, 5.89 + 2001, -15.20, 23.68, 19.52, 19.84, 11.79, 3.83 + 2002, -22.76, 5.82, 7.47, 20.39, 14.47, 1.65 + 2003, 30.75, 24.49, 5.40, -20.46, 17.26, 1.02 + 2004, 10.72, 7.34, 8.08, 8.34, -7.86, 1.20 + 2005, 3.09, -0.75, 8.33, 1.71, -5.03, 2.98 + 2006, 10.60, 1.53, 14.11, 2.08, 8.19, 4.80 + 2007, 1.04, -7.94, -14.65, 4.37, -7.80, 4.66 + 2008, -38.34, 3.34, 0.82, 15.06, 4.16, 1.60 + 2009, 28.26, 7.99, -9.17, 2.78, -2.67, 0.10 + 2010, 17.37, 13.28, -5.31, -1.48, 9.93, 0.12 + 2011, 0.44, -5.78, -8.35, 12.60, -0.88, 0.04 + 2012, 16.28, -0.08, 9.68, -4.71, 9.41, 0.06 + 2013, 35.20, 7.68, 1.33, -4.44, 1.31, 0.02 + 2014, 11.70, -8.10, -1.74, 1.04, -1.70, 0.02 + 2015, 0.07, -5.85, -9.65, 0.89, -8.49, 0.02 + 2016, 13.30, 9.20, 23.02, 4.82, 9.77, 0.20 + 2017, 21.50, -5.84, -13.98, 6.81, -11.80, 0.80 + 2018, -6.93, -5.35, -9.16, -1.37, 0.21, 1.81 + 2019, 28.28, -6.22, -11.67, 4.99, -2.81, 2.14 diff --git a/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV b/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV new file mode 100644 index 0000000..de66995 --- /dev/null +++ b/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV @@ -0,0 +1,14374 @@ +This file was created by CMPT_ME_BEME_OP_INV_RETS_DAILY using the 202007 CRSP database. +The 1-month TBill return is from Ibbotson and Associates, Inc. + +,Mkt-RF,SMB,HML,RMW,CMA,RF +19630701, -0.67, 0.00, -0.32, -0.01, 0.15, 0.012 +19630702, 0.79, -0.27, 0.27, -0.07, -0.19, 0.012 +19630703, 0.63, -0.17, -0.09, 0.17, -0.33, 0.012 +19630705, 0.40, 0.08, -0.28, 0.08, -0.33, 0.012 +19630708, -0.63, 0.04, -0.18, -0.29, 0.13, 0.012 +19630709, 0.45, 0.00, 0.10, 0.14, -0.04, 0.012 +19630710, -0.18, 0.21, 0.01, 0.06, -0.07, 0.012 +19630711, -0.16, 0.14, -0.30, -0.06, 0.05, 0.012 +19630712, -0.12, 0.02, -0.11, 0.12, 0.04, 0.012 +19630715, -0.62, 0.07, -0.03, 0.17, -0.06, 0.012 +19630716, -0.07, -0.08, 0.14, -0.06, -0.07, 0.012 +19630717, -0.33, -0.07, 0.15, 0.04, 0.10, 0.012 +19630718, -0.54, 0.27, 0.05, -0.03, 0.32, 0.012 +19630719, -0.23, -0.06, -0.05, 0.16, -0.31, 0.012 +19630722, -0.70, -0.10, -0.31, -0.01, -0.10, 0.012 +19630723, 0.01, -0.10, -0.20, 0.04, -0.08, 0.012 +19630724, 0.46, -0.10, -0.01, -0.11, -0.31, 0.012 +19630725, -0.04, 0.14, 0.26, -0.16, 0.18, 0.012 +19630726, 0.35, -0.14, 0.07, 0.04, -0.08, 0.012 +19630729, 0.11, -0.17, 0.26, 0.07, -0.11, 0.012 +19630730, 0.84, -0.29, -0.27, 0.53, -0.40, 0.012 +19630731, -0.13, 0.11, -0.01, -0.15, 0.34, 0.012 +19630801, -0.08, -0.12, -0.12, 0.17, -0.02, 0.011 +19630802, 0.29, -0.14, 0.15, -0.05, 0.02, 0.011 +19630805, 0.57, -0.42, 0.16, 0.03, 0.11, 0.011 +19630806, 0.60, -0.34, 0.25, 0.01, -0.03, 0.011 +19630807, -0.19, 0.04, 0.17, -0.19, 0.14, 0.011 +19630808, 0.14, -0.01, -0.25, 0.29, -0.33, 0.011 +19630809, 0.60, -0.09, -0.06, 0.22, -0.17, 0.011 +19630812, 0.24, 0.20, 0.41, -0.13, 0.32, 0.011 +19630813, 0.27, -0.26, -0.03, 0.05, -0.04, 0.011 +19630814, 0.30, -0.08, 0.21, -0.19, 0.05, 0.011 +19630815, 0.43, -0.29, 0.37, -0.19, 0.00, 0.011 +19630816, 0.15, 0.07, 0.10, 0.04, -0.18, 0.011 +19630819, -0.05, -0.01, -0.10, -0.06, -0.06, 0.011 +19630820, -0.05, 0.02, -0.25, 0.02, 0.09, 0.011 +19630821, -0.11, 0.34, -0.12, -0.07, 0.09, 0.011 +19630822, 0.39, 0.07, 0.09, -0.09, -0.31, 0.011 +19630823, 0.34, 0.00, 0.10, 0.06, -0.03, 0.011 +19630826, 0.18, -0.12, 0.14, 0.11, -0.20, 0.011 +19630827, -0.44, 0.10, -0.05, -0.01, 0.14, 0.011 +19630828, 0.77, 0.08, 0.44, 0.12, 0.21, 0.011 +19630829, 0.18, 0.11, 0.02, 0.10, 0.11, 0.011 +19630830, 0.44, 0.11, -0.09, 0.13, -0.29, 0.011 +19630903, 0.23, 0.07, 0.06, 0.02, 0.20, 0.014 +19630904, -0.01, 0.06, -0.06, -0.39, -0.05, 0.014 +19630905, 0.47, -0.10, 0.11, -0.09, 0.03, 0.014 +19630906, -0.27, -0.17, -0.01, 0.13, -0.04, 0.014 +19630909, -0.36, -0.25, -0.01, 0.05, 0.13, 0.014 +19630910, 0.52, -0.17, 0.42, 0.06, -0.24, 0.014 +19630911, 0.24, -0.20, 0.20, -0.07, 0.32, 0.014 +19630912, -0.09, 0.11, -0.11, -0.20, -0.13, 0.014 +19630913, 0.02, 0.35, -0.15, -0.31, 0.12, 0.014 +19630916, -0.16, 0.15, 0.19, -0.08, -0.38, 0.014 +19630917, 0.03, -0.20, 0.17, 0.05, 0.08, 0.014 +19630918, -0.43, 0.12, -0.24, -0.15, -0.06, 0.014 +19630919, 0.52, -0.39, 0.17, 0.15, -0.02, 0.014 +19630920, 0.04, -0.07, -0.01, 0.09, -0.34, 0.014 +19630923, -0.50, -0.09, -0.21, 0.09, 0.15, 0.014 +19630924, 0.35, -0.33, 0.12, -0.07, 0.07, 0.014 +19630925, -0.58, -0.25, -0.08, -0.41, 0.15, 0.014 +19630926, -0.81, 0.47, -0.35, -0.06, 0.29, 0.014 +19630927, -0.18, 0.28, -0.22, 0.20, -0.07, 0.014 +19630930, -0.60, 0.20, 0.08, 0.21, -0.06, 0.014 +19631001, 0.65, -0.21, 0.25, -0.05, -0.13, 0.013 +19631002, 0.10, -0.13, 0.00, 0.02, -0.12, 0.013 +19631003, 0.67, -0.29, 0.85, -0.35, 0.17, 0.013 +19631004, 0.00, 0.03, 0.06, 0.00, 0.16, 0.013 +19631007, -0.23, 0.18, -0.02, -0.19, -0.03, 0.013 +19631008, -0.14, 0.19, 0.25, -0.03, -0.21, 0.013 +19631009, -0.61, 0.15, -0.05, -0.01, 0.20, 0.013 +19631010, 0.08, -0.03, 0.15, 0.07, -0.09, 0.013 +19631011, 0.13, 0.39, 0.08, 0.01, -0.02, 0.013 +19631014, 0.05, -0.01, 0.07, 0.10, -0.21, 0.013 +19631015, 0.17, -0.29, 0.14, 0.01, 0.02, 0.013 +19631016, 0.89, -0.34, 0.27, 0.18, -0.41, 0.013 +19631017, 0.14, 0.10, -0.25, 0.24, -0.01, 0.013 +19631018, 0.09, 0.11, -0.24, 0.19, -0.06, 0.013 +19631021, 0.03, -0.22, -0.30, 0.55, 0.08, 0.013 +19631022, -0.54, 0.34, -0.46, 0.27, -0.33, 0.013 +19631023, 0.03, -0.12, -0.05, 0.10, -0.10, 0.013 +19631024, 0.35, -0.07, 0.47, 0.07, -0.12, 0.013 +19631025, 0.85, -0.43, -0.89, 0.63, -0.95, 0.013 +19631028, 0.41, -0.78, -0.28, 0.69, -0.41, 0.013 +19631029, -0.04, -0.29, -0.07, 0.26, 0.29, 0.013 +19631030, -0.79, 0.43, -0.06, -0.22, 0.50, 0.013 +19631031, 0.21, -0.04, 0.11, 0.12, -0.32, 0.013 +19631101, -0.18, 0.26, 0.19, -0.22, 0.22, 0.015 +19631104, -0.43, 0.08, 0.36, -0.22, 0.45, 0.015 +19631106, -0.77, 0.10, 0.25, -0.12, 0.51, 0.015 +19631107, 0.33, 0.05, -0.04, -0.07, -0.23, 0.015 +19631108, 0.54, 0.06, 0.12, 0.11, -0.16, 0.015 +19631111, 0.20, 0.22, 0.15, 0.13, -0.08, 0.015 +19631112, -0.37, 0.25, -0.29, 0.20, -0.18, 0.015 +19631113, 0.05, 0.05, -0.08, 0.05, -0.12, 0.015 +19631114, -0.41, 0.12, -0.03, -0.11, 0.35, 0.015 +19631115, -0.75, 0.35, 0.00, -0.15, 0.61, 0.015 +19631118, -0.74, 0.08, -0.23, 0.25, -0.04, 0.015 +19631119, 0.10, -0.31, 0.35, -0.17, 0.07, 0.015 +19631120, 0.76, -0.96, -0.35, 0.26, 0.53, 0.015 +19631121, -1.25, -0.11, 0.03, -0.44, 0.39, 0.015 +19631122, -2.90, -0.58, 0.05, 0.62, 0.50, 0.015 +19631126, 3.94, -1.22, 0.87, -0.37, -0.36, 0.015 +19631127, -0.16, 0.35, 0.13, -0.02, -0.07, 0.015 +19631129, 1.34, 0.33, 0.31, -0.23, -0.18, 0.015 +19631202, 0.53, -0.31, -0.21, 0.50, -0.35, 0.014 +19631203, -0.05, -0.07, -0.20, 0.12, 0.20, 0.014 +19631204, 0.25, 0.11, 0.12, -0.13, 0.16, 0.014 +19631205, 0.57, -0.70, 0.12, -0.24, 0.35, 0.014 +19631206, -0.32, 0.19, 0.08, -0.12, 0.01, 0.014 +19631209, -0.11, 0.02, -0.16, 0.12, -0.35, 0.014 +19631210, 0.06, -0.13, 0.20, 0.19, 0.18, 0.014 +19631211, -0.14, 0.05, 0.09, -0.27, -0.16, 0.014 +19631212, -0.03, -0.16, -0.07, 0.06, 0.37, 0.014 +19631213, 0.16, -0.06, 0.11, -0.13, -0.02, 0.014 +19631216, 0.25, -0.48, -0.03, 0.03, -0.20, 0.014 +19631217, 0.44, -0.64, 0.06, 0.20, -0.70, 0.014 +19631218, -0.18, -0.14, 0.57, -0.43, 0.61, 0.014 +19631219, -0.33, -0.08, -0.44, -0.02, 0.25, 0.014 +19631220, -0.20, -0.23, 0.11, -0.06, 0.44, 0.014 +19631223, -0.60, 0.25, -0.07, -0.46, 0.09, 0.014 +19631224, 0.23, 0.18, -0.15, 0.27, -0.59, 0.014 +19631226, 0.47, 0.13, 0.08, -0.07, 0.03, 0.014 +19631227, 0.16, 0.09, -0.14, -0.11, -0.08, 0.014 +19631230, 0.10, -0.31, -0.17, 0.47, -0.40, 0.014 +19631231, 0.56, 0.44, -0.11, 0.20, -0.15, 0.014 +19640102, 0.60, 0.62, 0.59, -0.36, 0.04, 0.013 +19640103, 0.17, 0.22, 0.38, -0.31, 0.45, 0.013 +19640106, 0.23, 0.11, 0.02, -0.23, 0.40, 0.013 +19640107, 0.04, 0.21, 0.76, -0.45, 0.93, 0.013 +19640108, 0.34, 0.03, -0.15, 0.23, -0.02, 0.013 +19640109, 0.30, -0.16, -0.32, 0.46, -0.85, 0.013 +19640110, -0.04, 0.02, -0.12, 0.16, -0.01, 0.013 +19640113, -0.10, 0.12, 0.45, -0.22, 0.37, 0.013 +19640114, 0.15, -0.21, 0.64, -0.20, 0.42, 0.013 +19640115, 0.24, -0.28, -0.11, -0.05, -0.34, 0.013 +19640116, -0.10, 0.22, -0.32, -0.22, 0.05, 0.013 +19640117, -0.02, 0.29, -0.03, 0.19, 0.02, 0.013 +19640120, -0.21, 0.15, -0.54, 0.42, -0.27, 0.013 +19640121, 0.26, -0.43, 0.07, 0.13, 0.24, 0.013 +19640122, 0.48, -0.22, 0.41, -0.31, -0.03, 0.013 +19640123, 0.09, 0.00, 0.16, 0.46, 0.00, 0.013 +19640124, 0.04, 0.32, 0.18, -0.06, -0.22, 0.013 +19640127, -0.11, -0.45, 0.06, -0.36, 0.41, 0.013 +19640128, -0.01, -0.22, 0.18, -0.16, 0.21, 0.013 +19640129, -0.58, -0.01, -0.15, -0.18, 0.02, 0.013 +19640130, 0.04, 0.07, -0.30, 0.88, -0.13, 0.013 +19640131, 0.38, -0.33, -0.19, 0.35, -0.21, 0.013 +19640203, 0.00, 0.03, 0.06, -0.33, 0.19, 0.014 +19640204, -0.13, -0.29, -0.20, -0.14, 0.30, 0.014 +19640205, -0.08, 0.07, 0.29, 0.02, 0.39, 0.014 +19640206, 0.24, 0.04, -0.23, 0.06, -0.04, 0.014 +19640207, 0.37, -0.03, 0.12, 0.12, 0.34, 0.014 +19640210, -0.13, 0.14, -0.22, 0.14, -0.14, 0.014 +19640211, 0.33, -0.05, -0.14, 0.22, 0.37, 0.014 +19640212, 0.30, 0.04, 0.18, -0.01, -0.12, 0.014 +19640213, 0.08, 0.00, -0.06, 0.15, -0.33, 0.014 +19640214, -0.04, 0.05, 0.23, -0.23, -0.21, 0.014 +19640217, 0.03, 0.19, 0.27, 0.13, 0.24, 0.014 +19640218, 0.01, -0.23, 0.53, 0.02, 0.12, 0.014 +19640219, 0.11, -0.01, 0.05, 0.19, -0.23, 0.014 +19640220, 0.09, 0.01, 0.70, -0.39, 0.19, 0.014 +19640224, 0.10, -0.02, 0.46, -0.01, 0.00, 0.014 +19640225, 0.04, -0.07, 0.17, 0.13, -0.19, 0.014 +19640226, 0.28, 0.19, 0.22, 0.15, -0.02, 0.014 +19640227, -0.27, 0.22, -0.08, -0.09, 0.14, 0.014 +19640228, 0.21, 0.02, 0.42, -0.07, -0.17, 0.014 +19640302, 0.22, -0.06, 0.32, -0.21, 0.19, 0.015 +19640303, 0.26, -0.35, -0.26, 0.06, 0.26, 0.015 +19640304, -0.20, 0.02, -0.11, -0.46, 0.06, 0.015 +19640305, 0.00, 0.18, 0.22, 0.05, -0.17, 0.015 +19640306, 0.32, 0.33, 0.01, 0.03, 0.06, 0.015 +19640309, 0.01, 0.02, 0.42, -0.02, 0.00, 0.015 +19640310, 0.28, -0.37, 0.25, 0.20, 0.11, 0.015 +19640311, 0.40, -0.25, 0.19, -0.09, 0.26, 0.015 +19640312, 0.18, -0.05, 0.17, -0.12, -0.04, 0.015 +19640313, 0.09, 0.11, 0.10, -0.24, 0.27, 0.015 +19640316, 0.03, 0.05, -0.22, -0.06, -0.12, 0.015 +19640317, 0.19, 0.06, 0.25, 0.01, -0.01, 0.015 +19640318, 0.10, 0.07, 0.50, -0.39, 0.34, 0.015 +19640319, -0.09, 0.09, 0.02, 0.10, 0.04, 0.015 +19640320, -0.42, 0.31, 0.10, -0.18, 0.21, 0.015 +19640323, 0.01, 0.35, -0.07, 0.13, 0.02, 0.015 +19640324, -0.18, 0.14, 0.30, -0.12, 0.30, 0.015 +19640325, 0.24, 0.26, 0.60, -0.31, 0.16, 0.015 +19640326, 0.26, 0.19, 0.66, -0.20, 0.33, 0.015 +19640330, -0.10, 0.05, 0.06, -0.11, 0.46, 0.015 +19640331, -0.19, 0.19, -0.29, -0.03, 0.09, 0.015 +19640401, 0.34, 0.25, 0.65, -0.05, 0.04, 0.013 +19640402, 0.57, -0.03, 0.29, 0.27, 0.33, 0.013 +19640403, 0.22, 0.00, -0.41, 0.13, -0.09, 0.013 +19640406, 0.07, 0.11, 0.27, -0.43, 0.02, 0.013 +19640407, -0.34, 0.22, -0.44, -0.13, -0.27, 0.013 +19640408, 0.01, 0.39, 0.17, 0.05, 0.00, 0.013 +19640409, 0.00, 0.12, -0.16, 0.15, 0.04, 0.013 +19640410, 0.19, 0.05, 0.10, -0.13, -0.16, 0.013 +19640413, -0.08, -0.07, -0.21, -0.05, 0.23, 0.013 +19640414, 0.19, -0.20, -0.13, 0.39, -0.18, 0.013 +19640415, 0.11, -0.17, -0.56, -0.20, 0.24, 0.013 +19640416, 0.08, -0.15, -0.07, -0.20, -0.01, 0.013 +19640417, 0.38, -0.21, 0.27, 0.20, 0.00, 0.013 +19640420, -0.07, -0.21, -0.17, 0.03, -0.04, 0.013 +19640421, -0.01, -0.21, -0.10, -0.01, -0.43, 0.013 +19640422, -0.05, -0.20, 0.21, -0.35, -0.21, 0.013 +19640423, -0.16, -0.40, -0.03, -0.40, 0.05, 0.013 +19640424, -0.77, -0.17, -0.41, 0.24, -0.21, 0.013 +19640427, -0.54, -0.03, 0.22, -0.30, 0.07, 0.013 +19640428, 0.64, -0.15, 0.77, -0.26, -0.08, 0.013 +19640429, -0.40, -0.21, -0.70, -0.13, -0.46, 0.013 +19640430, -0.25, -0.25, -0.04, -0.13, 0.04, 0.013 +19640501, 0.78, -0.16, 0.32, 0.07, -0.34, 0.013 +19640504, 0.45, 0.11, 0.22, -0.18, -0.07, 0.013 +19640505, 0.46, -0.49, 0.12, 0.06, -0.56, 0.013 +19640506, 0.26, -0.20, 0.19, -0.04, 0.34, 0.013 +19640507, 0.11, -0.06, 0.73, -0.15, 0.67, 0.013 +19640508, -0.18, -0.01, 0.11, -0.12, 0.06, 0.013 +19640511, -0.03, 0.06, 0.01, -0.06, -0.08, 0.013 +19640512, 0.32, -0.18, 0.04, 0.16, -0.02, 0.013 +19640513, -0.25, -0.01, -0.17, -0.02, -0.08, 0.013 +19640514, -0.11, 0.27, -0.02, 0.03, 0.01, 0.013 +19640515, 0.15, -0.25, -0.06, 0.09, 0.12, 0.013 +19640518, -0.33, 0.00, -0.21, -0.04, -0.06, 0.013 +19640519, -0.44, 0.36, -0.15, 0.11, 0.44, 0.013 +19640520, 0.42, -0.18, 0.43, 0.07, -0.17, 0.013 +19640521, 0.07, -0.07, -0.20, 0.24, -0.28, 0.013 +19640522, 0.05, 0.22, 0.08, 0.09, -0.06, 0.013 +19640525, -0.12, -0.06, 0.07, 0.12, 0.01, 0.013 +19640526, -0.17, 0.12, 0.15, -0.26, -0.01, 0.013 +19640527, -0.15, -0.28, 0.23, -0.32, 0.21, 0.013 +19640528, 0.16, 0.13, 0.01, -0.10, 0.09, 0.013 +19640601, -0.35, 0.00, 0.04, -0.20, 0.09, 0.014 +19640602, -0.52, -0.13, -0.07, -0.06, 0.07, 0.014 +19640603, -0.26, -0.11, 0.19, -0.25, 0.38, 0.014 +19640604, -1.03, -0.05, -0.33, 0.11, 0.16, 0.014 +19640605, 0.42, -0.11, 0.16, 0.07, 0.02, 0.014 +19640608, -0.46, 0.05, -0.16, 0.05, -0.07, 0.014 +19640609, 0.56, -0.20, 0.46, 0.28, 0.09, 0.014 +19640610, 0.37, -0.02, -0.20, 0.25, -0.08, 0.014 +19640611, 0.30, -0.03, -0.36, 0.09, -0.47, 0.014 +19640612, -0.23, 0.23, 0.10, 0.18, -0.06, 0.014 +19640615, 0.45, 0.04, 0.05, 0.04, -0.25, 0.014 +19640616, 0.51, 0.01, 0.35, 0.09, -0.04, 0.014 +19640617, 0.51, -0.10, 0.12, -0.63, -0.10, 0.014 +19640618, 0.00, 0.03, 0.09, -0.26, 0.13, 0.014 +19640619, 0.10, 0.02, 0.11, 0.03, 0.00, 0.014 +19640622, 0.25, -0.17, 0.36, -0.39, -0.08, 0.014 +19640623, -0.38, 0.42, -0.24, 0.10, 0.23, 0.014 +19640624, 0.35, 0.03, 0.23, -0.07, 0.07, 0.014 +19640625, 0.20, 0.02, -0.02, -0.10, 0.30, 0.014 +19640626, 0.26, 0.25, 0.15, -0.23, -0.04, 0.014 +19640629, 0.18, -0.01, -0.17, 0.12, 0.10, 0.014 +19640630, 0.03, -0.08, -0.16, 0.35, -0.34, 0.014 +19640701, 0.62, -0.15, 0.38, -0.26, -0.11, 0.013 +19640702, 0.39, 0.07, -0.26, 0.04, -0.28, 0.013 +19640706, 0.41, -0.11, -0.09, 0.25, -0.21, 0.013 +19640707, 0.15, -0.15, 0.10, 0.18, 0.10, 0.013 +19640708, 0.02, 0.03, 0.11, -0.01, 0.15, 0.013 +19640709, 0.13, 0.30, -0.11, -0.23, 0.32, 0.013 +19640710, 0.19, 0.04, 0.43, 0.15, 0.24, 0.013 +19640713, -0.07, 0.08, 0.04, 0.25, -0.13, 0.013 +19640714, -0.29, 0.23, 0.09, -0.33, 0.29, 0.013 +19640715, 0.37, -0.01, -0.35, 0.31, -0.09, 0.013 +19640716, 0.31, -0.19, 0.18, -0.24, 0.11, 0.013 +19640717, 0.44, -0.16, -0.27, 0.28, 0.02, 0.013 +19640720, -0.31, 0.17, 0.09, -0.16, 0.11, 0.013 +19640721, -0.19, 0.12, -0.13, 0.04, -0.09, 0.013 +19640722, 0.02, 0.01, 0.01, 0.11, 0.31, 0.013 +19640723, -0.03, 0.14, 0.12, 0.08, 0.09, 0.013 +19640724, -0.03, 0.11, -0.05, -0.01, 0.16, 0.013 +19640727, -0.48, -0.07, 0.28, -0.09, 0.22, 0.013 +19640728, -0.24, 0.15, 0.05, 0.14, 0.06, 0.013 +19640729, 0.13, -0.08, -0.02, 0.23, -0.07, 0.013 +19640730, 0.13, -0.13, -0.01, -0.31, 0.09, 0.013 +19640731, 0.07, 0.10, 0.10, -0.27, 0.52, 0.013 +19640803, -0.24, -0.27, 0.23, -0.03, 0.06, 0.013 +19640804, -1.13, -0.14, -0.05, -0.23, 0.54, 0.013 +19640805, 0.16, -0.40, 0.05, -0.05, -0.22, 0.013 +19640806, -0.87, 0.41, -0.09, 0.21, 0.11, 0.013 +19640807, 0.56, -0.09, -0.14, -0.01, -0.04, 0.013 +19640810, 0.02, 0.03, -0.20, -0.03, 0.01, 0.013 +19640811, -0.01, 0.13, 0.17, -0.26, -0.20, 0.013 +19640812, 0.50, 0.15, -0.05, 0.08, -0.32, 0.013 +19640813, 0.28, 0.08, 0.14, -0.01, -0.19, 0.013 +19640814, -0.10, 0.19, 0.04, -0.05, 0.28, 0.013 +19640817, -0.01, -0.07, -0.20, 0.17, -0.13, 0.013 +19640818, 0.06, -0.08, 0.34, 0.05, 0.20, 0.013 +19640819, -0.09, 0.05, 0.04, 0.00, 0.16, 0.013 +19640820, -0.44, 0.00, -0.26, -0.10, 0.20, 0.013 +19640821, 0.16, 0.10, -0.08, 0.20, -0.01, 0.013 +19640824, -0.20, 0.14, 0.51, -0.29, -0.01, 0.013 +19640825, -0.50, 0.10, -0.33, 0.07, 0.08, 0.013 +19640826, -0.18, 0.03, -0.02, -0.12, -0.03, 0.013 +19640827, 0.48, -0.26, 0.03, 0.28, 0.00, 0.013 +19640828, 0.32, -0.06, -0.13, 0.17, -0.25, 0.013 +19640831, -0.21, 0.28, -0.07, 0.01, 0.12, 0.013 +19640901, 0.46, -0.14, 0.53, 0.09, 0.03, 0.013 +19640902, 0.20, 0.23, 0.18, -0.23, -0.21, 0.013 +19640903, 0.25, -0.18, -0.22, 0.36, 0.07, 0.013 +19640904, 0.21, -0.01, 0.03, -0.11, 0.08, 0.013 +19640908, 0.12, 0.02, -0.01, -0.10, 0.06, 0.013 +19640909, 0.19, -0.10, 0.33, 0.04, 0.11, 0.013 +19640910, 0.08, -0.06, 0.23, 0.19, 0.15, 0.013 +19640911, 0.33, -0.20, 0.34, -0.09, 0.46, 0.013 +19640914, -0.24, 0.04, 0.39, -0.10, 0.26, 0.013 +19640915, -0.24, 0.09, -0.09, 0.26, -0.27, 0.013 +19640916, 0.27, -0.05, 0.22, 0.12, -0.40, 0.013 +19640917, 0.59, -0.26, 0.21, 0.04, 0.02, 0.013 +19640918, -0.34, 0.14, -0.23, 0.00, 0.19, 0.013 +19640921, 0.40, -0.09, 0.13, -0.42, -0.12, 0.013 +19640922, 0.04, 0.09, -0.22, -0.17, -0.04, 0.013 +19640923, 0.01, 0.08, 0.21, -0.15, 0.05, 0.013 +19640924, 0.10, -0.13, 0.03, -0.23, -0.02, 0.013 +19640925, 0.20, 0.08, -0.36, 0.04, -0.25, 0.013 +19640928, 0.07, -0.04, -0.08, -0.25, -0.03, 0.013 +19640929, -0.01, -0.03, -0.09, 0.14, 0.15, 0.013 +19640930, -0.03, 0.18, -0.09, 0.13, 0.28, 0.013 +19641001, -0.14, 0.09, 0.11, 0.21, -0.15, 0.013 +19641002, 0.24, -0.19, 0.16, -0.12, -0.12, 0.013 +19641005, 0.41, -0.18, 0.38, -0.12, 0.20, 0.013 +19641006, 0.02, -0.04, 0.16, 0.20, 0.38, 0.013 +19641007, -0.02, -0.07, 0.09, -0.03, 0.03, 0.013 +19641008, 0.24, 0.02, 0.18, 0.10, -0.40, 0.013 +19641009, 0.19, 0.09, 0.09, -0.20, -0.06, 0.013 +19641012, 0.06, 0.26, -0.07, 0.13, 0.12, 0.013 +19641013, -0.25, 0.13, 0.35, -0.17, 0.35, 0.013 +19641014, -0.17, 0.03, 0.14, -0.35, 0.24, 0.013 +19641015, -0.70, -0.45, -0.17, 0.27, 0.14, 0.013 +19641016, 0.70, 0.36, 0.06, -0.35, 0.11, 0.013 +19641019, 0.13, 0.33, 0.16, -0.18, 0.25, 0.013 +19641020, 0.25, 0.06, 0.29, 0.22, -0.06, 0.013 +19641021, -0.06, 0.01, 0.00, 0.09, 0.11, 0.013 +19641022, -0.16, 0.17, 0.04, 0.12, -0.10, 0.013 +19641023, 0.20, -0.04, 0.01, 0.14, -0.21, 0.013 +19641026, -0.17, 0.29, 0.23, -0.47, 0.25, 0.013 +19641027, -0.04, 0.02, -0.11, 0.16, -0.18, 0.013 +19641028, -0.35, -0.14, -0.53, 0.10, -0.07, 0.013 +19641029, 0.05, 0.03, -0.16, 0.09, -0.16, 0.013 +19641030, 0.18, 0.13, -0.26, 0.09, -0.18, 0.013 +19641102, 0.43, -0.13, -0.28, 0.42, -0.17, 0.015 +19641104, -0.04, -0.09, 0.21, 0.08, 0.08, 0.015 +19641105, 0.00, -0.20, -0.52, 0.07, -0.37, 0.015 +19641106, 0.19, -0.24, -0.13, 0.01, -0.36, 0.015 +19641109, -0.05, -0.13, -0.49, 0.43, -0.04, 0.015 +19641110, -0.41, 0.01, -0.20, -0.09, 0.16, 0.015 +19641111, 0.26, -0.01, 0.53, -0.10, -0.16, 0.015 +19641112, 0.18, 0.24, 0.24, -0.29, 0.18, 0.015 +19641113, 0.10, 0.20, -0.27, -0.08, 0.01, 0.015 +19641116, 0.43, -0.18, -0.53, 0.13, -0.23, 0.015 +19641117, 0.45, -0.35, 0.04, -0.06, 0.10, 0.015 +19641118, 0.24, -0.21, -0.02, 0.03, 0.39, 0.015 +19641119, -0.01, 0.01, -0.32, 0.26, -0.20, 0.015 +19641120, 0.10, 0.04, -0.03, -0.25, -0.27, 0.015 +19641123, -0.24, 0.18, 0.05, 0.03, -0.08, 0.015 +19641124, -0.26, 0.08, 0.03, -0.19, 0.15, 0.015 +19641125, -0.21, 0.31, -0.12, -0.05, -0.07, 0.015 +19641127, -0.31, 0.17, -0.12, 0.16, 0.14, 0.015 +19641130, -0.87, 0.04, -0.14, 0.11, 0.57, 0.015 +19641201, -1.00, 0.17, -0.20, 0.39, 0.17, 0.014 +19641202, 0.28, -0.23, 0.01, -0.10, -0.39, 0.014 +19641203, 0.39, -0.03, 0.13, -0.15, 0.05, 0.014 +19641204, 0.18, 0.01, -0.18, 0.12, -0.27, 0.014 +19641207, -0.01, -0.08, -0.18, -0.12, 0.20, 0.014 +19641208, -0.37, -0.18, -0.57, 0.20, -0.02, 0.014 +19641209, -0.67, -0.26, -0.10, 0.08, -0.32, 0.014 +19641210, -0.04, -0.11, 0.19, -0.16, 0.02, 0.014 +19641211, 0.22, 0.14, 0.03, -0.14, -0.05, 0.014 +19641214, -0.26, 0.14, -0.31, 0.25, -0.01, 0.014 +19641215, -0.35, -0.15, -0.18, 0.10, -0.19, 0.014 +19641216, 0.40, 0.08, -0.26, 0.01, -0.31, 0.014 +19641217, 0.36, 0.02, 0.26, 0.08, -0.35, 0.014 +19641218, 0.47, -0.01, -0.05, 0.17, -0.24, 0.014 +19641221, 0.07, 0.05, -0.09, 0.07, 0.19, 0.014 +19641222, -0.07, -0.06, -0.32, 0.35, -0.27, 0.014 +19641223, -0.20, 0.06, -0.22, 0.06, -0.37, 0.014 +19641224, 0.01, 0.19, 0.08, -0.21, -0.05, 0.014 +19641228, -0.11, 0.00, -0.18, -0.07, 0.22, 0.014 +19641229, -0.31, -0.12, 0.03, 0.04, 0.01, 0.014 +19641230, 0.57, -0.11, -0.26, 0.07, 0.04, 0.014 +19641231, 0.49, -0.10, -0.13, 0.03, 0.29, 0.014 +19650104, -0.45, 0.66, -0.09, -0.20, 0.33, 0.014 +19650105, 0.49, 0.42, -0.10, 0.03, 0.55, 0.014 +19650106, 0.34, 0.25, 0.44, 0.13, -0.14, 0.014 +19650107, 0.40, 0.07, 0.18, -0.05, -0.37, 0.014 +19650108, 0.17, 0.09, -0.20, 0.01, -0.40, 0.014 +19650111, 0.06, 0.14, 0.09, 0.06, 0.14, 0.014 +19650112, 0.28, 0.21, -0.09, 0.07, 0.08, 0.014 +19650113, 0.28, 0.16, -0.02, -0.34, 0.07, 0.014 +19650114, 0.00, 0.09, 0.23, -0.06, -0.14, 0.014 +19650115, 0.41, -0.14, 0.17, 0.04, 0.00, 0.014 +19650118, 0.28, -0.11, -0.22, 0.17, 0.05, 0.014 +19650119, 0.16, -0.18, 0.17, 0.06, -0.34, 0.014 +19650120, -0.03, -0.06, 0.08, 0.01, 0.09, 0.014 +19650121, -0.10, 0.12, -0.08, 0.34, 0.06, 0.014 +19650122, 0.24, 0.08, 0.11, 0.30, -0.04, 0.014 +19650125, 0.16, 0.33, 0.07, -0.05, 0.12, 0.014 +19650126, 0.10, -0.01, -0.07, 0.12, -0.03, 0.014 +19650127, 0.28, 0.05, -0.28, 0.21, -0.06, 0.014 +19650128, 0.26, -0.06, -0.13, 0.04, 0.08, 0.014 +19650129, 0.13, 0.28, -0.06, -0.08, 0.05, 0.014 +19650201, 0.03, 0.10, -0.06, -0.06, 0.32, 0.016 +19650202, 0.05, 0.01, -0.03, -0.02, -0.06, 0.016 +19650203, 0.14, 0.16, -0.16, 0.02, -0.24, 0.016 +19650204, 0.00, 0.31, -0.26, 0.53, -0.02, 0.016 +19650205, -0.25, 0.37, -0.06, 0.08, 0.00, 0.016 +19650208, -0.32, 0.09, 0.18, -0.02, 0.12, 0.016 +19650209, 0.31, 0.10, 0.07, -0.13, -0.01, 0.016 +19650210, -0.84, -0.02, -0.03, 0.21, 0.14, 0.016 +19650211, -0.99, 0.26, -0.02, 0.32, 0.13, 0.016 +19650212, 0.66, 0.31, 0.04, -0.06, -0.08, 0.016 +19650215, -0.05, 0.37, 0.32, -0.10, 0.32, 0.016 +19650216, -0.35, 0.36, 0.12, -0.10, 0.09, 0.016 +19650217, 0.14, 0.19, -0.03, -0.28, -0.43, 0.016 +19650218, 0.31, 0.30, -0.02, 0.06, -0.36, 0.016 +19650219, 0.20, 0.32, -0.11, -0.12, 0.00, 0.016 +19650223, 0.48, 0.11, 0.66, -0.16, -0.13, 0.016 +19650224, 0.63, -0.12, 0.02, -0.11, -0.25, 0.016 +19650225, 0.07, -0.05, -0.04, -0.07, -0.16, 0.016 +19650226, 0.25, 0.04, -0.44, 0.36, -0.06, 0.016 +19650301, -0.14, 0.42, 0.00, 0.27, 0.07, 0.016 +19650302, 0.18, 0.17, -0.04, -0.03, 0.31, 0.016 +19650303, -0.05, 0.30, -0.19, 0.31, 0.21, 0.016 +19650304, -0.29, 0.23, -0.14, 0.16, 0.35, 0.016 +19650305, -0.19, 0.03, 0.01, 0.05, -0.02, 0.016 +19650308, 0.04, 0.30, 0.25, -0.07, -0.26, 0.016 +19650309, -0.16, -0.16, 0.13, -0.27, -0.35, 0.016 +19650310, -0.10, 0.18, -0.16, -0.15, -0.20, 0.016 +19650311, 0.38, 0.07, -0.31, 0.26, -0.33, 0.016 +19650312, 0.30, -0.07, 0.30, 0.16, 0.26, 0.016 +19650315, 0.06, 0.05, 0.20, 0.22, -0.15, 0.016 +19650316, -0.11, 0.05, 0.21, -0.15, 0.16, 0.016 +19650317, -0.15, 0.07, 0.02, -0.17, 0.15, 0.016 +19650318, -0.26, 0.19, -0.27, 0.11, -0.22, 0.016 +19650319, -0.01, -0.05, 0.11, -0.06, -0.01, 0.016 +19650322, -0.01, 0.08, 0.25, -0.04, 0.09, 0.016 +19650323, 0.04, -0.05, 0.08, 0.02, 0.11, 0.016 +19650324, 0.18, 0.04, 0.46, -0.23, 0.09, 0.016 +19650325, -0.29, 0.17, 0.11, 0.05, 0.26, 0.016 +19650326, -0.70, 0.06, -0.10, -0.16, 0.43, 0.016 +19650329, -0.24, -0.32, 0.01, 0.03, -0.16, 0.016 +19650330, 0.19, 0.04, -0.02, -0.25, -0.17, 0.016 +19650331, 0.01, 0.21, 0.14, -0.36, 0.08, 0.016 +19650401, 0.16, 0.06, -0.18, 0.10, -0.24, 0.015 +19650402, 0.25, 0.15, 0.22, -0.04, 0.03, 0.015 +19650405, 0.01, 0.04, 0.00, 0.38, 0.11, 0.015 +19650406, -0.04, 0.01, -0.05, -0.14, -0.01, 0.015 +19650407, 0.06, 0.11, -0.07, -0.01, -0.28, 0.015 +19650408, 0.52, 0.23, 0.00, -0.15, -0.06, 0.015 +19650409, 0.56, 0.08, 0.03, 0.01, -0.27, 0.015 +19650412, 0.44, -0.07, 0.11, -0.22, 0.02, 0.015 +19650413, 0.12, 0.09, 0.31, 0.16, 0.12, 0.015 +19650414, 0.18, 0.09, -0.25, 0.15, -0.01, 0.015 +19650415, -0.06, 0.37, -0.02, -0.08, -0.27, 0.015 +19650419, 0.36, -0.05, -0.39, -0.07, -0.68, 0.015 +19650420, -0.03, 0.16, 0.13, -0.12, -0.14, 0.015 +19650421, -0.23, -0.02, 0.01, -0.15, 0.26, 0.015 +19650422, 0.45, -0.15, -0.10, 0.17, -0.16, 0.015 +19650423, 0.13, 0.14, -0.11, 0.15, -0.28, 0.015 +19650426, 0.00, 0.09, 0.42, -0.13, -0.07, 0.015 +19650427, 0.17, -0.08, 0.41, 0.21, -0.15, 0.015 +19650428, -0.05, -0.22, 0.50, -0.14, 0.01, 0.015 +19650429, -0.07, 0.20, -0.16, 0.08, 0.10, 0.015 +19650430, 0.13, -0.07, -0.13, 0.14, -0.23, 0.015 +19650503, 0.08, -0.31, -0.16, 0.08, 0.04, 0.016 +19650504, 0.27, -0.32, -0.06, -0.04, -0.16, 0.016 +19650505, 0.24, -0.32, 0.24, -0.08, 0.20, 0.016 +19650506, 0.24, -0.01, -0.20, 0.27, 0.03, 0.016 +19650507, -0.07, 0.02, -0.06, -0.10, -0.13, 0.016 +19650510, -0.12, 0.20, -0.10, 0.04, 0.23, 0.016 +19650511, -0.09, -0.08, -0.19, 0.03, -0.05, 0.016 +19650512, 0.37, 0.02, -0.38, -0.02, 0.27, 0.016 +19650513, 0.32, 0.26, -0.26, 0.04, 0.10, 0.016 +19650514, -0.16, 0.32, -0.12, -0.06, 0.27, 0.016 +19650517, -0.54, 0.38, 0.30, -0.12, -0.12, 0.016 +19650518, -0.07, 0.07, 0.14, -0.20, 0.22, 0.016 +19650519, 0.20, 0.14, -0.14, -0.24, 0.00, 0.016 +19650520, -0.53, -0.14, -0.08, -0.26, 0.07, 0.016 +19650521, -0.46, 0.14, -0.03, 0.18, -0.01, 0.016 +19650524, -0.74, 0.00, 0.11, -0.19, -0.11, 0.016 +19650525, 0.54, -0.01, -0.33, 0.12, -0.27, 0.016 +19650526, -0.27, -0.24, 0.03, -0.10, 0.22, 0.016 +19650527, -0.58, -0.11, -0.14, -0.12, 0.35, 0.016 +19650528, 0.61, 0.02, -0.15, 0.35, -0.47, 0.016 +19650601, -0.70, 0.03, 0.18, -0.12, 0.14, 0.016 +19650602, -0.78, -0.48, -0.52, 0.36, 0.07, 0.016 +19650603, -0.24, 0.00, -0.09, 0.06, 0.06, 0.016 +19650604, 0.21, 0.09, -0.03, -0.15, -0.16, 0.016 +19650607, -0.35, -0.34, 0.13, -0.02, 0.23, 0.016 +19650608, -1.07, -0.24, 0.00, 0.09, 0.28, 0.016 +19650609, -1.04, -0.18, 0.56, -0.12, 0.18, 0.016 +19650610, -0.43, -0.62, 0.15, 0.04, -0.04, 0.016 +19650611, 0.42, -0.11, -0.06, -0.16, 0.19, 0.016 +19650614, -1.36, -0.87, -0.10, -0.14, -0.02, 0.016 +19650615, 0.47, -0.04, -0.12, 0.00, -0.46, 0.016 +19650616, 0.89, 0.73, 0.12, 0.04, -0.18, 0.016 +19650617, 0.59, 0.11, 0.21, 0.12, -0.20, 0.016 +19650618, -0.44, -0.08, -0.01, 0.01, -0.08, 0.016 +19650621, -0.38, -0.20, -0.10, 0.06, 0.09, 0.016 +19650622, 0.18, -0.01, 0.00, -0.43, -0.20, 0.016 +19650623, -0.64, -0.09, 0.04, -0.17, -0.01, 0.016 +19650624, -1.35, -0.73, 0.08, 0.07, 0.39, 0.016 +19650625, -0.64, -0.36, -0.05, 0.15, 0.48, 0.016 +19650628, -1.88, -1.62, 0.07, 0.01, 0.30, 0.016 +19650629, 0.79, -0.71, -0.16, 0.06, -0.25, 0.016 +19650630, 2.20, 1.24, 0.11, 0.42, -0.40, 0.016 +19650701, 0.46, 0.31, 0.02, -0.26, 0.25, 0.015 +19650702, 0.81, 0.13, -0.06, 0.02, -0.21, 0.015 +19650706, -0.18, 0.23, -0.01, 0.14, 0.09, 0.015 +19650707, -0.34, -0.16, 0.11, -0.18, 0.07, 0.015 +19650708, 0.80, -0.09, -0.20, 0.08, -0.34, 0.015 +19650709, 0.40, 0.44, -0.03, -0.02, 0.00, 0.015 +19650712, 0.00, 0.04, 0.22, -0.14, 0.08, 0.015 +19650713, -0.13, -0.19, -0.24, -0.02, 0.07, 0.015 +19650714, 0.29, 0.16, 0.13, 0.04, -0.14, 0.015 +19650715, -0.10, 0.30, -0.01, -0.04, -0.08, 0.015 +19650716, -0.04, 0.02, -0.06, -0.11, -0.25, 0.015 +19650719, -0.09, 0.06, -0.27, -0.11, 0.19, 0.015 +19650720, -1.24, -0.23, 0.24, -0.16, 0.50, 0.015 +19650721, -0.55, -0.08, 0.24, -0.38, 0.34, 0.015 +19650722, -0.23, 0.23, 0.18, -0.02, 0.00, 0.015 +19650723, 0.24, -0.14, 0.29, 0.00, -0.13, 0.015 +19650726, -0.03, 0.09, 0.03, 0.07, -0.23, 0.015 +19650727, -0.18, 0.02, 0.20, -0.17, 0.05, 0.015 +19650728, 0.16, -0.21, 0.86, 0.03, 0.17, 0.015 +19650729, 0.72, 0.00, 0.53, -0.16, -0.13, 0.015 +19650730, 0.67, 0.11, -0.03, 0.00, -0.32, 0.015 +19650802, 0.20, 0.06, -0.34, 0.04, -0.08, 0.015 +19650803, 0.12, -0.08, -0.23, 0.21, 0.02, 0.015 +19650804, 0.41, 0.29, 0.10, 0.13, 0.30, 0.015 +19650805, 0.02, 0.27, -0.03, -0.19, 0.13, 0.015 +19650806, 0.35, -0.05, -0.33, 0.19, 0.00, 0.015 +19650809, -0.14, 0.33, -0.12, -0.02, 0.02, 0.015 +19650810, 0.04, 0.36, -0.14, 0.12, 0.17, 0.015 +19650811, 0.33, 0.30, 0.11, 0.11, 0.06, 0.015 +19650812, 0.29, 0.22, -0.09, 0.15, -0.56, 0.015 +19650813, 0.43, -0.05, 0.26, 0.20, -0.31, 0.015 +19650816, 0.11, -0.01, 0.24, 0.14, -0.21, 0.015 +19650817, 0.16, -0.02, -0.27, 0.16, 0.11, 0.015 +19650818, 0.02, 0.11, 0.24, 0.14, 0.03, 0.015 +19650819, -0.24, -0.33, -0.02, -0.20, -0.02, 0.015 +19650820, -0.08, 0.08, 0.20, 0.04, -0.15, 0.015 +19650823, -0.13, 0.10, 0.03, 0.28, -0.29, 0.015 +19650824, 0.18, 0.17, -0.31, 0.40, -0.15, 0.015 +19650825, 0.14, 0.23, -0.26, 0.16, 0.46, 0.015 +19650826, 0.37, -0.08, 0.21, -0.02, 0.13, 0.015 +19650827, 0.12, 0.18, -0.02, -0.12, -0.26, 0.015 +19650830, 0.04, 0.26, -0.08, 0.08, -0.10, 0.015 +19650831, -0.05, 0.28, -0.06, -0.01, -0.05, 0.015 +19650901, 0.05, 0.01, -0.20, -0.06, -0.05, 0.015 +19650902, 0.54, 0.04, 0.05, 0.23, -0.05, 0.015 +19650903, 0.46, 0.06, 0.10, 0.04, 0.14, 0.015 +19650907, 0.32, -0.05, -0.47, 0.15, -0.11, 0.015 +19650908, 0.28, 0.05, -0.15, -0.02, 0.42, 0.015 +19650909, 0.24, 0.04, 0.08, -0.29, -0.11, 0.015 +19650910, 0.23, 0.02, -0.34, -0.34, 0.02, 0.015 +19650913, 0.25, 0.07, -0.15, 0.01, -0.07, 0.015 +19650914, -0.44, -0.28, 0.14, -0.12, -0.02, 0.015 +19650915, 0.47, 0.02, 0.08, -0.03, 0.00, 0.015 +19650916, 0.52, -0.17, 0.48, 0.14, 0.10, 0.015 +19650917, 0.03, 0.11, -0.08, -0.07, -0.36, 0.015 +19650920, 0.04, 0.21, 0.07, -0.03, 0.06, 0.015 +19650921, -0.27, -0.02, -0.06, -0.17, 0.09, 0.015 +19650922, 0.47, 0.33, 0.11, 0.19, 0.21, 0.015 +19650923, -0.39, -0.30, 0.07, 0.31, -0.21, 0.015 +19650924, 0.23, 0.14, 0.60, -0.32, -0.05, 0.015 +19650927, 0.58, 0.03, -0.17, 0.12, 0.40, 0.015 +19650928, -0.24, 0.23, 0.11, -0.03, 0.39, 0.015 +19650929, -0.47, 0.00, -0.14, -0.38, 0.30, 0.015 +19650930, -0.07, 0.04, -0.24, -0.14, -0.32, 0.015 +19651001, -0.06, 0.18, 0.09, -0.64, 0.10, 0.015 +19651004, 0.24, 0.47, 0.07, 0.23, -0.37, 0.015 +19651005, 0.56, 0.06, 0.31, 0.07, -0.11, 0.015 +19651006, -0.08, -0.10, -0.31, 0.18, -0.23, 0.015 +19651007, -0.05, 0.35, -0.01, 0.11, 0.00, 0.015 +19651008, 0.48, 0.68, 0.39, -0.19, -0.05, 0.015 +19651011, 0.57, 0.27, -0.05, 0.26, -0.17, 0.015 +19651012, -0.05, 0.37, -0.16, 0.14, -0.17, 0.015 +19651013, 0.01, 0.23, 0.56, 0.20, -0.03, 0.015 +19651014, -0.15, 0.44, 0.23, 0.09, 0.03, 0.015 +19651015, 0.22, 0.28, 0.04, -0.38, 0.12, 0.015 +19651018, 0.27, 0.33, -0.09, 0.02, 0.08, 0.015 +19651019, 0.11, -0.13, -0.44, 0.14, -0.04, 0.015 +19651020, -0.01, 0.26, 0.11, 0.11, 0.22, 0.015 +19651021, 0.15, 0.30, -0.03, -0.25, -0.17, 0.015 +19651022, -0.05, -0.09, -0.05, 0.48, 0.12, 0.015 +19651025, -0.40, -0.40, 0.07, 0.06, -0.04, 0.015 +19651026, 0.50, -0.07, 0.23, 0.30, 0.23, 0.015 +19651027, 0.36, -0.09, 0.20, 0.03, -0.21, 0.015 +19651028, -0.31, -0.03, 0.14, 0.03, 0.09, 0.015 +19651029, 0.26, -0.02, 0.19, 0.19, -0.11, 0.015 +19651101, -0.10, 0.01, 0.27, 0.09, -0.22, 0.017 +19651103, 0.10, 0.22, -0.26, 0.03, 0.07, 0.017 +19651104, 0.19, 0.08, -0.16, -0.23, -0.01, 0.017 +19651105, 0.11, 0.24, -0.33, -0.04, -0.22, 0.017 +19651108, -0.34, 0.12, -0.27, -0.09, 0.00, 0.017 +19651109, -0.24, 0.15, 0.31, -0.38, -0.40, 0.017 +19651110, -0.09, 0.14, -0.03, -0.30, -0.08, 0.017 +19651111, 0.27, 0.18, -0.06, 0.14, 0.06, 0.017 +19651112, 0.49, 0.45, -0.32, 0.09, 0.24, 0.017 +19651115, 0.11, 0.54, -0.24, 0.20, -0.11, 0.017 +19651116, -0.13, 0.35, -0.04, -0.21, -0.22, 0.017 +19651117, 0.15, -0.54, 0.14, 0.24, -0.25, 0.017 +19651118, -0.35, 0.57, 0.12, -0.21, -0.17, 0.017 +19651119, 0.03, 0.40, 0.10, 0.10, -0.08, 0.017 +19651122, -0.53, 0.29, 0.10, 0.10, 0.12, 0.017 +19651123, 0.17, 0.20, 0.03, 0.09, 0.13, 0.017 +19651124, 0.19, 0.28, 0.17, -0.25, -0.29, 0.017 +19651126, 0.26, 0.53, 0.19, -0.06, 0.05, 0.017 +19651129, -0.15, 0.61, 0.28, -0.08, 0.22, 0.017 +19651130, -0.15, 0.27, 0.19, -0.26, 0.25, 0.017 +19651201, -0.03, 0.40, 0.29, -0.32, -0.13, 0.015 +19651202, -0.24, 0.36, 0.06, -0.01, -0.27, 0.015 +19651203, 0.07, 0.22, -0.19, 0.37, -0.15, 0.015 +19651206, -0.79, -0.35, -0.31, 0.27, 0.09, 0.015 +19651207, 0.95, 0.71, 0.35, -0.12, 0.09, 0.015 +19651208, -0.07, 0.40, -0.25, 0.08, -0.29, 0.015 +19651209, 0.29, 0.43, -0.15, -0.21, 0.16, 0.015 +19651210, 0.28, 0.19, -0.06, -0.22, -0.20, 0.015 +19651213, 0.10, 0.44, -0.13, -0.05, -0.08, 0.015 +19651214, 0.06, 0.00, 0.46, -0.34, 0.55, 0.015 +19651215, 0.18, 0.07, 0.73, -0.33, 0.14, 0.015 +19651216, 0.16, 0.27, 0.49, -0.06, -0.44, 0.015 +19651217, 0.04, 0.31, 0.69, 0.03, -0.01, 0.015 +19651220, -0.53, -0.24, 0.04, 0.19, -0.14, 0.015 +19651221, 0.34, 0.09, 0.51, -0.11, 0.05, 0.015 +19651222, 0.16, -0.90, 0.20, -0.07, -0.03, 0.015 +19651223, -0.16, -0.14, -0.29, 0.18, 0.07, 0.015 +19651227, -0.66, -0.04, -0.15, -0.08, 0.10, 0.015 +19651228, -0.05, -0.21, -0.18, -0.62, -0.19, 0.015 +19651229, 0.29, 0.32, -0.03, 0.02, 0.10, 0.015 +19651230, 0.36, 0.16, -0.27, -0.08, 0.05, 0.015 +19651231, 0.26, 0.10, 0.14, 0.20, 0.12, 0.015 +19660103, -0.22, 0.69, 0.29, -0.46, 0.20, 0.018 +19660104, 0.10, 0.40, 0.18, -0.03, -0.07, 0.018 +19660105, 0.57, -0.07, 0.71, 0.44, 0.06, 0.018 +19660106, 0.18, -0.28, 0.55, 0.03, 0.07, 0.018 +19660107, 0.10, 0.13, -0.07, -0.16, -0.09, 0.018 +19660110, 0.20, 0.41, 0.06, -0.14, 0.14, 0.018 +19660111, 0.05, 0.26, -0.29, -0.16, -0.21, 0.018 +19660112, -0.15, 0.27, -0.07, -0.39, -0.05, 0.018 +19660113, 0.22, 0.54, 0.27, 0.01, 0.02, 0.018 +19660114, 0.15, 0.06, 0.12, -0.09, 0.09, 0.018 +19660117, 0.33, 0.44, 0.15, -0.04, 0.21, 0.018 +19660118, 0.18, 0.14, 0.09, -0.22, 0.21, 0.018 +19660119, -0.28, -0.01, 0.12, -0.23, 0.22, 0.018 +19660120, -0.29, 0.36, 0.13, -0.11, -0.30, 0.018 +19660121, 0.08, 0.11, -0.24, 0.04, -0.38, 0.018 +19660124, 0.25, 0.29, 0.33, -0.26, 0.14, 0.018 +19660125, 0.18, 0.13, 0.43, -0.38, -0.01, 0.018 +19660126, -0.12, 0.19, 0.10, -0.24, -0.11, 0.018 +19660127, -0.03, 0.14, 0.33, -0.21, -0.08, 0.018 +19660128, -0.33, 0.40, 0.09, -0.02, -0.05, 0.018 +19660131, -0.45, 0.10, -0.22, 0.12, -0.10, 0.018 +19660201, -0.81, -0.89, -0.43, 0.70, -0.10, 0.018 +19660202, 0.40, 0.33, 0.43, -0.35, 0.15, 0.018 +19660203, 0.15, -0.02, -0.32, 0.16, -0.31, 0.018 +19660204, 0.59, 0.01, 0.48, 0.06, -0.07, 0.018 +19660207, 0.34, 0.32, 0.28, -0.13, -0.44, 0.018 +19660208, -0.03, -0.26, 0.09, -0.20, -0.36, 0.018 +19660209, 0.57, 0.59, -0.02, -0.13, -0.48, 0.018 +19660210, -0.17, 0.40, 0.00, -0.17, -0.06, 0.018 +19660211, 0.01, 0.50, -0.01, 0.27, -0.58, 0.018 +19660214, -0.11, 0.33, 0.18, 0.00, 0.00, 0.018 +19660215, -0.43, 0.12, 0.29, 0.06, 0.12, 0.018 +19660216, 0.03, 0.33, -0.11, -0.08, 0.00, 0.018 +19660217, -0.51, 0.19, -0.31, 0.06, 0.19, 0.018 +19660218, -0.22, 0.63, 0.16, -0.27, 0.23, 0.018 +19660221, -0.56, 0.40, -0.09, 0.02, 0.04, 0.018 +19660223, -0.42, 0.14, -0.15, -0.39, 0.04, 0.018 +19660224, -0.52, 0.21, 0.24, -0.10, 0.13, 0.018 +19660225, 0.32, 0.53, -0.14, 0.16, -0.41, 0.018 +19660228, 0.16, 1.01, -0.21, 0.27, 0.39, 0.018 +19660301, -1.29, -0.20, -0.21, 0.39, 0.19, 0.017 +19660302, -1.03, -0.19, -0.17, -0.02, 0.31, 0.017 +19660303, 0.39, 0.63, 0.16, -0.50, 0.23, 0.017 +19660304, -0.28, 0.21, -0.34, 0.40, 0.13, 0.017 +19660307, -1.29, -0.39, -0.16, 0.06, 0.40, 0.017 +19660308, 0.04, -0.60, -0.30, 0.07, 0.32, 0.017 +19660309, 0.89, 0.38, -0.11, 0.02, -0.39, 0.017 +19660310, -0.01, -0.37, -0.22, 0.29, -0.17, 0.017 +19660311, -0.08, 0.33, 0.32, -0.51, 0.12, 0.017 +19660314, -1.11, -0.44, -0.40, 0.19, -0.13, 0.017 +19660315, -0.74, -1.41, -0.31, 0.15, 0.09, 0.017 +19660316, 0.54, 0.00, 0.04, 0.19, -0.11, 0.017 +19660317, 0.31, 0.01, 0.28, -0.03, -0.06, 0.017 +19660318, 0.48, 0.38, 0.49, -0.04, -0.15, 0.017 +19660321, 0.82, 0.70, 0.55, 0.03, 0.27, 0.017 +19660322, 0.27, 0.14, 0.06, 0.28, -0.30, 0.017 +19660323, -0.32, 0.36, -0.46, 0.30, -0.30, 0.017 +19660324, 0.18, 0.27, -0.54, 0.61, 0.04, 0.017 +19660325, 0.33, 0.29, -0.50, 0.06, -0.61, 0.017 +19660328, 0.16, 0.58, 0.53, -0.61, 0.12, 0.017 +19660329, -0.41, -0.26, -0.31, 0.01, -0.04, 0.017 +19660330, -0.87, 0.00, -0.25, 0.10, 0.20, 0.017 +19660331, 0.55, -0.16, -0.32, -0.14, -0.18, 0.017 +19660401, 0.76, -0.12, 0.19, -0.11, 0.08, 0.017 +19660404, 0.90, 0.16, 0.70, -0.21, -0.15, 0.017 +19660405, 0.58, 0.23, 0.57, -0.13, 0.06, 0.017 +19660406, 0.25, 0.13, 0.02, -0.12, -0.15, 0.017 +19660407, 0.30, 0.59, -0.45, 0.26, -0.15, 0.017 +19660411, 0.10, 0.86, -0.61, 0.52, -0.57, 0.017 +19660412, -0.29, 0.17, -0.10, 0.13, 0.12, 0.017 +19660413, 0.09, 0.41, -0.22, -0.18, -0.08, 0.017 +19660414, 0.30, -0.15, 0.07, -0.19, -0.50, 0.017 +19660415, 0.09, 0.22, 0.34, 0.07, -0.09, 0.017 +19660418, -0.43, -0.08, 0.40, -0.44, 0.18, 0.017 +19660419, 0.02, 0.73, 0.12, -0.12, 0.65, 0.017 +19660420, 0.51, 0.28, 0.05, 0.26, -0.13, 0.017 +19660421, 0.34, -0.10, -0.11, 0.07, -0.01, 0.017 +19660422, -0.20, -0.27, 0.13, -0.09, 0.11, 0.017 +19660425, -0.18, 0.09, -0.02, -0.09, 0.27, 0.017 +19660426, -0.11, -0.04, -0.28, 0.10, -0.37, 0.017 +19660427, -0.29, -0.12, -0.37, 0.01, -0.12, 0.017 +19660428, -0.67, -0.23, -0.36, 0.21, 0.23, 0.017 +19660429, 0.02, 0.53, -0.30, 0.42, -0.28, 0.017 +19660502, -0.11, -0.08, -0.15, 0.54, -0.33, 0.020 +19660503, -1.12, -0.67, -0.13, 0.08, -0.04, 0.020 +19660504, -0.55, -0.18, 0.26, 0.05, 0.29, 0.020 +19660505, -1.74, -1.32, -0.04, -0.05, 0.26, 0.020 +19660506, -0.27, -1.08, 0.47, -0.26, 0.49, 0.020 +19660509, -1.60, -0.58, -0.28, 0.12, 0.32, 0.020 +19660510, 0.86, 0.13, -0.29, -0.12, -0.40, 0.020 +19660511, 0.18, -0.08, -0.28, 0.17, -0.24, 0.020 +19660512, -1.26, -0.81, -0.29, 0.26, 0.21, 0.020 +19660513, -0.96, -0.82, -0.17, 0.14, -0.22, 0.020 +19660516, -1.50, -1.39, -0.27, -0.05, -0.13, 0.020 +19660517, -0.92, -1.28, -0.37, -0.09, -0.09, 0.020 +19660518, 1.88, 0.99, 0.39, 0.12, -0.16, 0.020 +19660519, -0.12, 0.00, -0.38, 0.60, -0.78, 0.020 +19660520, 0.50, 0.31, -0.05, 0.14, 0.15, 0.020 +19660523, 0.89, 0.57, -0.35, 0.15, -0.77, 0.020 +19660524, 0.73, 0.65, 0.12, 0.45, 0.08, 0.020 +19660525, 0.39, 0.23, 0.15, -0.10, -0.15, 0.020 +19660526, 0.04, -0.29, 0.25, -0.16, 0.01, 0.020 +19660527, 0.30, 0.25, -0.10, -0.27, -0.26, 0.020 +19660531, -1.34, 0.00, -0.13, 0.07, 0.11, 0.020 +19660601, -0.01, -0.08, -0.19, -0.08, 0.31, 0.017 +19660602, -0.06, 0.27, 0.17, -0.10, -0.20, 0.017 +19660603, 0.11, 0.07, 0.18, 0.13, 0.08, 0.017 +19660606, -0.74, -0.25, -0.05, 0.03, 0.43, 0.017 +19660607, -0.70, -0.30, -0.14, -0.06, 0.29, 0.017 +19660608, 0.15, 0.22, 0.23, -0.08, -0.12, 0.017 +19660609, 0.72, 0.40, -0.17, 0.23, -0.47, 0.017 +19660610, 1.09, 0.57, 0.75, -0.10, 0.17, 0.017 +19660613, 0.48, 0.39, 0.10, 0.02, 0.13, 0.017 +19660614, 0.33, 0.14, -0.24, -0.12, 0.10, 0.017 +19660615, -0.38, 0.43, -0.17, -0.20, 0.26, 0.017 +19660616, -0.23, 0.42, -0.14, 0.27, -0.05, 0.017 +19660617, 0.01, 0.06, -0.25, 0.22, -0.28, 0.017 +19660620, -0.05, 0.03, 0.04, -0.20, -0.41, 0.017 +19660621, 0.35, 0.30, 0.01, 0.16, 0.20, 0.017 +19660622, 0.18, 0.38, 0.01, 0.20, 0.14, 0.017 +19660623, -0.40, -0.33, 0.28, -0.36, 0.06, 0.017 +19660624, 0.01, -0.10, 0.46, -0.20, 0.11, 0.017 +19660627, -0.63, -0.25, -0.02, 0.15, 0.28, 0.017 +19660628, -0.48, 0.01, -0.11, 0.11, -0.27, 0.017 +19660629, -1.01, -0.44, -0.19, 0.09, 0.20, 0.017 +19660630, -0.18, -0.57, -0.03, -0.05, -0.18, 0.017 +19660701, 0.99, 0.17, -0.23, 0.32, -0.15, 0.018 +19660705, 0.13, 0.02, 0.01, 0.36, 0.44, 0.018 +19660706, 1.39, -0.27, -0.50, 0.44, -0.64, 0.018 +19660707, 0.35, 0.01, -0.04, 0.08, 0.07, 0.018 +19660708, 0.16, 0.09, 0.16, -0.04, -0.12, 0.018 +19660711, -0.15, 0.15, -0.07, 0.11, -0.19, 0.018 +19660712, -0.50, 0.19, 0.15, -0.40, 0.57, 0.018 +19660713, -0.62, 0.14, 0.11, -0.38, 0.45, 0.018 +19660714, 0.55, -0.09, -0.31, -0.12, -0.28, 0.018 +19660715, 0.29, 0.04, 0.19, 0.02, -0.10, 0.018 +19660718, -0.13, -0.12, 0.19, 0.02, 0.16, 0.018 +19660719, -0.73, -0.06, 0.18, -0.22, 0.32, 0.018 +19660720, -0.89, 0.36, 0.20, -0.03, 0.45, 0.018 +19660721, -0.04, -0.27, 0.08, 0.04, 0.05, 0.018 +19660722, -0.11, 0.22, 0.19, -0.28, -0.06, 0.018 +19660725, -1.93, -0.50, 0.33, -0.16, 0.82, 0.018 +19660726, -0.26, -0.69, 0.04, 0.41, -0.21, 0.018 +19660727, 0.48, 0.08, 0.11, -0.27, -0.22, 0.018 +19660728, -0.36, 0.05, 0.03, -0.20, 0.13, 0.018 +19660729, -0.20, -0.02, 0.15, -0.16, 0.28, 0.018 +19660801, -1.53, -0.23, 0.27, -0.03, 0.46, 0.018 +19660802, 0.04, -0.30, -0.12, 0.26, -0.33, 0.018 +19660803, 0.99, 0.08, -0.34, 0.28, -0.75, 0.018 +19660804, 0.91, -0.37, 0.27, 0.23, -0.10, 0.018 +19660805, 0.13, 0.10, -0.32, -0.07, -0.18, 0.018 +19660808, -0.18, -0.23, -0.20, 0.08, -0.27, 0.018 +19660809, -0.19, 0.34, -0.20, 0.08, -0.29, 0.018 +19660810, -0.42, -0.02, -0.07, -0.05, 0.28, 0.018 +19660811, -0.06, 0.14, -0.51, 0.34, -0.59, 0.018 +19660812, 0.23, 0.21, -0.35, 0.40, -0.28, 0.018 +19660815, -0.49, 0.34, -0.01, 0.08, 0.12, 0.018 +19660816, -1.27, -0.01, 0.33, -0.27, 0.57, 0.018 +19660817, -0.58, -0.40, -0.03, 0.06, 0.11, 0.018 +19660818, -1.27, 0.02, 0.04, 0.04, 0.00, 0.018 +19660819, -0.76, -0.42, 0.18, -0.24, 0.37, 0.018 +19660822, -1.82, -0.41, 0.27, -0.26, 0.56, 0.018 +19660823, -0.13, 0.17, -0.04, 0.05, -0.58, 0.018 +19660824, 1.16, -0.05, -0.10, 0.32, -0.54, 0.018 +19660825, -1.26, 0.04, 0.59, -0.28, 0.76, 0.018 +19660826, -2.23, -0.59, 0.77, -0.72, 1.02, 0.018 +19660829, -2.57, -1.14, 0.85, -0.53, 1.13, 0.018 +19660830, 1.61, -0.69, -1.09, 0.80, -1.28, 0.018 +19660831, 1.62, 0.13, 0.34, -0.52, 0.58, 0.018 +19660901, 0.66, -0.31, -0.06, -0.08, 0.59, 0.019 +19660902, -0.33, 0.06, 0.23, -0.28, 0.65, 0.019 +19660906, -0.52, 0.15, -0.02, -0.09, 0.24, 0.019 +19660907, -0.91, -0.48, 0.44, -0.37, 0.63, 0.019 +19660908, -0.37, -0.05, 0.14, 0.17, -0.08, 0.019 +19660909, 0.31, 0.09, -0.20, 0.18, -0.17, 0.019 +19660912, 2.13, -0.21, -0.66, 0.16, -0.79, 0.019 +19660913, 0.58, 0.34, -0.05, 0.09, 0.02, 0.019 +19660914, 0.90, -0.53, -0.82, 0.33, -0.60, 0.019 +19660915, 1.01, -0.46, -0.27, 0.04, -0.02, 0.019 +19660916, -0.04, 0.24, -0.01, 0.20, 0.05, 0.019 +19660919, -0.47, 0.22, 0.24, 0.02, 0.08, 0.019 +19660920, -0.68, 0.34, 0.29, -0.39, 0.00, 0.019 +19660921, -1.69, 0.10, 0.79, -0.63, 0.50, 0.019 +19660922, 0.21, -0.37, -0.29, 0.11, 0.09, 0.019 +19660923, -0.30, 0.18, 0.17, -0.39, 0.07, 0.019 +19660926, 0.21, -0.07, -0.28, 0.22, -0.42, 0.019 +19660927, 0.28, -0.13, -0.07, -0.09, 0.15, 0.019 +19660928, -1.17, 0.30, 0.71, -0.68, 0.55, 0.019 +19660929, -1.07, -0.31, 0.43, -0.17, 0.68, 0.019 +19660930, 0.28, -0.23, -0.31, 0.13, 0.21, 0.019 +19661003, -2.17, -0.13, 1.12, -0.82, 1.17, 0.022 +19661004, 0.07, -1.31, 0.20, 0.21, 0.13, 0.022 +19661005, -0.58, -0.46, 0.34, -0.48, 0.69, 0.022 +19661006, -1.01, -0.99, 0.64, -0.72, 1.09, 0.022 +19661007, -1.26, -0.62, 0.71, -0.35, 1.21, 0.022 +19661010, 1.69, -0.88, -1.32, 1.34, -1.22, 0.022 +19661011, 0.48, 0.08, 0.59, -0.41, 0.30, 0.022 +19661012, 2.63, -1.04, -0.25, -0.06, -0.49, 0.022 +19661013, -0.01, 0.70, -0.45, 0.11, -0.21, 0.022 +19661014, -0.30, 0.26, 0.30, -0.65, 0.16, 0.022 +19661017, 1.09, -0.63, -0.42, -0.18, -0.10, 0.022 +19661018, 1.62, -0.46, -0.56, 0.09, -0.60, 0.022 +19661019, -0.75, 0.38, 0.54, -0.27, 0.38, 0.022 +19661020, -0.31, 0.00, 0.03, -0.32, 0.61, 0.022 +19661021, 0.31, -0.59, -0.40, -0.21, 0.02, 0.022 +19661024, 0.23, -0.36, -0.01, 0.12, 0.56, 0.022 +19661025, 0.51, -0.64, 0.00, -0.05, 0.35, 0.022 +19661026, 0.85, 0.05, 0.42, 0.12, -0.09, 0.022 +19661027, 0.80, -0.30, 0.87, -0.35, 0.20, 0.022 +19661028, 0.04, 0.45, 0.31, -0.45, -0.03, 0.022 +19661031, -0.04, 0.07, 0.11, -0.17, -0.01, 0.022 +19661101, 0.84, -0.07, -0.38, 0.71, -0.61, 0.020 +19661102, 0.13, 0.15, -0.64, 0.78, -0.18, 0.020 +19661103, -0.32, 0.21, -0.21, -0.28, -0.30, 0.020 +19661104, 0.39, -0.17, -0.31, 0.17, -0.29, 0.020 +19661107, -0.05, 0.14, -0.20, 0.33, -0.53, 0.020 +19661109, 0.82, 0.08, -0.55, 0.53, -0.63, 0.020 +19661110, 0.63, 0.33, -0.52, 0.43, -0.21, 0.020 +19661111, 0.10, 0.65, -0.12, -0.18, -0.13, 0.020 +19661114, -0.53, 0.41, -0.03, 0.05, -0.14, 0.020 +19661115, 0.41, 0.06, -0.30, 0.60, -0.70, 0.020 +19661116, 0.86, 0.37, -0.11, 0.19, -0.33, 0.020 +19661117, -0.66, 0.43, 0.15, -0.14, 0.47, 0.020 +19661118, -0.61, 0.30, 0.06, 0.11, 0.02, 0.020 +19661121, -1.37, -0.09, 0.07, -0.25, -0.02, 0.020 +19661122, -0.50, -0.17, -0.25, 0.21, -0.38, 0.020 +19661123, 0.76, 0.13, -0.38, 0.00, -0.58, 0.020 +19661125, 0.79, 0.13, 0.05, 0.55, -0.79, 0.020 +19661128, -0.04, 0.07, -0.39, 0.41, -0.17, 0.020 +19661129, -0.29, 0.19, -0.22, -0.22, -0.27, 0.020 +19661130, 0.08, 0.14, -0.16, 0.05, -0.61, 0.020 +19661201, -0.39, 0.34, -0.21, -0.08, 0.23, 0.019 +19661202, 0.03, 0.14, -0.06, 0.19, -0.06, 0.019 +19661205, 0.07, -0.06, -0.35, 0.17, -0.28, 0.019 +19661206, 0.68, -0.33, -0.18, 0.24, -0.56, 0.019 +19661207, 1.01, -0.16, -0.61, 0.03, -0.38, 0.019 +19661208, 0.37, 0.08, -0.22, -0.32, -0.14, 0.019 +19661209, 0.22, 0.27, -0.21, 0.03, -0.15, 0.019 +19661212, 0.98, 0.07, -0.39, 0.54, -0.60, 0.019 +19661213, -0.28, 0.13, -0.01, 0.33, -0.01, 0.019 +19661214, -0.01, 0.66, -0.59, 0.40, -0.30, 0.019 +19661215, -1.04, 0.48, 0.35, -0.07, 0.73, 0.019 +19661216, 0.02, 0.33, 0.08, 0.18, -0.02, 0.019 +19661219, -0.27, 0.08, -0.20, -0.01, 0.05, 0.019 +19661220, -0.39, -0.18, 0.24, -0.59, 0.28, 0.019 +19661221, 0.52, 0.16, 0.25, -0.19, -0.22, 0.019 +19661222, 0.38, 0.12, 0.50, -0.10, 0.06, 0.019 +19661223, -0.25, 0.34, 0.49, -0.35, 0.42, 0.019 +19661227, -0.54, 0.12, 0.39, -0.42, 0.16, 0.019 +19661228, -0.48, -0.28, 0.11, 0.09, 0.53, 0.019 +19661229, -0.39, -0.41, 0.06, 0.25, 0.27, 0.019 +19661230, -0.08, 0.02, -0.53, 0.37, -0.12, 0.019 +19670103, 0.08, 1.11, 0.71, 0.11, 0.29, 0.020 +19670104, 0.16, -0.05, 0.25, 0.00, 0.05, 0.020 +19670105, 1.30, 0.67, 0.33, 0.11, -0.13, 0.020 +19670106, 0.72, 0.69, 0.14, 0.12, 0.34, 0.020 +19670109, 0.84, 0.60, 0.36, 0.46, -0.36, 0.020 +19670110, 0.00, 0.36, 0.13, -0.23, 0.31, 0.020 +19670111, 0.84, 0.19, 0.59, -0.23, -0.12, 0.020 +19670112, 0.54, 0.27, 0.24, -0.30, -0.08, 0.020 +19670113, 0.68, 0.21, -0.09, -0.05, -0.41, 0.020 +19670116, -0.19, 0.33, 0.23, -0.10, -0.15, 0.020 +19670117, 1.13, 0.00, -0.33, 0.42, -0.79, 0.020 +19670118, 0.52, -0.25, 0.09, -0.27, 0.17, 0.020 +19670119, 0.04, 0.35, 0.31, -0.30, -0.01, 0.020 +19670120, 0.37, 0.95, -0.13, 0.32, -0.35, 0.020 +19670123, 0.34, 0.31, -0.44, 0.34, -0.33, 0.020 +19670124, 0.20, 0.26, -0.30, 0.10, -0.32, 0.020 +19670125, -0.69, 0.43, -0.21, -0.03, -0.06, 0.020 +19670126, 0.03, 0.45, -0.03, 0.05, -0.45, 0.020 +19670127, 0.48, 0.48, -0.27, 0.28, -0.38, 0.020 +19670130, 0.56, 0.55, 0.07, 0.05, 0.05, 0.020 +19670131, -0.08, 0.15, 0.37, -0.32, 0.04, 0.020 +19670201, -0.15, 0.33, 0.03, -0.02, -0.36, 0.019 +19670202, 0.34, 0.19, 0.18, -0.17, 0.14, 0.019 +19670203, 0.71, 0.40, -0.01, -0.18, 0.02, 0.019 +19670206, -0.15, 0.20, 0.25, -0.32, -0.04, 0.019 +19670207, -0.18, 0.19, -0.28, -0.06, -0.14, 0.019 +19670208, 0.88, 0.30, -0.45, 0.45, -0.12, 0.019 +19670209, -0.39, -0.28, -0.14, 0.25, 0.05, 0.019 +19670210, 0.26, 0.33, -0.13, 0.28, -0.42, 0.019 +19670213, 0.14, 0.50, 0.11, 0.03, 0.14, 0.019 +19670214, 0.73, 0.18, -0.06, 0.24, -0.39, 0.019 +19670215, 0.05, -0.08, -0.35, 0.20, 0.11, 0.019 +19670216, -0.43, 0.22, -0.12, -0.30, 0.47, 0.019 +19670217, 0.02, 0.03, 0.03, -0.12, 0.08, 0.019 +19670220, -0.50, 0.16, -0.09, 0.03, 0.01, 0.019 +19670221, 0.00, 0.40, -0.37, 0.40, -0.06, 0.019 +19670223, 0.13, 0.00, -0.03, 0.01, 0.05, 0.019 +19670224, 0.08, 0.07, -0.02, -0.04, -0.19, 0.019 +19670227, -1.10, -0.39, -0.09, 0.26, 0.19, 0.019 +19670228, 0.38, 0.26, -0.58, 0.98, -0.50, 0.019 +19670301, 0.98, 0.11, -0.05, 0.37, -0.33, 0.018 +19670302, 0.52, -0.05, -0.22, 0.06, -0.37, 0.018 +19670303, 0.16, 0.27, -0.40, 0.12, -0.12, 0.018 +19670306, -0.13, 0.32, 0.29, -0.02, -0.05, 0.018 +19670307, 0.16, 0.30, -0.07, -0.11, -0.55, 0.018 +19670308, 0.17, 0.31, -0.26, 0.29, -0.21, 0.018 +19670309, 0.29, 0.41, 0.01, 0.08, 0.08, 0.018 +19670310, 0.37, -0.02, 0.69, 0.29, -0.21, 0.018 +19670313, -0.48, 0.04, -0.08, 0.09, 0.35, 0.018 +19670314, -0.11, 0.06, -0.19, -0.05, -0.17, 0.018 +19670315, 0.89, -0.20, 0.35, 0.27, -0.19, 0.018 +19670316, 0.90, -0.37, -0.26, 0.22, 0.04, 0.018 +19670317, 0.13, 0.06, -0.07, -0.15, -0.03, 0.018 +19670320, -0.01, 0.23, -0.15, 0.32, -0.15, 0.018 +19670321, -0.29, -0.12, 0.04, 0.16, 0.12, 0.018 +19670322, 0.28, 0.12, -0.16, 0.14, -0.06, 0.018 +19670323, 0.68, -0.22, 0.26, 0.03, 0.09, 0.018 +19670327, -0.06, 0.09, -0.21, -0.35, -0.25, 0.018 +19670328, 0.09, -0.03, 0.15, -0.01, -0.03, 0.018 +19670329, -0.13, 0.10, 0.13, -0.14, 0.15, 0.018 +19670330, 0.04, 0.20, -0.10, -0.39, 0.20, 0.018 +19670331, -0.51, 0.21, 0.58, -0.36, 0.23, 0.018 +19670403, -1.13, -0.23, 0.18, -0.59, 0.82, 0.016 +19670404, 0.01, 0.30, -0.29, 0.10, -0.32, 0.016 +19670405, 0.63, 0.00, 0.05, -0.34, -0.13, 0.016 +19670406, 0.20, -0.01, 0.14, -0.11, -0.03, 0.016 +19670407, -0.62, -0.16, 0.43, -0.36, 0.48, 0.016 +19670410, -1.24, -0.51, 0.38, -0.23, 0.37, 0.016 +19670411, 0.71, 0.32, -0.11, 0.19, -0.73, 0.016 +19670412, -0.11, 0.15, 0.12, 0.27, 0.19, 0.016 +19670413, 0.65, 0.02, -0.35, 0.24, -0.66, 0.016 +19670414, 1.01, -0.22, -0.79, 0.77, -0.76, 0.016 +19670417, 0.64, -0.17, -0.07, 0.36, -0.33, 0.016 +19670418, 0.85, 0.11, -0.09, 0.15, -0.28, 0.016 +19670419, 0.12, 0.03, -0.11, 0.00, 0.10, 0.016 +19670420, 0.19, 0.18, -0.26, 0.14, -0.57, 0.016 +19670421, 0.26, 0.46, -0.21, 0.07, -0.60, 0.016 +19670424, 0.27, -0.30, -0.27, 0.50, -0.16, 0.016 +19670425, 0.55, -0.19, -0.20, 0.15, -0.20, 0.016 +19670426, -0.12, 0.18, -0.43, 0.37, -0.07, 0.016 +19670427, 0.81, 0.20, -0.55, 0.44, -0.74, 0.016 +19670428, 0.15, 0.26, 0.06, 0.23, -0.04, 0.016 +19670501, -0.08, 0.39, -0.24, 0.12, -0.07, 0.015 +19670502, -0.02, 0.53, 0.06, -0.07, -0.48, 0.015 +19670503, 0.28, 0.52, -0.10, -0.06, 0.04, 0.015 +19670504, 0.33, -0.09, -0.27, 0.13, 0.05, 0.015 +19670505, 0.12, 0.04, 0.37, -0.65, 0.73, 0.015 +19670508, 0.21, -0.26, 0.19, -0.76, 0.31, 0.015 +19670509, -1.04, -0.44, 0.67, -0.56, 0.39, 0.015 +19670510, -0.13, 0.52, 0.04, -0.34, -0.04, 0.015 +19670511, 0.49, 0.52, -0.29, 0.11, -0.48, 0.015 +19670512, -0.20, 0.45, -0.10, 0.18, -0.44, 0.015 +19670515, -0.74, 0.29, 0.19, -0.15, 0.43, 0.015 +19670516, 0.48, 0.16, -0.12, -0.07, -0.22, 0.015 +19670517, -0.27, 0.30, 0.24, -0.13, 0.14, 0.015 +19670518, -0.19, 0.38, 0.17, -0.40, 0.23, 0.015 +19670519, -0.42, 0.15, -0.13, -0.11, 0.09, 0.015 +19670522, -0.34, 0.31, -0.22, 0.21, -0.23, 0.015 +19670523, -0.43, 0.12, -0.15, 0.39, 0.15, 0.015 +19670524, -1.20, -0.41, 0.18, -0.23, 0.41, 0.015 +19670525, 0.99, -0.07, -0.22, 0.10, -0.09, 0.015 +19670526, -0.11, -0.11, 0.35, -0.03, -0.06, 0.015 +19670529, -0.48, 0.23, -0.07, 0.23, 0.18, 0.015 +19670531, -1.67, -1.00, 0.06, 0.30, 0.59, 0.015 +19670601, 1.18, 0.00, -0.13, 0.04, -0.50, 0.012 +19670602, -0.40, 0.40, -0.02, 0.01, 0.03, 0.012 +19670605, -1.65, -1.37, 0.09, 0.69, 0.51, 0.012 +19670606, 2.02, 0.83, -0.32, -0.15, -0.86, 0.012 +19670607, 0.86, 0.44, 0.08, -0.39, -0.29, 0.012 +19670608, 0.57, 0.36, -0.05, -0.23, -0.35, 0.012 +19670609, 0.26, 0.51, 0.10, -0.12, 0.19, 0.012 +19670612, 0.63, 0.58, -0.23, -0.14, -0.48, 0.012 +19670613, 0.60, 0.11, 0.05, 0.08, -0.25, 0.012 +19670614, -0.17, 0.38, -0.09, -0.02, -0.20, 0.012 +19670615, 0.17, 0.64, -0.03, 0.31, -0.25, 0.012 +19670616, 0.03, 0.17, 0.19, -0.12, 0.14, 0.012 +19670619, 0.03, 0.48, -0.18, 0.19, -0.22, 0.012 +19670620, -0.03, 0.31, 0.11, 0.09, -0.04, 0.012 +19670621, -0.25, 0.26, 0.06, -0.16, 0.25, 0.012 +19670622, -0.20, 0.46, -0.09, 0.13, -0.43, 0.012 +19670623, 0.07, 0.36, 0.15, -0.10, 0.06, 0.012 +19670626, -0.40, -0.07, 0.25, -0.01, 0.05, 0.012 +19670627, -0.34, 0.45, 0.13, -0.12, -0.10, 0.012 +19670628, 0.07, 0.55, 0.15, -0.31, -0.29, 0.012 +19670629, -0.47, -0.15, 0.32, -0.07, 0.40, 0.012 +19670630, -0.14, 0.53, 0.34, -0.32, 0.25, 0.012 +19670703, 0.35, 0.38, -0.02, 0.26, -0.17, 0.016 +19670705, 0.53, 0.30, -0.22, 0.39, -0.18, 0.016 +19670706, -0.06, 0.34, -0.26, 0.60, 0.11, 0.016 +19670707, 0.47, 0.51, -0.09, 0.35, -0.38, 0.016 +19670710, 0.46, 0.31, 0.20, 0.47, -0.28, 0.016 +19670711, 0.43, -0.33, 0.17, -0.38, 0.12, 0.016 +19670712, -0.03, 0.15, 0.01, 0.28, 0.17, 0.016 +19670713, 0.06, 0.41, 0.12, -0.15, 0.27, 0.016 +19670714, 0.37, 0.47, 0.48, 0.11, 0.16, 0.016 +19670717, 0.07, 0.24, 0.38, -0.28, 0.19, 0.016 +19670718, 0.71, -0.22, 0.66, 0.07, 0.63, 0.016 +19670719, 0.09, 0.02, 0.44, -0.51, 0.83, 0.016 +19670720, 0.14, -0.28, 0.48, -0.40, 0.70, 0.016 +19670721, 0.04, -0.34, 0.18, -0.37, 0.74, 0.016 +19670724, -0.37, -0.33, 0.19, -0.26, 0.18, 0.016 +19670725, 0.02, 0.40, 0.13, -0.26, -0.31, 0.016 +19670726, 0.42, 0.23, -0.20, 0.22, -0.44, 0.016 +19670727, 0.34, 0.40, -0.16, 0.45, 0.12, 0.016 +19670728, 0.17, 0.40, 0.15, -0.12, -0.13, 0.016 +19670731, 0.28, 0.23, -0.17, 0.02, 0.21, 0.016 +19670801, 0.62, -0.30, 0.53, 0.15, 0.16, 0.014 +19670802, 0.34, -0.36, 0.23, -0.03, 0.28, 0.014 +19670803, -0.18, -0.03, -0.23, 0.10, 0.02, 0.014 +19670804, 0.26, 0.56, -0.18, 0.03, -0.35, 0.014 +19670807, -0.16, 0.23, 0.07, 0.10, 0.01, 0.014 +19670808, 0.09, -0.03, 0.40, -0.08, 0.12, 0.014 +19670809, 0.11, -0.02, 0.21, -0.14, 0.31, 0.014 +19670810, -0.27, -0.09, 0.11, -0.14, 0.50, 0.014 +19670811, -0.48, -0.10, 0.14, 0.07, 0.33, 0.014 +19670814, -0.50, -0.32, -0.07, 0.12, 0.19, 0.014 +19670815, 0.11, 0.03, 0.06, -0.10, 0.18, 0.014 +19670816, -0.25, -0.12, 0.07, -0.07, -0.31, 0.014 +19670817, 0.13, 0.31, 0.13, -0.01, 0.25, 0.014 +19670818, 0.17, 0.24, -0.04, 0.23, 0.23, 0.014 +19670821, -0.50, 0.20, -0.01, 0.16, 0.13, 0.014 +19670822, -0.54, 0.00, 0.21, 0.00, 0.24, 0.014 +19670823, -0.10, -0.03, -0.13, -0.07, -0.38, 0.014 +19670824, -0.52, 0.13, 0.04, -0.19, 0.52, 0.014 +19670825, -0.42, -0.22, -0.01, -0.26, -0.08, 0.014 +19670828, 0.03, 0.10, 0.00, -0.19, -0.14, 0.014 +19670829, 0.25, -0.04, 0.25, 0.37, 0.01, 0.014 +19670830, 0.28, 0.50, -0.22, 0.39, -0.48, 0.014 +19670831, 0.65, 0.11, -0.08, 0.02, -0.32, 0.014 +19670901, 0.15, 0.42, 0.05, -0.09, -0.53, 0.016 +19670905, 0.53, -0.14, -0.03, 0.21, 0.16, 0.016 +19670906, 0.17, 0.17, -0.14, 0.03, -0.06, 0.016 +19670907, -0.06, 0.02, 0.05, -0.39, 0.07, 0.016 +19670908, 0.01, 0.42, -0.35, 0.01, 0.11, 0.016 +19670911, 0.15, 0.21, -0.32, 0.48, -0.11, 0.016 +19670912, 0.49, -0.06, -0.01, -0.08, -0.27, 0.016 +19670913, 0.97, -0.45, 0.30, -0.84, 0.17, 0.016 +19670914, 0.14, 0.05, 0.12, -0.35, 0.79, 0.016 +19670915, 0.06, 0.23, -0.12, 0.37, 0.34, 0.016 +19670918, 0.26, 0.16, 0.03, 0.15, 0.28, 0.016 +19670919, -0.44, -0.19, -0.20, -0.03, -0.07, 0.016 +19670920, 0.05, 0.67, -0.02, 0.17, -0.14, 0.016 +19670921, 0.56, -0.24, -0.35, 0.31, -0.58, 0.016 +19670922, 0.28, 0.38, -0.10, 0.14, -0.15, 0.016 +19670925, 0.49, -0.29, -0.49, 0.14, -0.10, 0.016 +19670926, -0.87, -0.13, 0.23, -0.14, 0.03, 0.016 +19670927, 0.05, 0.31, -0.40, 0.31, -0.25, 0.016 +19670928, 0.07, 0.25, -0.59, 0.03, -0.32, 0.016 +19670929, -0.01, 0.57, 0.00, -0.24, -0.26, 0.016 +19671002, -0.40, 0.16, 0.01, -0.36, 0.16, 0.018 +19671003, 0.32, 0.09, -0.51, 0.30, -0.18, 0.018 +19671004, -0.13, 0.28, -0.24, -0.04, -0.24, 0.018 +19671005, 0.20, 0.14, -0.29, 0.00, -0.56, 0.018 +19671006, 0.57, 0.18, -0.41, 0.27, -0.52, 0.018 +19671009, 0.20, 0.20, -0.02, -0.33, 0.01, 0.018 +19671010, -0.73, -0.17, 0.40, -0.24, 0.10, 0.018 +19671011, -0.45, -0.04, -0.08, 0.23, 0.07, 0.018 +19671012, -0.61, 0.05, -0.03, -0.12, -0.04, 0.018 +19671013, 0.22, 0.33, 0.09, -0.28, 0.24, 0.018 +19671016, -0.81, -0.10, -0.02, -0.09, 0.19, 0.018 +19671017, -0.19, 0.17, -0.21, 0.23, -0.14, 0.018 +19671018, 0.24, 0.09, -0.07, 0.16, -0.41, 0.018 +19671019, 0.09, -0.15, -0.58, 0.57, -0.27, 0.018 +19671020, -0.12, -0.36, -0.21, 0.24, -0.01, 0.018 +19671023, -0.48, -0.25, -0.29, -0.18, -0.17, 0.018 +19671024, -0.57, -0.32, -0.01, 0.13, -0.04, 0.018 +19671025, 0.14, -0.10, -0.35, 0.43, -0.34, 0.018 +19671026, 0.43, 0.26, -0.70, 0.36, -0.45, 0.018 +19671027, 0.02, 0.04, -0.04, -0.22, 0.00, 0.018 +19671030, -0.17, 0.16, -0.17, -0.01, -0.03, 0.018 +19671031, -0.90, -0.15, 0.23, -0.21, -0.01, 0.018 +19671101, -1.22, 0.21, -0.08, -0.50, -0.11, 0.018 +19671102, -0.49, -0.19, -0.09, -0.02, 0.41, 0.018 +19671103, -0.48, 0.53, -0.25, 0.03, -0.23, 0.018 +19671106, -0.31, 0.01, -0.24, 0.30, -0.36, 0.018 +19671108, -0.38, 0.13, 0.20, 0.02, 0.41, 0.018 +19671109, 0.41, -0.37, -0.09, 0.23, -0.12, 0.018 +19671110, 0.58, -0.10, 0.09, -0.02, 0.13, 0.018 +19671113, -0.31, -0.61, 0.28, -0.23, 0.24, 0.018 +19671114, -0.73, -0.88, 0.44, -0.34, 0.45, 0.018 +19671115, 0.41, -0.54, -0.24, 0.42, -0.58, 0.018 +19671116, 0.95, 0.17, -0.52, 0.24, -1.01, 0.018 +19671117, 0.35, 0.54, -0.17, 0.11, -0.50, 0.018 +19671120, -1.39, -0.98, -0.04, -0.30, 0.26, 0.018 +19671121, 1.71, 0.98, -0.56, 0.75, -1.16, 0.018 +19671122, 0.66, 0.46, -0.50, 0.10, 0.13, 0.018 +19671124, 0.21, -0.23, -0.14, -0.08, -0.16, 0.018 +19671127, 0.35, 0.24, -0.43, 0.32, -0.37, 0.018 +19671128, 0.50, 0.23, 0.13, 0.14, 0.07, 0.018 +19671129, 0.05, 0.29, 0.22, 0.03, 0.16, 0.018 +19671130, -0.45, 0.06, 0.25, 0.13, -0.01, 0.018 +19671201, 0.54, 0.51, -0.13, -0.11, -0.16, 0.017 +19671204, 0.64, 0.57, -0.08, 0.24, -0.60, 0.017 +19671205, 0.11, -0.19, -0.13, -0.25, 0.48, 0.017 +19671206, 0.36, 0.01, -0.16, 0.11, -0.43, 0.017 +19671207, -0.09, 0.12, 0.38, -0.07, -0.02, 0.017 +19671208, -0.09, 0.34, -0.30, 0.21, -0.26, 0.017 +19671211, -0.17, 0.71, -0.25, -0.10, -0.30, 0.017 +19671212, -0.01, 0.53, -0.36, 0.09, -0.40, 0.017 +19671213, 0.43, 0.44, -0.48, 0.32, -0.10, 0.017 +19671214, 0.16, 0.43, 0.23, -0.13, -0.04, 0.017 +19671215, -0.57, -0.21, 0.51, -0.26, 0.97, 0.017 +19671218, -0.29, 0.33, -0.08, -0.13, 0.70, 0.017 +19671219, -0.10, 0.29, -0.32, 0.15, -0.26, 0.017 +19671220, 0.57, 0.01, 0.02, 0.01, 0.12, 0.017 +19671221, 0.25, 0.21, 0.14, -0.20, 0.29, 0.017 +19671222, -0.12, 0.50, 0.34, -0.25, 0.66, 0.017 +19671226, 0.15, 0.46, 0.27, 0.02, 0.08, 0.017 +19671227, 0.67, 0.09, -0.22, 0.11, -0.41, 0.017 +19671228, -0.05, -0.06, 0.27, -0.25, -0.12, 0.017 +19671229, 0.64, 0.25, 0.02, 0.07, -0.32, 0.017 +19680102, -0.26, 0.47, 1.20, -0.86, 1.47, 0.018 +19680103, -0.56, -0.02, 0.84, -0.83, 1.17, 0.018 +19680104, -0.30, 0.04, 0.71, -1.12, 0.85, 0.018 +19680105, 0.64, 0.53, 0.42, -0.75, 0.75, 0.018 +19680108, 0.70, 0.11, 0.17, -0.43, 0.46, 0.018 +19680109, -0.15, 0.04, -0.06, 0.44, 0.12, 0.018 +19680110, 0.14, 0.36, 0.05, 0.11, -0.66, 0.018 +19680111, 0.26, 0.95, 0.26, -0.22, -0.20, 0.018 +19680112, 0.20, 0.73, -0.15, -0.13, 0.21, 0.018 +19680115, -0.15, 0.56, -0.07, 0.10, -0.22, 0.018 +19680116, -0.56, 0.59, 0.23, -0.10, 0.29, 0.018 +19680117, -0.10, 0.65, -0.08, -0.11, 0.32, 0.018 +19680118, -0.01, 0.66, 0.13, 0.15, -0.17, 0.018 +19680119, -0.34, 0.07, -0.16, 0.49, 0.16, 0.018 +19680122, -1.38, -0.41, 0.25, -0.06, 0.32, 0.018 +19680123, -0.51, -0.26, -0.30, 0.18, -0.17, 0.018 +19680124, -0.41, 0.30, 0.09, -0.07, 0.29, 0.018 +19680125, 0.05, -0.32, -0.02, -0.23, 0.02, 0.018 +19680126, 0.21, 0.57, 0.02, -0.27, -0.04, 0.018 +19680129, -0.16, -0.08, 0.03, -0.03, 0.50, 0.018 +19680130, -0.56, -0.55, 0.75, -0.57, 0.45, 0.018 +19680131, -0.83, -0.32, 0.48, -0.58, 0.73, 0.018 +19680201, 0.28, -0.42, 0.29, 0.07, 0.06, 0.020 +19680202, -0.34, -0.01, 0.36, 0.04, 0.30, 0.020 +19680205, -0.47, -0.42, 0.28, 0.16, 0.26, 0.020 +19680206, 0.07, -0.06, 0.09, -0.17, -0.13, 0.020 +19680207, 0.15, -0.05, 0.04, -0.05, 0.17, 0.020 +19680208, -1.42, -1.00, 0.07, -0.29, 0.70, 0.020 +19680209, -1.19, -0.69, 0.17, 0.03, 0.37, 0.020 +19680213, -1.05, -0.87, 0.28, -0.27, 0.08, 0.020 +19680214, 1.25, 0.24, -0.77, 0.46, -0.53, 0.020 +19680215, 0.24, 0.61, 0.24, -0.33, -0.02, 0.020 +19680216, -0.39, 0.16, 0.34, -0.18, 0.50, 0.020 +19680219, 0.35, 0.14, -0.36, 0.34, -0.20, 0.020 +19680220, 0.62, 0.37, -0.23, 0.35, -0.24, 0.020 +19680221, 0.42, 0.11, -0.47, 0.22, -0.35, 0.020 +19680223, -0.48, -0.17, 0.24, 0.02, 0.46, 0.020 +19680226, -0.79, -0.58, 0.23, -0.25, 0.33, 0.020 +19680227, 0.40, 0.00, -0.11, 0.03, -0.49, 0.020 +19680228, -0.54, 0.04, 0.11, -0.15, 0.66, 0.020 +19680229, -0.88, -0.42, 0.31, -0.09, 0.61, 0.020 +19680301, -0.45, -0.69, 0.21, -0.19, 0.29, 0.018 +19680304, -1.55, -1.07, 0.96, -0.32, 1.11, 0.018 +19680305, -0.42, -1.05, -0.18, 0.27, -0.43, 0.018 +19680306, 1.80, 0.60, -0.25, 0.18, -0.62, 0.018 +19680307, -0.16, 0.50, 0.01, -0.10, -0.02, 0.018 +19680308, -0.10, -0.12, 0.04, -0.58, 0.21, 0.018 +19680311, 1.35, 0.53, -0.29, 0.79, -0.87, 0.018 +19680312, 0.18, 0.50, -0.21, 0.27, -0.35, 0.018 +19680313, -0.18, 0.41, 0.19, -0.28, 0.26, 0.018 +19680314, -2.09, -0.88, 0.19, -0.03, 0.72, 0.018 +19680315, 0.77, -0.42, -0.37, 0.09, -0.60, 0.018 +19680318, 0.65, 0.57, -0.41, 0.61, -0.67, 0.018 +19680319, -0.64, 0.15, 0.28, -0.34, 0.24, 0.018 +19680320, -0.08, -0.11, -0.16, 0.16, -0.03, 0.018 +19680321, -0.81, -0.26, 0.23, -0.13, 0.36, 0.018 +19680322, 0.01, -0.39, 0.17, 0.08, 0.14, 0.018 +19680325, -0.13, -0.16, 0.02, -0.06, -0.04, 0.018 +19680326, 0.66, 0.07, -0.44, 0.23, -0.50, 0.018 +19680327, 0.85, 0.20, -0.50, 0.12, -0.47, 0.018 +19680328, -0.08, 0.11, 0.12, 0.10, 0.23, 0.018 +19680329, 0.70, 0.07, -0.32, 0.34, -0.20, 0.018 +19680401, 2.38, -0.63, -0.79, 0.63, -0.48, 0.021 +19680402, 0.20, 0.14, 0.08, 0.46, 0.08, 0.021 +19680403, 0.87, -0.16, -0.21, 0.48, -0.03, 0.021 +19680404, 0.46, 0.20, 0.14, -0.01, -0.39, 0.021 +19680405, -0.54, 0.39, 0.09, -0.10, -0.21, 0.021 +19680408, 1.73, -0.07, -0.10, 0.06, -0.45, 0.021 +19680410, 0.73, 0.01, -0.14, -0.05, -0.03, 0.021 +19680411, 0.95, 0.31, 0.26, 0.18, -0.16, 0.021 +19680415, 0.20, 0.62, -0.04, -0.06, 0.11, 0.021 +19680416, 0.15, 0.83, 0.05, 0.33, -0.03, 0.021 +19680417, 0.30, 0.72, 0.41, -0.13, 0.00, 0.021 +19680418, 0.31, 0.52, 0.50, -0.33, 0.05, 0.021 +19680419, -1.23, 0.10, -0.45, 0.35, -0.28, 0.021 +19680422, -0.49, 0.38, -0.26, 0.29, -0.27, 0.021 +19680423, 1.28, 0.48, -0.51, 0.41, -0.50, 0.021 +19680424, 0.27, 0.52, -0.02, 0.08, -0.22, 0.021 +19680425, 0.34, 0.35, -0.06, -0.05, 0.11, 0.021 +19680426, 0.34, 0.33, -0.13, 0.21, -0.12, 0.021 +19680429, 0.30, 0.21, 0.06, -0.16, -0.18, 0.021 +19680430, 0.14, 0.35, 0.25, -0.01, -0.32, 0.021 +19680501, 0.32, 0.12, 0.21, 0.17, -0.39, 0.020 +19680502, 0.62, -0.05, -0.14, 0.24, -0.27, 0.020 +19680503, 0.08, -0.07, -0.38, 0.36, 0.37, 0.020 +19680506, -0.18, 0.24, 0.24, -0.10, 0.24, 0.020 +19680507, 0.57, 0.37, 0.35, -0.35, 0.27, 0.020 +19680508, 0.06, 0.42, -0.18, 0.18, -0.16, 0.020 +19680509, -0.52, -0.10, -0.08, -0.17, 0.15, 0.020 +19680510, 0.34, 0.82, 0.10, -0.12, 0.02, 0.020 +19680513, -0.17, 0.61, -0.06, -0.11, 0.18, 0.020 +19680514, -0.07, 0.15, 0.19, -0.23, 0.04, 0.020 +19680515, -0.06, 0.30, 0.03, 0.20, 0.00, 0.020 +19680516, -0.44, 0.15, 0.41, -0.21, 0.08, 0.020 +19680517, -0.59, 0.44, 0.38, -0.30, 0.34, 0.020 +19680520, -0.47, 0.11, 0.08, -0.14, 0.17, 0.020 +19680521, 0.58, 0.54, -0.07, 0.24, -0.59, 0.020 +19680522, 0.32, 0.73, 0.27, -0.23, -0.40, 0.020 +19680523, -0.13, 0.40, -0.23, 0.10, -0.29, 0.020 +19680524, 0.31, 0.34, 0.32, 0.08, -0.18, 0.020 +19680527, -0.04, 0.76, -0.30, 0.34, -0.40, 0.020 +19680528, 0.62, 0.22, -0.47, 0.02, -0.14, 0.020 +19680529, 0.32, 0.14, -0.02, 0.35, -0.45, 0.020 +19680531, 0.76, 0.06, 0.20, 0.10, -0.40, 0.020 +19680603, 1.25, -0.20, -0.33, 0.28, -0.29, 0.025 +19680604, 0.53, 0.42, 0.32, 0.27, -0.08, 0.025 +19680605, -0.47, -0.10, 0.20, 0.26, 0.32, 0.025 +19680606, 0.90, 0.59, 0.01, -0.09, -0.61, 0.025 +19680607, 0.67, 0.37, -0.17, 0.14, -0.10, 0.025 +19680610, 0.10, -0.11, -0.12, 0.10, -0.13, 0.025 +19680611, 0.23, 0.24, 0.28, -0.03, 0.09, 0.025 +19680613, -0.44, -0.20, -0.23, -0.02, 0.70, 0.025 +19680614, -0.16, -0.17, -0.11, -0.63, 0.42, 0.025 +19680617, -1.12, -0.52, -0.02, -0.57, 0.88, 0.025 +19680618, -0.12, 0.06, -0.06, -0.27, 0.15, 0.025 +19680620, 0.51, -0.29, -0.10, 0.16, -0.31, 0.025 +19680621, 0.14, -0.12, 0.26, -0.41, 0.16, 0.025 +19680624, -0.39, -0.26, 0.32, -0.54, 0.70, 0.025 +19680625, -0.44, -0.41, -0.03, 0.08, -0.11, 0.025 +19680627, -0.17, 0.00, -0.04, 0.14, 0.24, 0.025 +19680628, -0.34, 0.43, 0.43, -0.16, 0.55, 0.025 +19680701, -0.23, 0.14, 0.60, 0.03, 0.17, 0.028 +19680702, 0.41, 0.26, -0.41, -0.21, -0.29, 0.028 +19680703, 1.25, 0.49, -0.53, 0.31, -0.30, 0.028 +19680708, 1.06, 0.26, -0.36, -0.10, -0.36, 0.028 +19680709, 0.27, 0.00, 0.27, -0.18, 0.39, 0.028 +19680711, 0.10, 0.02, 0.37, -0.46, 1.07, 0.028 +19680712, -0.06, 0.18, 0.32, -0.21, 0.19, 0.028 +19680715, -0.17, 0.16, 0.35, -0.07, 0.30, 0.028 +19680716, -0.54, 0.13, 0.40, -0.39, 0.50, 0.028 +19680718, -0.35, -0.13, 0.27, -0.04, 0.42, 0.028 +19680719, -0.94, -0.21, 1.09, -0.61, 0.87, 0.028 +19680722, -1.43, -0.87, 1.42, -0.20, 0.58, 0.028 +19680723, -0.25, -0.35, -0.09, 0.02, -0.47, 0.028 +19680725, -1.30, -0.14, 0.88, -0.26, 0.49, 0.028 +19680726, 0.27, -0.53, 0.22, -0.45, 0.47, 0.028 +19680729, -0.88, -0.63, 0.71, -0.11, -0.11, 0.028 +19680730, 0.11, -0.12, -0.10, -0.15, -0.26, 0.028 +19680801, -0.54, -0.01, -0.05, 0.39, 0.35, 0.023 +19680802, -0.56, 0.03, 0.04, -0.02, -0.16, 0.023 +19680805, 0.39, 0.46, -0.33, 0.13, -0.38, 0.023 +19680806, 0.45, 0.38, -0.10, -0.19, -0.06, 0.023 +19680808, -0.25, 0.01, 0.47, 0.03, 0.37, 0.023 +19680809, 0.03, -0.02, 0.19, -0.10, -0.23, 0.023 +19680812, 0.99, 0.33, -0.48, 0.14, -0.34, 0.023 +19680813, 0.45, 0.00, -0.02, 0.08, -0.19, 0.023 +19680815, -0.39, 0.48, 0.30, -0.10, -0.08, 0.023 +19680816, 0.59, 0.05, 0.03, -0.20, 0.11, 0.023 +19680819, 0.34, 0.27, 0.09, -0.21, 0.01, 0.023 +19680820, 0.00, 0.13, -0.13, -0.14, 0.21, 0.023 +19680822, -0.32, -0.08, -0.11, 0.14, 0.34, 0.023 +19680823, 0.03, 0.41, 0.32, -0.31, 0.25, 0.023 +19680826, 0.23, -0.24, 0.28, -0.10, 0.09, 0.023 +19680827, -0.19, 0.10, 0.17, -0.23, -0.02, 0.023 +19680829, -0.12, -0.15, 0.13, 0.25, 0.07, 0.023 +19680830, 0.21, 0.11, 0.18, -0.19, 0.02, 0.023 +19680903, 0.37, -0.17, 0.27, 0.04, -0.18, 0.025 +19680904, 0.61, -0.02, 0.13, 0.13, 0.02, 0.025 +19680905, 0.70, -0.14, -0.27, -0.40, 0.38, 0.025 +19680906, 0.42, 0.19, -0.45, -0.02, 0.11, 0.025 +19680909, 0.13, 0.42, 0.04, -0.07, -0.01, 0.025 +19680910, -0.50, 0.04, 0.44, -0.17, -0.02, 0.025 +19680912, -0.20, 0.39, 0.08, 0.30, 0.48, 0.025 +19680913, 0.37, 0.34, -0.47, 0.14, -0.25, 0.025 +19680916, 0.38, 0.02, 0.05, -0.01, 0.26, 0.025 +19680917, 0.24, -0.08, -0.08, -0.26, -0.09, 0.025 +19680919, 0.16, 0.24, -0.12, -0.04, 0.00, 0.025 +19680920, 0.11, 0.05, 0.57, -0.40, 0.12, 0.025 +19680923, 0.56, -0.08, -0.21, -0.01, -0.14, 0.025 +19680924, 0.37, 0.39, -0.43, 0.06, -0.10, 0.025 +19680926, -0.19, 0.16, 0.19, -0.40, -0.05, 0.025 +19680927, 0.08, 0.63, 0.25, -0.53, 0.02, 0.025 +19680930, 0.42, 0.26, 0.28, -0.27, 0.34, 0.025 +19681001, 0.16, 0.40, 0.26, -0.07, 0.14, 0.024 +19681003, 0.34, -0.09, 0.47, 0.01, 0.23, 0.024 +19681004, 0.26, -0.44, 0.17, 0.05, 0.13, 0.024 +19681007, -0.03, -0.12, -0.07, 0.23, 0.07, 0.024 +19681008, -0.05, -0.34, 0.19, -0.02, -0.01, 0.024 +19681010, -0.42, 0.13, -0.09, -0.06, 0.11, 0.024 +19681011, 0.00, 0.44, 0.05, -0.27, 0.01, 0.024 +19681014, 0.16, 0.11, 0.05, 0.06, 0.10, 0.024 +19681015, 0.19, 0.14, 0.22, -0.19, 0.27, 0.024 +19681017, 0.49, -0.19, -0.16, 0.05, 0.45, 0.024 +19681018, 0.69, -0.30, -0.04, 0.00, -0.01, 0.024 +19681021, 0.14, -0.08, 0.28, -0.09, 0.16, 0.024 +19681022, -0.34, 0.16, 0.21, -0.04, 0.03, 0.024 +19681024, -0.63, 0.46, 0.32, -0.18, -0.04, 0.024 +19681025, 0.31, 0.03, 0.35, -0.54, 0.13, 0.024 +19681028, -0.33, -0.14, 0.13, -0.21, 0.25, 0.024 +19681029, -0.57, -0.33, 0.12, 0.04, 0.42, 0.024 +19681031, 0.05, -0.27, 0.38, -0.11, 0.39, 0.024 +19681101, -0.37, -0.16, 0.04, 0.27, -0.08, 0.025 +19681104, 0.01, -0.24, -0.42, 0.49, 0.01, 0.025 +19681106, 0.18, 0.11, 0.19, -0.04, 0.31, 0.025 +19681107, 0.27, -0.28, -0.42, 0.31, -0.18, 0.025 +19681108, 0.52, 0.31, 0.03, -0.23, 0.14, 0.025 +19681112, 0.74, 0.25, -0.27, 0.17, -0.50, 0.025 +19681113, 0.56, 0.35, -0.35, 0.28, -0.59, 0.025 +19681114, 0.10, 0.46, -0.18, 0.08, -0.23, 0.025 +19681115, 0.56, 0.27, 0.14, 0.22, -0.13, 0.025 +19681118, 0.16, -0.01, 0.23, -0.08, 0.20, 0.025 +19681119, 0.29, 0.15, 0.11, -0.19, -0.35, 0.025 +19681121, -0.05, 0.32, 0.22, -0.08, -0.43, 0.025 +19681122, 0.45, 0.27, -0.01, -0.21, -0.10, 0.025 +19681125, 0.26, 0.18, -0.05, -0.12, 0.01, 0.025 +19681126, 0.66, -0.07, 0.05, -0.02, -0.35, 0.025 +19681127, 0.42, 0.32, -0.28, -0.03, -0.37, 0.025 +19681129, 0.56, 0.05, 0.12, -0.43, 0.22, 0.025 +19681202, -0.19, 0.41, -0.40, -0.03, 0.57, 0.024 +19681203, -0.10, 0.10, -0.16, -0.16, -0.11, 0.024 +19681205, -0.28, 0.44, 0.15, -0.04, -0.07, 0.024 +19681206, 0.26, 0.30, -0.01, 0.02, 0.35, 0.024 +19681209, -0.18, 0.61, -0.18, -0.27, 0.06, 0.024 +19681210, -0.19, 0.30, 0.09, -0.26, -0.09, 0.024 +19681212, -0.05, 0.29, 0.32, -0.27, 0.17, 0.024 +19681213, 0.28, 0.18, 0.25, -0.57, 0.40, 0.024 +19681216, -0.40, 0.12, 0.06, -0.14, 0.00, 0.024 +19681217, -0.46, -0.17, -0.23, 0.17, -0.06, 0.024 +19681219, 0.23, -0.04, -0.22, 0.30, -0.46, 0.024 +19681220, -0.49, 0.60, -0.04, -0.20, 0.23, 0.024 +19681223, -1.05, 0.26, 0.25, -0.06, 0.29, 0.024 +19681224, -0.13, 0.12, -0.11, -0.07, -0.15, 0.024 +19681226, 0.12, 0.10, 0.13, -0.21, 0.00, 0.024 +19681227, -0.39, 0.18, 0.40, -0.16, 0.32, 0.024 +19681230, -1.04, -0.51, 0.01, 0.24, 0.31, 0.024 +19681231, 0.08, 0.40, -0.25, -0.09, -0.02, 0.024 +19690102, 0.08, 0.30, -0.04, -0.04, 0.16, 0.024 +19690103, -0.01, -0.04, -0.02, 0.23, 0.27, 0.024 +19690106, -1.51, -0.34, 0.46, 0.08, 0.25, 0.024 +19690107, -1.37, -0.98, 0.01, 0.29, -0.27, 0.024 +19690108, -0.51, -0.38, -0.07, 0.02, -0.29, 0.024 +19690109, 0.40, 0.13, 0.02, 0.21, -0.16, 0.024 +19690110, -0.30, -0.02, 0.45, -0.33, 0.29, 0.024 +19690113, -0.73, -0.93, 0.47, -0.10, 0.58, 0.024 +19690114, 0.73, 0.01, -0.23, -0.05, -0.41, 0.024 +19690115, 0.60, 0.58, -0.03, -0.13, 0.05, 0.024 +19690116, 0.55, 0.36, 0.06, -0.18, -0.12, 0.024 +19690117, -0.10, 0.33, -0.09, 0.13, 0.20, 0.024 +19690120, -0.20, 0.41, 0.11, -0.39, 0.09, 0.024 +19690121, -0.13, 0.11, -0.02, -0.01, -0.19, 0.024 +19690122, 0.39, 0.30, -0.21, -0.46, -0.08, 0.024 +19690123, 0.52, 0.39, -0.05, -0.40, 0.32, 0.024 +19690124, -0.06, 0.02, 0.01, -0.07, 0.09, 0.024 +19690127, -0.01, -0.03, 0.19, 0.12, 0.11, 0.024 +19690128, 0.02, 0.04, 0.34, -0.22, -0.03, 0.024 +19690129, 0.07, -0.14, 0.64, -0.29, 0.09, 0.024 +19690130, -0.03, -0.26, 0.07, -0.07, 0.02, 0.024 +19690131, 0.37, -0.32, -0.35, 0.08, 0.42, 0.024 +19690203, -0.09, -0.10, 0.43, -0.35, 0.46, 0.026 +19690204, 0.00, 0.02, 0.29, -0.06, 0.01, 0.026 +19690205, 0.14, -0.33, 0.16, 0.23, -0.03, 0.026 +19690206, 0.32, -0.40, -0.15, 0.35, -0.14, 0.026 +19690207, 0.09, 0.08, -0.16, 0.28, -0.03, 0.026 +19690211, 0.08, 0.15, -0.11, 0.12, -0.37, 0.026 +19690212, -0.05, -0.02, -0.39, 0.08, 0.05, 0.026 +19690213, 0.03, -0.22, -0.22, 0.35, 0.00, 0.026 +19690214, -0.11, -0.05, 0.01, -0.03, 0.03, 0.026 +19690217, -1.28, -0.48, 0.63, 0.13, -0.01, 0.026 +19690218, -1.20, -0.62, -0.04, 0.26, 0.18, 0.026 +19690219, -0.81, -0.18, 0.30, 0.10, 0.16, 0.026 +19690220, -0.96, -0.50, 0.06, 0.39, 0.08, 0.026 +19690224, -1.27, -0.78, 0.32, 0.31, 0.05, 0.026 +19690225, -0.75, -0.49, -0.19, 0.12, 0.04, 0.026 +19690226, 0.41, -0.16, -0.33, -0.04, -0.09, 0.026 +19690227, -0.47, -0.23, 0.23, 0.11, 0.13, 0.026 +19690228, -0.05, -0.07, 0.06, -0.01, 0.17, 0.026 +19690303, 0.17, -0.36, -0.18, 0.18, 0.09, 0.023 +19690304, 0.99, 0.06, 0.14, -0.23, 0.20, 0.023 +19690305, 0.33, -0.04, -0.24, -0.17, 0.17, 0.023 +19690306, -1.18, -0.24, 0.63, 0.04, -0.02, 0.023 +19690307, -0.18, -0.76, 0.40, -0.37, 0.20, 0.023 +19690310, 0.35, 0.08, -0.44, 0.28, 0.04, 0.023 +19690311, 0.40, 0.21, 0.09, -0.13, 0.12, 0.023 +19690312, -0.29, -0.02, 0.22, 0.06, 0.31, 0.023 +19690313, -0.71, -0.18, 0.28, -0.36, 0.26, 0.023 +19690314, -0.51, -0.36, 0.21, -0.19, 0.01, 0.023 +19690317, 0.21, -0.29, -0.59, 0.36, -0.38, 0.023 +19690318, 0.29, 0.38, -0.11, -0.14, -0.17, 0.023 +19690319, 0.71, 0.04, -0.25, -0.17, -0.49, 0.023 +19690320, 0.62, 0.36, -0.12, -0.02, -0.23, 0.023 +19690321, -0.20, 0.34, 0.23, -0.04, 0.06, 0.023 +19690324, -0.16, 0.09, -0.01, 0.07, -0.08, 0.023 +19690325, 0.12, -0.02, -0.24, -0.03, 0.10, 0.023 +19690326, 0.64, -0.20, 0.07, -0.23, -0.03, 0.023 +19690327, 0.68, 0.13, -0.15, -0.14, -0.17, 0.023 +19690328, 0.39, 0.33, -0.30, -0.01, -0.18, 0.023 +19690401, -0.14, 0.12, 0.44, -0.04, 0.14, 0.025 +19690402, -0.71, -0.22, 0.31, 0.04, 0.05, 0.025 +19690403, -0.09, -0.02, 0.16, 0.16, 0.18, 0.025 +19690407, -0.88, -0.30, -0.17, 0.14, 0.01, 0.025 +19690408, 0.21, -0.05, 0.37, -0.38, 0.04, 0.025 +19690409, 0.79, -0.17, -0.43, -0.11, -0.06, 0.025 +19690410, 0.45, -0.05, 0.10, -0.08, 0.14, 0.025 +19690411, 0.09, 0.11, 0.08, -0.22, 0.13, 0.025 +19690414, -0.14, -0.14, 0.03, -0.01, 0.01, 0.025 +19690415, -0.10, -0.15, -0.17, 0.28, -0.10, 0.025 +19690416, -0.90, 0.06, 0.36, 0.27, 0.06, 0.025 +19690417, 0.11, -0.03, 0.08, -0.04, 0.27, 0.025 +19690418, 0.38, -0.23, 0.22, -0.10, -0.11, 0.025 +19690421, -0.77, -0.31, 0.23, 0.23, 0.27, 0.025 +19690422, 0.16, -0.18, -0.31, 0.18, -0.10, 0.025 +19690423, 0.10, 0.31, 0.00, 0.00, -0.16, 0.025 +19690424, 0.42, -0.04, -0.04, 0.03, -0.23, 0.025 +19690425, 0.45, 0.04, -0.08, -0.13, 0.01, 0.025 +19690428, 0.34, -0.08, -0.14, -0.03, -0.27, 0.025 +19690429, 0.83, 0.25, -0.50, 0.34, -0.18, 0.025 +19690430, 0.86, 0.33, -0.50, -0.27, -0.07, 0.025 +19690501, -0.10, 0.32, -0.01, -0.03, 0.43, 0.023 +19690502, 0.46, -0.06, 0.09, -0.10, -0.10, 0.023 +19690505, 0.45, 0.24, -0.27, -0.09, 0.01, 0.023 +19690506, 0.45, -0.03, -0.13, -0.22, -0.18, 0.023 +19690507, -0.21, -0.05, 0.33, -0.01, 0.02, 0.023 +19690508, 0.34, -0.14, -0.21, 0.03, -0.22, 0.023 +19690509, 0.09, -0.22, 0.18, -0.29, 0.37, 0.023 +19690512, -0.19, -0.21, 0.07, -0.01, 0.33, 0.023 +19690513, 0.40, 0.00, -0.18, -0.09, 0.00, 0.023 +19690514, 0.68, -0.35, 0.09, 0.05, 0.02, 0.023 +19690515, -0.30, 0.09, 0.21, -0.14, 0.07, 0.023 +19690516, 0.02, -0.23, -0.17, 0.14, -0.13, 0.023 +19690519, -0.87, 0.22, 0.26, -0.08, 0.18, 0.023 +19690520, -0.84, 0.18, 0.22, 0.12, 0.04, 0.023 +19690521, 0.42, 0.06, -0.17, -0.17, 0.10, 0.023 +19690522, 0.19, -0.16, 0.31, -0.24, 0.04, 0.023 +19690523, -0.02, -0.09, -0.10, 0.35, -0.04, 0.023 +19690526, -0.20, 0.00, -0.05, 0.06, -0.01, 0.023 +19690527, -0.79, -0.03, 0.19, 0.26, 0.03, 0.023 +19690528, -0.26, 0.18, -0.32, -0.14, 0.02, 0.023 +19690529, 0.23, 0.10, 0.11, -0.23, 0.34, 0.023 +19690602, -0.54, 0.09, -0.03, 0.23, -0.32, 0.024 +19690603, -0.34, -0.27, 0.11, 0.00, 0.10, 0.024 +19690604, -0.05, -0.04, -0.05, 0.26, -0.15, 0.024 +19690605, 0.08, -0.13, -0.16, 0.24, -0.08, 0.024 +19690606, -0.69, -0.13, -0.19, 0.39, 0.20, 0.024 +19690609, -0.98, -0.17, -0.26, 0.25, 0.07, 0.024 +19690610, -0.79, -0.06, -0.06, 0.02, 0.04, 0.024 +19690611, -1.00, -0.38, 0.22, 0.02, 0.25, 0.024 +19690612, -1.42, -0.59, 0.29, 0.20, -0.11, 0.024 +19690613, 0.31, -0.27, -0.15, -0.17, -0.10, 0.024 +19690616, -0.40, -0.42, 0.06, 0.57, -0.10, 0.024 +19690617, -0.52, -0.71, -0.23, 0.37, 0.03, 0.024 +19690618, -0.22, -0.12, 0.16, 0.30, -0.08, 0.024 +19690619, -0.87, -0.88, 0.09, 0.23, 0.29, 0.024 +19690620, -0.74, -0.66, 0.53, 0.14, 0.12, 0.024 +19690623, -0.65, -0.97, -0.22, 0.18, -0.23, 0.024 +19690624, 1.09, -0.06, -0.53, 0.20, -0.32, 0.024 +19690625, -0.41, -0.19, 0.26, 0.47, 0.02, 0.024 +19690626, 0.17, -0.33, -0.62, 0.51, -0.82, 0.024 +19690627, 0.07, 0.03, -0.14, 0.04, -0.20, 0.024 +19690630, 0.46, 0.25, -0.17, 0.07, -0.20, 0.024 +19690701, 0.46, 0.36, -0.59, -0.41, -0.37, 0.025 +19690702, 0.86, 0.26, -0.46, 0.12, -0.43, 0.025 +19690703, 0.74, 0.38, -0.35, -0.08, -0.28, 0.025 +19690707, -0.68, -0.04, 0.55, 0.10, 0.72, 0.025 +19690708, -1.38, 0.13, 0.46, 0.27, 0.75, 0.025 +19690709, -0.80, -0.25, 0.10, -0.17, 0.25, 0.025 +19690710, -1.61, -0.39, 0.44, 0.18, 0.55, 0.025 +19690711, 0.29, -0.64, 0.05, 0.30, 0.01, 0.025 +19690714, -1.37, -0.24, 0.69, -0.25, 0.66, 0.025 +19690715, -0.43, -0.58, 0.13, 0.34, -0.03, 0.025 +19690716, 1.07, 0.09, -0.60, 0.03, -0.46, 0.025 +19690717, 0.53, -0.18, -0.07, 0.10, 0.21, 0.025 +19690718, -0.78, 0.25, 0.34, -0.09, 0.26, 0.025 +19690722, -1.57, 0.13, 0.63, 0.43, 0.61, 0.025 +19690723, -0.53, -0.69, -0.42, 0.18, -0.36, 0.025 +19690724, -0.42, -0.13, 0.38, -0.17, 0.17, 0.025 +19690725, -1.03, -0.29, 0.61, 0.08, 0.84, 0.025 +19690728, -2.26, -1.61, 1.47, 0.62, 0.77, 0.025 +19690729, -0.93, -0.79, 0.41, 0.05, 0.02, 0.025 +19690730, 0.52, 0.16, -1.09, -0.03, -0.93, 0.025 +19690731, 2.22, 0.49, -1.26, -0.16, -0.94, 0.025 +19690801, 1.97, 0.65, -0.43, -0.25, -0.66, 0.024 +19690804, -0.53, -0.04, 0.31, 0.04, 0.07, 0.024 +19690805, 0.42, -0.46, -0.41, 0.23, -0.55, 0.024 +19690806, 0.65, 0.25, -0.57, 0.31, -0.37, 0.024 +19690807, 0.09, -0.03, 0.03, 0.06, 0.06, 0.024 +19690808, -0.03, -0.08, 0.19, 0.14, 0.24, 0.024 +19690811, -0.59, 0.02, 0.12, 0.19, 0.10, 0.024 +19690812, -0.82, -0.20, 0.27, 0.29, 0.11, 0.024 +19690813, 0.03, -0.28, -0.51, 0.08, -0.59, 0.024 +19690814, 0.75, 0.32, -0.99, 0.17, -0.75, 0.024 +19690815, 0.81, -0.17, -0.38, 0.18, -0.18, 0.024 +19690818, 0.72, 0.38, -0.60, 0.06, -0.41, 0.024 +19690819, 0.54, 0.29, -0.43, 0.02, -0.20, 0.024 +19690820, -0.02, -0.05, 0.18, -0.05, -0.09, 0.024 +19690821, 0.25, 0.02, -0.27, 0.00, -0.23, 0.024 +19690822, 0.65, -0.02, -0.25, -0.01, -0.18, 0.024 +19690825, -0.93, 0.25, 0.62, 0.03, 0.60, 0.024 +19690826, -0.74, -0.15, 0.15, 0.08, -0.01, 0.024 +19690827, 0.27, 0.06, -0.39, 0.02, -0.45, 0.024 +19690828, 0.41, -0.23, -0.38, 0.16, -0.32, 0.024 +19690829, 0.74, 0.01, 0.00, -0.54, -0.12, 0.024 +19690902, -0.11, -0.07, 0.42, -0.25, 0.17, 0.030 +19690903, -0.71, -0.20, 0.41, 0.14, 0.65, 0.030 +19690904, -0.87, -0.01, -0.15, 0.27, 0.08, 0.030 +19690905, -0.65, -0.04, 0.01, 0.11, 0.12, 0.030 +19690908, -1.07, -0.14, 0.38, 0.14, 0.53, 0.030 +19690909, 0.74, -0.24, -0.46, 0.24, -0.52, 0.030 +19690910, 1.64, -0.17, -0.77, -0.23, -0.73, 0.030 +19690911, -0.70, 0.51, 0.13, 0.46, 0.36, 0.030 +19690912, 0.05, -0.12, -0.13, 0.00, 0.00, 0.030 +19690915, 0.62, 0.30, -0.67, 0.09, -0.47, 0.030 +19690916, 0.12, 0.21, -0.66, 0.53, -0.30, 0.030 +19690917, -0.31, 0.12, -0.44, 0.55, -0.07, 0.030 +19690918, 0.28, 0.21, -0.55, 0.49, -0.11, 0.030 +19690919, 0.35, 0.36, -0.94, 0.14, -0.59, 0.030 +19690922, 0.41, -0.09, -0.67, 0.34, -0.62, 0.030 +19690923, -0.01, 0.25, 0.10, 0.22, -0.13, 0.030 +19690924, -0.19, -0.06, 0.13, 0.16, 0.12, 0.030 +19690925, -0.75, 0.19, 0.66, -0.26, 0.86, 0.030 +19690926, -0.70, 0.16, 0.18, -0.02, 0.18, 0.030 +19690929, -0.73, 0.07, 0.09, 0.09, -0.06, 0.030 +19690930, -0.32, 0.12, -0.38, 0.28, -0.37, 0.030 +19691001, -0.63, 0.12, 0.23, -0.07, 0.15, 0.026 +19691002, 0.86, -0.04, -0.76, -0.02, -0.65, 0.026 +19691003, -0.08, -0.22, 0.18, 0.09, -0.01, 0.026 +19691006, 0.17, -0.04, -0.49, -0.07, -0.79, 0.026 +19691007, -0.23, 0.04, 0.06, 0.32, 0.20, 0.026 +19691008, -0.53, -0.08, 0.11, 0.28, 0.18, 0.026 +19691009, 0.33, -0.27, -0.49, 0.15, -0.32, 0.026 +19691010, 0.65, 0.29, -0.65, -0.10, -0.44, 0.026 +19691013, 1.25, 0.83, -0.72, -0.28, -0.67, 0.026 +19691014, 1.28, 0.15, 0.08, 0.18, 0.06, 0.026 +19691015, 0.04, 0.55, 0.20, -0.07, 0.48, 0.026 +19691016, 0.69, 0.26, -0.08, -0.16, 0.25, 0.026 +19691017, -0.09, 0.48, -0.12, 0.05, 0.14, 0.026 +19691020, 0.30, 0.46, 0.02, -0.01, -0.13, 0.026 +19691021, 0.79, 0.44, -0.22, -0.07, -0.14, 0.026 +19691022, 0.61, 0.13, 0.21, 0.05, 0.43, 0.026 +19691023, -0.33, 0.06, 0.08, -0.10, 0.02, 0.026 +19691024, 0.69, 0.00, -0.88, 0.10, -0.57, 0.026 +19691027, -0.10, 0.40, -0.12, -0.10, -0.37, 0.026 +19691028, -0.31, -0.13, 0.17, 0.01, 0.27, 0.026 +19691029, -0.90, 0.02, 0.52, -0.04, 0.53, 0.026 +19691030, 0.17, 0.14, -0.28, -0.20, -0.39, 0.026 +19691031, 0.34, 0.04, -0.03, 0.10, -0.14, 0.026 +19691103, -0.07, -0.23, 0.25, -0.01, 0.29, 0.027 +19691104, 0.07, 0.22, -0.49, -0.10, -0.38, 0.027 +19691105, 0.46, -0.05, -0.39, 0.12, 0.20, 0.027 +19691106, 0.14, -0.12, -0.18, 0.20, 0.07, 0.027 +19691107, 0.65, -0.18, -0.06, 0.14, 0.23, 0.027 +19691110, 0.06, -0.22, 0.05, 0.06, -0.06, 0.027 +19691111, -0.37, -0.03, 0.29, -0.05, 0.30, 0.027 +19691112, -0.17, 0.10, -0.16, -0.03, -0.01, 0.027 +19691113, -0.59, -0.38, 0.35, 0.37, 0.24, 0.027 +19691114, -0.43, -0.15, 0.13, -0.05, 0.25, 0.027 +19691117, -0.79, -0.27, 0.15, 0.29, -0.09, 0.027 +19691118, -0.09, -0.45, -0.07, 0.05, -0.04, 0.027 +19691119, -0.55, -0.27, 0.55, -0.11, 0.51, 0.027 +19691120, -1.12, -0.55, 0.37, 0.05, 0.49, 0.027 +19691121, -0.69, -0.17, 0.35, 0.18, 0.42, 0.027 +19691124, -1.08, -0.35, -0.10, 0.26, 0.08, 0.027 +19691125, -0.25, 0.12, -0.54, 0.04, -0.64, 0.027 +19691126, 0.36, 0.21, -0.95, 0.08, -0.82, 0.027 +19691128, 0.64, 0.32, -0.81, -0.08, -0.77, 0.027 +19691201, -0.76, -0.46, 0.23, 0.63, 0.13, 0.029 +19691202, -0.68, -0.07, -0.25, 0.42, 0.14, 0.029 +19691203, -1.23, -0.57, -0.02, 0.39, 0.21, 0.029 +19691204, 0.40, 0.03, -0.95, -0.06, -0.84, 0.029 +19691205, -0.38, -0.49, 0.44, 0.13, 0.57, 0.029 +19691208, -1.27, -0.39, 0.20, 0.49, 0.29, 0.029 +19691209, -0.20, -0.42, -0.48, 0.34, -0.29, 0.029 +19691210, -0.07, -0.10, -0.73, 0.29, -0.67, 0.029 +19691211, 0.07, -0.05, -0.24, 0.06, -0.01, 0.029 +19691212, 0.30, 0.04, -0.28, 0.17, -0.24, 0.029 +19691215, -0.29, 0.07, -0.13, -0.09, -0.25, 0.029 +19691216, -1.00, -0.53, -0.06, 0.04, 0.01, 0.029 +19691217, -0.54, -0.35, -0.07, 0.03, -0.06, 0.029 +19691218, 1.59, -0.18, -0.79, 0.17, -0.37, 0.029 +19691219, 0.82, 0.15, 0.01, -0.06, 0.01, 0.029 +19691222, -1.00, -0.31, 0.35, 0.38, 0.29, 0.029 +19691223, -0.53, -0.48, 0.29, -0.07, 0.50, 0.029 +19691224, 1.17, 0.44, -0.15, -0.63, -0.59, 0.029 +19691226, 0.81, 0.07, -0.04, -0.32, -0.58, 0.029 +19691229, -0.75, -0.33, -0.04, 0.18, 0.08, 0.029 +19691230, 0.39, -0.24, -0.16, -0.12, -0.16, 0.029 +19691231, 0.55, 0.40, -0.26, 0.12, -0.37, 0.029 +19700102, 1.18, 1.39, 0.97, -1.14, 0.43, 0.029 +19700105, 0.59, 0.75, 0.76, -0.55, 0.75, 0.029 +19700106, -0.74, 0.06, 0.28, -0.02, 0.31, 0.029 +19700107, -0.15, 0.39, -0.35, 0.26, -0.41, 0.029 +19700108, 0.04, 0.18, -0.18, -0.04, -0.29, 0.029 +19700109, -0.31, 0.22, 0.08, 0.08, 0.28, 0.029 +19700112, -0.80, -0.07, -0.04, 0.07, -0.02, 0.029 +19700113, 0.05, -0.22, -0.50, 0.23, -0.51, 0.029 +19700114, -0.25, -0.17, -0.28, 0.36, 0.24, 0.029 +19700115, -0.04, -0.11, -0.64, 0.41, -0.42, 0.029 +19700116, -0.82, -0.04, 0.70, -0.22, 0.80, 0.029 +19700119, -1.31, 0.53, 1.06, -0.79, 1.24, 0.029 +19700120, 0.17, 0.28, -0.39, -0.13, -0.52, 0.029 +19700121, 0.06, 0.08, 0.15, -0.04, 0.22, 0.029 +19700122, 0.11, 0.12, -0.11, 0.00, -0.22, 0.029 +19700123, -1.06, -0.13, 0.42, 0.37, 0.28, 0.029 +19700126, -1.13, -0.28, 0.42, -0.22, 0.69, 0.029 +19700127, -0.67, 0.18, -0.32, -0.14, 0.09, 0.029 +19700128, -0.99, 0.38, -0.14, 0.25, 0.05, 0.029 +19700129, -1.33, -0.10, 0.44, -0.26, 0.60, 0.029 +19700130, -0.88, -0.15, 0.93, -0.35, 0.55, 0.029 +19700202, 0.82, -0.64, -0.13, 0.15, 0.02, 0.032 +19700203, 1.26, -0.14, -0.30, -0.27, 0.01, 0.032 +19700204, -0.74, -0.30, 0.73, 0.04, 0.79, 0.032 +19700205, -0.41, -0.23, -0.06, 0.17, 0.18, 0.032 +19700206, 0.59, 0.18, -0.32, 0.06, -0.63, 0.032 +19700209, 0.82, -0.14, -0.22, 0.06, -0.25, 0.032 +19700210, -0.94, 0.33, 0.10, 0.12, 0.38, 0.032 +19700211, 0.90, -0.17, -0.83, 0.43, -0.71, 0.032 +19700212, -0.21, 0.29, 0.28, 0.20, 0.22, 0.032 +19700213, -0.18, -0.01, 0.63, -0.02, 0.71, 0.032 +19700216, -0.07, 0.12, 0.38, -0.18, 0.17, 0.032 +19700217, -0.20, -0.11, 0.19, 0.03, 0.01, 0.032 +19700218, 1.19, -0.47, -0.05, -0.21, -0.15, 0.032 +19700219, 0.28, -0.35, 0.53, -0.60, 0.13, 0.032 +19700220, 0.32, -0.59, 0.87, -0.85, 0.57, 0.032 +19700224, -0.03, -0.13, 0.47, -0.64, 0.72, 0.032 +19700225, 1.52, -0.16, 0.22, -0.58, -0.01, 0.032 +19700226, -0.53, 0.06, 0.64, -0.23, 0.18, 0.032 +19700227, 0.69, 0.16, 0.41, 0.01, 0.46, 0.032 +19700302, 0.13, -0.16, 0.70, 0.02, 0.79, 0.027 +19700303, 0.58, -0.39, 0.61, -0.06, 0.37, 0.027 +19700304, -0.25, 0.17, 0.61, 0.14, 0.95, 0.027 +19700305, -0.02, 0.14, 0.37, -0.08, 0.38, 0.027 +19700306, -0.69, 0.22, 0.26, 0.03, 0.44, 0.027 +19700309, -1.08, 0.00, 0.79, -0.21, 0.72, 0.027 +19700310, 0.14, -0.29, -0.33, 0.02, -0.44, 0.027 +19700311, -0.14, -0.15, 0.46, -0.07, 0.30, 0.027 +19700312, -0.51, -0.23, 0.39, -0.13, 0.12, 0.027 +19700313, -0.63, -0.26, 0.73, -0.07, 0.75, 0.027 +19700316, -1.15, -0.19, 0.36, -0.29, 0.55, 0.027 +19700317, 0.39, -0.17, -0.46, -0.05, -0.48, 0.027 +19700318, 0.26, -0.15, 0.14, -0.08, 0.17, 0.027 +19700319, -0.29, -0.35, 0.37, -0.02, 0.23, 0.027 +19700320, -0.52, -0.49, 0.66, -0.31, 0.73, 0.027 +19700323, -0.14, -0.17, -0.07, 0.30, -0.03, 0.027 +19700324, 1.01, -0.48, -0.44, 0.19, -0.34, 0.027 +19700325, 2.14, 0.18, -0.52, -0.30, -0.38, 0.027 +19700326, 0.10, 0.30, -0.10, 0.03, -0.12, 0.027 +19700330, -0.28, 0.09, -0.30, 0.04, -0.47, 0.027 +19700331, -0.05, -0.04, 0.11, 0.03, 0.16, 0.027 +19700401, 0.45, -0.08, 0.03, -0.34, -0.16, 0.023 +19700402, -0.39, 0.14, 0.11, -0.07, 0.45, 0.023 +19700403, -0.49, 0.04, 0.98, -0.40, 0.81, 0.023 +19700406, -0.83, -0.22, 1.16, -0.51, 1.20, 0.023 +19700407, -0.36, -0.14, 0.59, -0.07, 0.49, 0.023 +19700408, -0.19, -0.28, 0.09, -0.05, -0.18, 0.023 +19700409, -0.10, -0.63, 0.43, 0.33, 0.32, 0.023 +19700410, -0.44, -0.46, -0.29, 0.64, -0.26, 0.023 +19700413, -0.90, -0.80, 1.05, -0.14, 0.96, 0.023 +19700414, -0.86, -0.56, 0.34, -0.34, 0.28, 0.023 +19700415, -0.31, -0.20, 0.30, 0.09, 0.26, 0.023 +19700416, -1.14, -0.36, 0.70, 0.11, 0.76, 0.023 +19700417, -0.33, -0.29, 0.10, -0.19, -0.24, 0.023 +19700420, 0.22, -0.01, -0.55, 0.17, -0.42, 0.023 +19700421, -0.57, -0.34, 0.68, -0.09, 0.55, 0.023 +19700422, -1.48, -0.61, 1.06, -0.29, 0.79, 0.023 +19700423, -1.65, -0.72, 0.52, 0.08, 0.59, 0.023 +19700424, -0.51, -0.55, 0.18, 0.57, 0.29, 0.023 +19700427, -1.84, -0.93, 0.91, -0.08, 0.81, 0.023 +19700428, -1.47, -0.59, 0.60, -0.17, 0.57, 0.023 +19700429, 2.11, 0.20, -2.30, 0.12, -1.63, 0.023 +19700430, -0.40, 0.16, 0.63, -0.06, 0.45, 0.023 +19700501, -0.14, -0.01, 0.17, -0.09, 0.38, 0.025 +19700504, -2.60, -0.36, 1.79, -0.28, 1.71, 0.025 +19700505, -1.13, -0.54, 0.57, -0.48, 0.45, 0.025 +19700506, 1.20, 0.47, -0.95, 0.06, -0.67, 0.025 +19700507, 0.59, 0.02, -0.08, -0.23, -0.26, 0.025 +19700508, -0.52, -0.02, 0.29, -0.04, 0.07, 0.025 +19700511, -1.11, -0.03, 0.64, 0.24, 0.56, 0.025 +19700512, -0.93, -0.21, 0.54, -0.34, 0.38, 0.025 +19700513, -1.76, -0.48, 1.01, -0.11, 1.01, 0.025 +19700514, -1.53, -0.92, 0.63, -0.25, 0.23, 0.025 +19700515, 1.83, -0.35, -0.95, -0.28, 0.05, 0.025 +19700518, 0.13, 0.01, 0.18, 0.25, 0.02, 0.025 +19700519, -2.01, -0.11, 1.33, -0.48, 1.25, 0.025 +19700520, -2.66, -0.53, 1.69, -0.42, 1.65, 0.025 +19700521, -2.01, -0.90, 1.03, -0.26, 0.83, 0.025 +19700522, -0.15, -0.72, -0.65, 0.76, -0.25, 0.025 +19700525, -3.21, -1.59, 1.75, 0.53, 1.22, 0.025 +19700526, -1.32, -0.59, 0.58, -0.49, -0.04, 0.025 +19700527, 5.30, 1.27, -3.73, 0.15, -3.05, 0.025 +19700528, 2.63, 0.96, -1.20, 0.20, -0.63, 0.025 +19700529, 2.70, 0.08, -1.33, 0.18, -1.31, 0.025 +19700601, 1.83, 1.01, -1.72, 0.04, -1.66, 0.026 +19700602, 0.12, 0.60, -0.36, 0.02, -0.09, 0.026 +19700603, 1.11, 0.85, -0.92, 0.00, -0.53, 0.026 +19700604, -1.58, -0.20, 1.37, 0.19, 1.69, 0.026 +19700605, -1.70, -0.36, 0.34, 0.00, 0.06, 0.026 +19700608, 0.10, 0.05, 0.13, -0.38, 0.12, 0.026 +19700609, 0.01, -0.05, -0.45, 0.14, -0.67, 0.026 +19700610, -1.03, 0.00, 0.24, -0.28, 0.08, 0.026 +19700611, -1.42, -0.24, 1.03, -0.57, 1.07, 0.026 +19700612, -0.42, -0.33, -0.26, 0.19, 0.10, 0.026 +19700615, 0.30, 0.12, -0.54, 0.16, -0.29, 0.026 +19700616, 2.28, -0.46, -1.26, 0.58, -1.17, 0.026 +19700617, -0.27, -0.09, 0.58, -0.18, 0.68, 0.026 +19700618, 0.56, -0.37, -0.69, 0.62, -0.61, 0.026 +19700619, 0.66, -0.19, -0.03, -0.23, 0.03, 0.026 +19700622, -0.67, -0.18, 0.15, 0.23, 0.34, 0.026 +19700623, -2.49, 0.06, 1.20, -0.24, 1.25, 0.026 +19700624, -1.15, -0.86, 0.58, -0.42, 0.57, 0.026 +19700625, -0.05, -0.63, -0.03, 0.23, 0.02, 0.026 +19700626, -0.82, -0.18, 0.46, 0.12, 0.68, 0.026 +19700629, -0.87, -0.32, 0.30, 0.34, 0.38, 0.026 +19700630, -0.30, -0.49, 0.56, -0.27, 0.80, 0.026 +19700701, 0.33, -0.61, -0.26, 0.33, 0.27, 0.024 +19700702, -0.26, -0.53, 0.54, -0.08, 0.61, 0.024 +19700706, -1.58, -0.22, 0.81, 0.06, 0.96, 0.024 +19700707, -0.87, -0.34, 0.15, 0.27, 0.42, 0.024 +19700708, 2.38, -0.83, -1.29, 0.36, -1.29, 0.024 +19700709, 1.61, 0.22, -0.02, -0.21, -0.31, 0.024 +19700710, 0.71, 0.02, 0.14, 0.10, 0.51, 0.024 +19700713, -0.07, 0.29, 0.74, -0.55, 0.22, 0.024 +19700714, -0.15, -0.16, -0.25, 0.38, 0.23, 0.024 +19700715, 0.98, -0.32, -0.25, 0.09, -0.24, 0.024 +19700716, 1.33, -0.36, 0.12, -0.37, 0.34, 0.024 +19700717, 1.67, -0.03, 0.12, -0.55, -0.08, 0.024 +19700720, 0.13, 0.38, 0.44, -0.04, 0.25, 0.024 +19700721, -1.01, 0.01, 0.30, -0.07, 0.23, 0.024 +19700722, 0.12, 0.44, 0.10, -0.24, -0.38, 0.024 +19700723, 1.22, -0.48, -0.20, 0.00, -0.61, 0.024 +19700724, -0.23, 0.55, -0.17, 0.16, 0.34, 0.024 +19700727, -0.19, 0.34, 0.24, -0.10, 0.08, 0.024 +19700728, 0.26, 0.15, -0.37, 0.12, -0.29, 0.024 +19700729, 0.37, 0.52, -0.31, -0.02, -0.03, 0.024 +19700730, 0.06, 0.12, -0.20, 0.17, 0.06, 0.024 +19700731, -0.06, 0.19, 0.46, 0.14, 0.42, 0.024 +19700803, -1.22, 0.16, 0.47, -0.07, 0.35, 0.025 +19700804, 0.17, -0.21, -0.12, -0.14, 0.04, 0.025 +19700805, -0.08, -0.11, 0.19, -0.03, 0.23, 0.025 +19700806, -0.18, -0.39, 0.47, 0.11, 0.67, 0.025 +19700807, 0.26, -0.14, 0.42, -0.58, 0.60, 0.025 +19700810, -1.44, 0.09, 0.42, 0.30, 0.45, 0.025 +19700811, -0.57, -0.18, 0.32, -0.02, 0.21, 0.025 +19700812, -0.49, 0.10, 0.66, -0.50, 0.39, 0.025 +19700813, -0.90, 0.08, 0.76, -0.43, 0.31, 0.025 +19700814, 0.41, -0.28, 0.14, 0.27, 0.58, 0.025 +19700817, 0.17, -0.26, -0.52, 0.60, -0.43, 0.025 +19700818, 1.06, -0.55, -0.19, -0.21, -0.23, 0.025 +19700819, 0.90, -0.51, 0.39, -0.32, 0.05, 0.025 +19700820, 0.75, -0.74, 0.03, -0.08, -0.05, 0.025 +19700821, 2.09, -0.21, -0.16, 0.05, -0.33, 0.025 +19700824, 2.34, 0.55, -1.43, 1.10, -1.59, 0.025 +19700825, 0.38, 0.87, -0.83, 0.36, -0.84, 0.025 +19700826, 0.31, 1.05, -0.09, -0.40, -0.09, 0.025 +19700827, -0.12, 0.79, 0.01, 0.32, -0.09, 0.025 +19700828, 0.99, 0.65, -0.25, 0.30, -0.49, 0.025 +19700831, -0.35, 0.72, 0.27, -0.07, 0.07, 0.025 +19700901, -0.64, 0.03, 0.29, -0.25, 0.35, 0.025 +19700902, -0.02, 0.33, -0.40, -0.33, -0.61, 0.025 +19700903, 1.46, 0.17, -0.93, 0.30, -0.44, 0.025 +19700904, 1.07, 0.63, -0.01, -0.45, -0.83, 0.025 +19700908, 0.36, 0.68, -0.66, 0.04, -0.75, 0.025 +19700909, -0.30, 0.22, -0.16, 0.07, 0.06, 0.025 +19700910, -0.58, 0.39, 0.22, -0.02, 0.51, 0.025 +19700911, 0.35, 0.99, -0.32, 0.57, -0.73, 0.025 +19700914, -0.51, 0.13, 0.19, 0.12, 0.09, 0.025 +19700915, -0.98, -0.31, -0.11, 0.38, 0.20, 0.025 +19700916, 0.57, 0.36, -0.67, 0.00, -0.46, 0.025 +19700917, 0.80, 0.70, -0.72, 0.07, -0.63, 0.025 +19700918, 0.44, 0.62, 0.09, -0.24, -0.36, 0.025 +19700921, -0.84, -0.11, 0.33, 0.52, 0.36, 0.025 +19700922, -0.36, -0.09, -0.02, -0.09, 0.07, 0.025 +19700923, 1.35, 0.18, -0.63, -0.03, -0.87, 0.025 +19700924, 1.43, 1.38, -1.38, -0.06, -1.37, 0.025 +19700925, 0.17, 0.18, -0.01, 0.04, -0.01, 0.025 +19700928, -0.06, 0.69, -0.54, 0.16, -0.25, 0.025 +19700929, 0.58, 0.72, -0.04, -0.37, -0.24, 0.025 +19700930, -0.12, 0.05, 0.35, -0.18, 0.37, 0.025 +19701001, 0.12, -0.29, -0.11, 0.29, 0.08, 0.021 +19701002, 1.05, 0.33, -0.30, 0.02, -0.46, 0.021 +19701005, 1.44, -0.18, 0.01, 0.31, -0.28, 0.021 +19701006, 0.23, -0.78, 0.92, -0.16, 1.23, 0.021 +19701007, -0.03, 0.23, 0.07, 0.08, -0.06, 0.021 +19701008, -1.15, -0.31, 0.47, 0.39, 0.67, 0.021 +19701009, -0.97, 0.31, 0.09, -0.08, 0.12, 0.021 +19701012, -0.98, -0.01, 0.37, -0.16, 0.19, 0.021 +19701013, -0.26, 0.03, -0.35, 0.09, -0.40, 0.021 +19701014, 0.13, -0.19, -0.05, -0.09, 0.22, 0.021 +19701015, 0.41, -0.43, 0.25, -0.18, 0.24, 0.021 +19701016, -0.60, -0.67, 0.58, 0.11, 0.91, 0.021 +19701019, -1.41, -0.46, 0.63, 0.08, 0.40, 0.021 +19701020, 0.57, -0.44, -1.06, 0.51, -0.69, 0.021 +19701021, -0.08, -0.28, 0.13, -0.11, 0.11, 0.021 +19701022, -0.43, -0.30, 0.13, -0.02, 0.54, 0.021 +19701023, 0.49, 0.10, -0.52, -0.01, -0.37, 0.021 +19701026, -0.53, 0.09, -0.09, 0.18, 0.05, 0.021 +19701027, -0.30, -0.26, -0.14, 0.23, 0.11, 0.021 +19701028, 0.32, -0.43, -0.88, 0.34, -0.69, 0.021 +19701029, -0.18, -0.40, 0.26, 0.07, 0.36, 0.021 +19701030, -0.07, -0.32, -0.09, 0.05, 0.15, 0.021 +19701102, 0.32, -0.05, -0.18, 0.51, -0.22, 0.023 +19701103, 0.85, 0.22, 0.33, -0.29, 0.16, 0.023 +19701104, 0.18, -0.28, 0.20, 0.00, 0.91, 0.023 +19701105, -0.20, -0.17, 0.06, 0.13, 0.30, 0.023 +19701106, 0.09, -0.34, 0.24, 0.07, 0.23, 0.023 +19701109, 0.50, -0.16, -0.24, 0.20, -0.16, 0.023 +19701110, 0.15, -0.06, -0.08, 0.08, -0.08, 0.023 +19701111, 0.27, -0.04, 0.36, -0.09, 0.25, 0.023 +19701112, -1.11, -0.64, 0.42, 0.09, 0.46, 0.023 +19701113, -0.96, -0.25, 0.28, 0.05, 0.48, 0.023 +19701116, -0.17, -0.40, -0.21, 0.55, -0.23, 0.023 +19701117, 0.05, -0.31, 0.25, -0.04, 0.25, 0.023 +19701118, -0.77, -0.70, 0.32, 0.16, 0.43, 0.023 +19701119, 0.09, -0.48, -0.18, 0.20, 0.14, 0.023 +19701120, 0.98, -0.12, -0.33, 0.14, -0.21, 0.023 +19701123, 0.63, -0.33, 0.09, 0.17, 0.02, 0.023 +19701124, 0.58, -0.33, 0.26, -0.05, 0.26, 0.023 +19701125, 0.42, -0.04, 0.35, 0.05, -0.03, 0.023 +19701127, 0.98, -0.16, -0.36, 0.15, -0.56, 0.023 +19701130, 1.67, 0.75, -0.10, -0.39, -0.85, 0.023 +19701201, 0.29, -0.02, 0.19, -0.28, -0.07, 0.019 +19701202, 1.22, 0.03, -0.43, 0.35, -0.49, 0.019 +19701203, 0.45, 0.09, 0.49, 0.00, 0.55, 0.019 +19701204, 0.57, 0.07, 0.21, -0.15, 0.43, 0.019 +19701207, 0.58, 0.17, -0.25, 0.45, -0.31, 0.019 +19701208, -0.52, -0.15, 0.05, 0.05, -0.01, 0.019 +19701209, 0.01, -0.23, -0.03, 0.10, -0.05, 0.019 +19701210, 0.34, -0.13, -0.07, -0.22, 0.11, 0.019 +19701211, 0.37, 0.13, -0.15, 0.20, -0.14, 0.019 +19701214, -0.57, -0.47, 0.35, 0.03, 0.51, 0.019 +19701215, -0.18, -0.16, 0.13, 0.20, -0.05, 0.019 +19701216, 0.12, 0.21, 0.02, 0.14, -0.04, 0.019 +19701217, 0.31, 0.11, 0.02, -0.10, 0.24, 0.019 +19701218, 0.21, 0.29, -0.04, 0.31, -0.21, 0.019 +19701221, -0.29, 0.15, 0.04, 0.14, -0.16, 0.019 +19701222, 0.12, 0.21, 0.09, -0.09, -0.03, 0.019 +19701223, 0.15, 0.41, 0.09, -0.42, 0.03, 0.019 +19701224, 0.69, 0.96, -0.15, -0.46, -0.42, 0.019 +19701228, 0.53, 0.24, 0.05, 0.01, 0.14, 0.019 +19701229, 1.11, 0.52, 0.25, -0.42, 0.00, 0.019 +19701230, 0.18, 0.07, 0.08, 0.24, 0.12, 0.019 +19701231, -0.10, 0.27, -0.09, 0.13, -0.01, 0.019 +19710104, -0.99, 0.58, 0.69, -0.58, 0.44, 0.019 +19710105, 0.82, 0.68, 0.02, -0.38, -0.42, 0.019 +19710106, 0.74, 0.89, 0.49, -0.60, -0.05, 0.019 +19710107, 0.05, 0.15, 0.54, -0.10, 0.69, 0.019 +19710108, -0.13, 0.09, 0.41, -0.07, 0.08, 0.019 +19710111, -0.11, 0.45, 0.15, 0.00, -0.14, 0.019 +19710112, 0.98, 0.78, 0.38, 0.06, 0.07, 0.019 +19710113, -0.09, 0.43, -0.21, 0.39, -0.19, 0.019 +19710114, 0.29, 0.04, 0.15, -0.47, 0.02, 0.019 +19710115, 0.28, 0.42, 0.26, -0.20, 0.06, 0.019 +19710118, 0.35, 0.30, 0.25, -0.37, -0.18, 0.019 +19710119, 0.29, -0.07, -0.04, 0.12, 0.06, 0.019 +19710120, 0.08, 0.32, -0.05, 0.06, -0.05, 0.019 +19710121, 0.47, 0.44, -0.57, -0.08, -0.27, 0.019 +19710122, 0.67, 0.01, -0.30, -0.31, -0.01, 0.019 +19710125, 0.47, 0.42, -0.54, 0.37, -0.40, 0.019 +19710126, 0.28, 0.18, -0.66, 0.32, -0.45, 0.019 +19710127, -0.74, 0.01, 0.00, 0.22, -0.06, 0.019 +19710128, 0.37, 0.63, 0.21, -0.17, 0.20, 0.019 +19710129, 0.66, 0.24, 0.13, -0.22, 0.40, 0.019 +19710201, 0.67, 0.71, -0.20, -0.10, 0.08, 0.017 +19710202, 0.06, 0.10, -0.04, 0.40, -0.16, 0.017 +19710203, 0.30, 0.72, -0.38, -0.07, -0.52, 0.017 +19710204, 0.14, 0.16, -0.26, -0.27, -0.20, 0.017 +19710205, 0.45, 0.24, -0.03, 0.19, -0.27, 0.017 +19710208, 0.60, 0.85, 0.04, -0.22, -0.32, 0.017 +19710209, -0.04, -0.25, -0.10, 0.20, 0.21, 0.017 +19710210, -0.11, -0.18, -0.01, -0.03, 0.04, 0.017 +19710211, 0.52, 0.34, 0.48, -0.32, 0.06, 0.017 +19710212, 0.59, 0.53, -0.05, -0.13, -0.44, 0.017 +19710216, 0.24, 0.01, -0.10, -0.10, 0.09, 0.017 +19710217, -0.48, -0.11, 0.31, -0.31, 0.28, 0.017 +19710218, -0.68, -0.25, 0.21, 0.02, 0.36, 0.017 +19710219, -0.93, -0.52, 0.18, 0.34, 0.32, 0.017 +19710222, -1.06, -0.87, -0.30, 0.53, 0.03, 0.017 +19710223, 0.50, 0.52, -0.40, -0.15, -0.36, 0.017 +19710224, 0.74, 0.57, -0.30, 0.16, -0.41, 0.017 +19710225, 0.16, -0.24, 0.10, 0.07, 0.63, 0.017 +19710226, -0.25, -0.30, -0.43, 0.43, -0.18, 0.017 +19710301, 0.30, 0.22, -0.26, -0.09, -0.42, 0.013 +19710302, 0.05, 0.32, 0.16, -0.12, -0.05, 0.013 +19710303, 0.01, 0.27, -0.19, 0.02, -0.09, 0.013 +19710304, 1.05, 0.31, -0.43, 0.08, -0.27, 0.013 +19710305, 1.06, 0.22, -0.25, -0.06, -0.34, 0.013 +19710308, 0.48, 0.53, -0.38, 0.23, -0.10, 0.013 +19710309, 0.14, 0.41, -0.45, 0.04, -0.17, 0.013 +19710310, -0.12, 0.15, -0.42, 0.46, -0.41, 0.013 +19710311, -0.02, -0.42, 0.36, 0.09, 0.22, 0.013 +19710312, 0.16, -0.20, -0.12, 0.27, -0.26, 0.013 +19710315, 1.14, 0.18, -0.42, 0.11, -0.31, 0.013 +19710316, 0.46, -0.22, -0.16, 0.10, -0.08, 0.013 +19710317, 0.01, -0.04, -0.46, 0.19, -0.19, 0.013 +19710318, 0.11, 0.40, -0.06, 0.11, 0.03, 0.013 +19710319, -0.18, -0.01, -0.04, 0.42, -0.16, 0.013 +19710322, -0.40, -0.22, 0.11, 0.20, 0.28, 0.013 +19710323, -0.33, 0.16, -0.09, -0.25, 0.07, 0.013 +19710324, -0.61, 0.00, -0.02, 0.07, 0.20, 0.013 +19710325, 0.02, -0.03, -0.04, -0.05, -0.05, 0.013 +19710326, 0.38, 0.18, -0.21, 0.10, -0.03, 0.013 +19710329, 0.08, -0.28, -0.19, -0.17, 0.06, 0.013 +19710330, 0.21, -0.11, -0.10, -0.09, -0.19, 0.013 +19710331, 0.09, 0.20, -0.16, 0.22, -0.29, 0.013 +19710401, 0.06, -0.03, -0.23, 0.14, -0.03, 0.013 +19710402, 0.20, 0.07, -0.31, 0.30, -0.30, 0.013 +19710405, 0.17, -0.06, 0.12, -0.32, 0.37, 0.013 +19710406, 0.59, -0.23, -0.04, -0.11, -0.05, 0.013 +19710407, 0.43, 0.06, 0.38, -0.37, 0.23, 0.013 +19710408, 0.14, 0.14, 0.05, 0.01, 0.13, 0.013 +19710412, 0.67, -0.18, -0.03, 0.08, 0.09, 0.013 +19710413, 0.04, 0.05, 0.00, 0.02, 0.01, 0.013 +19710414, 0.35, 0.24, 0.39, -0.31, 0.27, 0.013 +19710415, 0.14, -0.14, 0.55, -0.52, 0.52, 0.013 +19710416, 0.00, -0.04, 0.40, -0.17, 0.10, 0.013 +19710419, 0.41, -0.32, 0.11, -0.26, 0.16, 0.013 +19710420, -0.49, -0.51, -0.03, 0.51, 0.09, 0.013 +19710421, -0.27, 0.01, -0.09, -0.08, -0.11, 0.013 +19710422, 0.29, 0.13, 0.15, -0.26, -0.04, 0.013 +19710423, 0.50, 0.11, -0.37, -0.05, -0.33, 0.013 +19710426, 0.00, 0.52, 0.11, -0.22, -0.30, 0.013 +19710427, 0.44, 0.14, -0.19, 0.21, -0.28, 0.013 +19710428, 0.34, 0.05, -0.26, -0.21, 0.14, 0.013 +19710429, -0.25, -0.48, -0.01, 0.04, 0.11, 0.013 +19710430, -0.65, 0.12, -0.02, 0.01, -0.08, 0.013 +19710503, -0.57, 0.21, -0.18, 0.08, -0.10, 0.015 +19710504, 0.55, 0.23, -0.03, 0.00, -0.27, 0.015 +19710505, -0.03, -0.14, -0.17, 0.05, 0.00, 0.015 +19710506, -0.58, -0.39, 0.00, 0.17, 0.43, 0.015 +19710507, -0.32, -0.14, -0.12, -0.15, 0.13, 0.015 +19710510, -0.49, -0.21, 0.21, 0.06, 0.00, 0.015 +19710511, 0.29, -0.02, 0.10, -0.13, 0.20, 0.015 +19710512, 0.23, -0.10, -0.13, -0.02, -0.08, 0.015 +19710513, -0.20, 0.04, -0.41, 0.34, 0.15, 0.015 +19710514, -0.42, 0.13, 0.09, -0.07, 0.12, 0.015 +19710517, -1.52, -0.42, 0.17, 0.41, 0.20, 0.015 +19710518, 0.05, -0.25, -0.18, 0.00, -0.04, 0.015 +19710519, 0.23, -0.15, 0.08, 0.17, 0.15, 0.015 +19710520, 0.25, 0.06, -0.20, 0.14, -0.12, 0.015 +19710521, -0.35, -0.01, -0.09, 0.31, -0.02, 0.015 +19710524, -0.83, -0.07, -0.28, 0.34, -0.11, 0.015 +19710525, -0.65, -0.12, -0.35, 0.10, 0.08, 0.015 +19710526, 0.15, -0.01, -0.12, -0.17, -0.32, 0.015 +19710527, -0.11, -0.04, 0.05, 0.07, 0.04, 0.015 +19710528, 0.27, 0.20, 0.04, -0.15, -0.17, 0.015 +19710601, 0.61, -0.08, -0.08, -0.09, -0.33, 0.017 +19710602, 0.84, 0.38, -0.24, 0.14, -0.30, 0.017 +19710603, 0.18, 0.42, -0.12, -0.11, -0.30, 0.017 +19710604, 0.25, 0.04, -0.18, 0.27, -0.22, 0.017 +19710607, -0.16, 0.09, -0.15, 0.20, -0.03, 0.017 +19710608, -0.79, -0.15, 0.28, 0.16, 0.31, 0.017 +19710609, -0.07, -0.26, -0.15, 0.08, 0.13, 0.017 +19710610, 0.29, -0.12, -0.21, 0.05, 0.08, 0.017 +19710611, 0.34, -0.35, -0.26, -0.14, -0.25, 0.017 +19710614, -0.81, -0.17, -0.10, -0.01, -0.24, 0.017 +19710615, 0.02, -0.47, -0.21, 0.13, -0.03, 0.017 +19710616, 0.16, -0.26, -0.46, 0.25, -0.10, 0.017 +19710617, -0.03, -0.30, -0.06, -0.02, 0.05, 0.017 +19710618, -1.54, -0.63, 0.08, 0.58, 0.15, 0.017 +19710621, -1.21, -0.50, 0.14, 0.29, -0.14, 0.017 +19710622, -0.30, -0.11, -0.01, -0.12, 0.04, 0.017 +19710623, 0.86, 0.33, -0.40, -0.05, -0.49, 0.017 +19710624, -0.17, 0.11, 0.20, 0.04, -0.10, 0.017 +19710625, -0.20, 0.14, 0.07, 0.06, 0.19, 0.017 +19710628, -0.26, 0.08, -0.14, 0.02, -0.26, 0.017 +19710629, 1.11, 0.24, 0.09, -0.23, -0.09, 0.017 +19710630, 0.92, 0.08, -0.10, 0.05, 0.13, 0.017 +19710701, 0.10, 0.11, -0.04, -0.04, -0.04, 0.019 +19710702, 0.04, 0.15, -0.18, 0.07, -0.14, 0.019 +19710706, 0.06, 0.27, -0.28, 0.07, -0.12, 0.019 +19710707, 0.35, 0.30, -0.09, -0.10, 0.30, 0.019 +19710708, 0.33, -0.22, -0.06, 0.15, 0.12, 0.019 +19710709, 0.34, 0.00, -0.14, 0.25, -0.09, 0.019 +19710712, 0.11, -0.10, 0.08, 0.36, 0.09, 0.019 +19710713, -1.29, 0.09, 0.20, -0.10, 0.22, 0.019 +19710714, -0.17, 0.11, -0.03, 0.02, 0.21, 0.019 +19710715, 0.03, 0.06, 0.00, -0.12, -0.12, 0.019 +19710716, -0.21, 0.12, 0.14, -0.13, 0.17, 0.019 +19710719, -0.24, -0.15, -0.01, 0.01, 0.03, 0.019 +19710720, 0.37, -0.27, 0.08, -0.27, 0.14, 0.019 +19710721, -0.08, -0.10, -0.15, 0.23, -0.10, 0.019 +19710722, -0.25, -0.29, 0.15, -0.06, 0.02, 0.019 +19710723, -0.17, -0.04, 0.02, -0.07, 0.43, 0.019 +19710726, -0.34, -0.06, 0.20, -0.03, 0.24, 0.019 +19710727, -0.99, -0.34, 0.23, -0.02, 0.29, 0.019 +19710728, -0.84, -0.34, -0.05, 0.35, -0.15, 0.019 +19710729, -1.27, -0.65, -0.02, -0.01, 0.04, 0.019 +19710730, -0.47, -0.20, 0.09, 0.00, 0.09, 0.019 +19710802, 0.49, 0.40, 0.75, -0.58, 0.37, 0.021 +19710803, -1.64, -0.59, 0.02, -0.02, -0.01, 0.021 +19710804, -0.59, -0.08, -0.08, 0.15, 0.01, 0.021 +19710805, 0.24, -0.07, -0.04, -0.18, 0.07, 0.021 +19710806, 0.26, -0.01, -0.21, 0.19, 0.15, 0.021 +19710809, -0.77, -0.16, -0.08, 0.09, -0.09, 0.021 +19710810, 0.00, -0.32, 0.05, 0.28, -0.15, 0.021 +19710811, 1.22, -0.09, -0.26, 0.18, -0.38, 0.021 +19710812, 1.41, 0.07, -0.38, 0.24, -0.04, 0.021 +19710813, -0.30, 0.12, 0.32, -0.06, 0.15, 0.021 +19710816, 3.62, 1.03, 1.19, -0.52, 0.00, 0.021 +19710817, 0.66, -0.31, 0.32, -0.02, 1.88, 0.021 +19710818, -1.34, 0.21, -0.27, 0.37, -0.12, 0.021 +19710819, -0.47, -0.21, 0.24, -0.02, 0.21, 0.021 +19710820, 0.17, -0.02, -0.03, 0.03, 0.05, 0.021 +19710823, 0.89, -0.58, 0.46, -0.17, 0.17, 0.021 +19710824, 0.92, -0.32, 0.51, -0.41, -0.13, 0.021 +19710825, 0.09, 0.14, 0.04, -0.03, 0.16, 0.021 +19710826, -0.12, 0.02, -0.07, 0.06, 0.17, 0.021 +19710827, 0.23, 0.15, 0.17, 0.06, -0.06, 0.021 +19710830, -0.92, 0.39, 0.15, -0.12, 0.10, 0.021 +19710831, -0.49, 0.11, -0.20, 0.15, 0.02, 0.021 +19710901, 0.04, 0.03, 0.15, -0.24, 0.16, 0.017 +19710902, 0.25, 0.06, 0.05, 0.02, -0.33, 0.017 +19710903, 1.39, 0.06, 0.11, -0.31, 0.15, 0.017 +19710907, 0.49, 0.28, 0.09, -0.13, -0.18, 0.017 +19710908, 0.20, 0.16, -0.42, 0.41, -0.07, 0.017 +19710909, -0.48, 0.14, -0.25, 0.07, -0.13, 0.017 +19710910, -0.35, 0.18, -0.23, 0.27, -0.01, 0.017 +19710913, -0.36, -0.12, -0.02, -0.04, 0.19, 0.017 +19710914, -0.76, 0.05, -0.10, 0.20, -0.25, 0.017 +19710915, 0.36, -0.21, -0.26, 0.28, -0.01, 0.017 +19710916, -0.18, 0.12, -0.22, 0.39, 0.35, 0.017 +19710917, 0.30, -0.21, -0.21, -0.25, -0.01, 0.017 +19710920, -0.32, -0.21, -0.25, 0.39, -0.18, 0.017 +19710921, -0.32, 0.10, -0.10, -0.04, -0.14, 0.017 +19710922, -0.89, -0.25, -0.05, 0.37, -0.32, 0.017 +19710923, -0.10, -0.11, -0.15, 0.35, 0.03, 0.017 +19710924, -0.18, 0.37, -0.15, 0.26, -0.20, 0.017 +19710927, -0.57, -0.14, -0.36, 0.29, -0.17, 0.017 +19710928, 0.19, -0.11, -0.02, 0.08, 0.01, 0.017 +19710929, 0.01, 0.14, -0.41, 0.26, -0.30, 0.017 +19710930, 0.46, -0.09, -0.13, -0.11, -0.11, 0.017 +19711001, 0.61, 0.13, -0.24, 0.10, 0.00, 0.017 +19711004, 0.26, 0.05, -0.02, 0.03, 0.19, 0.017 +19711005, -0.12, -0.02, -0.21, 0.15, -0.25, 0.017 +19711006, 0.73, -0.14, 0.25, -0.26, -0.01, 0.017 +19711007, 0.21, 0.09, 0.14, 0.12, 0.04, 0.017 +19711008, -0.62, 0.02, 0.16, 0.16, 0.03, 0.017 +19711011, -0.22, 0.16, 0.12, 0.17, -0.23, 0.017 +19711012, 0.35, -0.07, -0.02, 0.01, -0.16, 0.017 +19711013, -0.51, 0.21, -0.10, 0.25, -0.14, 0.017 +19711014, -0.92, -0.28, 0.14, 0.03, 0.13, 0.017 +19711015, -0.42, -0.16, -0.11, -0.06, -0.06, 0.017 +19711018, -0.51, -0.15, 0.06, 0.00, 0.32, 0.017 +19711019, -0.42, -0.40, -0.29, 0.25, 0.11, 0.017 +19711020, -1.38, -0.15, 0.08, 0.09, 0.25, 0.017 +19711021, -0.01, -0.01, -0.12, 0.07, -0.40, 0.017 +19711022, -0.05, 0.15, -0.19, 0.22, -0.25, 0.017 +19711025, -0.44, -0.02, -0.09, 0.13, -0.32, 0.017 +19711026, -0.52, -0.48, 0.11, 0.27, 0.35, 0.017 +19711027, -1.07, -0.62, -0.11, 0.20, 0.15, 0.017 +19711028, 0.12, -0.27, 0.15, -0.20, -0.36, 0.017 +19711029, 0.47, 0.21, -0.18, -0.17, -0.73, 0.017 +19711101, -1.48, -0.04, -0.12, 0.26, 0.24, 0.018 +19711102, 0.27, -0.47, -0.07, 0.13, 0.15, 0.018 +19711103, 1.70, -0.38, -0.17, 0.10, 0.11, 0.018 +19711104, 0.00, 0.25, -0.12, 0.17, 0.26, 0.018 +19711105, -0.28, -0.29, -0.09, 0.13, 0.02, 0.018 +19711108, -0.09, -0.03, -0.27, 0.16, -0.01, 0.018 +19711109, 0.07, -0.02, -0.23, 0.17, 0.10, 0.018 +19711110, -1.14, -0.02, -0.33, 0.66, -0.33, 0.018 +19711111, -1.38, -0.15, 0.33, -0.11, -0.05, 0.018 +19711112, -0.04, -0.21, -0.01, 0.01, -0.28, 0.018 +19711115, -0.36, 0.09, -0.05, 0.14, -0.04, 0.018 +19711116, 0.91, -0.42, -0.44, 0.31, -0.01, 0.018 +19711117, 0.07, -0.31, -0.05, 0.21, 0.04, 0.018 +19711118, -0.74, 0.02, 0.25, 0.05, 0.22, 0.018 +19711119, -0.61, -0.51, 0.19, -0.15, 0.12, 0.018 +19711122, -1.00, -0.62, -0.22, 0.42, -0.20, 0.018 +19711123, -0.80, -0.84, -0.14, 0.26, 0.19, 0.018 +19711124, 0.17, -0.03, 0.06, -0.07, -0.22, 0.018 +19711126, 1.81, -0.08, -0.14, -0.15, -0.18, 0.018 +19711129, 1.81, 0.78, 0.20, -0.26, -0.16, 0.018 +19711130, 0.74, 0.34, -0.25, 0.01, -0.32, 0.018 +19711201, 1.73, 0.42, -0.28, -0.02, -0.02, 0.017 +19711202, 0.29, -0.01, -0.19, 0.12, 0.31, 0.017 +19711203, 1.17, -0.02, -0.12, -0.11, -0.66, 0.017 +19711206, -0.46, 0.54, 0.55, -0.43, 0.00, 0.017 +19711207, 0.43, 0.09, -0.42, 0.37, -0.34, 0.017 +19711208, 0.14, 0.28, -0.23, 0.11, -0.06, 0.017 +19711209, 0.02, 0.15, -0.28, 0.12, -0.49, 0.017 +19711210, 0.81, 0.37, 0.09, -0.13, -0.53, 0.017 +19711213, 0.37, 0.38, 0.02, -0.14, 0.40, 0.017 +19711214, -0.40, -0.14, -0.13, 0.29, -0.02, 0.017 +19711215, 0.82, -0.04, 0.18, -0.14, -0.05, 0.017 +19711216, 1.10, -0.10, -0.13, 0.03, -0.17, 0.017 +19711217, 0.50, 0.09, -0.11, -0.15, -0.17, 0.017 +19711220, 1.22, -0.07, -0.08, 0.36, -0.35, 0.017 +19711221, 0.23, -0.17, -0.16, 0.19, -0.07, 0.017 +19711222, -0.59, 0.22, 0.24, -0.22, 0.61, 0.017 +19711223, -0.44, 0.07, 0.24, -0.01, 0.15, 0.017 +19711227, 0.14, -0.19, 0.11, -0.26, 0.17, 0.017 +19711228, 0.92, -0.34, 0.16, -0.28, -0.18, 0.017 +19711229, 0.32, 0.33, 0.29, -0.34, 0.24, 0.017 +19711230, -0.33, 0.28, 0.06, -0.02, -0.30, 0.017 +19711231, 0.40, 0.88, -0.29, 0.26, -0.18, 0.017 +19720103, -0.37, 0.71, 0.64, -0.67, 0.37, 0.014 +19720104, 0.39, 0.41, 0.35, -0.41, 0.07, 0.014 +19720105, 0.97, 0.46, 0.57, -0.56, 0.47, 0.014 +19720106, 0.44, 0.46, -0.13, 0.18, 0.24, 0.014 +19720107, -0.01, 0.24, 0.04, -0.30, 0.10, 0.014 +19720110, -0.04, 0.54, 0.23, -0.03, -0.07, 0.014 +19720111, 0.39, 0.52, 0.14, -0.24, 0.23, 0.014 +19720112, -0.07, -0.20, -0.17, 0.18, 0.28, 0.014 +19720113, -0.59, -0.02, -0.17, 0.15, -0.07, 0.014 +19720114, 0.40, 0.38, -0.13, 0.30, -0.29, 0.014 +19720117, 0.33, 0.31, 0.13, -0.14, -0.06, 0.014 +19720118, 0.38, 0.16, 0.15, -0.36, 0.39, 0.014 +19720119, -0.15, 0.11, -0.14, 0.02, -0.22, 0.014 +19720120, -0.08, -0.18, -0.25, 0.47, -0.30, 0.014 +19720121, -0.19, 0.32, -0.14, 0.28, -0.47, 0.014 +19720124, -1.09, 0.13, 0.26, 0.03, -0.10, 0.014 +19720125, 0.16, -0.07, -0.23, 0.19, -0.27, 0.014 +19720126, -0.16, 0.42, 0.11, -0.10, -0.37, 0.014 +19720127, 1.10, 0.46, 0.01, -0.18, -0.11, 0.014 +19720128, 0.73, 0.30, 0.35, -0.13, 0.19, 0.014 +19720131, -0.06, 0.57, 0.27, -0.03, 0.29, 0.014 +19720201, 0.14, 0.48, -0.38, 0.16, -0.38, 0.012 +19720202, 0.62, 0.48, -0.78, 0.55, -0.35, 0.012 +19720203, -0.02, -0.15, -0.65, 0.48, -0.15, 0.012 +19720204, 0.36, 0.01, 0.23, -0.05, 0.35, 0.012 +19720207, -0.35, 0.08, 0.39, 0.05, 0.02, 0.012 +19720208, 0.13, -0.08, -0.20, 0.21, -0.15, 0.012 +19720209, 0.72, 0.04, -0.14, 0.03, 0.21, 0.012 +19720210, 0.03, -0.13, 0.27, -0.03, 0.50, 0.012 +19720211, -0.40, 0.15, -0.14, 0.24, -0.16, 0.012 +19720214, -0.40, 0.06, 0.02, -0.05, 0.14, 0.012 +19720215, 0.45, 0.19, -0.07, -0.13, 0.02, 0.012 +19720216, 0.49, -0.04, -0.08, -0.15, -0.01, 0.012 +19720217, -0.04, 0.06, -0.15, 0.35, -0.22, 0.012 +19720218, -0.24, 0.10, -0.28, 0.18, -0.11, 0.012 +19720222, -0.01, 0.18, 0.10, -0.07, -0.34, 0.012 +19720223, 0.12, 0.04, -0.20, 0.10, -0.05, 0.012 +19720224, 0.15, -0.03, -0.20, -0.03, 0.23, 0.012 +19720225, 0.63, -0.21, -0.32, 0.13, -0.08, 0.012 +19720228, 0.06, -0.22, 0.26, -0.37, 0.40, 0.012 +19720229, 0.41, -0.07, -0.34, 0.00, -0.39, 0.012 +19720301, 0.80, -0.09, -0.59, 0.16, 0.19, 0.012 +19720302, 0.05, -0.02, -0.21, 0.15, -0.05, 0.012 +19720303, 0.58, 0.06, -0.35, 0.01, 0.01, 0.012 +19720306, 0.75, -0.18, 0.30, -0.35, 0.09, 0.012 +19720307, 0.12, -0.18, -0.05, 0.52, -0.33, 0.012 +19720308, 0.18, 0.58, -0.33, 0.19, -0.38, 0.012 +19720309, 0.02, 0.42, -0.21, 0.11, -0.18, 0.012 +19720310, -0.54, 0.15, 0.04, -0.21, 0.18, 0.012 +19720313, -0.95, 0.00, 0.51, -0.24, 0.28, 0.012 +19720314, 0.29, 0.01, 0.15, -0.20, 0.17, 0.012 +19720315, 0.07, -0.15, 0.03, 0.30, -0.16, 0.012 +19720316, -0.28, -0.18, -0.05, 0.12, -0.02, 0.012 +19720317, 0.27, -0.35, -0.18, 0.07, 0.21, 0.012 +19720320, -0.38, -0.50, -0.01, 0.51, 0.16, 0.012 +19720321, -0.94, -0.56, 0.00, 0.27, -0.04, 0.012 +19720322, 0.16, -0.04, 0.09, -0.17, -0.04, 0.012 +19720323, 0.95, 0.18, -0.16, -0.20, -0.20, 0.012 +19720324, -0.21, 0.01, -0.20, 0.40, -0.09, 0.012 +19720327, -0.21, -0.01, -0.15, 0.30, -0.15, 0.012 +19720328, -0.10, 0.11, -0.25, 0.14, -0.04, 0.012 +19720329, -0.59, 0.28, -0.28, 0.11, 0.12, 0.012 +19720330, 0.61, -0.05, 0.19, -0.44, 0.09, 0.012 +19720403, 0.23, -0.15, -0.11, -0.15, -0.27, 0.014 +19720404, 0.61, -0.11, 0.14, -0.07, -0.09, 0.014 +19720405, 0.82, 0.06, -0.31, 0.04, 0.00, 0.014 +19720406, 0.40, 0.11, -0.02, 0.01, -0.15, 0.014 +19720407, 0.26, 0.15, 0.05, 0.11, 0.16, 0.014 +19720410, -0.17, 0.42, 0.07, 0.07, -0.15, 0.014 +19720411, 0.36, 0.29, 0.09, -0.21, -0.07, 0.014 +19720412, 0.35, 0.19, -0.10, 0.02, -0.17, 0.014 +19720413, -0.27, -0.09, -0.14, 0.25, 0.08, 0.014 +19720414, 0.03, 0.26, -0.15, -0.12, -0.35, 0.014 +19720417, -0.26, -0.02, 0.27, -0.27, -0.11, 0.014 +19720418, 0.17, -0.13, 0.13, -0.11, 0.18, 0.014 +19720419, -0.63, -0.37, 0.50, -0.07, 0.35, 0.014 +19720420, -0.18, 0.14, 0.11, -0.25, 0.12, 0.014 +19720421, -0.16, 0.08, 0.19, -0.18, 0.11, 0.014 +19720424, -0.66, 0.15, -0.19, 0.08, -0.27, 0.014 +19720425, -0.99, -0.28, -0.26, 0.23, -0.13, 0.014 +19720426, -0.24, -0.12, 0.03, -0.15, -0.03, 0.014 +19720427, 0.10, -0.27, 0.04, 0.18, 0.12, 0.014 +19720428, 0.51, -0.11, -0.15, 0.00, -0.25, 0.014 +19720501, -0.91, -0.17, 0.17, 0.02, 0.10, 0.014 +19720502, -0.59, -0.16, -0.02, 0.26, -0.25, 0.014 +19720503, -0.23, -0.70, 0.15, 0.10, 0.17, 0.014 +19720504, 0.23, -0.43, -0.24, 0.05, 0.05, 0.014 +19720505, 0.36, -0.14, -0.31, 0.14, -0.03, 0.014 +19720508, -0.51, -0.39, 0.08, -0.13, 0.14, 0.014 +19720509, -1.45, -0.69, -0.11, 0.33, -0.05, 0.014 +19720510, 0.70, 0.19, -0.04, 0.03, -0.39, 0.014 +19720511, 0.41, 0.25, 0.01, -0.22, -0.29, 0.014 +19720512, 0.69, 0.25, 0.00, -0.22, 0.21, 0.014 +19720515, 0.50, 0.28, -0.36, 0.25, -0.16, 0.014 +19720516, -0.23, -0.01, 0.09, 0.06, -0.10, 0.014 +19720517, 0.20, -0.14, -0.18, 0.17, -0.04, 0.014 +19720518, 0.91, -0.14, -0.58, 0.41, -0.35, 0.014 +19720519, 0.92, -0.29, -0.24, 0.27, -0.10, 0.014 +19720522, 0.55, -0.33, -0.42, 0.47, -0.32, 0.014 +19720523, 0.03, -0.14, -0.49, 0.54, -0.69, 0.014 +19720524, 0.41, -0.12, -0.27, 0.31, -0.11, 0.014 +19720525, 0.21, -0.08, -0.31, -0.02, -0.01, 0.014 +19720526, 0.16, 0.20, -0.08, -0.36, 0.08, 0.014 +19720530, -0.34, -0.20, 0.33, -0.21, 0.38, 0.014 +19720531, -0.73, -0.19, 0.11, 0.04, -0.09, 0.014 +19720601, 0.22, 0.08, -0.08, -0.02, -0.16, 0.013 +19720602, 0.11, 0.23, -0.30, 0.17, 0.08, 0.013 +19720605, -0.80, 0.01, -0.05, 0.27, -0.07, 0.013 +19720606, -0.56, 0.08, -0.40, 0.29, -0.11, 0.013 +19720607, -0.51, -0.04, -0.11, -0.02, -0.08, 0.013 +19720608, -0.30, 0.00, 0.02, 0.23, 0.04, 0.013 +19720609, -0.46, -0.03, 0.09, 0.23, 0.11, 0.013 +19720612, 0.07, -0.14, -0.05, -0.17, 0.19, 0.013 +19720613, 0.43, -0.26, -0.20, -0.24, 0.01, 0.013 +19720614, 0.76, -0.02, -0.50, 0.27, 0.06, 0.013 +19720615, -0.07, -0.18, -0.22, 0.07, 0.29, 0.013 +19720616, -0.09, 0.12, 0.09, 0.08, -0.17, 0.013 +19720619, -0.16, 0.18, -0.05, -0.12, -0.03, 0.013 +19720620, 0.36, -0.21, -0.09, 0.15, 0.13, 0.013 +19720621, 0.15, -0.33, -0.33, 0.05, -0.15, 0.013 +19720622, -0.17, -0.13, 0.01, 0.13, -0.04, 0.013 +19720623, -0.42, 0.17, -0.08, 0.14, -0.13, 0.013 +19720626, -0.70, 0.13, 0.02, -0.06, -0.10, 0.013 +19720627, -0.12, -0.21, 0.07, 0.09, 0.09, 0.013 +19720628, -0.36, 0.07, -0.26, 0.30, -0.12, 0.013 +19720629, -0.20, -0.03, -0.24, 0.00, -0.15, 0.013 +19720630, 0.39, 0.18, 0.04, -0.08, -0.01, 0.013 +19720703, 0.34, 0.02, 0.11, -0.21, -0.15, 0.016 +19720705, 0.55, -0.11, -0.14, 0.27, -0.10, 0.016 +19720706, 0.76, -0.38, -0.35, 0.17, -0.34, 0.016 +19720707, -0.32, 0.15, -0.23, 0.10, -0.22, 0.016 +19720710, -0.55, -0.09, 0.19, -0.06, -0.17, 0.016 +19720711, -0.75, -0.04, 0.21, -0.12, 0.10, 0.016 +19720712, -0.53, -0.31, 0.46, 0.17, -0.01, 0.016 +19720713, -0.63, -0.17, 0.32, -0.13, 0.34, 0.016 +19720714, 0.47, -0.21, -0.09, -0.24, 0.17, 0.016 +19720717, -0.92, -0.03, 0.69, 0.00, 0.28, 0.016 +19720718, -0.09, -0.53, 0.30, 0.08, -0.04, 0.016 +19720719, 0.23, -0.05, -0.05, 0.04, 0.16, 0.016 +19720720, -0.34, -0.09, 0.28, 0.16, -0.06, 0.016 +19720721, 0.72, -0.08, -0.16, 0.03, 0.12, 0.016 +19720724, 1.08, 0.06, -0.52, 0.04, -0.28, 0.016 +19720725, -0.31, 0.07, 0.00, 0.21, 0.04, 0.016 +19720726, -0.10, -0.13, -0.19, 0.10, -0.28, 0.016 +19720727, -0.34, -0.36, 0.16, 0.28, 0.02, 0.016 +19720728, 0.03, -0.25, -0.04, 0.08, -0.08, 0.016 +19720731, -0.07, -0.33, -0.11, 0.05, -0.05, 0.016 +19720801, 0.93, -0.47, -0.54, 0.32, -0.14, 0.012 +19720802, 0.83, -0.39, -0.32, 0.11, 0.15, 0.012 +19720803, 0.74, -0.46, -0.23, 0.54, -0.14, 0.012 +19720804, 0.34, -0.12, -0.26, 0.09, -0.08, 0.012 +19720807, 0.11, -0.21, -0.03, -0.02, -0.01, 0.012 +19720808, 0.07, -0.28, -0.13, 0.02, -0.09, 0.012 +19720809, 0.12, 0.02, -0.05, 0.01, 0.11, 0.012 +19720810, 0.22, -0.02, 0.03, -0.12, 0.20, 0.012 +19720811, 0.82, -0.16, 0.06, -0.47, 0.20, 0.012 +19720814, 0.43, -0.21, 0.45, -0.24, 0.29, 0.012 +19720815, -0.43, 0.07, 0.67, -0.45, 0.15, 0.012 +19720816, -0.28, 0.00, 0.70, -0.26, 0.07, 0.012 +19720817, -0.22, 0.14, 0.70, -0.14, 0.08, 0.012 +19720818, 0.41, -0.07, 0.26, -0.24, 0.17, 0.012 +19720821, -0.08, -0.13, 0.81, -0.20, 0.26, 0.012 +19720822, 0.50, -0.53, 1.03, -0.51, 0.51, 0.012 +19720823, -0.15, 0.07, 0.41, -0.26, 0.10, 0.012 +19720824, -1.07, 0.17, 0.46, -0.06, 0.39, 0.012 +19720825, -0.27, -0.01, 0.17, 0.03, 0.10, 0.012 +19720828, -0.47, -0.04, 0.23, 0.07, 0.03, 0.012 +19720829, 0.13, -0.36, 0.09, -0.23, 0.21, 0.012 +19720830, 0.13, -0.24, 0.14, 0.03, 0.19, 0.012 +19720831, 0.44, -0.20, -0.02, -0.05, 0.13, 0.012 +19720901, 0.40, 0.11, -0.15, 0.19, -0.12, 0.017 +19720905, -0.29, 0.09, 0.06, 0.09, -0.05, 0.017 +19720906, -0.60, -0.06, 0.25, -0.04, 0.12, 0.017 +19720907, -0.34, -0.15, 0.35, 0.07, 0.12, 0.017 +19720908, -0.14, -0.15, 0.35, -0.20, 0.28, 0.017 +19720911, -0.69, -0.30, 0.30, 0.27, -0.16, 0.017 +19720912, -0.95, -0.10, 0.33, -0.06, 0.03, 0.017 +19720913, 0.33, -0.16, -0.15, 0.31, -0.17, 0.017 +19720914, 0.02, -0.05, -0.13, 0.29, -0.05, 0.017 +19720915, -0.10, -0.04, 0.05, -0.11, -0.03, 0.017 +19720918, -0.20, -0.04, 0.28, -0.06, -0.04, 0.017 +19720919, -0.06, -0.11, 0.20, 0.03, -0.07, 0.017 +19720920, -0.06, -0.24, -0.19, 0.18, -0.09, 0.017 +19720921, -0.19, -0.13, -0.10, 0.11, 0.03, 0.017 +19720922, 0.06, -0.09, 0.25, -0.13, -0.03, 0.017 +19720925, -0.46, -0.08, -0.02, 0.29, -0.28, 0.017 +19720926, 0.09, -0.19, -0.12, -0.04, -0.25, 0.017 +19720927, 1.38, -0.43, -0.65, 0.31, -0.07, 0.017 +19720928, 0.60, -0.25, -0.43, 0.25, -0.78, 0.017 +19720929, 0.11, 0.08, -0.03, -0.02, -0.43, 0.017 +19721002, -0.32, 0.05, 0.23, -0.11, 0.01, 0.018 +19721003, 0.07, -0.35, 0.10, 0.11, -0.12, 0.018 +19721004, -0.26, -0.47, 0.74, -0.01, 0.05, 0.018 +19721005, -1.11, -0.02, 0.64, -0.23, 0.13, 0.018 +19721006, 0.63, -0.25, -0.23, 0.08, 0.03, 0.018 +19721009, 0.22, 0.12, -0.08, -0.15, 0.12, 0.018 +19721010, 0.10, 0.07, -0.05, 0.12, 0.22, 0.018 +19721011, -0.46, -0.11, 0.13, 0.28, -0.30, 0.018 +19721012, -0.84, -0.11, 0.41, -0.01, 0.12, 0.018 +19721013, -0.68, 0.15, 0.18, -0.43, 0.27, 0.018 +19721016, -1.05, 0.24, 0.19, -0.13, -0.06, 0.018 +19721017, 0.60, -0.53, 0.28, -0.04, -0.01, 0.018 +19721018, 0.57, -0.31, -0.17, 0.04, 0.04, 0.018 +19721019, -0.12, -0.15, -0.13, 0.01, -0.11, 0.018 +19721020, 1.02, -0.40, -0.26, 0.17, -0.07, 0.018 +19721023, 0.95, -0.20, -0.19, 0.04, -0.11, 0.018 +19721024, 0.31, -0.25, -0.10, -0.12, -0.26, 0.018 +19721025, -0.04, -0.04, 0.12, 0.10, 0.01, 0.018 +19721026, 0.34, 0.09, -0.06, 0.02, -0.01, 0.018 +19721027, -0.29, 0.31, -0.16, 0.10, -0.11, 0.018 +19721030, -0.04, -0.10, -0.04, -0.09, 0.03, 0.018 +19721031, 0.94, -0.32, -0.26, 0.17, 0.08, 0.018 +19721101, 1.02, -0.33, -0.15, 0.14, 0.04, 0.019 +19721102, 0.47, -0.29, 0.11, 0.10, 0.19, 0.019 +19721103, 0.84, -0.12, 0.16, 0.15, -0.06, 0.019 +19721106, -0.17, 0.20, 0.54, -0.14, 0.32, 0.019 +19721108, -0.49, 0.03, 0.41, -0.11, 0.19, 0.019 +19721109, 0.06, -0.24, 0.63, -0.21, 0.28, 0.019 +19721110, 0.30, 0.15, 0.59, -0.26, 0.29, 0.019 +19721113, 0.09, -0.25, 0.43, -0.27, 0.10, 0.019 +19721114, 0.83, -0.60, 0.06, 0.41, -0.07, 0.019 +19721115, -0.34, 0.21, 0.01, 0.14, 0.12, 0.019 +19721116, 0.50, -0.26, 0.02, 0.11, -0.20, 0.019 +19721117, 0.31, 0.07, 0.31, -0.04, 0.18, 0.019 +19721120, 0.01, 0.10, 0.34, -0.24, -0.07, 0.019 +19721121, 0.46, -0.02, 0.26, -0.11, 0.43, 0.019 +19721122, 0.59, 0.02, 0.29, 0.04, 0.02, 0.019 +19721124, 0.27, -0.28, 0.83, -0.61, 0.44, 0.019 +19721127, -0.38, 0.01, 0.25, -0.21, 0.32, 0.019 +19721128, -0.19, 0.43, 0.25, -0.56, 0.32, 0.019 +19721129, 0.02, 0.15, -0.20, -0.10, 0.24, 0.019 +19721130, 0.26, 0.49, -0.48, -0.03, 0.18, 0.019 +19721201, 0.65, 0.31, -0.21, 0.03, -0.14, 0.020 +19721204, 0.31, 0.29, -0.26, 0.17, -0.26, 0.020 +19721205, -0.21, -0.04, -0.05, 0.35, -0.06, 0.020 +19721206, 0.32, 0.12, -0.13, 0.00, 0.22, 0.020 +19721207, 0.41, -0.16, -0.32, 0.33, -0.28, 0.020 +19721208, 0.19, -0.07, -0.70, 0.23, -0.07, 0.020 +19721211, 0.19, -0.27, -0.22, 0.01, -0.19, 0.020 +19721212, -0.41, -0.28, 0.19, -0.09, 0.13, 0.020 +19721213, -0.19, -0.46, 0.08, 0.13, 0.01, 0.020 +19721214, -0.33, -0.18, 0.10, 0.30, -0.41, 0.020 +19721215, 0.05, -0.07, -0.26, 0.12, -0.16, 0.020 +19721218, -1.08, -0.03, -0.04, 0.04, -0.05, 0.020 +19721219, -0.41, -0.06, -0.02, -0.02, -0.12, 0.020 +19721220, -0.36, -0.13, 0.04, 0.21, -0.36, 0.020 +19721221, -0.66, 0.14, 0.04, -0.07, 0.28, 0.020 +19721222, 0.54, -0.15, 0.06, 0.05, -0.09, 0.020 +19721226, 0.21, -0.40, 0.10, 0.06, 0.06, 0.020 +19721227, 0.40, -0.57, -0.19, 0.66, -0.46, 0.020 +19721229, 1.09, 0.21, -0.50, 0.09, -0.27, 0.020 +19730102, 0.87, 0.83, -0.02, -0.30, 0.38, 0.021 +19730103, 0.35, 0.19, 0.13, -0.39, 0.22, 0.021 +19730104, -0.23, 0.15, 0.15, 0.16, 0.02, 0.021 +19730105, 0.30, 0.01, -0.09, 0.19, -0.22, 0.021 +19730108, -0.03, -0.13, 0.31, -0.02, 0.35, 0.021 +19730109, -0.09, -0.18, 0.32, 0.01, 0.08, 0.021 +19730110, -0.26, -0.17, 0.61, -0.19, 0.21, 0.021 +19730111, 0.55, -0.47, 0.04, 0.07, 0.06, 0.021 +19730112, -0.85, -0.31, 0.08, 0.25, -0.11, 0.021 +19730115, -0.84, -0.28, 0.26, 0.16, 0.01, 0.021 +19730116, -0.36, -0.24, -0.02, -0.03, 0.34, 0.021 +19730117, 0.37, -0.27, 0.14, -0.22, 0.22, 0.021 +19730118, 0.13, -0.19, -0.08, 0.02, -0.19, 0.021 +19730119, -0.19, -0.18, -0.46, 0.34, -0.38, 0.021 +19730122, -0.53, -0.06, 0.09, 0.04, -0.11, 0.021 +19730123, -0.16, -0.33, -0.04, 0.43, -0.07, 0.021 +19730124, -1.39, -0.11, 0.13, 0.28, -0.34, 0.021 +19730126, -0.37, -0.53, 0.29, -0.39, -0.05, 0.021 +19730129, -0.51, -0.15, 0.23, 0.32, -0.08, 0.021 +19730130, -0.17, -0.29, 0.26, -0.04, 0.09, 0.021 +19730131, 0.12, -0.22, 0.45, -0.31, 0.56, 0.021 +19730201, -1.16, -0.11, 0.16, 0.05, -0.20, 0.022 +19730202, -0.41, -0.05, -0.08, 0.30, -0.27, 0.022 +19730205, -0.19, -0.28, -0.12, -0.11, -0.23, 0.022 +19730206, 0.19, -0.42, -0.17, 0.02, 0.05, 0.022 +19730207, -0.77, -0.02, -0.16, 0.00, -0.06, 0.022 +19730208, -0.44, -0.05, -0.44, 0.15, -0.33, 0.022 +19730209, 1.35, -0.24, -0.41, 0.12, 0.22, 0.022 +19730212, 1.07, -0.23, -0.23, -0.02, 0.20, 0.022 +19730213, 0.51, -0.38, -0.01, 0.59, 0.70, 0.022 +19730214, -1.41, 0.15, 0.43, -0.27, -0.14, 0.022 +19730215, -0.69, -0.12, 0.16, -0.08, -0.17, 0.022 +19730216, 0.36, -0.36, 0.18, -0.20, -0.27, 0.022 +19730220, 0.25, -0.46, 0.40, -0.34, 0.28, 0.022 +19730221, -0.74, -0.36, 0.55, -0.19, 0.19, 0.022 +19730222, -0.30, -0.34, 0.23, -0.16, -0.06, 0.022 +19730223, -1.08, -0.10, 0.54, -0.03, -0.07, 0.022 +19730226, -0.88, -0.44, 0.59, -0.20, 0.10, 0.022 +19730227, -1.15, -0.09, 0.65, -0.07, 0.41, 0.022 +19730228, 0.62, -0.41, -0.40, 0.00, -0.28, 0.022 +19730301, -0.70, 0.12, 0.46, -0.24, 0.27, 0.021 +19730302, 0.86, -0.87, -0.16, 0.23, -0.14, 0.021 +19730305, 0.37, -0.03, -0.46, 0.15, -0.41, 0.021 +19730306, 1.26, -0.30, -0.23, -0.01, 0.00, 0.021 +19730307, 0.37, 0.18, -0.38, 0.21, -0.30, 0.021 +19730308, -0.21, 0.17, 0.21, 0.21, 0.27, 0.021 +19730309, -0.36, 0.19, 0.07, -0.03, 0.13, 0.021 +19730312, -0.03, -0.12, 0.17, 0.10, -0.12, 0.021 +19730313, 0.42, -0.46, 0.19, 0.09, -0.19, 0.021 +19730314, 0.26, -0.49, 0.19, -0.08, -0.06, 0.021 +19730315, -0.71, 0.00, 0.41, 0.10, 0.09, 0.021 +19730316, -0.52, 0.14, 0.10, 0.11, 0.00, 0.021 +19730319, -1.23, 0.02, 0.41, -0.14, 0.00, 0.021 +19730320, -0.33, -0.32, 0.32, -0.24, 0.07, 0.021 +19730321, -1.29, 0.21, 1.05, -0.34, 0.39, 0.021 +19730322, -1.68, -0.28, 0.74, -0.58, 0.35, 0.021 +19730323, 0.00, -0.26, 0.19, -0.28, 0.03, 0.021 +19730326, 0.75, -0.27, -0.21, 0.07, -0.26, 0.021 +19730327, 1.43, -0.32, -0.51, -0.03, 0.29, 0.021 +19730328, 0.03, 0.08, -0.02, 0.06, 0.21, 0.021 +19730329, 0.98, -0.33, 0.08, -0.32, 0.20, 0.021 +19730330, -0.92, 0.63, 0.08, -0.05, -0.18, 0.021 +19730402, -1.20, 0.07, 0.64, 0.02, 0.34, 0.026 +19730403, -1.00, 0.05, 0.37, -0.09, -0.02, 0.026 +19730404, -0.63, 0.04, 0.34, -0.04, 0.31, 0.026 +19730405, -0.47, -0.40, 0.29, 0.01, 0.12, 0.026 +19730406, 0.70, -0.38, -0.24, 0.04, 0.04, 0.026 +19730409, 1.26, -0.89, 0.05, -0.18, 0.02, 0.026 +19730410, 1.11, -0.59, -0.03, -0.10, 0.10, 0.026 +19730411, 0.39, -0.25, 0.33, 0.05, -0.21, 0.026 +19730412, -0.09, 0.17, 0.37, -0.07, 0.40, 0.026 +19730413, -0.42, 0.27, 0.26, -0.18, 0.34, 0.026 +19730416, -0.56, 0.12, 0.22, -0.18, 0.59, 0.026 +19730417, -0.59, -0.12, 0.78, -0.05, 0.68, 0.026 +19730418, 0.34, -0.66, 0.07, -0.18, -0.08, 0.026 +19730419, 0.53, -0.16, 0.20, -0.18, 0.02, 0.026 +19730423, -0.58, -0.03, 0.02, -0.10, -0.10, 0.026 +19730424, -1.51, -0.02, 0.62, 0.17, 0.17, 0.026 +19730425, -1.56, -0.09, 1.04, -0.46, 0.13, 0.026 +19730426, 0.32, -0.35, 0.03, 0.06, -0.04, 0.026 +19730427, -1.54, 0.32, 0.49, -0.02, -0.03, 0.026 +19730430, -0.24, -0.33, 0.16, -0.25, 0.06, 0.026 +19730501, 0.02, -0.32, 0.02, -0.01, -0.28, 0.023 +19730502, 1.18, -0.46, -0.43, 0.48, -0.15, 0.023 +19730503, 1.46, -0.78, -0.12, 0.05, 0.05, 0.023 +19730504, 0.76, 0.07, -0.55, 0.05, -0.01, 0.023 +19730507, -0.43, 0.15, 0.16, 0.06, -0.27, 0.023 +19730508, 0.58, -0.22, -0.11, -0.01, 0.21, 0.023 +19730509, -0.51, 0.45, -0.34, -0.07, -0.01, 0.023 +19730510, -0.68, 0.20, 0.00, 0.29, -0.08, 0.023 +19730511, -1.17, 0.20, 0.25, -0.16, -0.20, 0.023 +19730514, -2.19, -0.06, 0.85, -0.21, 0.25, 0.023 +19730515, 0.42, -1.09, -0.02, -0.07, -0.05, 0.023 +19730516, -0.13, -0.34, 0.40, 0.10, 0.06, 0.023 +19730517, -0.89, -0.06, 0.30, 0.02, 0.24, 0.023 +19730518, -1.88, -0.98, 0.27, 0.29, -0.49, 0.023 +19730521, -1.49, -2.35, 0.13, 0.52, -0.52, 0.023 +19730522, 0.75, -0.59, -0.26, 0.36, -0.04, 0.023 +19730523, 0.40, -0.51, -0.08, -0.01, -0.15, 0.023 +19730524, 2.79, -1.09, -0.91, 0.31, -0.49, 0.023 +19730525, 0.94, 1.27, -0.41, -0.30, 0.35, 0.023 +19730529, -0.32, 0.52, -0.14, 0.01, 0.03, 0.023 +19730530, -1.53, -0.01, 0.64, 0.32, -0.08, 0.023 +19730531, -0.91, -0.32, 0.54, -0.02, -0.12, 0.023 +19730601, -0.95, -0.13, 0.68, -0.33, 0.44, 0.024 +19730604, -1.14, -0.36, 0.55, -0.19, -0.17, 0.024 +19730605, 1.36, -0.76, -0.70, 0.21, -0.29, 0.024 +19730606, -0.27, 0.03, -0.12, 0.44, -0.36, 0.024 +19730607, 1.30, -0.66, -0.26, 0.17, -0.32, 0.024 +19730608, 1.08, 0.03, -0.20, -0.18, 0.57, 0.024 +19730611, -0.31, 0.38, 0.38, -0.14, -0.16, 0.024 +19730612, 1.44, -0.67, -0.56, -0.17, 0.05, 0.024 +19730613, -0.49, 1.02, 0.06, -0.19, 0.63, 0.024 +19730614, -1.06, 0.36, 0.11, 0.13, -0.25, 0.024 +19730615, -1.26, 0.14, 0.71, 0.02, -0.25, 0.024 +19730618, -1.44, -0.09, 0.30, -0.17, -0.05, 0.024 +19730619, 0.24, -0.44, -0.27, 0.12, -0.20, 0.024 +19730620, 0.38, -0.25, -0.34, 0.01, 0.06, 0.024 +19730621, -1.14, 0.30, 0.49, 0.08, -0.43, 0.024 +19730622, 0.40, -0.45, 0.38, 0.15, 0.53, 0.024 +19730625, -1.43, -0.42, 1.10, -0.45, 0.38, 0.024 +19730626, 0.89, -0.65, -0.37, 0.11, 0.09, 0.024 +19730627, 0.30, -0.21, -0.11, -0.20, -0.03, 0.024 +19730628, 0.99, -0.22, -0.55, 0.21, -0.10, 0.024 +19730629, -0.34, 0.44, 0.11, 0.07, 0.15, 0.024 +19730702, -1.20, 0.63, 0.59, -0.25, 0.20, 0.030 +19730703, -0.92, 0.45, 0.91, -0.69, 0.66, 0.030 +19730705, -0.18, -0.07, 0.19, -0.12, 0.20, 0.030 +19730706, -0.43, 0.30, 0.36, -0.35, 0.17, 0.030 +19730709, 0.80, -0.51, -0.32, -0.17, -0.26, 0.030 +19730710, 1.38, 0.09, -0.63, 0.11, -0.43, 0.030 +19730711, 2.17, 0.22, -0.72, 0.07, -0.46, 0.030 +19730712, -0.06, 0.89, -0.43, 0.20, -0.80, 0.030 +19730713, -1.09, 1.01, 0.10, -0.37, -0.05, 0.030 +19730716, 1.50, -0.10, -1.14, 0.17, -0.64, 0.030 +19730717, 0.28, 0.72, -0.53, 0.07, -0.40, 0.030 +19730718, 0.79, 0.66, -0.51, 0.04, -0.24, 0.030 +19730719, 0.37, 0.66, -0.69, 0.37, -0.23, 0.030 +19730720, 0.66, 0.72, -0.60, 0.20, -0.17, 0.030 +19730723, 0.29, 0.55, -0.13, 0.07, -0.11, 0.030 +19730724, 0.55, -0.09, -0.55, -0.11, -0.08, 0.030 +19730725, 1.36, 0.16, -0.98, 0.36, -0.49, 0.030 +19730726, 0.11, 0.20, -0.28, 0.36, 0.04, 0.030 +19730727, -0.24, 0.05, 0.03, 0.12, 0.12, 0.030 +19730730, -0.33, -0.10, 0.26, 0.02, -0.05, 0.030 +19730731, -0.85, 0.19, 0.20, -0.20, -0.07, 0.030 +19730801, -1.31, -0.20, 0.41, -0.13, 0.02, 0.030 +19730802, -0.12, -0.14, -0.22, 0.10, -0.16, 0.030 +19730803, -0.10, 0.27, -0.20, 0.04, -0.18, 0.030 +19730806, 0.27, 0.10, -0.36, -0.01, -0.29, 0.030 +19730807, -0.17, 0.11, -0.25, 0.09, -0.03, 0.030 +19730808, -0.97, 0.05, 0.23, -0.01, 0.07, 0.030 +19730809, -0.03, -0.32, 0.11, -0.10, 0.22, 0.030 +19730810, -0.80, -0.12, 0.33, 0.09, 0.29, 0.030 +19730813, -1.08, -0.27, 0.26, -0.05, 0.15, 0.030 +19730814, -0.93, -0.13, 0.31, -0.39, 0.38, 0.030 +19730815, 0.24, -0.26, 0.00, -0.14, 0.03, 0.030 +19730816, -0.52, 0.39, 0.50, -0.21, 0.41, 0.030 +19730817, 0.02, -0.08, 0.31, -0.41, -0.06, 0.030 +19730820, -0.75, -0.10, 0.45, -0.06, 0.26, 0.030 +19730821, -0.78, -0.03, 0.01, -0.06, 0.10, 0.030 +19730822, -0.48, -0.25, 0.04, 0.21, 0.22, 0.030 +19730823, 1.28, -0.48, -0.52, 0.19, 0.04, 0.030 +19730824, -0.14, 0.03, 0.19, -0.27, -0.01, 0.030 +19730827, 0.68, -0.44, -0.54, 0.39, -0.21, 0.030 +19730828, 0.47, -0.34, 0.04, -0.12, 0.29, 0.030 +19730829, 0.89, -0.10, 0.00, -0.26, -0.39, 0.030 +19730830, 0.01, 0.36, 0.19, -0.02, 0.00, 0.030 +19730831, 0.50, 0.15, -0.17, -0.22, 0.01, 0.030 +19730904, 0.37, 0.03, 0.30, -0.49, 0.32, 0.036 +19730905, 0.19, 0.00, 0.06, -0.29, 0.14, 0.036 +19730906, 0.48, 0.00, 0.49, -0.35, 0.13, 0.036 +19730907, -0.18, 0.58, 0.12, 0.14, 0.22, 0.036 +19730910, -0.88, 0.57, 0.43, 0.04, 0.37, 0.036 +19730911, -0.58, 0.03, 0.19, -0.22, 0.04, 0.036 +19730912, -0.24, -0.02, 0.01, 0.32, -0.18, 0.036 +19730913, 0.29, -0.05, -0.65, 0.14, -0.46, 0.036 +19730914, 0.89, -0.08, -0.76, 0.34, -0.15, 0.036 +19730917, -0.04, 0.55, 0.22, -0.28, -0.26, 0.036 +19730918, -0.23, 0.21, 0.32, -0.51, 0.33, 0.036 +19730919, 1.93, -0.38, -0.72, 0.16, -0.07, 0.036 +19730920, 0.92, 0.25, -0.08, -0.21, -0.34, 0.036 +19730921, 0.51, 0.26, 0.55, -0.30, 0.29, 0.036 +19730924, 0.29, 0.52, 0.83, -0.31, 0.41, 0.036 +19730925, 0.50, 0.01, 0.33, 0.14, 0.27, 0.036 +19730926, 0.70, 0.29, 0.29, -0.14, 0.50, 0.036 +19730927, 0.23, 0.06, 0.05, -0.17, 0.21, 0.036 +19730928, -0.48, 0.48, 0.15, -0.21, -0.04, 0.036 +19731001, -0.16, 0.66, 0.70, -0.30, 0.56, 0.028 +19731002, 0.58, 0.73, -0.13, -0.03, 0.07, 0.028 +19731003, 0.08, 0.78, 0.62, -0.59, 0.55, 0.028 +19731004, -0.39, 0.19, 0.43, -0.24, 0.29, 0.028 +19731005, 1.19, -0.06, -0.26, 0.09, 0.00, 0.028 +19731008, 0.44, 0.20, -0.19, -0.68, 0.17, 0.028 +19731009, -0.10, -0.08, -0.08, -0.24, -0.02, 0.028 +19731010, -1.16, -0.61, -0.27, 0.50, 0.05, 0.028 +19731011, 1.65, 0.12, -0.54, 0.30, -0.32, 0.028 +19731012, 0.37, 0.15, -0.17, 0.00, -0.26, 0.028 +19731015, -1.17, 0.11, 0.12, -0.05, 0.18, 0.028 +19731016, -0.01, -0.39, -0.28, -0.03, -0.16, 0.028 +19731017, -0.29, -0.14, 0.13, -0.17, 0.32, 0.028 +19731018, -0.01, -0.33, 0.02, -0.10, 0.15, 0.028 +19731019, 0.20, 0.07, 0.28, -0.04, 0.12, 0.028 +19731022, -1.07, -0.29, 0.47, 0.16, -0.10, 0.028 +19731023, 0.35, -0.40, -0.11, 0.18, 0.37, 0.028 +19731024, 0.29, -0.30, 0.05, 0.00, 0.44, 0.028 +19731025, 0.15, -0.22, -0.02, -0.10, -0.26, 0.028 +19731026, 0.72, -0.29, 0.08, -0.14, 0.22, 0.028 +19731029, -0.26, -0.15, 0.27, -0.19, 0.02, 0.028 +19731030, -1.52, -0.04, 0.57, -0.26, 0.10, 0.028 +19731031, -0.88, 0.05, 0.05, -0.08, 0.09, 0.028 +19731101, -0.58, -0.11, -0.21, 0.07, 0.06, 0.026 +19731102, -0.56, -0.30, 0.11, -0.08, -0.03, 0.026 +19731105, -1.59, -0.28, 0.28, 0.08, 0.03, 0.026 +19731106, -0.72, -0.49, 0.31, 0.04, 0.15, 0.026 +19731107, 0.63, -0.81, 0.59, -0.43, 0.41, 0.026 +19731108, 1.08, -0.09, -0.37, 0.06, 0.03, 0.026 +19731109, -1.48, 0.05, 0.70, -0.45, 0.36, 0.026 +19731112, -0.97, -0.69, -0.08, -0.27, -0.19, 0.026 +19731113, -0.29, -0.93, -0.30, -0.04, -0.42, 0.026 +19731114, -1.87, -0.37, 0.40, -0.03, -0.05, 0.026 +19731115, -0.13, -0.68, 0.30, -0.30, -0.02, 0.026 +19731116, 1.13, -0.59, 0.18, 0.46, 0.52, 0.026 +19731119, -3.03, -0.14, 1.18, -0.57, 0.21, 0.026 +19731120, -2.26, -1.39, 0.13, 0.09, -0.26, 0.026 +19731121, 1.06, -0.77, -0.07, -0.55, 0.22, 0.026 +19731123, -0.14, 0.33, 0.64, -0.58, 0.36, 0.026 +19731126, -3.01, -1.20, 0.96, -0.08, 0.07, 0.026 +19731127, -0.94, -0.38, 0.05, 0.04, -0.09, 0.026 +19731128, 1.98, 0.06, -0.87, 0.18, 0.08, 0.026 +19731129, -0.35, 0.09, 0.13, -0.44, 0.25, 0.026 +19731130, -1.35, 0.16, 0.73, -0.45, 0.12, 0.026 +19731203, -2.06, -0.32, 0.18, -0.07, 0.00, 0.032 +19731204, -0.42, -0.47, -0.26, -0.12, -0.27, 0.032 +19731205, -1.74, -0.61, 0.16, -0.15, 0.36, 0.032 +19731206, 2.25, -1.09, -0.38, 0.20, -0.33, 0.032 +19731207, 2.19, 0.34, 0.72, -0.70, 0.70, 0.032 +19731210, 1.50, -0.39, -0.39, -0.07, -0.08, 0.032 +19731211, -1.81, 0.23, 0.80, 0.07, 0.28, 0.032 +19731212, -2.60, -0.04, 0.67, -0.58, 0.33, 0.032 +19731213, -1.48, -0.22, 0.89, -0.04, 0.48, 0.032 +19731214, 0.97, -0.57, 0.08, -0.25, 0.23, 0.032 +19731217, -0.66, -0.02, 0.59, -0.21, 0.57, 0.032 +19731218, 1.88, -1.04, -0.42, 0.23, -0.39, 0.032 +19731219, -0.02, -0.32, 0.18, -0.26, 0.08, 0.032 +19731220, -0.30, 0.12, 0.53, -0.67, 0.33, 0.032 +19731221, -0.96, 0.33, 0.87, -0.21, 0.03, 0.032 +19731224, -0.63, 0.47, 0.94, -0.82, 0.51, 0.032 +19731226, 2.71, -1.15, -0.85, 0.69, -0.49, 0.032 +19731227, 1.96, -0.48, -0.72, 0.35, 0.08, 0.032 +19731228, -0.11, 0.02, 0.17, 0.12, 0.04, 0.032 +19731231, 0.20, 0.57, 0.16, -0.28, -0.32, 0.032 +19740102, 0.26, 1.39, 1.20, -0.98, 0.57, 0.028 +19740103, 2.32, 1.59, 0.93, -1.11, 1.09, 0.028 +19740104, -0.56, 1.79, 1.54, -1.12, 1.17, 0.028 +19740107, -0.52, 1.47, 1.05, -0.91, 0.78, 0.028 +19740108, -1.77, 1.00, 0.84, -0.52, 0.51, 0.028 +19740109, -2.73, 0.71, 0.52, 0.01, 0.21, 0.028 +19740110, -1.07, 0.21, -0.18, 0.44, -0.14, 0.028 +19740111, 1.16, -0.23, 0.25, -0.10, 0.16, 0.028 +19740114, -0.14, 0.09, 0.54, -0.33, 0.21, 0.028 +19740115, 0.75, -0.39, -0.01, 0.14, 0.20, 0.028 +19740116, 1.43, -0.51, -0.22, 0.09, -0.24, 0.028 +19740117, 1.67, 0.03, -0.84, 0.77, -0.41, 0.028 +19740118, -1.55, 1.07, -0.04, 0.08, -0.46, 0.028 +19740121, -0.27, -0.27, -0.17, 0.32, 0.00, 0.028 +19740122, 0.98, -0.31, -0.20, 0.62, 0.02, 0.028 +19740123, 0.49, 0.37, -0.35, 0.09, -0.23, 0.028 +19740124, -0.25, 0.51, 0.32, -0.26, -0.03, 0.028 +19740125, -0.11, 0.49, -0.28, -0.15, -0.24, 0.028 +19740128, -0.50, 0.52, 0.15, 0.15, 0.48, 0.028 +19740129, -0.16, 0.00, 0.48, -0.08, 0.41, 0.028 +19740130, 1.01, -0.14, 0.00, 0.06, 0.17, 0.028 +19740131, -0.45, 0.44, 0.11, -0.04, 0.05, 0.028 +19740201, -1.23, 0.56, 0.23, -0.08, 0.05, 0.031 +19740204, -1.96, 0.05, 0.09, -0.16, 0.30, 0.031 +19740205, -0.40, -0.05, 0.48, -0.27, 0.35, 0.031 +19740206, 0.29, -0.16, 0.11, 0.07, 0.37, 0.031 +19740207, 0.12, 0.16, 0.45, -0.15, 0.09, 0.031 +19740208, -0.95, 0.40, 0.66, -0.29, 0.28, 0.031 +19740211, -1.76, 0.56, 0.81, -0.31, 0.41, 0.031 +19740212, 0.04, -0.48, 0.27, -0.10, 0.16, 0.031 +19740213, -0.04, -0.14, 0.15, -0.03, 0.31, 0.031 +19740214, -0.01, 0.27, 0.11, -0.25, -0.01, 0.031 +19740215, 1.30, -0.39, -0.39, 0.34, 0.09, 0.031 +19740219, -0.13, -0.07, 0.07, 0.13, -0.41, 0.031 +19740220, 1.24, -0.60, -0.27, 0.22, 0.12, 0.031 +19740221, 1.24, -0.51, -0.11, -0.31, 0.33, 0.031 +19740222, 0.82, -0.06, 0.40, -0.40, 0.43, 0.031 +19740225, -0.26, 0.29, 0.25, -0.20, 0.03, 0.031 +19740226, 0.98, -0.14, 0.02, -0.27, 0.17, 0.031 +19740227, 0.49, 0.29, -0.58, -0.05, -0.53, 0.031 +19740228, -0.14, 0.17, -0.28, 0.20, 0.02, 0.031 +19740301, -0.61, 0.73, 0.32, -0.04, 0.12, 0.026 +19740304, 0.01, 0.21, -0.05, 0.01, -0.07, 0.026 +19740305, 1.76, -0.44, -0.80, 0.90, -0.21, 0.026 +19740306, 0.56, 0.37, -0.70, 0.80, -0.17, 0.026 +19740307, -0.94, 0.72, 0.27, -0.15, -0.17, 0.026 +19740308, 0.75, -0.26, -0.31, 0.42, -0.17, 0.026 +19740311, 1.01, -0.34, -0.37, 0.50, 0.24, 0.026 +19740312, 0.18, -0.08, -0.08, 0.35, -0.34, 0.026 +19740313, 0.55, -0.09, -0.42, 0.21, -0.28, 0.026 +19740314, 0.04, 0.39, -0.22, 0.19, 0.00, 0.026 +19740315, -0.29, 0.39, -0.03, 0.16, -0.10, 0.026 +19740318, -1.29, 0.65, 0.44, -0.13, 0.06, 0.026 +19740319, -0.84, 0.09, 0.19, -0.28, 0.13, 0.026 +19740320, 0.26, -0.20, -0.25, 0.21, 0.13, 0.026 +19740321, -0.23, 0.03, 0.14, 0.22, 0.30, 0.026 +19740322, -0.11, -0.06, -0.06, 0.02, 0.24, 0.026 +19740325, 0.19, -0.42, -0.33, 0.35, -0.36, 0.026 +19740326, 0.21, -0.10, 0.32, 0.11, -0.11, 0.026 +19740327, -1.35, 0.44, 0.64, -0.31, 0.28, 0.026 +19740328, -1.85, 0.30, 0.48, -0.20, 0.32, 0.026 +19740329, -0.81, 0.32, 0.65, -0.37, 0.50, 0.026 +19740401, -0.79, 0.34, 0.34, -0.08, 0.31, 0.036 +19740402, 0.00, -0.06, 0.01, 0.08, 0.18, 0.036 +19740403, 0.81, -0.57, -0.28, 0.34, -0.05, 0.036 +19740404, -0.08, 0.00, 0.03, 0.29, -0.02, 0.036 +19740405, -1.40, 0.64, 0.38, 0.08, 0.28, 0.036 +19740408, -1.04, -0.05, 0.25, 0.08, 0.36, 0.036 +19740409, 0.49, -0.37, -0.02, 0.11, -0.04, 0.036 +19740410, -0.21, 0.07, 0.35, -0.19, 0.23, 0.036 +19740411, -0.27, 0.19, 0.22, -0.13, -0.05, 0.036 +19740415, -0.17, -0.01, 0.25, -0.20, 0.22, 0.036 +19740416, 1.56, -0.64, -0.29, 0.40, -0.26, 0.036 +19740417, 0.67, -0.17, -0.16, 0.52, -0.18, 0.036 +19740418, 0.35, -0.05, 0.04, 0.04, -0.12, 0.036 +19740419, -1.05, 0.39, 0.05, -0.06, 0.07, 0.036 +19740422, -0.41, -0.02, 0.09, -0.06, 0.01, 0.036 +19740423, -1.83, 0.08, 0.10, 0.69, 0.81, 0.036 +19740424, -1.73, 0.15, 0.31, 0.22, 0.17, 0.036 +19740425, -0.97, -0.31, 0.03, 0.23, -0.02, 0.036 +19740426, 0.57, -0.19, -0.09, 0.28, 0.12, 0.036 +19740429, -0.08, 0.12, -0.23, 0.01, -0.14, 0.036 +19740430, 0.26, -0.16, -0.32, 0.29, 0.04, 0.036 +19740501, 1.95, -0.96, -0.54, 0.23, 0.15, 0.034 +19740502, -0.10, 0.23, -0.12, -0.01, -0.27, 0.034 +19740503, -0.84, 0.29, 0.32, -0.04, 0.23, 0.034 +19740506, -0.16, -0.24, -0.13, 0.36, 0.06, 0.034 +19740507, 0.18, -0.34, -0.15, 0.51, -0.11, 0.034 +19740508, 0.01, -0.07, -0.34, 0.36, 0.07, 0.034 +19740509, 1.07, -0.80, -0.26, 0.50, 0.19, 0.034 +19740510, -1.63, 0.67, 0.36, -0.10, 0.52, 0.034 +19740513, -0.96, -0.20, 0.20, 0.12, 0.52, 0.034 +19740514, -0.03, -0.18, -0.21, 0.28, -0.12, 0.034 +19740515, -0.23, -0.15, -0.16, 0.23, -0.27, 0.034 +19740516, -0.66, 0.38, -0.01, -0.02, -0.37, 0.034 +19740517, -1.79, 0.28, 0.30, 0.20, 0.26, 0.034 +19740520, -0.48, -0.29, -0.23, 0.34, -0.17, 0.034 +19740521, -0.03, -0.64, -0.67, 0.81, -0.62, 0.034 +19740522, -1.00, -0.14, -0.18, 0.57, -0.28, 0.034 +19740523, 0.01, -0.84, -0.34, 0.63, -0.51, 0.034 +19740524, 1.52, -0.45, -0.33, 0.12, 0.06, 0.034 +19740528, -0.24, 0.05, 0.23, -0.03, 0.22, 0.034 +19740529, -1.62, 0.55, -0.02, 0.52, 0.23, 0.034 +19740530, 0.54, -0.68, 0.12, -0.36, 0.34, 0.034 +19740531, -0.14, 0.13, -0.01, 0.14, -0.15, 0.034 +19740603, 1.86, -0.79, -0.19, -0.04, 0.26, 0.030 +19740604, 1.22, 0.00, 0.06, -0.01, 0.01, 0.030 +19740605, 0.27, 0.20, 0.18, -0.23, -0.08, 0.030 +19740606, 1.70, -0.67, -0.68, 0.29, -0.57, 0.030 +19740607, 0.66, 0.29, 0.06, -0.29, 0.23, 0.030 +19740610, 0.55, -0.16, -0.30, 0.27, 0.28, 0.030 +19740611, -0.85, 0.40, -0.10, 0.09, 0.17, 0.030 +19740612, -0.38, -0.15, -0.19, 0.42, 0.09, 0.030 +19740613, 0.21, 0.13, -0.48, 0.19, -0.25, 0.030 +19740614, -1.03, 0.40, 0.28, -0.09, 0.08, 0.030 +19740617, -1.36, 0.45, 0.42, 0.04, 0.39, 0.030 +19740618, -0.69, 0.12, 0.05, 0.13, 0.11, 0.030 +19740619, -0.75, 0.14, 0.23, -0.09, 0.50, 0.030 +19740620, -0.83, 0.05, 0.17, 0.14, 0.34, 0.030 +19740621, -0.97, 0.12, 0.04, -0.01, -0.03, 0.030 +19740624, 0.07, -0.34, 0.06, -0.11, 0.25, 0.030 +19740625, 1.26, -0.79, -0.23, 0.05, -0.25, 0.030 +19740626, -1.57, 0.48, 0.91, -0.37, 0.65, 0.030 +19740627, -1.55, 0.13, 0.37, 0.23, 0.77, 0.030 +19740628, -0.58, -0.14, 0.00, 0.02, 0.14, 0.030 +19740701, -0.18, -0.37, 0.12, -0.29, -0.04, 0.032 +19740702, -2.13, 0.43, 0.71, 0.23, 0.79, 0.032 +19740703, -0.16, -0.48, 0.22, -0.04, 0.11, 0.032 +19740705, -0.57, 0.21, 0.25, -0.34, 0.37, 0.032 +19740708, -3.21, 0.18, 0.82, -0.02, 0.79, 0.032 +19740709, 0.24, -0.71, -0.29, 0.24, -0.01, 0.032 +19740710, -1.75, 0.61, 0.54, -0.37, 0.50, 0.032 +19740711, -0.14, -0.41, -0.33, 0.07, -0.10, 0.032 +19740712, 4.01, -1.15, -0.26, 0.33, -0.77, 0.032 +19740715, 0.79, 0.21, 0.17, 0.00, -0.43, 0.032 +19740716, -1.04, 0.54, 0.17, -0.50, 0.34, 0.032 +19740717, 1.08, -0.47, -0.14, -0.29, -0.08, 0.032 +19740718, 0.18, 0.63, 0.68, -0.26, 0.19, 0.032 +19740719, -0.11, 0.18, 0.16, -0.31, 0.27, 0.032 +19740722, 0.29, -0.08, -0.22, 0.36, -0.17, 0.032 +19740723, 1.03, -0.11, 0.32, -0.60, 0.30, 0.032 +19740724, 0.35, -0.12, 0.45, -0.34, 0.56, 0.032 +19740725, -1.20, 0.81, 0.61, -0.69, 0.94, 0.032 +19740726, -1.73, 1.04, 0.66, -0.12, 0.60, 0.032 +19740729, -1.80, 0.44, 0.24, 0.02, 0.11, 0.032 +19740730, -0.56, 0.04, -0.23, -0.19, 0.24, 0.032 +19740731, -1.51, 0.61, 0.72, -0.30, 0.29, 0.032 +19740801, -0.66, 0.07, 0.38, -0.08, 0.24, 0.027 +19740802, -0.25, -0.01, 0.23, -0.24, 0.43, 0.027 +19740805, 0.87, -0.50, -0.03, -0.18, -0.04, 0.027 +19740806, 1.55, -0.40, -0.68, 0.48, -0.36, 0.027 +19740807, 2.48, -0.88, -0.02, 0.38, -0.11, 0.027 +19740808, -1.21, 1.61, 0.53, -0.30, 0.42, 0.027 +19740809, -0.66, 0.74, 0.34, 0.03, 0.23, 0.027 +19740812, -1.17, 0.57, 0.31, -0.57, 0.43, 0.027 +19740813, -1.66, 0.41, 0.75, -0.26, 0.86, 0.027 +19740814, -2.19, 0.72, 0.34, -0.28, 0.80, 0.027 +19740815, -0.58, -0.15, 0.26, 0.19, -0.03, 0.027 +19740816, -0.85, 0.46, 0.59, -0.13, 0.27, 0.027 +19740819, -1.44, 0.05, 0.45, -0.23, 0.59, 0.027 +19740820, 0.39, -0.36, -0.04, 0.14, -0.09, 0.027 +19740821, -1.78, 0.69, 0.90, -0.67, 0.93, 0.027 +19740822, -1.11, -0.40, 0.38, 0.30, 0.33, 0.027 +19740823, -1.62, 0.41, 0.69, -0.09, 0.19, 0.027 +19740826, 0.70, -1.14, -0.97, 0.27, -0.63, 0.027 +19740827, -1.56, 0.45, -0.44, -0.08, 0.34, 0.027 +19740828, -0.33, -0.43, -0.70, 0.49, -0.77, 0.027 +19740829, -1.26, -0.35, -0.66, 0.64, -0.67, 0.027 +19740830, 2.79, -1.33, 0.06, -0.10, -0.67, 0.027 +19740903, -2.18, 0.79, 0.80, -0.35, 1.01, 0.040 +19740904, -2.69, 0.00, 0.61, -0.35, 0.54, 0.040 +19740905, 2.90, -2.03, -0.87, 0.54, -0.88, 0.040 +19740906, 0.75, 0.02, 0.56, -0.62, 0.44, 0.040 +19740909, -2.28, 0.62, 0.61, -0.17, 0.97, 0.040 +19740910, -0.79, -0.38, 0.37, 0.01, 0.31, 0.040 +19740911, -0.89, -0.09, -0.11, -0.20, 0.27, 0.040 +19740912, -2.56, 0.01, 0.76, -0.24, 0.98, 0.040 +19740913, -2.24, 0.40, 0.29, -0.47, 0.60, 0.040 +19740916, 1.40, -1.74, -0.95, 0.14, -0.74, 0.040 +19740917, 1.64, -0.33, 0.48, -0.16, -0.18, 0.040 +19740918, 0.36, -0.48, -0.37, 0.27, -0.05, 0.040 +19740919, 3.34, -0.81, -0.29, -0.42, 0.00, 0.040 +19740920, 0.31, 0.53, 0.33, -0.71, 0.07, 0.040 +19740923, -0.79, 0.79, 0.65, -0.81, 0.49, 0.040 +19740924, -1.84, 0.83, 0.62, -0.13, 0.65, 0.040 +19740925, -0.41, 0.85, 0.38, -0.38, 0.41, 0.040 +19740926, -1.64, 0.67, 0.63, -0.16, 0.53, 0.040 +19740927, -2.11, 1.15, 0.88, -0.56, 0.89, 0.040 +19740930, -2.37, 0.60, 0.53, 0.12, 0.03, 0.040 +19741001, -0.23, -0.42, -0.02, 0.18, -0.33, 0.022 +19741002, 0.06, 0.40, 0.16, -0.47, 0.48, 0.022 +19741003, -1.67, 0.79, 0.33, -0.22, 0.19, 0.022 +19741004, 0.07, -0.21, 0.29, -0.43, 0.47, 0.022 +19741007, 3.77, -1.82, -0.08, -0.24, -0.36, 0.022 +19741008, -0.12, 0.83, 0.01, -0.23, 0.01, 0.022 +19741009, 4.23, -2.37, -1.40, 0.74, -0.30, 0.022 +19741010, 2.96, -0.37, -1.20, 0.11, -0.81, 0.022 +19741011, 2.01, -0.46, -0.82, 0.66, -0.76, 0.022 +19741014, 2.28, -0.28, -0.76, 0.25, -0.98, 0.022 +19741015, -1.63, 0.81, -0.09, 0.36, 0.11, 0.022 +19741016, -1.42, 0.86, -0.09, -0.43, -0.06, 0.022 +19741017, 1.08, -0.40, -0.75, 0.09, 0.04, 0.022 +19741018, 1.38, -0.66, -0.92, -0.06, -0.07, 0.022 +19741021, 1.69, -1.06, -1.28, 0.09, -0.49, 0.022 +19741022, -0.30, 0.55, -0.28, -0.01, 0.39, 0.022 +19741023, -2.52, 1.31, 0.33, -0.46, 0.47, 0.022 +19741024, -1.20, -0.29, 0.10, -0.07, -0.27, 0.022 +19741025, -0.05, -0.05, 0.00, -0.39, 0.25, 0.022 +19741028, -0.09, -0.34, -0.35, 0.09, 0.22, 0.022 +19741029, 3.42, -2.39, -1.12, 0.73, -0.45, 0.022 +19741030, 1.94, -1.06, -1.00, 0.19, -0.45, 0.022 +19741031, -0.32, 0.29, -0.07, -0.50, 0.12, 0.022 +19741101, -0.03, 0.15, 0.06, -0.33, 0.24, 0.027 +19741104, -0.95, 0.20, -0.10, 0.09, 0.29, 0.027 +19741105, 2.56, -1.18, -1.44, 0.24, -1.04, 0.027 +19741106, -0.12, 0.13, 0.22, -0.31, 0.11, 0.027 +19741107, 0.74, -0.27, -0.14, -0.06, -0.11, 0.027 +19741108, -0.21, 0.36, 0.47, -0.59, 0.48, 0.027 +19741111, 0.32, 0.30, 0.45, -0.52, 0.43, 0.027 +19741112, -1.95, 0.62, 0.53, 0.15, 0.48, 0.027 +19741113, -0.49, -0.08, 0.01, -0.41, 0.41, 0.027 +19741114, -0.29, -0.18, 0.60, -0.55, 0.59, 0.027 +19741115, -1.44, 0.72, 0.50, -0.54, 0.51, 0.027 +19741118, -3.57, 0.80, 0.82, -0.23, 0.72, 0.027 +19741119, -1.65, -0.13, 0.29, -0.26, 0.21, 0.027 +19741120, -0.45, -0.25, 0.13, 0.03, 0.01, 0.027 +19741121, 0.49, -0.62, -0.87, 0.15, -0.57, 0.027 +19741122, 1.08, -0.62, -0.16, -0.23, 0.01, 0.027 +19741125, -0.10, -0.29, -0.54, 0.44, -0.05, 0.027 +19741126, 0.95, -0.66, -0.69, -0.38, -0.16, 0.027 +19741127, 0.60, -0.26, -0.15, -0.11, 0.37, 0.027 +19741129, 0.07, -0.24, -0.27, -0.12, 0.06, 0.027 +19741202, -2.51, 0.71, 0.58, -0.30, 0.68, 0.033 +19741203, -1.47, -0.05, 0.03, 0.19, 0.32, 0.033 +19741204, 0.20, -0.77, -0.06, -0.16, 0.44, 0.033 +19741205, -1.94, 0.31, 0.72, -0.20, 0.69, 0.033 +19741206, -1.75, 0.08, 0.03, -0.22, 0.27, 0.033 +19741209, 0.53, -1.60, -0.68, 0.76, -0.50, 0.033 +19741210, 2.27, -1.60, -0.53, 0.30, -0.25, 0.033 +19741211, 0.64, -0.52, 0.20, 0.06, -0.09, 0.033 +19741212, -0.41, -0.03, 0.12, 0.15, 0.33, 0.033 +19741213, -0.58, 0.06, 0.09, -0.22, 0.65, 0.033 +19741216, -0.92, 0.09, 0.38, -0.39, 0.79, 0.033 +19741217, 1.32, -1.50, -0.88, 0.68, -0.06, 0.033 +19741218, 0.46, -0.09, -0.05, -0.35, -0.07, 0.033 +19741219, -0.37, 0.13, 0.08, -0.40, 0.03, 0.033 +19741220, -1.15, 0.48, 0.46, -0.19, 0.71, 0.033 +19741223, -1.47, 0.23, 0.18, -0.15, 0.02, 0.033 +19741224, 1.30, -0.76, -0.18, 0.26, -0.34, 0.033 +19741226, 0.87, -0.19, -0.06, -0.04, -0.01, 0.033 +19741227, -0.42, 0.36, 0.01, -0.16, 0.25, 0.033 +19741230, -0.08, -0.43, -0.40, -0.22, 0.10, 0.033 +19741231, 2.18, 0.50, -0.06, -0.11, -0.46, 0.033 +19750102, 2.48, 0.54, 1.35, -0.82, 0.19, 0.026 +19750103, 0.80, 0.73, 1.43, -0.49, 0.28, 0.026 +19750106, 0.78, 0.95, 1.57, -0.83, 0.46, 0.026 +19750107, 0.00, 1.04, 0.69, -0.02, 0.33, 0.026 +19750108, -1.16, 1.21, 0.78, -0.29, 0.31, 0.026 +19750109, 1.60, -0.41, -0.04, 0.15, -0.38, 0.026 +19750110, 2.12, 0.58, 0.25, -0.05, 0.01, 0.026 +19750113, -0.35, 1.37, 0.99, 0.00, 0.35, 0.026 +19750114, -0.78, 0.82, 0.36, 0.08, 0.19, 0.026 +19750115, 0.68, -0.14, -0.54, -0.42, -0.16, 0.026 +19750116, 0.13, 0.69, -0.33, -0.18, 0.20, 0.026 +19750117, -1.24, 0.98, 0.29, -0.43, 0.22, 0.026 +19750120, 0.00, -0.25, 0.13, 0.23, 0.02, 0.026 +19750121, -0.43, 0.46, 0.88, -0.03, 0.31, 0.026 +19750122, 1.08, -0.48, -0.32, 0.59, -0.57, 0.026 +19750123, 0.51, 0.53, -0.10, -0.11, -0.28, 0.026 +19750124, 1.25, 0.16, 0.57, -0.30, -0.14, 0.026 +19750127, 3.35, -0.04, -0.32, 0.54, -0.76, 0.026 +19750128, 0.46, 0.57, -0.52, 1.04, -0.34, 0.026 +19750129, 1.55, 0.11, -0.27, 0.49, -0.59, 0.026 +19750130, -1.13, 1.07, 0.12, 0.09, -0.17, 0.026 +19750131, 0.98, 0.11, -0.01, 0.13, -0.34, 0.026 +19750203, 1.24, 0.41, 0.12, -0.09, 0.13, 0.023 +19750204, -0.32, 0.15, -1.03, 0.14, -0.15, 0.023 +19750205, 1.63, -0.48, -0.62, 0.45, -0.51, 0.023 +19750206, -0.13, 0.48, -0.08, -0.57, 0.11, 0.023 +19750207, -0.03, -0.15, -0.21, -0.20, 0.08, 0.023 +19750210, -0.30, 0.12, -0.26, -0.33, 0.25, 0.023 +19750211, 0.17, -0.29, -0.55, 0.20, -0.15, 0.023 +19750212, 1.57, -0.50, -0.50, 0.66, -0.61, 0.023 +19750213, 1.32, -0.24, -0.82, 0.38, -0.29, 0.023 +19750214, 0.51, -0.13, -0.50, 0.27, -0.35, 0.023 +19750218, -0.68, 0.24, 0.67, -0.33, 0.35, 0.023 +19750219, 0.47, -0.46, -0.31, 0.20, -0.25, 0.023 +19750220, 0.93, -0.45, -0.45, 0.05, -0.54, 0.023 +19750221, 0.44, 0.14, -0.12, 0.25, 0.07, 0.023 +19750224, -1.28, 0.64, 0.09, -0.01, -0.04, 0.023 +19750225, -2.25, 0.27, 0.16, -0.17, 0.45, 0.023 +19750226, 0.85, -0.32, -0.02, 0.25, -0.04, 0.023 +19750227, 0.50, 0.21, -0.48, 0.00, -0.61, 0.023 +19750228, 0.86, -0.32, 0.53, -0.03, 0.01, 0.023 +19750303, 1.71, -0.49, 0.30, 0.10, -0.25, 0.021 +19750304, 0.69, -0.18, 0.05, 0.45, -0.12, 0.021 +19750305, -0.75, 0.28, 0.39, 0.10, -0.34, 0.021 +19750306, 0.88, 0.04, 0.35, 0.35, -0.33, 0.021 +19750307, 0.75, 0.65, 0.17, 0.29, -0.12, 0.021 +19750310, 0.74, 0.55, 0.57, 0.22, -0.22, 0.021 +19750311, -0.53, 0.90, 0.63, -0.06, 0.30, 0.021 +19750312, -0.90, 0.25, 0.38, -0.11, 0.13, 0.021 +19750313, 0.26, 0.61, -0.69, 0.24, -0.36, 0.021 +19750314, 1.36, 0.62, -0.15, -0.15, -0.19, 0.021 +19750317, 1.36, 0.15, 0.46, 0.32, -0.17, 0.021 +19750318, -0.90, -0.26, 0.23, -0.20, 0.08, 0.021 +19750319, -0.89, 0.27, -0.13, -0.14, -0.13, 0.021 +19750320, -0.68, 0.64, -0.10, -0.03, -0.05, 0.021 +19750321, -0.21, -0.01, -0.02, -0.10, -0.01, 0.021 +19750324, -2.30, -0.13, 0.11, -0.20, 0.48, 0.021 +19750325, 0.58, -0.30, -0.49, 0.47, -0.34, 0.021 +19750326, 1.76, -0.27, 0.21, -0.27, -0.27, 0.021 +19750327, 0.34, 0.05, -0.03, -0.19, 0.19, 0.021 +19750331, -0.56, 0.40, 0.13, 0.04, 0.55, 0.021 +19750401, -0.81, 0.05, -0.32, -0.03, 0.07, 0.020 +19750402, -0.23, 0.24, -0.11, -0.18, 0.01, 0.020 +19750403, -1.03, 0.71, 0.21, -0.26, 0.14, 0.020 +19750404, -0.59, 0.28, 0.02, -0.12, 0.16, 0.020 +19750407, -0.68, -0.03, -0.05, 0.01, -0.15, 0.020 +19750408, 0.58, -0.65, -0.22, 0.47, 0.01, 0.020 +19750409, 2.00, -0.70, -0.51, 0.40, -0.64, 0.020 +19750410, 1.02, -0.45, 0.23, 0.03, -0.18, 0.020 +19750411, 0.58, 0.36, 0.03, 0.20, -0.13, 0.020 +19750414, 1.55, -0.30, -0.42, 0.39, -0.31, 0.020 +19750415, 0.66, -0.37, 0.12, 0.11, 0.02, 0.020 +19750416, 0.39, -0.10, -0.13, -0.10, -0.28, 0.020 +19750417, 0.73, -0.12, 0.14, -0.12, -0.28, 0.020 +19750418, -0.90, 0.90, 0.13, -0.39, -0.06, 0.020 +19750421, 1.08, 0.16, 0.19, 0.08, -0.06, 0.020 +19750422, -0.27, 0.07, 0.23, 0.23, 0.16, 0.020 +19750423, -1.04, 0.16, -0.16, -0.03, 0.18, 0.020 +19750424, -0.02, 0.17, 0.29, -0.19, 0.28, 0.020 +19750425, 0.70, 0.13, 0.07, 0.03, 0.11, 0.020 +19750428, -0.38, 0.11, 0.19, -0.18, 0.31, 0.020 +19750429, -0.77, -0.16, -0.32, 0.45, -0.18, 0.020 +19750430, 1.65, -1.08, -0.68, 0.53, -0.50, 0.020 +19750501, 0.85, -0.25, -0.53, 0.16, 0.12, 0.021 +19750502, 1.24, -0.64, -0.34, -0.17, -0.25, 0.021 +19750505, 0.96, -0.20, -0.26, 0.01, 0.09, 0.021 +19750506, -1.27, 0.54, -0.50, -0.28, -0.14, 0.021 +19750507, 0.47, 0.30, -0.52, -0.41, -0.23, 0.021 +19750508, 0.73, 0.25, 0.15, -0.32, 0.03, 0.021 +19750509, 1.15, 0.07, 0.20, 0.09, -0.11, 0.021 +19750512, 0.05, 0.20, -0.19, 0.72, -0.59, 0.021 +19750513, 0.81, -0.37, -0.09, 0.33, -0.18, 0.021 +19750514, 0.74, -0.26, 0.19, 0.05, 0.05, 0.021 +19750515, -0.76, 0.65, -0.16, -0.21, 0.21, 0.021 +19750516, -0.94, 0.64, -0.03, -0.17, 0.28, 0.021 +19750519, 0.08, 0.01, 0.11, 0.25, -0.11, 0.021 +19750520, -0.41, 0.40, -0.19, -0.27, -0.19, 0.021 +19750521, -1.13, 0.26, -0.30, -0.02, 0.03, 0.021 +19750522, 0.39, 0.21, -0.84, 0.17, -0.41, 0.021 +19750523, 1.29, -0.11, -0.29, 0.22, -0.27, 0.021 +19750527, -0.10, 0.34, 0.04, -0.19, 0.07, 0.021 +19750528, -0.66, 0.43, -0.24, -0.40, 0.63, 0.021 +19750529, 0.01, 0.29, 0.10, -0.13, 0.23, 0.021 +19750530, 1.62, 0.00, -0.06, -0.44, 0.28, 0.021 +19750602, 1.42, -0.24, 0.15, -0.24, 0.13, 0.019 +19750603, 0.33, -0.09, -0.16, -0.38, 0.18, 0.019 +19750604, -0.19, 0.62, -0.19, -0.14, 0.26, 0.019 +19750605, 0.11, 0.18, -0.06, -0.21, 0.11, 0.019 +19750606, -0.12, 0.13, -0.13, -0.62, 0.40, 0.019 +19750609, -1.24, 0.27, 0.52, -0.22, 0.11, 0.019 +19750610, -0.84, 0.02, -0.13, -0.06, 0.07, 0.019 +19750611, 0.12, -0.09, 0.15, 0.01, 0.17, 0.019 +19750612, -0.51, -0.07, 0.59, -0.10, 0.28, 0.019 +19750613, 0.49, -0.11, -0.10, -0.06, -0.11, 0.019 +19750616, 0.96, -0.63, 0.08, 0.15, -0.10, 0.019 +19750617, -0.84, 0.10, 0.21, -0.32, 0.10, 0.019 +19750618, -0.20, -0.08, 0.15, -0.14, 0.07, 0.019 +19750619, 1.78, -0.44, -0.13, -0.14, 0.00, 0.019 +19750620, 0.68, 0.17, 0.05, 0.01, -0.07, 0.019 +19750623, 1.04, 0.05, -0.17, 0.03, 0.09, 0.019 +19750624, 0.64, -0.03, -0.14, -0.06, -0.41, 0.019 +19750625, 0.42, 0.29, -0.04, 0.16, -0.22, 0.019 +19750626, 0.22, 0.14, 0.24, -0.07, 0.09, 0.019 +19750627, 0.02, 0.47, 0.19, -0.05, -0.04, 0.019 +19750630, 0.47, 0.56, 0.17, -0.03, -0.13, 0.019 +19750701, -0.41, 0.35, 0.30, -0.10, 0.02, 0.022 +19750702, -0.79, 0.18, -0.12, 0.46, -0.08, 0.022 +19750703, 0.35, 0.48, -0.10, 0.05, -0.18, 0.022 +19750707, -0.83, 0.36, 0.08, -0.09, 0.21, 0.022 +19750708, -0.18, -0.11, 0.38, 0.13, 0.26, 0.022 +19750709, 1.53, 0.14, 0.27, -0.17, 0.15, 0.022 +19750710, 0.06, 0.40, 0.69, -0.19, 0.30, 0.022 +19750711, -0.02, 0.54, 0.60, 0.08, 0.10, 0.022 +19750714, 0.55, 0.50, 0.17, 0.20, -0.02, 0.022 +19750715, 0.45, 0.42, 0.85, -0.18, 0.37, 0.022 +19750716, -0.99, 0.36, -0.04, -0.08, 0.24, 0.022 +19750717, -0.90, 0.62, 0.23, -0.08, 0.15, 0.022 +19750718, -0.34, 0.51, -0.03, 0.02, -0.04, 0.022 +19750721, -0.73, 0.38, -0.19, 0.01, -0.11, 0.022 +19750722, -1.14, -0.10, -0.29, 0.24, -0.06, 0.022 +19750723, -1.46, -0.25, -0.18, 0.08, 0.03, 0.022 +19750724, -0.35, -0.77, -0.51, 0.43, -0.04, 0.022 +19750725, -0.82, 0.29, 0.21, -0.10, -0.12, 0.022 +19750728, -0.74, -0.31, -0.37, -0.01, -0.24, 0.022 +19750729, -0.65, -0.28, -0.19, -0.09, 0.11, 0.022 +19750730, 0.70, -0.39, -0.01, -0.09, 0.22, 0.022 +19750731, -0.01, 0.26, 0.07, -0.08, 0.02, 0.022 +19750801, -0.98, 0.13, 0.24, 0.04, 0.09, 0.023 +19750804, -0.98, -0.04, -0.46, 0.03, 0.12, 0.023 +19750805, -1.13, -0.28, -0.33, 0.18, -0.36, 0.023 +19750806, -0.01, -0.44, -0.45, 0.30, -0.42, 0.023 +19750807, -0.05, -0.27, 0.26, 0.14, -0.06, 0.023 +19750808, -0.35, -0.33, 0.04, -0.06, -0.07, 0.023 +19750811, 0.47, -0.83, -0.83, 0.63, -0.17, 0.023 +19750812, 0.65, -0.03, 0.19, -0.08, -0.25, 0.023 +19750813, -1.22, 0.33, 0.53, -0.27, 0.29, 0.023 +19750814, -0.58, 0.04, -0.23, 0.30, -0.21, 0.023 +19750815, 0.74, -0.30, 0.10, 0.48, -0.06, 0.023 +19750818, -0.22, 0.13, 0.11, 0.15, -0.06, 0.023 +19750819, -1.57, 0.24, 0.47, -0.11, 0.19, 0.023 +19750820, -2.03, 0.16, -0.26, -0.40, -0.06, 0.023 +19750821, -0.12, -0.66, -0.38, -0.14, 0.08, 0.023 +19750822, 1.39, -0.50, -0.06, -0.03, 0.28, 0.023 +19750825, 0.95, -0.32, 0.02, 0.05, 0.12, 0.023 +19750826, -1.17, 0.49, -0.07, -0.12, 0.06, 0.023 +19750827, 0.48, -0.22, -0.32, 0.15, -0.15, 0.023 +19750828, 2.26, -0.62, 0.38, -0.12, -0.25, 0.023 +19750829, 0.72, 0.44, 0.20, -0.04, -0.06, 0.023 +19750902, -1.56, 0.54, 0.22, -0.31, 0.27, 0.025 +19750903, 0.46, -0.37, -0.23, 0.45, 0.06, 0.025 +19750904, 0.16, 0.05, 0.23, -0.13, -0.03, 0.025 +19750905, -0.64, 0.35, 0.16, 0.12, -0.04, 0.025 +19750908, 0.15, -0.17, 0.13, 0.01, -0.19, 0.025 +19750909, -1.36, 0.60, 0.55, -0.03, 0.08, 0.025 +19750910, -1.17, -0.12, -0.08, 0.17, -0.19, 0.025 +19750911, -0.39, 0.09, 0.00, 0.13, 0.05, 0.025 +19750912, -0.24, 0.28, 0.10, -0.01, -0.04, 0.025 +19750915, -0.55, 0.06, -0.13, 0.34, -0.09, 0.025 +19750916, -0.95, 0.04, -0.05, -0.10, -0.22, 0.025 +19750917, 0.19, -0.40, -0.16, 0.13, -0.04, 0.025 +19750918, 1.83, -1.03, 0.08, 0.31, 0.02, 0.025 +19750919, 2.22, -0.62, -0.20, -0.21, 0.12, 0.025 +19750922, -0.84, 0.51, 0.07, -0.14, 0.43, 0.025 +19750923, -0.15, -0.06, -0.34, 0.26, -0.24, 0.025 +19750924, 0.95, -0.17, 0.11, 0.24, -0.01, 0.025 +19750925, -0.18, 0.00, -0.38, 0.03, 0.25, 0.025 +19750926, 0.50, -0.43, -0.30, 0.01, 0.18, 0.025 +19750929, -1.24, 0.46, 0.53, -0.50, 0.35, 0.025 +19750930, -1.42, 0.26, -0.05, -0.17, -0.19, 0.025 +19751001, -1.16, 0.05, -0.07, -0.44, 0.37, 0.024 +19751002, 0.89, -0.82, -0.32, 0.34, -0.04, 0.024 +19751003, 2.37, -1.19, -0.32, 0.26, 0.03, 0.024 +19751006, 1.02, -0.48, -0.29, 0.39, -0.06, 0.024 +19751007, -0.15, -0.07, -0.34, 0.12, 0.03, 0.024 +19751008, 1.21, -0.58, -0.36, 0.12, 0.02, 0.024 +19751009, 0.45, -0.30, -0.03, -0.17, 0.07, 0.024 +19751010, -0.10, 0.10, 0.19, -0.13, -0.05, 0.024 +19751013, 1.34, -0.74, -0.05, 0.14, -0.06, 0.024 +19751014, -0.04, 0.29, -0.05, -0.15, -0.01, 0.024 +19751015, -0.07, -0.13, -0.02, -0.05, 0.34, 0.024 +19751016, 0.17, 0.05, 0.25, -0.14, 0.24, 0.024 +19751017, -0.60, 0.12, 0.05, 0.00, -0.12, 0.024 +19751020, 0.94, -0.76, 0.10, 0.05, 0.10, 0.024 +19751021, 0.78, -0.44, 0.41, -0.35, 0.40, 0.024 +19751022, 0.18, 0.04, -0.08, 0.00, -0.09, 0.024 +19751023, 0.48, -0.20, 0.52, 0.02, 0.43, 0.024 +19751024, -1.33, 0.95, 0.29, -0.42, 0.19, 0.024 +19751027, -0.11, -0.11, 0.25, -0.03, -0.01, 0.024 +19751028, 0.77, -0.25, -0.11, 0.14, 0.08, 0.024 +19751029, -1.35, 0.25, 0.05, -0.11, 0.05, 0.024 +19751030, -0.19, 0.04, -0.02, 0.00, 0.04, 0.024 +19751031, -0.26, 0.05, 0.26, 0.00, 0.20, 0.024 +19751103, -0.94, 0.45, -0.01, -0.30, 0.13, 0.022 +19751104, 0.41, -0.44, 0.02, 0.10, -0.12, 0.022 +19751105, 0.83, -0.21, 0.38, -0.13, 0.62, 0.022 +19751106, 0.43, -0.16, -0.03, 0.01, 0.49, 0.022 +19751107, -0.16, 0.18, 0.03, -0.26, 0.12, 0.022 +19751110, 0.00, -0.18, -0.30, 0.07, -0.50, 0.022 +19751111, 0.60, -0.20, 0.07, -0.02, 0.36, 0.022 +19751112, 1.47, -0.33, 0.11, 0.55, 0.09, 0.022 +19751113, -0.05, 0.22, 0.01, -0.05, 0.06, 0.022 +19751114, -0.12, 0.16, 0.18, 0.04, -0.10, 0.022 +19751117, 0.49, -0.39, 0.31, -0.17, -0.12, 0.022 +19751118, -0.52, 0.02, 0.36, -0.27, 0.44, 0.022 +19751119, -1.10, 0.31, 0.15, -0.09, -0.13, 0.022 +19751120, -0.41, 0.20, 0.22, 0.01, 0.31, 0.022 +19751121, -0.05, 0.06, 0.01, -0.10, 0.14, 0.022 +19751124, 0.28, -0.22, 0.08, 0.00, -0.16, 0.022 +19751125, 0.92, -0.53, -0.07, 0.20, -0.14, 0.022 +19751126, 0.30, 0.09, 0.10, -0.09, 0.04, 0.022 +19751128, 0.28, -0.11, 0.29, -0.08, 0.14, 0.022 +19751201, -0.59, 0.16, 0.14, 0.01, 0.01, 0.022 +19751202, -1.55, 0.23, -0.38, -0.04, -0.05, 0.022 +19751203, -2.07, 0.11, -0.34, 0.32, -0.25, 0.022 +19751204, 0.13, -0.49, -0.01, -0.06, 0.10, 0.022 +19751205, -1.08, 0.76, 0.55, -0.35, -0.27, 0.022 +19751208, 0.14, -0.57, -0.30, 0.10, -0.09, 0.022 +19751209, 0.09, -0.65, 0.01, 0.07, -0.08, 0.022 +19751210, 0.90, -0.45, -0.01, 0.21, -0.15, 0.022 +19751211, -0.25, 0.28, 0.16, -0.23, 0.39, 0.022 +19751212, -0.08, -0.06, 0.04, -0.19, 0.37, 0.022 +19751215, 0.19, -0.45, -0.16, 0.06, 0.02, 0.022 +19751216, 0.94, -0.41, -0.16, 0.22, -0.28, 0.022 +19751217, 0.29, 0.04, 0.06, 0.02, -0.20, 0.022 +19751218, 0.35, 0.15, 0.34, -0.16, -0.03, 0.022 +19751219, -0.65, 0.64, 0.19, -0.09, 0.06, 0.022 +19751222, -0.73, 0.18, -0.07, -0.01, -0.17, 0.022 +19751223, 0.58, -0.53, 0.31, 0.08, 0.66, 0.022 +19751224, 0.84, -0.02, 0.42, -0.01, -0.18, 0.022 +19751226, 0.90, -0.18, 0.34, -0.05, 0.29, 0.022 +19751229, -0.16, 0.11, -0.01, 0.37, -0.07, 0.022 +19751230, -0.38, 0.21, 0.08, 0.04, 0.11, 0.022 +19751231, 0.62, 0.94, 0.62, -0.43, 0.37, 0.022 +19760102, 0.79, 0.19, 1.22, -0.50, 0.34, 0.022 +19760105, 1.78, -0.07, 0.94, -0.58, 0.20, 0.022 +19760106, 1.20, 0.47, 0.27, -0.28, 0.15, 0.022 +19760107, 0.52, 0.00, -0.17, 0.16, -0.25, 0.022 +19760108, 0.68, -0.10, 0.18, -0.01, 0.29, 0.022 +19760109, 0.43, 0.40, 0.19, -0.11, 0.21, 0.022 +19760112, 1.30, -0.12, 0.46, -0.17, 0.30, 0.022 +19760113, -0.72, 0.29, -0.04, -0.01, -0.02, 0.022 +19760114, 1.58, 0.12, 0.76, 0.07, 0.22, 0.022 +19760115, -0.45, 0.54, 0.39, 0.01, 0.17, 0.022 +19760116, 0.44, 0.30, 0.31, -0.19, 0.32, 0.022 +19760119, 1.21, 0.08, 1.15, -0.42, 0.50, 0.022 +19760120, 0.49, 0.19, 0.24, -0.03, 0.05, 0.022 +19760121, -0.49, 0.68, 0.32, -0.33, -0.05, 0.022 +19760122, -0.19, 0.96, 0.11, -0.16, 0.06, 0.022 +19760123, 1.15, 0.37, 0.43, 0.23, -0.08, 0.022 +19760126, 0.41, 0.54, 0.23, 0.21, 0.07, 0.022 +19760127, -0.52, 0.61, 0.19, 0.21, -0.12, 0.022 +19760128, -0.46, -0.02, -0.21, 0.23, -0.09, 0.022 +19760129, 1.67, -0.02, 0.12, 0.05, 0.07, 0.022 +19760130, 0.73, 0.13, 0.29, 0.06, -0.17, 0.022 +19760202, 0.14, 0.33, 0.24, 0.06, 0.33, 0.018 +19760203, 0.42, 0.17, 0.40, 0.02, 0.21, 0.018 +19760204, 0.87, 0.68, 0.20, -0.03, -0.10, 0.018 +19760205, -1.31, 0.52, -0.19, -0.32, 0.13, 0.018 +19760206, -0.85, 0.32, -0.14, 0.00, -0.13, 0.018 +19760209, 0.27, 0.58, 0.95, -0.10, 0.35, 0.018 +19760210, 0.79, 0.08, 0.58, 0.13, 0.41, 0.018 +19760211, 0.43, 0.51, 0.23, 0.05, 0.02, 0.018 +19760212, -0.36, 0.84, 0.22, -0.12, 0.05, 0.018 +19760213, -0.41, 0.72, 0.10, -0.08, 0.09, 0.018 +19760217, -0.52, 0.85, 0.67, -0.50, 0.52, 0.018 +19760218, 0.79, 0.60, 0.66, -0.21, 0.26, 0.018 +19760219, 1.59, 0.38, 0.73, -0.18, 0.44, 0.018 +19760220, 0.67, 0.27, 0.22, -0.08, 0.06, 0.018 +19760223, -0.29, 0.33, 0.16, -0.36, 0.22, 0.018 +19760224, 0.49, 0.30, 0.78, -0.16, 0.47, 0.018 +19760225, -0.16, 0.05, 0.48, -0.29, 0.30, 0.018 +19760226, -1.48, 0.20, -0.59, -0.15, 0.07, 0.018 +19760227, -0.68, -0.21, -0.24, -0.05, -0.03, 0.018 +19760301, 0.32, -0.06, 0.47, -0.33, 0.18, 0.017 +19760302, 0.58, 0.43, 0.66, 0.00, 0.50, 0.017 +19760303, -0.56, 0.36, 0.16, 0.05, 0.19, 0.017 +19760304, -0.97, 0.22, -0.40, 0.08, -0.04, 0.017 +19760305, 0.12, -0.05, 0.29, -0.16, -0.02, 0.017 +19760308, 1.01, -0.06, 0.46, 0.22, 0.39, 0.017 +19760309, 0.27, -0.17, 0.04, -0.33, 0.04, 0.017 +19760310, 0.35, -0.19, 0.10, -0.25, 0.26, 0.017 +19760311, 0.83, -0.42, -0.34, 0.20, -0.01, 0.017 +19760312, -0.87, 0.04, -0.42, -0.25, -0.09, 0.017 +19760315, -1.12, -0.04, -0.39, 0.15, -0.12, 0.017 +19760316, 0.98, -0.51, 0.39, -0.03, 0.38, 0.017 +19760317, -0.03, 0.42, 0.19, -0.13, 0.13, 0.017 +19760318, -0.41, -0.09, -0.41, 0.07, -0.31, 0.017 +19760319, 0.09, -0.15, -0.20, -0.06, 0.07, 0.017 +19760322, 0.06, -0.11, -0.11, 0.13, 0.00, 0.017 +19760323, 1.30, -0.79, -0.25, 0.32, -0.45, 0.017 +19760324, 1.03, -0.28, -0.33, 0.11, -0.29, 0.017 +19760325, -0.55, 0.07, 0.02, -0.04, -0.41, 0.017 +19760326, 0.10, 0.25, 0.23, -0.23, 0.23, 0.017 +19760329, -0.40, 0.08, 0.05, -0.06, 0.07, 0.017 +19760330, -0.42, -0.15, -0.18, 0.03, 0.26, 0.017 +19760331, 0.62, -0.14, -0.02, 0.06, 0.13, 0.017 +19760401, -0.43, 0.43, -0.23, 0.15, -0.13, 0.020 +19760402, 0.03, 0.09, -0.27, 0.18, -0.02, 0.020 +19760405, 1.15, -0.25, 0.33, 0.15, -0.11, 0.020 +19760406, -0.09, 0.11, 0.24, -0.31, 0.13, 0.020 +19760407, -1.17, -0.03, -0.52, -0.06, 0.11, 0.020 +19760408, -0.98, -0.26, -0.48, 0.06, -0.28, 0.020 +19760409, -1.05, 0.00, -0.43, 0.19, -0.34, 0.020 +19760412, -0.19, -0.32, 0.17, -0.08, 0.01, 0.020 +19760413, 0.65, -0.69, -0.12, 0.15, 0.07, 0.020 +19760414, -0.61, 0.40, 0.04, -0.14, -0.11, 0.020 +19760415, 0.33, -0.13, 0.29, 0.02, -0.07, 0.020 +19760419, 0.67, 0.04, 0.31, 0.15, -0.19, 0.020 +19760420, 1.46, -0.03, 0.36, -0.04, -0.02, 0.020 +19760421, 0.36, 0.14, 0.20, 0.19, -0.16, 0.020 +19760422, -0.20, 0.33, 0.17, -0.02, 0.07, 0.020 +19760423, -0.66, 0.29, -0.16, -0.08, 0.04, 0.020 +19760426, 0.07, -0.08, 0.06, 0.03, 0.02, 0.020 +19760427, -0.52, -0.01, -0.27, 0.22, -0.25, 0.020 +19760428, 0.17, -0.29, -0.17, 0.12, -0.10, 0.020 +19760429, -0.03, 0.12, 0.25, -0.21, 0.13, 0.020 +19760430, -0.40, 0.29, 0.18, -0.21, 0.08, 0.020 +19760503, -0.83, -0.10, -0.36, 0.15, -0.18, 0.019 +19760504, 0.56, -0.34, 0.08, 0.18, -0.03, 0.019 +19760505, -0.45, 0.26, -0.21, 0.04, -0.03, 0.019 +19760506, 0.29, -0.21, -0.25, 0.21, 0.07, 0.019 +19760507, 0.76, -0.10, -0.03, 0.28, -0.15, 0.019 +19760510, 1.22, -0.38, 0.51, 0.28, -0.04, 0.019 +19760511, -0.10, 0.34, 0.30, 0.09, -0.26, 0.019 +19760512, -0.17, 0.15, -0.08, 0.12, 0.03, 0.019 +19760513, -0.56, 0.26, 0.18, -0.13, 0.10, 0.019 +19760514, -0.75, 0.21, 0.15, 0.04, 0.05, 0.019 +19760517, -0.28, -0.13, -0.19, 0.35, -0.10, 0.019 +19760518, 0.11, -0.18, 0.08, 0.04, 0.09, 0.019 +19760519, -0.05, -0.08, 0.21, 0.02, 0.24, 0.019 +19760520, 0.63, -0.19, -0.27, 0.50, -0.47, 0.019 +19760521, -0.54, 0.26, 0.11, -0.10, -0.08, 0.019 +19760524, -1.66, 0.07, -0.36, 0.02, 0.08, 0.019 +19760525, -0.09, -0.51, -0.73, 0.31, -0.42, 0.019 +19760526, -0.06, 0.06, -0.21, 0.13, 0.01, 0.019 +19760527, -0.11, -0.45, -0.42, -0.02, -0.21, 0.019 +19760528, 0.73, -0.08, 0.20, 0.01, -0.16, 0.019 +19760601, -0.28, -0.03, 0.17, -0.24, -0.09, 0.020 +19760602, 0.29, -0.20, -0.06, 0.17, -0.23, 0.020 +19760603, -0.05, -0.06, 0.09, 0.11, 0.01, 0.020 +19760604, -0.88, 0.11, -0.21, -0.15, -0.03, 0.020 +19760607, -0.52, -0.40, -0.23, 0.00, -0.25, 0.020 +19760608, 0.14, -0.23, -0.32, 0.01, -0.05, 0.020 +19760609, -0.06, 0.07, -0.06, 0.02, -0.13, 0.020 +19760610, 0.77, -0.22, -0.05, -0.01, -0.07, 0.020 +19760611, 1.17, -0.28, 0.13, 0.25, 0.12, 0.020 +19760614, 0.99, -0.13, 0.25, -0.18, 0.02, 0.020 +19760615, -0.42, 0.34, 0.10, -0.19, 0.15, 0.020 +19760616, 0.55, -0.13, 0.12, 0.08, 0.14, 0.020 +19760617, 1.43, -0.48, 0.13, 0.12, 0.46, 0.020 +19760618, 0.19, 0.15, 0.05, -0.06, -0.14, 0.020 +19760621, 0.39, -0.08, -0.14, 0.27, -0.08, 0.020 +19760622, -0.70, 0.22, -0.07, 0.02, 0.14, 0.020 +19760623, -0.22, -0.09, 0.02, 0.14, 0.03, 0.020 +19760624, 0.59, -0.02, 0.23, -0.16, 0.21, 0.020 +19760625, 0.01, 0.34, 0.11, -0.07, 0.10, 0.020 +19760628, -0.23, 0.18, 0.02, -0.23, 0.18, 0.020 +19760629, 0.38, -0.16, 0.14, -0.18, 0.12, 0.020 +19760630, 0.46, 0.01, 0.26, -0.33, 0.34, 0.020 +19760701, -0.67, 0.37, 0.10, -0.10, -0.22, 0.022 +19760702, 0.47, 0.05, -0.06, -0.02, -0.29, 0.022 +19760706, -0.46, 0.45, -0.05, 0.10, -0.07, 0.022 +19760707, 0.25, -0.03, 0.29, 0.00, 0.05, 0.022 +19760708, 0.15, 0.15, 0.19, -0.20, 0.24, 0.022 +19760709, 0.87, -0.09, 0.00, -0.12, -0.03, 0.022 +19760712, 0.76, -0.20, 0.09, -0.28, 0.19, 0.022 +19760713, -0.21, 0.10, 0.21, -0.05, 0.25, 0.022 +19760714, 0.25, 0.20, -0.06, -0.11, -0.03, 0.022 +19760715, -0.60, 0.51, -0.04, -0.01, -0.09, 0.022 +19760716, -0.48, 0.22, -0.19, -0.09, 0.04, 0.022 +19760719, -0.32, -0.12, 0.36, -0.25, 0.07, 0.022 +19760720, -0.63, -0.15, -0.12, 0.15, -0.16, 0.022 +19760721, 0.06, -0.04, 0.17, -0.12, 0.15, 0.022 +19760722, 0.12, 0.08, -0.35, 0.20, -0.18, 0.022 +19760723, 0.12, -0.04, 0.17, 0.04, 0.12, 0.022 +19760726, -0.08, -0.18, 0.13, 0.15, 0.07, 0.022 +19760727, -0.50, -0.04, 0.05, 0.09, 0.03, 0.022 +19760728, -0.40, -0.21, 0.21, -0.15, -0.05, 0.022 +19760729, -0.16, -0.08, 0.39, -0.30, 0.13, 0.022 +19760730, 0.40, -0.35, 0.19, -0.03, 0.04, 0.022 +19760802, -0.15, -0.06, 0.24, -0.05, 0.09, 0.019 +19760803, 0.89, -0.56, 0.15, -0.23, 0.19, 0.019 +19760804, 0.22, -0.03, 0.14, -0.08, 0.06, 0.019 +19760805, -0.43, 0.18, 0.05, -0.16, 0.04, 0.019 +19760806, -0.03, 0.00, 0.08, -0.06, -0.06, 0.019 +19760809, -0.24, -0.08, 0.01, 0.13, -0.02, 0.019 +19760810, 0.77, -0.42, 0.01, 0.05, 0.09, 0.019 +19760811, -0.25, 0.05, 0.09, 0.00, -0.24, 0.019 +19760812, 0.07, -0.19, -0.21, 0.05, -0.12, 0.019 +19760813, 0.05, 0.01, 0.09, -0.01, 0.07, 0.019 +19760816, 0.16, -0.12, 0.13, 0.08, 0.16, 0.019 +19760817, 0.30, -0.23, -0.14, -0.07, -0.20, 0.019 +19760818, -0.20, -0.05, 0.07, -0.01, -0.05, 0.019 +19760819, -1.17, -0.05, 0.10, 0.10, -0.15, 0.019 +19760820, -0.90, 0.25, -0.01, -0.01, -0.16, 0.019 +19760823, -0.43, -0.28, -0.15, 0.03, -0.32, 0.019 +19760824, -0.62, 0.27, -0.02, -0.01, -0.10, 0.019 +19760825, 0.75, -0.64, 0.02, -0.11, 0.17, 0.019 +19760826, -0.63, 0.43, 0.25, -0.04, 0.05, 0.019 +19760827, 0.09, -0.03, -0.10, -0.10, -0.21, 0.019 +19760830, 0.53, -0.36, -0.03, 0.11, 0.05, 0.019 +19760831, 0.69, -0.24, 0.04, -0.06, 0.04, 0.019 +19760901, 1.02, -0.23, -0.35, 0.15, -0.27, 0.021 +19760902, -0.04, 0.20, -0.15, 0.20, -0.09, 0.021 +19760903, 0.37, 0.00, 0.03, -0.21, 0.12, 0.021 +19760907, 0.61, -0.24, 0.07, 0.07, -0.08, 0.021 +19760908, -0.11, 0.21, -0.05, 0.17, -0.01, 0.021 +19760909, -0.44, 0.22, 0.01, -0.03, -0.31, 0.021 +19760910, 0.24, 0.05, -0.17, 0.06, -0.12, 0.021 +19760913, -0.29, 0.10, 0.05, 0.07, 0.03, 0.021 +19760914, -0.30, 0.06, -0.08, 0.08, -0.10, 0.021 +19760915, 0.20, -0.15, -0.21, 0.28, -0.31, 0.021 +19760916, 0.87, -0.39, -0.21, 0.17, -0.15, 0.021 +19760917, 0.87, -0.20, 0.18, -0.06, 0.17, 0.021 +19760920, 0.10, 0.02, 0.43, -0.16, 0.09, 0.021 +19760921, 1.23, -0.61, 0.29, -0.23, 0.39, 0.021 +19760922, -0.29, 0.46, 0.08, -0.09, 0.07, 0.021 +19760923, -0.46, 0.27, -0.11, 0.07, -0.19, 0.021 +19760924, -0.10, 0.21, -0.03, 0.02, -0.08, 0.021 +19760927, 0.36, -0.08, -0.01, 0.18, -0.10, 0.021 +19760928, -1.12, 0.23, -0.03, 0.10, -0.37, 0.021 +19760929, -0.52, 0.02, 0.05, -0.11, 0.17, 0.021 +19760930, -0.13, 0.02, -0.14, 0.22, 0.05, 0.021 +19761001, -0.92, 0.33, 0.18, -0.06, -0.16, 0.019 +19761004, -0.15, 0.03, 0.18, -0.01, 0.02, 0.019 +19761005, -0.73, -0.04, -0.01, 0.22, -0.13, 0.019 +19761006, -0.43, -0.29, -0.10, 0.26, -0.12, 0.019 +19761007, 0.58, -0.04, -0.31, 0.12, -0.32, 0.019 +19761008, -0.84, 0.44, 0.09, -0.05, -0.07, 0.019 +19761011, -0.93, -0.05, -0.41, 0.17, -0.44, 0.019 +19761012, -0.78, 0.08, 0.29, -0.49, -0.11, 0.019 +19761013, 1.10, -0.85, 0.01, -0.22, 0.41, 0.019 +19761014, -1.16, 0.63, 0.03, -0.16, 0.12, 0.019 +19761015, 0.10, 0.31, -0.03, 0.07, -0.05, 0.019 +19761018, 0.55, -0.20, 0.19, -0.08, 0.13, 0.019 +19761019, -0.05, 0.05, -0.05, 0.01, 0.23, 0.019 +19761020, 0.23, -0.02, 0.23, -0.19, 0.14, 0.019 +19761021, -0.82, 0.46, 0.26, -0.07, 0.19, 0.019 +19761022, -0.75, 0.22, 0.03, -0.14, 0.03, 0.019 +19761025, 0.09, -0.03, -0.11, 0.15, -0.14, 0.019 +19761026, 0.86, -0.40, -0.07, 0.14, 0.09, 0.019 +19761027, 0.56, -0.22, -0.26, 0.24, 0.06, 0.019 +19761028, -0.10, 0.10, -0.08, -0.12, -0.08, 0.019 +19761029, 1.19, -0.43, -0.19, -0.02, -0.16, 0.019 +19761101, 0.23, -0.01, 0.18, -0.13, 0.15, 0.020 +19761103, -1.16, 0.21, 0.34, -0.21, -0.05, 0.020 +19761104, 0.77, 0.39, 0.50, -0.81, 0.34, 0.020 +19761105, -1.20, 0.84, 0.41, -0.46, 0.38, 0.020 +19761108, -1.13, 0.33, -0.13, 0.00, 0.05, 0.020 +19761109, -0.34, -0.16, 0.19, -0.10, -0.10, 0.020 +19761110, -0.47, 0.35, -0.18, 0.14, -0.44, 0.020 +19761111, 0.71, -0.48, -0.22, 0.23, -0.15, 0.020 +19761112, -0.32, 0.30, 0.11, -0.09, -0.15, 0.020 +19761115, 0.51, -0.37, -0.21, 0.10, -0.09, 0.020 +19761116, 0.26, 0.17, -0.04, -0.02, -0.04, 0.020 +19761117, 0.63, -0.01, -0.09, 0.14, -0.25, 0.020 +19761118, 1.24, -0.26, 0.18, -0.01, -0.04, 0.020 +19761119, 0.14, 0.21, 0.30, -0.03, 0.22, 0.020 +19761122, 0.63, -0.22, 0.07, -0.07, 0.32, 0.020 +19761123, -0.41, 0.35, 0.16, -0.03, -0.02, 0.020 +19761124, 0.53, 0.19, -0.09, -0.05, 0.05, 0.020 +19761126, 0.70, 0.09, -0.35, 0.16, -0.08, 0.020 +19761129, -0.57, 0.45, 0.03, -0.01, 0.03, 0.020 +19761130, -0.32, 0.24, 0.38, -0.14, -0.04, 0.020 +19761201, 0.43, 0.07, 0.07, -0.16, 0.19, 0.018 +19761202, -0.29, 0.44, 0.42, -0.12, 0.28, 0.018 +19761203, 0.55, -0.09, 0.04, -0.04, 0.03, 0.018 +19761206, 0.78, 0.06, 0.27, -0.05, 0.42, 0.018 +19761207, 0.02, 0.30, 0.13, 0.01, 0.10, 0.018 +19761208, 0.53, 0.10, -0.20, 0.10, 0.22, 0.018 +19761209, 0.57, 0.31, 0.15, -0.24, 0.18, 0.018 +19761210, 0.22, 0.40, 0.21, -0.17, 0.17, 0.018 +19761213, 0.07, 0.33, 0.23, 0.00, 0.19, 0.018 +19761214, 0.40, -0.21, 0.40, -0.16, 0.09, 0.018 +19761215, 0.06, 0.11, 0.43, -0.16, 0.07, 0.018 +19761216, -0.28, 0.22, 0.42, 0.06, 0.02, 0.018 +19761217, -0.43, 0.38, 0.24, 0.08, 0.12, 0.018 +19761220, -0.55, 0.12, 0.07, 0.10, -0.09, 0.018 +19761221, 0.45, -0.26, -0.24, 0.10, -0.11, 0.018 +19761222, 0.46, 0.04, -0.04, 0.00, -0.06, 0.018 +19761223, 0.05, 0.07, -0.48, 0.28, -0.10, 0.018 +19761227, 1.07, -0.32, -0.20, 0.25, -0.10, 0.018 +19761228, 0.62, -0.06, -0.12, 0.08, 0.17, 0.018 +19761229, -0.32, 0.44, 0.09, -0.11, 0.15, 0.018 +19761230, 0.53, 0.27, 0.00, -0.21, 0.07, 0.018 +19761231, 0.59, 0.65, 0.17, -0.26, 0.13, 0.018 +19770103, -0.32, 0.67, 0.67, -0.15, 0.46, 0.017 +19770104, -0.98, 0.87, 0.26, 0.01, 0.22, 0.017 +19770105, -0.74, 0.43, 0.07, 0.24, 0.02, 0.017 +19770106, 0.18, 0.51, 0.26, -0.16, 0.14, 0.017 +19770107, 0.09, 0.56, 0.06, 0.04, -0.07, 0.017 +19770110, 0.12, 0.04, 0.21, 0.03, 0.45, 0.017 +19770111, -0.93, 0.13, 0.29, -0.08, 0.18, 0.017 +19770112, -0.68, 0.19, 0.18, -0.17, 0.03, 0.017 +19770113, 0.82, 0.19, -0.17, 0.00, -0.05, 0.017 +19770114, -0.02, 0.57, 0.19, 0.01, 0.07, 0.017 +19770117, -0.20, 0.33, 0.12, 0.03, -0.32, 0.017 +19770118, -0.29, 0.20, 0.25, -0.06, 0.25, 0.017 +19770119, 0.50, 0.34, 0.15, 0.11, 0.31, 0.017 +19770120, -0.74, 0.43, 0.48, -0.24, 0.29, 0.017 +19770121, 0.36, 0.14, 0.24, -0.10, 0.09, 0.017 +19770124, 0.01, 0.08, 0.48, -0.18, 0.24, 0.017 +19770125, -0.04, 0.30, 0.56, -0.20, 0.27, 0.017 +19770126, -0.65, 0.34, 0.38, 0.06, 0.11, 0.017 +19770127, -0.58, 0.17, 0.11, -0.17, -0.02, 0.017 +19770128, 0.03, -0.10, -0.24, 0.22, -0.34, 0.017 +19770131, 0.00, -0.45, -0.18, 0.23, -0.35, 0.017 +19770201, 0.50, 0.10, -0.12, 0.18, -0.27, 0.018 +19770202, -0.11, 0.34, 0.04, -0.02, -0.07, 0.018 +19770203, -0.39, 0.23, 0.09, 0.10, -0.15, 0.018 +19770204, 0.17, 0.33, 0.06, 0.04, 0.00, 0.018 +19770207, 0.06, 0.09, -0.13, -0.06, -0.02, 0.018 +19770208, -0.25, 0.25, -0.03, -0.16, 0.10, 0.018 +19770209, -0.85, 0.32, -0.07, -0.02, -0.05, 0.018 +19770210, 0.10, 0.14, -0.18, -0.18, -0.05, 0.018 +19770211, -0.53, 0.10, 0.04, -0.21, 0.27, 0.018 +19770214, 0.43, -0.40, -0.16, 0.13, -0.30, 0.018 +19770215, 0.28, -0.13, 0.29, -0.15, 0.16, 0.018 +19770216, 0.38, -0.20, 0.18, -0.09, 0.20, 0.018 +19770217, -0.52, 0.22, 0.18, -0.08, 0.12, 0.018 +19770218, -0.29, 0.18, 0.37, -0.14, -0.07, 0.018 +19770222, -0.03, -0.16, -0.12, 0.39, -0.18, 0.018 +19770223, -0.30, 0.12, -0.01, 0.03, -0.04, 0.018 +19770224, -0.62, -0.12, 0.15, 0.02, 0.10, 0.018 +19770225, -0.17, 0.09, -0.09, 0.01, -0.03, 0.018 +19770228, 0.20, -0.42, 0.05, 0.08, 0.10, 0.018 +19770301, 0.85, -0.21, -0.24, 0.21, -0.26, 0.016 +19770302, -0.22, 0.18, 0.09, 0.04, 0.15, 0.016 +19770303, 0.44, -0.24, 0.04, -0.06, -0.02, 0.016 +19770304, 0.35, 0.11, -0.09, 0.01, 0.03, 0.016 +19770307, 0.12, 0.06, 0.01, -0.11, -0.08, 0.016 +19770308, -0.34, 0.30, 0.06, 0.07, 0.01, 0.016 +19770309, -0.70, 0.23, 0.05, 0.06, -0.18, 0.016 +19770310, 0.48, -0.07, -0.22, 0.25, -0.08, 0.016 +19770311, 0.07, 0.16, 0.11, -0.06, -0.06, 0.016 +19770314, 0.63, -0.45, 0.10, 0.00, 0.05, 0.016 +19770315, 0.44, -0.29, 0.27, -0.05, 0.37, 0.016 +19770316, 0.19, -0.05, 0.04, -0.01, 0.03, 0.016 +19770317, -0.09, 0.10, 0.02, 0.05, 0.01, 0.016 +19770318, -0.22, 0.40, -0.02, -0.06, -0.07, 0.016 +19770321, -0.45, 0.23, -0.09, 0.02, -0.08, 0.016 +19770322, -0.22, 0.17, -0.01, 0.07, -0.28, 0.016 +19770323, -0.78, 0.40, 0.23, -0.29, -0.01, 0.016 +19770324, -0.46, 0.18, 0.08, -0.11, -0.01, 0.016 +19770325, -0.59, 0.42, -0.02, -0.07, 0.01, 0.016 +19770328, -0.15, -0.39, -0.01, 0.11, 0.08, 0.016 +19770329, 0.55, -0.28, 0.14, 0.02, 0.13, 0.016 +19770330, -1.10, 0.28, 0.40, -0.26, 0.03, 0.016 +19770331, -0.14, 0.02, 0.03, -0.16, 0.14, 0.016 +19770401, 0.75, -0.27, 0.02, 0.18, -0.03, 0.019 +19770404, -0.89, 0.27, 0.19, -0.04, -0.04, 0.019 +19770405, -0.28, -0.24, 0.04, 0.05, -0.19, 0.019 +19770406, -0.07, 0.11, 0.05, 0.06, 0.12, 0.019 +19770407, 0.32, -0.22, -0.10, -0.07, 0.01, 0.019 +19770411, 0.49, -0.32, -0.01, -0.01, -0.03, 0.019 +19770412, 1.20, -0.41, 0.46, -0.01, 0.27, 0.019 +19770413, 0.03, 0.18, 0.27, -0.15, -0.12, 0.019 +19770414, 0.84, -0.05, 0.14, 0.00, 0.19, 0.019 +19770415, 0.03, 0.12, 0.09, -0.16, 0.17, 0.019 +19770418, -0.40, 0.32, 0.18, -0.33, -0.06, 0.019 +19770419, -0.33, 0.42, 0.05, -0.07, -0.17, 0.019 +19770420, 0.34, 0.21, 0.36, -0.36, 0.18, 0.019 +19770421, -0.65, 0.30, 0.29, -0.12, 0.28, 0.019 +19770422, -1.20, 0.42, 0.48, -0.30, 0.24, 0.019 +19770425, -1.25, 0.06, 0.38, -0.26, 0.30, 0.019 +19770426, -0.05, -0.18, 0.20, 0.02, 0.12, 0.019 +19770427, 0.85, -0.18, 0.08, -0.15, -0.24, 0.019 +19770428, 0.21, -0.10, 0.13, -0.14, 0.00, 0.019 +19770429, 0.25, 0.12, 0.10, -0.15, 0.09, 0.019 +19770502, 0.53, -0.20, -0.14, 0.12, 0.08, 0.018 +19770503, 0.47, -0.05, 0.05, -0.12, -0.14, 0.018 +19770504, 0.57, -0.13, 0.13, 0.02, 0.10, 0.018 +19770505, 0.27, 0.07, -0.11, 0.08, 0.06, 0.018 +19770506, -0.41, 0.42, 0.19, -0.05, 0.12, 0.018 +19770509, -0.21, 0.09, 0.24, 0.09, 0.07, 0.018 +19770510, 0.30, -0.09, -0.10, -0.01, 0.11, 0.018 +19770511, -0.55, 0.40, 0.09, -0.18, 0.11, 0.018 +19770512, -0.03, 0.08, 0.08, -0.09, -0.10, 0.018 +19770513, 0.32, 0.14, 0.05, 0.04, 0.07, 0.018 +19770516, 0.40, -0.10, 0.05, -0.13, 0.18, 0.018 +19770517, 0.25, -0.10, -0.07, 0.08, -0.17, 0.018 +19770518, 0.48, -0.02, -0.11, -0.07, -0.15, 0.018 +19770519, -0.32, 0.33, 0.12, 0.11, 0.16, 0.018 +19770520, -0.37, 0.30, 0.11, 0.13, -0.05, 0.018 +19770523, -1.13, 0.18, 0.23, -0.23, 0.10, 0.018 +19770524, -0.47, -0.14, -0.19, 0.25, -0.22, 0.018 +19770525, -0.82, 0.17, 0.26, -0.08, 0.19, 0.018 +19770526, 0.16, -0.18, -0.17, 0.28, -0.06, 0.018 +19770527, -0.64, 0.44, 0.15, -0.14, -0.06, 0.018 +19770531, -0.24, -0.32, -0.03, 0.24, -0.25, 0.018 +19770601, 0.74, -0.32, -0.17, 0.03, 0.02, 0.018 +19770602, -0.14, 0.10, 0.31, -0.28, 0.15, 0.018 +19770603, 0.87, -0.27, -0.47, 0.09, -0.15, 0.018 +19770606, -0.39, 0.31, 0.09, 0.15, -0.08, 0.018 +19770607, 0.44, -0.25, 0.01, 0.05, 0.06, 0.018 +19770608, 0.51, -0.08, 0.12, -0.11, 0.13, 0.018 +19770609, -0.03, 0.35, -0.18, 0.15, -0.16, 0.018 +19770610, 0.29, 0.28, -0.01, -0.04, 0.13, 0.018 +19770613, 0.32, -0.14, -0.19, 0.29, -0.08, 0.018 +19770614, 0.99, -0.50, -0.21, 0.26, -0.13, 0.018 +19770615, -0.20, 0.28, 0.07, 0.09, -0.03, 0.018 +19770616, 0.29, 0.05, -0.25, 0.04, -0.10, 0.018 +19770617, 0.15, 0.25, -0.14, 0.04, -0.07, 0.018 +19770620, 0.43, -0.09, -0.05, 0.04, -0.12, 0.018 +19770621, 0.32, -0.16, 0.14, 0.02, -0.13, 0.018 +19770622, -0.20, 0.29, 0.15, -0.03, -0.02, 0.018 +19770623, 0.22, 0.42, 0.11, -0.06, -0.27, 0.018 +19770624, 0.56, 0.20, -0.09, 0.17, -0.13, 0.018 +19770627, -0.10, 0.31, -0.03, 0.11, -0.17, 0.018 +19770628, -0.72, 0.41, 0.15, -0.02, 0.10, 0.018 +19770629, -0.07, 0.20, 0.05, -0.14, 0.01, 0.018 +19770630, 0.35, 0.29, 0.07, -0.04, -0.05, 0.018 +19770701, -0.26, 0.55, 0.20, -0.07, 0.05, 0.022 +19770705, 0.01, 0.21, -0.11, 0.16, 0.05, 0.022 +19770706, -0.45, 0.30, 0.07, -0.02, -0.05, 0.022 +19770707, 0.31, 0.00, -0.18, 0.15, 0.12, 0.022 +19770708, -0.01, 0.44, 0.23, -0.14, 0.13, 0.022 +19770711, -0.26, 0.20, 0.25, -0.09, 0.00, 0.022 +19770712, -0.10, 0.14, 0.10, -0.03, 0.09, 0.022 +19770713, 0.16, 0.02, -0.17, 0.16, -0.21, 0.022 +19770715, 0.60, -0.11, -0.58, 0.23, -0.30, 0.022 +19770718, 0.62, -0.26, -0.25, 0.34, -0.11, 0.022 +19770719, 0.62, -0.22, -0.18, 0.09, 0.44, 0.022 +19770720, -0.03, -0.04, 0.07, 0.06, 0.20, 0.022 +19770721, -0.11, 0.20, 0.00, 0.09, -0.12, 0.022 +19770722, 0.07, 0.20, 0.05, -0.09, -0.08, 0.022 +19770725, -0.67, 0.42, -0.11, 0.04, -0.30, 0.022 +19770726, -0.53, 0.07, 0.07, -0.23, 0.18, 0.022 +19770727, -1.60, 0.06, 0.18, -0.06, -0.09, 0.022 +19770728, -0.05, -0.23, -0.27, 0.25, -0.10, 0.022 +19770729, -0.02, -0.17, -0.07, 0.02, 0.15, 0.022 +19770801, 0.35, -0.21, 0.00, 0.13, -0.12, 0.019 +19770802, -0.61, 0.14, -0.03, -0.08, -0.08, 0.019 +19770803, -0.22, -0.24, -0.08, 0.17, 0.11, 0.019 +19770804, 0.49, 0.02, -0.41, 0.05, 0.16, 0.019 +19770805, 0.01, 0.29, -0.17, -0.09, 0.02, 0.019 +19770808, -0.59, 0.13, 0.12, 0.06, 0.01, 0.019 +19770809, 0.07, -0.06, -0.23, -0.02, 0.21, 0.019 +19770810, 0.70, -0.29, -0.31, 0.10, 0.05, 0.019 +19770811, -0.54, 0.59, -0.22, -0.16, -0.23, 0.019 +19770812, -0.31, 0.12, -0.19, 0.11, 0.07, 0.019 +19770815, 0.21, -0.27, -0.32, 0.41, -0.29, 0.019 +19770816, -0.36, 0.32, -0.04, 0.01, 0.02, 0.019 +19770817, -0.05, -0.03, -0.44, 0.22, -0.26, 0.019 +19770818, 0.01, 0.08, -0.18, -0.02, 0.15, 0.019 +19770819, -0.23, 0.20, -0.47, 0.10, 0.06, 0.019 +19770822, 0.27, -0.12, -0.42, 0.42, -0.32, 0.019 +19770823, -0.15, 0.19, 0.31, -0.09, -0.02, 0.019 +19770824, -0.38, 0.27, 0.36, -0.16, 0.10, 0.019 +19770825, -0.91, 0.33, 0.28, -0.18, 0.25, 0.019 +19770826, -0.09, -0.15, -0.14, 0.04, -0.07, 0.019 +19770829, 0.80, -0.27, -0.40, 0.19, -0.15, 0.019 +19770830, -0.47, 0.16, 0.30, -0.26, -0.04, 0.019 +19770831, 0.24, -0.27, -0.18, 0.11, -0.34, 0.019 +19770901, 0.14, 0.40, 0.18, -0.03, 0.12, 0.021 +19770902, 0.63, -0.05, -0.09, -0.01, 0.10, 0.021 +19770906, 0.17, -0.16, -0.01, 0.05, -0.11, 0.021 +19770907, 0.26, 0.05, -0.17, 0.14, -0.09, 0.021 +19770908, -0.63, 0.49, 0.34, -0.28, 0.11, 0.021 +19770909, -0.85, 0.43, 0.13, -0.15, -0.02, 0.021 +19770912, -0.31, 0.06, -0.18, 0.22, -0.12, 0.021 +19770913, 0.00, -0.05, -0.24, 0.17, -0.10, 0.021 +19770914, 0.36, -0.15, -0.19, 0.10, 0.01, 0.021 +19770915, 0.31, 0.01, -0.02, 0.18, -0.02, 0.021 +19770916, -0.30, 0.36, 0.07, -0.15, 0.09, 0.021 +19770919, -0.59, 0.17, 0.30, 0.12, -0.14, 0.021 +19770920, 0.01, -0.02, -0.15, 0.22, -0.04, 0.021 +19770921, -0.75, 0.23, 0.30, -0.02, -0.09, 0.021 +19770922, -0.06, -0.09, -0.03, 0.22, -0.15, 0.021 +19770923, -0.02, 0.24, -0.06, -0.13, 0.01, 0.021 +19770926, 0.25, -0.19, -0.29, 0.43, -0.08, 0.021 +19770927, -0.14, 0.08, -0.12, 0.01, -0.03, 0.021 +19770928, 0.04, 0.08, -0.11, 0.05, -0.09, 0.021 +19770929, 0.52, -0.19, 0.08, -0.11, 0.02, 0.021 +19770930, 0.69, -0.09, -0.01, -0.07, 0.02, 0.021 +19771003, 0.28, 0.02, 0.10, 0.01, 0.05, 0.023 +19771004, -0.61, 0.41, 0.42, -0.08, -0.13, 0.023 +19771005, -0.36, 0.16, -0.02, -0.01, -0.06, 0.023 +19771006, 0.36, -0.05, 0.12, -0.07, 0.15, 0.023 +19771007, -0.01, 0.33, -0.06, -0.01, -0.20, 0.023 +19771010, -0.17, 0.18, 0.04, -0.08, -0.03, 0.023 +19771011, -0.77, 0.38, 0.30, 0.02, -0.09, 0.023 +19771012, -1.13, -0.27, 0.14, -0.18, 0.05, 0.023 +19771013, -0.69, -0.22, -0.19, 0.26, -0.08, 0.023 +19771014, 0.03, 0.01, 0.10, -0.18, 0.25, 0.023 +19771017, -0.11, -0.02, -0.15, 0.26, -0.42, 0.023 +19771018, -0.02, 0.22, 0.18, -0.07, 0.01, 0.023 +19771019, -1.05, 0.39, 0.47, -0.14, -0.12, 0.023 +19771020, 0.19, -0.29, -0.07, -0.06, 0.01, 0.023 +19771021, -0.23, 0.29, 0.08, 0.08, 0.05, 0.023 +19771024, -0.79, 0.15, 0.24, 0.18, -0.12, 0.023 +19771025, -0.83, -0.31, 0.07, 0.06, -0.17, 0.023 +19771026, 0.98, -0.60, -0.26, -0.08, 0.41, 0.023 +19771027, 0.36, 0.09, -0.05, 0.19, -0.08, 0.023 +19771028, 0.33, 0.18, -0.05, -0.06, -0.02, 0.023 +19771031, -0.19, 0.36, 0.20, -0.10, -0.11, 0.023 +19771101, -0.98, 0.25, 0.44, -0.23, 0.12, 0.024 +19771102, -0.60, 0.32, 0.00, -0.01, -0.11, 0.024 +19771103, 0.14, -0.07, -0.10, 0.06, 0.08, 0.024 +19771104, 0.94, 0.07, -0.07, 0.12, 0.03, 0.024 +19771107, 0.81, -0.04, -0.18, 0.12, 0.01, 0.024 +19771108, 0.19, 0.18, 0.17, -0.10, 0.01, 0.024 +19771109, 0.50, 0.11, -0.14, -0.04, 0.11, 0.024 +19771110, 1.91, -0.41, -0.55, 0.38, -0.10, 0.024 +19771111, 1.28, -0.39, -0.13, -0.08, 0.02, 0.024 +19771114, -0.50, 0.48, 0.27, -0.08, -0.01, 0.024 +19771115, 0.65, -0.03, -0.26, 0.24, 0.12, 0.024 +19771116, -0.33, 0.48, 0.10, -0.07, 0.11, 0.024 +19771117, -0.21, 0.72, 0.28, -0.13, 0.13, 0.024 +19771118, 0.25, 0.37, -0.04, 0.05, 0.00, 0.024 +19771121, -0.08, 0.18, -0.03, 0.01, -0.22, 0.024 +19771122, 0.86, -0.21, -0.13, 0.11, -0.08, 0.024 +19771123, 0.59, 0.20, -0.07, -0.02, 0.17, 0.024 +19771125, 0.32, 0.23, -0.02, -0.14, 0.09, 0.024 +19771128, -0.54, 0.33, 0.23, 0.07, 0.10, 0.024 +19771129, -1.41, 0.57, 0.38, -0.18, -0.08, 0.024 +19771130, 0.17, -0.01, 0.09, -0.12, 0.13, 0.024 +19771201, 0.05, 0.57, 0.08, 0.09, 0.08, 0.023 +19771202, 0.01, 0.38, 0.21, -0.22, 0.07, 0.023 +19771205, -0.36, 0.33, 0.07, 0.11, -0.09, 0.023 +19771206, -1.52, 0.16, 0.44, -0.15, -0.05, 0.023 +19771207, -0.14, 0.01, 0.01, 0.06, -0.18, 0.023 +19771208, 0.20, 0.04, -0.25, 0.14, 0.07, 0.023 +19771209, 0.69, -0.02, 0.01, 0.08, 0.09, 0.023 +19771212, 0.04, -0.01, -0.05, 0.18, 0.04, 0.023 +19771213, -0.05, -0.02, -0.05, 0.10, -0.01, 0.023 +19771214, 0.33, -0.01, -0.31, 0.05, 0.04, 0.023 +19771215, -0.40, 0.48, 0.01, -0.04, -0.11, 0.023 +19771216, -0.11, 0.22, 0.15, -0.11, 0.03, 0.023 +19771219, -0.71, -0.01, 0.37, -0.10, -0.24, 0.023 +19771220, -0.36, -0.32, -0.02, 0.00, 0.03, 0.023 +19771221, 0.58, -0.16, -0.45, 0.23, 0.08, 0.023 +19771222, 0.66, -0.16, -0.25, 0.05, 0.10, 0.023 +19771223, 0.88, -0.21, -0.21, 0.00, -0.09, 0.023 +19771227, -0.02, -0.17, 0.24, 0.09, -0.05, 0.023 +19771228, 0.02, 0.13, 0.10, 0.24, -0.13, 0.023 +19771229, 0.31, 0.01, -0.30, 0.23, -0.16, 0.023 +19771230, 0.18, 0.34, -0.17, -0.11, -0.17, 0.023 +19780103, -1.29, 0.46, 0.67, -0.62, 0.10, 0.023 +19780104, -0.41, -0.11, 0.08, -0.20, 0.11, 0.023 +19780105, -0.73, 0.41, 0.61, -0.59, 0.06, 0.023 +19780106, -1.24, -0.12, 0.54, -0.09, 0.14, 0.023 +19780109, -1.18, -0.27, 0.29, -0.14, 0.08, 0.023 +19780110, -0.64, -0.10, 0.14, -0.26, 0.28, 0.023 +19780111, -0.53, 0.05, 0.30, -0.09, 0.17, 0.023 +19780112, 0.19, 0.24, 0.00, 0.10, 0.10, 0.023 +19780113, -0.03, 0.38, 0.33, -0.12, 0.13, 0.023 +19780116, -0.35, -0.30, 0.09, -0.05, 0.11, 0.023 +19780117, 0.52, 0.08, -0.24, 0.06, 0.03, 0.023 +19780118, 0.68, 0.03, 0.21, -0.15, 0.12, 0.023 +19780119, -0.34, 0.70, 0.08, 0.04, -0.05, 0.023 +19780120, -0.21, 0.35, 0.04, -0.07, 0.08, 0.023 +19780123, -0.66, 0.32, 0.13, -0.04, 0.12, 0.023 +19780124, 0.02, 0.13, 0.06, 0.04, -0.13, 0.023 +19780125, 0.17, 0.20, 0.32, 0.00, 0.16, 0.023 +19780126, -0.77, 0.43, 0.45, -0.08, 0.02, 0.023 +19780127, -0.02, 0.02, 0.00, -0.02, 0.05, 0.023 +19780130, 0.75, -0.29, -0.32, 0.39, 0.01, 0.023 +19780131, -0.09, 0.19, -0.38, 0.19, -0.10, 0.023 +19780201, 0.78, 0.12, -0.37, 0.44, -0.18, 0.024 +19780202, 0.34, 0.14, 0.15, 0.01, 0.34, 0.024 +19780203, -0.30, 0.68, 0.02, -0.24, 0.02, 0.024 +19780206, 0.00, 0.10, 0.03, -0.04, 0.10, 0.024 +19780207, 0.75, -0.27, -0.23, 0.17, 0.13, 0.024 +19780208, 0.52, -0.13, 0.04, -0.03, 0.24, 0.024 +19780209, -0.36, 0.56, 0.24, -0.20, 0.12, 0.024 +19780210, -0.12, 0.40, -0.07, 0.05, -0.02, 0.024 +19780213, -0.27, 0.25, 0.04, 0.16, 0.12, 0.024 +19780214, -0.78, 0.32, 0.20, -0.11, 0.13, 0.024 +19780215, -0.26, 0.29, 0.05, -0.01, 0.09, 0.024 +19780216, -0.78, 0.34, 0.08, 0.03, -0.19, 0.024 +19780217, -0.11, 0.19, 0.22, -0.09, 0.00, 0.024 +19780221, -0.39, 0.17, 0.07, -0.06, 0.24, 0.024 +19780222, 0.06, 0.10, -0.01, 0.18, -0.11, 0.024 +19780223, 0.18, 0.04, -0.02, 0.07, -0.03, 0.024 +19780224, 0.84, -0.18, -0.19, 0.09, -0.07, 0.024 +19780227, -0.70, 0.37, 0.21, -0.06, -0.14, 0.024 +19780228, -0.79, 0.16, 0.30, 0.00, 0.25, 0.024 +19780301, 0.10, -0.09, -0.01, 0.06, 0.13, 0.024 +19780302, 0.21, 0.12, 0.17, -0.14, 0.36, 0.024 +19780303, 0.13, 0.02, 0.24, -0.09, 0.18, 0.024 +19780306, -0.54, 0.23, 0.23, -0.10, 0.06, 0.024 +19780307, 0.47, -0.12, -0.15, -0.02, 0.04, 0.024 +19780308, 0.49, -0.08, -0.15, -0.03, 0.03, 0.024 +19780309, 0.20, 0.35, -0.03, 0.14, -0.17, 0.024 +19780310, 1.04, -0.16, -0.34, 0.00, 0.10, 0.024 +19780313, 0.10, 0.06, 0.06, 0.24, 0.00, 0.024 +19780314, 0.40, -0.22, -0.03, 0.09, 0.09, 0.024 +19780315, -0.18, 0.40, 0.17, -0.06, 0.24, 0.024 +19780316, 0.43, 0.33, -0.06, -0.02, 0.09, 0.024 +19780317, 0.73, -0.03, -0.23, 0.13, 0.14, 0.024 +19780320, 0.58, -0.20, -0.19, -0.15, 0.10, 0.024 +19780321, -0.97, 0.68, 0.49, -0.10, -0.45, 0.024 +19780322, -0.26, 0.33, 0.12, -0.03, 0.07, 0.024 +19780323, -0.05, 0.41, 0.09, -0.17, 0.42, 0.024 +19780327, -0.43, 0.58, 0.25, 0.01, 0.09, 0.024 +19780328, 0.62, -0.03, -0.06, 0.01, 0.21, 0.024 +19780329, 0.20, 0.41, 0.10, -0.05, -0.05, 0.024 +19780330, -0.23, 0.35, 0.23, -0.04, -0.02, 0.024 +19780331, -0.23, 0.17, 0.27, -0.25, 0.15, 0.024 +19780403, -0.71, 0.17, 0.24, -0.14, -0.02, 0.027 +19780404, 0.38, 0.05, -0.09, 0.01, 0.00, 0.027 +19780405, 0.81, 0.06, -0.19, 0.21, -0.10, 0.027 +19780406, 0.24, 0.21, -0.08, -0.05, -0.08, 0.027 +19780407, 0.47, 0.14, -0.39, 0.11, -0.10, 0.027 +19780410, 0.31, -0.15, -0.05, -0.01, -0.02, 0.027 +19780411, -0.21, 0.19, 0.04, -0.01, -0.15, 0.027 +19780412, -0.03, 0.41, 0.24, -0.03, 0.10, 0.027 +19780413, 0.97, 0.10, -0.50, 0.33, 0.14, 0.027 +19780414, 1.86, -0.73, -0.59, 0.44, -0.44, 0.027 +19780417, 1.39, -1.20, -0.77, 0.81, -0.17, 0.027 +19780418, -1.03, 0.40, 0.28, -0.15, -0.11, 0.027 +19780419, 0.36, 0.03, -0.07, 0.13, 0.16, 0.027 +19780420, 0.72, 0.06, -0.26, 0.30, -0.29, 0.027 +19780421, -0.10, 0.51, 0.05, -0.08, -0.05, 0.027 +19780424, 1.24, -0.65, -0.38, 0.10, 0.08, 0.027 +19780425, 0.77, -0.50, -0.58, 0.40, -0.34, 0.027 +19780426, 0.17, 0.01, -0.04, -0.01, 0.04, 0.027 +19780427, -0.86, 0.64, 0.20, -0.01, -0.10, 0.027 +19780428, 0.87, -0.06, -0.36, 0.30, 0.18, 0.027 +19780501, 0.84, -0.14, -0.33, 0.43, -0.28, 0.023 +19780502, -0.26, 0.31, 0.23, -0.11, 0.12, 0.023 +19780503, -0.73, 0.81, 0.33, -0.33, 0.18, 0.023 +19780504, -0.05, 0.48, 0.05, 0.05, 0.05, 0.023 +19780505, 0.68, 0.30, -0.24, 0.25, 0.11, 0.023 +19780508, -0.26, 0.37, -0.02, 0.11, -0.07, 0.023 +19780509, -0.17, 0.23, -0.11, -0.01, -0.14, 0.023 +19780510, 0.09, 0.40, -0.07, -0.07, 0.25, 0.023 +19780511, 1.12, -0.25, -0.62, 0.18, 0.04, 0.023 +19780512, 0.83, 0.10, -0.46, 0.38, -0.14, 0.023 +19780515, 0.59, -0.20, -0.27, 0.21, -0.18, 0.023 +19780516, 0.67, -0.03, -0.24, 0.07, -0.15, 0.023 +19780517, 0.29, 0.34, 0.15, -0.13, 0.07, 0.023 +19780518, -0.75, 0.74, 0.43, -0.23, -0.07, 0.023 +19780519, -0.44, 0.49, 0.14, -0.26, 0.15, 0.023 +19780522, 0.83, -0.38, -0.25, -0.07, -0.04, 0.023 +19780523, -0.85, 0.24, 0.39, -0.19, 0.02, 0.023 +19780524, -0.98, 0.01, 0.40, -0.14, 0.06, 0.023 +19780525, -0.18, 0.31, -0.02, -0.16, 0.35, 0.023 +19780526, -0.16, 0.31, -0.11, 0.12, -0.07, 0.023 +19780530, 0.23, -0.03, -0.06, 0.09, -0.02, 0.023 +19780531, 0.40, -0.12, 0.06, 0.04, 0.06, 0.023 +19780601, 0.11, 0.00, -0.07, 0.13, -0.05, 0.024 +19780602, 0.74, -0.10, -0.25, 0.22, -0.11, 0.024 +19780605, 1.60, -0.68, -0.61, 0.32, -0.14, 0.024 +19780606, 0.43, 0.02, 0.12, 0.16, -0.27, 0.024 +19780607, -0.14, 0.34, 0.10, -0.22, 0.15, 0.024 +19780608, 0.21, 0.50, 0.14, -0.04, 0.00, 0.024 +19780609, -0.14, 0.67, -0.04, -0.16, 0.09, 0.024 +19780612, -0.28, 0.32, 0.12, -0.17, -0.09, 0.024 +19780613, 0.08, 0.11, -0.16, -0.12, 0.11, 0.024 +19780614, -0.06, 0.54, 0.00, -0.34, -0.03, 0.024 +19780615, -0.96, 0.43, 0.07, 0.01, -0.31, 0.024 +19780616, -0.85, 0.32, 0.24, -0.31, -0.02, 0.024 +19780619, -0.19, -0.46, 0.02, -0.07, 0.05, 0.024 +19780620, -0.95, 0.10, 0.45, -0.12, 0.12, 0.024 +19780621, -0.65, -0.53, 0.17, -0.05, 0.14, 0.024 +19780622, 0.21, -0.06, 0.12, -0.15, 0.18, 0.024 +19780623, -0.28, 0.51, 0.22, -0.36, 0.09, 0.024 +19780626, -1.27, -0.13, 0.38, -0.19, 0.23, 0.024 +19780627, 0.21, -0.66, -0.33, 0.23, -0.28, 0.024 +19780628, 0.37, -0.06, -0.04, -0.09, 0.25, 0.024 +19780629, 0.21, 0.25, -0.01, -0.17, 0.07, 0.024 +19780630, -0.07, 0.22, -0.02, 0.00, -0.15, 0.024 +19780703, -0.31, 0.32, 0.06, 0.00, -0.16, 0.028 +19780705, -0.87, -0.04, 0.03, 0.04, 0.15, 0.028 +19780706, -0.03, -0.40, -0.17, 0.07, -0.02, 0.028 +19780707, 0.57, -0.04, -0.07, 0.01, 0.17, 0.028 +19780710, 0.34, -0.20, -0.21, 0.17, -0.06, 0.028 +19780711, 0.60, -0.26, 0.08, 0.15, -0.04, 0.028 +19780712, 0.35, 0.02, -0.02, 0.08, -0.22, 0.028 +19780713, 0.02, 0.19, 0.13, 0.01, -0.05, 0.028 +19780714, 1.23, -0.33, -0.54, 0.52, -0.07, 0.028 +19780717, 0.23, 0.16, -0.08, 0.30, -0.16, 0.028 +19780718, -0.78, 0.48, 0.32, -0.36, 0.05, 0.028 +19780719, 1.10, -0.39, -0.09, 0.04, 0.02, 0.028 +19780720, 0.00, 0.54, -0.05, 0.00, -0.36, 0.028 +19780721, -0.32, 0.24, 0.23, -0.10, 0.12, 0.028 +19780724, -0.10, 0.05, -0.10, 0.14, 0.04, 0.028 +19780725, 0.68, -0.38, 0.01, -0.04, 0.05, 0.028 +19780726, 0.60, 0.07, -0.34, 0.24, -0.11, 0.028 +19780727, 0.52, 0.22, 0.08, -0.08, 0.01, 0.028 +19780728, 0.46, 0.06, 0.02, 0.10, 0.11, 0.028 +19780731, 0.71, -0.11, -0.24, 0.12, -0.11, 0.028 +19780801, 0.12, -0.02, -0.01, -0.15, 0.01, 0.024 +19780802, 2.13, -0.89, -0.62, 0.65, -0.09, 0.024 +19780803, 0.43, -0.30, 0.08, 0.00, -0.64, 0.024 +19780804, 0.43, -0.17, 0.09, 0.12, 0.19, 0.024 +19780807, -0.17, 0.60, -0.12, 0.16, -0.23, 0.024 +19780808, 0.48, 0.12, -0.33, 0.48, -0.16, 0.024 +19780809, 0.52, 0.44, -0.20, 0.09, -0.13, 0.024 +19780810, -0.59, 0.71, 0.30, -0.31, 0.08, 0.024 +19780811, 0.32, 0.25, 0.17, 0.24, 0.23, 0.024 +19780814, 0.09, 0.34, 0.16, -0.09, 0.24, 0.024 +19780815, -0.14, 0.10, 0.15, 0.00, 0.16, 0.024 +19780816, 0.72, 0.15, -0.42, 0.23, 0.09, 0.024 +19780817, 0.56, 0.38, -0.23, 0.11, -0.23, 0.024 +19780818, -0.23, 0.49, 0.17, -0.25, 0.10, 0.024 +19780821, -0.80, 0.11, 0.35, 0.10, 0.15, 0.024 +19780822, 0.29, 0.05, -0.17, 0.27, 0.12, 0.024 +19780823, 0.61, 0.22, -0.36, 0.46, -0.27, 0.024 +19780824, 0.27, 0.56, 0.17, -0.04, 0.01, 0.024 +19780825, 0.05, 0.47, -0.02, 0.00, 0.21, 0.024 +19780828, -0.72, 0.40, 0.23, -0.28, 0.23, 0.024 +19780829, -0.58, 0.26, 0.23, -0.40, 0.34, 0.024 +19780830, 0.15, 0.23, -0.18, -0.08, 0.10, 0.024 +19780831, -0.20, 0.16, 0.01, 0.13, -0.01, 0.024 +19780901, 0.40, -0.21, 0.06, 0.15, 0.42, 0.031 +19780905, 0.53, -0.47, -0.14, 0.30, 0.00, 0.031 +19780906, 0.84, 0.04, -0.17, 0.22, -0.13, 0.031 +19780907, 0.12, 0.45, 0.02, 0.08, -0.26, 0.031 +19780908, 1.25, -0.20, -0.17, 0.05, -0.07, 0.031 +19780911, 0.21, 0.42, 0.12, -0.05, -0.24, 0.031 +19780912, 0.07, 0.06, 0.00, 0.03, 0.31, 0.031 +19780913, -0.55, 0.53, 0.28, -0.31, -0.05, 0.031 +19780914, -1.06, 0.33, 0.41, -0.38, 0.02, 0.031 +19780915, -0.95, 0.12, 0.19, -0.27, 0.20, 0.031 +19780918, -1.07, -0.38, 0.27, -0.32, 0.11, 0.031 +19780919, -0.75, -0.53, 0.33, 0.00, 0.16, 0.031 +19780920, -0.94, -0.54, 0.40, -0.07, 0.16, 0.031 +19780921, -0.04, -0.44, 0.01, -0.12, 0.35, 0.031 +19780922, 0.03, 0.30, -0.05, 0.08, 0.10, 0.031 +19780925, -0.03, -0.07, 0.12, 0.05, 0.19, 0.031 +19780926, 0.69, 0.00, -0.09, -0.01, 0.05, 0.031 +19780927, -0.87, 0.26, 0.25, -0.17, 0.05, 0.031 +19780928, 0.21, -0.14, 0.04, 0.03, 0.15, 0.031 +19780929, 0.49, 0.10, -0.03, 0.03, 0.09, 0.031 +19781002, 0.32, -0.10, -0.04, 0.20, -0.17, 0.031 +19781003, -0.31, 0.01, 0.13, -0.34, -0.04, 0.031 +19781004, 0.38, -0.46, 0.04, -0.07, -0.01, 0.031 +19781005, 0.22, 0.19, 0.09, 0.09, -0.14, 0.031 +19781006, 0.23, 0.16, -0.06, 0.08, -0.06, 0.031 +19781009, 0.92, -0.37, -0.19, 0.28, -0.01, 0.031 +19781010, -0.14, 0.25, 0.05, 0.00, -0.19, 0.031 +19781011, 0.86, -0.70, -0.33, 0.21, 0.08, 0.031 +19781012, -0.47, 0.66, 0.07, -0.11, -0.26, 0.031 +19781013, -0.29, 0.20, 0.10, -0.10, 0.06, 0.031 +19781016, -1.82, 0.13, 0.36, -0.14, 0.07, 0.031 +19781017, -1.71, -1.33, 0.12, -0.08, 0.21, 0.031 +19781018, -0.99, -0.88, 0.08, -0.04, 0.11, 0.031 +19781019, -1.32, -0.41, 0.39, -0.19, 0.21, 0.031 +19781020, -1.79, -2.03, 0.08, 0.05, 0.44, 0.031 +19781023, -0.25, -1.46, -0.15, 0.27, 0.01, 0.031 +19781024, -0.58, 0.43, 0.34, -0.04, 0.12, 0.031 +19781025, -0.22, 0.24, 0.01, 0.02, 0.04, 0.031 +19781026, -1.73, -1.74, 0.63, -0.32, 0.77, 0.031 +19781027, -1.97, -1.62, -0.04, 0.23, 0.43, 0.031 +19781030, 0.00, -3.16, -0.76, 0.53, -0.36, 0.031 +19781031, -1.81, 0.23, 0.73, -0.32, -0.12, 0.031 +19781101, 4.12, 0.63, -1.70, 1.35, -1.22, 0.033 +19781102, -0.92, 1.22, 0.24, 0.01, 0.23, 0.033 +19781103, 0.56, 0.27, -0.13, 0.36, 0.63, 0.033 +19781106, -0.80, 0.77, 0.36, -0.51, -0.27, 0.033 +19781107, -1.58, -0.91, 0.53, -0.45, 0.16, 0.033 +19781108, 0.43, -0.45, -0.57, 0.43, 0.12, 0.033 +19781109, 0.14, 0.48, -0.01, -0.06, -0.01, 0.033 +19781110, 0.49, 0.43, -0.02, -0.27, 0.00, 0.033 +19781113, -1.67, -0.07, 0.44, -0.24, 0.09, 0.033 +19781114, -1.02, -1.33, 0.19, 0.04, 0.02, 0.033 +19781115, 0.29, 0.21, -0.26, -0.04, -0.27, 0.033 +19781116, 1.01, -0.45, -0.47, 0.38, -0.28, 0.033 +19781117, 0.95, 0.56, -0.33, 0.02, -0.25, 0.033 +19781120, 0.91, 0.19, -0.22, 0.30, -0.10, 0.033 +19781121, -0.13, 0.41, -0.03, 0.05, -0.02, 0.033 +19781122, 0.59, 0.34, -0.16, -0.03, 0.19, 0.033 +19781124, 0.47, 0.33, -0.22, 0.15, 0.13, 0.033 +19781127, 0.25, 0.01, -0.17, 0.19, -0.18, 0.033 +19781128, -0.80, 0.27, 0.36, -0.37, -0.06, 0.033 +19781129, -1.39, 0.14, 0.43, -0.38, 0.08, 0.033 +19781130, 0.90, -0.21, -0.42, 0.20, -0.18, 0.033 +19781201, 1.57, 0.08, -0.68, 0.52, -0.30, 0.039 +19781204, 0.01, 0.27, -0.07, 0.20, -0.23, 0.039 +19781205, 1.24, -0.17, -0.36, 0.39, -0.24, 0.039 +19781206, 0.17, 0.24, 0.16, -0.02, 0.02, 0.039 +19781207, -0.39, 0.38, -0.04, -0.06, -0.02, 0.039 +19781208, -0.43, 0.23, 0.42, -0.38, -0.04, 0.039 +19781211, 0.43, -0.18, -0.31, 0.20, -0.25, 0.039 +19781212, -0.52, 0.21, 0.30, -0.16, 0.26, 0.039 +19781213, -0.59, 0.15, 0.02, -0.08, 0.01, 0.039 +19781214, -0.03, -0.04, 0.02, -0.01, -0.21, 0.039 +19781215, -0.74, 0.01, 0.14, -0.18, 0.21, 0.039 +19781218, -2.23, -0.78, 0.60, -0.41, 0.31, 0.039 +19781219, 0.72, -0.37, -0.71, 0.73, -0.09, 0.039 +19781220, 0.41, 0.23, -0.31, 0.17, -0.29, 0.039 +19781221, 0.05, 0.32, -0.20, 0.13, -0.19, 0.039 +19781222, 1.66, -0.17, -0.61, 0.45, 0.05, 0.039 +19781226, 0.98, -0.40, -0.82, 0.92, -0.28, 0.039 +19781227, -0.84, 0.19, 0.32, -0.17, 0.08, 0.039 +19781228, -0.40, 0.06, -0.18, 0.00, -0.13, 0.039 +19781229, -0.13, 0.70, 0.10, -0.18, -0.12, 0.039 +19790102, 0.58, -0.13, 0.46, -0.43, 0.50, 0.035 +19790103, 1.12, 0.42, -0.06, 0.02, -0.17, 0.035 +19790104, 0.94, 0.44, 0.01, -0.14, 0.08, 0.035 +19790105, 0.65, 0.62, -0.03, -0.02, -0.21, 0.035 +19790108, -0.28, 0.08, 0.09, 0.03, -0.04, 0.035 +19790109, 0.51, 0.34, 0.02, -0.06, -0.05, 0.035 +19790110, -0.55, 0.34, 0.22, -0.22, 0.04, 0.035 +19790111, 0.42, -0.07, -0.39, -0.03, 0.02, 0.035 +19790112, 0.75, 0.33, -0.23, 0.13, -0.20, 0.035 +19790115, 0.65, -0.18, -0.12, 0.45, 0.18, 0.035 +19790116, -1.13, 0.29, 0.58, -0.38, 0.21, 0.035 +19790117, -0.08, -0.21, 0.23, -0.19, 0.14, 0.035 +19790118, 0.40, 0.50, 0.07, -0.45, 0.07, 0.035 +19790119, -0.02, 0.43, 0.24, -0.26, -0.08, 0.035 +19790122, 0.05, -0.12, -0.12, 0.14, 0.17, 0.035 +19790123, 0.63, -0.02, 0.16, -0.22, 0.05, 0.035 +19790124, -0.36, 0.08, 0.30, -0.21, 0.10, 0.035 +19790125, 0.93, -0.30, -0.01, 0.07, 0.14, 0.035 +19790126, 0.64, -0.06, 0.09, 0.02, 0.19, 0.035 +19790129, -0.24, 0.14, 0.18, -0.25, 0.16, 0.035 +19790130, -0.35, 0.23, 0.22, 0.02, 0.13, 0.035 +19790131, -1.13, 0.38, 0.22, -0.33, 0.02, 0.035 +19790201, 0.04, -0.18, -0.04, -0.02, 0.12, 0.038 +19790202, -0.33, 0.47, 0.07, -0.18, -0.21, 0.038 +19790205, -1.31, -0.08, 0.27, -0.29, 0.09, 0.038 +19790206, -0.04, -0.20, 0.20, -0.09, 0.20, 0.038 +19790207, -0.95, -0.31, 0.25, -0.18, 0.37, 0.038 +19790208, 0.52, 0.14, -0.12, 0.05, -0.06, 0.038 +19790209, 0.25, 0.30, 0.04, -0.03, 0.19, 0.038 +19790212, 0.25, -0.21, -0.26, 0.16, -0.02, 0.038 +19790213, 0.74, 0.17, -0.07, 0.05, -0.10, 0.038 +19790214, -0.14, 0.07, 0.24, -0.24, 0.09, 0.038 +19790215, -0.07, 0.26, -0.11, -0.14, -0.01, 0.038 +19790216, 0.03, 0.31, 0.09, -0.15, 0.00, 0.038 +19790220, 0.58, -0.26, -0.18, 0.24, 0.06, 0.038 +19790221, -0.28, 0.25, 0.23, -0.04, 0.17, 0.038 +19790222, -0.57, 0.32, 0.13, -0.22, 0.05, 0.038 +19790223, -0.57, 0.17, 0.15, -0.01, 0.01, 0.038 +19790226, -0.14, 0.05, -0.05, -0.02, 0.02, 0.038 +19790227, -1.70, -0.49, 0.48, -0.18, 0.08, 0.038 +19790228, 0.09, -0.23, -0.09, 0.09, 0.03, 0.038 +19790301, 0.67, -0.05, 0.02, -0.05, 0.11, 0.037 +19790302, 0.12, 0.34, 0.00, 0.06, 0.10, 0.037 +19790305, 1.10, -0.31, -0.06, 0.22, -0.02, 0.037 +19790306, -0.23, 0.14, 0.62, -0.05, 0.08, 0.037 +19790307, 0.64, 0.10, 0.15, 0.09, 0.13, 0.037 +19790308, 1.01, -0.07, -0.07, -0.06, 0.05, 0.037 +19790309, 0.03, 0.12, 0.07, 0.05, -0.08, 0.037 +19790312, 0.15, 0.12, -0.17, 0.04, 0.22, 0.037 +19790313, 0.23, 0.28, -0.11, 0.21, -0.02, 0.037 +19790314, -0.07, 0.16, -0.03, -0.08, 0.15, 0.037 +19790315, 0.17, 0.10, 0.17, -0.08, 0.13, 0.037 +19790316, 0.74, -0.02, -0.31, 0.22, 0.02, 0.037 +19790319, 0.35, -0.01, -0.04, -0.01, -0.10, 0.037 +19790320, -0.53, 0.26, 0.03, -0.04, 0.06, 0.037 +19790321, 0.66, -0.11, -0.37, 0.20, -0.14, 0.037 +19790322, 0.40, 0.14, -0.16, 0.08, -0.33, 0.037 +19790323, -0.02, 0.53, 0.08, -0.42, -0.23, 0.037 +19790326, -0.50, 0.16, 0.23, -0.01, 0.22, 0.037 +19790327, 1.30, -0.52, -0.43, 0.16, 0.03, 0.037 +19790328, -0.36, 0.39, 0.09, 0.07, 0.04, 0.037 +19790329, -0.03, 0.51, -0.28, -0.01, -0.19, 0.037 +19790330, -0.31, 0.64, -0.03, 0.01, 0.03, 0.037 +19790402, -0.68, 0.28, 0.15, 0.14, 0.11, 0.040 +19790403, 1.34, -0.29, -0.15, 0.25, -0.02, 0.040 +19790404, 0.30, 0.06, 0.12, 0.18, -0.14, 0.040 +19790405, 0.55, -0.04, -0.15, 0.17, 0.10, 0.040 +19790406, -0.06, 0.08, 0.08, -0.09, -0.18, 0.040 +19790409, -0.30, 0.17, 0.08, 0.00, 0.00, 0.040 +19790410, 0.45, 0.02, 0.17, 0.02, 0.04, 0.040 +19790411, -0.90, 0.36, 0.40, -0.35, 0.27, 0.040 +19790412, -0.24, 0.39, 0.30, -0.20, 0.15, 0.040 +19790416, -0.87, 0.02, 0.12, -0.11, -0.05, 0.040 +19790417, -0.08, -0.11, 0.02, 0.04, 0.11, 0.040 +19790418, 0.49, 0.31, -0.04, 0.15, -0.17, 0.040 +19790419, -0.38, 0.38, -0.05, 0.09, -0.05, 0.040 +19790420, 0.01, 0.18, -0.12, 0.13, -0.22, 0.040 +19790423, 0.30, -0.01, -0.22, 0.34, -0.15, 0.040 +19790424, 0.52, -0.04, -0.05, 0.22, -0.01, 0.040 +19790425, 0.33, 0.09, 0.00, 0.20, 0.19, 0.040 +19790426, -0.47, 0.39, 0.26, -0.02, 0.12, 0.040 +19790427, -0.25, 0.21, 0.14, -0.08, -0.04, 0.040 +19790430, -0.07, -0.11, -0.04, 0.01, 0.16, 0.040 +19790501, -0.02, 0.07, 0.09, 0.07, -0.08, 0.037 +19790502, 0.05, 0.15, -0.08, 0.21, 0.03, 0.037 +19790503, 0.02, 0.11, -0.19, 0.17, 0.02, 0.037 +19790504, -0.97, 0.20, 0.25, -0.05, 0.17, 0.037 +19790507, -1.82, -0.84, 0.33, -0.24, 0.22, 0.037 +19790508, -0.02, -0.71, -0.16, 0.11, -0.11, 0.037 +19790509, 0.33, 0.26, 0.21, -0.15, -0.07, 0.037 +19790510, -0.89, 0.15, 0.23, -0.16, -0.15, 0.037 +19790511, 0.12, 0.02, 0.02, 0.08, -0.13, 0.037 +19790514, -0.48, 0.16, 0.02, -0.17, 0.08, 0.037 +19790515, 0.07, -0.04, 0.22, -0.12, 0.05, 0.037 +19790516, 0.22, -0.20, 0.05, -0.21, 0.21, 0.037 +19790517, 1.47, -0.45, 0.08, 0.05, 0.36, 0.037 +19790518, 0.08, 0.36, 0.00, -0.12, -0.14, 0.037 +19790521, 0.30, 0.14, -0.16, 0.01, -0.15, 0.037 +19790522, 0.46, -0.04, -0.10, 0.10, -0.14, 0.037 +19790523, -0.39, 0.50, 0.04, -0.09, -0.33, 0.037 +19790524, 0.13, 0.16, 0.04, -0.26, -0.17, 0.037 +19790525, 0.29, 0.24, 0.03, -0.09, -0.09, 0.037 +19790529, -0.18, 0.01, 0.05, -0.04, -0.07, 0.037 +19790530, -0.94, -0.06, 0.21, -0.24, 0.05, 0.037 +19790531, 0.01, -0.05, 0.11, -0.22, 0.06, 0.037 +19790601, 0.10, 0.16, -0.12, 0.00, -0.09, 0.038 +19790604, 0.18, -0.07, 0.35, 0.14, 0.24, 0.038 +19790605, 1.18, -0.20, -0.37, 0.20, -0.13, 0.038 +19790606, 0.66, -0.12, -0.25, 0.34, -0.13, 0.038 +19790607, 0.57, -0.02, -0.03, -0.08, -0.10, 0.038 +19790608, -0.20, 0.38, 0.54, -0.25, -0.23, 0.038 +19790611, 0.26, 0.08, -0.03, 0.21, 0.23, 0.038 +19790612, 0.90, -0.12, 0.14, 0.11, -0.46, 0.038 +19790613, -0.35, 0.55, 0.56, -0.35, -0.35, 0.038 +19790614, -0.19, -0.01, 0.11, -0.37, 0.51, 0.038 +19790615, 0.05, 0.11, -0.14, -0.23, 0.06, 0.038 +19790618, -0.57, 0.15, 0.21, -0.21, 0.27, 0.038 +19790619, 0.02, -0.04, 0.27, 0.01, -0.19, 0.038 +19790620, 0.14, 0.35, 0.12, -0.07, -0.09, 0.038 +19790621, 0.39, 0.10, -0.17, 0.07, -0.05, 0.038 +19790622, 0.44, -0.14, -0.06, -0.14, 0.01, 0.038 +19790625, -0.52, -0.09, 0.14, -0.48, 0.31, 0.038 +19790626, -0.44, 0.06, 0.19, -0.31, 0.10, 0.038 +19790627, 0.56, -0.13, -0.09, 0.11, -0.54, 0.038 +19790628, 0.54, -0.07, 0.04, -0.04, 0.09, 0.038 +19790629, 0.02, -0.04, -0.02, -0.19, 0.06, 0.038 +19790702, -0.91, -0.05, 0.48, -0.26, 0.38, 0.036 +19790703, 0.14, 0.08, 0.28, -0.21, -0.05, 0.036 +19790705, 0.37, 0.16, 0.08, 0.00, 0.16, 0.036 +19790706, 1.04, -0.30, -0.26, 0.10, 0.13, 0.036 +19790709, 0.78, -0.43, 0.22, 0.03, 0.20, 0.036 +19790710, -0.31, 0.14, 0.10, -0.11, 0.16, 0.036 +19790711, -0.60, 0.43, 0.21, -0.33, -0.21, 0.036 +19790712, -0.76, 0.55, 0.35, -0.24, 0.06, 0.036 +19790713, -0.34, 0.10, 0.12, -0.32, 0.16, 0.036 +19790716, 0.41, -0.14, -0.02, 0.03, 0.09, 0.036 +19790717, -0.97, -0.06, 0.53, -0.35, 0.44, 0.036 +19790718, -0.29, -0.31, -0.13, 0.13, -0.01, 0.036 +19790719, -0.01, 0.53, 0.11, -0.23, -0.07, 0.036 +19790720, 0.25, 0.03, -0.21, 0.19, 0.03, 0.036 +19790723, -0.29, 0.09, -0.04, 0.05, -0.25, 0.036 +19790724, 0.31, -0.01, -0.01, 0.22, 0.14, 0.036 +19790725, 1.05, -0.29, -0.20, 0.55, -0.06, 0.036 +19790726, 0.11, 0.29, 0.02, 0.05, -0.35, 0.036 +19790727, 0.12, 0.35, 0.05, -0.05, 0.03, 0.036 +19790730, 0.13, 0.11, -0.11, 0.41, -0.32, 0.036 +19790731, 0.59, -0.09, 0.02, 0.16, -0.12, 0.036 +19790801, 0.35, 0.23, -0.18, 0.34, 0.05, 0.033 +19790802, 0.05, 0.32, -0.24, 0.18, -0.45, 0.033 +19790803, -0.08, 0.04, 0.16, -0.14, 0.08, 0.033 +19790806, 0.20, -0.17, -0.17, 0.26, 0.00, 0.033 +19790807, 1.17, -0.40, -0.50, 0.38, -0.34, 0.033 +19790808, 0.33, 0.08, -0.13, 0.06, -0.23, 0.033 +19790809, -0.29, 0.44, 0.09, -0.15, 0.03, 0.033 +19790810, 0.80, -0.09, -0.54, 0.37, -0.46, 0.033 +19790813, 0.86, -0.19, -0.23, 0.32, -0.45, 0.033 +19790814, 0.15, 0.18, 0.33, -0.10, 0.11, 0.033 +19790815, 0.69, 0.12, -0.16, 0.15, -0.21, 0.033 +19790816, -0.20, 0.06, -0.03, 0.03, 0.02, 0.033 +19790817, 0.24, -0.05, 0.15, 0.13, 0.12, 0.033 +19790820, 0.48, -0.12, -0.04, 0.14, 0.04, 0.033 +19790821, 0.02, 0.11, 0.00, -0.04, 0.10, 0.033 +19790822, 0.15, 0.25, 0.04, -0.15, 0.14, 0.033 +19790823, -0.28, 0.38, 0.14, -0.17, -0.11, 0.033 +19790824, 0.00, -0.07, 0.24, -0.10, 0.25, 0.033 +19790827, 0.53, -0.29, 0.10, 0.36, 0.08, 0.033 +19790828, -0.10, 0.16, -0.04, -0.11, 0.08, 0.033 +19790829, 0.01, 0.29, -0.11, -0.26, -0.06, 0.033 +19790830, -0.02, 0.26, -0.10, -0.03, -0.02, 0.033 +19790831, 0.31, 0.28, -0.22, 0.09, -0.12, 0.033 +19790904, -1.61, 0.16, 0.32, -0.27, 0.24, 0.043 +19790905, -1.25, -0.78, 0.20, -0.04, 0.31, 0.043 +19790906, 0.47, 0.27, -0.11, -0.01, 0.00, 0.043 +19790907, 0.76, -0.10, 0.22, -0.02, 0.30, 0.043 +19790910, 0.47, -0.05, 0.05, 0.07, 0.09, 0.043 +19790911, -0.68, 0.13, 0.05, -0.06, 0.02, 0.043 +19790912, 0.31, 0.09, -0.19, -0.02, -0.13, 0.043 +19790913, 0.03, 0.41, -0.49, 0.32, -0.49, 0.043 +19790914, 0.91, 0.02, -0.35, 0.52, -0.32, 0.043 +19790917, -0.11, -0.06, -0.18, 0.22, -0.04, 0.043 +19790918, -0.76, 0.00, 0.00, 0.01, 0.22, 0.043 +19790919, 0.21, -0.07, -0.05, 0.08, -0.04, 0.043 +19790920, 1.67, -1.22, -0.31, 0.90, 0.36, 0.043 +19790921, -0.05, 0.24, 0.04, -0.33, -0.26, 0.043 +19790924, -0.79, 0.26, -0.15, 0.09, -0.07, 0.043 +19790925, 0.01, -0.28, -0.16, 0.11, -0.23, 0.043 +19790926, 0.22, 0.14, 0.01, -0.09, 0.05, 0.043 +19790927, 0.10, 0.12, 0.02, -0.15, 0.20, 0.043 +19790928, -0.69, 0.49, 0.19, -0.27, 0.35, 0.043 +19791001, -0.58, 0.32, -0.18, -0.23, -0.08, 0.038 +19791002, 0.78, -0.22, -0.11, 0.24, -0.02, 0.038 +19791003, 0.13, 0.33, -0.20, -0.04, -0.18, 0.038 +19791004, 0.56, 0.05, 0.01, 0.06, -0.10, 0.038 +19791005, 0.85, -0.14, -0.02, 0.04, 0.19, 0.038 +19791008, -1.24, -0.07, -0.02, 0.12, 0.18, 0.038 +19791009, -3.44, -1.31, 0.01, 0.23, 0.28, 0.038 +19791010, -1.92, -2.72, -0.44, 0.55, 0.16, 0.038 +19791011, -0.02, 0.75, 0.01, -0.17, -0.15, 0.038 +19791012, -0.31, 0.74, 0.03, -0.50, -0.07, 0.038 +19791015, -1.23, -0.64, 0.04, 0.00, 0.18, 0.038 +19791016, -0.21, 0.00, 0.08, -0.02, 0.08, 0.038 +19791017, 0.30, 0.22, -0.13, -0.05, 0.02, 0.038 +19791018, 0.18, 0.01, -0.02, 0.10, 0.34, 0.038 +19791019, -2.09, -0.04, 0.36, -0.11, 0.34, 0.038 +19791022, -1.43, -1.64, -0.37, 0.49, -0.06, 0.038 +19791023, -0.37, -0.04, -0.26, 0.10, -0.48, 0.038 +19791024, 0.21, 0.16, -0.13, 0.11, -0.05, 0.038 +19791025, -0.34, 0.26, 0.19, -0.26, 0.00, 0.038 +19791026, 0.64, 0.28, -0.23, 0.13, -0.26, 0.038 +19791029, 0.16, 0.04, -0.10, 0.02, 0.02, 0.038 +19791030, 1.77, -0.54, -0.74, 0.62, -0.35, 0.038 +19791031, -0.62, 0.55, 0.17, -0.23, 0.16, 0.038 +19791101, 0.79, -0.15, -0.20, 0.20, 0.00, 0.047 +19791102, 0.17, 0.25, -0.15, -0.03, 0.09, 0.047 +19791105, -0.68, 0.08, -0.02, 0.04, 0.01, 0.047 +19791106, -0.61, 0.17, 0.08, -0.01, -0.01, 0.047 +19791107, -1.24, 0.05, 0.25, -0.03, 0.19, 0.047 +19791108, 0.53, -0.12, -0.37, 0.00, -0.35, 0.047 +19791109, 1.23, -0.07, -0.14, 0.00, -0.16, 0.047 +19791112, 1.71, -0.77, -0.30, 0.37, 0.20, 0.047 +19791113, -0.36, 0.34, 0.26, -0.32, 0.00, 0.047 +19791114, 0.37, 0.12, -0.25, 0.09, -0.42, 0.047 +19791115, 0.74, 0.16, -0.48, 0.36, -0.28, 0.047 +19791116, -0.18, 0.05, -0.05, -0.07, 0.08, 0.047 +19791119, 0.41, 0.00, -0.39, 0.06, 0.06, 0.047 +19791120, -0.48, 0.39, -0.21, -0.34, 0.23, 0.047 +19791121, 0.08, -0.28, -0.19, -0.10, -0.24, 0.047 +19791123, 0.76, 0.06, -0.31, 0.01, -0.24, 0.047 +19791126, 2.11, -0.28, -0.40, 0.33, -0.55, 0.047 +19791127, -0.19, 0.78, 0.29, -0.22, -0.14, 0.047 +19791128, 0.41, 0.42, -0.34, -0.06, -0.14, 0.047 +19791129, 0.07, 0.52, -0.19, -0.04, -0.12, 0.047 +19791130, -0.49, 0.52, 0.07, -0.16, 0.00, 0.047 +19791203, -0.30, 0.14, 0.19, -0.11, 0.14, 0.047 +19791204, 0.83, -0.23, -0.42, 0.32, -0.19, 0.047 +19791205, 0.50, 0.27, -0.37, 0.12, -0.42, 0.047 +19791206, 0.69, 0.26, -0.19, 0.24, -0.17, 0.047 +19791207, -0.35, 0.71, -0.08, -0.02, -0.35, 0.047 +19791210, 0.23, 0.13, -0.03, 0.04, -0.28, 0.047 +19791211, -0.22, 0.14, 0.06, -0.02, 0.22, 0.047 +19791212, 0.06, 0.53, -0.33, -0.25, -0.22, 0.047 +19791213, 0.14, 0.18, -0.48, -0.03, -0.03, 0.047 +19791214, 1.05, -0.25, -0.40, 0.45, -0.11, 0.047 +19791217, 0.44, 0.06, -0.24, -0.13, 0.13, 0.047 +19791218, -0.92, 0.36, 0.54, -0.17, 0.36, 0.047 +19791219, -0.14, 0.09, -0.06, -0.20, -0.04, 0.047 +19791220, 0.13, 0.35, -0.02, 0.18, -0.15, 0.047 +19791221, -0.61, 0.55, 0.02, -0.10, -0.14, 0.047 +19791224, 0.04, 0.03, 0.18, -0.08, 0.16, 0.047 +19791226, 0.09, 0.02, 0.03, -0.18, 0.11, 0.047 +19791227, 0.07, 0.13, -0.10, -0.17, -0.09, 0.047 +19791228, 0.03, 0.37, -0.10, -0.29, -0.03, 0.047 +19791231, 0.05, 0.30, -0.10, -0.24, 0.15, 0.047 +19800102, -2.05, 0.18, 1.07, -1.10, 0.75, 0.036 +19800103, -0.73, -0.88, 0.33, -0.27, 0.17, 0.036 +19800104, 1.32, 0.61, -0.38, -0.13, -0.59, 0.036 +19800107, 0.39, 0.27, 0.05, -0.45, 0.06, 0.036 +19800108, 1.92, -0.32, -0.70, 0.69, -0.36, 0.036 +19800109, 0.11, 0.63, 0.01, 0.20, -0.46, 0.036 +19800110, 0.85, 0.35, -0.02, 0.07, -0.08, 0.036 +19800111, 0.20, 0.27, 0.45, -0.51, 0.00, 0.036 +19800114, 0.34, 0.39, 0.66, -0.66, 0.81, 0.036 +19800115, 0.54, -0.10, -0.10, 0.12, 0.23, 0.036 +19800116, 0.04, 0.43, -0.10, 0.04, 0.15, 0.036 +19800117, -0.28, 0.49, 0.28, -0.18, 0.63, 0.036 +19800118, 0.22, 0.05, 0.09, -0.13, 0.07, 0.036 +19800121, 0.85, -0.15, 0.25, 0.06, 0.12, 0.036 +19800122, -0.59, -0.05, -0.04, 0.56, -0.14, 0.036 +19800123, 1.50, -0.67, -0.17, 0.21, 0.08, 0.036 +19800124, 0.25, 0.09, -0.09, 0.00, -0.03, 0.036 +19800125, -0.03, 0.30, -0.19, -0.05, -0.27, 0.036 +19800128, 1.00, -0.45, -0.29, 0.37, 0.05, 0.036 +19800129, -0.65, -0.01, 0.22, -0.30, 0.16, 0.036 +19800130, 0.94, -0.24, 0.17, -0.04, 0.42, 0.036 +19800131, -0.72, 0.57, 0.17, 0.02, 0.11, 0.036 +19800201, 0.66, -0.31, 0.11, 0.26, 0.25, 0.044 +19800204, -0.46, 0.37, 0.20, -0.23, 0.10, 0.044 +19800205, 0.21, -0.01, -0.07, 0.02, 0.15, 0.044 +19800206, 0.84, -0.61, 0.19, 0.09, 0.71, 0.044 +19800207, 0.43, -0.02, 0.45, -0.24, 0.43, 0.044 +19800208, 1.25, -0.65, 0.51, -0.60, 0.73, 0.044 +19800211, -0.72, 0.32, -0.19, 0.30, 0.06, 0.044 +19800212, 0.58, -0.44, -0.52, 0.38, -0.14, 0.044 +19800213, 0.27, -0.14, -0.26, 0.39, -0.34, 0.044 +19800214, -1.43, 0.48, 0.28, -0.10, -0.14, 0.044 +19800215, -0.92, 0.29, 0.01, -0.15, 0.11, 0.044 +19800219, -0.79, 0.05, -0.06, 0.36, -0.02, 0.044 +19800220, 1.41, -0.87, 0.08, 0.26, 0.62, 0.044 +19800221, -0.93, 0.41, -0.09, 0.09, 0.12, 0.044 +19800222, -0.40, -0.44, 0.16, 0.11, 0.22, 0.044 +19800225, -1.41, 0.28, -0.23, -0.01, 0.02, 0.044 +19800226, 0.56, -0.38, 0.14, 0.17, 0.26, 0.044 +19800227, -1.24, 0.78, 0.27, -0.57, -0.05, 0.044 +19800228, -0.03, -0.01, -0.26, -0.11, 0.13, 0.044 +19800229, 0.97, -0.69, -0.11, -0.27, -0.16, 0.044 +19800303, -0.94, 0.22, 0.02, -0.29, -0.04, 0.057 +19800304, -0.08, -1.11, 0.20, 0.30, 0.43, 0.057 +19800305, -1.59, -0.15, 0.42, 0.08, 0.25, 0.057 +19800306, -2.42, -0.39, -0.21, 0.30, -0.26, 0.057 +19800307, -1.73, -0.10, -0.35, -0.10, -0.64, 0.057 +19800310, -0.76, -1.48, 0.30, 0.53, 0.25, 0.057 +19800311, 1.21, -0.34, 0.01, 0.02, -0.15, 0.057 +19800312, -0.70, 0.60, -0.04, -0.44, -0.15, 0.057 +19800313, -1.02, 0.84, -0.45, 0.03, -0.29, 0.057 +19800314, -0.34, -0.23, -0.02, -0.25, -0.02, 0.057 +19800317, -3.20, -0.32, 0.00, 0.37, -0.09, 0.057 +19800318, 1.32, -2.08, 0.25, 0.12, 0.71, 0.057 +19800319, 0.36, 0.44, -0.01, -0.39, -0.11, 0.057 +19800320, -1.05, 0.89, -0.24, -0.14, -0.33, 0.057 +19800321, -0.77, 0.09, 0.26, -0.18, 0.42, 0.057 +19800324, -3.13, -0.45, 0.59, 0.04, -0.06, 0.057 +19800325, -0.55, -1.45, -0.43, 0.36, -0.34, 0.057 +19800326, -0.54, 0.22, -0.20, 0.22, -0.24, 0.057 +19800327, -1.85, -5.16, 0.32, 2.12, 0.42, 0.057 +19800328, 2.93, 1.99, -1.49, -0.80, -0.87, 0.057 +19800331, 1.46, 0.13, -0.16, -0.24, -0.14, 0.057 +19800401, 0.32, 0.86, -0.07, -0.26, -0.56, 0.059 +19800402, 0.84, 0.46, -0.31, -0.21, -0.46, 0.059 +19800403, -0.41, 0.37, 0.12, -0.39, 0.25, 0.059 +19800407, -2.07, -0.03, 0.51, -0.19, 0.01, 0.059 +19800408, 0.94, -0.51, -0.09, -0.27, -0.40, 0.059 +19800409, 1.81, -0.78, 0.22, 0.20, 0.58, 0.059 +19800410, 0.87, 0.44, 0.24, -0.79, -0.31, 0.059 +19800411, -0.11, 0.59, 0.41, -0.34, 0.18, 0.059 +19800414, -1.03, 0.16, 0.17, -0.01, 0.27, 0.059 +19800415, -0.23, -0.10, 0.12, 0.04, 0.19, 0.059 +19800416, -1.09, 0.37, 0.59, -0.41, 0.42, 0.059 +19800417, -0.55, -0.29, 0.21, -0.08, 0.19, 0.059 +19800418, -0.41, 0.26, 0.13, -0.22, 0.06, 0.059 +19800421, -0.89, -0.46, 0.39, 0.17, 0.42, 0.059 +19800422, 3.41, -0.76, -1.09, 0.52, -0.60, 0.059 +19800423, 0.35, 0.60, -0.05, -0.03, -0.07, 0.059 +19800424, 0.81, 0.30, -0.43, -0.35, -0.42, 0.059 +19800425, 0.47, -0.91, -0.24, 0.53, 0.33, 0.059 +19800428, 0.39, 0.11, 0.01, 0.12, -0.05, 0.059 +19800429, 0.30, 0.25, -0.03, -0.12, 0.02, 0.059 +19800430, 0.29, 0.01, 0.14, 0.01, 0.20, 0.059 +19800501, -0.66, 0.31, 0.30, 0.30, -0.04, 0.038 +19800502, 0.15, 0.11, 0.18, -0.35, 0.05, 0.038 +19800505, 0.76, -0.24, 0.24, -0.04, 0.01, 0.038 +19800506, 0.14, 0.47, -0.06, 0.04, -0.15, 0.038 +19800507, 0.87, 0.03, 0.64, -0.52, 0.24, 0.038 +19800508, -0.71, 0.65, 0.16, -0.17, 0.07, 0.038 +19800509, -1.18, 0.88, 0.16, -0.55, -0.11, 0.038 +19800512, -0.02, 0.01, -0.02, -0.14, -0.14, 0.038 +19800513, 1.19, -0.41, -0.24, 0.43, -0.01, 0.038 +19800514, 0.65, 0.36, -0.26, 0.13, -0.27, 0.038 +19800515, 0.20, 0.41, -0.38, 0.07, -0.55, 0.038 +19800516, 0.38, 0.17, -0.20, 0.32, 0.03, 0.038 +19800519, 0.24, 0.07, -0.12, 0.44, 0.21, 0.038 +19800520, -0.08, 0.15, -0.01, 0.14, -0.09, 0.038 +19800521, 0.06, -0.04, 0.11, -0.28, 0.16, 0.038 +19800522, 1.21, -0.41, -0.24, 0.16, -0.01, 0.038 +19800523, 1.45, -0.43, -0.09, 0.31, 0.09, 0.038 +19800527, 0.66, -0.21, 0.28, 0.10, 0.40, 0.038 +19800528, 0.61, -0.40, -0.02, 0.22, -0.04, 0.038 +19800529, -1.47, 0.80, -0.09, -0.28, -0.26, 0.038 +19800530, 0.70, -0.39, 0.02, -0.05, 0.01, 0.038 +19800602, -0.25, 0.27, 0.02, 0.08, -0.09, 0.029 +19800603, -0.21, 0.25, -0.05, 0.17, -0.01, 0.029 +19800604, 1.69, -0.78, -0.68, 0.60, -0.08, 0.029 +19800605, 0.21, 0.31, -0.02, -0.19, -0.01, 0.029 +19800606, 0.40, 0.06, -0.20, -0.08, -0.09, 0.029 +19800609, 0.37, -0.11, 0.19, 0.00, 0.24, 0.029 +19800610, 0.80, -0.41, -0.12, 0.33, 0.00, 0.029 +19800611, 1.08, -0.52, -0.22, 0.65, -0.22, 0.029 +19800612, -0.25, 0.16, -0.29, -0.12, -0.19, 0.029 +19800613, 0.29, 0.50, 0.04, -0.30, -0.59, 0.029 +19800616, 0.17, -0.12, 0.03, 0.07, 0.17, 0.029 +19800617, 0.03, 0.15, 0.16, -0.20, 0.04, 0.029 +19800618, 0.15, -0.26, 0.23, 0.08, 0.45, 0.029 +19800619, -1.27, 0.75, 0.16, -0.20, 0.06, 0.029 +19800620, -0.41, 0.32, 0.22, -0.37, -0.11, 0.029 +19800623, 0.39, -0.02, -0.10, 0.23, 0.04, 0.029 +19800624, 0.58, -0.13, -0.13, -0.18, -0.31, 0.029 +19800625, 1.21, -0.30, -0.09, 0.11, -0.11, 0.029 +19800626, -0.36, 0.34, 0.00, -0.09, 0.04, 0.029 +19800627, -0.12, 0.32, -0.17, -0.31, -0.09, 0.029 +19800630, -1.46, 0.59, 0.14, -0.33, -0.06, 0.029 +19800701, 0.55, -0.15, -0.69, 0.35, -0.26, 0.024 +19800702, 0.66, 0.08, -0.47, 0.15, 0.05, 0.024 +19800703, 1.39, -0.26, -0.52, 0.35, -0.30, 0.024 +19800707, 0.76, -0.09, -0.19, 0.34, -0.40, 0.024 +19800708, -0.30, 0.38, 0.06, -0.06, 0.39, 0.024 +19800709, 0.13, 0.23, -0.08, 0.17, -0.07, 0.024 +19800710, -0.75, 0.74, 0.14, -0.13, 0.01, 0.024 +19800711, 0.70, 0.05, -0.53, 0.61, -0.35, 0.024 +19800714, 1.72, -0.30, -0.97, 0.79, -0.58, 0.024 +19800715, -0.46, 0.62, 0.07, -0.10, 0.18, 0.024 +19800716, 0.21, 0.36, -0.12, 0.25, -0.28, 0.024 +19800717, 1.41, -0.26, -0.83, 0.63, -0.54, 0.024 +19800718, 0.33, 0.35, -0.17, 0.03, -0.11, 0.024 +19800721, 0.34, -0.04, -0.22, 0.24, -0.24, 0.024 +19800722, -0.26, 0.07, 0.20, -0.17, 0.12, 0.024 +19800723, -0.16, 0.25, -0.07, 0.16, 0.00, 0.024 +19800724, -0.11, 0.30, -0.22, 0.09, 0.01, 0.024 +19800725, -0.76, 0.42, 0.06, -0.25, 0.03, 0.024 +19800728, 0.43, -0.26, -0.40, 0.22, 0.02, 0.024 +19800729, 0.76, 0.04, -0.52, 0.05, -0.11, 0.024 +19800730, 0.08, 0.85, -0.52, 0.05, -0.05, 0.024 +19800731, -0.38, 0.19, 0.12, -0.08, 0.24, 0.024 +19800801, -0.18, 0.86, -0.32, 0.16, 0.13, 0.030 +19800804, -0.36, 0.10, 0.34, 0.12, 0.30, 0.030 +19800805, -0.02, 0.46, -0.17, 0.12, 0.00, 0.030 +19800806, 0.66, 0.00, -0.42, 0.30, -0.24, 0.030 +19800807, 1.45, -0.37, -0.77, 0.66, -0.12, 0.030 +19800808, 0.29, 0.13, -0.12, 0.17, -0.06, 0.030 +19800811, 0.91, -0.18, -0.24, 0.47, -0.40, 0.030 +19800812, -0.74, 0.32, 0.17, 0.05, 0.18, 0.030 +19800813, -0.28, 0.50, 0.08, -0.17, 0.21, 0.030 +19800814, 1.51, -0.17, -0.82, 0.38, -0.10, 0.030 +19800815, 0.40, 0.12, -0.23, 0.19, 0.14, 0.030 +19800818, -1.79, 0.13, 1.00, -0.31, 0.27, 0.030 +19800819, -0.61, 0.05, 0.07, -0.21, 0.30, 0.030 +19800820, 0.98, -0.06, -0.39, 0.10, -0.39, 0.030 +19800821, 1.47, 0.12, -0.74, 0.34, -0.57, 0.030 +19800822, 0.60, 0.26, -0.38, 0.25, -0.66, 0.030 +19800825, -0.50, 0.39, -0.20, 0.01, 0.02, 0.030 +19800826, -0.12, 0.42, -0.32, 0.11, -0.08, 0.030 +19800827, -0.93, 0.59, 0.28, -0.31, 0.07, 0.030 +19800828, -1.14, 0.18, 0.68, -0.20, 0.11, 0.030 +19800829, 0.26, 0.24, 0.00, -0.22, 0.21, 0.030 +19800902, 0.99, -0.21, -0.03, 0.08, -0.12, 0.036 +19800903, 1.92, -0.49, -0.41, 0.30, -0.54, 0.036 +19800904, -0.38, 0.60, 0.13, -0.08, -0.11, 0.036 +19800905, -0.31, 0.67, -0.19, -0.06, -0.04, 0.036 +19800908, -1.22, 0.63, 0.19, -0.41, -0.02, 0.036 +19800909, 0.54, -0.15, -0.32, 0.05, 0.18, 0.036 +19800910, 0.67, 0.31, -0.24, 0.02, -0.10, 0.036 +19800911, 0.68, 0.43, -0.96, 0.28, -0.32, 0.036 +19800912, 0.08, 0.61, -0.59, 0.03, -0.29, 0.036 +19800915, 0.09, 0.02, -0.40, 0.05, 0.29, 0.036 +19800916, 0.90, 0.01, -0.78, 0.34, -0.73, 0.036 +19800917, 1.50, -0.30, -1.08, 0.66, -0.63, 0.036 +19800918, -0.34, 0.15, 0.08, 0.06, -0.07, 0.036 +19800919, 0.57, 0.20, -0.45, 0.15, -0.24, 0.036 +19800922, 0.76, -0.68, -0.78, 0.41, -0.61, 0.036 +19800923, -0.68, -0.45, 0.27, 0.10, -0.04, 0.036 +19800924, 0.61, -0.68, -0.52, 0.37, -0.50, 0.036 +19800925, -1.17, 0.61, 0.25, -0.36, 0.40, 0.036 +19800926, -2.01, -0.02, 0.82, -0.17, 0.30, 0.036 +19800929, -2.42, -0.62, 1.08, -0.28, 0.73, 0.036 +19800930, 1.50, -0.10, -0.95, 0.51, -0.44, 0.036 +19801001, 1.31, -0.47, -1.56, 1.12, -1.28, 0.041 +19801002, 0.72, -0.10, -0.58, 0.35, -0.15, 0.041 +19801003, 1.11, 0.27, -0.59, 0.20, -0.15, 0.041 +19801006, 1.71, -0.21, -0.90, 0.42, -0.77, 0.041 +19801007, -0.50, 0.31, 0.05, -0.15, 0.17, 0.041 +19801008, 0.48, 0.20, -0.56, 0.24, -0.31, 0.041 +19801009, -0.37, 0.57, 0.05, -0.16, -0.17, 0.041 +19801010, -0.42, 0.49, 0.40, -0.04, 0.13, 0.041 +19801013, 1.13, -0.46, -0.45, 0.70, -0.36, 0.041 +19801014, 0.00, 0.18, -0.09, 0.02, 0.12, 0.041 +19801015, 1.10, -0.60, -0.55, 0.61, -0.21, 0.041 +19801016, -1.20, 0.43, 0.74, -0.27, 0.21, 0.041 +19801017, -0.52, 0.10, 0.08, -0.49, 0.41, 0.041 +19801020, 0.60, -0.48, 0.05, 0.26, -0.14, 0.041 +19801021, -0.63, 0.31, 0.10, -0.09, -0.09, 0.041 +19801022, 0.17, 0.43, -0.22, -0.24, -0.21, 0.041 +19801023, -1.79, 0.63, 0.90, -0.56, 0.56, 0.041 +19801024, 0.25, 0.00, 0.15, -0.18, 0.22, 0.041 +19801027, -1.41, 0.58, 0.44, -0.23, 0.41, 0.041 +19801028, -0.01, -0.20, -0.54, 0.40, -0.08, 0.041 +19801029, -0.14, 0.24, -0.23, 0.02, -0.10, 0.041 +19801030, -1.43, 0.47, 0.54, -0.26, 0.46, 0.041 +19801031, 0.97, -0.56, -0.20, 0.27, -0.14, 0.041 +19801103, 1.10, -0.57, -0.79, 0.62, -0.43, 0.053 +19801105, 1.69, -0.44, -1.42, 0.96, -0.67, 0.053 +19801106, -1.79, 0.36, 0.24, -0.03, 0.43, 0.053 +19801107, 0.12, -0.49, -0.10, 0.30, -0.10, 0.053 +19801110, 0.27, -0.21, -0.40, 0.13, -0.26, 0.053 +19801111, 1.20, -0.29, -0.23, -0.10, -0.60, 0.053 +19801112, 2.35, -0.97, -1.16, 0.64, -0.84, 0.053 +19801113, 1.47, -0.36, -0.88, 0.65, -0.51, 0.053 +19801114, 0.49, 0.10, -0.49, 0.40, -0.61, 0.053 +19801117, 0.39, -0.53, -0.47, 0.34, -0.25, 0.053 +19801118, 1.37, -0.66, -0.96, 0.55, -0.54, 0.053 +19801119, -0.37, 0.72, -0.58, 0.17, -0.26, 0.053 +19801120, 0.91, -0.31, -0.32, 0.09, -0.20, 0.053 +19801121, -0.87, 0.65, -0.05, -0.41, 0.32, 0.053 +19801124, -0.64, -0.22, 0.81, -0.21, 0.23, 0.053 +19801125, 0.76, -0.02, -0.19, -0.05, -0.62, 0.053 +19801126, 0.50, -0.04, -0.71, 0.10, 0.01, 0.053 +19801128, 0.27, 0.16, 0.06, -0.11, -0.20, 0.053 +19801201, -2.21, 0.93, 0.35, -0.02, 0.36, 0.059 +19801202, -0.30, -0.38, 0.24, -0.03, 0.37, 0.059 +19801203, -0.07, 0.53, -0.37, -0.41, 0.39, 0.059 +19801204, -0.12, 0.56, -0.20, -0.40, 0.12, 0.059 +19801205, -1.91, 0.60, 0.88, 0.02, 0.17, 0.059 +19801208, -2.71, -0.80, 1.68, 0.04, 0.43, 0.059 +19801209, -0.21, -0.61, 0.23, 0.13, -0.18, 0.059 +19801210, -1.60, 0.37, 0.84, -0.25, 0.28, 0.059 +19801211, -1.16, -1.58, 0.50, 0.26, 0.19, 0.059 +19801212, 1.38, -0.04, -1.08, -0.05, -0.59, 0.059 +19801215, 0.11, 0.20, -0.49, 0.35, -0.37, 0.059 +19801216, 0.71, -0.76, -0.47, 0.47, -0.28, 0.059 +19801217, 1.52, -0.73, -0.34, 0.11, -0.41, 0.059 +19801218, 0.41, 0.34, 1.27, -1.13, 0.27, 0.059 +19801219, 0.58, 0.21, 0.60, -0.52, 0.40, 0.059 +19801222, 1.28, -0.35, -0.04, -0.35, 0.37, 0.059 +19801223, -0.31, 0.42, 0.16, 0.06, 0.20, 0.059 +19801224, 0.35, -0.02, 0.19, -0.11, -0.20, 0.059 +19801226, 0.46, -0.08, -0.26, 0.00, -0.23, 0.059 +19801229, -1.06, 0.34, -0.24, 0.43, 0.10, 0.059 +19801230, 0.16, -0.04, -0.44, 0.33, -0.08, 0.059 +19801231, 0.35, 0.56, -0.33, -0.23, -0.08, 0.059 +19810102, 0.56, 0.35, 0.64, -0.52, 0.25, 0.049 +19810105, 0.95, -0.26, 0.94, -0.73, 0.97, 0.049 +19810106, 0.05, 0.17, 0.84, -0.42, 0.67, 0.049 +19810107, -2.65, -1.25, 1.80, -0.20, 0.74, 0.049 +19810108, -1.37, 0.78, 0.64, -0.19, 0.39, 0.049 +19810109, 0.37, 0.66, -0.35, 0.10, 0.09, 0.049 +19810112, 0.02, 0.42, 0.45, -0.16, 0.21, 0.049 +19810113, -0.33, 0.15, 0.05, 0.05, -0.09, 0.049 +19810114, 0.27, 0.21, -0.36, 0.10, -0.19, 0.049 +19810115, 0.50, -0.07, -0.47, 0.36, -0.28, 0.049 +19810116, 0.49, -0.01, -0.09, 0.13, -0.07, 0.049 +19810119, -0.25, 0.33, 0.17, -0.19, 0.00, 0.049 +19810120, -1.89, 0.68, 0.58, -0.28, 0.19, 0.049 +19810121, -0.36, 0.06, 0.32, -0.18, 0.14, 0.049 +19810122, -0.83, 0.41, 0.09, -0.12, 0.25, 0.049 +19810123, -0.05, 0.22, -0.19, -0.09, -0.27, 0.049 +19810126, -0.51, -0.10, 0.37, 0.08, 0.13, 0.049 +19810127, 1.01, -0.50, -0.31, 0.24, -0.25, 0.049 +19810128, -0.46, 0.48, 0.35, -0.55, 0.30, 0.049 +19810129, -0.08, 0.33, 0.45, -0.56, 0.46, 0.049 +19810130, -0.48, 0.45, 0.95, -0.51, 0.77, 0.049 +19810202, -2.25, -0.15, 1.79, -0.30, 1.08, 0.056 +19810203, 1.08, -1.01, -0.48, 0.35, -0.32, 0.056 +19810204, 0.21, 0.43, -0.14, 0.00, 0.03, 0.056 +19810205, 0.94, 0.11, -0.26, 0.11, -0.06, 0.056 +19810206, 0.77, 0.14, -0.44, 0.26, -0.41, 0.056 +19810209, -0.99, 0.67, 0.53, -0.32, 0.73, 0.056 +19810210, -0.14, 0.06, 0.13, -0.10, 0.27, 0.056 +19810211, -0.74, 0.38, 0.52, -0.20, 0.40, 0.056 +19810212, -0.66, 0.03, 0.56, 0.08, 0.40, 0.056 +19810213, -0.31, 0.05, -0.10, 0.23, 0.06, 0.056 +19810217, 0.43, -0.54, -0.04, 0.40, -0.13, 0.056 +19810218, 0.45, -0.32, -0.51, 0.04, -0.27, 0.056 +19810219, -1.47, 0.39, 0.55, -0.27, 0.22, 0.056 +19810220, -0.19, -0.09, 0.50, -0.19, 0.16, 0.056 +19810223, 0.53, -0.36, -0.13, 0.00, -0.07, 0.056 +19810224, 0.17, 0.21, -0.13, -0.29, 0.11, 0.056 +19810225, 0.70, -0.78, -0.23, 0.03, 0.26, 0.056 +19810226, 1.17, 0.05, -0.73, 0.13, 0.04, 0.056 +19810227, 0.95, 0.12, -0.53, 0.40, -0.45, 0.056 +19810302, 0.60, -0.04, -0.45, 0.02, -0.45, 0.055 +19810303, -0.92, 0.73, 0.56, -0.57, 0.08, 0.055 +19810304, 0.14, -0.03, 0.29, -0.21, 0.06, 0.055 +19810305, -0.51, 0.61, 0.19, -0.21, 0.23, 0.055 +19810306, -0.09, 0.44, 0.16, -0.62, 0.27, 0.055 +19810309, 0.72, -0.33, -0.53, 0.02, -0.05, 0.055 +19810310, -0.47, -0.04, 0.58, -0.12, 0.17, 0.055 +19810311, -0.32, 0.06, 0.37, -0.25, 0.04, 0.055 +19810312, 2.23, -1.09, -0.69, 0.06, -0.27, 0.055 +19810313, 0.03, 0.25, 0.50, -0.73, 0.00, 0.055 +19810316, 1.01, -0.32, -0.07, -0.16, 0.26, 0.055 +19810317, -0.45, 0.36, 0.74, -0.02, 0.16, 0.055 +19810318, 0.23, 0.25, 0.31, -0.21, 0.31, 0.055 +19810319, -0.50, 0.87, 0.59, -0.60, 0.48, 0.055 +19810320, 0.63, 0.34, -0.30, 0.16, -0.23, 0.055 +19810323, 1.02, -0.51, -1.01, 1.06, -0.67, 0.055 +19810324, -0.60, 0.45, -0.30, 0.36, -0.35, 0.055 +19810325, 1.54, -0.55, -0.45, 0.14, -0.42, 0.055 +19810326, -0.45, 0.56, 0.12, 0.02, -0.33, 0.055 +19810327, -1.01, 0.67, 0.10, -0.21, 0.14, 0.055 +19810330, -0.30, 0.22, -0.07, -0.03, 0.21, 0.055 +19810331, 1.05, -0.19, -0.10, -0.13, -0.22, 0.055 +19810401, 0.49, 0.21, 0.00, 0.10, 0.07, 0.051 +19810402, -0.08, 0.40, 0.18, -0.20, 0.21, 0.051 +19810403, -0.48, 0.64, 0.23, 0.01, -0.10, 0.051 +19810406, -1.11, 0.36, 0.17, 0.09, 0.02, 0.051 +19810407, -0.04, 0.39, 0.27, -0.03, 0.16, 0.051 +19810408, 0.32, 0.12, 0.22, 0.02, -0.08, 0.051 +19810409, 0.37, 0.28, 0.45, -0.17, 0.35, 0.051 +19810410, 0.03, 0.52, -0.14, -0.03, -0.01, 0.051 +19810413, -1.05, 0.51, 0.31, 0.26, 0.14, 0.051 +19810414, -0.56, 0.17, 0.74, 0.04, -0.04, 0.051 +19810415, 1.01, -0.19, -0.39, 0.24, -0.38, 0.051 +19810416, 0.44, 0.39, -0.42, 0.08, -0.22, 0.051 +19810420, 0.54, -0.01, -0.32, 0.54, -0.20, 0.051 +19810421, -0.95, 0.61, 0.36, 0.15, 0.49, 0.051 +19810422, -0.08, 0.19, 0.38, 0.00, 0.15, 0.051 +19810423, -0.03, 0.51, -0.01, -0.21, 0.29, 0.051 +19810424, 0.72, -0.21, -0.15, 0.25, 0.01, 0.051 +19810427, 0.20, -0.24, 0.04, -0.19, 0.16, 0.051 +19810428, -0.95, -0.25, 0.62, -0.05, 0.28, 0.051 +19810429, -0.94, 0.14, 0.21, -0.06, 0.15, 0.051 +19810430, 0.01, 0.20, -0.42, -0.12, 0.04, 0.051 +19810501, -0.17, -0.04, -0.30, 0.11, -0.18, 0.057 +19810504, -1.53, -0.33, 0.43, 0.03, 0.20, 0.057 +19810505, -0.41, -0.39, -0.35, 0.41, -0.50, 0.057 +19810506, 0.40, -0.04, -0.39, 0.43, -0.51, 0.057 +19810507, 0.70, -0.20, -0.34, 0.20, -0.14, 0.057 +19810508, 0.08, 0.36, 0.07, -0.06, -0.11, 0.057 +19810511, -1.42, 0.41, 0.73, -0.44, 0.33, 0.057 +19810512, 0.65, -0.56, 0.17, -0.06, 0.15, 0.057 +19810513, -0.04, 0.54, -0.17, -0.66, -0.03, 0.057 +19810514, 0.56, 0.10, 0.21, -0.19, -0.19, 0.057 +19810515, 0.61, -0.14, 0.22, -0.05, -0.14, 0.057 +19810518, 0.16, 0.04, -0.34, 0.27, -0.14, 0.057 +19810519, -0.32, 0.03, -0.01, 0.16, -0.05, 0.057 +19810520, 0.10, 0.40, -0.39, 0.14, -0.21, 0.057 +19810521, -0.11, 0.44, 0.12, -0.08, -0.09, 0.057 +19810522, -0.01, 0.38, -0.13, -0.07, -0.24, 0.057 +19810526, 0.88, -0.49, -0.39, 0.46, -0.37, 0.057 +19810527, 0.65, 0.27, -0.21, 0.29, -0.12, 0.057 +19810528, -0.17, 0.84, 0.29, -0.43, 0.32, 0.057 +19810529, -0.46, 0.70, 0.35, -0.02, 0.25, 0.057 +19810601, -0.23, 0.32, 0.37, 0.00, 0.44, 0.061 +19810602, -1.45, 0.23, 0.88, -0.11, 0.55, 0.061 +19810603, -0.03, -0.07, 0.13, -0.20, 0.17, 0.061 +19810604, 0.15, 0.06, -0.10, 0.01, -0.17, 0.061 +19810605, 0.85, -0.62, -0.30, 0.26, -0.18, 0.061 +19810608, -0.03, -0.15, 0.44, -0.03, 0.18, 0.061 +19810609, -0.34, -0.08, 0.31, 0.05, -0.06, 0.061 +19810610, 0.25, -0.14, 0.40, -0.34, 0.13, 0.061 +19810611, 1.01, -0.04, 0.10, -0.26, 0.05, 0.061 +19810612, -0.04, 0.41, 0.48, -0.37, 0.33, 0.061 +19810615, 0.06, 0.00, 1.11, -0.72, 0.65, 0.061 +19810616, -1.16, 0.10, 1.37, -0.50, 0.72, 0.061 +19810617, 0.68, -0.74, -0.23, 0.24, 0.03, 0.061 +19810618, -1.21, 0.54, 0.28, -0.11, 0.37, 0.061 +19810619, 0.38, -0.22, -0.35, 0.30, -0.25, 0.061 +19810622, -0.21, -0.07, 0.26, -0.09, -0.10, 0.061 +19810623, 0.93, -0.76, -0.16, 0.15, 0.13, 0.061 +19810624, -0.55, 0.46, 0.18, -0.05, -0.01, 0.061 +19810625, 0.10, -0.06, -0.08, 0.15, -0.21, 0.061 +19810626, -0.23, 0.25, -0.23, 0.21, -0.20, 0.061 +19810629, -0.68, -0.14, 0.35, -0.15, 0.15, 0.061 +19810630, -0.65, -0.24, 0.05, 0.10, 0.14, 0.061 +19810701, -0.98, 0.26, -0.02, -0.14, 0.00, 0.056 +19810702, -0.95, 0.03, 0.54, -0.13, 0.39, 0.056 +19810706, -1.12, -0.40, 0.82, 0.22, -0.20, 0.056 +19810707, 0.32, -0.75, -0.15, 0.44, -0.57, 0.056 +19810708, 0.09, -0.15, -0.01, 0.12, -0.37, 0.056 +19810709, 0.66, -0.16, -0.61, 0.31, -0.40, 0.056 +19810710, 0.10, 0.24, -0.12, -0.35, 0.08, 0.056 +19810713, 0.12, -0.15, 0.28, -0.02, -0.20, 0.056 +19810714, -0.12, -0.36, -0.35, 0.34, -0.33, 0.056 +19810715, 0.38, 0.13, -0.23, -0.04, -0.12, 0.056 +19810716, 0.14, 0.16, -0.28, 0.12, -0.12, 0.056 +19810717, 0.29, -0.02, -0.26, 0.00, -0.16, 0.056 +19810720, -1.59, 0.21, 0.31, 0.17, 0.09, 0.056 +19810721, -0.50, -0.58, -0.09, 0.33, -0.05, 0.056 +19810722, -0.88, 0.38, 0.31, -0.27, 0.17, 0.056 +19810723, 0.12, -0.29, -0.24, 0.26, -0.43, 0.056 +19810724, 0.80, -0.28, 0.01, -0.14, -0.10, 0.056 +19810727, 0.81, -0.33, -0.41, 0.29, -0.36, 0.056 +19810728, -0.51, 0.30, 0.28, -0.21, 0.19, 0.056 +19810729, -0.03, 0.05, 0.33, -0.20, -0.08, 0.056 +19810730, 0.57, -0.09, -0.44, -0.04, -0.23, 0.056 +19810731, 0.77, -0.19, -0.33, 0.00, -0.26, 0.056 +19810803, -0.34, -0.21, 0.12, 0.34, -0.05, 0.061 +19810804, 0.42, -0.52, -0.46, 0.56, -0.39, 0.061 +19810805, 1.05, -0.57, -0.26, 0.33, -0.38, 0.061 +19810806, 0.10, 0.20, 0.12, -0.17, -0.10, 0.061 +19810807, -0.45, 0.21, 0.24, -0.06, 0.02, 0.061 +19810810, 0.34, -0.67, 0.05, 0.30, -0.26, 0.061 +19810811, 0.84, -0.53, -0.10, -0.04, -0.43, 0.061 +19810812, -0.24, 0.32, 0.29, -0.02, 0.23, 0.061 +19810813, 0.06, 0.04, -0.27, 0.00, -0.34, 0.061 +19810814, -0.69, 0.52, 0.14, -0.17, 0.25, 0.061 +19810817, -1.02, -0.04, 0.61, 0.02, 0.19, 0.061 +19810818, -1.11, -0.19, 0.71, -0.29, 0.62, 0.061 +19810819, 0.19, -0.23, -0.27, 0.05, 0.03, 0.061 +19810820, 0.15, 0.14, -0.25, 0.04, -0.09, 0.061 +19810821, -1.03, 0.43, 0.88, -0.46, 0.46, 0.061 +19810824, -2.97, 0.07, 1.82, -0.36, 1.17, 0.061 +19810825, -0.53, -1.08, -0.15, 0.05, -0.35, 0.061 +19810826, -0.12, -0.03, 0.19, -0.17, 0.08, 0.061 +19810827, -1.08, 0.29, 0.81, -0.26, 0.46, 0.061 +19810828, 0.41, -0.14, -0.03, -0.01, -0.04, 0.061 +19810831, -1.15, 0.06, 0.87, 0.08, 0.44, 0.061 +19810901, 0.13, -0.52, -0.11, 0.14, -0.01, 0.059 +19810902, 0.26, 0.03, -0.14, -0.05, -0.13, 0.059 +19810903, -1.92, 0.25, 1.19, -0.27, 0.79, 0.059 +19810904, -1.04, -0.05, 0.42, -0.14, 0.46, 0.059 +19810908, -1.96, -0.78, 1.09, -0.05, 0.83, 0.059 +19810909, 0.25, -0.28, -0.21, 0.22, -0.10, 0.059 +19810910, 1.49, 0.02, -0.72, 0.17, -0.81, 0.059 +19810911, 1.15, -0.02, -0.25, 0.03, 0.01, 0.059 +19810914, -0.78, 0.64, -0.04, 0.00, 0.37, 0.059 +19810915, -0.59, 0.42, 0.42, -0.14, 0.31, 0.059 +19810916, -0.84, -0.23, 1.10, -0.02, 0.58, 0.059 +19810917, -1.49, 0.16, 1.30, -0.28, 0.61, 0.059 +19810918, -0.92, -0.27, 0.77, -0.31, 0.29, 0.059 +19810921, 0.54, -0.74, 0.25, 0.28, 0.03, 0.059 +19810922, -0.52, 0.19, 0.47, -0.19, 0.33, 0.059 +19810923, -1.22, -0.94, 0.90, 0.07, 0.38, 0.059 +19810924, -0.40, 0.32, 0.19, -0.05, 0.00, 0.059 +19810925, -2.40, -1.11, 1.74, -0.25, 0.73, 0.059 +19810928, 1.93, -1.83, -1.56, 1.05, -1.22, 0.059 +19810929, 0.85, 1.54, -1.27, 0.01, -0.48, 0.059 +19810930, 0.26, 0.52, -0.33, -0.17, -0.19, 0.059 +19811001, 0.66, -0.03, -0.83, 0.45, -0.53, 0.054 +19811002, 1.97, -0.15, -0.99, 0.46, -0.83, 0.054 +19811005, 0.31, 0.56, -0.22, 0.02, -0.27, 0.054 +19811006, -0.14, 0.30, -0.94, 0.36, -0.60, 0.054 +19811007, 1.55, -0.03, -0.82, 0.06, -0.27, 0.054 +19811008, 0.88, 0.40, -0.66, 0.03, -0.16, 0.054 +19811009, -0.51, 0.61, 0.88, -0.24, 0.81, 0.054 +19811012, -0.21, 0.31, 0.28, -0.02, 0.21, 0.054 +19811013, -0.22, 0.47, -0.10, 0.13, -0.06, 0.054 +19811014, -1.58, 0.41, 1.01, -0.14, 0.66, 0.054 +19811015, 0.55, -0.39, -0.17, 0.20, -0.42, 0.054 +19811016, -0.36, 0.35, 0.32, 0.05, 0.11, 0.054 +19811019, -0.21, -0.18, 0.27, 0.20, 0.25, 0.054 +19811020, 0.95, -0.40, -0.60, 0.29, -0.30, 0.054 +19811021, -0.12, 0.42, -0.47, 0.34, -0.36, 0.054 +19811022, -0.37, 0.11, -0.01, 0.29, -0.16, 0.054 +19811023, -0.80, 0.40, 0.09, 0.08, 0.02, 0.054 +19811026, -0.45, -0.09, -0.12, 0.47, -0.18, 0.054 +19811027, 0.94, -0.15, -0.50, 0.17, -0.17, 0.054 +19811028, 0.22, 0.25, -0.21, 0.08, -0.16, 0.054 +19811029, -0.38, 0.05, 0.03, 0.06, 0.01, 0.054 +19811030, 2.15, -1.17, -0.22, -0.22, -0.22, 0.054 +19811102, 1.89, -0.63, -1.36, 0.60, -0.93, 0.053 +19811103, 0.44, 0.15, -0.15, 0.05, -0.02, 0.053 +19811104, 0.13, 0.10, 0.09, -0.01, 0.13, 0.053 +19811105, -0.70, 0.60, 0.66, -0.22, 0.44, 0.053 +19811106, -0.51, 0.29, 0.48, -0.31, 0.25, 0.053 +19811109, 0.35, -0.54, 0.73, -0.07, 0.05, 0.053 +19811110, -0.40, 0.34, 0.62, -0.15, 0.34, 0.053 +19811111, 0.12, -0.21, 0.49, -0.44, 0.16, 0.053 +19811112, 0.21, 0.13, 0.52, -0.38, 0.28, 0.053 +19811113, -1.16, 0.65, 1.11, -0.40, 0.64, 0.053 +19811116, -1.31, -0.22, 1.08, 0.05, 0.51, 0.053 +19811117, 0.51, -0.68, 0.07, 0.20, -0.16, 0.053 +19811118, -0.45, 0.40, 0.41, -0.29, 0.45, 0.053 +19811119, 0.42, -0.48, -0.57, 0.52, -0.69, 0.053 +19811120, 0.87, -0.16, -0.51, 0.19, -0.33, 0.053 +19811123, -0.10, -0.01, -0.41, 0.35, -0.07, 0.053 +19811124, 1.21, -0.81, -0.16, 0.18, 0.05, 0.053 +19811125, 0.34, 0.13, -0.03, -0.18, 0.12, 0.053 +19811127, 0.70, -0.09, -0.39, -0.02, 0.07, 0.053 +19811130, 0.79, -0.38, -0.87, 0.48, -0.71, 0.053 +19811201, -0.23, 0.08, 0.09, -0.13, 0.59, 0.040 +19811202, -1.01, 0.64, 0.28, -0.13, 0.29, 0.040 +19811203, 0.31, -0.39, -0.18, 0.22, 0.07, 0.040 +19811204, 0.65, -0.20, -0.09, 0.07, 0.06, 0.040 +19811207, -0.78, 0.14, 0.41, 0.06, 0.17, 0.040 +19811208, -0.48, -0.38, 0.11, 0.03, 0.15, 0.040 +19811209, 0.46, -0.26, -0.50, -0.01, -0.30, 0.040 +19811210, 0.14, 0.15, -0.02, -0.12, 0.18, 0.040 +19811211, -0.57, 0.43, -0.03, 0.03, 0.02, 0.040 +19811214, -1.59, 0.19, 0.61, -0.01, 0.23, 0.040 +19811215, 0.04, 0.05, 0.02, -0.26, 0.12, 0.040 +19811216, -0.37, 0.38, -0.12, 0.05, -0.01, 0.040 +19811217, 0.40, -0.21, -0.65, 0.49, -0.19, 0.040 +19811218, 0.63, -0.11, -0.43, -0.01, -0.04, 0.040 +19811221, -0.47, 0.07, 0.37, 0.10, 0.05, 0.040 +19811222, -0.39, 0.09, 0.41, -0.01, 0.35, 0.040 +19811223, -0.40, 0.30, 0.21, -0.10, -0.01, 0.040 +19811224, 0.21, 0.00, -0.15, -0.19, 0.02, 0.040 +19811228, -0.27, -0.08, 0.27, 0.21, 0.09, 0.040 +19811229, -0.56, -0.04, 0.42, 0.00, 0.34, 0.040 +19811230, 0.34, -0.12, -0.12, 0.06, 0.13, 0.040 +19811231, 0.31, 0.44, -0.20, -0.16, 0.12, 0.040 +19820104, 0.16, -0.04, 0.59, -0.52, 0.36, 0.040 +19820105, -2.03, 0.68, 1.48, -0.65, 0.91, 0.040 +19820106, -0.81, -0.02, 0.73, -0.35, 0.51, 0.040 +19820107, -0.27, 0.26, 0.07, -0.29, 0.16, 0.040 +19820108, 0.46, -0.01, 0.08, -0.17, 0.03, 0.040 +19820111, -2.33, 0.43, 1.79, -0.20, 0.83, 0.040 +19820112, -0.55, -0.39, 0.12, -0.17, 0.14, 0.040 +19820113, -1.28, 0.40, 0.31, -0.12, 0.27, 0.040 +19820114, 0.48, -0.37, -0.39, 0.19, -0.41, 0.040 +19820115, 0.60, 0.06, -0.81, 0.13, -0.31, 0.040 +19820118, 0.58, -0.59, -0.52, 0.32, -0.39, 0.040 +19820119, -0.95, 0.53, 0.79, -0.36, 0.68, 0.040 +19820120, -0.61, 0.26, 0.56, -0.28, 0.47, 0.040 +19820121, 0.30, -0.28, 0.02, 0.15, 0.12, 0.040 +19820122, -0.38, 0.07, 0.64, -0.19, 0.27, 0.040 +19820125, -0.40, -0.97, 0.31, 0.00, 0.12, 0.040 +19820126, -0.17, -0.02, 0.09, 0.13, 0.04, 0.040 +19820127, 0.35, -0.44, -0.24, 0.20, -0.17, 0.040 +19820128, 2.53, -0.81, -1.75, 0.49, -1.17, 0.040 +19820129, 1.12, -0.02, -0.73, 0.23, -0.36, 0.040 +19820201, -1.79, 0.95, 0.80, -0.27, 0.80, 0.048 +19820202, 0.27, -0.04, -0.16, -0.18, 0.14, 0.048 +19820203, -0.93, 0.77, 0.55, -0.51, 0.74, 0.048 +19820204, -0.20, -0.05, 0.22, -0.11, 0.22, 0.048 +19820205, 0.76, -0.12, -0.09, -0.09, 0.07, 0.048 +19820208, -2.16, 0.30, 1.60, -0.28, 0.70, 0.048 +19820209, -0.94, -0.39, 0.94, -0.25, 0.68, 0.048 +19820210, 0.61, -0.47, -0.12, -0.07, -0.10, 0.048 +19820211, -0.14, -0.20, 0.44, 0.08, 0.33, 0.048 +19820212, -0.07, 0.18, -0.10, -0.01, 0.01, 0.048 +19820216, -0.46, -0.30, 0.11, 0.14, 0.18, 0.048 +19820217, -0.19, 0.42, -0.38, 0.08, -0.11, 0.048 +19820218, 0.06, -0.14, -0.43, -0.02, -0.02, 0.048 +19820219, -0.47, 0.02, 0.45, -0.22, 0.13, 0.048 +19820222, -1.25, 0.46, 1.63, -0.82, 0.75, 0.048 +19820223, -0.22, -0.67, 1.00, -0.52, 0.43, 0.048 +19820224, 1.40, -0.97, -0.27, -0.15, -0.50, 0.048 +19820225, -0.04, 0.61, -0.28, -0.16, 0.12, 0.048 +19820226, -0.16, 0.03, 0.43, -0.28, 0.22, 0.048 +19820301, 0.24, -0.07, 0.32, -0.40, 0.45, 0.042 +19820302, -0.38, 0.36, 1.13, -0.43, 0.69, 0.042 +19820303, -1.52, -0.02, 2.00, -0.89, 1.17, 0.042 +19820304, -1.08, -0.05, 1.44, -0.35, 0.42, 0.042 +19820305, -0.69, -0.52, 1.70, -0.49, 0.76, 0.042 +19820308, -1.61, -0.08, 2.10, -0.52, 0.90, 0.042 +19820309, 0.70, -1.39, -0.60, 0.28, -0.34, 0.042 +19820310, 0.50, 0.16, -0.49, 0.32, -0.52, 0.042 +19820311, -0.12, -0.04, 0.27, 0.03, 0.00, 0.042 +19820312, -0.80, 0.04, 0.57, -0.14, 0.21, 0.042 +19820315, 0.49, -0.67, -1.00, 0.56, -0.51, 0.042 +19820316, -0.06, 0.39, -0.26, 0.08, -0.01, 0.042 +19820317, -0.15, 0.16, -0.11, -0.14, 0.09, 0.042 +19820318, 1.12, -0.07, -0.97, 0.32, -0.77, 0.042 +19820319, 0.30, 0.43, -0.35, -0.02, -0.29, 0.042 +19820322, 1.88, -0.39, -1.66, 0.54, -0.66, 0.042 +19820323, 0.59, -0.01, -0.56, 0.27, -0.10, 0.042 +19820324, -0.45, 0.51, 0.19, -0.14, 0.46, 0.042 +19820325, 0.31, 0.37, -0.35, -0.02, 0.01, 0.042 +19820326, -0.89, 0.58, 0.34, -0.16, 0.38, 0.042 +19820329, 0.12, 0.03, -0.23, 0.02, -0.20, 0.042 +19820330, 0.01, 0.06, 0.01, 0.05, 0.05, 0.042 +19820331, -0.22, 0.19, 0.08, -0.05, 0.10, 0.042 +19820401, 1.37, -0.52, -1.02, 0.21, -0.28, 0.053 +19820402, 1.06, -0.35, -1.14, 0.68, -0.74, 0.053 +19820405, -0.31, 0.34, -0.15, 0.12, 0.09, 0.053 +19820406, 0.48, -0.22, -0.11, 0.24, -0.24, 0.053 +19820407, 0.15, 0.27, -0.24, 0.24, -0.30, 0.053 +19820408, 0.59, -0.11, -0.33, 0.22, 0.08, 0.053 +19820412, -0.22, 0.16, 0.17, -0.05, 0.30, 0.053 +19820413, -0.04, 0.16, 0.23, -0.21, 0.33, 0.053 +19820414, -0.17, 0.03, 0.25, 0.04, 0.07, 0.053 +19820415, 0.39, -0.03, -0.50, 0.37, -0.18, 0.053 +19820416, 0.45, -0.04, -0.31, 0.02, -0.30, 0.053 +19820419, -0.09, 0.21, 0.52, -0.20, 0.35, 0.053 +19820420, -0.94, 0.61, 0.68, -0.42, 0.64, 0.053 +19820421, 0.22, 0.00, 0.22, -0.23, 0.32, 0.053 +19820422, 1.01, -0.49, -0.57, 0.14, -0.68, 0.053 +19820423, 1.04, -0.39, -0.79, 0.48, -0.44, 0.053 +19820426, 0.42, -0.04, -0.48, 0.12, 0.11, 0.053 +19820427, -0.91, 0.43, 0.35, 0.01, 0.34, 0.053 +19820428, -0.61, 0.61, -0.05, 0.01, 0.11, 0.053 +19820429, -0.90, 0.49, 0.42, -0.34, 0.41, 0.053 +19820430, 0.17, -0.02, -0.18, -0.01, -0.09, 0.053 +19820503, 0.27, -0.32, 0.05, -0.07, -0.06, 0.053 +19820504, 0.59, -0.06, -0.19, 0.30, -0.32, 0.053 +19820505, 0.12, -0.20, 0.12, 0.24, -0.12, 0.053 +19820506, 0.83, -0.08, -0.13, 0.13, -0.25, 0.053 +19820507, 0.69, -0.29, -0.19, 0.25, -0.49, 0.053 +19820510, -0.75, 0.36, 0.11, 0.13, 0.11, 0.053 +19820511, 0.79, -0.34, -0.46, 0.23, -0.41, 0.053 +19820512, -0.31, 0.13, 0.24, -0.40, 0.30, 0.053 +19820513, -0.62, 0.47, 0.03, 0.07, 0.19, 0.053 +19820514, -0.13, 0.26, -0.06, 0.13, -0.03, 0.053 +19820517, -1.07, 0.31, 0.45, 0.07, 0.44, 0.053 +19820518, -0.82, 0.02, 0.32, -0.19, 0.23, 0.053 +19820519, -0.76, 0.20, 0.40, -0.03, 0.23, 0.053 +19820520, -0.44, -0.31, 0.32, 0.08, 0.03, 0.053 +19820521, 0.16, -0.34, 0.19, -0.17, 0.12, 0.053 +19820524, -0.08, -0.40, -0.18, 0.02, -0.20, 0.053 +19820525, -0.30, 0.15, 0.19, 0.16, 0.20, 0.053 +19820526, -1.26, 0.00, 0.60, -0.21, 0.43, 0.053 +19820527, -0.47, 0.05, -0.01, 0.20, -0.28, 0.053 +19820528, -0.38, 0.76, 0.01, 0.03, -0.09, 0.053 +19820601, -0.39, -0.24, -0.16, 0.12, -0.48, 0.043 +19820602, 0.31, -0.07, -0.05, -0.16, -0.42, 0.043 +19820603, -0.22, 0.01, 0.36, -0.10, 0.10, 0.043 +19820604, -1.52, 0.42, 0.81, -0.39, 0.62, 0.043 +19820607, -0.14, -0.49, 0.05, 0.10, -0.09, 0.043 +19820608, -0.44, 0.01, 0.23, 0.01, -0.03, 0.043 +19820609, -0.69, -0.27, 0.25, 0.24, 0.25, 0.043 +19820610, 0.37, -0.15, -0.31, 0.14, -0.09, 0.043 +19820611, 1.52, -0.21, -0.43, 0.11, -0.01, 0.043 +19820614, -1.14, 0.40, 0.72, -0.06, 0.44, 0.043 +19820615, -0.37, -0.09, 0.26, -0.03, 0.34, 0.043 +19820616, -0.56, 0.50, 0.30, -0.39, 0.59, 0.043 +19820617, -1.05, 0.15, 0.71, -0.33, 0.56, 0.043 +19820618, -0.55, -0.11, 0.19, -0.12, 0.02, 0.043 +19820621, -0.07, 0.17, -0.17, 0.30, 0.17, 0.043 +19820622, 0.76, -0.48, -0.73, 0.35, -0.17, 0.043 +19820623, 1.52, -0.58, -1.19, 0.40, -0.61, 0.043 +19820624, -0.19, 0.38, 0.21, -0.02, 0.49, 0.043 +19820625, -0.58, 0.31, 0.04, -0.04, 0.17, 0.043 +19820628, 0.74, -0.53, -0.61, 0.42, -0.24, 0.043 +19820629, 0.01, -0.26, 0.61, -0.21, 0.65, 0.043 +19820630, -0.39, 0.73, 0.69, -0.28, 0.27, 0.043 +19820701, -0.79, 0.33, 0.54, -0.17, 0.41, 0.050 +19820702, -0.75, 0.56, 0.45, -0.27, 0.21, 0.050 +19820706, -0.43, 0.04, 0.16, 0.21, 0.39, 0.050 +19820707, -0.21, -0.04, 0.13, -0.02, 0.15, 0.050 +19820708, 0.03, -0.69, -0.12, 0.13, -0.08, 0.050 +19820709, 1.08, -0.15, -0.38, -0.11, -0.01, 0.050 +19820712, 0.67, -0.05, 0.15, -0.26, 0.56, 0.050 +19820713, -0.12, 0.21, -0.31, 0.56, -0.11, 0.050 +19820714, 0.60, -0.75, -0.59, 1.15, -0.42, 0.050 +19820715, 0.04, 0.15, -0.14, 0.30, -0.10, 0.050 +19820716, 0.43, -0.27, -0.49, 0.09, -0.47, 0.050 +19820719, -0.25, 0.31, 0.24, -0.18, 0.17, 0.050 +19820720, 0.53, -0.29, -0.06, -0.18, 0.09, 0.050 +19820721, 0.00, 0.30, -0.22, -0.02, 0.06, 0.050 +19820722, 0.03, 0.24, -0.02, -0.25, 0.04, 0.050 +19820723, -0.33, 0.37, 0.17, 0.00, -0.18, 0.050 +19820726, -0.70, 0.26, 0.03, 0.15, -0.02, 0.050 +19820727, -0.80, 0.44, 0.07, -0.08, 0.23, 0.050 +19820728, -1.55, 0.17, 0.61, -0.06, 0.37, 0.050 +19820729, -0.16, -0.49, -0.24, 0.28, 0.05, 0.050 +19820730, -0.45, 0.34, 0.15, -0.21, 0.15, 0.050 +19820802, 1.56, -1.04, -0.01, -0.09, 0.02, 0.035 +19820803, -0.83, 0.63, 0.46, -0.51, 0.48, 0.035 +19820804, -1.46, 0.54, 0.86, -0.41, 0.56, 0.035 +19820805, -0.81, -0.04, 0.64, -0.18, 0.03, 0.035 +19820806, -1.20, 0.39, 0.91, -0.26, 0.31, 0.035 +19820809, -0.79, -0.94, 0.44, 0.14, 0.36, 0.035 +19820810, -0.17, -0.02, 0.21, -0.04, 0.32, 0.035 +19820811, -0.33, -0.20, 0.63, -0.15, 0.07, 0.035 +19820812, -0.30, -0.21, 0.64, -0.22, 0.19, 0.035 +19820813, 1.09, -1.28, 0.75, -0.30, 0.33, 0.035 +19820816, 0.41, 0.23, 0.48, -0.47, 0.26, 0.035 +19820817, 4.09, -2.36, 0.15, -0.53, 0.15, 0.035 +19820818, 0.12, 1.49, -0.40, -0.14, -0.19, 0.035 +19820819, 0.21, -0.41, 0.16, -0.36, 0.21, 0.035 +19820820, 3.08, -1.70, -0.44, -0.19, -0.37, 0.035 +19820823, 2.59, -1.02, -0.68, 0.29, -0.47, 0.035 +19820824, -0.25, 1.16, -0.62, 0.45, -0.33, 0.035 +19820825, 2.00, -0.20, -0.94, 0.33, -1.41, 0.035 +19820826, 1.07, 0.68, -1.13, 0.30, -0.27, 0.035 +19820827, -1.07, 0.92, -0.46, 0.33, -0.16, 0.035 +19820830, 0.36, -0.32, -0.41, 0.08, 0.09, 0.035 +19820831, 1.43, -0.42, -0.24, 0.26, -0.03, 0.035 +19820901, -0.88, 0.53, 0.53, -0.04, 0.53, 0.024 +19820902, 1.56, -0.38, -0.70, -0.09, -0.12, 0.024 +19820903, 1.80, -0.89, -0.60, 0.31, -0.67, 0.024 +19820907, -0.96, 0.69, 0.38, 0.05, 0.26, 0.024 +19820908, 0.67, -0.01, -0.36, 0.52, -0.40, 0.024 +19820909, 0.01, 0.59, 0.03, -0.08, -0.03, 0.024 +19820910, -0.73, 0.48, 0.29, 0.12, 0.01, 0.024 +19820913, 0.81, -0.73, -0.23, 0.26, -0.09, 0.024 +19820914, 0.81, -0.03, -0.28, 0.14, -0.20, 0.024 +19820915, 0.80, -0.27, -0.22, 0.23, 0.13, 0.024 +19820916, -0.15, 0.54, -0.21, 0.21, -0.06, 0.024 +19820917, -0.93, 0.59, 0.12, 0.00, 0.17, 0.024 +19820920, -0.11, -0.32, 0.13, 0.31, 0.06, 0.024 +19820921, 1.68, -0.67, -0.35, 0.07, -0.46, 0.024 +19820922, -0.46, 0.71, 0.47, -0.15, 0.20, 0.024 +19820923, -0.19, -0.09, -0.02, 0.23, 0.00, 0.024 +19820924, -0.28, 0.47, -0.19, 0.06, -0.25, 0.024 +19820927, 0.18, -0.23, 0.09, 0.10, 0.02, 0.024 +19820928, -0.20, 0.42, 0.15, 0.03, 0.22, 0.024 +19820929, -1.23, 0.51, 0.65, 0.03, 0.25, 0.024 +19820930, -0.85, 0.50, 0.52, -0.21, 0.30, 0.024 +19821001, 1.10, -0.64, 0.01, -0.29, 0.13, 0.028 +19821004, -0.29, -0.01, -0.02, 0.46, 0.11, 0.028 +19821005, 0.42, 0.06, -0.23, 0.27, -0.13, 0.028 +19821006, 2.92, -1.32, -0.97, 0.57, -0.23, 0.028 +19821007, 2.05, -0.48, -0.38, -0.03, -0.16, 0.028 +19821008, 1.74, -0.45, 0.26, -0.27, -0.36, 0.028 +19821011, 2.24, -0.61, 0.11, 0.11, 0.10, 0.028 +19821012, -0.10, 0.18, -0.12, 0.33, -0.30, 0.028 +19821013, 1.80, 0.17, -1.09, 0.34, -0.80, 0.028 +19821014, -1.28, 1.41, 0.23, -0.15, -0.06, 0.028 +19821015, -0.60, 0.68, 0.10, -0.26, 0.18, 0.028 +19821018, 2.03, -0.91, -0.65, 0.06, 0.11, 0.028 +19821019, -0.01, 0.17, 0.30, -0.03, 0.36, 0.028 +19821020, 1.87, -0.55, -0.55, 0.08, -0.09, 0.028 +19821021, 0.00, 0.68, -0.77, 0.12, -0.18, 0.028 +19821022, 0.04, 1.17, -0.18, -0.33, 0.10, 0.028 +19821025, -3.62, 1.47, 0.56, -0.28, 0.44, 0.028 +19821026, 0.55, -1.42, -0.11, 0.50, 0.13, 0.028 +19821027, 0.77, 0.82, -0.30, -0.22, -0.23, 0.028 +19821028, -1.02, 1.13, 0.30, -0.21, 0.05, 0.028 +19821029, 0.26, 0.06, 0.20, -0.57, 0.53, 0.028 +19821101, 1.15, -0.51, -0.32, 0.02, -0.14, 0.030 +19821102, 1.53, 0.05, -0.03, 0.08, 0.24, 0.030 +19821103, 3.56, -1.20, -0.55, 0.02, -0.32, 0.030 +19821104, -0.36, 0.99, -0.06, 0.13, -0.08, 0.030 +19821105, 0.48, 0.49, -0.04, -0.21, -0.29, 0.030 +19821108, -0.96, 1.05, -0.04, -0.03, -0.07, 0.030 +19821109, 1.64, 0.05, -0.47, -0.15, -0.32, 0.030 +19821110, -1.05, 1.05, -0.04, -0.16, 0.13, 0.030 +19821111, 0.44, -0.02, -0.26, -0.21, -0.11, 0.030 +19821112, -0.98, 1.50, 0.39, -0.70, 0.39, 0.030 +19821115, -1.75, 0.36, 0.83, -0.03, 0.33, 0.030 +19821116, -1.38, -0.50, 0.74, -0.01, 0.59, 0.030 +19821117, 1.67, -0.48, -0.47, 0.34, -0.08, 0.030 +19821118, 0.44, 0.33, -0.35, -0.16, 0.06, 0.030 +19821119, -0.67, 0.88, 0.04, -0.05, 0.19, 0.030 +19821122, -1.96, 0.72, 0.79, -0.38, 0.43, 0.030 +19821123, -0.80, 0.42, 0.01, 0.06, 0.07, 0.030 +19821124, 0.72, -0.09, -0.24, 0.33, -0.17, 0.030 +19821126, 0.71, 0.08, -0.55, -0.12, -0.17, 0.030 +19821129, -0.48, 0.30, -0.01, -0.14, 0.21, 0.030 +19821130, 2.81, -1.35, -1.33, 0.52, -0.72, 0.030 +19821201, 0.34, 0.94, -0.62, 0.43, 0.04, 0.031 +19821202, 0.01, 0.08, 0.01, 0.15, -0.08, 0.031 +19821203, -0.08, 0.15, 0.01, -0.05, 0.01, 0.031 +19821206, 1.80, -1.09, -0.97, 0.66, -0.28, 0.031 +19821207, 0.60, 0.26, -0.50, 0.43, -0.10, 0.031 +19821208, -0.44, 0.93, -0.05, 0.07, -0.29, 0.031 +19821209, -1.18, 0.28, 0.56, 0.31, 0.01, 0.031 +19821210, -0.59, -0.50, 0.37, 0.55, -0.32, 0.031 +19821213, 0.16, -0.53, 0.37, -0.20, 0.42, 0.031 +19821214, -1.58, 0.49, 1.44, -1.03, 0.99, 0.031 +19821215, -1.69, -0.54, 0.83, -0.30, 0.51, 0.031 +19821216, -0.14, -0.33, -0.31, 0.09, -0.18, 0.031 +19821217, 1.45, -0.29, -1.10, -0.02, -0.35, 0.031 +19821220, -0.81, 0.43, 0.22, 0.13, 0.26, 0.031 +19821221, 1.36, -0.96, -0.27, -0.10, 0.15, 0.031 +19821222, 0.24, 0.33, -0.36, -0.33, -0.10, 0.031 +19821223, 0.58, -0.09, 0.02, -0.15, -0.20, 0.031 +19821227, 1.43, -0.92, 0.12, -0.09, 0.06, 0.031 +19821228, -0.80, 0.50, 0.45, -0.18, 0.31, 0.031 +19821229, 0.30, -0.17, -0.12, 0.04, -0.15, 0.031 +19821230, -0.58, 0.49, 0.16, -0.14, 0.20, 0.031 +19821231, 0.31, 0.40, -0.39, -0.24, 0.06, 0.031 +19830103, -1.45, 0.81, 1.02, -0.19, 0.33, 0.033 +19830104, 1.67, -1.21, -0.18, 0.17, -0.38, 0.033 +19830105, 0.50, 0.32, 0.19, -0.22, -0.08, 0.033 +19830106, 2.28, -0.48, -0.50, -0.27, -0.34, 0.033 +19830107, 0.08, 0.71, 0.08, -0.16, 0.25, 0.033 +19830110, 1.12, 0.05, -0.53, -0.34, 0.12, 0.033 +19830111, -0.55, 0.57, 0.20, -0.28, 0.11, 0.033 +19830112, 0.62, 0.11, -0.07, -0.10, 0.03, 0.033 +19830113, -0.49, 0.45, 0.04, -0.12, -0.12, 0.033 +19830114, 0.61, 0.50, -0.12, -0.20, -0.03, 0.033 +19830117, 0.19, 0.57, -0.39, -0.09, -0.08, 0.033 +19830118, -0.14, 0.23, -0.16, 0.35, -0.02, 0.033 +19830119, -0.75, 0.08, 0.03, 0.08, -0.31, 0.033 +19830120, 0.47, -0.33, 0.07, 0.65, -0.53, 0.033 +19830121, -1.52, 0.50, 0.52, -0.14, 0.08, 0.033 +19830124, -2.75, -0.33, 0.86, 0.10, 0.83, 0.033 +19830125, 1.14, -0.35, -0.19, -0.41, 0.21, 0.033 +19830126, 0.05, 0.88, -0.47, -0.03, -0.26, 0.033 +19830127, 1.76, -0.38, -0.69, -0.18, -0.30, 0.033 +19830128, 0.22, 0.50, -0.23, 0.05, -0.06, 0.033 +19830131, 0.57, -0.08, -0.27, -0.11, 0.13, 0.033 +19830201, -1.15, 0.97, 0.64, -0.31, 0.41, 0.032 +19830202, 0.01, -0.04, 0.40, -0.23, 0.13, 0.032 +19830203, 0.72, -0.10, 0.27, 0.19, -0.23, 0.032 +19830204, 1.27, -0.27, -0.62, 0.21, -0.39, 0.032 +19830207, 0.51, 0.04, 0.33, -0.23, 0.30, 0.032 +19830208, -0.71, 0.54, 0.30, 0.01, 0.19, 0.032 +19830209, -0.36, 0.73, -0.09, 0.06, -0.28, 0.032 +19830210, 1.50, -0.33, -0.53, 0.06, -0.18, 0.032 +19830211, 0.15, 0.28, -0.40, -0.05, -0.08, 0.032 +19830214, 0.87, -0.15, -0.88, 0.49, -0.29, 0.032 +19830215, -0.20, 0.50, -0.40, 0.19, -0.03, 0.032 +19830216, -0.52, 0.57, 0.32, -0.21, 0.14, 0.032 +19830217, -0.06, -0.09, 0.08, -0.14, 0.25, 0.032 +19830218, 0.42, 0.24, -0.03, -0.16, 0.05, 0.032 +19830222, -1.33, 0.53, 0.68, -0.63, 0.54, 0.032 +19830223, 0.76, -0.45, -0.07, 0.21, -0.27, 0.032 +19830224, 1.64, -0.82, -0.44, 0.27, -0.13, 0.032 +19830225, 0.09, -0.08, 0.51, 0.04, 0.17, 0.032 +19830228, -0.99, 0.61, 0.44, -0.22, 0.62, 0.032 +19830301, 1.54, -1.16, 0.52, -0.29, 0.47, 0.027 +19830302, 0.86, -0.19, -0.13, 0.28, 0.34, 0.027 +19830303, 0.74, 0.05, 0.18, 0.05, 0.23, 0.027 +19830304, 0.18, 0.07, 0.39, -0.28, 0.41, 0.027 +19830307, 0.01, 0.33, 0.18, -0.10, 0.17, 0.027 +19830308, -1.35, 0.69, 0.72, -0.24, 0.29, 0.027 +19830309, 0.89, -0.21, -0.40, 0.15, -0.21, 0.027 +19830310, -0.50, 0.92, 0.12, -0.28, 0.01, 0.027 +19830311, -0.34, 0.20, 0.16, 0.06, -0.04, 0.027 +19830314, -0.43, -0.17, 0.37, 0.04, 0.09, 0.027 +19830315, 0.20, -0.45, 0.22, -0.15, 0.22, 0.027 +19830316, -0.76, 0.78, 0.48, -0.64, 0.61, 0.027 +19830317, -0.21, -0.18, 0.23, -0.24, 0.26, 0.027 +19830318, 0.21, 0.17, -0.23, -0.15, 0.23, 0.027 +19830321, 0.68, -0.33, -0.10, 0.34, -0.19, 0.027 +19830322, -0.20, 0.59, -0.06, -0.35, -0.02, 0.027 +19830323, 1.23, -0.43, -0.24, 0.09, 0.34, 0.027 +19830324, 0.39, 0.21, 0.10, -0.05, 0.36, 0.027 +19830325, -0.28, 0.42, -0.19, 0.08, 0.06, 0.027 +19830328, -0.58, 0.11, 0.11, 0.46, 0.04, 0.027 +19830329, -0.17, 0.05, -0.15, 0.22, -0.06, 0.027 +19830330, 0.96, -0.47, -0.34, 0.35, -0.35, 0.027 +19830331, -0.21, 0.36, 0.07, 0.54, -0.59, 0.027 +19830404, -0.07, -0.47, 0.31, 0.44, 0.02, 0.036 +19830405, -0.59, 0.62, 0.14, -0.09, 0.36, 0.036 +19830406, -0.67, -0.22, 0.68, -0.28, 0.27, 0.036 +19830407, 0.33, -0.24, 0.30, -0.14, -0.02, 0.036 +19830408, 0.58, -0.10, 0.07, 0.31, -0.08, 0.036 +19830411, 1.28, -0.43, -0.44, 0.16, -0.15, 0.036 +19830412, 0.44, 0.13, -0.14, 0.14, -0.21, 0.036 +19830413, 0.70, 0.24, -0.19, -0.13, 0.04, 0.036 +19830414, 0.83, 0.25, -0.24, -0.10, 0.44, 0.036 +19830415, 0.50, 0.22, -0.05, -0.40, -0.30, 0.036 +19830418, 0.60, 0.03, -0.02, -0.16, 0.37, 0.036 +19830419, -0.62, 0.38, 0.04, -0.04, 0.07, 0.036 +19830420, 1.12, -0.22, -0.21, -0.07, 0.22, 0.036 +19830421, -0.24, 0.53, 0.20, -0.21, 0.02, 0.036 +19830422, 0.22, 0.26, 0.01, -0.01, 0.20, 0.036 +19830425, -0.93, 0.26, 0.40, -0.03, 0.19, 0.036 +19830426, 1.48, -0.89, -0.02, 0.15, -0.13, 0.036 +19830427, -0.11, 0.24, -0.02, 0.04, -0.02, 0.036 +19830428, 0.87, -0.18, -0.05, 0.19, 0.22, 0.036 +19830429, 0.75, 0.05, -0.28, 0.06, -0.06, 0.036 +19830502, -1.25, 0.68, 0.29, 0.02, 0.21, 0.033 +19830503, 0.01, -0.14, 0.12, -0.10, -0.17, 0.033 +19830504, 0.83, 0.28, -0.13, -0.31, -0.28, 0.033 +19830505, 0.83, 0.48, -0.22, -0.64, 0.05, 0.033 +19830506, 1.15, 0.32, -0.28, -0.28, 0.15, 0.033 +19830509, 0.01, 0.52, -0.15, -0.19, 0.26, 0.033 +19830510, 0.22, 0.68, 0.07, -0.32, 0.17, 0.033 +19830511, -0.57, 0.24, 0.37, 0.26, -0.24, 0.033 +19830512, -0.36, 0.27, -0.07, 0.03, -0.20, 0.033 +19830513, 0.44, 0.42, -0.22, -0.24, -0.31, 0.033 +19830516, -0.98, -0.31, 0.07, 0.35, -0.13, 0.033 +19830517, 0.34, 0.25, -0.07, -0.13, 0.04, 0.033 +19830518, 0.01, 0.72, -0.40, -0.19, -0.28, 0.033 +19830519, -0.67, 0.22, -0.10, 0.15, -0.14, 0.033 +19830520, -0.02, 0.01, -0.13, -0.12, -0.08, 0.033 +19830523, 0.69, -0.72, -0.36, 0.21, -0.20, 0.033 +19830524, 1.24, 0.12, -0.21, -0.23, 0.00, 0.033 +19830525, 0.49, 0.26, -0.10, -0.02, -0.10, 0.033 +19830526, -0.22, 0.68, -0.05, -0.03, -0.14, 0.033 +19830527, -0.40, 0.75, 0.02, -0.02, -0.03, 0.033 +19830531, -1.20, 0.30, 0.27, 0.04, -0.04, 0.033 +19830601, 0.01, -0.27, -0.27, 0.24, 0.18, 0.030 +19830602, 0.78, 0.03, -0.44, 0.14, -0.10, 0.030 +19830603, 0.41, 0.55, -0.52, -0.27, 0.11, 0.030 +19830606, 0.32, 0.14, -0.38, 0.33, 0.00, 0.030 +19830607, -0.94, 0.86, -0.03, -0.02, 0.10, 0.030 +19830608, -0.84, 0.04, -0.19, 0.14, 0.08, 0.030 +19830609, 0.23, 0.03, -0.02, -0.06, 0.01, 0.030 +19830610, 0.65, 0.36, -0.04, 0.01, -0.02, 0.030 +19830613, 1.16, -0.15, -0.13, 0.15, -0.24, 0.030 +19830614, 0.41, 0.23, -0.17, 0.14, -0.12, 0.030 +19830615, 0.87, -0.12, -0.41, 0.41, -0.39, 0.030 +19830616, 1.05, -0.06, -0.41, 0.46, -0.21, 0.030 +19830617, -0.03, 0.12, -0.12, 0.53, -0.11, 0.030 +19830620, -0.13, 0.04, -0.04, 0.29, -0.07, 0.030 +19830621, 0.69, -0.32, -0.38, 0.32, -0.30, 0.030 +19830622, 0.24, 0.09, -0.23, -0.46, -0.22, 0.030 +19830623, -0.22, 0.12, -0.40, 0.38, -0.08, 0.030 +19830624, 0.16, 0.23, -0.31, -0.24, 0.11, 0.030 +19830627, -1.17, -0.15, 0.48, 0.33, 0.26, 0.030 +19830628, -1.85, -0.52, 0.81, 0.12, 0.40, 0.030 +19830629, 0.42, -0.38, -0.39, -0.18, -0.14, 0.030 +19830630, 0.83, 0.21, -0.20, -0.30, -0.05, 0.030 +19830701, 0.56, 0.24, -0.13, 0.04, -0.16, 0.037 +19830705, -1.34, 0.34, 0.82, 0.37, 0.09, 0.037 +19830706, 0.94, -0.15, 0.17, 0.10, 0.03, 0.037 +19830707, -0.43, 0.61, -0.08, -0.16, 0.06, 0.037 +19830708, -0.24, 0.09, 0.14, -0.01, 0.00, 0.037 +19830711, 0.45, -0.26, 0.05, 0.07, 0.09, 0.037 +19830712, -1.42, 0.39, 0.57, 0.23, -0.18, 0.037 +19830713, -0.25, -0.38, 0.76, -0.07, 0.21, 0.037 +19830714, 0.28, 0.01, 0.07, -0.05, 0.10, 0.037 +19830715, -1.01, 0.39, 0.51, -0.01, 0.07, 0.037 +19830718, -0.44, -0.52, 0.43, 0.18, 0.13, 0.037 +19830719, 0.45, -0.17, -0.02, -0.16, 0.11, 0.037 +19830720, 2.35, -1.08, -0.71, -0.28, -0.05, 0.037 +19830721, 0.08, 0.53, -0.55, -0.24, 0.02, 0.037 +19830722, -0.03, 0.45, -0.14, -0.07, 0.11, 0.037 +19830725, 0.30, -0.26, 0.10, -0.15, 0.34, 0.037 +19830726, 0.32, 0.08, 0.42, -0.27, 0.56, 0.037 +19830727, -1.57, 0.29, 1.49, 0.13, 0.76, 0.037 +19830728, -1.61, 0.51, 1.27, 0.24, 0.56, 0.037 +19830729, -1.45, -0.16, 0.50, 0.03, 0.06, 0.037 +19830801, -0.52, -0.73, 0.26, 0.15, 0.05, 0.033 +19830802, -0.05, -0.18, 0.03, 0.17, -0.13, 0.033 +19830803, 0.51, -0.72, 0.58, 0.06, 0.02, 0.033 +19830804, -1.20, 0.04, 0.57, 0.25, 0.22, 0.033 +19830805, 0.26, 0.01, -0.08, 0.07, -0.01, 0.033 +19830808, -1.54, 0.11, 0.88, 0.21, 0.36, 0.033 +19830809, 0.31, -1.05, 0.45, -0.06, -0.03, 0.033 +19830810, 0.79, -0.23, -0.15, 0.05, 0.16, 0.033 +19830811, 0.10, 0.23, -0.24, 0.14, -0.23, 0.033 +19830812, 0.55, -0.02, 0.02, -0.08, -0.02, 0.033 +19830815, 0.83, -0.21, -0.38, 0.21, -0.03, 0.033 +19830816, -0.35, -0.10, 0.71, 0.24, 0.26, 0.033 +19830817, 0.91, -0.57, 0.71, -0.21, 0.23, 0.033 +19830818, -0.78, 0.74, 0.25, 0.09, -0.09, 0.033 +19830819, 0.12, -0.17, 0.29, 0.13, 0.26, 0.033 +19830822, 0.04, -0.11, 0.69, -0.10, 0.43, 0.033 +19830823, -1.01, 0.29, 0.98, -0.11, 0.33, 0.033 +19830824, -0.91, 0.10, 0.56, -0.26, -0.01, 0.033 +19830825, -0.32, -0.30, 0.27, 0.15, -0.05, 0.033 +19830826, 0.65, -0.61, -0.27, -0.29, 0.15, 0.033 +19830829, -0.05, -0.42, -0.07, 0.00, -0.03, 0.033 +19830830, 0.19, -0.03, -0.02, -0.20, 0.14, 0.033 +19830831, 1.01, -0.45, -0.51, -0.10, -0.07, 0.033 +19830901, -0.01, 0.32, -0.17, -0.01, -0.25, 0.036 +19830902, 0.60, -0.01, -0.55, -0.21, -0.24, 0.036 +19830906, 1.48, -0.49, -0.31, -0.15, 0.09, 0.036 +19830907, 0.05, 0.24, 0.42, 0.04, 0.19, 0.036 +19830908, -0.01, 0.34, -0.05, -0.05, 0.11, 0.036 +19830909, -0.16, 0.41, 0.44, -0.14, 0.41, 0.036 +19830912, -0.85, 0.59, 0.34, -0.16, 0.02, 0.036 +19830913, -0.58, -0.13, 0.45, 0.13, 0.02, 0.036 +19830914, 0.24, -0.22, 0.02, 0.01, 0.14, 0.036 +19830915, -0.45, 0.22, 0.35, -0.02, -0.17, 0.036 +19830916, 0.85, -0.67, -0.41, 0.11, -0.14, 0.036 +19830919, 1.00, -0.06, -0.36, 0.15, -0.25, 0.036 +19830920, 0.72, -0.52, -0.03, 0.01, -0.01, 0.036 +19830921, -0.39, 0.24, 0.18, 0.05, 0.00, 0.036 +19830922, 0.71, -0.50, -0.30, 0.13, 0.21, 0.036 +19830923, -0.15, 0.02, 0.18, 0.08, 0.24, 0.036 +19830926, 0.14, -0.04, -0.19, 0.13, 0.05, 0.036 +19830927, -0.89, 0.08, 0.35, 0.46, -0.09, 0.036 +19830928, -0.27, -0.05, 0.05, 0.20, 0.12, 0.036 +19830929, -0.40, 0.26, 0.41, 0.20, 0.10, 0.036 +19830930, -0.68, 0.20, 0.19, 0.22, 0.02, 0.036 +19831003, -0.29, -0.42, 0.22, 0.13, 0.01, 0.036 +19831004, 0.26, -0.35, -0.17, -0.45, 0.09, 0.036 +19831005, 0.67, -0.56, -0.21, -0.22, -0.02, 0.036 +19831006, 1.26, -0.97, -0.35, -0.01, 0.34, 0.036 +19831007, 0.28, 0.00, -0.60, 0.04, -0.21, 0.036 +19831010, 0.72, -0.66, 0.37, 0.06, 0.56, 0.036 +19831011, -1.16, 0.79, 0.30, 0.25, 0.05, 0.036 +19831012, -0.62, -0.11, 0.83, 0.32, 0.47, 0.036 +19831013, -0.06, -0.38, 0.37, -0.06, 0.26, 0.036 +19831014, 0.01, -0.08, 0.31, -0.35, 0.29, 0.036 +19831017, 0.10, -0.26, 0.33, -0.27, 0.40, 0.036 +19831018, -1.58, 0.25, 1.67, 0.21, 0.75, 0.036 +19831019, -0.83, -0.52, 0.35, -0.09, 0.19, 0.036 +19831020, 0.18, -0.03, 0.04, -0.23, 0.06, 0.036 +19831021, -0.71, 0.27, 0.45, -0.12, 0.09, 0.036 +19831024, -0.15, -0.86, 0.22, 0.06, 0.02, 0.036 +19831025, 0.26, -0.20, -0.10, -0.06, -0.07, 0.036 +19831026, -0.56, 0.29, -0.03, 0.17, -0.33, 0.036 +19831027, -0.33, -0.05, 0.17, 0.04, -0.31, 0.036 +19831028, -0.79, 0.29, 0.37, -0.13, 0.24, 0.036 +19831031, -0.10, -0.44, 0.71, -0.12, 0.20, 0.036 +19831101, -0.03, -0.60, 0.06, 0.39, -0.08, 0.033 +19831102, 0.77, -0.33, -0.33, 0.07, 0.00, 0.033 +19831103, -0.60, 0.68, 0.04, -0.06, -0.09, 0.033 +19831104, -0.58, 0.19, 0.41, -0.11, 0.29, 0.033 +19831107, -0.40, -0.13, 0.31, -0.15, 0.30, 0.033 +19831108, -0.23, -0.14, 0.10, 0.15, 0.06, 0.033 +19831109, 1.06, -0.81, -0.07, -0.14, 0.06, 0.033 +19831110, 0.34, 0.25, -0.53, 0.24, -0.01, 0.033 +19831111, 1.20, -0.10, -0.88, 0.11, -0.39, 0.033 +19831114, 0.38, 0.43, -0.92, 0.04, -0.35, 0.033 +19831115, -0.55, 0.70, -0.09, -0.05, -0.09, 0.033 +19831116, 0.39, -0.15, 0.14, -0.03, -0.19, 0.033 +19831117, 0.06, 0.35, 0.08, -0.25, 0.19, 0.033 +19831118, -0.39, 0.61, -0.28, -0.27, -0.22, 0.033 +19831121, 0.51, -0.18, -0.14, 0.00, 0.01, 0.033 +19831122, 0.39, -0.07, 0.75, -0.23, 0.22, 0.033 +19831123, 0.02, 0.21, 0.52, 0.15, 0.36, 0.033 +19831125, 0.20, 0.08, 0.17, 0.04, 0.07, 0.033 +19831128, -0.36, 0.19, 0.20, 0.17, 0.19, 0.033 +19831129, 0.69, -0.17, -0.19, -0.28, 0.47, 0.033 +19831130, -0.69, 0.78, 0.03, -0.28, -0.18, 0.033 +19831201, 0.03, -0.02, 0.26, 0.08, 0.25, 0.034 +19831202, -0.65, 0.26, 0.42, 0.05, 0.35, 0.034 +19831205, 0.00, -0.31, 0.36, -0.10, 0.55, 0.034 +19831206, -0.21, 0.12, -0.09, -0.02, 0.01, 0.034 +19831207, 0.21, -0.16, -0.14, -0.06, -0.06, 0.034 +19831208, -0.48, 0.04, 0.50, 0.12, 0.09, 0.034 +19831209, 0.00, 0.02, 0.08, 0.20, 0.26, 0.034 +19831212, 0.12, -0.30, 0.06, 0.37, 0.03, 0.034 +19831213, -0.39, 0.17, 0.28, -0.02, 0.10, 0.034 +19831214, -0.97, 0.34, 0.45, 0.22, -0.02, 0.034 +19831215, -0.86, 0.52, 0.20, 0.21, -0.10, 0.034 +19831216, 0.30, -0.36, -0.41, -0.02, -0.05, 0.034 +19831219, -0.05, -0.24, -0.09, -0.06, 0.05, 0.034 +19831220, -0.25, -0.09, 0.10, -0.05, -0.16, 0.034 +19831221, 0.72, -0.56, -0.18, 0.00, 0.02, 0.034 +19831222, -0.19, 0.35, -0.25, 0.36, -0.02, 0.034 +19831223, -0.03, 0.05, -0.08, -0.05, -0.20, 0.034 +19831227, 0.64, -0.68, 0.03, 0.10, 0.20, 0.034 +19831228, 0.21, -0.42, 0.67, 0.44, 0.20, 0.034 +19831229, -0.16, 0.30, -0.21, -0.06, -0.09, 0.034 +19831230, 0.20, 0.48, -0.27, -0.17, -0.18, 0.034 +19840103, -0.47, 0.53, 0.10, -0.02, -0.10, 0.036 +19840104, 1.46, -0.64, -0.06, -0.37, -0.06, 0.036 +19840105, 1.26, -0.15, -0.38, -0.59, 0.04, 0.036 +19840106, 0.42, 0.47, 0.06, -0.44, 0.07, 0.036 +19840109, -0.22, 0.33, 0.47, 0.00, 0.11, 0.036 +19840110, -0.39, 0.47, 0.32, -0.01, 0.27, 0.036 +19840111, -0.11, 0.11, 0.23, -0.11, 0.28, 0.036 +19840112, -0.06, 0.26, 0.52, -0.08, 0.44, 0.036 +19840113, -0.37, 0.22, 0.48, -0.18, 0.01, 0.036 +19840116, -0.02, -0.02, -0.15, 0.48, 0.07, 0.036 +19840117, 0.29, -0.20, -0.01, -0.18, -0.07, 0.036 +19840118, -0.17, 0.26, 0.19, 0.12, 0.05, 0.036 +19840119, -0.34, 0.17, 0.34, -0.02, 0.09, 0.036 +19840120, -0.62, 0.17, 0.49, 0.13, 0.16, 0.036 +19840123, -0.93, -0.23, 1.06, 0.02, 0.23, 0.036 +19840124, 0.33, -0.59, 0.64, 0.18, 0.26, 0.036 +19840125, -0.60, 0.37, 0.66, 0.20, 0.29, 0.036 +19840126, -0.47, 0.02, 0.54, -0.27, 0.13, 0.036 +19840127, -0.23, -0.42, 0.72, 0.13, 0.34, 0.036 +19840130, -0.85, -0.46, 1.18, 0.13, 0.41, 0.036 +19840131, 0.11, -0.70, 0.18, -0.14, -0.02, 0.036 +19840201, -0.49, -0.11, 0.28, 0.25, 0.07, 0.036 +19840202, 0.30, -0.44, -0.17, -0.08, 0.01, 0.036 +19840203, -1.34, 0.69, 0.71, 0.00, 0.29, 0.036 +19840206, -1.67, -0.11, 1.07, 0.15, 0.08, 0.036 +19840207, 0.11, -1.03, -0.15, -0.09, -0.25, 0.036 +19840208, -1.73, 0.71, 0.82, 0.31, 0.01, 0.036 +19840209, -0.51, -0.80, 0.07, 0.07, 0.06, 0.036 +19840210, 0.51, -0.07, -0.69, 0.13, -0.09, 0.036 +19840213, -0.97, -0.23, 0.40, 0.19, -0.15, 0.036 +19840214, 0.94, -0.53, -0.32, -0.30, 0.26, 0.036 +19840215, -0.15, 0.33, 0.01, 0.33, -0.09, 0.036 +19840216, -0.21, -0.11, 0.26, 0.03, 0.30, 0.036 +19840217, -0.28, 0.27, 0.28, 0.40, 0.28, 0.036 +19840221, -0.76, 0.10, 0.31, 0.19, 0.24, 0.036 +19840222, -0.30, 0.09, 0.41, -0.04, 0.26, 0.036 +19840223, -0.23, -0.62, 0.37, -0.05, 0.28, 0.036 +19840224, 1.98, -0.72, -1.21, -0.17, -0.46, 0.036 +19840227, 1.17, -0.21, 0.19, -0.18, 0.39, 0.036 +19840228, -1.39, 0.88, 0.89, 0.00, 0.25, 0.036 +19840229, 0.21, 0.19, 0.03, -0.16, -0.14, 0.036 +19840301, 0.66, -0.26, 0.00, -0.04, -0.24, 0.033 +19840302, 0.67, 0.08, -0.23, -0.10, 0.13, 0.033 +19840305, -0.78, 0.41, 0.41, -0.20, 0.04, 0.033 +19840306, -1.00, 0.78, 0.07, -0.19, 0.03, 0.033 +19840307, -1.10, 0.12, 0.67, -0.14, 0.13, 0.033 +19840308, 0.31, -0.18, 0.17, -0.18, 0.04, 0.033 +19840309, -0.47, 0.23, 0.14, 0.03, -0.05, 0.033 +19840312, 0.99, -1.01, -0.51, -0.22, 0.16, 0.033 +19840313, 0.39, 0.29, -0.75, -0.07, -0.36, 0.033 +19840314, -0.06, 0.01, -0.30, 0.04, 0.07, 0.033 +19840315, 0.42, -0.03, -0.41, 0.12, 0.12, 0.033 +19840316, 1.04, -0.37, -0.16, 0.08, 0.27, 0.033 +19840319, -0.93, 0.20, 0.47, 0.06, 0.15, 0.033 +19840320, 0.53, -0.31, 0.10, 0.00, -0.22, 0.033 +19840321, -0.13, 0.37, 0.11, -0.33, 0.15, 0.033 +19840322, -1.03, 0.63, 0.34, 0.25, 0.21, 0.033 +19840323, -0.10, -0.20, 0.24, -0.17, 0.28, 0.033 +19840326, -0.08, -0.33, 0.51, -0.05, 0.10, 0.033 +19840327, 0.25, -0.43, 0.00, 0.24, 0.03, 0.033 +19840328, 1.37, -0.98, -0.45, -0.28, -0.01, 0.033 +19840329, -0.12, 0.37, 0.03, -0.08, -0.03, 0.033 +19840330, -0.15, 0.30, 0.00, 0.29, 0.06, 0.033 +19840402, -0.68, 0.35, 0.38, 0.15, 0.02, 0.041 +19840403, -0.34, 0.06, 0.44, 0.22, 0.20, 0.041 +19840404, -0.08, -0.16, 0.28, 0.11, 0.30, 0.041 +19840405, -1.53, 0.69, 0.51, 0.54, 0.15, 0.041 +19840406, -0.01, -0.78, 0.31, 0.17, 0.08, 0.041 +19840409, -0.07, -0.34, 0.20, 0.11, 0.31, 0.041 +19840410, 0.19, -0.23, 0.21, -0.13, 0.21, 0.041 +19840411, -0.59, 0.22, 0.55, 0.25, 0.03, 0.041 +19840412, 1.35, -1.20, -0.34, 0.03, 0.04, 0.041 +19840413, -0.07, 0.65, -0.50, 0.35, -0.24, 0.041 +19840416, 0.46, -0.55, -0.13, 0.00, 0.18, 0.041 +19840417, 0.45, 0.08, -0.15, -0.13, -0.13, 0.041 +19840418, -0.58, 0.56, -0.11, 0.14, -0.21, 0.041 +19840419, -0.01, 0.01, -0.05, 0.09, -0.18, 0.041 +19840423, -0.70, 0.26, 0.10, 0.14, 0.23, 0.041 +19840424, 0.53, -0.47, 0.01, 0.16, 0.36, 0.041 +19840425, 0.28, -0.11, -0.42, 0.43, 0.09, 0.041 +19840426, 0.97, -0.38, -0.13, 0.26, 0.00, 0.041 +19840427, -0.10, 0.34, 0.06, 0.18, -0.40, 0.041 +19840430, 0.06, -0.03, 0.03, 0.20, -0.28, 0.041 +19840501, 1.01, -0.44, -0.36, -0.03, -0.36, 0.035 +19840502, 0.37, 0.52, -0.64, -0.01, -0.42, 0.035 +19840503, -0.28, 0.63, -0.13, 0.14, 0.01, 0.035 +19840504, -1.03, 0.57, 0.67, 0.24, 0.25, 0.035 +19840507, 0.13, -0.16, -0.22, 0.04, -0.01, 0.035 +19840508, 0.63, -0.49, -0.02, 0.03, -0.06, 0.035 +19840509, -0.21, 0.02, 0.12, 0.39, -0.29, 0.035 +19840510, -0.11, 0.21, -0.06, -0.08, 0.04, 0.035 +19840511, -0.87, 0.15, 0.27, -0.01, 0.14, 0.035 +19840514, -0.64, 0.10, -0.07, 0.40, 0.04, 0.035 +19840515, 0.23, -0.43, 0.06, 0.27, -0.10, 0.035 +19840516, -0.08, 0.05, -0.06, 0.20, 0.05, 0.035 +19840517, -1.00, 0.22, 0.39, 0.26, -0.12, 0.035 +19840518, -0.62, 0.06, 0.45, 0.18, 0.29, 0.035 +19840521, -0.62, -0.03, 0.26, -0.01, -0.07, 0.035 +19840522, -0.71, -0.19, 0.03, 0.22, -0.04, 0.035 +19840523, -0.45, -0.04, 0.11, -0.09, 0.14, 0.035 +19840524, -1.38, -0.20, -0.02, 0.00, -0.14, 0.035 +19840525, 0.20, -0.43, 0.24, -0.02, 0.46, 0.035 +19840529, -0.86, 0.11, 0.44, 0.24, 0.21, 0.035 +19840530, -0.05, -0.30, -0.48, -0.10, -0.20, 0.035 +19840531, 0.27, 0.13, -0.79, 0.23, -0.39, 0.035 +19840601, 1.65, -0.62, -0.56, -0.22, 0.05, 0.036 +19840604, 0.84, 0.14, -0.79, 0.05, -0.45, 0.036 +19840605, -0.37, 0.34, -0.28, 0.17, -0.15, 0.036 +19840606, 0.65, -0.34, -0.16, 0.30, -0.24, 0.036 +19840607, 0.00, 0.35, -0.02, 0.26, -0.19, 0.036 +19840608, 0.13, 0.05, 0.01, 0.13, 0.08, 0.036 +19840611, -1.18, 0.61, 0.58, 0.53, 0.13, 0.036 +19840612, -0.47, 0.07, 0.21, 0.24, 0.07, 0.036 +19840613, -0.06, 0.12, -0.38, 0.13, -0.25, 0.036 +19840614, -1.02, 0.56, 0.11, -0.01, 0.03, 0.036 +19840615, -0.60, 0.30, -0.13, 0.17, -0.47, 0.036 +19840618, 1.38, -1.31, -0.23, -0.04, 0.04, 0.036 +19840619, 0.53, -0.13, -0.43, 0.27, -0.06, 0.036 +19840620, 1.07, -1.33, -0.24, 0.19, -0.14, 0.036 +19840621, -0.05, 0.38, -0.63, 0.06, -0.37, 0.036 +19840622, 0.06, 0.31, -0.36, 0.00, -0.11, 0.036 +19840625, -0.17, 0.23, -0.07, 0.30, -0.17, 0.036 +19840626, -0.77, 0.32, 0.16, 0.15, 0.45, 0.036 +19840627, -0.69, 0.16, 0.61, 0.11, 0.35, 0.036 +19840628, 0.64, -0.41, -0.17, 0.06, -0.03, 0.036 +19840629, 0.26, 0.19, 0.22, 0.15, -0.03, 0.036 +19840702, -0.16, -0.23, 0.36, 0.25, 0.00, 0.039 +19840703, 0.32, -0.07, -0.13, 0.17, -0.19, 0.039 +19840705, -0.52, 0.32, 0.23, 0.38, 0.19, 0.039 +19840706, -0.37, -0.02, 0.35, 0.18, 0.20, 0.039 +19840709, 0.53, -0.89, -0.04, 0.11, -0.09, 0.039 +19840710, -0.29, 0.41, -0.09, 0.30, -0.14, 0.039 +19840711, -1.34, 0.89, 0.30, 0.49, -0.35, 0.039 +19840712, -0.41, -0.13, 0.44, 0.19, 0.30, 0.039 +19840713, 0.42, -0.16, 0.37, 0.11, 0.11, 0.039 +19840716, 0.19, -0.65, 0.34, 0.46, 0.01, 0.039 +19840717, 0.37, -0.21, 0.15, 0.28, 0.31, 0.039 +19840718, -0.58, 0.11, 0.53, 0.03, 0.15, 0.039 +19840719, -0.70, 0.22, 0.26, 0.43, 0.33, 0.039 +19840720, -0.60, -0.08, 0.53, 0.12, 0.26, 0.039 +19840723, -0.65, -0.58, 0.41, 0.13, 0.09, 0.039 +19840724, -0.70, -0.05, 0.31, 0.11, -0.01, 0.039 +19840725, 0.44, -0.78, -0.47, 0.22, -0.49, 0.039 +19840726, 0.76, -0.47, -0.99, -0.06, -0.77, 0.039 +19840727, 0.79, -0.11, -1.26, -0.33, -1.07, 0.039 +19840730, -0.46, 0.25, -0.06, -0.05, -0.26, 0.039 +19840731, 0.25, -0.08, -0.99, 0.26, -0.85, 0.039 +19840801, 2.02, -0.77, -0.76, -0.19, -0.59, 0.036 +19840802, 2.43, -0.38, -1.57, -0.69, -0.89, 0.036 +19840803, 2.81, -0.15, -1.98, -0.31, -1.35, 0.036 +19840806, 0.38, 0.73, -0.69, 0.94, -0.76, 0.036 +19840807, 0.04, -0.11, -0.06, 0.49, 0.19, 0.036 +19840808, -0.53, 0.24, 1.12, 0.18, 0.67, 0.036 +19840809, 1.99, -1.10, -0.21, -0.18, -0.06, 0.036 +19840810, 0.21, 0.44, 0.17, -0.27, 0.11, 0.036 +19840813, -0.13, -0.20, 0.16, -0.02, 0.09, 0.036 +19840814, -0.52, 0.50, 0.46, 0.01, 0.28, 0.036 +19840815, -0.81, 0.48, 0.23, -0.13, 0.21, 0.036 +19840816, 0.52, -0.27, -0.01, -0.06, 0.10, 0.036 +19840817, 0.08, -0.04, 0.10, -0.30, 0.07, 0.036 +19840820, 0.29, -0.57, 0.32, -0.03, 0.43, 0.036 +19840821, 1.52, -0.61, -0.25, -0.10, -0.13, 0.036 +19840822, -0.32, 0.47, 0.58, -0.12, 0.09, 0.036 +19840823, 0.06, 0.09, -0.12, 0.12, -0.12, 0.036 +19840824, 0.17, 0.20, 0.03, -0.04, 0.06, 0.036 +19840827, -0.56, 0.17, 0.62, 0.21, 0.36, 0.036 +19840828, 0.48, -0.26, -0.10, -0.19, -0.05, 0.036 +19840829, -0.09, 0.29, 0.12, -0.18, 0.24, 0.036 +19840830, -0.29, 0.38, 0.04, 0.07, 0.13, 0.036 +19840831, 0.08, 0.14, 0.04, -0.01, 0.07, 0.036 +19840904, -0.90, 0.34, 0.43, 0.14, 0.31, 0.045 +19840905, -0.38, 0.10, 0.25, 0.17, 0.26, 0.045 +19840906, 0.69, -0.37, -0.04, 0.22, -0.01, 0.045 +19840907, -0.62, 0.51, 0.30, 0.00, 0.17, 0.045 +19840910, -0.12, -0.31, 0.16, 0.25, 0.06, 0.045 +19840911, 0.19, 0.18, -0.04, 0.13, -0.10, 0.045 +19840912, -0.03, -0.07, 0.53, 0.04, 0.33, 0.045 +19840913, 1.56, -1.10, -0.44, 0.25, -0.24, 0.045 +19840914, 0.60, 0.15, -0.15, 0.09, -0.36, 0.045 +19840917, 0.03, -0.17, 0.14, 0.03, 0.01, 0.045 +19840918, -0.60, 0.44, 0.66, -0.08, 0.29, 0.045 +19840919, -0.42, 0.27, 0.91, 0.13, 0.46, 0.045 +19840920, 0.25, -0.27, 0.40, -0.05, 0.10, 0.045 +19840921, -0.82, 0.95, 0.18, -0.37, 0.16, 0.045 +19840924, -0.34, -0.17, 0.47, 0.06, 0.37, 0.045 +19840925, 0.05, -0.51, 0.45, 0.35, 0.14, 0.045 +19840926, 0.26, -0.27, 0.36, 0.22, 0.14, 0.045 +19840927, 0.28, -0.19, 0.42, 0.02, 0.13, 0.045 +19840928, -0.45, 0.42, 0.33, -0.16, 0.29, 0.045 +19841001, -0.84, 0.09, 0.73, 0.15, 0.50, 0.043 +19841002, -0.70, 0.22, 0.52, 0.14, 0.30, 0.043 +19841003, -0.67, 0.16, 0.14, -0.07, -0.24, 0.043 +19841004, 0.16, -0.13, -0.05, -0.03, -0.01, 0.043 +19841005, -0.11, 0.32, 0.09, -0.18, 0.06, 0.043 +19841008, -0.40, 0.06, 0.25, -0.04, 0.13, 0.043 +19841009, -0.23, -0.05, 0.22, -0.02, 0.13, 0.043 +19841010, 0.14, -0.47, -0.13, 0.05, -0.24, 0.043 +19841011, 0.41, -0.03, 0.09, -0.14, 0.04, 0.043 +19841012, 0.79, -0.34, -0.15, 0.07, -0.21, 0.043 +19841015, 0.78, -0.53, -0.30, 0.09, -0.37, 0.043 +19841016, -0.42, 0.46, -0.14, 0.02, -0.21, 0.043 +19841017, -0.30, 0.33, -0.57, -0.11, -0.61, 0.043 +19841018, 1.93, -1.37, -0.98, 0.08, -1.07, 0.043 +19841019, 0.10, 0.45, -0.41, 0.07, -0.16, 0.043 +19841022, -0.37, 0.19, -0.17, -0.03, -0.34, 0.043 +19841023, -0.16, 0.05, 0.04, 0.37, 0.00, 0.043 +19841024, -0.01, -0.22, 0.12, 0.02, 0.14, 0.043 +19841025, -0.57, 0.13, 0.75, 0.35, 0.70, 0.043 +19841026, -0.66, 0.07, 0.56, 0.35, 0.55, 0.043 +19841029, -0.34, -0.11, -0.06, 0.02, -0.05, 0.043 +19841030, 1.01, -0.87, -0.09, -0.04, -0.15, 0.043 +19841031, -0.34, 0.17, 0.15, 0.06, -0.06, 0.043 +19841101, 0.68, -0.47, 0.25, 0.08, 0.18, 0.035 +19841102, 0.09, 0.11, 0.26, -0.12, 0.07, 0.035 +19841105, 0.63, -0.40, 0.32, -0.02, 0.33, 0.035 +19841106, 0.94, -0.45, -0.10, -0.18, -0.05, 0.035 +19841107, -0.67, 0.27, 0.42, -0.12, 0.26, 0.035 +19841108, -0.21, 0.10, -0.01, -0.14, 0.27, 0.035 +19841109, -0.45, 0.66, 0.26, -0.14, 0.23, 0.035 +19841112, -0.21, -0.08, -0.04, 0.10, 0.01, 0.035 +19841113, -0.76, 0.37, 0.25, 0.32, 0.14, 0.035 +19841114, -0.10, -0.18, 0.07, 0.43, 0.12, 0.035 +19841115, -0.13, -0.25, 0.36, 0.41, 0.00, 0.035 +19841116, -0.89, 0.41, 0.22, 0.14, 0.02, 0.035 +19841119, -0.73, -0.19, 0.29, 0.11, 0.24, 0.035 +19841120, 0.43, -0.64, 0.16, 0.00, -0.03, 0.035 +19841121, 0.20, -0.24, 0.29, -0.24, 0.17, 0.035 +19841123, 1.27, -0.55, -0.51, -0.04, -0.40, 0.035 +19841126, -0.62, 0.44, -0.01, 0.05, -0.41, 0.035 +19841127, 0.45, -0.52, 0.08, 0.06, -0.04, 0.035 +19841128, -0.70, 0.42, 0.45, -0.01, 0.15, 0.035 +19841129, -0.67, 0.22, 0.62, 0.15, 0.45, 0.035 +19841130, -0.27, -0.13, 0.35, 0.03, 0.33, 0.035 +19841203, -0.48, -0.03, 0.35, 0.33, 0.22, 0.032 +19841204, 0.18, -0.25, 0.09, 0.31, -0.08, 0.032 +19841205, -0.72, -0.12, 0.79, 0.10, 0.43, 0.032 +19841206, 0.25, -0.36, -0.23, 0.17, -0.30, 0.032 +19841207, -0.21, 0.16, 0.20, 0.03, 0.19, 0.032 +19841210, 0.24, -0.30, 0.01, 0.21, -0.24, 0.032 +19841211, 0.17, -0.11, -0.24, 0.02, -0.27, 0.032 +19841212, -0.22, 0.26, -0.13, 0.17, -0.22, 0.032 +19841213, -0.41, 0.33, 0.00, 0.09, 0.07, 0.032 +19841214, 0.47, -0.26, -0.27, 0.14, -0.25, 0.032 +19841217, 0.46, -0.63, 0.21, 0.41, 0.02, 0.032 +19841218, 2.40, -1.08, -1.16, -0.08, -0.82, 0.032 +19841219, -0.26, 0.86, -0.58, -0.17, -0.62, 0.032 +19841220, -0.43, 0.33, 0.57, 0.18, 0.22, 0.032 +19841221, -0.37, 0.17, 0.20, 0.15, 0.13, 0.032 +19841224, 0.67, -0.06, -0.07, -0.48, -0.14, 0.032 +19841226, -0.14, 0.11, 0.03, 0.01, -0.12, 0.032 +19841227, -0.44, 0.24, 0.30, -0.13, 0.20, 0.032 +19841228, 0.23, -0.09, -0.03, -0.09, -0.01, 0.032 +19841231, 0.46, 0.21, -0.03, -0.35, 0.23, 0.032 +19850102, -0.93, 0.76, 0.25, -0.09, 0.23, 0.029 +19850103, -0.33, 0.39, -0.03, -0.27, 0.09, 0.029 +19850104, -0.42, 0.36, -0.17, -0.14, -0.23, 0.029 +19850107, 0.25, -0.14, 0.14, 0.04, 0.39, 0.029 +19850108, -0.05, 0.21, 0.15, 0.19, 0.36, 0.029 +19850109, 0.63, -0.09, -0.17, 0.03, -0.30, 0.029 +19850110, 1.68, -0.69, -0.70, -0.03, -0.60, 0.029 +19850111, -0.05, 0.43, -0.31, -0.03, -0.35, 0.029 +19850114, 1.41, -0.23, -0.90, 0.08, -0.44, 0.029 +19850115, 0.27, 0.50, -0.19, -0.11, -0.06, 0.029 +19850116, 0.40, 0.39, -0.07, -0.19, 0.23, 0.029 +19850117, -0.12, 0.65, -0.18, -0.06, -0.10, 0.029 +19850118, 0.31, 0.25, 0.02, -0.04, -0.17, 0.029 +19850121, 1.96, -0.86, -0.92, 0.14, -0.23, 0.029 +19850122, 0.18, 0.21, -0.14, 0.27, -0.43, 0.029 +19850123, 0.99, -0.22, -0.71, -0.05, -0.33, 0.029 +19850124, -0.15, 0.53, -0.34, 0.12, -0.53, 0.029 +19850125, 0.40, 0.09, -0.33, -0.35, -0.52, 0.029 +19850128, 0.17, 0.43, -0.58, 0.05, -0.22, 0.029 +19850129, 0.82, -0.39, -0.26, 0.00, -0.22, 0.029 +19850130, 0.24, 0.41, -0.06, 0.03, -0.24, 0.029 +19850131, 0.04, 0.10, 0.48, -0.35, 0.40, 0.029 +19850201, -0.45, 0.28, 0.37, -0.06, 0.42, 0.030 +19850204, 0.97, -0.41, -0.47, 0.01, -0.21, 0.030 +19850205, 0.30, 0.41, -0.08, -0.26, -0.11, 0.030 +19850206, 0.08, 0.58, -0.22, -0.02, -0.17, 0.030 +19850207, 0.79, 0.04, -0.40, 0.08, -0.25, 0.030 +19850208, 0.24, 0.22, 0.16, 0.13, 0.35, 0.030 +19850211, -0.78, 0.57, 0.34, -0.12, 0.25, 0.030 +19850212, -0.05, 0.09, 0.41, 0.05, 0.39, 0.030 +19850213, 1.35, -0.68, -0.18, 0.14, 0.23, 0.030 +19850214, -0.31, 0.46, 0.06, 0.33, 0.06, 0.030 +19850215, -0.43, 0.25, 0.09, 0.04, -0.15, 0.030 +19850219, -0.14, -0.11, 0.10, 0.12, -0.03, 0.030 +19850220, 0.02, 0.20, -0.29, -0.25, -0.44, 0.030 +19850221, -0.55, 0.19, 0.21, 0.14, -0.06, 0.030 +19850222, -0.39, 0.00, 0.28, 0.10, 0.34, 0.030 +19850225, -0.25, -0.76, -0.12, 0.66, 0.46, 0.030 +19850226, 0.83, -0.59, -0.50, 0.10, -0.15, 0.030 +19850227, -0.19, 0.15, 0.12, 0.08, 0.32, 0.030 +19850228, 0.19, -0.06, -0.30, 0.19, -0.10, 0.030 +19850301, 1.04, -0.24, -0.34, 0.23, 0.14, 0.029 +19850304, -0.53, 0.45, 0.17, 0.33, 0.00, 0.029 +19850305, 0.05, -0.08, 0.28, 0.31, 0.36, 0.029 +19850306, -0.78, 0.49, 0.59, 0.23, 0.08, 0.029 +19850307, -0.58, 0.23, 0.68, -0.05, 0.57, 0.029 +19850308, -0.27, 0.06, 0.23, -0.05, 0.13, 0.029 +19850311, -0.22, -0.25, 0.15, 0.27, 0.07, 0.029 +19850312, 0.31, -0.52, 0.35, 0.21, 0.21, 0.029 +19850313, -0.86, 0.07, 0.82, 0.18, 0.40, 0.029 +19850314, -0.15, 0.07, 0.10, 0.14, 0.04, 0.029 +19850315, -0.45, 0.54, -0.07, -0.13, -0.29, 0.029 +19850318, -0.12, -0.48, 0.19, 0.13, 0.29, 0.029 +19850319, 1.21, -0.99, -0.75, -0.18, -0.19, 0.029 +19850320, -0.21, 0.00, 0.24, -0.08, 0.16, 0.029 +19850321, 0.14, -0.10, 0.11, -0.06, 0.18, 0.029 +19850322, -0.20, -0.06, 0.23, -0.10, 0.12, 0.029 +19850325, -0.57, -0.16, 0.82, 0.33, 0.66, 0.029 +19850326, 0.16, -0.28, 0.14, 0.09, -0.01, 0.029 +19850327, 0.57, -0.19, -0.17, -0.30, -0.16, 0.029 +19850328, 0.10, 0.12, 0.11, 0.01, 0.00, 0.029 +19850329, 0.56, -0.21, 0.20, -0.31, 0.16, 0.029 +19850401, 0.28, -0.20, 0.01, 0.08, -0.32, 0.034 +19850402, -0.36, 0.28, 0.25, 0.14, -0.04, 0.034 +19850403, -0.74, 0.25, 0.56, 0.18, 0.45, 0.034 +19850404, -0.09, -0.09, 0.12, 0.06, 0.24, 0.034 +19850408, -0.44, 0.31, 0.60, 0.21, 0.33, 0.034 +19850409, 0.04, -0.16, 0.18, 0.14, 0.08, 0.034 +19850410, 0.59, -0.14, -0.25, -0.03, -0.37, 0.034 +19850411, 0.42, -0.11, -0.07, 0.01, -0.08, 0.034 +19850412, 0.15, -0.10, 0.00, -0.08, -0.19, 0.034 +19850415, 0.20, -0.11, 0.12, 0.11, 0.02, 0.034 +19850416, 0.15, -0.06, -0.11, 0.30, -0.20, 0.034 +19850417, 0.21, 0.05, -0.01, 0.16, 0.11, 0.034 +19850418, -0.46, 0.38, 0.37, 0.23, 0.07, 0.034 +19850419, 0.09, -0.18, 0.16, 0.13, 0.36, 0.034 +19850422, -0.28, 0.02, 0.28, 0.16, 0.03, 0.034 +19850423, 0.54, -0.49, -0.06, -0.14, -0.23, 0.034 +19850424, 0.14, -0.17, 0.13, -0.14, -0.12, 0.034 +19850425, 0.49, -0.38, 0.23, -0.11, 0.15, 0.034 +19850426, -0.53, 0.49, 0.01, 0.05, -0.06, 0.034 +19850429, -0.82, 0.26, 0.80, 0.12, 0.54, 0.034 +19850430, -0.52, 0.03, 0.43, 0.01, -0.06, 0.034 +19850501, -0.67, 0.44, 0.55, 0.05, -0.01, 0.030 +19850502, 0.14, -0.50, 0.30, -0.37, 0.07, 0.030 +19850503, 0.58, -0.39, -0.21, -0.12, -0.33, 0.030 +19850506, 0.04, -0.04, 0.15, 0.17, 0.14, 0.030 +19850507, 0.40, -0.23, -0.20, 0.12, -0.19, 0.030 +19850508, -0.01, 0.11, -0.20, -0.07, -0.26, 0.030 +19850509, 0.74, -0.10, -0.33, -0.15, -0.24, 0.030 +19850510, 1.30, -0.24, -0.78, -0.12, -0.84, 0.030 +19850513, 0.14, -0.05, -0.23, 0.05, 0.03, 0.030 +19850514, -0.30, 0.20, 0.47, 0.01, 0.24, 0.030 +19850515, 0.29, -0.15, 0.02, 0.25, 0.19, 0.030 +19850516, 0.54, -0.25, 0.09, 0.09, -0.21, 0.030 +19850517, 0.91, -0.26, -0.36, 0.07, -0.42, 0.030 +19850520, 1.16, -0.47, -0.47, 0.24, -0.49, 0.030 +19850521, -0.06, -0.06, -0.07, 0.33, 0.18, 0.030 +19850522, -0.56, 0.18, -0.04, 0.04, 0.23, 0.030 +19850523, -0.47, 0.23, 0.21, 0.24, 0.18, 0.030 +19850524, 0.31, -0.16, -0.09, 0.09, 0.25, 0.030 +19850528, -0.16, -0.04, 0.29, -0.10, 0.08, 0.030 +19850529, -0.08, 0.11, -0.20, 0.12, -0.30, 0.030 +19850530, -0.02, -0.03, 0.21, 0.31, 0.28, 0.030 +19850531, 0.75, -0.55, 0.02, 0.00, 0.06, 0.030 +19850603, 0.05, 0.06, -0.17, 0.19, -0.29, 0.028 +19850604, 0.37, -0.24, -0.28, 0.34, -0.14, 0.028 +19850605, 0.13, 0.21, 0.01, 0.12, -0.03, 0.028 +19850606, 0.36, -0.38, -0.27, 0.33, -0.14, 0.028 +19850607, -0.61, 0.45, 0.22, -0.08, 0.19, 0.028 +19850610, -0.13, -0.28, 0.36, 0.22, 0.10, 0.028 +19850611, -0.22, 0.22, 0.39, 0.26, 0.11, 0.028 +19850612, -0.61, 0.42, 0.75, -0.11, 0.66, 0.028 +19850613, -1.11, 0.45, 0.67, 0.00, 0.32, 0.028 +19850614, 0.74, -0.57, 0.03, 0.12, -0.15, 0.028 +19850617, -0.26, 0.14, 0.13, 0.14, -0.12, 0.028 +19850618, 0.37, -0.25, 0.29, 0.05, 0.17, 0.028 +19850619, -0.21, 0.31, -0.04, -0.14, -0.27, 0.028 +19850620, -0.07, -0.09, 0.17, -0.13, 0.05, 0.028 +19850621, 1.06, -0.81, -0.04, 0.05, 0.00, 0.028 +19850624, 0.04, 0.18, -0.60, 0.09, -0.55, 0.028 +19850625, 0.35, 0.21, -0.58, -0.11, -0.51, 0.028 +19850626, 0.16, -0.02, -0.38, 0.09, -0.34, 0.028 +19850627, 0.59, -0.09, -0.30, 0.04, -0.15, 0.028 +19850628, 0.29, 0.22, 0.02, 0.19, 0.18, 0.028 +19850701, 0.27, -0.04, -0.13, 0.20, -0.20, 0.028 +19850702, -0.11, 0.32, 0.15, 0.18, 0.02, 0.028 +19850703, -0.20, 0.30, 0.15, 0.05, 0.10, 0.028 +19850705, 0.53, 0.14, 0.08, 0.04, 0.41, 0.028 +19850708, -0.33, 0.01, 0.28, -0.04, 0.13, 0.028 +19850709, -0.37, 0.21, 0.57, 0.06, 0.35, 0.028 +19850710, 0.59, -0.10, -0.14, -0.08, -0.22, 0.028 +19850711, 0.34, 0.27, -0.29, -0.01, -0.09, 0.028 +19850712, 0.21, 0.15, 0.02, -0.24, -0.08, 0.028 +19850715, -0.15, 0.35, 0.06, 0.00, -0.29, 0.028 +19850716, 0.98, -0.15, -0.55, -0.01, -0.49, 0.028 +19850717, 0.37, 0.17, -0.53, -0.03, -0.63, 0.028 +19850718, -0.57, 0.40, 0.00, -0.05, 0.08, 0.028 +19850719, 0.30, 0.33, 0.04, -0.15, 0.47, 0.028 +19850722, -0.45, 0.12, -0.54, 0.14, -0.15, 0.028 +19850723, -0.84, 0.68, -1.17, 0.22, -0.37, 0.028 +19850724, -0.62, 0.22, 0.29, 0.08, 0.56, 0.028 +19850725, 0.08, -0.04, 0.07, -0.26, -0.06, 0.028 +19850726, 0.11, -0.10, -0.05, -0.11, -0.01, 0.028 +19850729, -1.39, 0.38, 0.22, -0.13, 0.27, 0.028 +19850730, 0.05, -0.32, 0.29, 0.07, 0.14, 0.028 +19850731, 0.49, -0.28, -0.44, -0.18, 0.08, 0.028 +19850801, 0.69, -0.06, -0.42, -0.07, -0.18, 0.025 +19850802, -0.23, 0.43, 0.06, -0.16, -0.12, 0.025 +19850805, -0.53, -0.28, 0.02, 0.26, 0.17, 0.025 +19850806, -1.20, 0.27, 0.10, 0.06, 0.20, 0.025 +19850807, -0.29, -0.30, 0.45, 0.00, 0.50, 0.025 +19850808, 0.70, -0.41, 0.39, -0.26, 0.12, 0.025 +19850809, -0.23, 0.19, -0.12, -0.02, -0.23, 0.025 +19850812, -0.34, -0.13, 0.08, 0.03, 0.22, 0.025 +19850813, -0.19, -0.03, 0.37, 0.04, 0.27, 0.025 +19850814, 0.09, 0.05, 0.19, 0.04, 0.15, 0.025 +19850815, -0.06, 0.21, 0.37, -0.04, 0.20, 0.025 +19850816, -0.56, 0.02, -0.06, 0.03, -0.10, 0.025 +19850819, 0.11, -0.26, 0.32, 0.15, 0.16, 0.025 +19850820, 0.67, -0.50, -0.05, -0.03, 0.02, 0.025 +19850821, 0.48, -0.09, -0.09, -0.09, -0.04, 0.025 +19850822, -0.76, 0.47, 0.32, 0.08, -0.02, 0.025 +19850823, -0.12, 0.18, 0.15, 0.01, 0.20, 0.025 +19850826, 0.12, -0.23, -0.03, 0.06, -0.08, 0.025 +19850827, 0.33, -0.17, -0.22, -0.03, 0.07, 0.025 +19850828, 0.31, -0.17, 0.00, -0.17, -0.10, 0.025 +19850829, 0.07, 0.06, 0.16, 0.07, 0.08, 0.025 +19850830, -0.05, 0.37, 0.32, -0.05, 0.43, 0.025 +19850903, -0.43, -0.15, 0.08, 0.35, -0.17, 0.032 +19850904, -0.33, 0.00, 0.25, 0.12, 0.11, 0.032 +19850905, -0.04, -0.06, 0.05, 0.09, -0.04, 0.032 +19850906, 0.41, -0.16, -0.49, 0.05, -0.28, 0.032 +19850909, 0.07, -0.17, -0.15, 0.16, -0.02, 0.032 +19850910, -0.75, 0.10, 0.12, 0.15, 0.17, 0.032 +19850911, -1.03, 0.08, 0.27, 0.01, 0.29, 0.032 +19850912, -0.79, 0.05, -0.25, 0.11, 0.02, 0.032 +19850913, -0.60, -0.44, 0.18, 0.01, 0.15, 0.032 +19850916, -0.14, -0.35, 0.04, 0.05, -0.05, 0.032 +19850917, -0.93, -0.34, 0.59, -0.05, 0.36, 0.032 +19850918, 0.07, -0.27, 0.05, 0.13, -0.35, 0.032 +19850919, 0.91, 0.00, -0.26, -0.13, -0.15, 0.032 +19850920, -0.46, 0.69, -0.01, -0.20, -0.20, 0.032 +19850923, 0.91, -0.58, -0.35, 0.05, 0.11, 0.032 +19850924, -0.76, 0.36, 0.27, 0.11, 0.19, 0.032 +19850925, -1.01, 0.43, 0.42, 0.08, 0.40, 0.032 +19850926, 0.07, -0.72, 0.40, 0.13, 0.59, 0.032 +19850930, 0.26, -0.34, 0.16, 0.13, 0.36, 0.032 +19851001, 1.36, -0.88, 0.02, 0.32, -0.02, 0.028 +19851002, -0.39, 0.28, 0.69, -0.06, 0.59, 0.028 +19851003, 0.11, -0.14, 0.38, -0.10, 0.04, 0.028 +19851004, -0.53, 0.38, 0.46, -0.04, 0.25, 0.028 +19851007, -0.68, 0.13, 0.20, 0.19, 0.08, 0.028 +19851008, -0.13, -0.31, 0.40, 0.09, 0.39, 0.028 +19851009, 0.34, -0.08, -0.02, -0.03, 0.01, 0.028 +19851010, 0.24, 0.04, -0.16, -0.02, -0.19, 0.028 +19851011, 0.78, -0.17, -0.59, -0.08, -0.38, 0.028 +19851014, 1.01, -0.51, -0.61, -0.06, -0.61, 0.028 +19851015, -0.12, 0.25, -0.11, 0.17, -0.12, 0.028 +19851016, 0.84, -0.46, -0.34, 0.12, 0.06, 0.028 +19851017, 0.04, 0.35, -0.29, 0.00, -0.45, 0.028 +19851018, -0.23, 0.29, 0.02, -0.07, -0.08, 0.028 +19851021, -0.09, -0.23, 0.24, 0.40, 0.01, 0.028 +19851022, 0.51, -0.33, -0.25, -0.14, -0.33, 0.028 +19851023, 0.46, -0.20, 0.08, -0.19, -0.22, 0.028 +19851024, -0.20, 0.39, 0.08, -0.10, -0.13, 0.028 +19851025, -0.51, 0.24, 0.37, -0.10, 0.19, 0.028 +19851028, 0.07, -0.36, 0.33, 0.19, -0.07, 0.028 +19851029, 0.71, -0.26, -0.20, 0.14, -0.18, 0.028 +19851030, 0.42, -0.16, 0.01, -0.04, -0.18, 0.028 +19851031, -0.06, 0.16, 0.13, 0.18, 0.27, 0.028 +19851101, 0.73, -0.30, -0.21, 0.05, 0.05, 0.030 +19851104, -0.04, 0.08, 0.01, -0.07, -0.20, 0.030 +19851105, 0.58, -0.31, -0.39, -0.18, -0.27, 0.030 +19851106, 0.29, 0.08, -0.28, 0.01, -0.38, 0.030 +19851107, 0.02, 0.17, 0.02, -0.06, -0.05, 0.030 +19851108, 0.68, 0.11, 0.01, -0.24, 0.11, 0.030 +19851111, 1.52, -0.94, -0.27, 0.27, -0.22, 0.030 +19851112, 0.50, 0.25, -0.05, 0.18, -0.23, 0.030 +19851113, -0.46, 0.21, -0.12, 0.22, -0.17, 0.030 +19851114, 0.84, -0.36, 0.08, -0.11, 0.08, 0.030 +19851115, -0.32, 0.63, -0.12, -0.06, -0.32, 0.030 +19851118, 0.19, -0.38, -0.51, 0.19, -0.43, 0.030 +19851119, 0.05, 0.53, -0.02, 0.17, 0.08, 0.030 +19851120, 0.10, -0.21, -0.09, 0.03, 0.12, 0.030 +19851121, 1.08, -0.30, -0.13, 0.02, -0.31, 0.030 +19851122, 0.16, 0.41, 0.04, -0.21, -0.12, 0.030 +19851125, -0.55, 0.14, 0.12, 0.14, -0.05, 0.030 +19851126, 0.13, -0.06, -0.15, -0.03, 0.22, 0.030 +19851127, 0.81, -0.24, -0.64, -0.07, -0.21, 0.030 +19851129, -0.02, 0.43, -0.06, 0.00, 0.04, 0.030 +19851202, -0.75, 0.60, -0.01, -0.05, -0.06, 0.031 +19851203, 0.20, 0.03, -0.01, -0.03, 0.02, 0.031 +19851204, 1.49, -0.40, -0.58, 0.03, -0.12, 0.031 +19851205, -0.05, 0.38, -0.29, 0.01, -0.42, 0.031 +19851206, -0.52, -0.09, 0.09, -0.03, -0.14, 0.031 +19851209, 0.57, -0.52, -0.51, 0.25, -0.45, 0.031 +19851210, 0.10, -0.12, -0.47, 0.24, -1.03, 0.031 +19851211, 0.88, -0.48, -0.22, 0.17, -0.54, 0.031 +19851212, 0.23, 0.20, -0.16, 0.43, -0.02, 0.031 +19851213, 1.38, -0.45, -0.27, -0.03, 0.37, 0.031 +19851216, 0.77, -0.66, -0.14, 0.45, 0.25, 0.031 +19851217, -0.61, -0.01, 0.88, 0.05, 0.17, 0.031 +19851218, -0.44, 0.06, 0.46, 0.04, -0.03, 0.031 +19851219, 0.02, 0.07, -0.03, -0.12, 0.25, 0.031 +19851220, 0.38, 0.33, -0.07, 0.05, 0.21, 0.031 +19851223, -1.02, 0.64, -0.28, 0.14, 0.02, 0.031 +19851224, -0.56, 0.26, 0.19, -0.13, 0.03, 0.031 +19851226, 0.19, 0.04, 0.00, -0.17, 0.01, 0.031 +19851227, 0.87, -0.26, -0.10, -0.22, -0.26, 0.031 +19851230, 0.39, -0.27, -0.22, 0.22, -0.08, 0.031 +19851231, 0.31, 0.20, 0.29, -0.33, 0.12, 0.031 +19860102, -0.63, 0.87, 0.38, -0.41, 0.33, 0.025 +19860103, 0.56, -0.08, 0.21, -0.13, 0.27, 0.025 +19860106, -0.04, 0.04, 0.09, -0.22, -0.01, 0.025 +19860107, 1.38, -0.48, 0.05, -0.28, -0.01, 0.025 +19860108, -2.16, 1.44, 0.30, -0.09, 0.15, 0.025 +19860109, -1.17, -0.80, -0.14, 0.03, -0.19, 0.025 +19860110, -0.02, 0.20, 0.26, -0.30, 0.04, 0.025 +19860113, 0.28, -0.08, 0.28, -0.16, 0.22, 0.025 +19860114, 0.01, 0.41, -0.01, -0.06, 0.10, 0.025 +19860115, 0.79, -0.09, -0.21, -0.41, -0.54, 0.025 +19860116, 0.46, -0.02, -0.37, -0.12, -0.62, 0.025 +19860117, -0.17, 0.49, 0.19, -0.29, -0.14, 0.025 +19860120, -0.39, 0.18, 0.09, 0.06, 0.21, 0.025 +19860121, -0.67, 0.33, -0.17, -0.14, -0.45, 0.025 +19860122, -0.93, 0.45, 0.21, -0.15, 0.11, 0.025 +19860123, 0.24, -0.29, -0.23, 0.33, -0.25, 0.025 +19860124, 0.95, -0.24, -0.11, -0.12, -0.20, 0.025 +19860127, 0.45, -0.39, -0.15, -0.13, -0.46, 0.025 +19860128, 0.98, -0.57, 0.08, -0.06, -0.48, 0.025 +19860129, 0.24, -0.66, -0.29, 0.13, -0.39, 0.025 +19860130, -0.34, 0.64, 0.10, 0.33, 0.28, 0.025 +19860131, 0.92, -0.41, 0.01, 0.21, -0.05, 0.025 +19860203, 0.93, -0.55, -0.62, 0.42, -0.28, 0.028 +19860204, -0.25, 0.11, -0.30, 0.11, -0.43, 0.028 +19860205, 0.07, -0.03, -0.56, -0.09, -0.50, 0.028 +19860206, 0.26, 0.18, -0.10, 0.17, -0.08, 0.028 +19860207, 0.49, 0.07, -0.33, 0.07, -0.01, 0.028 +19860210, 0.66, -0.37, -0.13, 0.15, -0.23, 0.028 +19860211, 0.03, 0.18, -0.06, 0.35, -0.17, 0.028 +19860212, 0.14, 0.16, 0.29, -0.17, 0.14, 0.028 +19860213, 0.57, -0.24, 0.02, 0.11, 0.03, 0.028 +19860214, 0.89, -0.43, 0.12, -0.05, -0.09, 0.028 +19860218, 1.12, -0.51, -0.10, 0.12, -0.51, 0.028 +19860219, -0.92, 0.82, -0.06, 0.18, -0.23, 0.028 +19860220, 0.83, -0.54, -0.18, -0.16, 0.13, 0.028 +19860221, 1.00, -0.07, 0.16, -0.05, -0.05, 0.028 +19860224, -0.12, 0.04, 0.33, 0.05, 0.20, 0.028 +19860225, -0.23, 0.18, 0.35, 0.14, 0.59, 0.028 +19860226, 0.10, 0.05, 0.15, -0.13, 0.12, 0.028 +19860227, 1.14, -0.22, 0.17, -0.10, 0.03, 0.028 +19860228, 0.19, 0.37, -0.02, -0.04, 0.08, 0.028 +19860303, -0.39, 0.67, 0.00, 0.03, 0.18, 0.030 +19860304, -0.14, 0.74, 0.17, -0.15, -0.42, 0.030 +19860305, -0.20, -0.30, 0.09, 0.01, 0.53, 0.030 +19860306, 0.41, 0.21, 0.00, -0.11, 0.18, 0.030 +19860307, 0.14, 0.18, -0.23, 0.06, 0.18, 0.030 +19860310, 0.43, -0.06, -0.20, -0.02, -0.21, 0.030 +19860311, 1.86, -1.09, 0.03, 0.09, 0.12, 0.030 +19860312, 0.45, 0.09, 0.26, 0.06, 0.13, 0.030 +19860313, 0.20, -0.14, -0.33, 0.10, -0.16, 0.030 +19860314, 1.03, -0.83, -0.22, 0.12, 0.30, 0.030 +19860317, -0.75, 0.00, -0.32, 0.39, 0.03, 0.030 +19860318, 0.47, 0.04, -0.17, -0.08, 0.28, 0.030 +19860319, -0.17, 0.15, -0.09, 0.14, 0.23, 0.030 +19860320, 0.39, -0.13, -0.02, 0.12, 0.12, 0.030 +19860321, -0.83, 1.71, 0.67, -0.28, 0.40, 0.030 +19860324, 0.38, -1.25, -0.25, 0.48, -0.20, 0.030 +19860325, -0.25, -0.07, 0.25, 0.04, 0.11, 0.030 +19860326, 0.98, -0.62, 0.05, -0.26, 0.13, 0.030 +19860327, 0.71, -0.08, 0.05, -0.15, -0.25, 0.030 +19860331, 0.06, 0.21, -0.15, 0.27, -0.75, 0.030 +19860401, -1.21, 0.92, 0.34, 0.72, 0.13, 0.024 +19860402, 0.09, -0.26, -0.09, 0.14, -0.25, 0.024 +19860403, -1.01, 0.82, 0.01, -0.17, -0.28, 0.024 +19860404, -1.45, 0.81, 0.26, 0.06, 0.07, 0.024 +19860407, -0.32, -0.51, 0.13, 0.02, 0.17, 0.024 +19860408, 1.90, -0.86, -0.60, -0.21, -0.22, 0.024 +19860409, 0.21, 0.09, -0.23, -0.01, 0.33, 0.024 +19860410, 0.97, -0.36, -0.42, 0.13, -0.04, 0.024 +19860411, -0.08, 0.36, -0.13, -0.05, -0.23, 0.024 +19860414, 0.53, 0.03, -0.55, 0.08, -0.27, 0.024 +19860415, 0.14, -0.07, 0.13, 0.13, 0.23, 0.024 +19860416, 1.75, -0.56, -0.57, -0.15, 0.13, 0.024 +19860417, 0.33, 0.31, -0.26, 0.07, 0.30, 0.024 +19860418, -0.11, 0.44, -0.11, 0.44, -0.14, 0.024 +19860421, 0.76, -0.35, -0.28, 0.60, -0.02, 0.024 +19860422, -0.78, 0.74, 0.11, 0.36, -0.01, 0.024 +19860423, -0.42, 0.03, 0.03, 0.31, 0.33, 0.024 +19860424, 0.18, 0.28, -0.51, 0.02, -0.17, 0.024 +19860425, 0.00, 0.19, -0.42, 0.15, -0.37, 0.024 +19860428, 0.17, -0.24, -0.18, 0.21, -0.13, 0.024 +19860429, -0.97, 0.36, -0.09, 0.15, 0.24, 0.024 +19860430, -1.90, 0.67, 0.53, -0.04, 0.25, 0.024 +19860501, -0.20, -0.24, 0.27, 0.01, 0.14, 0.023 +19860502, -0.06, 0.18, 0.19, -0.18, 0.25, 0.023 +19860505, 1.11, -0.63, 0.11, -0.19, -0.09, 0.023 +19860506, -0.12, 0.20, 0.05, -0.12, -0.14, 0.023 +19860507, -0.42, 0.23, 0.25, 0.09, 0.26, 0.023 +19860508, 0.50, 0.14, 0.20, 0.13, 0.37, 0.023 +19860509, 0.30, 0.10, 0.05, -0.06, 0.05, 0.023 +19860512, -0.18, -0.15, 0.32, 0.12, 0.09, 0.023 +19860513, -0.40, 0.14, -0.16, 0.39, 0.13, 0.023 +19860514, 0.38, -0.27, -0.40, 0.41, 0.09, 0.023 +19860515, -1.09, 0.72, 0.29, -0.10, 0.14, 0.023 +19860516, -0.56, 0.51, 0.10, 0.23, -0.06, 0.023 +19860519, 0.06, -0.41, 0.08, 0.05, 0.08, 0.023 +19860520, 1.01, -0.90, -0.49, 0.00, 0.07, 0.023 +19860521, -0.16, 0.32, 0.10, 0.13, 0.10, 0.023 +19860522, 1.61, -0.92, -0.21, -0.10, 0.16, 0.023 +19860523, 0.55, 0.03, -0.06, 0.01, -0.20, 0.023 +19860527, 1.27, -0.44, -0.33, 0.28, -0.11, 0.023 +19860528, 0.69, -0.19, -0.51, 0.40, -0.40, 0.023 +19860529, 0.40, -0.18, -0.11, 0.54, -0.01, 0.023 +19860530, -0.13, 0.47, 0.16, -0.06, 0.17, 0.023 +19860602, -0.75, 0.58, 0.06, 0.44, -0.20, 0.025 +19860603, 0.10, 0.05, -0.21, 0.22, 0.20, 0.025 +19860604, -0.49, 0.51, -0.21, -0.41, 0.12, 0.025 +19860605, 0.43, -0.44, 0.08, 0.12, 0.21, 0.025 +19860606, 0.01, 0.12, -0.03, 0.26, 0.21, 0.025 +19860609, -2.00, 0.72, 0.35, 0.21, -0.09, 0.025 +19860610, -0.23, 0.02, -0.11, 0.42, -0.09, 0.025 +19860611, 0.61, -0.17, -0.22, 0.17, -0.10, 0.025 +19860612, 0.17, 0.05, 0.05, -0.15, -0.01, 0.025 +19860613, 1.45, -0.83, -0.17, -0.34, 0.17, 0.025 +19860616, 0.02, -0.28, 0.68, 0.24, 0.29, 0.025 +19860617, -0.57, 0.17, 0.33, 0.33, 0.32, 0.025 +19860618, 0.04, -0.43, 0.29, 0.05, 0.21, 0.025 +19860619, -0.17, 0.43, -0.01, -0.04, 0.05, 0.025 +19860620, 0.76, -1.39, -0.21, 0.44, -0.09, 0.025 +19860623, -0.54, 0.63, 0.13, 0.20, 0.07, 0.025 +19860624, 0.77, -0.27, 0.00, 0.09, -0.20, 0.025 +19860625, 0.70, -0.41, 0.06, -0.10, -0.39, 0.025 +19860626, -0.05, 0.23, 0.11, -0.05, 0.14, 0.025 +19860627, 0.29, -0.23, 0.31, -0.06, 0.15, 0.025 +19860630, 0.52, 0.06, 0.03, -0.19, -0.14, 0.025 +19860701, 0.47, -0.01, -0.58, 0.43, -0.29, 0.024 +19860702, 0.33, -0.18, -0.23, -0.05, -0.51, 0.024 +19860703, -0.21, 0.24, 0.17, -0.14, -0.03, 0.024 +19860707, -2.90, 0.44, 1.64, -0.05, 0.75, 0.024 +19860708, -1.52, -1.16, 1.00, -0.09, 0.82, 0.024 +19860709, 0.64, 0.00, -0.24, -0.26, -0.27, 0.024 +19860710, 0.00, -0.16, 0.34, -0.05, -0.06, 0.024 +19860711, -0.12, 0.27, 0.53, -0.31, 0.08, 0.024 +19860714, -1.65, -0.10, 1.52, -0.40, 0.66, 0.024 +19860715, -1.68, 0.02, 1.12, -0.01, 0.35, 0.024 +19860716, 0.38, -0.15, -0.06, 0.14, -0.10, 0.024 +19860717, 0.45, -0.17, -0.46, 0.25, -0.64, 0.024 +19860718, 0.05, -0.17, -0.22, 0.41, -0.34, 0.024 +19860721, -0.17, -0.28, 0.38, 0.22, -0.23, 0.024 +19860722, 0.75, -0.77, 0.10, -0.14, -0.02, 0.024 +19860723, 0.12, -0.10, -0.12, -0.37, 0.09, 0.024 +19860724, -0.29, -0.15, -0.08, 0.07, -0.26, 0.024 +19860725, 0.76, -0.69, -0.15, 0.11, 0.09, 0.024 +19860728, -1.62, 0.44, 0.19, 0.15, -0.14, 0.024 +19860729, -0.68, -0.20, 0.37, -0.24, 0.35, 0.024 +19860730, 0.48, -0.98, -0.06, -0.16, 0.21, 0.024 +19860731, -0.12, 0.05, -0.17, -0.07, 0.08, 0.024 +19860801, -0.43, 0.31, 0.45, -0.02, 0.12, 0.022 +19860804, 0.11, -1.25, 0.63, 0.43, 0.77, 0.022 +19860805, 0.26, -0.05, 0.68, 0.20, 0.78, 0.022 +19860806, -0.15, -0.30, 0.28, -0.38, -0.03, 0.022 +19860807, 0.24, -0.03, 0.05, -0.40, -0.35, 0.022 +19860808, 0.02, 0.03, -0.08, -0.40, 0.09, 0.022 +19860811, 1.49, -0.75, -0.48, -0.21, -0.11, 0.022 +19860812, 1.08, -0.35, -0.51, 0.13, -0.37, 0.022 +19860813, 0.92, -0.19, 0.13, 0.28, -0.13, 0.022 +19860814, 0.35, 0.21, -0.26, -0.12, -0.10, 0.022 +19860815, 0.23, 0.03, 0.39, -0.13, 0.58, 0.022 +19860818, 0.04, -0.19, 0.22, 0.37, -0.14, 0.022 +19860819, -0.26, 0.10, 0.42, -0.15, -0.18, 0.022 +19860820, 1.08, -0.80, 0.61, -0.25, 0.56, 0.022 +19860821, -0.04, -0.01, 0.24, -0.02, -0.15, 0.022 +19860822, 0.13, -0.18, 0.03, -0.40, 0.25, 0.022 +19860825, -0.80, 0.20, 0.24, 0.25, 0.04, 0.022 +19860826, 1.53, -1.35, 0.19, -0.01, 0.50, 0.022 +19860827, 0.16, -0.03, 0.36, -0.14, 0.48, 0.022 +19860828, -0.09, 0.28, -0.15, -0.52, 0.21, 0.022 +19860829, 0.04, 0.14, -0.11, -0.17, 0.20, 0.022 +19860902, -1.41, 0.83, 0.76, -0.04, 0.53, 0.021 +19860903, 0.26, -0.65, 0.11, 0.07, 0.69, 0.021 +19860904, 1.26, -0.40, 0.16, -0.16, 0.81, 0.021 +19860905, -1.25, 0.78, -0.15, 0.14, 0.16, 0.021 +19860908, -1.12, 0.18, -0.15, 0.21, 0.11, 0.021 +19860909, -0.29, -0.19, 0.17, 0.00, -0.07, 0.021 +19860910, -0.46, -0.17, 0.26, 0.04, 0.26, 0.021 +19860911, -4.42, 1.09, 0.84, -0.05, 0.19, 0.021 +19860912, -1.85, 0.36, 0.43, -0.20, 0.38, 0.021 +19860915, 0.26, -0.74, 0.27, -0.12, 0.38, 0.021 +19860916, -0.18, -0.43, 0.23, -0.15, 0.03, 0.021 +19860917, 0.31, 0.21, 0.06, -0.34, 0.03, 0.021 +19860918, 0.15, -0.16, -0.30, 0.16, 0.05, 0.021 +19860919, -0.07, 0.30, 0.16, -0.23, 0.38, 0.021 +19860922, 1.05, -0.25, -0.45, 0.09, -0.36, 0.021 +19860923, 0.45, 0.22, 0.10, 0.28, -0.16, 0.021 +19860924, 0.39, -0.02, 0.03, 0.32, -0.20, 0.021 +19860925, -1.53, 0.79, 0.46, -0.11, 0.28, 0.021 +19860926, 0.04, 0.12, 0.27, -0.04, 0.28, 0.021 +19860929, -0.99, 0.18, 0.33, 0.15, 0.08, 0.021 +19860930, 0.65, -0.02, -0.15, -0.16, -0.01, 0.021 +19861001, 0.83, -0.42, -0.13, -0.25, 0.05, 0.020 +19861002, 0.12, 0.04, -0.18, 0.23, -0.11, 0.020 +19861003, -0.09, -0.12, 0.20, -0.14, 0.52, 0.020 +19861006, 0.34, -0.45, -0.30, 0.07, -0.31, 0.020 +19861007, -0.18, -0.07, 0.56, -0.01, 0.66, 0.020 +19861008, 0.77, -0.63, -0.16, 0.17, 0.15, 0.020 +19861009, -0.26, 0.24, -0.01, 0.00, 0.00, 0.020 +19861010, -0.10, 0.14, -0.25, -0.08, -0.06, 0.020 +19861013, 0.13, -0.12, 0.06, -0.23, 0.10, 0.020 +19861014, -0.20, 0.08, -0.43, -0.11, -0.51, 0.020 +19861015, 1.21, -0.56, -0.48, -0.04, -0.02, 0.020 +19861016, 0.27, -0.17, 0.01, 0.39, 0.01, 0.020 +19861017, -0.28, 0.25, -0.03, -0.04, -0.17, 0.020 +19861020, -0.98, 0.43, 0.17, 0.07, 0.20, 0.020 +19861021, -0.05, 0.17, 0.12, -0.18, -0.01, 0.020 +19861022, 0.14, -0.13, -0.13, -0.15, 0.06, 0.020 +19861023, 1.08, -0.58, -0.38, -0.02, -0.15, 0.020 +19861024, -0.26, 0.33, -0.07, 0.05, -0.06, 0.020 +19861027, 0.21, -0.26, -0.14, 0.05, -0.08, 0.020 +19861028, 0.20, -0.07, -0.10, -0.25, -0.03, 0.020 +19861029, 0.61, -0.26, -0.09, -0.25, -0.30, 0.020 +19861030, 1.01, -0.46, 0.13, 0.53, 0.25, 0.020 +19861031, 0.05, 0.34, 0.31, 0.33, 0.64, 0.020 +19861103, 0.60, -0.66, -0.10, 0.08, -0.14, 0.021 +19861104, 0.21, 0.07, 0.01, 0.11, 0.08, 0.021 +19861105, 0.21, 0.08, 0.30, 0.00, 0.42, 0.021 +19861106, -0.24, 0.05, 0.15, 0.08, -0.11, 0.021 +19861107, -0.02, 0.20, -0.01, 0.10, 0.32, 0.021 +19861110, 0.06, 0.06, 0.10, -0.03, 0.19, 0.021 +19861111, 0.32, -0.20, -0.08, -0.06, 0.22, 0.021 +19861112, -0.20, 0.12, 0.15, 0.06, -0.02, 0.021 +19861113, -1.28, 0.68, 0.52, -0.13, 0.42, 0.021 +19861114, 0.43, -0.28, -0.11, 0.22, 0.10, 0.021 +19861117, -0.57, 0.05, -0.08, 0.25, -0.21, 0.021 +19861118, -2.26, 1.01, 0.27, 0.31, -0.22, 0.021 +19861119, -0.05, -1.02, 0.10, 0.07, -0.08, 0.021 +19861120, 1.58, -0.80, -0.14, -0.41, 0.11, 0.021 +19861121, 1.29, -0.94, -0.21, 0.04, -0.01, 0.021 +19861124, 0.55, -0.44, -0.26, 0.22, -0.42, 0.021 +19861125, 0.26, -0.01, -0.46, 0.14, -0.05, 0.021 +19861126, 0.15, -0.15, -0.40, 0.13, -0.16, 0.021 +19861128, 0.19, 0.26, 0.23, -0.13, 0.23, 0.021 +19861201, -0.16, -0.50, -0.08, -0.04, -0.11, 0.022 +19861202, 1.71, -0.87, -0.37, 0.12, -0.04, 0.022 +19861203, 0.10, 0.01, -0.34, -0.01, -0.55, 0.022 +19861204, -0.18, 0.30, -0.14, -0.09, -0.13, 0.022 +19861205, -0.68, 0.39, 0.09, 0.08, 0.00, 0.022 +19861208, -0.11, -0.21, 0.04, 0.25, -0.16, 0.022 +19861209, -0.68, 0.23, 0.22, 0.15, -0.02, 0.022 +19861210, 0.51, -0.49, 0.01, 0.22, 0.02, 0.022 +19861211, -0.95, 0.44, 0.05, 0.17, -0.25, 0.022 +19861212, -0.45, -0.07, 0.63, 0.35, 0.36, 0.022 +19861215, 0.08, -0.71, 0.42, 0.06, 0.26, 0.022 +19861216, 0.60, -0.43, -0.12, 0.05, -0.12, 0.022 +19861217, -0.82, 0.39, -0.04, 0.10, 0.04, 0.022 +19861218, -0.36, 0.14, 0.02, -0.06, -0.09, 0.022 +19861219, 0.83, -0.10, -0.08, 0.06, 0.29, 0.022 +19861222, -0.35, -0.21, 0.42, -0.23, 0.49, 0.022 +19861223, -0.99, 0.11, 0.01, 0.03, 0.13, 0.022 +19861224, 0.32, 0.18, -0.05, -0.05, 0.06, 0.022 +19861226, 0.11, 0.10, -0.15, -0.01, -0.10, 0.022 +19861229, -0.90, 0.14, 0.10, 0.00, -0.07, 0.022 +19861230, -0.54, 0.22, -0.13, -0.02, 0.03, 0.022 +19861231, -0.37, 1.02, -0.18, -0.23, -0.07, 0.022 +19870102, 1.79, -0.24, -0.01, -0.15, 0.20, 0.020 +19870105, 2.45, -0.06, -0.33, -0.25, -0.24, 0.020 +19870106, 0.43, 0.40, -0.61, 0.00, -0.74, 0.020 +19870107, 1.13, 0.26, -0.62, -0.17, -0.35, 0.020 +19870108, 0.82, 0.30, -0.33, -0.06, 0.15, 0.020 +19870109, 0.58, 0.20, 0.17, 0.08, -0.02, 0.020 +19870112, 0.70, 0.45, 0.24, 0.10, 0.54, 0.020 +19870113, -0.09, 0.29, 0.12, -0.19, 0.24, 0.020 +19870114, 0.94, -0.12, -0.47, -0.13, -0.02, 0.020 +19870115, 0.89, -0.03, -0.52, 0.07, -0.25, 0.020 +19870116, -0.02, -0.84, 0.08, 0.28, 0.04, 0.020 +19870119, 0.98, -0.48, -0.80, 0.07, -0.32, 0.020 +19870120, -0.09, -0.03, 0.42, 0.06, 0.03, 0.020 +19870121, -0.51, -0.33, 0.01, 0.16, 0.09, 0.020 +19870122, 1.85, -1.20, -0.69, 0.25, -0.54, 0.020 +19870123, -1.14, 0.66, 0.21, -0.11, -0.11, 0.020 +19870126, -0.38, -0.43, 0.38, 0.05, 0.25, 0.020 +19870127, 1.30, -0.60, -0.60, 0.13, -0.35, 0.020 +19870128, 0.56, -0.24, -0.22, -0.04, -0.14, 0.020 +19870129, -0.36, 0.37, 0.36, 0.13, 0.27, 0.020 +19870130, -0.02, 0.22, 0.29, -0.07, 0.24, 0.020 +19870202, 0.97, 0.29, -0.37, 0.05, -0.36, 0.023 +19870203, -0.03, 0.72, -0.32, -0.28, 0.11, 0.023 +19870204, 1.22, 0.06, -0.04, 0.09, 0.74, 0.023 +19870205, 0.68, 0.13, -0.16, -0.02, -0.19, 0.023 +19870206, -0.21, 0.57, -0.09, -0.21, 0.13, 0.023 +19870209, -0.62, 0.31, -0.13, -0.02, 0.01, 0.023 +19870210, -0.99, 0.61, -0.01, 0.16, -0.01, 0.023 +19870211, 0.86, 0.17, -0.91, -0.27, -0.19, 0.023 +19870212, -0.46, 0.79, -0.47, -0.07, -0.26, 0.023 +19870213, 1.25, -0.60, -0.83, 0.05, -0.15, 0.023 +19870217, 1.68, -0.65, -1.10, 0.22, -0.87, 0.023 +19870218, -0.02, -0.27, 0.22, 0.01, -0.27, 0.023 +19870219, 0.12, -0.21, 0.27, -0.40, -0.32, 0.023 +19870220, -0.02, 0.00, 0.19, -0.09, -0.09, 0.023 +19870223, -0.86, 0.30, -0.11, 0.18, -0.25, 0.023 +19870224, 0.20, 0.22, -0.51, -0.24, -0.17, 0.023 +19870225, 0.44, 0.08, -0.89, -0.24, -0.37, 0.023 +19870226, -0.22, 0.53, -0.38, 0.03, -0.07, 0.023 +19870227, 0.37, 0.15, -0.12, 0.22, -0.08, 0.023 +19870302, -0.22, 0.25, 0.29, 0.05, -0.28, 0.021 +19870303, 0.21, -0.31, 0.30, 0.27, 0.55, 0.021 +19870304, 1.25, -0.68, -0.21, -0.11, -0.01, 0.021 +19870305, 0.59, -0.21, -0.38, -0.05, -0.05, 0.021 +19870306, -0.02, 0.15, 0.32, 0.01, 0.37, 0.021 +19870309, -0.67, 0.34, 0.19, 0.25, 0.17, 0.021 +19870310, 0.79, -0.27, -0.50, 0.42, -0.35, 0.021 +19870311, -0.08, 0.59, -0.16, 0.15, 0.04, 0.021 +19870312, 0.29, 0.19, 0.00, 0.08, 0.36, 0.021 +19870313, -0.38, 0.39, 0.38, -0.09, 0.47, 0.021 +19870316, -0.60, 0.15, 0.18, 0.15, 0.41, 0.021 +19870317, 1.17, -0.63, -0.28, 0.03, 0.52, 0.021 +19870318, 0.06, -0.03, 0.36, 0.09, 0.49, 0.021 +19870319, 0.43, -0.12, -0.20, -0.27, -0.27, 0.021 +19870320, 1.06, -0.43, -0.11, -0.03, 0.26, 0.021 +19870323, 0.65, -1.00, 0.01, 0.08, 0.09, 0.021 +19870324, 0.11, -0.21, 0.17, 0.12, 0.20, 0.021 +19870325, -0.25, 0.27, 0.13, 0.14, -0.19, 0.021 +19870326, 0.17, 0.22, 0.29, 0.25, 0.45, 0.021 +19870327, -1.32, 1.14, 0.28, -0.25, 0.32, 0.021 +19870330, -2.27, 0.35, 0.73, 0.05, 0.36, 0.021 +19870331, 0.69, 0.03, -0.21, 0.02, -0.04, 0.021 +19870401, 0.08, -0.68, -0.09, 0.17, 0.38, 0.021 +19870402, 0.40, 0.31, -0.15, -0.41, 0.53, 0.021 +19870403, 1.92, -0.82, -0.69, 0.00, 0.09, 0.021 +19870406, 0.40, -0.26, -0.15, 0.19, -0.29, 0.021 +19870407, -1.41, 0.93, 0.42, 0.04, 0.17, 0.021 +19870408, 0.07, -0.03, -0.21, -0.02, -0.20, 0.021 +19870409, -1.33, 0.70, -0.24, -0.15, -0.01, 0.021 +19870410, -0.27, 0.01, -0.16, -0.07, 0.14, 0.021 +19870413, -2.06, 0.92, 0.13, 0.46, 0.00, 0.021 +19870414, -2.48, -0.35, -0.12, 0.05, 0.15, 0.021 +19870415, 1.59, -1.08, 0.04, 0.23, -0.05, 0.021 +19870416, 0.94, -0.19, 0.48, -0.25, 0.33, 0.021 +19870420, -0.31, -0.05, 0.16, -0.44, 0.08, 0.021 +19870421, 1.75, -1.98, -0.37, 0.12, -0.28, 0.021 +19870422, -1.43, 1.54, -0.15, 0.01, 0.27, 0.021 +19870423, -0.21, 0.00, 0.19, 0.00, 0.20, 0.021 +19870424, -1.63, 0.75, 0.28, -0.08, 0.38, 0.021 +19870427, -0.20, -0.92, 0.23, -0.33, -0.28, 0.021 +19870428, 0.45, 0.10, -0.08, -0.28, 0.03, 0.021 +19870429, 0.66, -0.21, 0.04, 0.13, -0.09, 0.021 +19870430, 1.12, -0.35, 0.08, 0.14, -0.29, 0.021 +19870501, -0.13, 0.07, 0.21, 0.09, -0.02, 0.019 +19870504, 0.32, -0.42, -0.05, 0.11, 0.26, 0.019 +19870505, 1.77, -0.92, -0.37, 0.04, -0.12, 0.019 +19870506, 0.03, -0.05, 0.65, -0.16, 0.71, 0.019 +19870507, -0.16, 0.40, 0.51, 0.04, 0.68, 0.019 +19870508, -0.32, 0.49, 0.13, 0.13, 0.19, 0.019 +19870511, -0.45, 0.64, 0.41, 0.23, 0.50, 0.019 +19870512, 0.25, -0.54, -0.25, 0.03, -0.26, 0.019 +19870513, 0.21, 0.03, -0.53, 0.20, 0.06, 0.019 +19870514, 0.04, 0.12, -0.17, 0.10, 0.06, 0.019 +19870515, -1.96, 1.07, 0.25, -0.20, 0.41, 0.019 +19870518, -0.65, -0.67, 0.37, -0.08, 0.42, 0.019 +19870519, -2.05, 1.05, 0.05, -0.16, -0.13, 0.019 +19870520, -0.55, -0.15, -0.33, -0.10, -0.29, 0.019 +19870521, 0.67, -0.19, -0.27, -0.01, -0.32, 0.019 +19870522, 0.42, -0.60, 0.11, -0.09, -0.06, 0.019 +19870526, 2.18, -1.43, -0.37, -0.03, -0.47, 0.019 +19870527, 0.07, 0.30, -0.20, 0.37, -0.38, 0.019 +19870528, 0.56, -0.46, -0.45, 0.00, -0.13, 0.019 +19870529, -0.04, 0.60, 0.35, 0.04, 0.19, 0.019 +19870601, -0.04, -0.06, 0.28, 0.34, -0.17, 0.022 +19870602, -0.46, 0.31, 0.00, 0.04, 0.32, 0.022 +19870603, 1.35, -0.98, -0.20, 0.26, -0.14, 0.022 +19870604, 0.50, -0.25, -0.07, -0.05, 0.02, 0.022 +19870605, -0.30, 0.52, 0.07, -0.09, -0.02, 0.022 +19870608, 0.88, -0.64, 0.07, -0.26, 0.03, 0.022 +19870609, 0.20, 0.00, -0.40, 0.04, -0.22, 0.022 +19870610, 0.13, -0.03, 0.07, -0.02, 0.34, 0.022 +19870611, 0.34, -0.29, 0.01, 0.00, 0.15, 0.022 +19870612, 0.86, -0.50, -0.03, 0.12, -0.02, 0.022 +19870615, 0.41, -0.54, 0.10, 0.45, -0.44, 0.022 +19870616, 0.46, -0.27, -0.20, 0.54, -0.08, 0.022 +19870617, 0.07, 0.12, -0.12, -0.11, 0.31, 0.022 +19870618, 0.19, -0.22, 0.18, -0.28, 0.16, 0.022 +19870619, 0.27, 0.06, 0.14, 0.24, 0.02, 0.022 +19870622, 0.63, -0.65, -0.35, 0.32, -0.33, 0.022 +19870623, -0.32, 0.03, 0.08, 0.00, 0.03, 0.022 +19870624, -0.44, 0.41, -0.01, 0.07, 0.15, 0.022 +19870625, 0.55, -0.43, 0.29, -0.11, 0.02, 0.022 +19870626, -0.46, 0.27, 0.12, 0.02, -0.04, 0.022 +19870629, 0.05, -0.07, 0.47, 0.25, 0.40, 0.022 +19870630, -1.04, 0.97, 0.52, -0.12, 0.31, 0.022 +19870701, -0.24, 0.13, 0.15, -0.31, 0.29, 0.021 +19870702, 0.63, -0.37, -0.10, 0.17, 0.04, 0.021 +19870706, -0.21, 0.00, 0.25, -0.11, 0.43, 0.021 +19870707, 0.58, -0.29, 0.71, -0.36, 0.64, 0.021 +19870708, 0.24, 0.08, 0.07, -0.02, 0.35, 0.021 +19870709, -0.13, 0.37, 0.11, 0.06, 0.28, 0.021 +19870710, 0.20, -0.17, 0.12, -0.05, 0.10, 0.021 +19870713, -0.18, 0.20, 0.22, -0.21, 0.00, 0.021 +19870714, 0.91, -0.30, -0.28, 0.09, -0.50, 0.021 +19870715, -0.06, 0.24, 0.08, -0.32, 0.34, 0.021 +19870716, 0.56, -0.17, 0.07, -0.02, 0.48, 0.021 +19870717, 0.46, -0.10, 0.16, 0.03, 0.12, 0.021 +19870720, -0.83, 0.45, 0.24, -0.14, 0.21, 0.021 +19870721, -0.80, 0.34, -0.02, 0.09, -0.08, 0.021 +19870722, -0.10, -0.11, -0.08, 0.09, -0.49, 0.021 +19870723, -0.28, -0.12, -0.08, 0.10, -0.16, 0.021 +19870724, 0.37, -0.07, -0.29, 0.08, -0.05, 0.021 +19870727, 0.38, -0.40, -0.20, 0.22, -0.25, 0.021 +19870728, 0.47, -0.25, -0.11, 0.00, 0.14, 0.021 +19870729, 0.89, -0.47, -0.28, 0.12, -0.12, 0.021 +19870730, 0.71, -0.18, -0.22, 0.01, -0.28, 0.021 +19870731, 0.20, 0.12, 0.15, 0.00, 0.00, 0.021 +19870803, -0.38, 0.06, 0.60, -0.20, 0.95, 0.022 +19870804, -0.31, 0.12, 0.21, 0.01, -0.19, 0.022 +19870805, 0.71, -0.12, -0.44, 0.36, -0.50, 0.022 +19870806, 1.09, -0.31, -0.86, 0.20, -0.57, 0.022 +19870807, 0.39, 0.12, -0.24, 0.21, -0.32, 0.022 +19870810, 1.32, -1.04, -0.05, 0.12, -0.04, 0.022 +19870811, 1.35, -1.06, -0.13, 0.43, -0.28, 0.022 +19870812, -0.22, 0.01, 0.28, 0.20, -0.37, 0.022 +19870813, 0.61, -0.31, 0.03, 0.23, -0.39, 0.022 +19870814, -0.09, 0.18, 0.65, 0.12, -0.16, 0.022 +19870817, 0.09, -0.24, -0.19, 0.39, -0.34, 0.022 +19870818, -1.40, 0.47, 0.13, 0.10, 0.14, 0.022 +19870819, 0.11, 0.18, -0.07, -0.11, 0.08, 0.022 +19870820, 1.39, -0.51, -0.27, 0.12, -0.13, 0.022 +19870821, 0.30, 0.05, -0.41, -0.03, -0.05, 0.022 +19870824, -0.59, 0.38, 0.05, 0.02, -0.09, 0.022 +19870825, 0.81, -0.61, -0.34, 0.34, 0.11, 0.022 +19870826, -0.47, 0.39, 0.11, 0.07, 0.29, 0.022 +19870827, -0.82, 0.67, 0.06, -0.24, 0.04, 0.022 +19870828, -1.10, 0.80, -0.14, -0.19, -0.16, 0.022 +19870831, 0.71, -0.20, 0.11, -0.16, 0.46, 0.022 +19870901, -1.59, 1.01, -0.08, -0.06, -0.08, 0.021 +19870902, -0.67, -0.09, -0.06, 0.01, 0.16, 0.021 +19870903, -0.45, 0.36, 0.01, 0.03, 0.22, 0.021 +19870904, -0.91, 0.62, 0.19, -0.21, 0.29, 0.021 +19870908, -1.27, -1.05, 0.11, -0.27, -0.03, 0.021 +19870909, 0.21, 0.23, 0.00, 0.07, -0.25, 0.021 +19870910, 0.92, -0.10, -0.80, -0.10, -0.05, 0.021 +19870911, 1.34, -0.42, -0.47, 0.18, -0.08, 0.021 +19870914, 0.21, -0.31, 0.12, 0.14, -0.40, 0.021 +19870915, -1.34, 0.75, 0.39, -0.25, 0.48, 0.021 +19870916, -0.77, 0.62, 0.15, -0.20, -0.23, 0.021 +19870917, -0.04, -0.15, 0.13, -0.06, -0.05, 0.021 +19870918, -0.10, 0.16, -0.09, -0.19, 0.15, 0.021 +19870921, -1.28, 0.45, 0.83, -0.41, 0.71, 0.021 +19870922, 2.16, -2.36, -0.03, 0.49, 0.52, 0.021 +19870923, 0.58, 0.05, -0.28, 0.10, -0.14, 0.021 +19870924, -0.25, 0.44, -0.22, -0.18, -0.10, 0.021 +19870925, 0.11, -0.07, 0.03, -0.02, 0.25, 0.021 +19870928, 0.72, -0.53, 0.04, 0.33, 0.38, 0.021 +19870929, -0.31, 0.03, 0.29, -0.26, 0.29, 0.021 +19870930, 0.18, 0.68, -0.06, -0.02, -0.13, 0.021 +19871001, 1.43, -1.13, -0.02, 0.24, -0.03, 0.027 +19871002, 0.30, 0.04, -0.36, -0.24, -0.23, 0.027 +19871005, 0.05, 0.26, -0.23, -0.18, -0.12, 0.027 +19871006, -2.24, 1.05, 0.60, -0.25, 0.11, 0.027 +19871007, -0.38, -0.37, -0.15, 0.28, 0.19, 0.027 +19871008, -1.34, 0.32, 0.35, -0.17, 0.18, 0.027 +19871009, -0.82, 0.30, 0.29, -0.23, 0.37, 0.027 +19871012, -0.74, -0.53, 0.28, 0.12, 0.33, 0.027 +19871013, 1.29, -1.37, 0.19, 0.19, -0.02, 0.027 +19871014, -2.44, 1.09, 0.57, -0.40, 0.22, 0.027 +19871015, -2.26, 0.94, 0.50, -0.34, 0.50, 0.027 +19871016, -4.87, 0.70, 0.76, -0.08, 0.20, 0.027 +19871019, -17.44, 6.08, 1.20, 0.60, -0.21, 0.027 +19871020, 0.72, -11.17, 2.62, 2.40, 2.37, 0.027 +19871021, 8.57, -1.32, -1.95, -0.01, -1.24, 0.027 +19871022, -3.97, -0.48, 1.45, 0.12, 1.14, 0.027 +19871023, -0.61, -1.98, 1.15, -0.02, 0.81, 0.027 +19871026, -8.31, -0.62, 2.56, 0.79, 0.78, 0.027 +19871027, 1.56, -3.57, -0.35, 0.31, 0.04, 0.027 +19871028, -0.19, -2.23, -0.96, 0.53, -0.27, 0.027 +19871029, 4.73, -0.69, -2.71, -0.02, -1.76, 0.027 +19871030, 3.61, 3.13, -0.96, -0.82, -0.35, 0.027 +19871102, 1.26, 0.20, 0.02, -0.48, 0.30, 0.017 +19871103, -1.87, -0.10, 0.96, 0.08, 0.49, 0.017 +19871104, -0.60, 0.30, 0.51, -0.11, 0.03, 0.017 +19871105, 2.11, -0.72, -0.25, 0.29, -0.60, 0.017 +19871106, -1.12, 1.65, 0.29, -0.13, 0.06, 0.017 +19871109, -2.48, 1.17, 0.90, -0.35, -0.03, 0.017 +19871110, -1.74, 0.06, 0.67, -0.34, 0.20, 0.017 +19871111, 1.00, -0.51, -0.42, 0.07, -0.25, 0.017 +19871112, 2.40, -0.86, -1.04, 0.19, -0.17, 0.017 +19871113, -0.80, 0.84, 0.09, -0.38, -0.31, 0.017 +19871116, 0.28, -0.39, 0.14, 0.21, -0.11, 0.017 +19871117, -1.47, -0.09, 0.58, 0.01, 0.31, 0.017 +19871118, 0.87, -0.57, -0.12, -0.15, 0.15, 0.017 +19871119, -1.98, 0.94, 0.14, 0.10, -0.42, 0.017 +19871120, 0.53, -1.12, 0.12, 0.09, 0.27, 0.017 +19871123, 0.32, -0.36, -0.08, -0.32, 0.07, 0.017 +19871124, 1.30, -0.40, -0.39, -0.21, 0.13, 0.017 +19871125, -0.60, 1.09, -0.18, -0.46, -0.25, 0.017 +19871127, -1.20, 0.98, 0.47, -0.30, 0.52, 0.017 +19871130, -3.99, 0.75, 0.87, 0.11, 0.28, 0.017 +19871201, 0.51, -0.86, 0.48, 0.26, 0.28, 0.018 +19871202, 0.39, -0.66, 0.03, 0.10, 0.08, 0.018 +19871203, -3.06, 1.39, 0.93, -0.08, 0.40, 0.018 +19871204, -1.02, -1.05, 0.33, 0.38, 0.21, 0.018 +19871207, 1.63, -1.84, -0.69, 0.41, 0.15, 0.018 +19871208, 2.28, -1.73, -0.14, -0.15, 0.58, 0.018 +19871209, 1.66, -0.29, -1.32, 0.34, -0.36, 0.018 +19871210, -1.67, 1.42, -0.66, -0.02, -0.48, 0.018 +19871211, 0.54, -0.07, 0.25, -0.11, 0.53, 0.018 +19871214, 2.71, -0.53, -1.35, 0.20, -0.75, 0.018 +19871215, 0.41, 1.24, -0.80, 0.51, -0.84, 0.018 +19871216, 2.02, -0.07, -0.67, 0.20, -0.44, 0.018 +19871217, -1.41, 1.76, -0.28, 0.16, -0.56, 0.018 +19871218, 2.21, -0.11, -0.19, 0.16, -0.21, 0.018 +19871221, 0.35, 0.02, -0.05, 0.35, -0.62, 0.018 +19871222, -0.05, -0.48, 0.12, 0.09, 0.08, 0.018 +19871223, 1.20, -0.13, -0.05, -0.20, 0.03, 0.018 +19871224, -0.16, 0.78, -0.19, -0.14, -0.03, 0.018 +19871228, -2.37, 0.39, 0.59, -0.07, 0.19, 0.018 +19871229, -0.36, -0.02, 0.04, 0.10, 0.20, 0.018 +19871230, 1.20, -0.32, -0.66, 0.49, -0.42, 0.018 +19871231, -0.19, 1.07, -0.04, -0.07, -0.25, 0.018 +19880104, 3.34, -0.88, -0.01, -0.30, 0.10, 0.015 +19880105, 1.22, 0.73, -0.48, -0.20, -0.05, 0.015 +19880106, 0.27, 0.39, 0.11, -0.06, 0.07, 0.015 +19880107, 0.74, -0.05, 0.29, -0.15, 0.33, 0.015 +19880108, -5.66, 2.93, 1.56, -0.30, 0.73, 0.015 +19880111, 0.90, -2.10, -0.37, 0.46, -0.13, 0.015 +19880112, -0.88, -0.15, 0.54, 0.04, 0.31, 0.015 +19880113, 0.19, -0.10, 0.36, -0.48, -0.17, 0.015 +19880114, 0.08, 0.31, 0.04, -0.44, -0.04, 0.015 +19880115, 2.31, -0.96, -0.45, 0.32, -0.25, 0.015 +19880118, 0.03, 0.24, 0.46, 0.08, 0.00, 0.015 +19880119, -0.70, 0.87, 0.57, -0.09, -0.06, 0.015 +19880120, -2.42, 0.61, 1.03, -0.28, 0.51, 0.015 +19880121, 0.17, -0.15, -0.10, -0.02, -0.10, 0.015 +19880122, 1.21, -0.32, 0.31, -0.23, 0.18, 0.015 +19880125, 1.93, -1.58, 0.07, 0.17, 0.20, 0.015 +19880126, -0.75, 0.63, 0.45, 0.12, -0.15, 0.015 +19880127, -0.05, 0.22, 0.31, 0.04, 0.23, 0.015 +19880128, 1.30, -0.69, 0.03, 0.27, 0.05, 0.015 +19880129, 1.24, -0.74, -0.05, 0.01, 0.17, 0.015 +19880201, -0.30, 0.82, 0.17, 0.27, -0.31, 0.023 +19880202, 0.19, -0.08, 0.25, 0.11, 0.27, 0.023 +19880203, -1.11, 0.82, 0.92, -0.06, 0.28, 0.023 +19880204, 0.00, -0.10, 0.14, -0.19, 0.11, 0.023 +19880205, -0.21, 0.56, 0.01, -0.15, 0.08, 0.023 +19880208, -0.68, 0.38, -0.16, 0.23, 0.37, 0.023 +19880209, 0.83, -0.73, -0.18, 0.20, 0.14, 0.023 +19880210, 1.72, -0.50, -0.51, 0.23, -0.29, 0.023 +19880211, -0.13, 0.74, -0.12, 0.04, -0.26, 0.023 +19880212, 0.55, 0.07, -0.32, 0.18, -0.13, 0.023 +19880216, 0.74, -0.44, -0.12, 0.06, 0.03, 0.023 +19880217, -0.17, 0.44, -0.10, 0.05, 0.24, 0.023 +19880218, -0.35, 0.67, -0.15, -0.03, 0.13, 0.023 +19880219, 1.13, -0.83, -0.02, 0.11, 0.19, 0.023 +19880222, 1.29, -0.36, -0.43, 0.03, -0.16, 0.023 +19880223, -0.06, 0.37, -0.13, 0.22, -0.12, 0.023 +19880224, 0.01, 0.62, -0.34, -0.03, -0.33, 0.023 +19880225, -0.73, 1.30, 0.20, -0.17, -0.32, 0.023 +19880226, 0.22, -0.09, -0.21, 0.24, 0.09, 0.023 +19880229, 1.79, -0.56, -0.42, 0.12, 0.02, 0.023 +19880301, -0.15, 0.27, -0.05, 0.19, -0.14, 0.019 +19880302, 0.43, 0.29, -0.24, -0.08, -0.11, 0.019 +19880303, 0.06, 0.26, -0.27, -0.04, -0.34, 0.019 +19880304, -0.13, 0.54, 0.07, -0.08, 0.26, 0.019 +19880307, 0.13, 0.53, -0.23, 0.04, 0.14, 0.019 +19880308, 0.69, 0.26, -0.20, -0.16, -0.26, 0.019 +19880309, 0.06, 0.95, -0.40, -0.19, -0.11, 0.019 +19880310, -1.66, 0.97, 0.33, -0.07, 0.68, 0.019 +19880311, 0.17, -0.33, 0.70, -0.14, 0.48, 0.019 +19880314, 0.42, -0.15, -0.33, 0.21, 0.04, 0.019 +19880315, -0.05, 0.14, 0.11, 0.24, 0.32, 0.019 +19880316, 0.81, -0.23, 0.10, 0.29, -0.19, 0.019 +19880317, 0.87, -0.45, -0.34, 0.13, 0.06, 0.019 +19880318, -0.01, 0.05, 0.34, -0.22, 0.14, 0.019 +19880321, -0.78, 0.29, 0.18, -0.21, 0.36, 0.019 +19880322, 0.06, 0.20, -0.20, 0.02, -0.08, 0.019 +19880323, 0.14, 0.38, 0.37, 0.05, 0.25, 0.019 +19880324, -1.80, 0.80, 0.22, 0.19, -0.14, 0.019 +19880325, -1.49, 0.82, 0.15, -0.07, -0.02, 0.019 +19880328, -0.40, -0.46, 0.12, -0.05, 0.06, 0.019 +19880329, 0.72, 0.03, -0.22, -0.06, -0.08, 0.019 +19880330, -0.64, 0.33, 0.47, 0.02, 0.34, 0.019 +19880331, 0.35, 0.67, 0.10, -0.20, 0.22, 0.019 +19880404, -0.93, 0.04, 0.31, 0.04, 0.08, 0.023 +19880405, 0.68, -0.49, -0.05, 0.17, 0.04, 0.023 +19880406, 2.20, -1.47, -0.04, 0.00, 0.20, 0.023 +19880407, 0.28, 0.23, 0.08, -0.01, 0.33, 0.023 +19880408, 1.09, -0.30, 0.06, 0.03, -0.15, 0.023 +19880411, 0.28, 0.13, 0.11, -0.15, 0.09, 0.023 +19880412, 0.45, -0.12, 0.12, -0.04, 0.04, 0.023 +19880413, -0.03, 0.04, 0.08, -0.03, 0.12, 0.023 +19880414, -3.76, 1.61, 0.44, 0.12, 0.17, 0.023 +19880415, -0.17, -0.31, -0.01, 0.00, 0.32, 0.023 +19880418, -0.14, 0.79, 0.25, -0.27, 0.21, 0.023 +19880419, -0.28, 0.74, -0.06, -0.03, -0.24, 0.023 +19880420, -0.70, 0.08, 0.03, -0.02, 0.21, 0.023 +19880421, -0.04, -0.23, 0.17, 0.15, 0.06, 0.023 +19880422, 1.09, -1.07, 0.24, -0.20, 0.42, 0.023 +19880425, 0.71, -0.46, 0.25, -0.02, 0.11, 0.023 +19880426, 0.60, -0.07, -0.20, -0.11, -0.19, 0.023 +19880427, 0.01, 0.36, -0.07, 0.12, 0.03, 0.023 +19880428, -0.39, 0.56, 0.01, 0.03, 0.03, 0.023 +19880429, -0.25, 0.91, -0.12, 0.06, 0.05, 0.023 +19880502, 0.02, -0.09, -0.31, 0.27, -0.25, 0.024 +19880503, 0.51, -0.21, 0.02, -0.03, -0.25, 0.024 +19880504, -0.75, 0.78, 0.12, -0.11, 0.06, 0.024 +19880505, -0.54, 0.29, 0.33, -0.08, 0.11, 0.024 +19880506, -0.38, 0.34, 0.52, -0.07, 0.38, 0.024 +19880509, -0.43, -0.29, 0.35, -0.10, 0.33, 0.024 +19880510, 0.24, -0.49, 0.32, 0.09, 0.35, 0.024 +19880511, -1.56, -0.01, 0.40, -0.01, 0.15, 0.024 +19880512, 0.25, -0.05, 0.15, -0.08, -0.06, 0.024 +19880513, 0.93, -0.29, 0.01, 0.16, -0.15, 0.024 +19880516, 0.59, -0.55, -0.04, -0.11, -0.11, 0.024 +19880517, -0.92, 0.70, 0.21, -0.13, -0.10, 0.024 +19880518, -1.49, 0.21, 0.47, -0.11, 0.37, 0.024 +19880519, 0.25, -0.68, -0.11, 0.15, 0.00, 0.024 +19880520, 0.11, 0.04, -0.05, -0.12, -0.03, 0.024 +19880523, -0.75, 0.17, 0.15, -0.21, -0.03, 0.024 +19880524, 0.86, -0.65, -0.19, -0.03, -0.05, 0.024 +19880525, 0.20, 0.00, 0.02, 0.11, -0.09, 0.024 +19880526, 0.33, 0.03, 0.08, -0.18, -0.05, 0.024 +19880527, -0.36, 0.17, 0.16, -0.23, -0.06, 0.024 +19880531, 2.70, -2.07, -0.21, 0.07, -0.17, 0.024 +19880601, 1.66, -0.68, -0.36, 0.40, -0.34, 0.022 +19880602, -0.40, 0.48, 0.02, -0.25, -0.10, 0.022 +19880603, 0.44, -0.03, 0.14, -0.11, 0.10, 0.022 +19880606, 0.27, 0.18, -0.28, 0.09, -0.40, 0.022 +19880607, -0.51, 0.47, -0.07, -0.04, 0.02, 0.022 +19880608, 1.97, -1.06, -0.17, -0.07, -0.03, 0.022 +19880609, -0.18, 0.76, -0.04, -0.01, -0.31, 0.022 +19880610, 0.30, 0.13, 0.13, -0.04, -0.17, 0.022 +19880613, 0.08, 0.13, -0.16, 0.21, -0.17, 0.022 +19880614, 0.87, -0.58, -0.02, 0.31, -0.22, 0.022 +19880615, 0.09, 0.07, 0.13, 0.09, -0.03, 0.022 +19880616, -1.31, 1.03, 0.31, -0.24, 0.23, 0.022 +19880617, 0.14, -0.37, 0.16, 0.02, 0.16, 0.022 +19880620, -0.51, 0.45, 0.15, -0.14, -0.10, 0.022 +19880621, 0.81, -0.63, -0.02, 0.02, 0.00, 0.022 +19880622, 1.25, -0.64, -0.12, 0.26, -0.26, 0.022 +19880623, -0.14, 0.43, -0.01, 0.16, -0.18, 0.022 +19880624, -0.21, 0.47, 0.07, -0.12, -0.30, 0.022 +19880627, -1.34, 1.17, 0.09, 0.18, -0.24, 0.022 +19880628, 0.93, -0.55, -0.28, 0.28, -0.01, 0.022 +19880629, -0.36, 0.48, -0.18, 0.16, -0.14, 0.022 +19880630, 0.86, 0.27, -0.54, 0.19, -0.66, 0.022 +19880701, -0.39, 0.44, 0.10, -0.22, 0.08, 0.025 +19880705, 1.09, -1.07, -0.01, -0.10, 0.18, 0.025 +19880706, -1.11, 1.12, 0.14, -0.04, -0.01, 0.025 +19880707, -0.06, 0.16, -0.02, -0.07, -0.15, 0.025 +19880708, -0.50, 0.36, 0.34, -0.08, -0.12, 0.025 +19880711, 0.11, -0.11, 0.05, -0.07, 0.17, 0.025 +19880712, -0.78, 0.58, 0.05, 0.20, 0.13, 0.025 +19880713, 0.30, -0.45, 0.11, -0.07, 0.09, 0.025 +19880714, 0.28, -0.03, 0.00, -0.02, -0.09, 0.025 +19880715, 0.44, -0.32, -0.01, -0.02, 0.01, 0.025 +19880718, -0.42, 0.44, 0.11, 0.01, 0.11, 0.025 +19880719, -0.76, 0.33, 0.45, -0.04, 0.24, 0.025 +19880720, 0.41, -0.23, 0.18, -0.02, 0.27, 0.025 +19880721, -1.05, 0.61, 0.30, 0.07, 0.14, 0.025 +19880722, -1.04, 0.50, 0.31, -0.19, 0.12, 0.025 +19880725, 0.28, -0.41, 0.01, 0.05, -0.03, 0.025 +19880726, 0.14, -0.24, 0.05, 0.00, 0.14, 0.025 +19880727, -0.85, 0.40, 0.48, -0.18, 0.20, 0.025 +19880728, 0.97, -1.00, -0.14, 0.19, 0.00, 0.025 +19880729, 1.75, -1.32, -0.24, 0.01, -0.01, 0.025 +19880801, 0.19, 0.12, 0.04, -0.05, -0.22, 0.026 +19880802, -0.01, -0.04, 0.25, -0.10, -0.06, 0.026 +19880803, 0.30, -0.26, -0.15, 0.02, 0.09, 0.026 +19880804, -0.21, 0.22, 0.22, -0.09, 0.17, 0.026 +19880805, -0.32, 0.09, 0.23, -0.02, 0.21, 0.026 +19880808, -0.33, 0.23, 0.14, 0.03, -0.09, 0.026 +19880809, -1.12, 0.39, 0.17, -0.06, 0.09, 0.026 +19880810, -1.66, 0.31, 0.42, -0.09, 0.38, 0.026 +19880811, 0.21, -0.47, -0.10, 0.04, -0.25, 0.026 +19880812, -0.10, 0.22, 0.06, -0.07, 0.04, 0.026 +19880815, -1.28, 0.25, 0.48, -0.13, 0.39, 0.026 +19880816, 0.59, -0.56, -0.37, 0.13, -0.04, 0.026 +19880817, 0.10, -0.20, 0.11, -0.10, 0.04, 0.026 +19880818, 0.13, 0.00, -0.11, 0.09, -0.22, 0.026 +19880819, -0.17, 0.29, 0.04, -0.23, 0.34, 0.026 +19880822, -1.12, 0.17, 0.61, -0.22, 0.40, 0.026 +19880823, -0.03, -0.16, 0.03, 0.03, 0.12, 0.026 +19880824, 1.25, -0.69, -0.30, 0.11, -0.20, 0.026 +19880825, -0.63, 0.17, 0.14, -0.07, 0.19, 0.026 +19880826, 0.15, -0.09, -0.03, -0.10, 0.02, 0.026 +19880829, 0.89, -0.66, -0.39, 0.28, -0.10, 0.026 +19880830, 0.10, -0.01, 0.23, -0.06, 0.21, 0.026 +19880831, -0.23, 0.65, 0.33, -0.10, 0.25, 0.026 +19880901, -1.10, 0.30, 0.42, -0.02, 0.28, 0.029 +19880902, 1.88, -1.31, -0.26, 0.10, -0.23, 0.029 +19880906, 0.37, -0.20, -0.31, 0.15, -0.22, 0.029 +19880907, 0.11, 0.12, -0.14, 0.28, -0.08, 0.029 +19880908, 0.12, 0.33, -0.21, 0.06, -0.13, 0.029 +19880909, 0.37, -0.08, -0.39, 0.08, -0.51, 0.029 +19880912, -0.10, 0.20, -0.17, 0.28, -0.19, 0.029 +19880913, 0.23, -0.16, 0.14, 0.03, 0.20, 0.029 +19880914, 0.56, -0.29, -0.09, 0.16, 0.15, 0.029 +19880915, -0.35, 0.33, 0.29, 0.00, 0.36, 0.029 +19880916, 0.69, -0.61, -0.01, -0.07, 0.00, 0.029 +19880919, -0.47, 0.37, 0.30, -0.14, 0.10, 0.029 +19880920, 0.27, -0.18, -0.01, 0.12, 0.24, 0.029 +19880921, 0.17, -0.18, -0.39, 0.29, -0.23, 0.029 +19880922, -0.35, 0.19, -0.03, 0.15, -0.13, 0.029 +19880923, 0.19, -0.08, 0.03, -0.12, -0.03, 0.029 +19880926, -0.34, -0.11, 0.39, 0.05, 0.10, 0.029 +19880927, -0.24, 0.04, 0.06, 0.07, 0.07, 0.029 +19880928, 0.27, -0.18, -0.19, 0.16, 0.05, 0.029 +19880929, 1.08, -0.43, -0.30, -0.02, -0.18, 0.029 +19880930, -0.08, 0.63, 0.21, 0.06, -0.09, 0.029 +19881003, -0.32, -0.60, 0.03, 0.16, -0.15, 0.029 +19881004, -0.19, 0.30, -0.18, 0.20, -0.16, 0.029 +19881005, 0.37, -0.21, 0.17, -0.18, -0.05, 0.029 +19881006, 0.15, -0.01, 0.14, 0.02, 0.05, 0.029 +19881007, 1.58, -1.51, 0.07, 0.25, 0.20, 0.029 +19881010, 0.07, 0.05, 0.05, 0.03, 0.08, 0.029 +19881011, -0.13, 0.00, 0.00, 0.14, 0.00, 0.029 +19881012, -1.25, 0.89, 0.52, -0.21, 0.34, 0.029 +19881013, 0.30, -0.42, 0.07, -0.17, -0.18, 0.029 +19881014, 0.10, 0.07, -0.17, 0.17, -0.09, 0.029 +19881017, 0.19, -0.18, 0.09, -0.21, 0.11, 0.029 +19881018, 0.80, -0.60, -0.13, 0.19, -0.28, 0.029 +19881019, -0.69, 0.58, 0.03, 0.14, -0.09, 0.029 +19881020, 1.67, -1.42, -0.69, 0.49, 0.35, 0.029 +19881021, 0.17, -0.24, 0.39, -0.24, 0.20, 0.029 +19881024, -0.32, 0.15, 0.09, 0.38, 0.10, 0.029 +19881025, -0.05, -0.13, 0.38, 0.01, 0.09, 0.029 +19881026, -0.34, 0.14, 0.22, -0.18, 0.18, 0.029 +19881027, -1.33, 0.32, 0.59, -0.02, 0.01, 0.029 +19881028, 0.33, -0.10, 0.08, 0.09, 0.10, 0.029 +19881031, 0.09, -0.05, -0.03, 0.39, 0.18, 0.029 +19881101, 0.05, -0.17, 0.15, -0.07, 0.32, 0.027 +19881102, -0.04, -0.15, 0.18, -0.11, 0.27, 0.027 +19881103, 0.08, 0.06, 0.27, -0.33, 0.04, 0.027 +19881104, -0.77, 0.30, 0.05, -0.05, 0.16, 0.027 +19881107, -0.90, -0.15, 0.21, 0.02, 0.21, 0.027 +19881108, 0.38, 0.01, -0.21, 0.00, -0.21, 0.027 +19881109, -0.54, 0.23, 0.01, -0.11, 0.04, 0.027 +19881110, 0.08, 0.07, 0.12, -0.09, 0.11, 0.027 +19881111, -1.82, 0.92, 0.27, -0.14, 0.25, 0.027 +19881114, -0.20, -0.40, 0.14, 0.02, 0.19, 0.027 +19881115, 0.16, -0.16, 0.01, 0.08, 0.02, 0.027 +19881116, -1.56, 0.42, 0.49, -0.22, 0.19, 0.027 +19881117, 0.10, -0.49, -0.20, -0.10, -0.08, 0.027 +19881118, 0.58, -0.54, -0.14, 0.14, -0.13, 0.027 +19881121, -0.22, -0.37, 0.38, 0.22, 0.30, 0.027 +19881122, 0.27, -0.44, 0.23, -0.01, 0.13, 0.027 +19881123, 0.63, -0.28, -0.21, 0.12, 0.01, 0.027 +19881125, -0.57, 0.44, 0.41, -0.11, 0.40, 0.027 +19881128, 0.36, -0.46, -0.11, -0.03, 0.04, 0.027 +19881129, 0.80, -0.45, -0.49, 0.28, -0.31, 0.027 +19881130, 0.91, -0.08, -0.32, 0.12, -0.31, 0.027 +19881201, -0.19, 0.51, -0.13, -0.11, -0.33, 0.030 +19881202, -0.20, 0.34, -0.40, -0.14, -0.29, 0.030 +19881205, 0.87, -0.36, -0.18, 0.27, -0.40, 0.030 +19881206, 0.83, -0.57, 0.04, 0.27, 0.01, 0.030 +19881207, 0.13, -0.10, 0.17, -0.11, 0.21, 0.030 +19881208, -0.48, 0.34, 0.08, 0.19, 0.36, 0.030 +19881209, 0.12, -0.07, 0.06, 0.10, 0.13, 0.030 +19881212, -0.18, -0.13, 0.33, 0.01, 0.16, 0.030 +19881213, -0.17, -0.09, 0.11, 0.06, 0.20, 0.030 +19881214, -0.33, 0.38, -0.02, 0.02, 0.12, 0.030 +19881215, -0.31, 0.31, -0.14, -0.06, -0.02, 0.030 +19881216, 0.60, 0.21, -0.36, 0.02, -0.05, 0.030 +19881219, 0.69, -0.64, -0.30, 0.36, -0.15, 0.030 +19881220, -0.32, 0.31, -0.11, 0.18, -0.20, 0.030 +19881221, -0.10, -0.07, -0.10, 0.04, 0.10, 0.030 +19881222, -0.10, 0.28, 0.07, -0.28, -0.02, 0.030 +19881223, 0.38, -0.16, -0.20, -0.23, -0.18, 0.030 +19881227, -0.30, 0.11, 0.00, 0.10, 0.08, 0.030 +19881228, 0.11, 0.04, -0.03, 0.07, 0.10, 0.030 +19881229, 0.67, -0.17, -0.26, 0.04, -0.13, 0.030 +19881230, -0.23, 1.37, -0.29, -0.09, -0.04, 0.030 +19890103, -0.82, 0.57, 0.29, -0.08, 0.14, 0.026 +19890104, 1.30, -0.39, -0.05, -0.13, -0.29, 0.026 +19890105, 0.21, 0.06, 0.28, -0.33, 0.30, 0.026 +19890106, 0.29, 0.28, 0.39, -0.35, 0.27, 0.026 +19890109, 0.12, -0.15, 0.31, -0.26, 0.13, 0.026 +19890110, -0.21, 0.00, 0.12, 0.06, 0.01, 0.026 +19890111, 0.43, -0.38, 0.03, 0.08, -0.19, 0.026 +19890112, 0.36, -0.09, -0.05, -0.04, 0.07, 0.026 +19890113, 0.14, -0.05, 0.06, -0.07, 0.15, 0.026 +19890116, 0.12, -0.10, 0.16, -0.02, 0.12, 0.026 +19890117, -0.21, 0.02, 0.22, -0.18, 0.43, 0.026 +19890118, 0.87, -0.27, 0.00, -0.12, -0.08, 0.026 +19890119, 0.14, 0.16, -0.19, -0.24, -0.11, 0.026 +19890120, -0.06, 0.16, 0.02, -0.14, 0.04, 0.026 +19890123, -0.60, 0.31, 0.13, 0.02, -0.10, 0.026 +19890124, 1.04, -0.90, -0.17, 0.12, 0.13, 0.026 +19890125, 0.26, 0.01, -0.07, 0.08, -0.14, 0.026 +19890126, 0.80, -0.31, -0.52, 0.13, -0.21, 0.026 +19890127, 0.64, -0.55, 0.02, 0.07, 0.10, 0.026 +19890130, 0.33, -0.18, -0.30, 0.17, -0.47, 0.026 +19890131, 0.77, -0.28, -0.18, 0.26, -0.13, 0.026 +19890201, -0.01, 0.45, -0.43, 0.06, -0.21, 0.032 +19890202, 0.00, 0.37, -0.12, -0.21, -0.07, 0.032 +19890203, 0.10, 0.32, -0.34, 0.10, -0.03, 0.032 +19890206, -0.17, 0.11, 0.34, -0.04, 0.28, 0.032 +19890207, 1.04, -0.43, 0.18, -0.04, -0.24, 0.032 +19890208, -0.21, 0.32, 0.20, 0.11, 0.14, 0.032 +19890209, -0.70, 0.49, 0.14, 0.04, 0.15, 0.032 +19890210, -1.27, 0.49, 0.35, -0.08, 0.52, 0.032 +19890213, 0.04, -0.39, 0.16, 0.05, 0.00, 0.032 +19890214, -0.10, 0.38, -0.23, 0.02, 0.14, 0.032 +19890215, 0.74, -0.33, -0.11, 0.01, -0.08, 0.032 +19890216, 0.21, 0.14, 0.14, -0.31, 0.16, 0.032 +19890217, 0.55, -0.22, -0.12, -0.10, -0.03, 0.032 +19890221, -0.23, 0.07, 0.10, -0.10, 0.18, 0.032 +19890222, -1.47, 0.68, 0.18, -0.14, 0.28, 0.032 +19890223, 0.26, -0.27, 0.03, -0.22, 0.25, 0.032 +19890224, -1.37, 0.78, 0.13, 0.00, 0.34, 0.032 +19890227, 0.07, -0.29, 0.11, -0.01, 0.01, 0.032 +19890228, 0.31, -0.02, 0.12, 0.05, 0.17, 0.032 +19890301, -0.37, 0.48, 0.14, 0.00, 0.09, 0.030 +19890302, 0.84, -0.23, -0.20, 0.01, -0.30, 0.030 +19890303, 0.36, 0.09, 0.04, -0.05, -0.02, 0.030 +19890306, 0.99, -0.49, -0.03, -0.15, -0.04, 0.030 +19890307, -0.17, 0.44, 0.10, 0.04, 0.04, 0.030 +19890308, 0.07, 0.16, -0.09, 0.11, -0.05, 0.030 +19890309, -0.10, 0.03, 0.02, 0.02, 0.11, 0.030 +19890310, -0.25, 0.37, -0.03, 0.18, 0.07, 0.030 +19890313, 0.61, -0.51, -0.08, 0.21, -0.04, 0.030 +19890314, -0.07, -0.09, 0.01, -0.04, 0.09, 0.030 +19890315, 0.39, 0.00, -0.03, 0.03, 0.39, 0.030 +19890316, 0.79, -0.32, -0.14, -0.05, -0.01, 0.030 +19890317, -2.08, 0.49, 0.58, -0.31, 0.41, 0.030 +19890320, -0.97, 0.04, 0.27, 0.13, 0.19, 0.030 +19890321, 0.45, 0.13, -0.14, -0.11, -0.10, 0.030 +19890322, -0.28, 0.26, 0.08, 0.09, 0.17, 0.030 +19890323, -0.39, 0.52, 0.03, -0.04, -0.18, 0.030 +19890327, 0.36, -0.47, 0.12, -0.10, 0.19, 0.030 +19890328, 0.35, 0.17, -0.15, -0.01, -0.12, 0.030 +19890329, 0.23, -0.15, -0.13, 0.07, 0.05, 0.030 +19890330, 0.06, -0.05, -0.06, 0.01, -0.13, 0.030 +19890331, 0.76, -0.18, 0.11, -0.02, -0.07, 0.030 +19890403, 0.45, -0.25, -0.13, 0.10, -0.03, 0.034 +19890404, -0.25, 0.10, -0.05, 0.15, 0.10, 0.034 +19890405, 0.27, -0.06, 0.16, -0.27, 0.09, 0.034 +19890406, -0.26, 0.25, -0.01, 0.03, 0.07, 0.034 +19890407, 0.55, -0.11, -0.30, -0.02, -0.45, 0.034 +19890410, -0.01, 0.10, -0.14, 0.02, -0.22, 0.034 +19890411, 0.40, 0.01, -0.06, -0.18, -0.22, 0.034 +19890412, 0.19, 0.27, -0.19, -0.02, -0.14, 0.034 +19890413, -0.75, 0.34, -0.01, 0.19, -0.13, 0.034 +19890414, 1.32, -0.71, -0.15, -0.06, -0.34, 0.034 +19890417, 0.07, -0.24, 0.06, 0.01, 0.12, 0.034 +19890418, 1.13, -0.78, -0.06, 0.35, -0.10, 0.034 +19890419, 0.35, -0.20, -0.05, 0.19, -0.06, 0.034 +19890420, -0.21, 0.29, 0.05, 0.00, 0.29, 0.034 +19890421, 0.72, -0.42, -0.06, 0.09, -0.04, 0.034 +19890424, -0.16, 0.19, 0.06, -0.15, 0.18, 0.034 +19890425, -0.45, 0.57, -0.34, 0.29, -0.03, 0.034 +19890426, 0.10, 0.06, -0.03, -0.08, 0.03, 0.034 +19890427, 0.71, -0.29, -0.09, 0.01, 0.33, 0.034 +19890428, 0.05, 0.19, -0.03, 0.07, 0.11, 0.034 +19890501, -0.15, 0.06, -0.10, -0.16, -0.02, 0.036 +19890502, -0.21, 0.44, 0.03, 0.00, 0.15, 0.036 +19890503, 0.00, 0.24, -0.28, 0.32, -0.16, 0.036 +19890504, -0.06, 0.28, -0.22, 0.09, -0.28, 0.036 +19890505, 0.01, 0.22, 0.11, -0.02, 0.02, 0.036 +19890508, -0.49, 0.07, 0.07, -0.09, 0.27, 0.036 +19890509, -0.20, 0.27, -0.07, 0.32, 0.07, 0.036 +19890510, 0.15, -0.03, -0.26, 0.22, -0.27, 0.036 +19890511, 0.30, -0.11, -0.25, -0.09, -0.08, 0.036 +19890512, 1.82, -1.33, -0.34, 0.02, -0.44, 0.036 +19890515, 0.66, -0.65, 0.01, 0.08, -0.10, 0.036 +19890516, -0.19, 0.04, 0.36, 0.02, 0.18, 0.036 +19890517, 0.62, -0.08, -0.30, 0.10, -0.18, 0.036 +19890518, 0.19, 0.25, -0.16, 0.03, -0.05, 0.036 +19890519, 0.78, -0.51, 0.01, 0.10, 0.00, 0.036 +19890522, 0.25, -0.45, 0.22, 0.04, 0.21, 0.036 +19890523, -0.92, 0.66, 0.31, -0.21, 0.18, 0.036 +19890524, 0.19, -0.01, 0.02, -0.01, 0.34, 0.036 +19890525, 0.08, 0.25, -0.18, -0.02, -0.05, 0.036 +19890526, 0.67, -0.20, -0.11, -0.14, 0.04, 0.036 +19890530, -0.61, 0.37, 0.28, -0.13, 0.01, 0.036 +19890531, 0.40, 0.14, 0.03, -0.01, 0.04, 0.036 +19890601, 0.45, 0.00, 0.05, -0.05, -0.04, 0.032 +19890602, 0.97, -0.47, -0.17, 0.07, 0.03, 0.032 +19890605, -0.87, 0.47, 0.35, 0.07, -0.10, 0.032 +19890606, 0.44, -0.50, 0.00, -0.09, 0.01, 0.032 +19890607, 0.81, -0.34, -0.24, 0.10, -0.03, 0.032 +19890608, 0.00, 0.23, -0.06, 0.10, -0.10, 0.032 +19890609, -0.02, -0.04, 0.09, 0.13, -0.05, 0.032 +19890612, -0.12, 0.08, 0.18, -0.05, 0.12, 0.032 +19890613, -0.67, 0.24, 0.50, -0.12, 0.36, 0.032 +19890614, -0.10, -0.07, 0.27, -0.18, 0.29, 0.032 +19890615, -1.06, 0.45, 0.08, -0.10, 0.14, 0.032 +19890616, 0.25, -0.02, -0.13, 0.03, -0.05, 0.032 +19890619, 0.08, -0.40, -0.09, -0.01, 0.13, 0.032 +19890620, -0.20, 0.00, 0.16, 0.19, 0.05, 0.032 +19890621, -0.21, -0.03, 0.04, 0.10, 0.36, 0.032 +19890622, 0.39, -0.30, -0.14, 0.00, -0.11, 0.032 +19890623, 1.41, -0.97, -0.38, 0.22, 0.02, 0.032 +19890626, -0.29, 0.13, 0.24, 0.13, -0.11, 0.032 +19890627, 0.50, -0.13, 0.04, 0.12, 0.10, 0.032 +19890628, -0.70, 0.13, 0.31, -0.26, 0.14, 0.032 +19890629, -1.83, 0.29, 0.68, -0.05, 0.56, 0.032 +19890630, -0.53, 0.16, 0.38, -0.10, -0.20, 0.032 +19890703, 0.33, -0.26, -0.11, 0.25, -0.03, 0.035 +19890705, 0.31, -0.21, -0.04, 0.02, 0.27, 0.035 +19890706, 0.36, 0.41, 0.00, 0.07, -0.07, 0.035 +19890707, 0.91, -0.50, -0.32, -0.19, 0.05, 0.035 +19890710, 0.52, -0.27, 0.06, 0.08, -0.05, 0.035 +19890711, 0.48, -0.32, -0.09, 0.08, -0.07, 0.035 +19890712, 0.30, 0.12, 0.01, 0.18, 0.10, 0.035 +19890713, 0.06, 0.13, -0.07, 0.02, -0.11, 0.035 +19890714, 0.37, -0.44, 0.18, 0.05, 0.01, 0.035 +19890717, 0.19, 0.07, -0.34, 0.14, -0.20, 0.035 +19890718, -0.31, 0.17, -0.02, -0.06, 0.14, 0.035 +19890719, 1.09, -0.46, -0.63, 0.23, -0.29, 0.035 +19890720, -0.58, 0.38, 0.04, 0.04, 0.12, 0.035 +19890721, 0.42, -0.51, -0.24, 0.04, -0.23, 0.035 +19890724, -0.59, 0.13, -0.03, 0.02, 0.01, 0.035 +19890725, 0.02, -0.10, -0.02, 0.20, -0.12, 0.035 +19890726, 1.00, -0.69, -0.46, 0.49, -0.07, 0.035 +19890727, 1.01, -0.58, -0.60, 0.17, 0.06, 0.035 +19890728, 0.10, -0.10, -0.03, -0.14, -0.03, 0.035 +19890731, 0.94, -0.79, 0.08, 0.24, -0.04, 0.035 +19890801, -0.50, 0.29, 0.44, -0.06, -0.13, 0.032 +19890802, 0.18, -0.10, 0.07, 0.06, -0.14, 0.032 +19890803, 0.23, 0.34, -0.06, 0.28, -0.41, 0.032 +19890804, -0.22, 0.30, 0.20, 0.00, -0.06, 0.032 +19890807, 1.27, -0.74, -0.02, 0.07, -0.01, 0.032 +19890808, 0.08, 0.01, 0.00, -0.02, -0.09, 0.032 +19890809, -0.47, 0.62, 0.04, 0.29, 0.05, 0.032 +19890810, 0.36, -0.03, 0.16, 0.15, -0.12, 0.032 +19890811, -0.80, 0.59, 0.08, -0.08, 0.03, 0.032 +19890814, -0.50, -0.01, 0.00, 0.12, 0.21, 0.032 +19890815, 0.33, -0.32, 0.15, -0.13, 0.17, 0.032 +19890816, 0.19, -0.19, -0.02, 0.17, 0.09, 0.032 +19890817, -0.27, 0.10, -0.21, 0.07, -0.15, 0.032 +19890818, 0.31, -0.21, -0.05, -0.23, 0.05, 0.032 +19890821, -1.28, 0.64, 0.20, -0.32, 0.16, 0.032 +19890822, 0.01, -0.12, -0.45, 0.27, -0.10, 0.032 +19890823, 0.88, -0.33, -0.18, -0.16, -0.09, 0.032 +19890824, 1.68, -1.01, -0.22, 0.05, -0.11, 0.032 +19890825, -0.16, 0.29, 0.08, 0.13, -0.07, 0.032 +19890828, 0.30, -0.34, -0.01, -0.15, 0.11, 0.032 +19890829, -0.50, 0.43, 0.16, -0.04, -0.06, 0.032 +19890830, 0.24, 0.05, 0.17, -0.01, -0.08, 0.032 +19890831, 0.13, 0.13, 0.20, -0.11, 0.20, 0.032 +19890901, 0.59, -0.34, -0.02, 0.05, 0.05, 0.033 +19890905, -0.22, 0.24, -0.05, 0.13, -0.14, 0.033 +19890906, -0.85, 0.48, 0.18, 0.10, 0.00, 0.033 +19890907, -0.18, 0.33, 0.27, -0.26, 0.31, 0.033 +19890908, 0.09, 0.33, -0.02, -0.06, 0.01, 0.033 +19890911, -0.29, -0.21, 0.14, 0.18, 0.01, 0.033 +19890912, 0.33, -0.06, -0.14, -0.18, 0.25, 0.033 +19890913, -0.77, 0.67, 0.15, -0.21, 0.14, 0.033 +19890914, -0.74, 0.11, -0.21, 0.12, 0.05, 0.033 +19890915, 0.19, -0.77, 0.05, 0.14, -0.10, 0.033 +19890918, 0.34, -0.48, -0.16, 0.24, 0.17, 0.033 +19890919, 0.06, -0.06, -0.13, -0.01, 0.07, 0.033 +19890920, -0.09, -0.05, 0.02, -0.13, 0.16, 0.033 +19890921, -0.11, 0.17, -0.15, 0.13, -0.02, 0.033 +19890922, 0.26, -0.11, 0.02, 0.21, 0.27, 0.033 +19890925, -0.71, 0.32, -0.03, 0.00, -0.05, 0.033 +19890926, 0.12, 0.23, -0.22, 0.17, -0.23, 0.033 +19890927, 0.11, -0.24, -0.52, 0.41, -0.40, 0.033 +19890928, 0.88, -0.30, -0.54, 0.44, -0.18, 0.033 +19890929, 0.26, 0.15, 0.03, -0.05, 0.27, 0.033 +19891002, 0.45, -0.17, 0.04, -0.12, -0.28, 0.031 +19891003, 0.95, -0.66, -0.29, 0.19, -0.15, 0.031 +19891004, 0.53, -0.44, -0.12, 0.15, -0.06, 0.031 +19891005, 0.06, 0.12, 0.13, 0.01, -0.22, 0.031 +19891006, 0.47, -0.23, -0.23, 0.00, 0.08, 0.031 +19891009, 0.20, -0.02, -0.18, 0.23, -0.33, 0.031 +19891010, -0.20, -0.12, -0.11, 0.00, 0.12, 0.031 +19891011, -0.60, 0.15, 0.09, -0.10, 0.21, 0.031 +19891012, -0.41, 0.23, -0.12, -0.11, 0.20, 0.031 +19891013, -5.52, 2.05, 0.97, -0.31, 0.15, 0.031 +19891016, 1.64, -3.53, -0.63, 0.71, -0.07, 0.031 +19891017, -0.43, 0.26, -0.26, 0.03, -0.36, 0.031 +19891018, 0.25, 0.35, -0.37, -0.12, 0.03, 0.031 +19891019, 1.52, -0.19, -0.65, -0.28, -0.07, 0.031 +19891020, -0.05, -0.02, 0.10, -0.09, 0.15, 0.031 +19891023, -0.67, 0.00, -0.05, 0.17, -0.12, 0.031 +19891024, -0.56, -0.83, -0.15, 0.25, 0.06, 0.031 +19891025, -0.26, 0.53, 0.17, -0.37, 0.29, 0.031 +19891026, -1.14, 0.29, 0.19, -0.20, 0.20, 0.031 +19891027, -0.99, -0.16, 0.42, -0.19, 0.33, 0.031 +19891030, -0.06, -0.39, 0.02, 0.10, -0.13, 0.031 +19891031, 1.34, -0.78, -0.19, 0.09, -0.03, 0.031 +19891101, 0.29, -0.10, 0.24, 0.04, -0.03, 0.033 +19891102, -0.66, 0.32, 0.30, -0.28, 0.34, 0.033 +19891103, -0.20, 0.27, 0.04, -0.15, 0.25, 0.033 +19891106, -1.36, 0.41, -0.01, 0.04, 0.23, 0.033 +19891107, 0.49, -0.51, 0.03, 0.32, 0.09, 0.033 +19891108, 0.97, -0.12, -0.70, 0.43, -0.36, 0.033 +19891109, -0.34, 0.35, -0.07, -0.10, -0.19, 0.033 +19891110, 0.59, -0.28, -0.39, 0.10, -0.16, 0.033 +19891113, 0.15, -0.22, -0.08, -0.05, 0.18, 0.033 +19891114, -0.47, 0.16, 0.28, -0.27, 0.16, 0.033 +19891115, 0.58, -0.41, -0.12, -0.21, -0.04, 0.033 +19891116, 0.02, -0.08, -0.08, 0.00, 0.04, 0.033 +19891117, 0.28, 0.02, -0.30, -0.15, -0.08, 0.033 +19891120, -0.64, 0.01, -0.08, -0.04, 0.01, 0.033 +19891121, -0.08, -0.24, -0.02, 0.04, 0.17, 0.033 +19891122, 0.53, -0.29, -0.22, 0.01, 0.07, 0.033 +19891124, 0.54, -0.23, -0.16, 0.08, 0.05, 0.033 +19891127, 0.37, -0.23, 0.23, 0.06, 0.22, 0.033 +19891128, 0.08, 0.14, 0.14, -0.25, 0.18, 0.033 +19891129, -0.56, 0.22, 0.05, -0.20, 0.17, 0.033 +19891130, 0.44, -0.52, -0.21, -0.28, 0.14, 0.033 +19891201, 1.06, -0.91, 0.01, 0.21, 0.11, 0.030 +19891204, 0.26, -0.27, 0.06, 0.16, 0.06, 0.030 +19891205, -0.38, 0.25, 0.16, -0.07, -0.08, 0.030 +19891206, -0.31, 0.40, 0.21, -0.31, 0.18, 0.030 +19891207, -0.25, 0.02, -0.27, -0.11, -0.04, 0.030 +19891208, 0.16, -0.11, 0.20, -0.06, 0.20, 0.030 +19891211, -0.14, -0.34, 0.05, 0.00, 0.45, 0.030 +19891212, 0.59, -0.81, 0.31, -0.18, 0.59, 0.030 +19891213, 0.25, -0.13, 0.14, -0.31, 0.20, 0.030 +19891214, -0.54, -0.20, 0.16, -0.21, 0.27, 0.030 +19891215, -0.39, -0.16, -0.27, -0.04, 0.37, 0.030 +19891218, -1.74, 0.13, 0.31, -0.04, 0.46, 0.030 +19891219, -0.44, -0.27, -0.06, 0.18, 0.09, 0.030 +19891220, 0.09, 0.05, 0.31, 0.08, -0.12, 0.030 +19891221, 0.53, 0.02, -0.06, 0.06, -0.37, 0.030 +19891222, 0.80, 0.00, -0.33, 0.28, -0.07, 0.030 +19891226, -0.09, 0.21, 0.06, 0.01, -0.22, 0.030 +19891227, 0.50, -0.20, -0.14, 0.15, -0.19, 0.030 +19891228, 0.46, -0.31, -0.32, 0.32, -0.30, 0.030 +19891229, 0.77, 0.33, -0.28, -0.20, -0.26, 0.030 +19900102, 1.44, -0.67, -0.06, 0.18, -0.45, 0.026 +19900103, -0.06, 0.72, -0.31, 0.16, -0.46, 0.026 +19900104, -0.71, 0.45, -0.25, -0.05, -0.02, 0.026 +19900105, -0.85, 0.73, -0.23, -0.01, -0.10, 0.026 +19900108, 0.30, -0.40, -0.24, 0.05, 0.31, 0.026 +19900109, -1.01, 0.87, 0.09, -0.10, 0.14, 0.026 +19900110, -0.76, -0.07, 0.32, -0.27, 0.40, 0.026 +19900111, 0.23, -0.19, 0.09, 0.03, 0.20, 0.026 +19900112, -2.33, 0.27, 0.39, -0.35, 0.25, 0.026 +19900115, -0.95, 0.02, 0.46, -0.27, 0.16, 0.026 +19900116, 0.92, -0.72, -0.41, 0.46, -0.31, 0.026 +19900117, -0.76, 0.94, -0.27, -0.09, 0.02, 0.026 +19900118, 0.05, -0.62, -0.04, 0.09, 0.15, 0.026 +19900119, 0.31, 0.08, 0.04, -0.54, 0.06, 0.026 +19900122, -2.31, 0.79, 0.50, -0.14, 0.14, 0.026 +19900123, -0.07, -0.45, 0.05, 0.03, 0.36, 0.026 +19900124, -0.44, -1.10, -0.36, 0.17, -0.04, 0.026 +19900125, -1.07, 1.02, 0.31, -0.35, 0.27, 0.026 +19900126, -0.36, -0.54, 0.45, -0.03, 0.00, 0.026 +19900129, -0.34, -0.72, 0.02, 0.14, 0.34, 0.026 +19900130, -0.90, -0.70, 0.59, -0.26, 0.12, 0.026 +19900131, 1.67, -1.22, -0.16, -0.08, -0.06, 0.026 +19900201, 0.08, 0.56, -0.03, -0.22, -0.03, 0.030 +19900202, 0.73, 0.29, -0.55, -0.12, 0.11, 0.030 +19900205, 0.38, 0.22, -0.28, 0.02, -0.21, 0.030 +19900206, -0.54, 0.56, 0.13, -0.19, -0.06, 0.030 +19900207, 1.07, -0.39, -0.27, -0.04, -0.24, 0.030 +19900208, -0.09, 0.29, -0.07, 0.04, 0.09, 0.030 +19900209, 0.24, -0.01, 0.08, -0.09, -0.22, 0.030 +19900212, -0.94, 0.53, 0.19, 0.00, 0.15, 0.030 +19900213, 0.14, -0.48, 0.14, 0.09, 0.12, 0.030 +19900214, 0.20, -0.08, 0.10, 0.04, 0.11, 0.030 +19900215, 0.78, -0.34, -0.05, 0.34, 0.04, 0.030 +19900216, -0.50, 0.54, 0.20, -0.18, 0.10, 0.030 +19900220, -1.35, 0.49, 0.35, -0.15, 0.06, 0.030 +19900221, -0.21, -0.42, 0.48, -0.08, 0.15, 0.030 +19900222, -0.36, 0.83, 0.00, 0.14, -0.37, 0.030 +19900223, -0.55, -0.18, 0.49, 0.17, 0.00, 0.030 +19900226, 1.00, -1.28, -0.12, 0.31, -0.06, 0.030 +19900227, 0.54, -0.15, -0.08, -0.04, -0.07, 0.030 +19900228, 0.53, 0.15, -0.12, -0.21, -0.26, 0.030 +19900301, 0.26, -0.03, -0.09, 0.10, -0.30, 0.029 +19900302, 0.80, -0.03, -0.26, 0.22, -0.22, 0.029 +19900305, -0.37, 0.56, -0.14, 0.21, -0.01, 0.029 +19900306, 1.07, -0.44, -0.40, 0.28, 0.13, 0.029 +19900307, -0.22, 0.55, -0.26, 0.03, -0.15, 0.029 +19900308, 0.84, -0.12, -0.52, 0.30, -0.14, 0.029 +19900309, -0.53, 0.47, 0.03, -0.22, -0.08, 0.029 +19900312, 0.15, -0.15, -0.04, 0.37, -0.24, 0.029 +19900313, -0.69, 0.50, 0.27, -0.01, -0.10, 0.029 +19900314, 0.23, 0.17, -0.35, 0.00, 0.00, 0.029 +19900315, 0.25, 0.05, -0.17, 0.07, -0.10, 0.029 +19900316, 0.90, -0.40, -0.60, 0.15, -0.13, 0.029 +19900319, 0.38, -0.25, -0.74, 0.46, -0.23, 0.029 +19900320, -0.55, 0.36, 0.20, 0.09, -0.14, 0.029 +19900321, -0.45, 0.42, -0.03, -0.13, 0.09, 0.029 +19900322, -1.22, 0.33, 0.37, 0.04, 0.29, 0.029 +19900323, 0.44, 0.08, -0.37, 0.16, -0.11, 0.029 +19900326, 0.17, 0.08, -0.12, 0.34, -0.23, 0.029 +19900327, 0.80, -0.72, -0.31, 0.38, 0.08, 0.029 +19900328, 0.09, -0.32, 0.55, -0.39, 0.38, 0.029 +19900329, -0.35, 0.14, 0.12, -0.10, 0.23, 0.029 +19900330, -0.18, 0.34, 0.02, -0.26, 0.01, 0.029 +19900402, -0.42, -0.41, -0.06, 0.36, 0.03, 0.034 +19900403, 1.25, -0.68, -0.50, 0.14, -0.27, 0.034 +19900404, -0.64, 0.21, 0.07, 0.05, -0.13, 0.034 +19900405, -0.15, 0.19, -0.41, -0.10, 0.16, 0.034 +19900406, -0.29, -0.05, -0.23, 0.14, 0.02, 0.034 +19900409, 0.21, -0.73, -0.23, 0.38, -0.15, 0.034 +19900410, 0.17, 0.06, -0.24, 0.30, -0.26, 0.034 +19900411, 0.01, 0.14, -0.30, 0.16, -0.52, 0.034 +19900412, 0.69, -0.37, -0.35, 0.16, -0.25, 0.034 +19900416, 0.08, -0.06, -0.07, -0.04, -0.28, 0.034 +19900417, -0.08, -0.08, 0.03, 0.09, 0.01, 0.034 +19900418, -1.07, 0.47, 0.20, -0.04, -0.25, 0.034 +19900419, -0.75, 0.39, 0.32, -0.17, 0.25, 0.034 +19900420, -0.89, 0.32, -0.23, 0.11, 0.09, 0.034 +19900423, -1.17, 0.05, 0.24, 0.23, 0.17, 0.034 +19900424, -0.28, 0.20, -0.02, -0.01, 0.16, 0.034 +19900425, 0.45, -0.28, -0.19, 0.02, 0.13, 0.034 +19900426, 0.15, -0.02, -0.36, 0.22, 0.04, 0.034 +19900427, -1.08, 0.51, 0.32, -0.32, 0.23, 0.034 +19900430, 0.45, -0.31, -0.65, 0.12, -0.19, 0.034 +19900501, 0.42, -0.23, -0.08, -0.05, -0.13, 0.031 +19900502, 0.55, -0.34, -0.13, -0.06, -0.37, 0.031 +19900503, 0.31, 0.00, 0.06, -0.14, 0.07, 0.031 +19900504, 0.75, -0.35, -0.13, 0.03, -0.24, 0.031 +19900507, 0.56, -0.31, -0.15, 0.15, -0.22, 0.031 +19900508, 0.37, -0.42, 0.12, 0.14, 0.00, 0.031 +19900509, 0.11, -0.18, 0.14, -0.23, 0.11, 0.031 +19900510, 0.39, -0.09, -0.07, -0.05, 0.12, 0.031 +19900511, 2.01, -1.19, -0.09, -0.02, 0.21, 0.031 +19900514, 0.79, -0.35, -0.15, 0.44, -0.05, 0.031 +19900515, -0.08, 0.04, -0.06, 0.22, -0.15, 0.031 +19900516, -0.11, 0.15, 0.03, 0.00, 0.08, 0.031 +19900517, 0.19, 0.47, -0.28, 0.05, -0.12, 0.031 +19900518, 0.09, 0.23, -0.51, 0.06, -0.08, 0.031 +19900521, 0.94, -0.17, -0.68, 0.29, -0.40, 0.031 +19900522, 0.15, 0.20, -0.56, 0.37, -0.26, 0.031 +19900523, 0.22, 0.17, -0.57, 0.41, -0.28, 0.031 +19900524, -0.08, 0.29, -0.32, -0.11, -0.01, 0.031 +19900525, -0.94, 0.59, 0.55, -0.26, 0.10, 0.031 +19900529, 1.35, -0.95, -0.38, 0.27, 0.05, 0.031 +19900530, 0.07, 0.11, -0.04, 0.02, 0.23, 0.031 +19900531, 0.07, 0.04, -0.19, 0.01, -0.10, 0.031 +19900601, 0.53, -0.08, 0.10, 0.05, -0.27, 0.030 +19900604, 1.11, -0.61, 0.26, -0.13, -0.01, 0.030 +19900605, -0.17, 0.07, 0.34, 0.03, 0.13, 0.030 +19900606, -0.36, 0.29, 0.18, -0.26, -0.07, 0.030 +19900607, -0.47, 0.37, 0.02, -0.07, -0.01, 0.030 +19900608, -1.10, 0.63, 0.16, -0.23, 0.15, 0.030 +19900611, 0.67, -0.52, -0.03, -0.19, -0.11, 0.030 +19900612, 1.10, -0.62, -0.67, 0.36, -0.26, 0.030 +19900613, -0.26, 0.75, -0.49, -0.22, -0.12, 0.030 +19900614, -0.53, 0.31, -0.16, -0.23, 0.09, 0.030 +19900615, -0.10, 0.27, -0.32, 0.01, 0.05, 0.030 +19900618, -1.47, 0.20, 0.29, -0.16, 0.19, 0.030 +19900619, 0.29, -0.44, -0.06, 0.24, -0.19, 0.030 +19900620, 0.06, -0.10, -0.12, 0.21, 0.14, 0.030 +19900621, 0.26, -0.25, -0.47, 0.02, 0.11, 0.030 +19900622, -1.07, 1.06, 0.01, -0.09, -0.05, 0.030 +19900625, -0.86, 0.31, -0.07, -0.10, -0.08, 0.030 +19900626, -0.15, -0.05, -0.05, 0.00, 0.29, 0.030 +19900627, 0.65, -0.56, -0.14, 0.07, -0.27, 0.030 +19900628, 0.66, 0.02, -0.73, 0.10, -0.10, 0.030 +19900629, 0.17, 0.32, 0.00, -0.37, 0.00, 0.030 +19900702, 0.30, -0.39, -0.12, 0.41, -0.12, 0.032 +19900703, 0.13, -0.18, -0.34, 0.49, -0.21, 0.032 +19900705, -1.04, 0.45, 0.02, -0.10, 0.10, 0.032 +19900706, 0.61, -0.39, -0.25, 0.30, -0.13, 0.032 +19900709, 0.22, -0.32, -0.15, 0.25, -0.40, 0.032 +19900710, -0.67, 0.43, -0.25, 0.16, -0.24, 0.032 +19900711, 1.04, -0.45, -0.55, 0.17, -0.05, 0.032 +19900712, 1.02, -0.54, -0.54, -0.03, 0.53, 0.032 +19900713, 0.42, -0.16, -0.11, 0.03, -0.18, 0.032 +19900716, 0.37, -0.34, -0.45, 0.11, -0.18, 0.032 +19900717, -0.45, -0.25, 0.49, -0.15, 0.36, 0.032 +19900718, -0.92, 0.30, 0.43, -0.24, 0.16, 0.032 +19900719, 0.12, -0.65, 0.06, 0.02, 0.51, 0.032 +19900720, -0.87, 0.62, -0.03, -0.11, 0.31, 0.032 +19900723, -1.89, -0.47, 0.77, -0.34, 0.76, 0.032 +19900724, 0.00, -0.02, 0.13, -0.30, 0.88, 0.032 +19900725, 0.35, 0.10, -0.15, -0.04, -0.22, 0.032 +19900726, -0.25, 0.40, -0.03, -0.25, -0.40, 0.032 +19900727, -0.68, 0.03, 0.49, -0.26, 0.59, 0.032 +19900730, 0.26, -1.13, 0.31, -0.06, 0.44, 0.032 +19900731, 0.07, -0.40, 0.23, -0.29, 0.62, 0.032 +19900801, -0.20, -0.32, -0.09, -0.04, 0.37, 0.028 +19900802, -1.22, -0.18, 0.46, -1.01, 1.43, 0.028 +19900803, -1.84, -0.74, 0.64, -0.21, 0.36, 0.028 +19900806, -3.32, -0.22, 1.37, -1.07, 1.81, 0.028 +19900807, 0.17, -0.06, -0.81, 0.39, -0.46, 0.028 +19900808, 1.11, 0.02, -0.73, 0.79, -1.10, 0.028 +19900809, 0.63, 0.31, -0.96, 0.47, -0.59, 0.028 +19900810, -1.19, 0.18, 0.58, -0.79, 0.84, 0.028 +19900813, 0.71, -1.06, -0.31, 0.34, -0.06, 0.028 +19900814, 0.21, 0.19, -0.20, -0.24, -0.04, 0.028 +19900815, 0.25, -0.16, -0.39, 0.20, -0.32, 0.028 +19900816, -2.18, 0.42, 0.70, -0.61, 0.83, 0.028 +19900817, -1.55, -0.35, 0.80, -0.27, 0.98, 0.028 +19900820, -0.11, -0.92, 0.52, -0.11, 0.63, 0.028 +19900821, -2.00, -0.40, 0.75, -0.24, 0.34, 0.028 +19900822, -1.58, 0.29, 0.90, -0.32, 0.32, 0.028 +19900823, -3.24, -1.03, 1.58, -0.03, 0.31, 0.028 +19900824, 1.46, -0.38, -1.69, 0.98, -1.54, 0.028 +19900827, 3.20, 0.08, -1.85, 1.35, -1.60, 0.028 +19900828, 0.07, 0.47, -0.08, 0.24, 0.03, 0.028 +19900829, 0.74, -0.50, 0.23, 0.05, 0.24, 0.028 +19900830, -1.39, 0.92, 0.33, -0.34, 0.30, 0.028 +19900831, 0.95, -0.80, -0.21, 0.09, 0.08, 0.028 +19900904, 0.09, -0.36, -0.27, 0.05, -0.01, 0.031 +19900905, 0.35, 0.17, -0.17, -0.23, 0.73, 0.031 +19900906, -1.06, 0.40, 0.62, -0.87, 0.60, 0.031 +19900907, 0.79, -0.45, -0.16, 0.00, 0.03, 0.031 +19900910, -0.38, 0.58, 0.02, 0.20, -0.27, 0.031 +19900911, -0.19, -0.12, 0.05, -0.07, 0.15, 0.031 +19900912, 0.29, -0.39, -0.10, -0.07, 0.39, 0.031 +19900913, -1.11, 0.32, 0.23, -0.20, 0.37, 0.031 +19900914, -0.61, -0.09, -0.18, -0.06, 0.28, 0.031 +19900917, 0.18, -0.63, -0.14, -0.17, 0.39, 0.031 +19900918, 0.07, -0.60, -0.13, 0.28, 0.31, 0.031 +19900919, -0.57, 0.49, 0.47, -0.08, 0.44, 0.031 +19900920, -1.61, 0.19, 0.68, -0.40, 0.61, 0.031 +19900921, -0.20, -0.64, 0.14, -0.19, 0.58, 0.031 +19900924, -2.19, -0.33, 0.61, -0.22, 0.71, 0.031 +19900925, 1.03, -0.86, -0.78, 0.72, -0.61, 0.031 +19900926, -1.07, -0.33, 0.23, 0.14, -0.01, 0.031 +19900927, -1.51, -0.36, 0.76, 0.08, 0.30, 0.031 +19900928, 1.50, -1.06, -1.16, 0.92, -1.08, 0.031 +19901001, 2.74, -1.48, -1.23, 1.37, -1.57, 0.030 +19901002, 0.20, 0.50, 0.17, 0.26, -0.31, 0.030 +19901003, -1.16, 0.36, 0.31, -0.18, 0.81, 0.030 +19901004, 0.19, -0.61, 0.36, -0.31, 0.25, 0.030 +19901005, -0.46, -0.23, 0.33, 0.24, 0.31, 0.030 +19901008, 0.53, -0.50, 0.03, 0.22, 0.19, 0.030 +19901009, -2.54, 0.56, 0.78, -0.53, 0.75, 0.030 +19901010, -1.60, 0.22, 0.50, 0.22, -0.09, 0.030 +19901011, -1.76, -0.43, 0.85, 0.20, 0.21, 0.030 +19901012, 1.28, -0.96, -0.46, 0.32, -0.63, 0.030 +19901015, 0.91, -0.93, -0.18, 0.44, -0.12, 0.030 +19901016, -1.40, 0.47, 0.48, -0.39, 0.51, 0.030 +19901017, -0.02, -0.14, -0.43, -0.07, -0.13, 0.030 +19901018, 2.20, -0.75, -1.40, 1.10, -1.49, 0.030 +19901019, 1.77, -1.15, -0.48, 0.16, -0.15, 0.030 +19901022, 0.78, -0.95, -0.30, 0.65, -0.50, 0.030 +19901023, -0.52, 0.90, -0.17, -0.04, -0.41, 0.030 +19901024, -0.03, -0.04, 0.04, -0.24, 0.21, 0.030 +19901025, -0.66, 0.59, 0.15, -0.04, 0.54, 0.030 +19901026, -1.68, 0.52, 0.03, -0.02, 0.38, 0.030 +19901029, -0.96, 0.02, 0.37, -0.07, 0.28, 0.030 +19901030, 0.46, -1.23, -0.12, -0.05, 0.05, 0.030 +19901031, 0.02, -0.07, 0.41, -0.21, 0.25, 0.030 +19901101, 0.79, -0.72, 0.16, -0.21, 0.28, 0.027 +19901102, 1.55, -0.61, -0.32, -0.19, -0.32, 0.027 +19901105, 0.96, -0.21, -0.50, 0.42, -0.72, 0.027 +19901106, -0.71, 0.74, 0.23, -0.27, -0.11, 0.027 +19901107, -1.59, 0.88, 0.38, -0.13, 0.09, 0.027 +19901108, 0.44, -0.70, -0.17, 0.16, -0.08, 0.027 +19901109, 1.81, -0.99, -0.24, -0.01, -0.59, 0.027 +19901112, 1.92, -0.37, -0.69, 0.39, -1.31, 0.027 +19901113, -0.34, 0.65, -0.04, 0.19, -0.53, 0.027 +19901114, 0.82, 0.13, -0.18, 0.27, -0.53, 0.027 +19901115, -0.91, 0.64, 0.00, 0.24, 0.06, 0.027 +19901116, -0.05, -0.09, 0.36, -0.44, 0.07, 0.027 +19901119, 0.58, -0.30, -0.37, 0.32, -0.35, 0.027 +19901120, -1.09, 0.53, 0.01, -0.05, 0.08, 0.027 +19901121, 0.07, -0.19, -0.18, 0.24, 0.07, 0.027 +19901123, -0.25, 0.45, -0.11, 0.25, -0.19, 0.027 +19901126, 0.29, -0.49, 0.19, -0.09, 0.21, 0.027 +19901127, 0.68, 0.39, -0.79, 0.01, -0.24, 0.027 +19901128, 0.04, 0.36, 0.04, -0.28, 0.11, 0.027 +19901129, -0.39, 0.45, -0.30, -0.06, -0.27, 0.027 +19901130, 1.61, -0.67, -0.45, 0.03, -0.22, 0.027 +19901203, 0.68, -0.20, -0.23, 0.58, -0.58, 0.030 +19901204, 0.72, -0.24, 0.18, 0.31, -0.32, 0.030 +19901205, 1.18, 0.46, 0.20, 0.36, -0.50, 0.030 +19901206, -0.22, 0.62, -0.13, 0.46, -0.45, 0.030 +19901207, -0.39, 0.30, -0.09, 0.02, 0.30, 0.030 +19901210, 0.22, -0.45, -0.05, 0.30, -0.21, 0.030 +19901211, -0.61, -0.05, 0.23, -0.26, 0.17, 0.030 +19901212, 0.93, -0.47, -0.51, 0.27, -0.44, 0.030 +19901213, -0.11, 0.52, -0.42, 0.26, 0.24, 0.030 +19901214, -0.78, 0.16, 0.03, -0.27, 0.09, 0.030 +19901217, -0.40, -0.46, 0.06, 0.05, 0.39, 0.030 +19901218, 1.18, -0.66, 0.08, 0.07, -0.52, 0.030 +19901219, 0.07, 0.30, 0.15, 0.05, -0.04, 0.030 +19901220, 0.06, 0.03, -0.19, -0.05, -0.30, 0.030 +19901221, 0.30, -0.31, -0.10, 0.16, -0.38, 0.030 +19901224, -0.40, 0.08, 0.00, 0.00, 0.25, 0.030 +19901226, 0.24, -0.13, -0.09, 0.04, 0.29, 0.030 +19901227, -0.63, 0.50, 0.08, 0.13, 0.07, 0.030 +19901228, -0.02, -0.12, -0.14, 0.09, -0.03, 0.030 +19901231, 0.43, 0.72, -0.54, 0.20, 0.01, 0.030 +19910102, -0.95, 0.56, 0.78, -0.54, 0.07, 0.023 +19910103, -1.25, 0.35, 1.13, -0.37, 0.14, 0.023 +19910104, -0.24, 0.11, 0.40, -0.42, -0.12, 0.023 +19910107, -1.72, 0.33, 0.24, -0.25, 0.57, 0.023 +19910108, -0.29, -0.33, -0.03, 0.05, 0.15, 0.023 +19910109, -0.95, 0.47, 0.03, -0.05, -0.01, 0.023 +19910110, 0.94, -0.44, -0.50, 0.52, -0.58, 0.023 +19910111, 0.10, -0.10, -0.12, 0.25, -0.30, 0.023 +19910114, -1.01, -0.79, 0.16, -0.26, 0.27, 0.023 +19910115, 0.32, -0.40, -0.34, 0.16, -0.25, 0.023 +19910116, 1.00, 0.08, -0.95, 0.45, -0.84, 0.023 +19910117, 3.41, -0.90, -0.78, 1.18, -1.13, 0.023 +19910118, 0.93, -1.19, 0.04, 0.12, -0.16, 0.023 +19910121, -0.08, 0.52, -0.17, 0.06, -0.36, 0.023 +19910122, -0.65, 1.12, 0.27, -0.17, 0.38, 0.023 +19910123, 0.59, 0.59, -0.21, -0.10, -0.01, 0.023 +19910124, 1.45, 0.32, -0.49, 0.24, -0.55, 0.023 +19910125, 0.40, 0.75, -0.20, -0.10, 0.03, 0.023 +19910128, 0.14, 0.79, -0.12, 0.00, -0.10, 0.023 +19910129, 0.10, 0.76, -0.08, -0.04, -0.45, 0.023 +19910130, 1.52, 0.37, -0.43, 0.74, -0.66, 0.023 +19910131, 0.95, 0.63, -0.42, 0.11, -0.08, 0.023 +19910201, -0.03, 1.07, 0.32, -0.20, -0.05, 0.025 +19910204, 1.59, 0.52, 0.20, -0.03, -0.25, 0.025 +19910205, 1.05, 0.29, -0.33, 0.30, -0.32, 0.025 +19910206, 1.77, -0.57, -0.72, -0.36, 0.28, 0.025 +19910207, -0.44, -0.36, 0.60, -0.20, 0.66, 0.025 +19910208, 0.63, -0.35, -0.03, 0.11, 0.10, 0.025 +19910211, 2.37, -0.62, -0.01, 0.34, -0.38, 0.025 +19910212, -0.59, 0.70, 0.14, 0.02, -0.02, 0.025 +19910213, 0.89, 0.18, -0.10, 0.10, -0.09, 0.025 +19910214, -1.20, 0.94, 0.20, -0.06, -0.11, 0.025 +19910215, 1.20, -0.14, -0.20, 0.42, -0.48, 0.025 +19910219, 0.13, -0.05, -0.48, 0.28, -0.52, 0.025 +19910220, -1.06, 0.29, 0.17, -0.46, 0.48, 0.025 +19910221, -0.03, 0.53, -0.11, -0.07, -0.07, 0.025 +19910222, 0.23, 0.29, -0.67, -0.18, -0.36, 0.025 +19910225, 0.40, 0.27, -0.46, 0.47, -0.05, 0.025 +19910226, -1.08, 0.21, 0.32, -0.30, 0.48, 0.025 +19910227, 1.17, -0.51, -0.19, -0.07, 0.25, 0.025 +19910228, 0.02, 0.93, 0.87, -0.31, 0.22, 0.025 +19910301, 0.86, -0.15, -0.18, 0.11, -0.32, 0.022 +19910304, 0.03, 1.37, -0.04, -0.17, -0.17, 0.022 +19910305, 1.91, 0.13, -0.80, 0.31, -0.57, 0.022 +19910306, -0.14, 0.28, 0.07, 0.14, 0.38, 0.022 +19910307, 0.00, 0.25, -0.35, -0.15, 0.07, 0.022 +19910308, -0.23, 0.44, -0.16, -0.15, 0.44, 0.022 +19910311, -0.59, -0.23, 0.45, -0.02, -0.09, 0.022 +19910312, -0.87, -0.18, 1.03, -0.27, 0.36, 0.022 +19910313, 1.10, -0.51, -0.45, 0.01, -0.29, 0.022 +19910314, -0.16, 0.43, -0.01, 0.40, -0.03, 0.022 +19910315, -0.19, -0.48, -0.12, -0.20, 0.10, 0.022 +19910318, -0.27, 0.21, -0.04, -0.13, -0.05, 0.022 +19910319, -1.29, 0.40, 0.14, -0.57, 0.41, 0.022 +19910320, 0.36, 0.52, -0.48, -0.03, -0.05, 0.022 +19910321, -0.26, 0.54, 0.06, -0.27, 0.24, 0.022 +19910322, 0.16, -0.14, 0.26, -0.09, 0.33, 0.022 +19910325, 0.67, -0.21, 0.17, -0.28, 0.06, 0.022 +19910326, 1.67, -0.54, -0.35, 0.64, -1.05, 0.022 +19910327, -0.01, 0.77, -0.42, 0.34, -0.55, 0.022 +19910328, -0.09, 0.75, -0.01, 0.00, -0.16, 0.022 +19910401, -0.85, 0.65, -0.14, 0.02, -0.13, 0.024 +19910402, 1.98, -0.71, -0.72, 0.57, -0.31, 0.024 +19910403, 0.09, 0.74, -0.05, -0.15, -0.41, 0.024 +19910404, 0.29, 0.09, -0.21, -0.39, -0.15, 0.024 +19910405, -0.97, 0.77, 0.30, -0.08, 0.41, 0.024 +19910408, 0.59, -0.64, -0.12, 0.05, 0.22, 0.024 +19910409, -1.08, 0.78, 0.30, -0.02, 0.11, 0.024 +19910410, -0.20, 0.02, 0.25, 0.09, 0.18, 0.024 +19910411, 1.17, -0.31, 0.01, -0.19, 0.01, 0.024 +19910412, 0.60, -0.07, -0.21, -0.11, 0.10, 0.024 +19910415, 0.17, -0.27, 0.12, 0.35, 0.06, 0.024 +19910416, 1.44, -0.67, -0.36, 0.36, -0.04, 0.024 +19910417, 0.78, 0.08, -0.06, 0.28, 0.05, 0.024 +19910418, -0.51, 0.00, 0.82, -0.11, -0.12, 0.024 +19910419, -1.04, 0.48, 0.63, -0.43, 0.41, 0.024 +19910422, -0.98, -0.49, -0.19, -0.10, 0.11, 0.024 +19910423, 0.13, -0.05, 0.14, 0.06, 0.05, 0.024 +19910424, 0.27, 0.06, 0.10, -0.12, -0.24, 0.024 +19910425, -0.79, 0.67, -0.18, 0.24, 0.00, 0.024 +19910426, -0.14, -0.19, 0.21, 0.28, -0.08, 0.024 +19910429, -1.31, 0.35, 0.33, -0.08, 0.29, 0.024 +19910430, 0.18, -1.03, 0.44, 0.11, 0.15, 0.024 +19910501, 1.21, -0.49, 0.05, 0.14, -0.22, 0.021 +19910502, 0.13, 0.55, -0.40, -0.08, -0.19, 0.021 +19910503, 0.09, 0.19, -0.11, 0.06, 0.14, 0.021 +19910506, -0.18, 0.00, -0.05, -0.13, -0.12, 0.021 +19910507, -0.54, 0.68, -0.05, -0.22, 0.00, 0.021 +19910508, 0.21, 0.03, 0.07, -0.08, 0.05, 0.021 +19910509, 1.16, -0.41, -0.48, 0.52, -0.22, 0.021 +19910510, -1.66, 0.90, 0.26, 0.06, 0.09, 0.021 +19910513, 0.17, -0.23, -0.20, 0.28, -0.31, 0.021 +19910514, -1.24, 0.40, 0.11, 0.18, -0.07, 0.021 +19910515, -1.05, -0.71, 0.88, -0.17, 0.48, 0.021 +19910516, 0.94, -0.31, -0.24, -0.05, -0.26, 0.021 +19910517, -0.03, -0.16, 0.06, 0.07, -0.12, 0.021 +19910520, -0.04, -0.17, -0.07, 0.22, -0.24, 0.021 +19910521, 0.74, -0.12, -0.39, 0.40, -0.22, 0.021 +19910522, 0.25, -0.09, -0.04, 0.32, -0.28, 0.021 +19910523, -0.14, 0.51, -0.16, -0.01, -0.42, 0.021 +19910524, 0.63, -0.21, 0.03, -0.08, 0.00, 0.021 +19910528, 1.04, -0.55, -0.17, 0.13, -0.26, 0.021 +19910529, 0.26, 0.24, 0.44, 0.25, 0.00, 0.021 +19910530, 1.01, 0.01, -0.29, 0.31, -0.10, 0.021 +19910531, 0.69, 0.07, 0.21, -0.08, -0.11, 0.021 +19910603, -0.29, 0.43, 0.42, -0.14, 0.10, 0.021 +19910604, -0.05, 0.10, -0.10, 0.18, -0.15, 0.021 +19910605, -0.56, 0.69, 0.40, 0.04, -0.14, 0.021 +19910606, -0.38, 0.21, 0.45, -0.21, 0.57, 0.021 +19910607, -0.95, 0.41, 0.11, 0.07, 0.14, 0.021 +19910610, -0.26, -0.06, 0.04, -0.15, -0.21, 0.021 +19910611, 0.44, -0.48, -0.02, 0.38, 0.07, 0.021 +19910612, -1.11, 0.05, 0.03, 0.47, -0.05, 0.021 +19910613, 0.21, -0.10, -0.06, 0.04, 0.00, 0.021 +19910614, 1.06, -0.50, -0.25, 0.55, -0.12, 0.021 +19910617, -0.41, 0.28, 0.20, 0.10, -0.16, 0.021 +19910618, -0.40, 0.15, 0.18, 0.15, 0.00, 0.021 +19910619, -0.97, 0.03, 0.01, 0.30, -0.21, 0.021 +19910620, 0.01, -0.11, -0.09, 0.01, 0.21, 0.021 +19910621, 0.43, -0.51, 0.06, 0.11, 0.08, 0.021 +19910624, -1.73, 0.03, 0.36, -0.12, 0.17, 0.021 +19910625, -0.22, -0.38, 0.01, -0.01, 0.11, 0.021 +19910626, 0.11, -0.46, -0.04, 0.11, -0.17, 0.021 +19910627, 0.70, -0.43, -0.39, -0.06, 0.38, 0.021 +19910628, -0.64, 0.80, -0.02, 0.03, 0.02, 0.021 +19910701, 1.62, -1.10, -0.35, 0.38, -0.52, 0.022 +19910702, -0.12, -0.01, -0.08, 0.37, -0.13, 0.022 +19910703, -0.98, 0.26, -0.09, 0.05, 0.11, 0.022 +19910705, 0.17, -0.17, -0.11, 0.08, 0.02, 0.022 +19910708, 0.82, -0.55, -0.21, 0.31, -0.49, 0.022 +19910709, -0.13, 0.69, -0.11, 0.17, -0.19, 0.022 +19910710, 0.01, 0.54, -0.16, -0.01, 0.07, 0.022 +19910711, 0.30, -0.02, -0.24, 0.17, -0.02, 0.022 +19910712, 0.75, -0.27, 0.00, 0.04, -0.19, 0.022 +19910715, 0.60, 0.00, 0.22, 0.22, -0.13, 0.022 +19910716, -0.21, 0.16, 0.51, -0.20, 0.39, 0.022 +19910717, -0.05, 0.19, -0.03, -0.19, 0.22, 0.022 +19910718, 0.90, -0.23, 0.02, 0.00, -0.03, 0.022 +19910719, -0.24, 0.50, 0.09, -0.10, 0.07, 0.022 +19910722, -0.37, 0.11, 0.12, -0.17, -0.10, 0.022 +19910723, -0.91, 0.13, 0.24, -0.09, 0.37, 0.022 +19910724, -0.31, -0.19, 0.14, 0.21, 0.10, 0.022 +19910725, 0.55, -0.44, 0.05, -0.02, -0.23, 0.022 +19910726, 0.06, -0.04, -0.04, 0.00, 0.14, 0.022 +19910729, 0.47, -0.55, -0.31, 0.17, -0.30, 0.022 +19910730, 0.86, -0.30, -0.47, 0.19, -0.25, 0.022 +19910731, 0.39, 0.33, -0.43, -0.03, -0.31, 0.022 +19910801, -0.12, 0.23, -0.16, -0.01, -0.38, 0.021 +19910802, 0.09, 0.11, -0.05, -0.08, -0.09, 0.021 +19910805, -0.53, 0.22, 0.20, -0.01, 0.04, 0.021 +19910806, 1.22, -0.90, 0.04, 0.50, 0.07, 0.021 +19910807, 0.09, 0.09, -0.07, -0.03, -0.11, 0.021 +19910808, -0.16, 0.20, -0.02, -0.10, 0.13, 0.021 +19910809, -0.43, 0.57, -0.14, 0.10, 0.16, 0.021 +19910812, 0.20, -0.22, 0.58, 0.19, 0.12, 0.021 +19910813, 0.42, -0.01, 0.68, 0.03, 0.21, 0.021 +19910814, 0.21, 0.22, -0.16, 0.23, -0.30, 0.021 +19910815, -0.16, 0.14, -0.43, 0.12, -0.05, 0.021 +19910816, -0.85, 0.47, -0.03, -0.21, 0.40, 0.021 +19910819, -2.38, -0.59, -0.19, 0.10, 0.02, 0.021 +19910820, 0.72, 0.18, -0.10, 0.14, -0.05, 0.021 +19910821, 2.76, -0.33, -0.34, 0.33, -0.68, 0.021 +19910822, 0.20, 0.26, -0.11, 0.04, 0.13, 0.021 +19910823, 0.62, -0.14, 0.26, -0.18, -0.01, 0.021 +19910826, -0.06, 0.21, -0.01, -0.33, 0.17, 0.021 +19910827, -0.12, 0.26, -0.47, -0.02, -0.16, 0.021 +19910828, 0.85, -0.21, 0.01, 0.01, 0.01, 0.021 +19910829, -0.02, 0.21, -0.05, 0.00, -0.23, 0.021 +19910830, -0.15, 0.45, -0.16, 0.05, 0.10, 0.021 +19910903, -0.80, 0.08, 0.12, -0.19, 0.19, 0.023 +19910904, -0.57, 0.15, -0.04, -0.14, -0.06, 0.023 +19910905, -0.27, 0.22, -0.05, -0.39, 0.25, 0.023 +19910906, -0.03, 0.11, 0.12, -0.08, 0.13, 0.023 +19910909, -0.13, 0.18, -0.11, -0.08, -0.07, 0.023 +19910910, -1.04, -0.09, 0.10, -0.05, 0.12, 0.023 +19910911, 0.18, 0.11, -0.19, 0.06, -0.28, 0.023 +19910912, 0.65, 0.01, -0.55, 0.26, -0.61, 0.023 +19910913, -0.92, 0.68, 0.17, -0.23, 0.32, 0.023 +19910916, 0.42, -0.59, -0.23, -0.06, 0.18, 0.023 +19910917, -0.05, -0.02, -0.12, 0.10, -0.13, 0.023 +19910918, 0.37, -0.03, -0.16, -0.02, -0.06, 0.023 +19910919, 0.32, 0.39, -0.25, -0.08, -0.12, 0.023 +19910920, 0.23, 0.36, -0.28, -0.28, 0.11, 0.023 +19910923, -0.47, 0.12, -0.07, 0.12, -0.23, 0.023 +19910924, 0.44, -0.36, 0.02, -0.19, -0.06, 0.023 +19910925, -0.17, 0.07, -0.02, -0.10, 0.10, 0.023 +19910926, -0.03, 0.14, 0.42, -0.32, 0.04, 0.023 +19910927, -0.21, -0.09, 0.09, -0.04, 0.31, 0.023 +19910930, 0.53, 0.06, -0.04, -0.09, -0.08, 0.023 +19911001, 0.27, -0.12, -0.61, 0.23, -0.27, 0.018 +19911002, -0.29, 0.04, 0.15, -0.25, 0.15, 0.018 +19911003, -0.94, 0.09, 0.39, -0.16, 0.23, 0.018 +19911004, -0.61, 0.48, 0.11, -0.11, 0.07, 0.018 +19911007, -0.60, -0.31, 0.18, 0.25, -0.06, 0.018 +19911008, 0.26, -0.07, -0.06, 0.15, -0.07, 0.018 +19911009, -0.89, 0.55, -0.30, 0.07, -0.09, 0.018 +19911010, 0.73, -0.69, 0.07, 0.29, 0.07, 0.018 +19911011, 0.24, 0.08, 0.19, -0.17, -0.05, 0.018 +19911014, 1.21, -0.45, -0.24, 0.11, -0.30, 0.018 +19911015, 1.23, -0.12, -0.09, -0.09, -0.23, 0.018 +19911016, 0.64, 0.69, -0.10, -0.31, -0.17, 0.018 +19911017, -0.29, 0.15, -0.02, -0.26, 0.17, 0.018 +19911018, 0.18, 0.18, 0.16, -0.27, 0.03, 0.018 +19911021, -0.60, 0.42, -0.04, -0.10, -0.10, 0.018 +19911022, -0.43, 0.52, -0.17, -0.37, 0.03, 0.018 +19911023, -0.05, -0.13, -0.27, -0.01, 0.14, 0.018 +19911024, -0.81, -0.30, 0.38, -0.06, 0.47, 0.018 +19911025, -0.30, -0.22, 0.35, -0.12, 0.11, 0.018 +19911028, 1.18, -0.79, -0.30, 0.05, -0.11, 0.018 +19911029, 0.57, 0.03, 0.04, 0.06, -0.07, 0.018 +19911030, 0.52, 0.20, 0.23, -0.45, -0.18, 0.018 +19911031, 0.09, 0.69, -0.44, -0.16, -0.04, 0.018 +19911101, -0.31, 0.15, -0.29, 0.14, 0.49, 0.020 +19911104, -0.34, -0.12, 0.02, 0.23, 0.04, 0.020 +19911105, -0.26, 0.31, 0.01, -0.20, -0.13, 0.020 +19911106, 0.28, -0.17, 0.28, -0.06, -0.01, 0.020 +19911107, 0.92, -0.21, -0.20, -0.02, -0.18, 0.020 +19911108, 0.01, 0.37, -0.19, -0.21, 0.04, 0.020 +19911111, 0.15, 0.24, -0.67, 0.05, -0.21, 0.020 +19911112, 0.87, -0.19, -0.23, 0.05, -0.07, 0.020 +19911113, 0.12, -0.19, 0.09, 0.47, 0.02, 0.020 +19911114, -0.11, -0.06, -0.08, 0.21, -0.16, 0.020 +19911115, -3.55, 0.25, 1.06, 0.22, 0.88, 0.020 +19911118, 0.50, -0.57, -0.89, 0.39, -0.41, 0.020 +19911119, -1.60, -0.74, 0.32, 0.18, 0.17, 0.020 +19911120, -0.13, 0.48, -0.08, -0.28, -0.02, 0.020 +19911121, 0.43, -0.13, -0.38, -0.17, 0.22, 0.020 +19911122, -0.95, 0.32, -0.29, 0.42, -0.31, 0.020 +19911125, -0.33, -0.41, 0.08, -0.21, -0.22, 0.020 +19911126, 0.50, -0.93, 0.09, 0.10, 0.04, 0.020 +19911127, -0.22, 0.11, -0.33, -0.16, 0.14, 0.020 +19911129, -0.18, 0.61, -0.38, -0.05, -0.21, 0.020 +19911202, 1.38, -1.31, -0.61, 0.59, -0.52, 0.018 +19911203, 0.07, 0.35, -0.49, 0.22, -0.55, 0.018 +19911204, -0.12, 0.35, -0.58, 0.25, 0.00, 0.018 +19911205, -0.55, 0.24, -0.49, -0.11, -0.10, 0.018 +19911206, 0.37, -0.07, -0.37, 0.04, 0.17, 0.018 +19911209, -0.23, -0.16, -0.36, 0.52, -0.32, 0.018 +19911210, -0.12, -0.36, -0.26, 0.47, -0.39, 0.018 +19911211, -0.19, -0.42, 0.12, 0.27, -0.06, 0.018 +19911212, 0.92, -0.33, 0.12, 0.03, 0.13, 0.018 +19911213, 0.72, 0.25, 0.05, 0.01, 0.10, 0.018 +19911216, 0.16, 0.62, -0.82, 0.25, -0.39, 0.018 +19911217, -0.50, 0.10, -0.82, 0.23, -0.52, 0.018 +19911218, 0.11, -0.21, -0.34, 0.33, -0.09, 0.018 +19911219, -0.40, -0.22, -0.01, 0.25, 0.20, 0.018 +19911220, 0.99, -1.22, 0.61, 0.01, 0.29, 0.018 +19911223, 2.28, -1.29, 0.74, 0.11, -0.07, 0.018 +19911224, 0.81, 0.18, 0.57, 0.01, 0.07, 0.018 +19911226, 1.44, 0.18, -0.03, 0.19, -0.17, 0.018 +19911227, 0.58, 0.53, -0.40, 0.20, -0.29, 0.018 +19911230, 2.04, 0.09, -0.37, -0.34, -0.48, 0.018 +19911231, 0.63, 0.50, 0.12, -0.29, 0.13, 0.018 +19920102, -0.10, 0.06, 0.52, -0.18, 0.24, 0.015 +19920103, 0.55, 0.62, 0.15, -0.23, 0.05, 0.015 +19920106, -0.01, 1.11, -0.01, -0.44, -0.16, 0.015 +19920107, 0.06, 0.72, -0.09, -0.12, -0.01, 0.015 +19920108, 0.38, 0.88, -0.69, 0.06, 0.00, 0.015 +19920109, 0.23, 1.18, -0.68, 0.34, -0.19, 0.015 +19920110, -0.63, 0.09, 0.48, -0.19, 0.29, 0.015 +19920113, -0.14, 0.56, -0.04, -0.19, 0.11, 0.015 +19920114, 1.32, -0.02, 0.28, 0.09, 0.29, 0.015 +19920115, 0.31, 0.49, 1.58, -0.27, 0.67, 0.015 +19920116, -0.62, 0.64, 1.92, -0.06, 0.59, 0.015 +19920117, 0.07, 0.43, -0.22, 0.28, -0.06, 0.015 +19920120, -0.66, 0.21, 0.50, -0.43, 0.60, 0.015 +19920121, -1.15, -0.67, 0.35, 0.05, 0.62, 0.015 +19920122, 1.39, -0.03, -0.82, 0.33, -0.47, 0.015 +19920123, -0.43, 0.89, 0.05, -0.23, 0.04, 0.015 +19920124, 0.14, 0.29, -0.07, 0.39, -0.16, 0.015 +19920127, -0.15, 0.03, 1.07, -0.34, 0.45, 0.015 +19920128, 0.00, -0.06, 0.66, 0.00, 0.37, 0.015 +19920129, -1.02, 0.44, -0.12, -0.04, -0.06, 0.015 +19920130, 0.43, 0.26, -0.33, -0.14, -0.43, 0.015 +19920131, -0.51, 0.79, -0.12, 0.11, 0.18, 0.015 +19920203, 0.25, 0.09, 0.35, 0.15, -0.08, 0.015 +19920204, 1.01, 0.04, -0.03, 0.49, -0.04, 0.015 +19920205, 0.24, 0.53, 0.04, 0.28, -0.20, 0.015 +19920206, 0.04, 0.30, 0.61, -0.16, 0.21, 0.015 +19920207, -0.59, 0.44, 0.23, 0.03, 0.30, 0.015 +19920210, 0.46, -0.38, 0.73, 0.12, 0.17, 0.015 +19920211, 0.02, 0.05, 0.46, 0.03, 0.26, 0.015 +19920212, 0.89, 0.15, -0.10, -0.33, -0.50, 0.015 +19920213, -0.83, 0.36, 0.51, 0.01, 0.33, 0.015 +19920214, -0.23, 0.17, 0.87, -0.04, 0.49, 0.015 +19920218, -1.20, 0.22, 1.82, -0.62, 0.81, 0.015 +19920219, -0.01, -0.98, 0.94, 0.14, 0.18, 0.015 +19920220, 1.28, -0.05, -0.14, 0.07, -0.04, 0.015 +19920221, -0.52, 0.39, 0.05, 0.02, -0.04, 0.015 +19920224, -0.05, -0.60, 0.16, 0.25, 0.15, 0.015 +19920225, -0.44, -0.28, -0.41, 0.14, 0.08, 0.015 +19920226, 1.19, 0.05, -0.42, -0.05, -0.29, 0.015 +19920227, -0.13, 0.56, 0.21, -0.06, -0.16, 0.015 +19920228, -0.27, 0.24, 0.28, -0.36, 0.37, 0.015 +19920302, 0.09, 0.24, 0.30, -0.24, 0.08, 0.015 +19920303, 0.03, 0.10, 0.45, -0.26, 0.22, 0.015 +19920304, -0.74, 0.46, 0.29, -0.11, 0.13, 0.015 +19920305, -0.88, -0.41, 0.02, 0.05, -0.01, 0.015 +19920306, -0.56, -0.11, -0.22, 0.01, 0.04, 0.015 +19920309, 0.15, -0.30, 0.22, 0.03, 0.18, 0.015 +19920310, 0.55, 0.15, -0.11, -0.10, -0.16, 0.015 +19920311, -0.73, 0.05, 0.13, 0.16, 0.22, 0.015 +19920312, -0.13, -0.30, -0.14, 0.00, -0.38, 0.015 +19920313, 0.44, -0.12, 0.02, 0.00, 0.01, 0.015 +19920316, 0.04, -0.37, 0.18, 0.21, 0.14, 0.015 +19920317, 0.74, -0.21, 0.02, 0.11, -0.08, 0.015 +19920318, -0.02, 0.59, 0.79, -0.44, 0.32, 0.015 +19920319, 0.17, -0.04, 0.64, -0.19, 0.22, 0.015 +19920320, 0.18, -0.27, 0.31, 0.05, 0.22, 0.015 +19920323, -0.29, 0.01, -0.14, 0.18, -0.14, 0.015 +19920324, -0.28, -0.13, -0.03, 0.27, 0.00, 0.015 +19920325, -0.14, 0.28, 0.05, -0.06, 0.08, 0.015 +19920326, -0.11, -0.34, 0.29, 0.13, 0.32, 0.015 +19920327, -1.09, -0.03, 0.10, 0.16, 0.10, 0.015 +19920330, -0.21, -0.36, 0.39, -0.09, 0.32, 0.015 +19920331, 0.12, 0.22, 0.10, 0.06, 0.13, 0.015 +19920401, 0.02, -0.58, -0.24, 0.37, -0.29, 0.015 +19920402, -1.00, 0.06, 0.16, 0.12, 0.13, 0.015 +19920403, 0.00, -0.67, -0.39, 0.46, -0.32, 0.015 +19920406, 0.91, -0.58, -0.01, 0.02, -0.14, 0.015 +19920407, -1.83, -0.16, 0.84, -0.09, 0.37, 0.015 +19920408, -1.08, -0.50, 0.19, 0.32, -0.51, 0.015 +19920409, 1.63, 0.11, -0.68, 0.04, -0.08, 0.015 +19920410, 0.73, -0.19, 0.21, 0.04, 0.24, 0.015 +19920413, 0.45, -0.36, -0.17, 0.48, 0.00, 0.015 +19920414, 1.39, -0.55, 0.53, 0.19, 0.27, 0.015 +19920415, 0.82, -0.50, 0.34, 0.24, 0.08, 0.015 +19920416, -0.31, -0.69, 1.37, -0.32, 0.45, 0.015 +19920420, -1.52, -0.37, 1.18, -0.02, 0.44, 0.015 +19920421, -0.13, -0.31, 0.58, 0.12, 0.37, 0.015 +19920422, -0.01, 0.04, 0.61, -0.17, 0.48, 0.015 +19920423, 0.22, -0.42, 0.43, -0.12, 0.45, 0.015 +19920424, -0.51, 0.53, -0.05, -0.07, 0.23, 0.015 +19920427, -0.22, -0.56, -0.16, 0.18, 0.03, 0.015 +19920428, -0.09, -0.87, 0.44, -0.04, 0.35, 0.015 +19920429, 0.80, 0.22, -0.15, -0.02, -0.28, 0.015 +19920430, 0.88, 0.56, -0.72, -0.01, 0.01, 0.015 +19920501, -0.45, 0.59, -0.08, -0.07, -0.01, 0.014 +19920504, 1.02, -0.41, -0.36, 0.17, -0.34, 0.014 +19920505, 0.16, 0.17, 0.03, -0.15, -0.01, 0.014 +19920506, 0.04, 0.29, 0.18, -0.27, -0.16, 0.014 +19920507, -0.19, 0.09, 0.22, 0.22, 0.00, 0.014 +19920508, -0.03, -0.17, 0.27, -0.28, 0.33, 0.014 +19920511, 0.51, -0.17, -0.09, 0.14, -0.02, 0.014 +19920512, -0.50, 0.15, 0.57, -0.14, 0.10, 0.014 +19920513, -0.04, -0.14, 0.59, -0.15, 0.27, 0.014 +19920514, -0.81, -0.08, 0.21, 0.01, 0.30, 0.014 +19920515, -0.59, 0.33, -0.11, -0.24, -0.17, 0.014 +19920518, 0.50, -0.43, -0.11, -0.10, -0.13, 0.014 +19920519, 0.72, -0.69, 0.02, 0.07, -0.11, 0.014 +19920520, -0.06, 0.24, 0.05, 0.03, 0.13, 0.014 +19920521, -0.63, 0.48, 0.18, -0.32, 0.22, 0.014 +19920522, 0.27, 0.06, -0.01, -0.12, -0.06, 0.014 +19920526, -0.70, -0.03, -0.05, -0.17, 0.50, 0.014 +19920527, 0.22, -0.13, 0.13, 0.10, -0.24, 0.014 +19920528, 0.88, -0.59, -0.50, 0.43, -0.20, 0.014 +19920529, 0.01, 0.66, 0.05, -0.10, 0.02, 0.014 +19920601, 0.45, -0.16, 0.01, 0.29, -0.13, 0.015 +19920602, -0.62, 0.94, 0.39, -0.31, 0.08, 0.015 +19920603, 0.14, -0.07, 0.30, -0.16, 0.18, 0.015 +19920604, -0.34, 0.26, 0.71, -0.19, 0.08, 0.015 +19920605, -0.08, -0.22, 0.21, 0.00, 0.25, 0.015 +19920608, -0.17, -0.31, 0.56, 0.05, 0.18, 0.015 +19920609, -0.86, -0.29, 0.59, -0.32, 0.54, 0.015 +19920610, -0.71, -0.05, 0.40, -0.12, 0.15, 0.015 +19920611, 0.20, -0.82, -0.06, -0.23, -0.02, 0.015 +19920612, 0.25, 0.08, -0.12, 0.32, -0.06, 0.015 +19920615, -0.02, -0.42, 0.23, 0.03, 0.19, 0.015 +19920616, -0.49, -0.19, 0.60, -0.29, 0.39, 0.015 +19920617, -1.55, -0.37, 0.10, 0.22, 0.25, 0.015 +19920618, -0.43, -0.53, 0.03, -0.09, -0.19, 0.015 +19920619, 0.65, -0.21, -0.28, 0.16, -0.07, 0.015 +19920622, -0.27, -0.79, -0.37, 0.31, -0.31, 0.015 +19920623, 0.29, 0.05, -0.08, 0.03, -0.18, 0.015 +19920624, -0.13, -0.21, 0.44, -0.13, 0.17, 0.015 +19920625, -0.17, 0.02, 0.14, 0.10, 0.05, 0.015 +19920626, 0.05, -0.06, 0.18, 0.01, -0.02, 0.015 +19920629, 1.34, -0.28, -0.48, 0.19, -0.42, 0.015 +19920630, 0.14, 0.84, 0.07, 0.08, -0.04, 0.015 +19920701, 1.05, -0.36, -0.52, 0.41, -0.19, 0.014 +19920702, -0.30, -0.18, 0.51, 0.62, 0.02, 0.014 +19920706, 0.38, -0.65, -0.31, 0.22, -0.14, 0.014 +19920707, -1.04, 0.35, 1.02, -0.23, 0.27, 0.014 +19920708, 0.15, -0.55, 0.00, 0.16, -0.24, 0.014 +19920709, 0.96, -0.03, -0.14, -0.05, -0.04, 0.014 +19920710, 0.19, 0.42, -0.15, -0.03, -0.19, 0.014 +19920713, 0.16, 0.13, -0.11, -0.11, -0.14, 0.014 +19920714, 0.62, 0.03, -0.09, -0.20, 0.03, 0.014 +19920715, -0.12, 0.41, -0.32, -0.08, -0.33, 0.014 +19920716, 0.08, 0.03, -0.55, -0.06, -0.11, 0.014 +19920717, -0.52, 0.00, 0.14, 0.20, 0.16, 0.014 +19920720, -0.48, -0.33, 0.35, 0.13, -0.01, 0.014 +19920721, 0.16, 0.25, -0.41, 0.22, -0.01, 0.014 +19920722, -0.68, 0.22, 0.28, 0.41, 0.14, 0.014 +19920723, 0.24, -0.07, 0.05, -0.17, -0.08, 0.014 +19920724, -0.05, 0.04, 0.20, -0.07, 0.22, 0.014 +19920727, 0.04, 0.07, -0.08, 0.24, -0.20, 0.014 +19920728, 1.31, -0.55, -0.12, -0.17, -0.10, 0.014 +19920729, 1.05, -0.29, -0.34, 0.17, 0.08, 0.014 +19920730, 0.38, 0.08, 0.23, -0.22, 0.19, 0.014 +19920731, 0.16, 0.40, -0.18, 0.12, -0.03, 0.014 +19920803, 0.24, 0.09, -0.37, 0.40, -0.15, 0.012 +19920804, -0.11, 0.19, -0.12, 0.29, -0.14, 0.012 +19920805, -0.52, 0.14, 0.09, 0.30, 0.24, 0.012 +19920806, -0.35, 0.02, -0.23, 0.38, -0.04, 0.012 +19920807, -0.25, 0.20, -0.16, -0.06, -0.22, 0.012 +19920810, 0.01, -0.36, 0.15, 0.06, 0.14, 0.012 +19920811, -0.14, -0.01, 0.14, 0.20, -0.12, 0.012 +19920812, -0.31, 0.19, -0.08, 0.30, -0.20, 0.012 +19920813, 0.04, -0.10, -0.14, 0.19, -0.17, 0.012 +19920814, 0.49, -0.16, 0.06, 0.07, -0.06, 0.012 +19920817, 0.19, -0.15, -0.06, 0.31, -0.15, 0.012 +19920818, 0.08, -0.21, -0.06, 0.15, -0.01, 0.012 +19920819, -0.66, 0.17, -0.11, 0.04, -0.12, 0.012 +19920820, -0.05, -0.21, -0.06, 0.33, -0.26, 0.012 +19920821, -0.75, 0.27, 0.16, 0.19, -0.05, 0.012 +19920824, -1.16, -0.09, -0.24, 0.38, -0.10, 0.012 +19920825, 0.05, -0.42, -0.07, 0.25, -0.06, 0.012 +19920826, 0.49, -0.23, -0.22, 0.18, -0.11, 0.012 +19920827, 0.22, 0.38, -0.04, 0.06, -0.13, 0.012 +19920828, 0.23, -0.10, 0.08, -0.02, 0.16, 0.012 +19920831, -0.13, -0.02, 0.22, -0.09, -0.08, 0.012 +19920901, 0.45, -0.18, -0.40, 0.36, -0.22, 0.012 +19920902, 0.52, 0.20, -0.19, 0.04, -0.06, 0.012 +19920903, 0.11, 0.42, -0.47, 0.08, -0.22, 0.012 +19920904, -0.21, 0.05, -0.13, 0.28, -0.22, 0.012 +19920908, -0.59, 0.12, -0.24, 0.19, 0.00, 0.012 +19920909, 0.41, -0.21, -0.28, -0.13, -0.21, 0.012 +19920910, 0.83, -0.11, -0.17, 0.08, -0.30, 0.012 +19920911, 0.04, 0.32, -0.56, 0.20, -0.18, 0.012 +19920914, 1.39, -0.49, -0.37, 0.16, -0.36, 0.012 +19920915, -1.12, 0.50, 0.25, 0.22, 0.05, 0.012 +19920916, -0.08, -0.12, 0.10, 0.17, 0.18, 0.012 +19920917, 0.02, 0.00, -0.18, 0.16, -0.01, 0.012 +19920918, 0.52, -0.29, 0.27, -0.25, 0.25, 0.012 +19920921, -0.11, -0.07, 0.25, 0.14, 0.16, 0.012 +19920922, -1.04, 0.58, 0.32, 0.00, 0.44, 0.012 +19920923, -0.03, -0.03, -0.02, 0.23, -0.04, 0.012 +19920924, 0.36, 0.00, 0.04, -0.40, -0.16, 0.012 +19920925, -1.06, -0.07, 1.03, -0.18, 0.51, 0.012 +19920928, 0.30, -0.60, 0.32, 0.10, 0.30, 0.012 +19920929, 0.10, -0.09, 0.12, 0.01, -0.09, 0.012 +19920930, 0.38, 0.52, 0.10, 0.04, -0.35, 0.012 +19921001, -0.44, -0.38, 0.18, 0.13, 0.05, 0.010 +19921002, -1.28, 0.41, 0.30, 0.04, 0.21, 0.010 +19921005, -0.82, -0.86, 0.19, 0.21, -0.26, 0.010 +19921006, 0.16, 0.49, -0.19, 0.14, -0.05, 0.010 +19921007, -0.55, 0.71, -0.32, 0.25, -0.06, 0.010 +19921008, 0.81, -0.10, -0.59, 0.25, -0.46, 0.010 +19921009, -1.05, 0.62, 0.18, 0.36, 0.06, 0.010 +19921012, 0.94, -0.63, 0.18, -0.09, -0.02, 0.010 +19921013, 0.48, -0.07, -0.26, 0.16, -0.28, 0.010 +19921014, 0.02, 0.21, -0.17, 0.11, -0.14, 0.010 +19921015, 0.09, 0.14, -0.29, 0.01, -0.32, 0.010 +19921016, 0.45, -0.06, -0.31, 0.13, -0.03, 0.010 +19921019, 0.92, 0.24, -0.92, 0.17, -0.57, 0.010 +19921020, 0.16, 0.31, 0.22, -0.44, 0.27, 0.010 +19921021, 0.17, 0.30, -0.02, 0.09, 0.11, 0.010 +19921022, -0.17, -0.02, 0.11, -0.10, 0.07, 0.010 +19921023, -0.13, 0.40, 0.25, -0.29, 0.13, 0.010 +19921026, 0.82, -0.64, 0.35, -0.21, 0.19, 0.010 +19921027, 0.03, -0.02, -0.17, 0.15, 0.16, 0.010 +19921028, 0.48, 0.09, -0.27, 0.10, 0.13, 0.010 +19921029, 0.28, 0.07, -0.47, 0.09, -0.08, 0.010 +19921030, -0.32, 0.77, -0.06, 0.00, 0.09, 0.010 +19921102, 0.79, -0.35, -0.10, -0.10, -0.27, 0.012 +19921103, -0.50, 0.47, 0.25, -0.28, 0.10, 0.012 +19921104, -0.47, 0.44, 0.25, -0.16, -0.08, 0.012 +19921105, 0.44, 0.25, -0.36, -0.23, -0.20, 0.012 +19921106, 0.03, 0.46, -0.32, -0.04, -0.36, 0.012 +19921109, 0.35, 0.47, -0.59, -0.25, -0.40, 0.012 +19921110, 0.17, 0.59, -0.58, 0.15, -0.48, 0.012 +19921111, 0.86, 0.41, -0.77, 0.23, -0.59, 0.012 +19921112, 0.08, -0.18, 0.17, -0.03, 0.13, 0.012 +19921113, 0.00, 0.44, 0.02, -0.14, -0.07, 0.012 +19921116, -0.33, 0.22, 0.01, 0.06, -0.18, 0.012 +19921117, -0.40, -0.15, 0.53, 0.02, 0.36, 0.012 +19921118, 0.81, 0.01, -0.42, 0.44, -0.17, 0.012 +19921119, 0.23, 0.20, -0.33, 0.21, -0.28, 0.012 +19921120, 0.68, -0.12, -0.09, -0.05, -0.16, 0.012 +19921123, -0.28, 0.25, 0.21, -0.04, 0.08, 0.012 +19921124, 0.60, -0.01, -0.17, 0.10, -0.01, 0.012 +19921125, 0.41, 0.06, 0.33, -0.34, 0.20, 0.012 +19921127, 0.24, 0.00, 0.05, -0.09, 0.31, 0.012 +19921130, 0.34, 0.21, 0.51, -0.24, 0.26, 0.012 +19921201, -0.06, 0.12, 0.06, -0.05, 0.21, 0.013 +19921202, -0.21, 0.39, 0.20, -0.50, 0.02, 0.013 +19921203, 0.06, 0.29, 0.00, -0.10, 0.04, 0.013 +19921204, 0.51, 0.08, -0.16, 0.00, -0.02, 0.013 +19921207, 0.64, -0.07, -0.27, -0.05, 0.10, 0.013 +19921208, 0.32, -0.13, 0.16, 0.16, -0.10, 0.013 +19921209, -0.29, -0.12, 0.21, 0.13, 0.05, 0.013 +19921210, -0.32, -0.36, 0.33, -0.13, 0.19, 0.013 +19921211, -0.17, 0.09, 0.17, 0.10, 0.28, 0.013 +19921214, -0.17, 0.01, 0.19, -0.15, 0.14, 0.013 +19921215, -0.18, -0.41, 0.25, 0.29, 0.05, 0.013 +19921216, -0.37, -0.34, 0.46, -0.13, 0.19, 0.013 +19921217, 0.88, -0.06, -0.50, 0.45, -0.35, 0.013 +19921218, 1.10, -0.60, -0.17, -0.08, -0.03, 0.013 +19921221, -0.08, -0.06, 0.12, 0.33, -0.28, 0.013 +19921222, -0.06, -0.05, 0.59, -0.07, 0.14, 0.013 +19921223, -0.14, 0.37, 0.46, 0.00, 0.08, 0.013 +19921224, 0.19, 0.27, -0.01, -0.09, -0.01, 0.013 +19921228, -0.06, -0.25, 0.09, -0.04, 0.07, 0.013 +19921229, -0.05, 0.44, 0.13, -0.02, -0.20, 0.013 +19921230, 0.20, 0.44, 0.10, -0.21, 0.12, 0.013 +19921231, -0.18, 1.56, 0.00, -0.29, -0.02, 0.013 +19930104, -0.30, -0.36, 0.55, -0.62, 0.51, 0.012 +19930105, -0.19, 0.39, 0.25, -0.12, 0.37, 0.012 +19930106, 0.14, 0.45, 0.49, -0.52, 0.31, 0.012 +19930107, -0.77, 0.62, 0.17, -0.20, -0.04, 0.012 +19930108, -0.40, -0.02, -0.19, -0.19, 0.04, 0.012 +19930111, 0.41, 0.07, 0.30, -0.10, -0.20, 0.012 +19930112, 0.00, -0.26, 0.19, 0.11, 0.06, 0.012 +19930113, 0.50, 0.02, -0.11, 0.34, -0.15, 0.012 +19930114, 0.73, 0.31, -0.17, 0.31, -0.34, 0.012 +19930115, 0.36, 0.18, 0.33, -0.23, 0.22, 0.012 +19930118, 0.01, 0.00, 0.94, 0.03, 0.55, 0.012 +19930119, -0.27, 0.27, 1.32, -0.20, 0.61, 0.012 +19930120, -0.27, 0.62, 0.14, -0.01, 0.02, 0.012 +19930121, 0.43, -0.16, -0.05, -0.24, -0.34, 0.012 +19930122, 0.25, 0.25, 0.29, -0.20, 0.11, 0.012 +19930125, 0.74, -0.02, 0.14, -0.37, 0.31, 0.012 +19930126, 0.02, 0.40, 0.25, 0.30, 0.51, 0.012 +19930127, -0.54, -0.59, 0.65, 0.10, 0.18, 0.012 +19930128, -0.02, -0.32, 0.14, -0.11, 0.17, 0.012 +19930129, 0.11, 0.26, 0.09, 0.14, -0.14, 0.012 +19930201, 0.84, -0.55, 0.22, -0.01, 0.10, 0.012 +19930202, 0.14, 0.15, 0.27, -0.09, 0.35, 0.012 +19930203, 0.95, -0.06, 0.25, 0.01, 0.02, 0.012 +19930204, 0.55, -0.41, 0.70, -0.27, 0.56, 0.012 +19930205, -0.33, -0.57, 0.70, -0.23, 0.97, 0.012 +19930208, -0.21, 0.05, 0.39, -0.20, 0.39, 0.012 +19930209, -0.66, -0.07, 0.16, 0.22, 0.03, 0.012 +19930210, 0.20, -0.20, 0.01, -0.12, -0.15, 0.012 +19930211, 0.30, 0.14, 0.30, -0.39, 0.22, 0.012 +19930212, -0.61, 0.16, 0.36, -0.11, 0.29, 0.012 +19930216, -2.71, -0.77, 0.85, 0.07, 0.50, 0.012 +19930217, -0.43, -0.77, 0.60, -0.30, 0.46, 0.012 +19930218, -0.17, 0.79, 0.00, 0.32, -0.32, 0.012 +19930219, 0.41, -0.04, 1.47, -0.47, 0.83, 0.012 +19930222, -0.16, -1.26, 2.10, 0.13, 1.13, 0.012 +19930223, -0.07, -0.15, -0.47, 0.40, -0.06, 0.012 +19930224, 1.43, -0.55, -1.12, 0.24, -0.79, 0.012 +19930225, 0.42, 0.19, 0.03, 0.15, -0.38, 0.012 +19930226, 0.29, 0.50, -0.40, 0.21, -0.13, 0.012 +19930301, -0.14, 0.22, 0.04, -0.01, -0.05, 0.011 +19930302, 1.18, -0.59, -0.41, 0.25, -0.19, 0.011 +19930303, 0.49, 0.24, -0.03, 0.04, -0.26, 0.011 +19930304, -0.41, 0.36, 0.33, -0.21, 0.07, 0.011 +19930305, -0.17, 0.47, -0.01, -0.21, 0.14, 0.011 +19930308, 1.56, -1.00, -0.20, 0.17, 0.08, 0.011 +19930309, 0.09, 0.15, 0.41, -0.25, 0.16, 0.011 +19930310, 0.49, 0.02, -0.27, 0.42, -0.05, 0.011 +19930311, -0.36, 0.71, -0.12, 0.23, -0.26, 0.011 +19930312, -0.73, 0.42, -0.16, 0.32, -0.15, 0.011 +19930315, 0.31, 0.02, -0.12, 0.02, 0.11, 0.011 +19930316, -0.05, -0.11, 0.37, -0.12, 0.24, 0.011 +19930317, -0.73, 0.08, 0.62, -0.41, 0.31, 0.011 +19930318, 0.65, -0.74, 0.41, -0.46, 0.20, 0.011 +19930319, -0.49, -0.11, 0.71, -0.43, 0.57, 0.011 +19930322, -0.42, -0.54, 0.68, -0.12, 0.32, 0.011 +19930323, -0.06, -0.12, 0.11, 0.04, 0.07, 0.011 +19930324, -0.16, -0.07, -0.06, 0.19, 0.05, 0.011 +19930325, 0.66, -0.07, -0.24, 0.00, 0.01, 0.011 +19930326, -0.38, 0.59, 0.21, -0.20, 0.00, 0.011 +19930329, 0.45, -0.38, -0.17, 0.06, -0.09, 0.011 +19930330, 0.39, -0.15, -0.63, 0.31, -0.32, 0.011 +19930331, 0.15, 0.60, -0.30, 0.08, -0.07, 0.011 +19930401, -0.37, 0.12, 0.31, -0.03, 0.15, 0.011 +19930402, -2.01, 0.28, 0.79, -0.26, 0.31, 0.011 +19930405, 0.12, -0.63, 0.42, -0.45, 0.43, 0.011 +19930406, -0.43, -0.47, 1.07, -0.75, 0.42, 0.011 +19930407, 0.31, -0.19, 0.32, -0.18, -0.15, 0.011 +19930408, -0.22, 0.01, 0.76, -0.20, 0.25, 0.011 +19930412, 1.28, -0.92, -0.10, 0.33, -0.28, 0.011 +19930413, 0.33, 0.10, 0.56, -0.02, 0.50, 0.011 +19930414, -0.06, 0.05, 0.48, -0.44, 0.19, 0.011 +19930415, -0.16, -0.16, 0.37, -0.09, 0.13, 0.011 +19930416, -0.01, -0.35, 0.90, -0.63, 0.90, 0.011 +19930419, -0.37, -0.01, -0.42, 0.08, -0.09, 0.011 +19930420, -0.52, 0.17, -0.69, 0.19, -0.51, 0.011 +19930421, -0.17, 0.61, -0.81, -0.24, -0.57, 0.011 +19930422, -0.74, 0.98, -0.28, -0.29, -0.28, 0.011 +19930423, -0.59, 0.15, -0.21, -0.45, -0.01, 0.011 +19930426, -1.03, -0.37, -0.17, -0.08, 0.62, 0.011 +19930427, 0.91, -0.85, -0.63, 0.29, -0.63, 0.011 +19930428, 0.14, 0.18, 0.18, -0.41, 0.12, 0.011 +19930429, 0.19, 0.09, -0.07, -0.03, 0.07, 0.011 +19930430, 0.38, 0.33, -0.06, -0.12, -0.03, 0.011 +19930503, 0.56, -0.14, -0.54, 0.05, -0.31, 0.011 +19930504, 0.58, 0.67, -0.41, 0.35, -0.38, 0.011 +19930505, 0.31, 0.54, -0.68, -0.12, -0.31, 0.011 +19930506, -0.31, 0.37, -0.06, -0.09, 0.14, 0.011 +19930507, -0.14, 0.21, -0.27, 0.11, -0.03, 0.011 +19930510, 0.20, -0.09, -0.01, -0.05, -0.13, 0.011 +19930511, 0.33, -0.14, 0.37, -0.04, 0.04, 0.011 +19930512, 0.00, -0.05, 0.43, -0.38, 0.50, 0.011 +19930513, -1.15, 0.59, 0.08, -0.40, 0.62, 0.011 +19930514, -0.03, 0.25, -1.12, 0.17, -0.50, 0.011 +19930517, 0.14, -0.17, -0.55, 0.20, -0.05, 0.011 +19930518, 0.06, 0.16, -0.45, 0.34, -0.26, 0.011 +19930519, 1.46, -0.88, -0.79, 0.53, -0.40, 0.011 +19930520, 0.68, -0.19, -0.32, 0.15, -0.53, 0.011 +19930521, -0.81, 0.82, 0.13, -0.35, 0.50, 0.011 +19930524, 0.29, -0.35, 0.14, -0.08, 0.11, 0.011 +19930525, 0.26, -0.03, 0.14, 0.06, -0.12, 0.011 +19930526, 1.00, -0.29, 0.12, 0.09, -0.03, 0.011 +19930527, -0.16, 0.35, 0.45, -0.56, 0.31, 0.011 +19930528, -0.40, 0.16, 0.01, 0.01, -0.33, 0.011 +19930601, 0.75, -0.49, 0.18, -0.48, 0.26, 0.012 +19930602, 0.05, 0.29, 0.05, -0.26, 0.07, 0.012 +19930603, -0.21, 0.31, 0.45, -0.57, 0.19, 0.012 +19930604, -0.58, 0.32, 0.23, -0.71, 0.57, 0.012 +19930607, -0.69, 0.00, 0.26, -0.54, 0.48, 0.012 +19930608, -0.76, -0.15, 0.11, 0.35, -0.25, 0.012 +19930609, 0.27, -0.11, 0.10, 0.17, 0.15, 0.012 +19930610, -0.14, -0.18, -0.14, 0.21, -0.15, 0.012 +19930611, 0.39, -0.07, -0.32, 0.67, -0.44, 0.012 +19930614, 0.13, -0.01, -0.09, 0.19, -0.24, 0.012 +19930615, -0.16, 0.51, 0.22, -0.19, -0.13, 0.012 +19930616, 0.16, -0.30, -0.05, 0.16, 0.11, 0.012 +19930617, 0.22, -0.22, 0.32, -0.22, 0.27, 0.012 +19930618, -0.93, 0.51, 0.67, -0.56, 0.43, 0.012 +19930621, 0.37, -0.74, 0.41, -0.06, 0.04, 0.012 +19930622, -0.10, -0.13, 0.61, 0.03, 0.20, 0.012 +19930623, -0.44, 0.29, -0.02, 0.06, -0.26, 0.012 +19930624, 0.69, -0.47, -0.07, 0.45, -0.06, 0.012 +19930625, 0.35, 0.29, -0.37, 0.35, -0.13, 0.012 +19930628, 1.06, -0.38, 0.11, 0.13, -0.16, 0.012 +19930629, -0.22, 0.44, -0.30, 0.06, -0.03, 0.012 +19930630, 0.13, 0.40, 0.24, -0.29, 0.17, 0.012 +19930701, -0.22, 0.53, 0.48, -0.36, 0.29, 0.011 +19930702, -0.48, 0.65, -0.23, -0.06, -0.21, 0.011 +19930706, -0.79, 0.55, 0.61, -0.18, 0.32, 0.011 +19930707, 0.13, -0.55, 0.44, -0.17, 0.32, 0.011 +19930708, 1.03, -0.69, -0.11, 0.04, -0.11, 0.011 +19930709, 0.05, 0.32, 0.04, -0.18, -0.01, 0.011 +19930712, 0.16, 0.13, -0.15, 0.17, 0.02, 0.011 +19930713, -0.06, 0.30, -0.17, -0.18, -0.25, 0.011 +19930714, 0.43, 0.13, -0.10, -0.25, -0.12, 0.011 +19930715, -0.19, 0.10, 0.40, -0.09, 0.28, 0.011 +19930716, -0.72, 0.24, 0.89, -0.42, 0.33, 0.011 +19930719, -0.13, -0.50, 0.50, 0.09, 0.56, 0.011 +19930720, 0.26, -0.31, -0.28, -0.08, -0.12, 0.011 +19930721, -0.10, 0.00, 0.34, -0.10, 0.05, 0.011 +19930722, -0.57, 0.06, 0.29, -0.11, 0.14, 0.011 +19930723, 0.47, -0.29, -0.42, -0.03, -0.14, 0.011 +19930726, 0.54, -0.09, 0.04, 0.10, 0.18, 0.011 +19930727, -0.24, 0.03, 0.08, 0.32, 0.23, 0.011 +19930728, -0.07, 0.38, 0.01, -0.06, 0.01, 0.011 +19930729, 0.54, -0.48, 0.07, -0.16, 0.12, 0.011 +19930730, -0.38, 0.36, 0.47, -0.43, 0.11, 0.011 +19930802, 0.40, -0.21, 0.01, -0.18, -0.20, 0.011 +19930803, -0.02, 0.24, -0.06, -0.22, -0.16, 0.011 +19930804, -0.01, 0.22, -0.02, -0.09, -0.26, 0.011 +19930805, -0.07, -0.04, -0.34, 0.10, -0.32, 0.011 +19930806, 0.15, 0.12, -0.29, -0.18, 0.10, 0.011 +19930809, 0.46, -0.43, 0.09, -0.11, 0.18, 0.011 +19930810, -0.16, 0.29, 0.46, -0.34, 0.30, 0.011 +19930811, 0.15, 0.00, 0.26, 0.14, 0.25, 0.011 +19930812, -0.29, 0.10, 0.24, -0.04, -0.08, 0.011 +19930813, 0.17, -0.07, -0.13, -0.02, -0.09, 0.011 +19930816, 0.51, -0.38, -0.07, -0.39, -0.04, 0.011 +19930817, 0.31, 0.07, -0.58, 0.44, -0.40, 0.011 +19930818, 0.57, 0.08, -0.79, 0.55, -0.32, 0.011 +19930819, 0.01, -0.06, 0.04, -0.28, 0.13, 0.011 +19930820, 0.00, 0.31, 0.05, 0.02, 0.08, 0.011 +19930823, -0.15, 0.07, 0.16, -0.17, 0.18, 0.011 +19930824, 0.88, -0.31, -0.04, -0.12, 0.17, 0.011 +19930825, 0.04, -0.02, 0.62, -0.41, 0.53, 0.011 +19930826, 0.07, -0.27, 0.39, 0.05, 0.27, 0.011 +19930827, -0.07, 0.28, -0.28, 0.14, -0.14, 0.011 +19930830, 0.29, -0.02, -0.15, -0.03, -0.05, 0.011 +19930831, 0.44, 0.24, 0.01, 0.03, -0.11, 0.011 +19930901, 0.03, 0.26, -0.10, 0.05, -0.15, 0.012 +19930902, -0.21, 0.63, -0.43, 0.01, -0.25, 0.012 +19930903, 0.06, 0.21, 0.11, -0.08, 0.11, 0.012 +19930907, -0.76, -0.27, 0.57, -0.01, 0.27, 0.012 +19930908, -0.66, -0.73, 0.44, 0.31, 0.20, 0.012 +19930909, 0.37, 0.23, -0.19, -0.08, -0.13, 0.012 +19930910, 0.87, 0.00, -0.25, -0.03, -0.16, 0.012 +19930913, 0.01, -0.09, 0.49, -0.07, 0.38, 0.012 +19930914, -0.57, -0.18, 0.12, 0.21, 0.12, 0.012 +19930915, 0.34, -0.03, -0.19, 0.09, -0.15, 0.012 +19930916, -0.26, 0.49, -0.01, -0.18, -0.30, 0.012 +19930917, -0.09, 0.29, 0.23, 0.00, -0.14, 0.012 +19930920, -0.58, 0.58, 0.15, -0.21, -0.08, 0.012 +19930921, -0.61, -0.38, -0.18, 0.35, 0.02, 0.012 +19930922, 0.84, 0.24, -0.54, 0.02, -0.51, 0.012 +19930923, 0.47, 0.19, -0.83, 0.17, -0.53, 0.012 +19930924, 0.07, 0.24, -0.04, 0.01, 0.21, 0.012 +19930927, 0.79, -0.26, -0.34, 0.10, -0.14, 0.012 +19930928, 0.06, 0.23, 0.30, -0.02, 0.12, 0.012 +19930929, -0.19, 0.51, 0.13, 0.01, 0.64, 0.012 +19930930, -0.10, 0.89, 0.10, 0.12, 0.34, 0.012 +19931001, 0.33, -0.40, 0.35, -0.22, 0.49, 0.011 +19931004, 0.05, 0.17, 0.05, -0.01, -0.07, 0.011 +19931005, -0.06, -0.09, 0.01, 0.09, -0.02, 0.011 +19931006, -0.05, 0.50, -0.12, -0.06, 0.07, 0.011 +19931007, -0.31, 0.24, -0.07, -0.03, 0.04, 0.011 +19931008, 0.15, -0.08, -0.11, 0.19, -0.13, 0.011 +19931011, 0.19, 0.24, -0.51, -0.07, -0.14, 0.011 +19931012, 0.23, 0.37, -0.48, 0.10, -0.16, 0.011 +19931013, 0.20, 0.40, -0.48, 0.42, -0.12, 0.011 +19931014, 0.89, -0.43, -0.63, 0.08, -0.14, 0.011 +19931015, 0.46, 0.05, -0.50, 0.13, -0.16, 0.011 +19931018, -0.32, 0.16, -0.24, -0.42, 0.02, 0.011 +19931019, -0.79, -0.56, 1.03, -0.07, 0.49, 0.011 +19931020, -0.13, -0.22, 0.25, 0.07, 0.25, 0.011 +19931021, -0.06, 0.09, -0.14, 0.05, -0.06, 0.011 +19931022, -0.25, 0.53, 0.19, -0.47, 0.07, 0.011 +19931025, 0.03, -0.12, -0.06, 0.41, 0.22, 0.011 +19931026, -0.16, -0.13, 0.15, 0.01, 0.15, 0.011 +19931027, 0.25, 0.26, -0.09, -0.26, -0.22, 0.011 +19931028, 0.53, -0.18, 0.09, -0.26, 0.18, 0.011 +19931029, 0.24, 0.79, -0.21, 0.23, -0.14, 0.011 +19931101, 0.28, -0.19, -0.23, -0.07, -0.20, 0.012 +19931102, -0.09, 0.45, -0.26, 0.20, 0.17, 0.012 +19931103, -1.26, 0.34, -0.58, 0.48, 0.03, 0.012 +19931104, -1.35, -0.16, 0.27, -0.33, 0.40, 0.012 +19931105, 0.45, -0.61, -0.32, 0.33, -0.24, 0.012 +19931108, 0.27, 0.22, -0.11, -0.26, -0.35, 0.012 +19931109, 0.18, 0.37, -0.37, 0.25, -0.43, 0.012 +19931110, 0.65, -0.17, -0.24, -0.02, -0.49, 0.012 +19931111, -0.08, 0.37, -0.06, 0.17, -0.07, 0.012 +19931112, 0.46, -0.29, 0.16, -0.16, 0.12, 0.012 +19931115, -0.42, -0.12, 0.20, 0.06, 0.00, 0.012 +19931116, 0.38, -0.90, 0.05, 0.48, -0.19, 0.012 +19931117, -0.55, -0.19, 0.51, -0.29, 0.58, 0.012 +19931118, -0.40, -0.31, 0.42, -0.14, 0.03, 0.012 +19931119, -0.30, -0.01, 0.04, 0.16, 0.07, 0.012 +19931122, -1.09, -0.67, 0.68, 0.35, 0.48, 0.012 +19931123, 0.54, -0.13, -0.13, -0.10, -0.18, 0.012 +19931124, 0.49, 0.10, 0.03, -0.23, -0.19, 0.012 +19931126, 0.25, -0.03, -0.08, 0.15, -0.58, 0.012 +19931129, -0.19, 0.11, 0.16, 0.33, -0.33, 0.012 +19931130, -0.08, 0.35, -0.39, 0.19, 0.30, 0.012 +19931201, 0.32, 0.56, -0.10, -0.15, -0.44, 0.010 +19931202, 0.23, -0.14, -0.07, 0.00, -0.17, 0.010 +19931203, 0.40, -0.01, -0.17, -0.01, -0.05, 0.010 +19931206, 0.29, -0.25, 0.03, 0.35, -0.12, 0.010 +19931207, 0.03, -0.07, 0.14, 0.07, 0.02, 0.010 +19931208, -0.06, 0.19, 0.21, -0.16, -0.07, 0.010 +19931209, -0.44, 0.13, 0.37, -0.19, 0.28, 0.010 +19931210, -0.07, -0.20, 0.32, -0.12, 0.43, 0.010 +19931213, 0.19, -0.53, 0.19, 0.31, 0.19, 0.010 +19931214, -0.61, -0.28, 0.20, 0.23, 0.07, 0.010 +19931215, -0.21, 0.15, -0.25, 0.13, -0.25, 0.010 +19931216, 0.24, 0.03, -0.10, 0.31, -0.20, 0.010 +19931217, 0.64, 0.00, 0.20, -0.07, 0.15, 0.010 +19931220, -0.08, -0.06, 0.08, 0.02, 0.06, 0.010 +19931221, -0.25, -0.39, 0.31, 0.21, 0.20, 0.010 +19931222, 0.29, -0.40, 0.13, -0.10, 0.03, 0.010 +19931223, 0.14, 0.23, -0.33, -0.04, 0.04, 0.010 +19931227, 0.58, -0.33, -0.02, 0.11, 0.06, 0.010 +19931228, 0.23, 0.18, 0.07, -0.06, -0.31, 0.010 +19931229, 0.11, 0.76, -0.20, -0.06, 0.00, 0.010 +19931230, -0.25, 0.44, -0.25, 0.15, -0.05, 0.010 +19931231, -0.09, 1.33, -0.25, -0.23, -0.13, 0.010 +19940103, -0.45, -0.21, 0.41, -0.26, 0.60, 0.012 +19940104, 0.24, -0.07, 0.25, -0.56, 0.36, 0.012 +19940105, 0.21, 0.22, -0.12, -0.21, 0.00, 0.012 +19940106, -0.07, 0.24, -0.14, -0.02, 0.01, 0.012 +19940107, 0.48, -0.12, 0.15, 0.31, -0.02, 0.012 +19940110, 0.88, -0.78, 0.05, 0.01, 0.01, 0.012 +19940111, -0.16, 0.10, -0.03, -0.04, -0.07, 0.012 +19940112, 0.04, 0.14, -0.14, 0.13, -0.12, 0.012 +19940113, -0.17, 0.34, 0.21, -0.19, 0.18, 0.012 +19940114, 0.47, -0.21, -0.01, 0.02, -0.15, 0.012 +19940117, -0.25, 0.39, 0.10, -0.35, 0.13, 0.012 +19940118, 0.10, -0.01, 0.09, -0.19, 0.01, 0.012 +19940119, -0.08, 0.20, 0.03, 0.02, 0.09, 0.012 +19940120, 0.21, 0.13, -0.15, -0.26, -0.04, 0.012 +19940121, -0.05, 0.23, 0.09, -0.33, 0.06, 0.012 +19940124, -0.47, 0.18, 0.38, -0.06, 0.31, 0.012 +19940125, -0.26, -0.11, -0.03, 0.18, -0.12, 0.012 +19940126, 0.41, -0.11, -0.09, 0.24, -0.23, 0.012 +19940127, 0.78, -0.62, 0.35, -0.24, -0.01, 0.012 +19940128, 0.42, 0.03, 0.08, 0.02, -0.02, 0.012 +19940131, 0.57, -0.11, 0.55, -0.45, 0.37, 0.012 +19940201, -0.28, 0.34, -0.15, 0.12, -0.03, 0.011 +19940202, 0.43, -0.04, 0.00, 0.03, 0.07, 0.011 +19940203, -0.21, 0.16, 0.10, 0.02, -0.01, 0.011 +19940204, -2.32, 0.15, 0.27, 0.29, 0.26, 0.011 +19940207, 0.33, -0.41, 0.06, 0.07, 0.09, 0.011 +19940208, 0.05, 0.68, 0.18, -0.39, -0.20, 0.011 +19940209, 0.44, 0.32, -0.11, 0.06, -0.13, 0.011 +19940210, -0.67, 0.41, -0.29, 0.42, -0.03, 0.011 +19940211, 0.03, -0.45, -0.28, 0.36, 0.11, 0.011 +19940214, 0.11, 0.00, -0.16, 0.10, -0.27, 0.011 +19940215, 0.47, 0.01, -0.34, 0.12, -0.17, 0.011 +19940216, 0.06, 0.62, -0.15, 0.05, -0.11, 0.011 +19940217, -0.46, 0.21, -0.14, 0.24, -0.02, 0.011 +19940218, -0.48, 0.21, -0.04, 0.18, 0.12, 0.011 +19940222, 0.63, -0.49, -0.04, 0.13, -0.24, 0.011 +19940223, -0.14, 0.11, -0.30, 0.17, -0.07, 0.011 +19940224, -1.25, 0.25, 0.25, 0.25, 0.02, 0.011 +19940225, 0.36, -0.07, -0.18, 0.27, -0.17, 0.011 +19940228, 0.38, 0.68, -0.19, 0.01, -0.28, 0.011 +19940301, -0.52, -0.03, 0.10, 0.05, 0.05, 0.012 +19940302, -0.13, -0.68, 0.21, -0.24, 0.32, 0.012 +19940303, -0.24, 0.36, -0.10, -0.28, 0.02, 0.012 +19940304, 0.46, 0.10, 0.00, -0.26, -0.27, 0.012 +19940307, 0.56, 0.21, -0.16, 0.18, -0.19, 0.012 +19940308, -0.23, 0.21, 0.21, 0.20, 0.16, 0.012 +19940309, 0.16, -0.07, -0.10, 0.17, -0.04, 0.012 +19940310, -0.62, 0.31, 0.05, -0.14, 0.10, 0.012 +19940311, 0.44, -0.41, 0.32, -0.19, 0.47, 0.012 +19940314, 0.29, 0.01, 0.00, 0.02, -0.03, 0.012 +19940315, 0.03, 0.23, 0.05, -0.14, -0.09, 0.012 +19940316, 0.56, 0.08, 0.09, -0.11, 0.05, 0.012 +19940317, 0.30, 0.01, -0.51, 0.23, -0.02, 0.012 +19940318, 0.05, 0.45, -0.20, -0.10, 0.06, 0.012 +19940321, -0.50, -0.20, 0.21, 0.31, 0.23, 0.012 +19940322, 0.04, 0.11, 0.44, -0.13, 0.21, 0.012 +19940323, 0.03, 0.20, 0.30, -0.03, -0.02, 0.012 +19940324, -0.98, -0.17, 0.02, 0.53, 0.05, 0.012 +19940325, -0.62, 0.59, -0.15, 0.00, 0.05, 0.012 +19940328, -0.47, -1.14, 0.48, 0.22, -0.11, 0.012 +19940329, -1.80, -0.29, 0.47, 0.13, 0.33, 0.012 +19940330, -1.53, -0.27, 0.02, 0.28, 0.20, 0.012 +19940331, -0.13, -0.66, -0.36, 0.11, -0.18, 0.012 +19940404, -1.58, -0.20, 0.32, -0.10, 0.15, 0.014 +19940405, 2.37, 0.45, -0.55, -0.37, -0.66, 0.014 +19940406, 0.03, 0.17, 0.25, -0.15, -0.04, 0.014 +19940407, 0.60, -0.03, 0.00, -0.11, -0.12, 0.014 +19940408, -0.81, 0.43, -0.09, 0.44, -0.07, 0.014 +19940411, 0.33, -0.50, 0.27, 0.03, 0.12, 0.014 +19940412, -0.54, -0.22, 0.61, 0.24, 0.43, 0.014 +19940413, -0.61, -0.74, 0.37, 0.29, 0.20, 0.014 +19940414, 0.04, 0.01, 0.53, -0.28, 0.54, 0.014 +19940415, 0.03, -0.09, 0.10, -0.19, 0.19, 0.014 +19940418, -0.82, 0.08, 0.39, 0.23, 0.17, 0.014 +19940419, -0.26, -0.87, -0.01, 0.81, 0.37, 0.014 +19940420, -0.42, -1.11, 0.59, 0.39, 0.37, 0.014 +19940421, 1.47, -0.45, -0.58, 0.34, -0.81, 0.014 +19940422, -0.05, 0.72, -0.44, -0.22, 0.17, 0.014 +19940425, 1.00, -0.10, 0.03, -0.31, 0.08, 0.014 +19940426, 0.05, 0.64, -0.11, -0.11, -0.13, 0.014 +19940428, -0.55, 0.85, -0.28, -0.01, -0.18, 0.014 +19940429, 0.47, -0.05, 0.23, 0.04, 0.29, 0.014 +19940502, 0.50, -0.01, -0.38, 0.30, -0.36, 0.015 +19940503, -0.01, 0.15, 0.08, 0.03, 0.05, 0.015 +19940504, -0.15, 0.26, -0.37, 0.08, -0.34, 0.015 +19940505, -0.10, 0.01, -0.15, -0.32, 0.25, 0.015 +19940506, -0.91, -0.01, 0.22, -0.15, 0.70, 0.015 +19940509, -1.24, 0.13, -0.03, 0.37, 0.21, 0.015 +19940510, 0.59, -0.58, -0.10, 0.29, -0.01, 0.015 +19940511, -1.06, -0.07, 0.03, -0.06, 0.30, 0.015 +19940512, 0.38, -0.15, -0.11, 0.15, 0.15, 0.015 +19940513, 0.04, -0.33, 0.33, 0.14, -0.12, 0.015 +19940516, -0.16, -0.50, 0.26, 0.09, 0.31, 0.015 +19940517, 0.81, -1.15, 0.60, 0.08, -0.13, 0.015 +19940518, 1.14, -0.16, -0.28, 0.01, -0.34, 0.015 +19940519, 0.61, 0.07, -0.24, -0.22, -0.06, 0.015 +19940520, -0.24, 0.11, 0.21, -0.36, 0.42, 0.015 +19940523, -0.33, 0.13, -0.08, 0.12, 0.00, 0.015 +19940524, 0.40, -0.27, -0.18, 0.16, -0.26, 0.015 +19940525, 0.27, -0.35, 0.31, 0.08, 0.20, 0.015 +19940526, 0.23, 0.13, 0.09, 0.35, -0.03, 0.015 +19940527, 0.08, 0.13, -0.03, -0.08, -0.08, 0.015 +19940531, -0.16, 0.02, -0.07, -0.15, -0.24, 0.015 +19940601, 0.27, -0.07, 0.24, -0.22, -0.19, 0.014 +19940602, 0.15, 0.71, -0.39, 0.33, -0.23, 0.014 +19940603, 0.47, -0.33, -0.48, 0.51, -0.17, 0.014 +19940606, 0.00, 0.26, 0.28, 0.16, 0.08, 0.014 +19940607, -0.25, -0.12, -0.08, 0.28, 0.05, 0.014 +19940608, -0.45, -0.28, 0.70, -0.04, 0.53, 0.014 +19940609, 0.02, -0.29, 0.09, 0.00, 0.25, 0.014 +19940610, 0.25, 0.24, 0.13, -0.15, 0.14, 0.014 +19940613, 0.06, -0.21, 0.50, -0.18, -0.03, 0.014 +19940614, 0.57, -0.40, 0.28, -0.05, 0.12, 0.014 +19940615, -0.31, 0.37, 0.15, -0.20, -0.04, 0.014 +19940616, 0.22, -0.11, -0.17, 0.06, 0.23, 0.014 +19940617, -0.70, 0.27, 0.14, -0.06, 0.07, 0.014 +19940620, -0.93, -0.47, 0.11, 0.31, 0.21, 0.014 +19940621, -0.95, -0.27, 0.14, 0.27, 0.40, 0.014 +19940622, 0.34, 0.13, 0.10, -0.01, 0.18, 0.014 +19940623, -0.89, -0.21, 0.46, 0.17, 0.40, 0.014 +19940624, -1.41, 0.14, 0.06, -0.02, -0.12, 0.014 +19940627, 0.89, -0.72, -0.26, -0.05, -0.38, 0.014 +19940628, -0.24, -0.12, -0.32, 0.32, -0.29, 0.014 +19940629, 0.36, 0.05, -0.19, 0.06, -0.05, 0.014 +19940630, -0.51, 0.85, 0.27, -0.30, 0.45, 0.014 +19940701, 0.42, -0.26, 0.16, 0.03, -0.34, 0.014 +19940705, -0.04, -0.19, -0.09, -0.01, 0.17, 0.014 +19940706, -0.03, -0.15, 0.31, -0.14, 0.18, 0.014 +19940707, 0.49, -0.19, 0.15, 0.05, -0.25, 0.014 +19940708, 0.17, -0.25, -0.27, -0.12, -0.24, 0.014 +19940711, -0.30, 0.22, -0.03, -0.12, 0.17, 0.014 +19940712, 0.07, 0.16, -0.04, -0.03, -0.09, 0.014 +19940713, 0.37, 0.16, -0.18, 0.06, -0.33, 0.014 +19940714, 0.98, -0.17, -0.12, -0.29, 0.06, 0.014 +19940715, 0.08, 0.02, 0.22, -0.22, 0.44, 0.014 +19940718, 0.19, -0.31, 0.04, -0.05, -0.25, 0.014 +19940719, -0.27, 0.17, 0.02, -0.34, 0.36, 0.014 +19940720, -0.54, -0.02, 0.21, 0.03, 0.29, 0.014 +19940721, 0.19, -0.19, 0.27, -0.01, 0.00, 0.014 +19940722, 0.05, -0.15, 0.11, -0.12, -0.07, 0.014 +19940725, 0.17, -0.24, 0.00, 0.20, -0.02, 0.014 +19940726, -0.17, 0.07, 0.20, 0.11, 0.14, 0.014 +19940727, -0.25, -0.16, 0.12, -0.05, 0.40, 0.014 +19940728, 0.24, -0.32, 0.03, 0.10, 0.10, 0.014 +19940729, 0.95, 0.01, -0.44, 0.05, -0.65, 0.014 +19940801, 0.53, -0.35, 0.20, 0.02, 0.16, 0.016 +19940802, 0.10, 0.09, 0.09, -0.09, 0.05, 0.016 +19940803, 0.01, 0.08, 0.32, -0.13, -0.03, 0.016 +19940804, -0.52, 0.30, -0.01, 0.22, 0.23, 0.016 +19940805, -0.32, 0.11, -0.08, 0.23, 0.05, 0.016 +19940808, 0.20, -0.09, 0.06, 0.16, 0.07, 0.016 +19940809, 0.09, 0.03, -0.05, -0.06, -0.19, 0.016 +19940810, 0.55, 0.07, -0.78, 0.28, -0.35, 0.016 +19940811, -0.26, 0.23, -0.25, 0.18, -0.16, 0.016 +19940812, 0.55, -0.22, -0.30, -0.10, -0.03, 0.016 +19940815, -0.02, 0.30, 0.06, 0.03, -0.12, 0.016 +19940816, 0.60, -0.49, -0.26, 0.47, -0.45, 0.016 +19940817, 0.17, 0.37, -0.50, 0.23, -0.42, 0.016 +19940818, -0.35, 0.45, -0.28, 0.05, 0.12, 0.016 +19940819, 0.12, 0.11, -0.07, -0.06, -0.08, 0.016 +19940822, -0.20, 0.30, -0.34, 0.15, -0.22, 0.016 +19940823, 0.54, 0.11, -0.36, -0.12, -0.20, 0.016 +19940824, 0.71, -0.40, 0.00, -0.22, 0.21, 0.016 +19940825, -0.07, 0.27, -0.07, -0.23, -0.06, 0.016 +19940826, 1.08, -0.60, -0.29, 0.03, -0.41, 0.016 +19940829, 0.17, 0.02, -0.03, -0.02, 0.30, 0.016 +19940830, 0.35, -0.04, 0.19, -0.17, -0.02, 0.016 +19940831, -0.10, 0.61, 0.05, 0.02, 0.23, 0.016 +19940901, -0.49, 0.10, 0.09, 0.07, 0.34, 0.017 +19940902, -0.32, 0.51, -0.01, 0.00, -0.05, 0.017 +19940906, 0.03, -0.25, 0.12, -0.09, 0.25, 0.017 +19940907, -0.02, 0.37, -0.21, -0.18, -0.15, 0.017 +19940908, 0.46, 0.04, -0.36, 0.01, -0.12, 0.017 +19940909, -0.93, 0.60, 0.08, 0.00, 0.14, 0.017 +19940912, -0.44, 0.14, 0.00, 0.16, 0.10, 0.017 +19940913, 0.30, 0.23, -0.36, 0.16, -0.22, 0.017 +19940914, 0.26, -0.04, 0.09, -0.14, 0.01, 0.017 +19940915, 1.14, -0.36, -0.49, 0.14, -0.06, 0.017 +19940916, -0.52, 0.62, 0.10, -0.12, -0.20, 0.017 +19940919, -0.13, -0.09, -0.18, 0.02, 0.03, 0.017 +19940920, -1.44, 0.54, 0.27, 0.04, 0.26, 0.017 +19940921, -0.55, -0.19, 0.03, 0.11, -0.01, 0.017 +19940922, -0.10, 0.08, -0.17, -0.13, 0.15, 0.017 +19940923, -0.33, 0.09, -0.14, -0.08, 0.22, 0.017 +19940926, 0.20, -0.43, -0.12, 0.31, 0.12, 0.017 +19940927, 0.16, -0.16, -0.16, 0.30, 0.09, 0.017 +19940928, 0.59, -0.07, -0.23, -0.17, 0.21, 0.017 +19940929, -0.37, 0.27, -0.09, 0.08, -0.03, 0.017 +19940930, 0.21, 0.66, -0.25, 0.10, -0.15, 0.017 +19941003, -0.27, -0.28, -0.14, -0.24, 0.04, 0.018 +19941004, -1.47, 0.18, 0.41, -0.07, 0.36, 0.018 +19941005, -0.38, -0.45, -0.06, 0.31, -0.26, 0.018 +19941006, -0.23, 0.41, -0.16, -0.04, 0.25, 0.018 +19941007, 0.60, -0.29, -0.10, -0.09, 0.15, 0.018 +19941010, 0.75, -0.16, -0.29, -0.08, -0.27, 0.018 +19941011, 1.28, -0.63, -0.68, 0.28, -0.42, 0.018 +19941012, -0.01, 0.22, 0.00, 0.02, -0.19, 0.018 +19941013, 0.35, -0.24, 0.03, 0.11, 0.19, 0.018 +19941014, 0.17, -0.38, 0.31, -0.03, 0.22, 0.018 +19941017, -0.07, 0.08, -0.09, 0.16, -0.05, 0.018 +19941018, -0.20, -0.20, 0.09, -0.05, 0.14, 0.018 +19941019, 0.49, -0.14, -0.10, -0.05, -0.20, 0.018 +19941020, -0.67, 0.30, -0.09, 0.11, -0.23, 0.018 +19941021, -0.41, 0.14, -0.14, -0.08, 0.14, 0.018 +19941024, -0.77, 0.38, -0.22, 0.14, -0.14, 0.018 +19941025, -0.03, -0.47, 0.33, 0.15, 0.36, 0.018 +19941026, 0.27, -0.19, -0.41, 0.13, -0.21, 0.018 +19941027, 0.63, -0.15, -0.34, -0.10, -0.10, 0.018 +19941028, 1.52, -0.72, -0.18, -0.16, -0.27, 0.018 +19941031, -0.18, 0.30, 0.06, 0.14, -0.17, 0.018 +19941101, -0.77, 0.28, -0.39, 0.34, -0.50, 0.018 +19941102, -0.24, 0.43, -0.12, -0.23, -0.18, 0.018 +19941103, 0.25, -0.11, 0.29, -0.04, 0.14, 0.018 +19941104, -0.93, 0.64, -0.11, -0.10, -0.03, 0.018 +19941107, -0.04, -0.45, -0.03, 0.28, 0.01, 0.018 +19941108, 0.50, -0.32, -0.23, 0.28, -0.20, 0.018 +19941109, -0.09, -0.13, -0.11, 0.27, 0.00, 0.018 +19941110, -0.26, -0.08, -0.01, 0.09, -0.17, 0.018 +19941111, -0.42, 0.07, -0.21, 0.04, 0.11, 0.018 +19941114, 0.67, -0.47, -0.38, 0.21, -0.39, 0.018 +19941115, -0.11, 0.22, 0.13, -0.18, 0.10, 0.018 +19941116, 0.02, -0.11, -0.24, 0.00, 0.04, 0.018 +19941117, -0.46, 0.11, -0.26, 0.05, 0.19, 0.018 +19941118, -0.44, 0.18, -0.41, 0.04, -0.12, 0.018 +19941121, -0.75, 0.09, 0.00, 0.18, 0.17, 0.018 +19941122, -1.84, 0.14, 0.29, 0.27, 0.36, 0.018 +19941123, -0.15, -0.83, 0.91, -0.14, -0.07, 0.018 +19941125, 0.62, -0.03, -0.09, -0.20, -0.14, 0.018 +19941128, 0.35, -0.26, -0.36, 0.05, -0.13, 0.018 +19941129, 0.25, 0.16, -0.15, -0.13, -0.16, 0.018 +19941130, -0.21, 0.56, 0.52, -0.22, 0.49, 0.018 +19941201, -1.04, 0.11, 0.06, 0.05, 0.25, 0.021 +19941202, 0.71, -0.50, 0.06, -0.02, -0.05, 0.021 +19941205, 0.08, -0.12, 0.15, -0.19, -0.31, 0.021 +19941206, -0.17, -0.32, 0.31, 0.12, 0.29, 0.021 +19941207, -0.54, -0.33, 0.22, -0.19, 0.16, 0.021 +19941208, -1.43, -0.31, 0.24, 0.10, 0.83, 0.021 +19941209, 0.16, -0.67, 0.12, 0.33, 0.00, 0.021 +19941212, 0.39, -0.48, -0.17, 0.10, -0.07, 0.021 +19941213, 0.22, -0.20, 0.12, 0.27, -0.44, 0.021 +19941214, 1.02, -0.32, -0.19, -0.06, -0.20, 0.021 +19941215, 0.33, 0.76, 0.01, -0.38, -0.02, 0.021 +19941216, 0.46, -0.64, -0.09, -0.16, 0.20, 0.021 +19941219, -0.22, -0.04, 0.38, 0.11, 0.18, 0.021 +19941220, -0.07, 0.22, 0.01, -0.06, -0.07, 0.021 +19941221, 0.62, 0.40, -0.30, -0.01, -0.18, 0.021 +19941222, -0.04, 0.27, -0.42, 0.00, 0.00, 0.021 +19941223, 0.22, 0.23, 0.01, 0.02, 0.06, 0.021 +19941227, 0.46, -0.03, -0.16, 0.21, -0.23, 0.021 +19941228, -0.41, 0.11, -0.14, 0.05, -0.04, 0.021 +19941229, 0.28, 0.25, -0.11, 0.22, -0.66, 0.021 +19941230, -0.14, 1.60, 0.38, -0.13, 0.58, 0.021 +19950103, -0.26, -0.86, 0.85, -0.34, 0.61, 0.020 +19950104, 0.33, -0.18, 0.65, 0.21, 0.12, 0.020 +19950105, -0.05, 0.06, 0.03, -0.23, -0.03, 0.020 +19950106, 0.18, 0.01, 0.30, -0.38, -0.07, 0.020 +19950109, 0.08, 0.02, 0.09, -0.40, -0.39, 0.020 +19950110, 0.20, 0.02, -0.26, -0.33, -0.37, 0.020 +19950111, -0.09, -0.18, -0.19, 0.07, -0.13, 0.020 +19950112, 0.01, 0.02, 0.11, -0.27, -0.15, 0.020 +19950113, 0.87, -0.32, 0.37, 0.07, -0.03, 0.020 +19950116, 0.80, -0.39, -0.09, -0.01, -0.37, 0.020 +19950117, 0.22, 0.36, -0.46, 0.18, -0.01, 0.020 +19950118, -0.15, -0.01, -0.08, -0.13, 0.24, 0.020 +19950119, -0.57, 0.12, -0.19, 0.34, 0.16, 0.020 +19950120, -0.51, 0.21, -0.20, 0.31, 0.22, 0.020 +19950123, 0.00, -0.65, 0.24, 0.30, 0.10, 0.020 +19950124, 0.16, 0.29, -0.21, -0.07, -0.23, 0.020 +19950125, 0.20, -0.29, 0.27, 0.19, 0.22, 0.020 +19950126, 0.04, -0.24, -0.16, 0.16, 0.01, 0.020 +19950127, 0.39, -0.25, -0.09, 0.48, -0.36, 0.020 +19950130, -0.45, -0.28, -0.13, 0.41, -0.27, 0.020 +19950131, 0.39, -0.23, 0.04, 0.04, -0.03, 0.020 +19950201, 0.15, -0.04, 0.18, -0.41, -0.23, 0.021 +19950202, 0.44, 0.04, -0.24, 0.30, -0.18, 0.021 +19950203, 1.22, -0.60, 0.32, -0.27, -0.32, 0.021 +19950206, 0.61, 0.03, -0.46, 0.30, -0.22, 0.021 +19950207, -0.07, 0.18, 0.25, -0.20, 0.34, 0.021 +19950208, 0.13, 0.18, -0.19, -0.11, -0.38, 0.021 +19950209, -0.09, 0.39, -0.12, -0.10, -0.19, 0.021 +19950210, 0.23, 0.20, -0.16, 0.39, 0.07, 0.021 +19950213, 0.02, 0.02, 0.10, 0.12, 0.32, 0.021 +19950214, 0.09, -0.23, 0.38, 0.00, 0.06, 0.021 +19950215, 0.48, 0.23, 0.09, -0.12, -0.03, 0.021 +19950216, -0.05, -0.51, -0.14, 0.01, -0.05, 0.021 +19950217, -0.58, 0.12, 0.24, -0.20, 0.31, 0.021 +19950221, -0.05, -0.27, 0.39, -0.08, 0.33, 0.021 +19950222, 0.40, -0.34, 0.03, 0.24, -0.21, 0.021 +19950223, 0.45, -0.14, 0.23, 0.17, -0.14, 0.021 +19950224, 0.16, 0.14, 0.19, 0.26, 0.04, 0.021 +19950227, -0.82, 0.00, 0.10, 0.01, 0.24, 0.021 +19950228, 0.82, 0.13, -0.21, 0.29, -0.13, 0.021 +19950301, -0.31, 0.21, -0.40, 0.12, -0.34, 0.020 +19950302, -0.14, 0.16, -0.33, 0.21, -0.16, 0.020 +19950303, 0.14, 0.12, -0.16, -0.15, 0.04, 0.020 +19950306, -0.13, -0.22, -0.31, 0.19, 0.15, 0.020 +19950307, -0.75, 0.14, -0.15, 0.29, 0.06, 0.020 +19950308, 0.21, 0.02, 0.01, -0.18, 0.02, 0.020 +19950309, 0.05, -0.08, 0.01, -0.01, 0.08, 0.020 +19950310, 1.12, -0.71, -0.30, 0.13, -0.14, 0.020 +19950313, 0.09, -0.05, -0.02, -0.26, 0.01, 0.020 +19950314, 0.56, -0.14, -0.40, 0.41, -0.26, 0.020 +19950315, -0.17, 0.18, 0.23, 0.07, -0.09, 0.020 +19950316, 0.56, -0.32, 0.01, -0.13, 0.04, 0.020 +19950317, -0.07, -0.13, -0.35, 0.15, 0.04, 0.020 +19950320, 0.10, 0.14, -0.26, 0.15, -0.16, 0.020 +19950321, -0.24, -0.03, -0.10, 0.09, -0.11, 0.020 +19950322, 0.04, -0.24, 0.05, -0.13, 0.25, 0.020 +19950323, 0.08, 0.08, 0.11, -0.03, 0.11, 0.020 +19950324, 0.93, -0.52, 0.01, -0.19, -0.10, 0.020 +19950327, 0.48, -0.15, 0.07, -0.26, -0.09, 0.020 +19950328, 0.15, 0.14, -0.25, 0.31, -0.32, 0.020 +19950329, -0.17, -0.05, 0.63, -0.37, 0.45, 0.020 +19950330, -0.08, 0.11, 0.80, -0.65, 0.47, 0.020 +19950331, -0.27, 0.63, 0.04, -0.07, 0.19, 0.020 +19950403, 0.14, -0.12, 0.09, 0.43, -0.24, 0.023 +19950404, 0.47, -0.49, 0.28, 0.01, 0.60, 0.023 +19950405, 0.09, -0.01, 0.30, -0.10, 0.02, 0.023 +19950406, 0.05, -0.03, 0.61, -0.11, 0.18, 0.023 +19950407, -0.04, -0.37, 0.15, 0.04, 0.00, 0.023 +19950410, 0.25, 0.31, -0.21, 0.05, -0.45, 0.023 +19950411, -0.17, 0.46, -0.02, 0.06, 0.11, 0.023 +19950412, 0.33, -0.21, 0.16, -0.02, 0.15, 0.023 +19950413, 0.34, 0.17, -0.15, -0.14, -0.22, 0.023 +19950417, -0.53, 0.44, 0.45, 0.05, 0.12, 0.023 +19950418, -0.34, -0.04, 0.09, 0.26, 0.28, 0.023 +19950419, -0.30, -0.60, 0.61, -0.26, 0.59, 0.023 +19950420, 0.16, -0.02, 0.29, -0.31, 0.50, 0.023 +19950421, 0.51, -0.10, 0.08, 0.07, -0.09, 0.023 +19950424, 0.72, -0.33, -0.02, 0.12, -0.12, 0.023 +19950425, -0.09, 0.22, 0.13, -0.11, 0.00, 0.023 +19950426, 0.14, 0.25, -0.36, 0.04, -0.25, 0.023 +19950427, 0.20, 0.11, -0.08, -0.07, -0.14, 0.023 +19950428, 0.16, 0.01, -0.20, 0.01, -0.09, 0.023 +19950501, -0.13, 0.04, 0.13, -0.18, 0.47, 0.024 +19950502, 0.08, -0.04, -0.11, 0.05, 0.18, 0.024 +19950503, 0.94, -0.70, -0.33, 0.23, -0.38, 0.024 +19950504, -0.10, -0.46, 0.27, 0.10, 0.12, 0.024 +19950505, -0.10, -0.05, 0.26, 0.19, 0.05, 0.024 +19950508, 0.64, -0.27, 0.22, -0.27, -0.21, 0.024 +19950509, 0.05, -0.30, 0.37, -0.19, -0.21, 0.024 +19950510, 0.15, 0.15, 0.33, -0.05, -0.04, 0.024 +19950511, 0.23, 0.22, -0.49, 0.00, -0.28, 0.024 +19950512, 0.23, 0.03, 0.24, -0.46, -0.11, 0.024 +19950515, 0.42, -0.18, 0.46, -0.13, 0.02, 0.024 +19950516, 0.12, 0.28, -0.06, 0.10, 0.22, 0.024 +19950517, -0.21, 0.46, -0.14, -0.04, -0.22, 0.024 +19950518, -1.30, 0.77, 0.17, 0.00, 0.03, 0.024 +19950519, -0.08, 0.03, -0.18, 0.36, 0.11, 0.024 +19950522, 0.76, -0.37, 0.16, -0.13, -0.14, 0.024 +19950523, 0.85, -0.44, 0.07, 0.15, -0.29, 0.024 +19950524, -0.05, -0.09, 0.02, -0.24, -0.01, 0.024 +19950525, -0.04, -0.06, -0.08, 0.47, -0.01, 0.024 +19950526, -0.82, 0.43, 0.23, -0.13, 0.04, 0.024 +19950530, -0.22, -0.34, 0.43, 0.18, 0.63, 0.024 +19950531, 1.46, -1.19, -0.29, 0.43, 0.06, 0.024 +19950601, 0.15, 0.24, 0.37, -0.02, -0.20, 0.021 +19950602, 0.00, 0.22, 0.21, -0.14, -0.73, 0.021 +19950605, 0.61, 0.06, -0.10, 0.02, -0.40, 0.021 +19950606, -0.03, 0.20, -0.16, -0.21, 0.16, 0.021 +19950607, -0.34, 0.52, -0.45, 0.13, -0.12, 0.021 +19950608, -0.08, 0.57, -0.41, -0.25, -0.18, 0.021 +19950609, -0.73, 0.59, -0.27, 0.05, 0.11, 0.021 +19950612, 0.50, -0.02, -0.33, -0.03, -0.06, 0.021 +19950613, 0.92, -0.41, 0.01, -0.04, -0.16, 0.021 +19950614, 0.07, 0.16, -0.26, 0.20, -0.03, 0.021 +19950615, 0.22, 0.37, -0.24, 0.07, -0.07, 0.021 +19950616, 0.43, -0.16, -0.45, 0.18, -0.06, 0.021 +19950619, 0.92, -0.51, -0.21, 0.01, -0.70, 0.021 +19950620, 0.04, 0.06, 0.47, 0.10, -0.41, 0.021 +19950621, -0.04, 0.27, 0.04, 0.23, -0.32, 0.021 +19950622, 1.15, -0.70, -0.46, 0.03, -0.42, 0.021 +19950623, -0.29, 0.21, -0.08, -0.22, 0.23, 0.021 +19950626, -1.00, 0.12, 0.53, 0.02, 0.50, 0.021 +19950627, -0.39, 0.09, 0.20, -0.32, 0.65, 0.021 +19950628, 0.32, -0.42, 0.14, 0.14, 0.20, 0.021 +19950629, -0.03, 0.51, -0.40, -0.11, -0.23, 0.021 +19950630, 0.28, 0.83, -0.33, -0.22, -0.08, 0.021 +19950703, 0.33, -0.34, -0.14, 0.11, 0.18, 0.023 +19950705, 0.19, 0.14, 0.27, -0.34, -0.22, 0.023 +19950706, 1.12, -0.68, 0.10, 0.15, -0.13, 0.023 +19950707, 0.59, 0.34, 0.13, -0.08, -0.34, 0.023 +19950710, 0.17, 0.40, 0.34, 0.41, -0.18, 0.023 +19950711, -0.34, 0.60, -0.27, 0.29, 0.08, 0.023 +19950712, 1.10, -0.18, -0.58, 0.15, -0.75, 0.023 +19950713, 0.07, 0.30, -0.20, 0.01, -0.35, 0.023 +19950714, -0.15, 0.31, -0.38, -0.06, -0.20, 0.023 +19950717, 0.40, 0.06, -0.67, 0.25, -0.16, 0.023 +19950718, -0.81, 0.09, 0.64, 0.05, 0.55, 0.023 +19950719, -1.65, -0.62, 0.85, 0.28, 1.01, 0.023 +19950720, 0.59, 0.26, -0.26, -0.07, 0.27, 0.023 +19950721, 0.06, 0.39, -0.57, -0.10, -0.11, 0.023 +19950724, 0.69, 0.20, -0.50, 0.06, -0.43, 0.023 +19950725, 0.76, -0.37, -0.03, -0.25, -0.41, 0.023 +19950726, 0.23, 0.21, -0.37, -0.03, -0.25, 0.023 +19950727, 0.71, 0.07, -0.26, -0.06, -0.28, 0.023 +19950728, -0.28, 0.52, 0.22, -0.37, 0.10, 0.023 +19950731, -0.10, 0.29, 0.06, -0.01, -0.04, 0.023 +19950801, -0.51, 0.11, 0.20, -0.23, 0.60, 0.020 +19950802, -0.21, -0.01, 0.83, -0.41, 0.57, 0.020 +19950803, -0.11, -0.15, 0.43, 0.05, 0.16, 0.020 +19950804, 0.15, 0.25, -0.15, 0.08, -0.14, 0.020 +19950807, 0.24, 0.08, 0.12, -0.19, 0.10, 0.020 +19950808, 0.05, -0.10, -0.06, 0.17, -0.01, 0.020 +19950809, 0.01, 0.39, -0.48, 0.00, -0.28, 0.020 +19950810, -0.27, 0.25, 0.09, -0.02, 0.13, 0.020 +19950811, -0.34, 0.33, -0.07, 0.04, -0.16, 0.020 +19950814, 0.74, -0.42, -0.50, 0.03, -0.15, 0.020 +19950815, -0.10, 0.23, 0.03, -0.14, 0.03, 0.020 +19950816, 0.45, 0.09, -0.03, -0.46, -0.37, 0.020 +19950817, 0.00, 0.45, 0.02, -0.17, 0.07, 0.020 +19950818, 0.07, 0.28, 0.00, -0.12, 0.10, 0.020 +19950821, -0.22, 0.62, 0.38, -0.07, 0.49, 0.020 +19950822, 0.18, -0.47, -0.15, 0.08, -0.35, 0.020 +19950823, -0.27, 0.40, -0.15, -0.01, -0.09, 0.020 +19950824, -0.07, -0.15, 0.30, 0.18, 0.30, 0.020 +19950825, 0.40, -0.29, 0.30, -0.32, 0.35, 0.020 +19950828, -0.30, -0.05, 1.12, 0.22, 0.55, 0.020 +19950829, 0.02, -0.74, 0.61, 0.31, 0.06, 0.020 +19950830, 0.33, 0.35, -0.07, -0.11, -0.42, 0.020 +19950831, 0.32, 0.34, -0.13, -0.21, 0.02, 0.020 +19950901, 0.27, -0.09, 0.45, -0.27, 0.24, 0.022 +19950905, 0.96, -0.47, -0.26, 0.16, -0.82, 0.022 +19950906, 0.36, 0.35, -0.40, -0.13, -0.09, 0.022 +19950907, 0.08, 0.45, -0.31, -0.14, -0.02, 0.022 +19950908, 0.51, 0.22, -0.07, -0.21, -0.13, 0.022 +19950911, 0.24, -0.09, -0.36, -0.10, -0.24, 0.022 +19950912, 0.25, -0.06, -0.21, -0.16, 0.51, 0.022 +19950913, 0.40, -0.20, -0.33, 0.38, -0.07, 0.022 +19950914, 0.59, -0.47, 0.24, 0.19, 0.19, 0.022 +19950915, -0.18, -0.41, 0.81, 0.22, 0.74, 0.022 +19950918, -0.14, -0.22, -0.55, 0.07, -0.23, 0.022 +19950919, 0.30, -0.17, -0.36, 0.12, -0.64, 0.022 +19950920, 0.44, -0.08, -0.15, 0.06, -0.32, 0.022 +19950921, -0.62, 0.36, -0.32, 0.09, -0.04, 0.022 +19950922, -0.32, -0.07, -0.34, 0.37, 0.15, 0.022 +19950925, -0.19, -0.35, 0.30, 0.24, 0.39, 0.022 +19950926, -0.12, -0.26, 0.16, 0.28, 0.31, 0.022 +19950927, -0.31, -0.93, 0.84, 0.53, 0.25, 0.022 +19950928, 0.89, -0.19, -0.12, -0.51, -0.38, 0.022 +19950929, -0.11, 0.86, 0.25, 0.06, 0.55, 0.022 +19951002, -0.63, -0.47, 0.57, 0.12, 0.55, 0.021 +19951003, -0.17, -0.90, 0.31, 0.43, 0.12, 0.021 +19951004, -0.46, -0.59, 0.58, 0.80, 0.70, 0.021 +19951005, 0.29, -0.34, -0.16, -0.26, -0.43, 0.021 +19951006, 0.00, 0.22, 0.14, 0.10, 0.05, 0.021 +19951009, -1.07, -0.65, 1.02, 0.56, 0.81, 0.021 +19951010, -0.25, -0.68, 0.39, -0.02, 0.34, 0.021 +19951011, 0.62, 0.44, -0.34, -0.29, -0.51, 0.021 +19951012, 0.80, 0.03, -0.25, -0.08, -0.70, 0.021 +19951013, 0.33, 0.29, -0.23, -0.16, -0.04, 0.021 +19951016, -0.20, 0.22, 0.08, 0.11, -0.09, 0.021 +19951017, 0.60, -0.56, -0.58, 0.16, -0.52, 0.021 +19951018, 0.22, 0.17, -0.48, 0.15, -0.30, 0.021 +19951019, 0.31, -0.53, -0.55, 0.16, 0.31, 0.021 +19951020, -0.57, 0.50, 0.14, 0.19, 0.55, 0.021 +19951023, -0.38, -0.29, -0.06, 0.11, -0.36, 0.021 +19951024, 0.11, -0.12, -0.55, 0.10, -0.06, 0.021 +19951025, -0.85, -0.19, -0.05, 0.04, 0.27, 0.021 +19951026, -0.95, -0.10, -0.10, 0.50, -0.27, 0.021 +19951027, 0.41, -0.67, 0.22, -0.17, -0.28, 0.021 +19951030, 0.64, -0.27, -0.59, -0.30, -0.30, 0.021 +19951031, -0.27, 0.35, -0.29, -0.07, 0.06, 0.021 +19951101, 0.51, -0.25, 0.19, -0.15, -0.18, 0.020 +19951102, 1.03, -0.15, -0.13, -0.22, -0.40, 0.020 +19951103, 0.31, 0.30, -0.23, -0.25, -0.10, 0.020 +19951106, -0.29, 0.30, 0.15, -0.22, 0.15, 0.020 +19951107, -0.50, 0.03, 0.43, 0.13, 0.47, 0.020 +19951108, 0.72, -0.44, -0.15, 0.22, 0.17, 0.020 +19951109, 0.45, 0.11, -0.49, 0.07, -0.72, 0.020 +19951110, -0.12, 0.30, -0.10, -0.02, -0.01, 0.020 +19951113, -0.15, -0.11, -0.02, 0.00, 0.36, 0.020 +19951114, -0.66, -0.01, 0.40, 0.25, 0.67, 0.020 +19951115, 0.55, -0.57, -0.27, 0.40, -0.02, 0.020 +19951116, 0.59, -0.25, 0.14, -0.16, 0.37, 0.020 +19951117, 0.38, -0.13, 0.20, -0.20, 0.36, 0.020 +19951120, -0.58, 0.20, 0.56, 0.09, 0.44, 0.020 +19951121, 0.21, -0.88, 0.54, 0.29, 0.24, 0.020 +19951122, -0.24, 0.11, 0.66, -0.34, 0.27, 0.020 +19951124, 0.33, -0.10, -0.19, -0.15, -0.30, 0.020 +19951127, 0.17, -0.07, 0.18, -0.29, 0.17, 0.020 +19951128, 0.79, -0.38, -0.77, 0.29, -0.52, 0.020 +19951129, 0.41, 0.15, -0.08, -0.13, -0.01, 0.020 +19951130, -0.03, 0.72, -0.16, -0.33, -0.34, 0.020 +19951201, 0.13, 0.25, 0.28, -0.10, 0.59, 0.024 +19951204, 1.04, -0.49, -0.09, 0.04, -0.14, 0.024 +19951205, 0.43, -0.32, -0.11, -0.05, 0.18, 0.024 +19951206, 0.18, -0.42, 0.32, 0.40, 0.40, 0.024 +19951207, -0.70, 0.25, -0.22, -0.03, -0.02, 0.024 +19951208, 0.20, 0.09, -0.27, 0.26, -0.33, 0.024 +19951211, 0.24, -0.25, -0.22, 0.04, 0.33, 0.024 +19951212, -0.26, 0.02, -0.06, -0.03, 0.20, 0.024 +19951213, 0.43, -0.08, -0.06, -0.05, 0.18, 0.024 +19951214, -0.83, 0.80, 0.44, 0.04, 0.69, 0.024 +19951215, -0.29, -0.38, 0.49, -0.29, 0.33, 0.024 +19951218, -1.76, -0.38, 1.01, 0.67, 0.55, 0.024 +19951219, 0.99, -0.47, -0.31, -0.59, -0.63, 0.024 +19951220, -0.57, 1.55, 0.26, -0.60, 0.13, 0.024 +19951221, 0.70, -0.10, -0.34, -0.63, 0.06, 0.024 +19951222, 0.32, 0.19, -0.12, -0.34, 0.08, 0.024 +19951226, 0.30, -0.13, -0.20, 0.05, 0.15, 0.024 +19951227, 0.14, 0.21, 0.00, -0.05, 0.10, 0.024 +19951228, -0.06, 0.00, 0.28, 0.10, 0.04, 0.024 +19951229, 0.41, 0.29, -0.26, -0.25, 0.07, 0.024 +19960102, 0.59, -0.40, -0.16, -0.01, -0.01, 0.019 +19960103, -0.08, -0.22, 0.66, 0.01, 0.72, 0.019 +19960104, -0.82, -0.37, 0.25, 0.22, 0.52, 0.019 +19960105, -0.15, 0.70, -0.17, -0.08, 0.26, 0.019 +19960108, 0.24, -0.23, -0.06, -0.19, 0.23, 0.019 +19960109, -1.67, 0.18, 1.17, -0.10, 1.41, 0.019 +19960110, -1.62, 0.26, 0.07, 0.09, -0.43, 0.019 +19960111, 0.87, -0.04, -0.63, -0.27, -0.53, 0.019 +19960112, -0.13, -0.05, 0.23, 0.19, 0.03, 0.019 +19960115, -0.58, -0.38, 0.70, -0.02, 0.79, 0.019 +19960116, 1.02, -1.34, 0.05, 0.47, 0.10, 0.019 +19960117, -0.09, 0.28, 0.27, -0.29, 0.11, 0.019 +19960118, 0.37, 0.13, -0.67, -0.22, 0.02, 0.019 +19960119, 0.57, -0.24, -0.49, 0.18, -0.29, 0.019 +19960122, 0.41, 0.13, -0.30, -0.40, -0.33, 0.019 +19960123, -0.02, 0.38, -0.18, 0.14, -0.20, 0.019 +19960124, 1.05, -0.49, -0.40, 0.10, -0.21, 0.019 +19960125, -0.40, 0.51, 0.31, -0.09, 0.32, 0.019 +19960126, 0.63, -0.40, -0.44, 0.12, -0.05, 0.019 +19960129, 0.37, -0.21, 0.28, -0.15, 0.11, 0.019 +19960130, 0.91, -0.41, -0.08, 0.00, -0.24, 0.019 +19960131, 0.83, -0.37, -0.17, -0.25, -0.12, 0.019 +19960201, 0.43, 0.12, -0.43, 0.03, -0.39, 0.020 +19960202, -0.28, 0.40, -0.43, -0.12, -0.14, 0.020 +19960205, 0.74, -0.56, -0.38, 0.45, -0.42, 0.020 +19960206, 0.68, -0.39, -0.06, -0.09, 0.14, 0.020 +19960207, 0.36, -0.61, 0.17, 0.57, 0.15, 0.020 +19960208, 0.80, -0.46, -0.43, 0.03, -0.24, 0.020 +19960209, 0.08, 0.16, 0.00, 0.09, 0.07, 0.020 +19960212, 0.54, -0.54, 0.19, -0.07, 0.09, 0.020 +19960213, -0.20, -0.30, 0.58, 0.07, 0.29, 0.020 +19960214, -0.46, 0.85, -0.02, -0.28, -0.22, 0.020 +19960215, -0.31, 0.42, -0.18, -0.33, -0.11, 0.020 +19960216, -0.39, 0.75, 0.04, -0.07, -0.14, 0.020 +19960220, -1.05, 0.23, -0.16, 0.00, -0.09, 0.020 +19960221, 1.05, -0.33, -0.57, 0.16, -0.38, 0.020 +19960222, 1.57, -0.57, -0.54, -0.01, -0.44, 0.020 +19960223, 0.08, 0.13, -0.06, -0.15, -0.27, 0.020 +19960226, -1.05, 1.01, 0.34, 0.05, 0.04, 0.020 +19960227, -0.44, 0.34, 0.28, 0.08, 0.26, 0.020 +19960228, -0.19, 0.43, 0.27, -0.11, -0.18, 0.020 +19960229, -0.60, 0.65, -0.03, 0.06, 0.22, 0.020 +19960301, 0.25, -0.48, 0.74, 0.17, 0.54, 0.019 +19960304, 0.92, -0.54, -0.04, 0.14, 0.06, 0.019 +19960305, 0.68, -0.40, -0.48, 0.37, -0.35, 0.019 +19960306, -0.38, 0.44, 0.29, -0.35, 0.36, 0.019 +19960307, 0.18, -0.14, -0.12, -0.01, -0.35, 0.019 +19960308, -2.91, 0.58, 0.08, 0.22, -0.27, 0.019 +19960311, 0.92, -0.16, -0.64, -0.25, 0.33, 0.019 +19960312, -0.49, 0.26, 0.09, 0.01, -0.07, 0.019 +19960313, 0.42, 0.27, -0.04, -0.42, -0.31, 0.019 +19960314, 0.41, 0.20, 0.02, -0.25, -0.07, 0.019 +19960315, 0.17, -0.08, -0.45, 0.44, -0.49, 0.019 +19960318, 1.47, -0.66, -0.04, 0.32, 0.08, 0.019 +19960319, -0.15, 0.23, 0.42, 0.02, 0.16, 0.019 +19960320, -0.28, 0.31, 0.35, 0.45, -0.17, 0.019 +19960321, -0.09, 0.33, 0.01, -0.05, 0.11, 0.019 +19960322, 0.20, 0.01, -0.08, -0.03, -0.06, 0.019 +19960325, -0.30, -0.32, 0.99, 0.33, 0.21, 0.019 +19960326, 0.28, -0.30, -0.01, 0.31, 0.00, 0.019 +19960327, -0.34, 0.64, -0.02, -0.21, -0.12, 0.019 +19960328, 0.04, 0.12, 0.08, 0.16, -0.15, 0.019 +19960329, -0.21, 1.17, -0.13, -0.09, -0.39, 0.019 +19960401, 1.04, -0.70, -0.04, 0.66, 0.09, 0.022 +19960402, 0.21, 0.16, -0.14, 0.04, 0.10, 0.022 +19960403, 0.13, 0.26, -0.16, 0.06, 0.00, 0.022 +19960404, 0.04, 0.20, 0.01, -0.42, 0.20, 0.022 +19960408, -1.67, 0.55, -0.31, -0.09, -0.08, 0.022 +19960409, -0.13, 0.59, 0.18, -0.19, -0.05, 0.022 +19960410, -1.19, 0.91, -0.32, 0.01, -0.17, 0.022 +19960411, -0.54, 0.26, -0.22, 0.15, 0.34, 0.022 +19960412, 0.83, -0.44, 0.13, 0.07, -0.08, 0.022 +19960415, 0.81, -0.05, -0.30, 0.15, -0.32, 0.022 +19960416, 0.49, 0.11, -0.69, -0.02, -0.29, 0.022 +19960417, -0.49, 0.46, 0.36, 0.30, -0.05, 0.022 +19960418, 0.47, 0.41, -0.46, 0.02, -0.35, 0.022 +19960419, 0.22, 0.17, -0.32, 0.02, 0.02, 0.022 +19960422, 0.57, 0.18, -0.59, -0.19, -0.32, 0.022 +19960423, 0.60, 0.07, -0.14, -0.45, -0.11, 0.022 +19960424, -0.01, 0.41, -0.41, 0.12, -0.56, 0.022 +19960425, 0.45, 0.14, -0.33, -0.02, -0.22, 0.022 +19960426, 0.15, 0.40, 0.00, -0.16, -0.13, 0.022 +19960429, 0.09, 0.18, -0.16, 0.16, -0.06, 0.022 +19960430, 0.03, 0.16, 0.13, -0.02, -0.05, 0.022 +19960501, 0.22, 0.49, -0.04, -0.24, 0.16, 0.019 +19960502, -1.61, 0.63, 0.17, 0.09, 0.35, 0.019 +19960503, -0.11, 0.57, -0.16, -0.28, -0.16, 0.019 +19960506, -0.16, 0.31, -0.19, -0.26, -0.03, 0.019 +19960507, -0.41, 0.04, 0.16, 0.21, -0.07, 0.019 +19960508, 0.61, -0.96, 0.25, 0.63, 0.10, 0.019 +19960509, 0.25, 0.57, -0.17, -0.17, 0.32, 0.019 +19960510, 1.09, -0.14, -0.26, -0.07, -0.31, 0.019 +19960513, 1.31, -0.47, -0.67, 0.20, -0.57, 0.019 +19960514, 0.72, 0.15, -0.06, -0.14, -0.31, 0.019 +19960515, -0.02, 0.24, -0.07, 0.09, -0.01, 0.019 +19960516, 0.05, 0.27, -0.39, 0.13, -0.26, 0.019 +19960517, 0.55, 0.07, 0.27, 0.06, 0.30, 0.019 +19960520, 0.59, 0.12, -0.22, -0.22, 0.37, 0.019 +19960521, -0.07, 0.15, 0.21, -0.09, 0.18, 0.019 +19960522, 0.62, -0.17, 0.49, -0.17, 0.60, 0.019 +19960523, -0.26, 0.35, -0.10, 0.10, -0.10, 0.019 +19960524, 0.24, -0.02, -0.49, 0.34, -0.21, 0.019 +19960528, -0.89, 0.09, 0.19, 0.27, -0.26, 0.019 +19960529, -0.68, 0.05, 0.52, 0.18, 0.28, 0.019 +19960530, 0.51, -0.10, -0.28, -0.30, -0.20, 0.019 +19960531, -0.18, 0.81, -0.38, 0.02, -0.46, 0.019 +19960603, -0.25, 0.09, 0.09, 0.20, -0.13, 0.020 +19960604, 0.68, -0.52, 0.05, -0.02, 0.12, 0.020 +19960605, 0.72, -0.51, -0.11, 0.41, -0.12, 0.020 +19960606, -0.77, 0.18, 0.40, 0.44, 0.48, 0.020 +19960607, -0.21, -0.51, -0.58, 0.23, -0.08, 0.020 +19960610, -0.12, 0.39, 0.11, 0.04, 0.17, 0.020 +19960611, -0.12, 0.08, 0.06, -0.04, -0.25, 0.020 +19960612, -0.08, 0.29, 0.10, 0.18, 0.07, 0.020 +19960613, -0.29, -0.36, 0.24, 0.40, 0.14, 0.020 +19960614, -0.45, -0.12, 0.44, 0.21, 0.19, 0.020 +19960617, -0.21, -0.25, 0.28, 0.13, 0.18, 0.020 +19960618, -0.78, -0.90, 0.80, 0.45, 0.19, 0.020 +19960619, -0.12, -0.50, 0.02, -0.12, 0.19, 0.020 +19960620, -0.32, -0.75, -0.03, 0.38, 0.34, 0.020 +19960621, 0.58, -0.26, -0.48, -0.03, -0.06, 0.020 +19960624, 0.33, 0.20, -0.17, 0.15, -0.33, 0.020 +19960625, -0.25, -0.43, 0.15, 0.42, 0.10, 0.020 +19960626, -0.82, -0.73, 0.61, 0.24, 0.21, 0.020 +19960627, 0.60, -0.09, -0.15, -0.12, -0.26, 0.020 +19960628, 0.73, 1.20, -0.25, -0.05, -0.06, 0.020 +19960701, 0.75, -0.36, -0.01, -0.11, -0.36, 0.020 +19960702, -0.29, 0.17, 0.25, -0.03, 0.23, 0.020 +19960703, -0.35, -0.17, 0.20, 0.21, 0.60, 0.020 +19960705, -2.05, 0.77, 0.37, 0.11, 0.27, 0.020 +19960708, -0.86, -0.12, 0.32, 0.20, 0.17, 0.020 +19960709, 0.32, -0.45, 0.11, -0.04, 0.14, 0.020 +19960710, -0.21, -1.06, 0.85, 0.34, 0.76, 0.020 +19960711, -1.87, -0.90, 1.49, 0.71, 1.27, 0.020 +19960712, 0.00, -0.31, 0.25, -0.06, 0.23, 0.020 +19960715, -2.69, -0.29, 1.94, 0.50, 0.96, 0.020 +19960716, -0.53, -1.23, 0.14, 0.33, -0.16, 0.020 +19960717, 1.42, 1.50, -1.48, -0.75, -1.85, 0.020 +19960718, 1.60, -0.01, -1.18, -0.19, -0.57, 0.020 +19960719, -0.79, 0.52, 0.27, 0.38, 0.56, 0.020 +19960722, -0.95, -0.36, 0.82, 0.53, 0.51, 0.020 +19960723, -1.46, -0.66, 1.51, 0.32, 1.21, 0.020 +19960724, -0.26, -1.50, -0.03, 0.33, -0.15, 0.020 +19960725, 0.92, 0.45, -0.76, -0.15, -0.74, 0.020 +19960726, 0.90, 0.12, -0.73, -0.10, -0.74, 0.020 +19960729, -0.79, 0.32, 0.67, -0.04, 0.61, 0.020 +19960730, 0.48, -0.43, 0.09, 0.48, -0.39, 0.020 +19960731, 0.73, 0.10, -0.42, 0.04, 0.10, 0.020 +19960801, 1.57, -0.69, -0.38, 0.03, -0.45, 0.019 +19960802, 1.85, -0.48, -0.87, -0.09, -0.99, 0.019 +19960805, -0.29, 0.33, 0.23, 0.11, 0.14, 0.019 +19960806, 0.31, -0.16, -0.41, 0.13, -0.41, 0.019 +19960807, 0.39, 0.39, -0.47, 0.07, -0.65, 0.019 +19960808, -0.17, 0.10, 0.25, -0.31, 0.17, 0.019 +19960809, -0.28, 0.21, 0.38, -0.02, -0.51, 0.019 +19960812, 0.54, -0.59, -0.07, 0.23, 0.17, 0.019 +19960813, -0.79, 0.34, 0.25, 0.26, 0.36, 0.019 +19960814, 0.39, -0.07, 0.01, -0.25, -0.26, 0.019 +19960815, 0.08, 0.17, 0.22, -0.06, 0.00, 0.019 +19960816, 0.41, -0.07, 0.35, 0.00, 0.32, 0.019 +19960819, 0.07, -0.16, 0.25, -0.10, 0.26, 0.019 +19960820, -0.16, 0.13, 0.50, 0.02, 0.28, 0.019 +19960821, -0.09, 0.00, 0.08, -0.07, -0.08, 0.019 +19960822, 0.86, -0.06, -0.52, -0.01, -0.51, 0.019 +19960823, -0.36, 0.58, -0.11, 0.09, 0.08, 0.019 +19960826, -0.37, 0.30, 0.06, -0.07, -0.27, 0.019 +19960827, 0.41, 0.26, -0.48, 0.11, -0.11, 0.019 +19960828, 0.00, 0.58, -0.20, -0.23, -0.28, 0.019 +19960829, -0.95, 0.69, 0.25, 0.09, 0.18, 0.019 +19960830, -0.63, 0.64, 0.21, -0.24, 0.15, 0.019 +19960903, 0.15, -0.39, -0.02, 0.19, 0.21, 0.022 +19960904, 0.15, 0.24, 0.19, 0.02, -0.07, 0.022 +19960905, -0.98, 0.20, 0.53, -0.20, 0.70, 0.022 +19960906, 0.99, -0.22, -0.54, -0.02, -0.09, 0.022 +19960909, 0.98, -0.61, -0.19, -0.06, 0.03, 0.022 +19960910, 0.04, 0.09, -0.16, 0.37, -0.03, 0.022 +19960911, 0.42, -0.35, 0.02, -0.21, 0.12, 0.022 +19960912, 0.62, -0.08, -0.36, 0.14, -0.63, 0.022 +19960913, 1.29, -0.62, -0.69, 0.30, -0.70, 0.022 +19960916, 0.48, -0.27, -0.04, 0.21, -0.27, 0.022 +19960917, -0.12, 0.13, -0.32, 0.20, -0.50, 0.022 +19960918, -0.18, 0.15, -0.12, 0.15, -0.05, 0.022 +19960919, 0.18, -0.27, -0.54, 0.25, -0.35, 0.022 +19960920, 0.50, -0.13, -0.08, -0.08, -0.15, 0.022 +19960923, -0.20, -0.12, 0.16, 0.13, 0.30, 0.022 +19960924, -0.03, 0.28, -0.23, 0.04, -0.31, 0.022 +19960925, 0.15, 0.32, -0.31, 0.10, -0.22, 0.022 +19960926, 0.20, 0.20, -0.55, -0.09, -0.30, 0.022 +19960927, 0.06, 0.10, 0.02, -0.03, -0.07, 0.022 +19960930, 0.19, 0.05, 0.21, 0.08, 0.32, 0.022 +19961001, 0.02, -0.54, 0.75, 0.03, 0.49, 0.018 +19961002, 0.73, -0.06, -0.09, 0.08, -0.03, 0.018 +19961003, -0.17, -0.01, 0.08, -0.06, 0.08, 0.018 +19961004, 1.10, -0.74, -0.19, 0.07, 0.09, 0.018 +19961007, 0.18, -0.35, 0.16, 0.13, -0.14, 0.018 +19961008, -0.44, 0.05, 0.36, 0.12, 0.35, 0.018 +19961009, -0.51, 0.35, 0.16, 0.31, -0.33, 0.018 +19961010, -0.23, 0.40, 0.07, 0.03, -0.04, 0.018 +19961011, 0.70, -0.37, -0.15, 0.38, -0.12, 0.018 +19961014, 0.44, -0.18, -0.13, 0.10, -0.12, 0.018 +19961015, -0.17, 0.11, 0.15, 0.12, -0.14, 0.018 +19961016, 0.09, -0.35, 0.13, 0.01, 0.69, 0.018 +19961017, 0.24, -0.39, 0.42, -0.13, 0.60, 0.018 +19961018, 0.35, -0.43, 0.20, 0.02, -0.03, 0.018 +19961021, -0.28, -0.37, 0.78, -0.05, 0.65, 0.018 +19961022, -0.67, -0.43, 0.64, 0.14, 0.45, 0.018 +19961023, -0.01, -0.14, 0.09, 0.01, -0.24, 0.018 +19961024, -0.48, 0.65, 0.17, -0.12, -0.08, 0.018 +19961025, -0.21, 0.17, 0.45, -0.33, 0.25, 0.018 +19961028, -0.62, -0.35, 0.60, 0.22, 0.44, 0.018 +19961029, 0.25, -0.97, 0.73, 0.31, 0.70, 0.018 +19961030, -0.03, -0.04, 0.12, -0.15, -0.16, 0.018 +19961031, 0.63, 0.10, -0.43, 0.14, -0.44, 0.018 +19961101, -0.18, -0.23, 0.05, 0.15, -0.11, 0.020 +19961104, 0.27, -0.37, 0.46, 0.40, 0.20, 0.020 +19961105, 0.86, -0.98, -0.11, 0.40, -0.36, 0.020 +19961106, 1.39, -0.66, -0.65, 0.38, -0.17, 0.020 +19961107, 0.41, 0.12, -0.48, -0.04, -0.31, 0.020 +19961108, 0.34, -0.32, -0.10, -0.21, -0.07, 0.020 +19961111, 0.17, 0.10, -0.04, 0.10, -0.16, 0.020 +19961112, -0.23, 0.22, 0.47, 0.05, 0.30, 0.020 +19961113, 0.18, -0.12, -0.22, -0.06, -0.03, 0.020 +19961114, 0.60, -0.32, -0.01, 0.14, -0.03, 0.020 +19961115, 0.06, -0.34, 0.30, 0.02, 0.53, 0.020 +19961118, -0.17, -0.18, 0.82, 0.02, 0.32, 0.020 +19961119, 0.54, -0.46, 0.37, 0.45, 0.13, 0.020 +19961120, 0.20, -0.13, 0.26, -0.01, -0.16, 0.020 +19961121, -0.20, 0.06, 0.20, 0.05, 0.27, 0.020 +19961122, 0.74, -0.08, -0.20, -0.08, -0.52, 0.020 +19961125, 0.99, -0.50, 0.10, 0.13, 0.23, 0.020 +19961126, -0.19, -0.09, 0.07, 0.11, -0.14, 0.020 +19961127, 0.02, 0.40, -0.07, 0.00, -0.42, 0.020 +19961129, 0.27, 0.25, -0.11, -0.15, -0.12, 0.020 +19961202, 0.06, 0.12, -0.10, -0.04, -0.10, 0.022 +19961203, -0.74, 1.46, 0.09, -0.37, -0.21, 0.022 +19961204, -0.33, 0.38, -0.03, 0.03, 0.14, 0.022 +19961205, -0.07, 0.36, -0.13, -0.54, 0.01, 0.022 +19961206, -0.74, -0.26, 0.14, 0.23, 0.00, 0.022 +19961209, 1.38, 0.01, -0.55, 0.30, -0.48, 0.022 +19961210, -0.29, 0.55, 0.54, 0.09, 0.36, 0.022 +19961211, -0.91, 0.00, -0.05, 0.29, -0.13, 0.022 +19961212, -1.29, 1.20, -0.08, -0.02, 0.03, 0.022 +19961213, -0.30, -0.45, 0.44, -0.11, 0.45, 0.022 +19961216, -1.12, 0.18, 0.66, -0.18, 0.89, 0.022 +19961217, 0.47, -0.77, 0.28, 0.38, -0.02, 0.022 +19961218, 0.83, 0.01, -0.58, -0.06, -0.48, 0.022 +19961219, 1.56, -1.04, -0.28, 0.35, 0.37, 0.022 +19961220, 0.29, -0.19, 0.53, 0.14, 0.34, 0.022 +19961223, -0.36, -0.13, 0.26, 0.12, 0.39, 0.022 +19961224, 0.48, -0.41, -0.19, 0.22, 0.03, 0.022 +19961226, 0.57, -0.29, -0.07, -0.03, -0.21, 0.022 +19961227, 0.17, 0.18, -0.12, 0.20, 0.47, 0.022 +19961230, -0.26, 0.22, 0.34, 0.01, 0.08, 0.022 +19961231, -1.02, 2.02, -0.24, -0.48, -0.48, 0.022 +19970102, -0.75, 0.09, 0.14, 0.01, 0.50, 0.020 +19970103, 1.39, -0.37, -0.78, 0.08, -0.59, 0.020 +19970106, 0.02, 0.18, 0.05, -0.07, 0.05, 0.020 +19970107, 0.72, -0.08, -0.52, 0.05, -0.15, 0.020 +19970108, -0.44, 0.62, 0.53, -0.10, 0.05, 0.020 +19970109, 0.72, -0.46, -0.15, -0.24, 0.25, 0.020 +19970110, 0.50, -0.24, -0.37, 0.10, -0.16, 0.020 +19970113, -0.07, 0.13, 0.27, 0.27, 0.14, 0.020 +19970114, 1.11, -0.79, 0.04, 0.35, -0.32, 0.020 +19970115, -0.23, 0.11, 0.47, -0.03, 0.58, 0.020 +19970116, 0.25, -0.27, -0.33, 0.07, 0.03, 0.020 +19970117, 0.72, -0.31, -0.26, 0.28, -0.06, 0.020 +19970120, 0.26, 0.21, -0.41, 0.22, -0.58, 0.020 +19970121, 0.59, -0.53, -0.21, -0.13, -0.27, 0.020 +19970122, 0.44, -0.36, -0.07, -0.07, -0.32, 0.020 +19970123, -0.85, 0.96, 0.37, -0.17, 0.16, 0.020 +19970124, -0.97, 0.35, 0.29, -0.23, 0.29, 0.020 +19970127, -0.72, 0.11, 0.34, -0.21, 0.34, 0.020 +19970128, 0.01, 0.35, -0.22, 0.30, -0.09, 0.020 +19970129, 0.68, -0.74, -0.03, 0.18, 0.34, 0.020 +19970130, 1.21, -0.71, -0.42, 0.65, -0.10, 0.020 +19970131, 0.31, -0.04, -0.34, -0.03, -0.39, 0.020 +19970203, -0.02, 0.11, 0.38, 0.22, 0.33, 0.020 +19970204, 0.12, -0.51, 0.28, 0.17, 0.30, 0.020 +19970205, -1.28, 0.54, 0.77, -0.51, 0.54, 0.020 +19970206, 0.24, -0.26, -0.09, -0.10, -0.02, 0.020 +19970207, 0.96, -0.77, -0.03, 0.23, -0.39, 0.020 +19970210, -0.65, -0.03, 0.80, -0.17, 0.68, 0.020 +19970211, 0.32, -0.88, 0.45, 0.05, 0.66, 0.020 +19970212, 1.52, -0.89, -0.67, 0.23, -0.47, 0.020 +19970213, 1.02, -0.47, 0.16, 0.24, -0.28, 0.020 +19970214, -0.22, 0.36, 0.32, -0.22, -0.08, 0.020 +19970218, 0.71, -0.43, 0.27, 0.48, 0.53, 0.020 +19970219, -0.32, 0.38, 0.31, -0.10, -0.27, 0.020 +19970220, -1.17, 0.46, 0.42, -0.04, 0.52, 0.020 +19970221, -0.26, -0.02, 0.64, -0.13, 0.63, 0.020 +19970224, 0.85, -0.78, 0.03, 0.55, 0.04, 0.020 +19970225, 0.25, -0.16, 0.16, -0.05, -0.21, 0.020 +19970226, -0.75, 0.11, 0.11, 0.06, -0.07, 0.020 +19970227, -1.27, 0.62, 0.76, -0.08, 0.75, 0.020 +19970228, -0.49, 0.02, 0.15, -0.11, 0.24, 0.020 +19970303, 0.39, -0.45, 0.13, 0.30, -0.06, 0.021 +19970304, -0.29, 0.63, 0.23, -0.42, -0.35, 0.021 +19970305, 1.17, -0.58, -0.50, 0.17, -0.16, 0.021 +19970306, -0.31, 0.15, 0.47, -0.15, 0.41, 0.021 +19970307, 0.67, -0.48, 0.24, -0.14, 0.27, 0.021 +19970310, 0.85, -0.46, 0.03, 0.19, 0.13, 0.021 +19970311, -0.24, 0.31, 0.27, -0.14, -0.03, 0.021 +19970312, -0.79, -0.04, 0.77, -0.16, -0.15, 0.021 +19970313, -1.66, 0.56, 0.01, 0.05, -0.34, 0.021 +19970314, 0.31, -0.41, -0.11, -0.14, 0.16, 0.021 +19970317, -0.11, -0.83, 0.62, 0.33, 0.63, 0.021 +19970318, -0.77, 0.17, 0.16, -0.10, 0.22, 0.021 +19970319, -0.65, -0.60, 0.80, -0.02, 0.45, 0.021 +19970320, -0.20, 0.46, -0.19, -0.13, -0.71, 0.021 +19970321, 0.09, -0.30, 0.22, -0.21, 0.18, 0.021 +19970324, 0.47, -1.34, 0.68, 0.44, 0.86, 0.021 +19970325, -0.08, 0.31, -0.32, -0.03, -0.15, 0.021 +19970326, 0.23, 0.34, -0.83, 0.23, -0.51, 0.021 +19970327, -1.90, 1.21, 0.26, -0.04, -0.03, 0.021 +19970331, -2.26, 0.77, 1.05, 0.29, 0.91, 0.021 +19970401, 0.17, -0.83, 0.34, 0.31, 0.08, 0.020 +19970402, -1.17, 0.40, 0.11, 0.24, 0.11, 0.020 +19970403, -0.02, -0.37, -0.36, 0.50, -0.89, 0.020 +19970404, 1.15, 0.15, -1.43, 0.27, -1.18, 0.020 +19970407, 0.77, 0.29, -0.21, -0.29, -0.19, 0.020 +19970408, 0.43, -0.28, 0.18, 0.21, -0.26, 0.020 +19970409, -0.58, 0.95, 0.33, 0.07, 0.27, 0.020 +19970410, -0.42, 0.03, 0.36, -0.32, 0.49, 0.020 +19970411, -2.48, 0.92, 0.45, -0.32, 0.43, 0.020 +19970414, 0.55, -0.72, -0.31, 0.34, -0.17, 0.020 +19970415, 1.19, -0.98, 0.24, 0.38, 0.49, 0.020 +19970416, 0.81, -1.03, 0.22, 0.52, 0.90, 0.020 +19970417, -0.11, 0.17, 0.31, -0.09, -0.49, 0.020 +19970418, 0.42, -0.18, -0.09, 0.13, 0.39, 0.020 +19970421, -0.99, -0.08, 0.45, 0.22, 0.41, 0.020 +19970422, 1.40, -1.55, -0.05, 0.90, 0.33, 0.020 +19970423, -0.03, -0.16, -0.19, -0.29, -0.72, 0.020 +19970424, -0.22, 0.38, -0.08, -0.11, -0.06, 0.020 +19970425, -0.95, 0.20, 0.39, -0.12, 0.67, 0.020 +19970428, 0.81, -1.03, 0.20, 0.53, -0.32, 0.020 +19970429, 2.41, -1.50, -0.39, 0.26, -0.48, 0.020 +19970430, 0.93, -0.54, -0.45, -0.07, -0.72, 0.020 +19970501, -0.10, 1.02, -0.26, -0.18, -0.61, 0.023 +19970502, 1.93, 0.51, -0.85, 0.30, -0.70, 0.023 +19970505, 2.16, 0.05, -1.61, 0.40, -0.36, 0.023 +19970506, -0.31, 0.17, 0.63, -0.41, 0.24, 0.023 +19970507, -1.18, 1.10, -0.03, -0.16, -0.23, 0.023 +19970508, 0.41, -0.55, -0.07, -0.02, 0.01, 0.023 +19970509, 0.51, 0.01, 0.12, 0.11, -0.04, 0.023 +19970512, 1.29, -0.78, -0.19, 0.04, 0.07, 0.023 +19970513, -0.45, 0.40, 0.00, -0.17, 0.31, 0.023 +19970514, 0.35, -0.15, 0.44, -0.14, 0.08, 0.023 +19970515, 0.58, -0.18, -0.85, 0.34, -0.57, 0.023 +19970516, -1.13, 1.08, 0.46, -0.54, 0.45, 0.023 +19970519, 0.27, -0.03, -0.18, 0.07, 0.08, 0.023 +19970520, 0.91, -0.57, -0.19, 0.36, -0.78, 0.023 +19970521, -0.13, 0.69, -0.69, -0.19, -0.10, 0.023 +19970522, -0.27, 0.63, 0.45, -0.11, 0.04, 0.023 +19970523, 1.26, -0.15, -0.49, 0.08, -0.25, 0.023 +19970527, 0.30, 0.14, -0.89, 0.20, -0.64, 0.023 +19970528, -0.11, 0.52, -0.02, -0.18, -0.15, 0.023 +19970529, -0.28, 0.48, 0.14, -0.38, 0.32, 0.023 +19970530, 0.55, -0.16, 0.51, -0.27, 0.19, 0.023 +19970602, -0.05, 0.89, -0.24, -0.19, -0.23, 0.018 +19970603, -0.16, 0.08, 0.91, -0.16, 0.84, 0.018 +19970604, -0.44, 0.46, 0.40, -0.35, 0.13, 0.018 +19970605, 0.42, 0.08, 0.04, -0.12, -0.26, 0.018 +19970606, 1.41, -0.83, -0.39, 0.47, -0.14, 0.018 +19970609, 0.48, -0.34, 0.07, -0.40, -0.32, 0.018 +19970610, 0.14, -0.48, 0.59, -0.34, 0.54, 0.018 +19970611, 0.41, -0.32, 0.25, 0.14, 0.23, 0.018 +19970612, 1.29, -1.00, 0.10, 0.18, 0.50, 0.018 +19970613, 0.98, -0.42, -0.39, 0.73, 0.35, 0.018 +19970616, 0.04, -0.03, -0.12, 0.21, -0.39, 0.018 +19970617, 0.12, 0.17, -0.19, 0.33, -0.50, 0.018 +19970618, -0.38, 0.30, 0.65, -0.23, 0.05, 0.018 +19970619, 0.95, -0.11, -0.41, 0.09, -0.17, 0.018 +19970620, -0.04, -0.34, -0.07, 0.01, -0.21, 0.018 +19970623, -1.84, 1.39, 0.32, -0.12, -0.32, 0.018 +19970624, 1.61, -0.91, -0.21, 0.44, 0.18, 0.018 +19970625, -0.71, 0.46, 0.35, -0.05, 0.01, 0.018 +19970626, -0.50, 0.39, 0.12, 0.09, 0.10, 0.018 +19970627, 0.42, 0.27, 0.04, 0.14, 0.27, 0.018 +19970630, -0.10, 1.45, -0.71, 0.16, -0.12, 0.018 +19970701, 0.55, -0.94, 0.50, -0.23, 0.35, 0.019 +19970702, 1.17, -1.16, -0.15, 0.32, -0.36, 0.019 +19970703, 1.20, -0.83, -0.25, 0.39, 0.08, 0.019 +19970707, -0.35, 0.40, 0.04, 0.05, -0.36, 0.019 +19970708, 0.69, -0.36, -0.24, -0.01, -0.25, 0.019 +19970709, -0.95, 0.84, 0.15, -0.26, -0.28, 0.019 +19970710, 0.57, -0.08, 0.22, 0.03, -0.18, 0.019 +19970711, 0.44, 0.35, -0.41, -0.25, -0.35, 0.019 +19970714, 0.24, 0.20, -0.41, 0.21, -0.68, 0.019 +19970715, 0.75, 0.07, -0.66, 0.23, -0.54, 0.019 +19970716, 1.14, -0.38, -0.55, -0.18, -1.01, 0.019 +19970717, -0.55, 0.19, 0.33, 0.12, 0.56, 0.019 +19970718, -1.41, 1.00, 0.52, -0.15, 0.43, 0.019 +19970721, -0.41, -0.07, 0.10, 0.19, 0.25, 0.019 +19970722, 1.98, -1.44, -0.49, 0.35, -0.25, 0.019 +19970723, 0.29, -0.07, 0.42, -0.33, -0.28, 0.019 +19970724, 0.31, -0.17, -0.01, -0.23, 0.13, 0.019 +19970725, -0.11, 0.24, 0.08, -0.07, 0.12, 0.019 +19970728, -0.23, 0.24, 0.68, -0.16, 0.23, 0.019 +19970729, 0.53, -0.40, 0.50, -0.05, 0.05, 0.019 +19970730, 1.09, -0.42, 0.09, -0.22, 0.20, 0.019 +19970731, 0.18, 0.10, 0.25, 0.04, -0.28, 0.019 +19970801, -0.57, 0.58, 0.26, 0.01, 0.04, 0.020 +19970804, 0.30, 0.04, -0.13, 0.03, -0.13, 0.020 +19970805, 0.34, 0.49, -0.54, 0.10, -0.48, 0.020 +19970806, 0.74, -0.16, 0.06, 0.14, 0.05, 0.020 +19970807, -0.77, 0.85, 0.37, -0.10, 0.04, 0.020 +19970808, -1.81, 0.63, 0.11, -0.18, 0.12, 0.020 +19970811, 0.16, -0.48, 0.47, 0.21, 0.55, 0.020 +19970812, -0.93, 0.72, 0.59, -0.33, 0.34, 0.020 +19970813, -0.26, 0.30, 0.04, -0.16, -0.46, 0.020 +19970814, 0.26, -0.09, -0.20, 0.28, 0.06, 0.020 +19970815, -2.06, 1.43, 0.54, -0.41, 0.17, 0.020 +19970818, 0.81, -0.88, -0.33, 0.43, -0.04, 0.020 +19970819, 1.38, -0.28, -0.43, -0.12, -0.43, 0.020 +19970820, 1.36, -0.17, -0.53, 0.20, -0.44, 0.020 +19970821, -1.23, 0.93, 0.34, -0.17, 0.24, 0.020 +19970822, -0.28, -0.08, 0.16, 0.06, 0.32, 0.020 +19970825, -0.12, 0.75, 0.27, -0.46, -0.11, 0.020 +19970826, -0.60, 0.75, 0.31, -0.37, 0.20, 0.020 +19970827, 0.18, 0.62, -0.17, 0.02, 0.16, 0.020 +19970828, -0.81, 1.03, 0.39, -0.22, 0.08, 0.020 +19970829, -0.21, 0.59, -0.17, 0.12, -0.33, 0.020 +19970902, 2.44, -1.38, -0.59, 0.40, -0.28, 0.021 +19970903, 0.18, -0.13, 0.46, -0.37, -0.10, 0.021 +19970904, 0.28, 0.06, -0.03, 0.17, -0.24, 0.021 +19970905, 0.02, 0.74, 0.05, -0.44, -0.25, 0.021 +19970908, 0.32, 0.31, 0.16, -0.24, -0.14, 0.021 +19970909, 0.27, 0.25, 0.23, -0.06, 0.09, 0.021 +19970910, -1.22, 1.27, 0.65, -0.50, 0.13, 0.021 +19970911, -0.63, 0.62, -0.10, 0.02, 0.13, 0.021 +19970912, 1.19, -0.40, -0.27, 0.01, -0.15, 0.021 +19970915, -0.31, 0.44, 0.39, -0.09, 0.28, 0.021 +19970916, 2.25, -1.55, -0.33, 0.17, -0.55, 0.021 +19970917, -0.08, 0.25, 0.31, -0.39, -0.29, 0.021 +19970918, 0.35, -0.24, 0.04, 0.01, 0.00, 0.021 +19970919, 0.30, 0.00, -0.60, 0.20, -0.34, 0.021 +19970922, 0.49, -0.01, -0.54, 0.21, 0.33, 0.021 +19970923, -0.28, 0.59, -0.23, 0.27, -0.19, 0.021 +19970924, -0.62, 0.63, 0.34, -0.30, 0.13, 0.021 +19970925, -0.61, 0.60, 0.10, -0.27, 0.24, 0.021 +19970926, 0.64, -0.40, -0.10, 0.24, 0.38, 0.021 +19970929, 0.73, -0.33, -0.27, 0.12, -0.04, 0.021 +19970930, -0.43, 0.98, 0.32, -0.41, 0.01, 0.021 +19971001, 0.62, -0.54, 0.19, 0.02, 0.27, 0.018 +19971002, 0.55, -0.02, 0.11, 0.00, -0.14, 0.018 +19971003, 0.48, 0.03, -0.22, 0.06, -0.35, 0.018 +19971006, 0.68, -0.19, -0.12, 0.21, 0.19, 0.018 +19971007, 0.89, -0.39, -0.72, 0.16, -0.16, 0.018 +19971008, -0.61, 0.72, -0.27, -0.29, -0.33, 0.018 +19971009, -0.20, 0.46, 0.32, -0.41, -0.33, 0.018 +19971010, -0.28, 0.55, 0.19, -0.20, 0.13, 0.018 +19971013, 0.10, 0.07, 0.35, -0.13, 0.13, 0.018 +19971014, 0.03, -0.31, 0.16, 0.10, 0.24, 0.018 +19971015, -0.33, 0.06, 0.09, -0.23, -0.03, 0.018 +19971016, -1.05, -0.14, 0.57, 0.04, 0.28, 0.018 +19971017, -1.31, -0.46, 0.38, 0.30, 0.44, 0.018 +19971020, 1.10, -0.22, -0.46, -0.14, -0.09, 0.018 +19971021, 1.65, -0.72, -0.31, 0.17, 0.06, 0.018 +19971022, -0.30, 0.29, 0.11, -0.08, 0.22, 0.018 +19971023, -1.85, -0.08, 0.46, 0.17, 0.47, 0.018 +19971024, -0.81, 0.52, 0.66, 0.33, 0.51, 0.018 +19971027, -6.58, 0.47, 1.85, 0.85, 1.08, 0.018 +19971028, 4.10, -2.16, -2.20, 0.25, -1.21, 0.018 +19971029, 0.07, 1.08, 0.81, -0.70, 0.23, 0.018 +19971030, -1.61, 0.32, 0.33, 0.21, 0.45, 0.018 +19971031, 1.17, 0.00, -0.53, 0.36, -0.26, 0.018 +19971103, 2.31, -0.84, -0.27, 0.21, -0.30, 0.021 +19971104, 0.23, -0.08, -0.10, 0.04, -0.29, 0.021 +19971105, 0.34, 0.23, -0.33, -0.20, -0.17, 0.021 +19971106, -0.51, 0.09, 0.39, 0.03, 0.44, 0.021 +19971107, -1.28, -0.34, 0.12, 0.47, 0.23, 0.021 +19971110, -0.53, 0.55, 0.68, -0.17, 0.52, 0.021 +19971111, 0.05, -0.38, 0.04, 0.74, 0.41, 0.021 +19971112, -1.96, -0.25, 0.81, 0.09, 0.63, 0.021 +19971113, 0.84, -1.01, -0.58, 0.44, -0.28, 0.021 +19971114, 1.21, -0.32, -0.91, -0.02, -0.53, 0.021 +19971117, 1.84, -0.45, -0.33, -0.11, -0.67, 0.021 +19971118, -0.80, 0.05, 0.61, -0.01, 0.63, 0.021 +19971119, 0.45, -0.60, -0.25, 0.39, 0.18, 0.021 +19971120, 1.37, -0.65, -0.29, 0.19, -0.28, 0.021 +19971121, 0.25, -0.42, 0.12, 0.51, 0.43, 0.021 +19971124, -1.68, 0.07, 0.84, 0.17, 0.59, 0.021 +19971125, 0.35, -0.68, 0.19, 0.44, 0.37, 0.021 +19971126, 0.18, 0.07, 0.17, -0.15, -0.30, 0.021 +19971128, 0.36, -0.05, -0.07, 0.00, -0.04, 0.021 +19971201, 1.79, -1.16, -0.01, 0.13, 0.13, 0.022 +19971202, -0.33, -0.19, 0.77, -0.04, 0.27, 0.022 +19971203, 0.53, -0.31, -0.48, 0.52, 0.08, 0.022 +19971204, -0.20, 0.32, 0.11, -0.04, 0.08, 0.022 +19971205, 0.97, -0.46, -0.21, -0.16, -0.30, 0.022 +19971208, 0.04, 0.78, -0.12, 0.04, -0.48, 0.022 +19971209, -0.74, -0.12, 0.72, 0.24, 0.41, 0.022 +19971210, -0.79, -0.50, 0.84, 0.46, 0.65, 0.022 +19971211, -1.58, -0.33, 0.82, 0.10, 0.88, 0.022 +19971212, -0.30, -0.24, 0.62, 0.01, 0.48, 0.022 +19971215, 0.67, -1.38, 0.62, 0.37, 0.28, 0.022 +19971216, 0.60, 0.31, -0.56, 0.09, -0.31, 0.022 +19971217, -0.15, 0.28, 0.45, -0.27, -0.13, 0.022 +19971218, -1.08, -0.24, 0.28, -0.08, 0.64, 0.022 +19971219, -0.68, 0.46, -0.43, -0.06, -0.13, 0.022 +19971222, 0.57, -0.29, 0.13, 0.30, 0.26, 0.022 +19971223, -1.22, 1.14, 0.76, -0.11, 0.36, 0.022 +19971224, -0.58, 0.44, 0.22, -0.24, 0.19, 0.022 +19971226, 0.33, -0.30, -0.02, -0.01, 0.02, 0.022 +19971229, 1.60, -0.85, -0.50, 0.28, -0.46, 0.022 +19971230, 1.76, -0.22, -0.49, 0.06, -0.56, 0.022 +19971231, 0.21, 0.87, -0.23, -0.41, -0.49, 0.022 +19980102, 0.22, -0.13, -0.46, 0.14, -0.14, 0.021 +19980105, 0.22, 0.06, -0.31, 0.04, -0.01, 0.021 +19980106, -1.04, 0.24, 0.23, -0.35, 0.14, 0.021 +19980107, -0.38, -0.39, -0.10, -0.08, 0.33, 0.021 +19980108, -0.82, 0.21, -0.25, 0.04, 0.29, 0.021 +19980109, -2.98, 0.26, 0.71, 0.09, 0.66, 0.021 +19980112, 0.74, -1.62, 0.10, 0.80, 0.53, 0.021 +19980113, 1.50, 0.09, -0.64, -0.32, -0.74, 0.021 +19980114, 0.61, 0.08, 0.23, 0.15, 0.11, 0.021 +19980115, -0.60, 0.64, 0.25, -0.11, -0.01, 0.021 +19980116, 1.08, -0.01, -0.26, 0.23, -0.21, 0.021 +19980120, 1.63, -0.53, -0.91, -0.21, -0.35, 0.021 +19980121, -0.66, 0.26, 0.18, -0.52, -0.31, 0.021 +19980122, -0.80, 0.10, 0.52, 0.03, 0.14, 0.021 +19980123, -0.56, 0.27, -0.30, -0.23, -0.09, 0.021 +19980126, -0.25, -0.61, 0.59, 0.22, 0.43, 0.021 +19980127, 0.97, -0.67, -0.27, 0.36, -0.35, 0.021 +19980128, 1.01, 0.23, -0.51, 0.00, -0.84, 0.021 +19980129, 0.78, -0.20, -0.38, 0.18, -0.43, 0.021 +19980130, -0.40, 0.27, 0.16, -0.10, 0.01, 0.021 +19980202, 1.93, -1.24, -0.67, 0.35, -0.55, 0.021 +19980203, 0.53, 0.20, 0.03, -0.28, -0.36, 0.021 +19980204, 0.22, 0.63, -0.36, -0.14, -0.79, 0.021 +19980205, -0.15, 0.67, 0.12, 0.02, 0.26, 0.021 +19980206, 0.75, -0.47, 0.07, -0.05, -0.06, 0.021 +19980209, -0.09, 0.46, 0.31, -0.22, 0.02, 0.021 +19980210, 0.81, -0.01, -0.17, -0.07, -0.33, 0.021 +19980211, 0.16, 0.00, 0.33, -0.26, 0.11, 0.021 +19980212, 0.36, -0.30, 0.01, -0.11, 0.10, 0.021 +19980213, -0.25, 0.67, 0.02, -0.16, -0.07, 0.021 +19980217, 0.15, -0.32, 0.50, 0.27, 0.12, 0.021 +19980218, 0.80, -0.56, -0.38, 0.21, -0.24, 0.021 +19980219, -0.23, 0.28, -0.11, -0.19, -0.34, 0.021 +19980220, 0.38, -0.36, 0.06, -0.06, 0.06, 0.021 +19980223, 0.44, 0.00, -0.44, 0.07, -0.39, 0.021 +19980224, -0.74, 0.44, 0.65, -0.04, 0.31, 0.021 +19980225, 1.14, -0.33, -0.24, 0.09, -0.33, 0.021 +19980226, 0.56, 0.01, -0.09, -0.18, 0.01, 0.021 +19980227, 0.05, 0.14, 0.23, 0.03, 0.19, 0.021 +19980302, -0.16, 0.16, 0.60, -0.24, 0.33, 0.018 +19980303, 0.34, -0.23, 0.48, 0.10, 0.20, 0.018 +19980304, -0.42, 0.35, 0.39, -0.59, -0.22, 0.018 +19980305, -1.03, -0.08, 0.56, -0.08, 0.63, 0.018 +19980306, 1.85, -0.41, -0.67, 0.20, -0.34, 0.018 +19980309, -0.32, -0.15, 0.40, -0.19, 0.78, 0.018 +19980310, 1.07, -0.46, -0.27, 0.17, -0.12, 0.018 +19980311, 0.50, 0.00, -0.11, -0.12, 0.07, 0.018 +19980312, 0.13, 0.07, -0.34, -0.09, -0.19, 0.018 +19980313, -0.08, 0.29, 0.26, -0.35, -0.24, 0.018 +19980316, 0.88, -0.31, 0.15, 0.07, 0.00, 0.018 +19980317, 0.10, -0.34, 0.72, -0.12, 0.53, 0.018 +19980318, 0.48, -0.19, -0.09, 0.04, -0.25, 0.018 +19980319, 0.40, 0.03, -0.13, -0.21, -0.24, 0.018 +19980320, 0.57, -0.62, 0.14, 0.12, 0.23, 0.018 +19980323, -0.33, 0.25, -0.13, -0.28, -0.27, 0.018 +19980324, 0.85, -0.26, -0.15, 0.32, -0.18, 0.018 +19980325, -0.25, 0.36, -0.18, -0.10, -0.32, 0.018 +19980326, -0.06, 0.26, -0.25, 0.03, -0.30, 0.018 +19980327, -0.40, 0.42, -0.02, -0.03, -0.27, 0.018 +19980330, -0.22, 0.19, -0.24, 0.29, 0.09, 0.018 +19980331, 0.77, 0.07, -0.22, 0.07, -0.38, 0.018 +19980401, 0.60, 0.19, -0.58, -0.25, -0.22, 0.020 +19980402, 0.83, -0.70, 0.06, -0.31, 0.20, 0.020 +19980403, 0.19, -0.20, 0.05, -0.24, -0.34, 0.020 +19980406, -0.31, -0.43, 0.92, 0.18, 0.39, 0.020 +19980407, -1.05, -0.48, 0.60, 0.17, 0.74, 0.020 +19980408, -0.49, 0.70, 0.11, -0.64, -0.25, 0.020 +19980409, 0.81, 0.18, 0.07, -0.09, -0.08, 0.020 +19980413, -0.03, -0.06, 0.72, 0.32, -0.18, 0.020 +19980414, 0.67, 0.20, 0.27, -0.49, -0.29, 0.020 +19980415, 0.37, 0.08, 0.11, -0.45, -0.23, 0.020 +19980416, -0.88, 0.47, -0.03, -0.37, 0.00, 0.020 +19980417, 1.12, -0.61, -0.57, 0.17, 0.16, 0.020 +19980420, 0.17, 0.44, -0.73, 0.08, -0.23, 0.020 +19980421, 0.24, 0.44, -0.17, -0.38, -0.37, 0.020 +19980422, 0.29, -0.31, 0.02, 0.40, -0.19, 0.020 +19980423, -1.13, -0.06, 0.42, 0.08, 0.88, 0.020 +19980424, -0.98, 0.18, -0.02, 0.08, -0.02, 0.020 +19980427, -2.14, -0.31, 0.45, 0.15, 0.33, 0.020 +19980428, 0.15, 0.68, -0.37, -0.37, -0.26, 0.020 +19980429, 0.89, -0.06, -0.27, -0.22, -0.44, 0.020 +19980430, 1.47, -0.31, -0.45, 0.06, 0.13, 0.020 +19980501, 0.60, -0.46, 0.25, -0.03, -0.09, 0.020 +19980504, 0.15, 0.09, -0.19, 0.04, 0.28, 0.020 +19980505, -0.59, -0.04, 0.16, -0.13, 0.19, 0.020 +19980506, -0.83, 0.38, 0.56, -0.15, -0.07, 0.020 +19980507, -0.83, 0.21, 0.58, -0.28, 0.18, 0.020 +19980508, 1.07, -0.52, -0.54, 0.18, -0.41, 0.020 +19980511, -0.25, -0.30, 0.53, 0.07, 0.67, 0.020 +19980512, 0.53, -0.80, -0.05, 0.22, -0.08, 0.020 +19980513, 0.27, -0.08, 0.11, -0.15, -0.01, 0.020 +19980514, -0.18, -0.19, 0.29, 0.06, 0.06, 0.020 +19980515, -0.78, 0.11, 0.49, -0.11, 0.17, 0.020 +19980518, -0.44, -0.62, 0.13, 0.32, 0.56, 0.020 +19980519, 0.38, 0.28, -0.53, 0.31, -0.44, 0.020 +19980520, 0.47, -1.05, 0.44, 0.56, 0.57, 0.020 +19980521, -0.36, 0.03, 0.56, -0.29, 0.09, 0.020 +19980522, -0.55, -0.24, 0.52, 0.13, 0.42, 0.020 +19980526, -1.50, -0.40, 0.99, 0.25, 0.43, 0.020 +19980527, -0.37, -0.95, -0.52, 0.29, 0.01, 0.020 +19980528, 0.56, 0.64, 0.03, -0.03, -0.11, 0.020 +19980529, -0.42, 0.68, 0.47, -0.20, 0.14, 0.020 +19980601, -0.33, -1.07, 1.08, 0.61, 0.97, 0.019 +19980602, 0.18, -0.56, 0.26, -0.05, -0.46, 0.019 +19980603, -0.78, 0.67, 0.50, -0.37, 0.41, 0.019 +19980604, 0.99, -0.52, -0.72, -0.06, -0.45, 0.019 +19980605, 1.45, -1.05, -0.57, 0.19, 0.16, 0.019 +19980608, 0.27, 0.00, -0.04, -0.31, -0.16, 0.019 +19980609, 0.25, -0.07, -0.48, -0.20, -0.19, 0.019 +19980610, -0.70, -0.48, 0.56, 0.07, 0.38, 0.019 +19980611, -1.46, 0.14, 0.22, 0.11, 0.05, 0.019 +19980612, 0.09, -0.71, -0.46, 0.20, 0.03, 0.019 +19980615, -1.93, 0.24, 0.49, 0.52, 0.17, 0.019 +19980616, 0.99, 0.01, -0.91, -0.33, -1.00, 0.019 +19980617, 1.63, -0.45, -0.24, 0.14, -0.33, 0.019 +19980618, -0.14, -0.54, -0.32, 0.10, 0.01, 0.019 +19980619, -0.42, 0.24, 0.10, -0.18, -0.27, 0.019 +19980622, 0.33, 0.30, -0.09, -0.16, -0.41, 0.019 +19980623, 1.36, -0.28, -1.12, -0.20, -0.98, 0.019 +19980624, 1.13, -0.32, -0.59, -0.29, -0.72, 0.019 +19980625, -0.31, 0.08, 0.29, 0.06, 0.24, 0.019 +19980626, 0.30, -0.20, 0.20, 0.18, 0.11, 0.019 +19980629, 0.55, 0.09, -0.32, -0.12, -0.39, 0.019 +19980630, -0.20, 0.90, -0.14, -0.45, -0.17, 0.019 +19980701, 1.12, -0.70, -0.03, -0.08, -0.04, 0.018 +19980702, -0.20, -0.11, 0.31, -0.10, 0.43, 0.018 +19980706, 0.85, -0.71, 0.17, -0.20, -0.37, 0.018 +19980707, -0.17, -0.15, 0.07, 0.06, -0.16, 0.018 +19980708, 0.90, -0.75, -0.53, 0.45, -0.63, 0.018 +19980709, -0.51, 0.71, -0.07, 0.02, -0.21, 0.018 +19980710, 0.31, -0.43, -0.56, 0.37, -0.16, 0.018 +19980713, 0.10, -0.05, -0.31, 0.17, -0.65, 0.018 +19980714, 0.83, -0.65, -0.15, 0.21, 0.53, 0.018 +19980715, -0.08, 0.74, -0.62, -0.03, -0.67, 0.018 +19980716, 0.65, -0.37, -0.41, 0.17, 0.01, 0.018 +19980717, 0.20, -0.31, -0.36, -0.16, -0.12, 0.018 +19980720, -0.13, 0.00, -0.46, -0.10, -0.17, 0.018 +19980721, -1.59, 0.45, 0.87, -0.11, 0.69, 0.018 +19980722, -0.28, -0.87, 0.17, 0.28, 0.39, 0.018 +19980723, -2.05, 0.26, 0.49, 0.15, 0.54, 0.018 +19980724, -0.15, -0.37, -0.47, 0.58, 0.42, 0.018 +19980727, 0.20, -1.59, 0.00, 0.45, 0.10, 0.018 +19980728, -1.50, 0.31, 0.50, 0.00, 0.37, 0.018 +19980729, -0.46, 0.11, 0.28, -0.03, 0.74, 0.018 +19980730, 1.45, -0.93, -0.35, 0.02, -0.71, 0.018 +19980731, -1.87, -0.20, 0.42, -0.23, 0.24, 0.018 +19980803, -0.87, -0.77, 0.66, 0.20, 0.41, 0.020 +19980804, -3.55, 0.74, 0.90, 0.00, 0.67, 0.020 +19980805, 0.47, -1.28, -0.22, 0.55, 0.42, 0.020 +19980806, 1.07, 0.81, -0.53, -0.21, -1.28, 0.020 +19980807, 0.39, 1.61, -0.30, -0.85, -0.19, 0.020 +19980810, -0.59, -0.17, -0.02, -0.22, 0.13, 0.020 +19980811, -1.66, -0.93, 0.11, 0.60, 0.86, 0.020 +19980812, 1.54, 0.06, 0.04, -0.14, -0.34, 0.020 +19980813, -0.87, -0.18, 0.35, 0.08, 0.31, 0.020 +19980814, -0.96, 0.71, 0.16, 0.27, 0.07, 0.020 +19980817, 1.51, -1.58, -0.72, 0.65, -0.42, 0.020 +19980818, 1.61, -0.36, -0.45, -0.23, -0.67, 0.020 +19980819, -0.46, -0.75, 0.46, -0.36, 0.41, 0.020 +19980820, -0.67, -0.23, -0.09, 0.19, 0.32, 0.020 +19980821, -1.16, -0.32, 0.06, 0.55, 0.75, 0.020 +19980824, 0.38, -1.12, 0.23, 0.27, 0.42, 0.020 +19980825, 0.21, -1.20, -0.27, 0.24, -0.21, 0.020 +19980826, -1.09, -1.35, -0.09, 0.64, 0.64, 0.020 +19980827, -3.92, 0.18, 0.26, 0.32, 1.07, 0.020 +19980828, -1.70, -0.34, 1.05, 0.81, 1.15, 0.020 +19980831, -6.71, 0.44, 2.43, 0.80, 2.25, 0.020 +19980901, 3.56, -0.98, -1.79, 0.01, -0.78, 0.022 +19980902, -0.02, 1.24, -0.15, -1.00, -0.88, 0.022 +19980903, -1.09, -0.54, -0.21, 0.39, 0.67, 0.022 +19980904, -0.78, 0.97, 0.02, 0.14, 0.56, 0.022 +19980908, 4.92, -1.30, -1.89, -0.19, -1.57, 0.022 +19980909, -1.77, -0.42, 1.17, 0.16, 0.63, 0.022 +19980910, -2.52, 0.25, 0.69, -0.08, 0.57, 0.022 +19980911, 2.67, -0.49, -1.26, 0.70, -1.33, 0.022 +19980914, 2.04, -1.15, 0.03, -0.31, -0.54, 0.022 +19980915, 0.72, -1.06, 0.77, -0.08, -0.03, 0.022 +19980916, 0.84, -0.34, -0.23, -0.64, -0.34, 0.022 +19980917, -2.35, 1.20, 0.60, -0.22, 0.43, 0.022 +19980918, 0.41, 1.38, -0.32, 0.22, 0.06, 0.022 +19980921, 0.19, -0.66, -0.32, -0.24, -0.02, 0.022 +19980922, 0.70, 0.47, -0.61, -0.13, -0.47, 0.022 +19980923, 3.24, -1.59, -0.82, -0.25, -1.11, 0.022 +19980924, -2.05, 0.93, 0.61, -0.05, 0.58, 0.022 +19980925, 0.08, -0.57, 0.17, -0.22, -0.40, 0.022 +19980928, 0.34, -0.37, 0.29, 0.06, 0.42, 0.022 +19980929, -0.11, -0.41, -0.26, 0.38, 0.45, 0.022 +19980930, -2.58, 2.37, 0.18, -0.08, 0.14, 0.022 +19981001, -3.29, -0.16, 1.34, 0.72, 2.19, 0.015 +19981002, 1.40, -1.66, 0.12, -0.43, 0.94, 0.015 +19981005, -1.91, -1.54, 0.91, 0.56, 2.53, 0.015 +19981006, -0.55, -0.67, -0.06, -0.07, 1.04, 0.015 +19981007, -1.80, -1.39, 0.91, 0.88, 2.03, 0.015 +19981008, -1.69, -2.38, 0.16, 1.08, 0.34, 0.015 +19981009, 2.64, -0.65, -1.34, -1.02, -2.52, 0.015 +19981012, 1.65, 0.60, -1.69, -0.65, -1.21, 0.015 +19981013, -0.63, -0.81, 0.85, 0.47, 0.49, 0.015 +19981014, 1.34, -0.28, -0.20, -0.21, -0.42, 0.015 +19981015, 4.06, -1.36, -0.97, -0.12, -1.61, 0.015 +19981016, 1.02, 0.98, -0.42, 0.14, -0.21, 0.015 +19981019, 0.83, 1.58, -0.24, -0.46, -1.29, 0.015 +19981020, 0.27, 1.46, 0.38, -0.38, 0.18, 0.015 +19981021, 0.59, 0.49, -0.59, 0.63, -0.21, 0.015 +19981022, 0.87, 1.17, -0.83, 0.42, -1.10, 0.015 +19981023, -0.60, 1.21, -0.57, -0.08, 0.12, 0.015 +19981026, 0.41, 1.05, -0.56, 0.12, -0.81, 0.015 +19981027, -0.53, 0.66, 0.32, -0.08, -0.29, 0.015 +19981028, 0.24, 0.01, -0.18, -0.02, -0.35, 0.015 +19981029, 1.60, -0.88, -0.53, -0.39, 0.39, 0.015 +19981030, 1.22, -0.50, 0.70, -0.65, -0.43, 0.015 +19981102, 1.40, 0.68, -0.47, -0.19, -0.37, 0.015 +19981103, -0.10, 0.46, 0.11, 0.00, 0.53, 0.015 +19981104, 0.88, 0.38, 0.16, -0.21, -0.99, 0.015 +19981105, 1.28, -0.10, -0.36, 0.12, 0.26, 0.015 +19981106, 0.68, 0.45, -0.62, -0.22, -0.15, 0.015 +19981109, -0.83, 0.53, -0.43, -0.28, -0.58, 0.015 +19981110, -0.15, -0.14, 0.01, 0.20, -0.01, 0.015 +19981111, -0.69, 0.11, 0.11, 0.15, 0.11, 0.015 +19981112, -0.27, -0.09, 0.29, -0.46, 0.74, 0.015 +19981113, 0.53, -1.19, 0.61, -0.20, 0.40, 0.015 +19981116, 0.75, -0.62, -0.27, 0.12, -0.55, 0.015 +19981117, 0.32, -0.76, 0.09, 0.07, -1.01, 0.015 +19981118, 0.51, -0.12, -0.54, -0.55, 0.11, 0.015 +19981119, 0.66, 0.02, -0.39, 0.05, 0.02, 0.015 +19981120, 0.78, -0.54, -0.47, 0.35, -0.01, 0.015 +19981123, 2.02, -1.23, -0.89, -0.06, -0.79, 0.015 +19981124, -0.43, 0.11, 0.47, -0.09, 0.18, 0.015 +19981125, 0.39, 0.55, -0.40, -0.25, 0.01, 0.015 +19981127, 0.54, 0.67, -0.67, -0.77, -0.18, 0.015 +19981130, -2.31, 1.37, 0.73, 0.96, 1.14, 0.015 +19981201, 0.86, -0.80, 0.03, 0.55, -1.01, 0.017 +19981202, -0.21, -0.05, -0.29, 0.48, 0.28, 0.017 +19981203, -1.62, 0.87, 0.50, 0.29, 0.48, 0.017 +19981204, 2.00, -1.25, -0.58, 0.07, -0.71, 0.017 +19981207, 0.89, -0.37, -0.57, 0.03, -0.73, 0.017 +19981208, -0.44, 0.38, -0.27, -0.15, -0.13, 0.017 +19981209, 0.09, 0.06, -0.31, 0.17, 0.00, 0.017 +19981210, -1.55, 0.42, 0.53, 0.12, 0.25, 0.017 +19981211, -0.05, -0.34, -0.33, 0.23, 0.01, 0.017 +19981214, -2.12, 0.16, 0.63, -0.12, 1.08, 0.017 +19981215, 1.67, -1.35, -0.78, -0.09, -0.83, 0.017 +19981216, -0.08, -0.01, 0.37, -0.59, -0.08, 0.017 +19981217, 1.51, -0.86, -0.03, 0.18, -0.50, 0.017 +19981218, 0.68, 0.36, -0.76, 0.09, -0.82, 0.017 +19981221, 1.35, -0.60, -0.73, -0.61, -1.13, 0.017 +19981222, 0.00, -0.29, -0.42, -0.09, 0.82, 0.017 +19981223, 1.93, -0.73, -0.88, 0.03, -0.29, 0.017 +19981224, -0.07, 0.29, -0.02, -0.42, -0.11, 0.017 +19981228, 0.16, 0.36, -0.66, -0.52, -0.16, 0.017 +19981229, 1.14, -0.41, -0.28, 0.47, 0.43, 0.017 +19981230, -0.50, 0.86, 0.44, 0.18, 0.15, 0.017 +19981231, 0.43, 1.86, 0.05, -0.91, -0.25, 0.017 +19990104, -0.19, 0.15, 0.45, -0.37, -0.44, 0.019 +19990105, 1.10, -0.91, 0.12, -0.30, -0.38, 0.019 +19990106, 2.10, -0.74, -0.40, -0.46, -1.12, 0.019 +19990107, -0.07, 0.36, -0.23, -0.66, -0.90, 0.019 +19990108, 0.45, 0.16, 0.38, -0.80, -0.40, 0.019 +19990111, -0.52, 0.97, -0.07, -1.61, -0.83, 0.019 +19990112, -1.85, 0.80, 0.09, 0.44, 0.77, 0.019 +19990113, -0.54, -0.09, -0.22, 0.73, 0.35, 0.019 +19990114, -1.66, 1.06, -0.01, -0.23, -0.05, 0.019 +19990115, 2.28, -0.82, -0.41, -0.04, -0.78, 0.019 +19990119, 0.80, -0.02, -0.67, -0.10, -1.26, 0.019 +19990120, 0.24, 0.15, -0.67, 0.81, -0.54, 0.019 +19990121, -1.82, 0.53, 0.73, 0.49, 0.67, 0.019 +19990122, -0.66, 0.32, 0.15, -0.56, 0.08, 0.019 +19990125, 0.67, -0.84, -0.24, -0.33, 0.04, 0.019 +19990126, 1.39, -0.60, -1.13, 0.42, -0.73, 0.019 +19990127, -0.74, -0.14, -0.57, -0.34, 0.22, 0.019 +19990128, 1.63, -1.25, -0.69, -0.13, -0.80, 0.019 +19990129, 0.95, 0.10, -0.61, 0.43, -0.60, 0.019 +19990201, -0.39, -0.02, -0.27, -0.32, -0.40, 0.019 +19990202, -0.89, -0.16, -0.18, 0.07, 0.75, 0.019 +19990203, 0.90, -0.34, -0.72, -0.57, -0.31, 0.019 +19990204, -1.92, 0.63, 1.06, -0.19, 1.71, 0.019 +19990205, -0.92, -0.42, 0.79, -0.12, 0.68, 0.019 +19990208, 0.23, -0.60, 0.13, 0.39, -0.37, 0.019 +19990209, -2.25, 0.43, 1.40, 0.68, 1.26, 0.019 +19990210, 0.27, -1.32, -0.45, 0.74, 0.08, 0.019 +19990211, 2.49, -0.90, -1.60, -1.04, -1.66, 0.019 +19990212, -1.90, 0.23, 0.51, -0.12, 1.32, 0.019 +19990216, 0.65, -1.26, -0.16, -0.16, 0.13, 0.019 +19990217, -1.45, -0.40, 1.11, 0.38, 1.05, 0.019 +19990218, 0.92, -0.97, 0.67, -0.23, 0.55, 0.019 +19990219, 0.25, 0.08, -0.50, -0.32, -0.41, 0.019 +19990222, 2.41, -1.35, -0.57, 0.08, -0.71, 0.019 +19990223, 0.09, 0.19, -0.57, -0.54, -0.84, 0.019 +19990224, -1.31, 0.48, 0.23, 0.02, 0.35, 0.019 +19990225, -0.69, 0.10, 0.05, -0.03, 0.37, 0.019 +19990226, -0.49, 0.17, 0.46, -0.40, 0.60, 0.019 +19990301, -0.01, 0.24, 0.07, -0.32, -0.32, 0.018 +19990302, -0.69, 0.33, 0.48, -0.49, 0.68, 0.018 +19990303, 0.01, -0.72, 0.11, 0.27, 0.19, 0.018 +19990304, 1.34, -1.01, -0.31, 0.19, 0.12, 0.018 +19990305, 2.04, -1.27, -0.47, 0.40, -0.24, 0.018 +19990308, 0.66, -0.39, -0.94, -0.65, -0.93, 0.018 +19990309, -0.23, 0.08, -0.24, -0.11, -0.31, 0.018 +19990310, 0.52, 0.02, -0.31, -0.60, 0.09, 0.018 +19990311, 0.73, -0.76, 0.04, -0.04, 0.12, 0.018 +19990312, -0.32, -0.29, 0.72, -0.11, 0.51, 0.018 +19990315, 0.94, -0.56, -0.33, -0.53, -0.47, 0.018 +19990316, -0.15, -0.27, -0.30, 0.21, -0.29, 0.018 +19990317, -0.55, 0.18, 0.37, -0.87, -0.03, 0.018 +19990318, 1.27, -1.16, -0.20, -0.10, -0.40, 0.018 +19990319, -1.32, 0.44, 0.81, -0.30, 0.38, 0.018 +19990322, -0.33, -0.44, 0.33, -0.69, 0.93, 0.018 +19990323, -2.64, 0.62, 0.88, 0.73, 0.97, 0.018 +19990324, 0.51, -0.55, -0.26, 0.23, -0.62, 0.018 +19990325, 1.78, 0.18, -1.02, -0.66, -0.79, 0.018 +19990326, -0.50, 0.83, -0.33, -0.24, -0.07, 0.018 +19990329, 1.98, -0.55, -1.75, 0.19, -0.67, 0.018 +19990330, -0.63, 0.44, -0.24, -0.14, 0.05, 0.018 +19990331, -0.86, 0.28, 0.22, -0.48, -0.32, 0.018 +19990401, 0.54, -0.29, -0.02, -0.50, -0.25, 0.018 +19990405, 1.87, -1.23, -0.56, -0.97, -0.58, 0.018 +19990406, -0.26, -0.05, 0.13, -0.23, -0.19, 0.018 +19990407, 0.42, -0.67, -0.22, 0.74, -0.33, 0.018 +19990408, 1.27, -0.51, -0.77, 0.01, -0.34, 0.018 +19990409, 0.43, 1.20, -0.48, -0.34, -0.28, 0.018 +19990412, 0.87, 0.52, -0.19, -0.89, 0.66, 0.018 +19990413, -0.34, 2.02, -0.18, -0.92, -0.03, 0.018 +19990414, -1.43, 1.11, 1.99, 0.77, 1.13, 0.018 +19990415, -0.39, 0.02, 0.85, 0.74, 0.15, 0.018 +19990416, -0.23, 1.12, 1.04, -0.06, 0.67, 0.018 +19990419, -2.48, -0.24, 3.78, 2.28, 2.31, 0.018 +19990420, 1.38, -0.45, -1.98, -1.01, -1.46, 0.018 +19990421, 2.53, 0.06, -1.93, -1.18, -0.92, 0.018 +19990422, 1.35, -0.86, -0.89, -0.49, -0.62, 0.018 +19990423, 0.11, 0.58, 0.16, -0.37, -0.67, 0.018 +19990426, 0.44, 0.57, -1.24, -1.05, -0.35, 0.018 +19990427, 0.09, 0.12, 0.59, 0.73, 0.58, 0.018 +19990428, -0.88, 0.29, 1.59, 0.74, 0.96, 0.018 +19990429, -0.45, 0.57, 0.86, 0.07, 0.43, 0.018 +19990430, -0.47, 0.49, -0.40, -0.50, -0.15, 0.018 +19990503, 1.10, -1.02, 0.59, 0.85, 0.69, 0.017 +19990504, -1.49, 0.96, 0.44, 0.58, 1.22, 0.017 +19990505, 1.03, -0.94, -0.16, -0.58, -0.48, 0.017 +19990506, -1.15, 1.08, 1.01, 0.54, 1.15, 0.017 +19990507, 0.89, -0.44, -0.10, -0.10, -0.50, 0.017 +19990510, -0.03, 1.16, 0.15, -0.89, -0.25, 0.017 +19990511, 1.19, -0.23, -0.88, -0.53, -0.23, 0.017 +19990512, 0.65, 0.05, -0.52, 0.05, -0.69, 0.017 +19990513, 0.23, 0.25, 0.13, 0.66, 0.84, 0.017 +19990514, -2.14, 0.81, 0.52, -0.15, 0.79, 0.017 +19990517, 0.15, -0.43, -0.74, -0.25, -0.37, 0.017 +19990518, -0.40, 0.54, 0.41, -0.07, -0.25, 0.017 +19990519, 0.82, -0.12, -0.20, -0.32, -0.12, 0.017 +19990520, -0.36, 1.10, 0.41, 0.41, 0.72, 0.017 +19990521, -0.57, 0.94, 0.70, 0.25, 0.53, 0.017 +19990524, -1.93, 0.21, 1.03, 0.58, 0.56, 0.017 +19990525, -1.81, 0.10, 1.05, 0.40, 1.02, 0.017 +19990526, 1.41, -1.42, -0.66, -0.07, -0.56, 0.017 +19990527, -1.43, 1.17, -0.03, 0.18, -0.13, 0.017 +19990528, 1.53, -0.17, -0.66, -0.47, -0.62, 0.017 +19990601, -0.80, 0.58, 0.82, 0.65, 1.01, 0.018 +19990602, 0.13, -0.47, -0.44, -0.11, -0.08, 0.018 +19990603, 0.12, -0.19, 0.33, 0.27, 0.28, 0.018 +19990604, 2.03, -0.71, -1.62, -0.42, -0.55, 0.018 +19990607, 0.71, 0.22, -0.06, -0.63, -0.60, 0.018 +19990608, -1.23, 0.75, 0.42, 0.14, 0.10, 0.018 +19990609, 0.16, 0.47, -0.62, -0.32, -0.65, 0.018 +19990610, -1.20, 0.64, 0.57, 0.06, 0.22, 0.018 +19990611, -0.80, 0.11, 0.33, 0.57, 0.22, 0.018 +19990614, -0.49, -1.04, 1.02, 1.22, 1.13, 0.018 +19990615, 0.52, -0.47, -0.02, -0.03, -0.14, 0.018 +19990616, 2.26, -0.86, -1.06, -0.85, -1.54, 0.018 +19990617, 0.72, -0.12, -0.74, -0.28, -0.41, 0.018 +19990618, 0.22, 0.35, -0.13, -0.38, -0.15, 0.018 +19990621, 0.63, 0.60, -0.72, -0.15, -1.29, 0.018 +19990622, -0.93, 0.72, 0.30, 0.59, 0.64, 0.018 +19990623, -0.14, 0.12, -0.22, -0.23, -0.05, 0.018 +19990624, -1.31, 0.74, 0.59, 0.16, 0.52, 0.018 +19990625, -0.06, 0.19, -0.06, 0.30, 0.11, 0.018 +19990628, 1.23, 0.05, -0.24, -0.29, -0.73, 0.018 +19990629, 1.49, -0.25, -0.93, 0.26, -0.39, 0.018 +19990630, 1.60, 0.82, -1.48, 0.47, -1.02, 0.018 +19990701, 0.55, -0.90, -0.20, -0.24, 0.51, 0.018 +19990702, 0.73, -0.05, -0.48, -0.07, -0.25, 0.018 +19990706, -0.08, 0.22, 0.14, -0.51, -0.18, 0.018 +19990707, 0.22, -0.68, -0.19, 0.41, 0.53, 0.018 +19990708, 0.03, 0.43, -0.54, -0.81, -0.23, 0.018 +19990709, 0.54, 0.40, -0.43, -0.01, -0.27, 0.018 +19990712, -0.24, 0.66, 0.19, 0.24, 0.27, 0.018 +19990713, -0.39, 0.25, -0.02, -0.09, 0.12, 0.018 +19990714, 0.46, 0.33, -0.65, -0.33, -0.18, 0.018 +19990715, 0.83, 0.24, -0.64, 0.66, -0.37, 0.018 +19990716, 0.48, -0.43, -0.07, 0.61, -0.30, 0.018 +19990719, -0.82, 0.22, 0.62, 0.15, 0.47, 0.018 +19990720, -2.22, 0.41, 1.07, -0.03, 0.85, 0.018 +19990721, 0.27, -0.05, -0.55, -0.25, 0.13, 0.018 +19990722, -1.33, 0.47, 0.94, 0.50, 0.72, 0.018 +19990723, -0.32, -0.32, 0.02, -0.17, 0.01, 0.018 +19990726, -1.02, -0.34, 0.82, 0.73, 0.70, 0.018 +19990727, 1.12, -0.51, -0.74, 0.17, -0.25, 0.018 +19990728, 0.15, 0.03, -0.44, -0.32, -0.07, 0.018 +19990729, -1.75, 0.80, 0.48, 0.12, 0.77, 0.018 +19990730, -0.72, 1.44, -0.19, -0.27, 0.11, 0.018 +19990802, -0.27, -0.31, 0.52, 0.39, 0.54, 0.018 +19990803, -0.79, -0.73, 0.50, 0.56, 0.82, 0.018 +19990804, -1.45, -0.27, 1.25, 0.23, 0.66, 0.018 +19990805, 0.63, -0.96, -0.45, -0.56, -0.07, 0.018 +19990806, -1.00, 0.84, 0.14, -0.03, 0.33, 0.018 +19990809, -0.41, -0.15, 0.85, 0.55, 0.38, 0.018 +19990810, -1.16, 0.30, 0.05, -0.13, 0.00, 0.018 +19990811, 1.63, -0.64, -0.23, -0.34, -0.71, 0.018 +19990812, -0.14, 0.37, 0.11, -0.24, 0.26, 0.018 +19990813, 2.21, -1.15, -0.97, 0.12, -1.13, 0.018 +19990816, 0.26, -0.17, -0.53, -0.07, 0.10, 0.018 +19990817, 0.97, -0.62, -0.29, -0.21, -0.31, 0.018 +19990818, -0.75, 0.35, -0.21, -0.19, -0.03, 0.018 +19990819, -0.78, 0.79, 0.68, -0.10, 0.76, 0.018 +19990820, 0.89, -0.47, -0.44, -0.12, 0.00, 0.018 +19990823, 1.76, -1.13, -0.88, 0.15, -0.78, 0.018 +19990824, 0.18, -0.15, -0.37, -0.01, -0.70, 0.018 +19990825, 1.21, -0.71, -1.49, 0.06, -0.18, 0.018 +19990826, -1.18, 0.99, 0.27, -0.13, 0.23, 0.018 +19990827, -0.99, 0.58, 0.39, -0.18, 0.04, 0.018 +19990830, -1.78, 0.96, -0.08, 0.40, 0.44, 0.018 +19990831, -0.17, 0.20, -0.13, -0.69, -0.35, 0.018 +19990901, 0.76, -0.15, -0.12, 0.20, 0.29, 0.018 +19990902, -0.86, 0.33, 0.11, 0.14, 0.18, 0.018 +19990903, 2.84, -1.29, -1.23, -0.23, -0.53, 0.018 +19990907, -0.34, 0.93, -0.05, -0.47, 0.13, 0.018 +19990908, -0.55, 0.22, 0.31, -0.19, 0.57, 0.018 +19990909, 0.31, 0.04, 0.05, -0.72, -0.26, 0.018 +19990910, 0.44, 0.42, -0.48, -0.57, -0.80, 0.018 +19990913, -0.64, 0.33, 0.32, 0.34, 0.19, 0.018 +19990914, -0.52, 0.12, -0.26, -0.27, -0.13, 0.018 +19990915, -1.28, 0.95, 0.80, 0.27, -0.08, 0.018 +19990916, -0.20, -1.03, 0.04, 0.18, 0.28, 0.018 +19990917, 1.22, -0.39, -0.80, -0.11, -0.48, 0.018 +19990920, 0.00, -0.08, -0.61, 0.27, -0.52, 0.018 +19990921, -1.93, 0.65, 0.08, 0.07, 0.13, 0.018 +19990922, 0.29, -0.09, -0.74, -0.48, -0.18, 0.018 +19990923, -2.35, 0.78, 0.84, -0.12, 0.63, 0.018 +19990924, -0.19, -0.58, -0.33, 0.60, -0.24, 0.018 +19990927, 0.42, 0.56, -0.37, 0.14, 0.36, 0.018 +19990928, -0.23, -0.28, -0.83, 0.51, -0.41, 0.018 +19990929, -0.80, 0.90, 0.56, -0.60, 0.12, 0.018 +19990930, 0.92, 0.29, -0.88, 0.45, -0.45, 0.018 +19991001, -0.16, -0.29, -0.26, 0.20, 0.31, 0.018 +19991004, 1.66, -1.25, -0.26, 0.57, -0.22, 0.018 +19991005, -0.09, -0.16, -0.21, 0.06, -0.25, 0.018 +19991006, 1.82, -1.37, -0.58, -0.66, 0.03, 0.018 +19991007, -0.47, 0.19, -0.14, -0.71, -0.06, 0.018 +19991008, 1.09, -0.97, -0.45, 0.35, -0.27, 0.018 +19991011, 0.21, 0.28, -0.11, -0.65, -0.23, 0.018 +19991012, -1.72, 0.61, 0.55, 0.01, -0.07, 0.018 +19991013, -2.04, 0.65, 1.04, -0.11, 0.87, 0.018 +19991014, -0.02, -0.13, 0.00, -0.33, 0.38, 0.018 +19991015, -2.65, 1.66, 0.28, -0.03, 0.51, 0.018 +19991018, 0.09, -1.51, 0.16, 0.84, 0.76, 0.018 +19991019, 0.76, -0.31, -0.82, 0.02, -0.38, 0.018 +19991020, 1.86, -0.93, -1.31, -0.21, -1.05, 0.018 +19991021, -0.16, 0.13, -0.22, -0.38, -0.06, 0.018 +19991022, 1.31, -0.68, 0.55, -0.26, 0.09, 0.018 +19991025, -0.43, 0.39, 0.05, -0.31, -0.18, 0.018 +19991026, -0.85, 0.84, -0.05, -0.07, -0.51, 0.018 +19991027, 0.89, -0.92, 0.13, 0.62, 0.05, 0.018 +19991028, 3.32, -2.30, -0.82, -0.11, -0.41, 0.018 +19991029, 1.73, -1.05, -0.36, -0.44, -0.47, 0.018 +19991101, -0.38, 1.18, -0.49, -0.01, -0.28, 0.017 +19991102, -0.33, 0.49, 0.45, -0.22, -0.17, 0.017 +19991103, 0.69, 0.93, -0.70, -0.37, -0.43, 0.017 +19991104, 0.66, -0.29, -0.55, -0.36, -0.05, 0.017 +19991105, 0.79, -0.38, -0.36, -0.68, -0.37, 0.017 +19991108, 0.59, 0.20, -0.66, -1.00, 0.29, 0.017 +19991109, -0.78, 1.21, 0.13, -0.31, 0.04, 0.017 +19991110, 0.53, 0.20, -0.59, -0.68, 0.09, 0.017 +19991111, 0.37, -0.17, -0.68, 0.05, -0.05, 0.017 +19991112, 1.10, -0.78, 0.11, -0.23, -0.18, 0.017 +19991115, 0.03, 0.83, 0.47, -0.20, -0.14, 0.017 +19991116, 1.84, -1.00, -0.69, -0.31, -0.47, 0.017 +19991117, -0.63, 0.95, 0.00, -0.14, 0.09, 0.017 +19991118, 1.13, 0.33, -1.44, -0.30, -0.91, 0.017 +19991119, -0.11, 0.19, -0.50, 0.42, -0.36, 0.017 +19991122, 0.02, 0.15, -0.92, 0.20, -0.26, 0.017 +19991123, -1.29, 0.14, 0.30, 0.63, -0.05, 0.017 +19991124, 0.87, -0.39, -0.89, -0.43, -0.14, 0.017 +19991126, 0.23, 0.81, -0.20, -0.46, 0.15, 0.017 +19991129, -0.60, 0.54, -0.14, 0.21, 0.71, 0.017 +19991130, -1.28, 0.42, 1.28, 0.51, 0.90, 0.017 +19991201, 0.49, -0.33, -0.29, 0.14, -0.34, 0.020 +19991202, 1.15, 0.25, -1.01, -0.91, -0.57, 0.020 +19991203, 1.59, -1.00, -0.52, -0.19, -0.34, 0.020 +19991206, -0.42, 0.72, -0.55, -0.95, -0.41, 0.020 +19991207, -0.43, 0.81, -1.16, -1.42, -0.24, 0.020 +19991208, -0.08, 1.03, -0.45, -0.48, 0.05, 0.020 +19991209, 0.30, -0.49, -0.56, -0.67, -0.35, 0.020 +19991210, 0.51, 0.41, -0.69, -0.19, -0.76, 0.020 +19991213, 0.05, 0.91, -0.65, -0.74, -0.40, 0.020 +19991214, -1.33, -0.20, 1.27, 1.07, 0.90, 0.020 +19991215, 0.54, -1.02, 0.13, 0.82, -0.48, 0.020 +19991216, 0.61, 0.27, -0.73, -0.96, -0.82, 0.020 +19991217, 0.27, -0.03, -0.23, -0.58, -0.29, 0.020 +19991220, -0.08, 0.54, -0.68, 0.03, -0.15, 0.020 +19991221, 1.44, 0.01, -0.77, -1.09, -0.52, 0.020 +19991222, 0.33, 0.00, -0.19, -0.12, 0.04, 0.020 +19991223, 1.30, -0.52, -0.33, 0.05, -0.10, 0.020 +19991227, -0.21, 0.62, -0.73, 0.33, 0.01, 0.020 +19991228, 0.21, 0.41, 0.15, -0.29, 0.45, 0.020 +19991229, 0.64, 1.00, -0.10, -0.90, -0.62, 0.020 +19991230, 0.08, 0.07, -0.10, 0.41, -0.22, 0.020 +19991231, 0.52, 1.46, 0.29, -0.57, 0.13, 0.020 +20000103, -0.71, -0.16, -0.85, -1.40, -0.77, 0.021 +20000104, -4.06, 0.33, 2.21, 0.32, 1.46, 0.021 +20000105, -0.09, 0.31, 0.14, 0.36, 1.01, 0.021 +20000106, -0.73, -0.12, 1.38, 0.54, 1.19, 0.021 +20000107, 3.21, -0.97, -1.24, -0.79, -0.95, 0.021 +20000110, 1.76, 0.53, -1.51, -1.87, -0.07, 0.021 +20000111, -1.71, 0.34, 0.93, 0.83, 1.18, 0.021 +20000112, -0.69, -0.22, 0.91, 0.34, 0.91, 0.021 +20000113, 1.59, 0.57, -1.31, -1.74, -1.03, 0.021 +20000114, 1.15, 0.15, -0.19, -0.29, -0.61, 0.021 +20000118, -0.26, 2.32, -0.47, -1.46, -0.08, 0.021 +20000119, 0.44, 0.71, -0.51, -1.03, 0.50, 0.021 +20000120, -0.37, 1.71, -1.15, -1.03, -0.49, 0.021 +20000121, 0.23, 1.18, -0.46, -1.27, 0.34, 0.021 +20000124, -2.59, 1.41, 0.83, 0.60, 0.96, 0.021 +20000125, 0.49, -0.64, -0.46, -0.62, -0.62, 0.021 +20000126, -0.44, 0.28, 0.30, 0.28, 0.94, 0.021 +20000127, -0.44, -0.40, -0.09, 0.18, -0.05, 0.021 +20000128, -2.82, 0.23, 1.36, 1.04, 0.33, 0.021 +20000131, 1.50, -3.37, -0.37, 0.80, 0.48, 0.021 +20000201, 1.29, -0.13, 0.15, -0.48, -1.07, 0.022 +20000202, 0.16, 1.34, -0.54, -1.06, 0.11, 0.022 +20000203, 1.49, 0.97, -1.37, -0.94, -0.65, 0.022 +20000204, -0.05, 1.14, -0.58, -0.34, -0.09, 0.022 +20000207, 0.35, 1.23, -1.24, -0.98, -0.09, 0.022 +20000208, 1.23, 0.11, -1.79, -1.54, -0.90, 0.022 +20000209, -1.83, 1.83, -0.08, -0.36, 0.43, 0.022 +20000210, 0.57, 0.94, -1.15, -1.77, -0.41, 0.022 +20000211, -1.74, 1.35, 0.61, -0.62, 0.45, 0.022 +20000214, 0.24, 0.69, 0.18, 0.04, -0.54, 0.022 +20000215, 0.70, -0.78, 0.01, -0.01, 0.92, 0.022 +20000216, -0.58, 1.79, -0.33, -2.01, 0.74, 0.022 +20000217, 0.46, 1.69, -1.13, -2.31, -0.11, 0.022 +20000218, -2.69, 1.27, 0.59, -0.46, 0.35, 0.022 +20000222, 0.11, -0.99, 0.36, 0.38, 0.25, 0.022 +20000223, 1.24, 0.30, -1.63, -1.00, -1.11, 0.022 +20000224, 0.01, 0.74, -0.36, -0.67, -1.12, 0.022 +20000225, -1.04, 1.78, 0.16, -0.91, 0.22, 0.022 +20000228, 0.76, -0.20, -0.11, 0.20, 0.61, 0.022 +20000229, 1.96, 1.62, -0.68, -1.78, 0.74, 0.022 +20000301, 1.39, 0.91, -0.61, -1.31, -0.08, 0.020 +20000302, -0.09, 0.11, 0.28, 0.92, 0.56, 0.020 +20000303, 2.30, -0.22, -0.96, -1.01, -0.56, 0.020 +20000306, -0.77, 1.69, 0.25, -1.29, 0.48, 0.020 +20000307, -2.20, 0.89, 0.38, -0.54, -0.04, 0.020 +20000308, 0.69, -0.66, -0.26, 0.29, -1.49, 0.020 +20000309, 2.45, -0.71, -0.56, 0.59, -1.23, 0.020 +20000310, -0.43, 0.31, 0.26, 0.32, 0.01, 0.020 +20000313, -1.48, -0.77, 1.10, 1.47, 0.05, 0.020 +20000314, -2.33, -0.90, 1.23, 2.30, -0.30, 0.020 +20000315, 0.83, -4.31, 1.50, 3.21, 1.40, 0.020 +20000316, 4.25, -3.34, 0.36, 0.98, -0.31, 0.020 +20000317, 0.62, 0.26, -0.69, -0.08, -0.38, 0.020 +20000320, -1.71, -2.44, 2.11, 3.05, 0.58, 0.020 +20000321, 1.95, -2.50, -0.39, 0.30, -1.21, 0.020 +20000322, 1.31, 2.22, -1.29, -2.05, -0.62, 0.020 +20000323, 1.48, -0.81, 0.38, 0.96, -0.07, 0.020 +20000324, 0.11, -0.36, -0.04, 0.11, -0.21, 0.020 +20000327, -0.39, 0.21, -0.42, -0.20, 0.37, 0.020 +20000328, -1.34, -0.96, 0.92, 0.78, 0.00, 0.020 +20000329, -1.00, -2.14, 1.90, 2.68, 0.87, 0.020 +20000330, -1.76, -1.44, 1.67, 1.57, 0.67, 0.020 +20000331, 1.19, 0.32, 0.01, -1.61, 0.03, 0.020 +20000403, -1.67, -3.42, 2.16, 4.40, 2.18, 0.024 +20000404, -1.20, -1.92, 0.26, 1.71, 0.51, 0.024 +20000405, 0.01, 1.55, -0.74, -1.08, 0.14, 0.024 +20000406, 1.47, 1.41, -0.43, -1.65, 0.82, 0.024 +20000407, 1.42, 1.26, -0.68, -0.95, -1.24, 0.024 +20000410, -1.95, -2.65, 2.18, 3.27, 1.10, 0.024 +20000411, -1.01, -1.83, 2.18, 2.05, 1.18, 0.024 +20000412, -2.97, -1.92, 2.85, 1.97, 1.44, 0.024 +20000413, -1.80, 0.05, 0.95, 0.35, 0.77, 0.024 +20000414, -6.72, -1.12, 2.07, 2.91, 0.80, 0.024 +20000417, 2.94, -2.50, -1.56, 0.12, -2.03, 0.024 +20000418, 3.84, 2.82, -2.40, -2.88, -0.89, 0.024 +20000419, -0.80, 1.67, 0.11, -0.49, 1.00, 0.024 +20000420, 0.09, -0.90, 1.04, 0.67, 0.45, 0.024 +20000424, -1.01, -1.98, 1.14, 2.25, 1.39, 0.024 +20000425, 3.74, 0.19, -1.06, -2.02, -1.19, 0.024 +20000426, -1.23, 0.58, 1.33, 0.15, 0.60, 0.024 +20000427, 0.76, 1.09, -0.77, -1.59, -1.21, 0.024 +20000428, 0.07, 2.26, 0.01, -1.98, -0.33, 0.024 +20000501, 1.40, 1.25, -1.21, -0.87, -0.52, 0.023 +20000502, -2.07, -0.54, 1.93, 1.38, 0.78, 0.023 +20000503, -2.09, 0.29, -0.46, 0.67, 0.34, 0.023 +20000504, 0.00, 0.97, -0.08, -1.08, 0.27, 0.023 +20000505, 1.48, 0.53, -0.67, -0.23, -0.23, 0.023 +20000508, -0.98, -1.21, 1.47, 0.97, 0.84, 0.023 +20000509, -1.19, -0.63, 0.90, 1.58, 0.01, 0.023 +20000510, -2.70, -0.80, 0.87, 1.38, 1.04, 0.023 +20000511, 2.08, 0.33, -0.23, -0.96, -1.14, 0.023 +20000512, 0.81, -0.55, 0.51, 0.05, -0.05, 0.023 +20000515, 2.13, -0.91, -0.79, -0.29, -0.45, 0.023 +20000516, 1.30, 0.01, -0.63, -1.21, -0.55, 0.023 +20000517, -1.38, 0.43, 0.73, 0.29, 0.36, 0.023 +20000518, -1.09, -0.80, 1.06, 0.87, 0.93, 0.023 +20000519, -2.39, -0.02, 0.88, 0.81, 0.55, 0.023 +20000522, -0.73, -1.17, -0.31, 0.68, -0.16, 0.023 +20000523, -2.38, -0.35, 1.39, 2.10, 0.92, 0.023 +20000524, 1.55, -1.67, -1.27, 0.56, -1.06, 0.023 +20000525, -1.29, 0.35, 0.11, 0.09, -0.09, 0.023 +20000526, -0.18, 0.19, -0.05, 0.05, -0.08, 0.023 +20000530, 3.82, 0.13, -2.25, -2.24, -1.46, 0.023 +20000531, -0.22, 0.23, 0.54, -0.18, 0.54, 0.023 +20000601, 2.50, 0.44, -1.64, -1.93, -0.85, 0.018 +20000602, 2.91, 1.18, -2.45, -2.72, -1.60, 0.018 +20000605, -0.37, 1.22, -0.56, -1.09, 0.46, 0.018 +20000606, -0.87, 0.78, 0.18, -0.06, 0.85, 0.018 +20000607, 1.16, 0.02, -0.76, -0.59, -0.77, 0.018 +20000608, -0.60, 0.61, 0.17, -0.30, -0.12, 0.018 +20000609, 0.04, 1.63, -0.07, -1.14, 0.31, 0.018 +20000612, -1.19, -0.60, 1.28, 0.87, 0.87, 0.018 +20000613, 1.45, -0.58, -0.99, 0.28, -0.85, 0.018 +20000614, -0.16, -0.25, 0.35, 1.17, 0.02, 0.018 +20000615, 0.50, -0.22, -1.23, -0.10, -0.38, 0.018 +20000616, -0.74, 1.04, -0.19, -0.68, -0.04, 0.018 +20000619, 1.66, -0.24, -1.27, -0.67, -0.28, 0.018 +20000620, -0.25, 0.67, -0.51, -1.44, -0.18, 0.018 +20000621, 0.36, 0.42, -0.49, -0.63, -0.05, 0.018 +20000622, -1.88, 0.15, 0.43, 1.09, 0.16, 0.018 +20000623, -0.99, 0.13, 1.05, 0.59, 0.86, 0.018 +20000626, 0.92, 1.12, -1.36, 0.62, -0.93, 0.018 +20000627, -0.55, -0.33, 0.77, 0.81, -0.19, 0.018 +20000628, 0.77, 1.61, -1.20, -0.74, -0.29, 0.018 +20000629, -0.67, 0.19, 0.62, 0.61, 1.18, 0.018 +20000630, 0.74, 0.94, -1.56, -0.20, -1.46, 0.018 +20000703, 0.91, -0.27, 0.83, -0.07, 0.27, 0.024 +20000705, -1.60, 0.53, 1.85, 0.57, 1.32, 0.024 +20000706, 0.87, -0.05, -0.15, -0.28, -0.88, 0.024 +20000707, 1.46, -0.91, -0.81, 0.13, -0.45, 0.024 +20000710, -0.13, 0.36, 0.59, 0.76, 0.61, 0.024 +20000711, 0.12, -0.20, 0.10, 0.53, 1.07, 0.024 +20000712, 1.31, 0.25, -0.64, -1.40, -1.31, 0.024 +20000713, 0.51, 0.02, -0.57, -1.84, -1.37, 0.024 +20000714, 0.94, -0.63, -0.41, -0.77, -1.05, 0.024 +20000717, 0.10, 0.73, -1.32, -0.20, -0.21, 0.024 +20000718, -1.35, 0.43, 1.19, 0.76, 0.92, 0.024 +20000719, -1.19, -0.13, 1.25, 1.01, 0.95, 0.024 +20000720, 1.33, -0.39, -0.80, -0.60, -0.85, 0.024 +20000721, -1.30, -0.32, 1.10, 1.11, 1.02, 0.024 +20000724, -1.44, -0.22, 0.87, 1.82, 0.80, 0.024 +20000725, 0.51, -0.71, 0.23, -0.23, -0.76, 0.024 +20000726, -1.33, 1.06, 0.94, 0.29, 0.33, 0.024 +20000727, -0.90, -1.26, 2.48, 2.48, 1.71, 0.024 +20000728, -2.33, 0.07, 1.72, 1.99, 1.62, 0.024 +20000731, 1.03, 0.59, -0.45, -0.27, -0.97, 0.024 +20000801, 0.16, -0.93, 1.54, 0.96, 1.99, 0.022 +20000802, 0.02, 0.12, 0.21, 0.79, 0.63, 0.022 +20000803, 1.11, -1.26, -0.01, 0.14, -1.17, 0.022 +20000804, 0.89, -0.46, 0.23, -0.67, 0.01, 0.022 +20000807, 1.16, -0.08, -0.73, -0.43, -0.62, 0.022 +20000808, 0.10, -0.39, 1.08, 0.56, 0.41, 0.022 +20000809, -0.60, 0.46, 0.06, -0.16, -0.05, 0.022 +20000810, -1.03, -0.11, 1.18, 1.15, 0.98, 0.022 +20000811, 0.86, 0.25, 0.26, 0.36, 0.50, 0.022 +20000814, 1.24, -0.38, -0.40, -0.37, -0.02, 0.022 +20000815, -0.46, -0.05, 0.05, -0.24, -0.17, 0.022 +20000816, -0.18, 0.63, -0.20, -0.56, -0.31, 0.022 +20000817, 1.12, -0.59, -0.60, -0.74, -0.44, 0.022 +20000818, -0.28, 0.09, 0.03, -0.35, -0.04, 0.022 +20000821, 0.40, -0.19, -0.49, 0.16, -0.13, 0.022 +20000822, -0.01, 0.10, 0.09, -0.20, -0.03, 0.022 +20000823, 0.55, -0.25, -1.02, -0.43, -0.33, 0.022 +20000824, 0.34, 0.43, -0.47, -0.72, 0.18, 0.022 +20000825, -0.04, 0.59, -0.46, -0.24, 0.23, 0.022 +20000828, 0.49, -0.24, -0.11, -0.18, -0.39, 0.022 +20000829, -0.03, 0.64, -0.24, -0.30, -0.34, 0.022 +20000830, -0.11, 0.59, -0.01, -1.02, -0.12, 0.022 +20000831, 1.19, 0.01, -0.65, -0.38, -0.25, 0.022 +20000901, 0.38, 0.14, -0.35, -0.56, -0.13, 0.025 +20000905, -0.97, 0.32, 1.33, 0.38, 0.55, 0.025 +20000906, -1.23, 0.47, 2.01, 1.09, 0.96, 0.025 +20000907, 0.80, 0.34, -0.72, 0.02, -0.33, 0.025 +20000908, -0.83, -0.33, 0.90, 1.21, 1.25, 0.025 +20000911, -0.45, -0.30, 1.43, 0.85, 0.85, 0.025 +20000912, -0.50, 0.41, -0.08, 0.61, 0.68, 0.025 +20000913, 0.29, -0.29, -0.15, -0.80, -0.33, 0.025 +20000914, 0.01, 0.89, -0.37, -1.13, -0.60, 0.025 +20000915, -1.23, 0.06, 0.98, -0.17, 0.96, 0.025 +20000918, -1.80, -0.44, 0.55, 1.33, 0.51, 0.025 +20000919, 1.24, -0.30, -1.53, -1.00, -1.53, 0.025 +20000920, -0.39, 0.29, -0.59, 0.36, -0.41, 0.025 +20000921, -0.54, -0.58, 1.08, 1.44, 1.24, 0.025 +20000922, 0.40, -0.60, -0.15, -0.97, 0.99, 0.025 +20000925, -0.56, -0.18, 0.45, 0.07, 0.28, 0.025 +20000926, -0.96, -0.27, 1.12, 0.48, 0.52, 0.025 +20000927, -0.21, -0.58, 0.33, 0.59, 0.72, 0.025 +20000928, 2.32, 0.00, -1.21, -0.75, -0.93, 0.025 +20000929, -1.26, 1.15, 1.25, -0.01, 1.34, 0.025 +20001002, -0.70, -1.11, 1.47, 1.80, 0.65, 0.025 +20001003, -1.29, 0.20, 1.05, 1.56, 0.93, 0.025 +20001004, 0.64, -0.27, -0.64, -0.59, -1.35, 0.025 +20001005, -0.23, -0.32, 0.08, 1.36, 1.17, 0.025 +20001006, -2.17, 0.06, 1.57, 1.45, 0.86, 0.025 +20001009, -0.39, -0.43, 0.51, -0.68, -0.07, 0.025 +20001010, -1.44, 0.14, 0.69, 0.67, 1.35, 0.025 +20001011, -1.77, 0.22, 0.85, 1.62, 0.92, 0.025 +20001012, -2.83, 0.81, 1.21, 1.78, 0.84, 0.025 +20001013, 3.88, -1.06, -2.36, -1.84, -2.59, 0.025 +20001016, 0.24, -0.27, -0.47, -0.64, 1.10, 0.025 +20001017, -1.95, 0.16, 0.59, 1.66, 0.94, 0.025 +20001018, -0.84, -0.09, 0.60, 0.76, 0.43, 0.025 +20001019, 3.66, -0.84, -2.13, -1.69, -2.98, 0.025 +20001020, 0.92, 0.38, -1.01, -1.69, -1.53, 0.025 +20001023, 0.03, 0.46, -0.67, -0.97, 0.53, 0.025 +20001024, -0.12, -0.33, 1.16, 1.32, 0.96, 0.025 +20001025, -2.52, 0.27, 1.88, 2.61, 2.07, 0.025 +20001026, 0.00, 0.71, -0.33, 0.45, -0.16, 0.025 +20001027, 0.91, -0.92, 1.25, 0.67, 0.12, 0.025 +20001030, 0.74, -0.84, 1.82, 2.01, 1.57, 0.025 +20001031, 2.75, 0.03, -1.65, -2.11, -1.39, 0.025 +20001101, -0.48, -0.07, 0.49, -0.17, 0.17, 0.024 +20001102, 1.05, 0.96, -1.28, -1.23, -0.62, 0.024 +20001103, -0.03, 0.74, -1.21, -0.53, -0.42, 0.024 +20001106, 0.13, -0.77, 0.53, 0.34, 0.90, 0.024 +20001107, -0.08, 0.32, -0.33, -0.23, -0.25, 0.024 +20001108, -1.97, 0.78, 2.16, 1.90, 2.24, 0.024 +20001109, -0.96, -0.15, 0.80, 1.81, 0.46, 0.024 +20001110, -2.69, 0.05, 2.31, 1.05, 2.12, 0.024 +20001113, -1.39, 0.39, 1.71, 1.82, -0.28, 0.024 +20001114, 2.66, -0.72, -1.84, -1.71, -1.76, 0.024 +20001115, 0.60, -0.02, 0.07, -0.02, 0.17, 0.024 +20001116, -1.67, -0.14, 1.62, 1.47, 1.21, 0.024 +20001117, -0.52, 0.80, 0.44, 1.07, 0.49, 0.024 +20001120, -2.46, 0.13, 1.38, 2.38, 1.28, 0.024 +20001121, -0.05, -0.73, 0.72, 1.57, 0.71, 0.024 +20001122, -2.12, 0.14, 1.96, 1.41, 0.86, 0.024 +20001124, 2.08, 0.31, -2.02, -2.44, -1.42, 0.024 +20001127, 0.30, -0.34, -0.64, 1.05, 0.22, 0.024 +20001128, -1.67, -0.54, 2.51, 2.45, 1.57, 0.024 +20001129, 0.18, -1.37, 1.05, 1.87, 0.56, 0.024 +20001130, -2.03, -0.23, 1.49, 0.71, 0.98, 0.024 +20001201, 0.51, 1.43, -0.68, -2.02, -0.43, 0.025 +20001204, 0.35, -1.63, 0.93, 1.17, 0.53, 0.025 +20001205, 4.55, -0.81, -2.87, -2.63, -3.38, 0.025 +20001206, -1.78, 0.29, 1.09, -0.17, 0.96, 0.025 +20001207, -0.59, 0.08, 0.43, 0.63, 0.77, 0.025 +20001208, 2.79, 0.17, -1.42, -2.92, -0.90, 0.025 +20001211, 1.15, 0.02, -0.95, -1.37, -1.01, 0.025 +20001212, -1.07, -0.34, 0.54, 0.82, 0.52, 0.025 +20001213, -1.14, 0.07, 1.12, 1.24, 1.05, 0.025 +20001214, -1.80, 0.23, 1.04, 1.11, 1.21, 0.025 +20001215, -1.96, 0.74, 1.63, -0.24, 0.71, 0.025 +20001218, 0.60, -0.19, 1.31, 1.91, 1.57, 0.025 +20001219, -1.63, 0.27, 2.11, 1.37, 1.77, 0.025 +20001220, -3.59, -0.09, 3.03, 3.09, 2.41, 0.025 +20001221, 0.54, 0.11, 0.32, 1.39, -0.42, 0.025 +20001222, 3.06, 0.06, -2.10, -2.39, -2.11, 0.025 +20001226, 0.55, -0.21, 0.75, 0.74, 0.75, 0.025 +20001227, 1.36, 0.79, -0.31, -0.34, -0.20, 0.025 +20001228, 0.88, 1.89, -0.68, -0.61, 0.28, 0.025 +20001229, -1.23, 0.20, 1.43, 0.52, 1.22, 0.025 +20010102, -3.52, 0.35, 1.96, 1.63, 1.61, 0.026 +20010103, 5.39, -0.67, -4.12, -2.41, -5.94, 0.026 +20010104, -1.30, 0.85, 0.24, 0.43, -0.80, 0.026 +20010105, -2.98, 0.76, 2.18, 1.95, 2.31, 0.026 +20010108, -0.36, -0.37, 0.95, 0.93, 0.67, 0.026 +20010109, 0.51, 0.22, -0.23, -0.90, -0.51, 0.026 +20010110, 1.44, 0.50, -1.30, -1.86, -1.00, 0.026 +20010111, 1.39, 0.82, -2.84, -2.08, -1.97, 0.026 +20010112, -0.40, 1.22, -0.56, -1.27, -0.09, 0.026 +20010116, 0.68, 1.29, -0.22, 0.21, 0.49, 0.026 +20010117, 0.37, -0.20, -0.83, -1.03, -1.22, 0.026 +20010118, 1.16, -0.56, -1.38, -0.53, -1.14, 0.026 +20010119, -0.55, -0.18, -0.27, -0.06, -0.58, 0.026 +20010122, -0.01, 0.07, 1.10, 0.27, 0.90, 0.026 +20010123, 1.57, 0.27, -0.43, -1.04, -0.47, 0.026 +20010124, 0.34, -0.40, -0.35, -0.82, -0.65, 0.026 +20010125, -0.81, -0.01, 1.59, 1.73, 1.72, 0.026 +20010126, -0.11, 0.22, -0.22, 0.00, -0.21, 0.026 +20010129, 0.90, 0.63, -0.31, -0.76, -0.79, 0.026 +20010130, 0.63, 0.04, -0.20, -0.21, 0.02, 0.026 +20010131, -0.72, 0.43, 0.28, 1.16, 0.73, 0.026 +20010201, 0.39, -0.16, 0.82, 0.91, 0.07, 0.020 +20010202, -1.90, 0.39, 2.21, 1.30, 1.63, 0.020 +20010205, 0.17, -0.31, 1.04, 0.49, 0.31, 0.020 +20010206, 0.04, 0.86, -0.49, 0.15, 0.05, 0.020 +20010207, -0.86, 1.13, 1.17, 1.31, 1.13, 0.020 +20010208, -0.67, -0.04, 0.79, 0.12, 0.54, 0.020 +20010209, -1.42, 0.27, 1.18, 0.80, 1.36, 0.020 +20010212, 1.10, 0.18, 0.05, 0.63, 0.34, 0.020 +20010213, -0.90, 0.52, 1.01, 0.33, 0.56, 0.020 +20010214, -0.04, 0.15, -0.41, -0.39, -0.91, 0.020 +20010215, 0.93, 0.04, -0.86, -0.19, -0.88, 0.020 +20010216, -1.93, 0.00, 1.87, 1.34, 1.81, 0.020 +20010220, -1.93, 0.59, 1.40, 1.38, 1.62, 0.020 +20010221, -1.84, 0.19, 0.92, 0.16, 0.52, 0.020 +20010222, -0.48, -0.87, 0.59, 0.59, 0.05, 0.020 +20010223, -0.38, 0.15, -0.35, -0.17, -0.23, 0.020 +20010226, 1.91, -0.13, 0.02, -0.53, -0.22, 0.020 +20010227, -1.17, -0.63, 1.64, 1.19, 1.47, 0.020 +20010228, -1.48, 0.60, 0.81, 0.27, 1.08, 0.020 +20010301, 0.02, -0.42, -0.07, -0.13, -0.55, 0.019 +20010302, -0.53, 0.93, 1.15, -0.05, 1.47, 0.019 +20010305, 0.54, -0.75, 0.18, -0.44, 0.15, 0.019 +20010306, 1.06, -0.03, -1.03, -0.62, -1.44, 0.019 +20010307, 0.58, 0.15, 0.65, 0.12, 0.24, 0.019 +20010308, -0.14, -0.43, 0.99, 0.94, 1.10, 0.019 +20010309, -2.50, 0.84, 2.01, 0.52, 1.93, 0.019 +20010312, -4.34, 1.16, 2.38, 0.94, 1.51, 0.019 +20010313, 1.61, -0.69, -1.48, -0.33, -1.98, 0.019 +20010314, -2.50, 0.72, 0.10, -0.12, 0.15, 0.019 +20010315, 0.34, -0.40, 0.30, 0.13, 0.22, 0.019 +20010316, -2.11, -0.03, 1.27, 0.84, 0.15, 0.019 +20010319, 1.86, -0.40, -1.15, -0.28, -0.46, 0.019 +20010320, -2.40, 1.06, 1.33, 0.29, 1.01, 0.019 +20010321, -1.88, 0.05, 0.67, 0.30, -0.25, 0.019 +20010322, -0.43, -0.28, -1.40, -0.09, -1.71, 0.019 +20010323, 2.08, 0.02, -1.22, 0.26, 0.03, 0.019 +20010326, 1.09, -0.63, 0.61, -0.12, 0.49, 0.019 +20010327, 2.40, -0.91, -1.54, 0.33, -1.10, 0.019 +20010328, -2.58, 0.57, 1.87, 1.11, 1.84, 0.019 +20010329, -0.53, 0.21, 1.51, 0.43, 0.87, 0.019 +20010330, 1.19, 1.59, -0.60, -0.58, 0.26, 0.019 +20010402, -1.60, -1.17, 1.48, 1.62, 0.36, 0.020 +20010403, -3.69, 0.62, 2.03, 1.54, 1.47, 0.020 +20010404, -0.39, -0.01, 0.82, 0.66, 1.05, 0.020 +20010405, 4.68, -0.71, -3.28, -1.68, -2.40, 0.020 +20010406, -2.07, 0.43, 0.21, 0.35, 0.68, 0.020 +20010409, 0.87, 0.28, -0.13, -0.35, 0.01, 0.020 +20010410, 2.87, -0.79, -1.36, -1.56, -1.65, 0.020 +20010411, -0.10, -0.36, -0.65, -0.85, -1.07, 0.020 +20010412, 1.57, -0.23, -1.32, -0.85, -0.44, 0.020 +20010416, -0.47, -0.11, 0.66, 0.38, 0.90, 0.020 +20010417, 1.10, 0.04, -0.22, 0.03, 0.08, 0.020 +20010418, 3.92, -2.04, -2.52, -0.68, -3.29, 0.020 +20010419, 1.48, -0.25, -1.37, -0.87, -1.85, 0.020 +20010420, -0.87, 0.10, 0.16, -0.23, -0.13, 0.020 +20010423, -1.72, 0.81, 1.21, 0.87, 1.62, 0.020 +20010424, -1.15, 1.46, 1.00, 0.26, 0.60, 0.020 +20010425, 1.68, 0.43, -0.90, -0.17, -0.15, 0.020 +20010426, 0.45, 0.42, 0.26, -0.10, 0.74, 0.020 +20010427, 1.47, -0.21, -0.44, 0.04, -0.26, 0.020 +20010430, 0.03, 0.54, -0.51, -1.31, -0.38, 0.020 +20010501, 1.37, -0.22, -0.72, -0.24, -0.81, 0.015 +20010502, 0.33, 0.31, -0.94, 0.00, -1.15, 0.015 +20010503, -1.58, 0.58, 0.91, 0.76, 1.04, 0.015 +20010504, 1.45, -0.24, 0.01, -0.31, -0.30, 0.015 +20010507, -0.34, 0.03, 0.23, 0.53, 0.21, 0.015 +20010508, -0.09, 0.63, 0.17, -0.15, -0.22, 0.015 +20010509, -0.49, 0.28, 0.46, -0.16, 0.77, 0.015 +20010510, -0.10, 0.29, 0.59, 0.24, 0.37, 0.015 +20010511, -0.74, 0.26, 0.76, -0.23, 0.44, 0.015 +20010514, 0.11, -0.10, 0.67, 0.80, 0.68, 0.015 +20010515, 0.06, 0.56, 0.18, 0.09, 0.13, 0.015 +20010516, 2.78, -1.50, -1.15, -0.01, -0.68, 0.015 +20010517, 0.52, 0.70, -0.41, -0.85, 0.17, 0.015 +20010518, 0.22, 0.20, 0.00, -0.66, -0.03, 0.015 +20010521, 1.87, -0.27, -1.41, -0.95, -1.01, 0.015 +20010522, -0.15, 0.47, 0.24, 0.04, -0.24, 0.015 +20010523, -1.71, 0.22, 0.72, 0.68, 0.61, 0.015 +20010524, 0.41, 0.33, -0.44, -0.43, -0.51, 0.015 +20010525, -1.04, 0.89, 0.33, -0.17, 0.55, 0.015 +20010529, -1.06, 0.05, 1.22, 1.00, 1.34, 0.015 +20010530, -1.74, 0.24, 1.72, 1.14, 1.13, 0.015 +20010531, 0.73, -0.31, -0.17, -0.87, -0.42, 0.015 +20010601, 0.54, 0.47, -0.31, 0.01, -0.02, 0.013 +20010604, 0.49, 0.65, -0.19, 0.11, 0.15, 0.013 +20010605, 1.45, 0.04, -1.18, -0.53, -0.67, 0.013 +20010606, -0.97, 0.17, 0.13, -0.12, -0.09, 0.013 +20010607, 0.54, -0.10, -1.11, -0.10, -0.96, 0.013 +20010608, -0.99, 0.42, 0.65, 0.34, 0.45, 0.013 +20010611, -0.98, 0.37, 0.74, 0.60, 0.12, 0.013 +20010612, 0.02, -0.08, 0.08, 0.33, 0.05, 0.013 +20010613, -1.06, 0.83, 0.73, 0.28, 0.72, 0.013 +20010614, -1.96, 0.23, 0.78, 1.19, 0.87, 0.013 +20010615, -0.46, 0.17, 0.39, 0.00, 0.52, 0.013 +20010618, -0.63, -0.55, 1.08, 1.23, 0.51, 0.013 +20010619, 0.21, -0.57, 0.03, 0.56, -0.34, 0.013 +20010620, 1.07, 0.10, -0.55, -0.05, -0.43, 0.013 +20010621, 0.98, -0.36, -0.12, 0.29, -0.69, 0.013 +20010622, -1.00, -0.33, -0.01, -0.42, -0.01, 0.013 +20010625, -0.54, 0.30, -0.34, -0.17, -0.76, 0.013 +20010626, -0.04, 1.38, -0.17, -0.18, 0.14, 0.013 +20010627, -0.22, 0.96, -0.05, -0.17, -0.28, 0.013 +20010628, 1.31, -0.06, -0.86, 0.35, -0.76, 0.013 +20010629, 0.35, 2.61, -0.88, -1.52, -0.45, 0.013 +20010702, 0.56, -3.17, 1.31, 0.97, 0.59, 0.014 +20010703, -0.21, -0.05, 0.13, 0.27, 0.34, 0.014 +20010705, -1.24, 0.49, 0.47, 1.28, 0.95, 0.014 +20010706, -2.29, 0.55, 0.95, 0.41, 1.05, 0.014 +20010709, 0.59, -0.19, 0.77, -0.41, -0.32, 0.014 +20010710, -1.49, -0.09, 2.15, 0.76, 0.65, 0.014 +20010711, -0.18, -0.48, 0.28, 0.42, 0.64, 0.014 +20010712, 2.44, 0.08, -0.86, -0.54, -1.97, 0.014 +20010713, 0.54, 0.03, -0.49, 0.24, 0.02, 0.014 +20010716, -1.16, 0.09, 1.19, 1.10, 0.71, 0.014 +20010717, 1.05, 0.32, -0.74, 0.47, -0.23, 0.014 +20010718, -0.69, -0.56, 0.58, 1.56, 0.93, 0.014 +20010719, 0.51, 0.45, -0.71, 0.13, -0.35, 0.014 +20010720, -0.33, 0.66, -0.16, 0.43, 0.14, 0.014 +20010723, -1.55, 0.68, 0.34, 0.10, 0.57, 0.014 +20010724, -1.70, 0.07, 0.15, 1.13, 0.46, 0.014 +20010725, 1.37, -0.99, -0.09, -0.01, -0.29, 0.014 +20010726, 1.19, -0.18, 0.08, -1.44, -0.89, 0.014 +20010727, 0.26, -0.34, 0.06, -0.38, -0.28, 0.014 +20010730, -0.12, 0.09, 0.18, 0.47, 0.15, 0.014 +20010731, 0.50, -0.53, 0.13, 0.26, 0.21, 0.014 +20010801, 0.48, 0.27, -0.08, -0.80, -1.00, 0.013 +20010802, 0.33, -0.31, 0.06, 0.12, -0.35, 0.013 +20010803, -0.49, 0.14, 0.10, 0.12, 0.66, 0.013 +20010806, -1.16, -0.11, 0.81, 0.02, 0.58, 0.013 +20010807, 0.21, -0.33, 0.18, 0.73, 0.43, 0.013 +20010808, -1.72, 0.27, 0.78, 1.05, 1.15, 0.013 +20010809, -0.06, 0.32, -0.52, 0.34, 0.08, 0.013 +20010810, 0.44, -0.34, 0.11, 0.62, 0.44, 0.013 +20010813, 0.23, 0.15, -0.14, -0.44, -0.19, 0.013 +20010814, -0.30, 0.69, 0.45, 0.46, 0.68, 0.013 +20010815, -0.75, 0.58, 0.15, 1.35, 1.11, 0.013 +20010816, 0.21, 0.13, 0.25, 0.21, 0.16, 0.013 +20010817, -1.63, 0.52, 0.36, 0.43, 1.08, 0.013 +20010820, 0.71, -0.19, -0.57, 0.34, -0.03, 0.013 +20010821, -1.22, -0.09, 0.78, 0.25, 1.33, 0.013 +20010822, 0.71, 0.19, -0.68, -0.17, -0.21, 0.013 +20010823, -0.31, -0.37, -0.10, -0.02, 0.19, 0.013 +20010824, 1.84, -0.38, -0.82, -0.94, -1.42, 0.013 +20010827, -0.42, 0.19, -0.47, -0.29, -0.29, 0.013 +20010828, -1.46, 0.43, 0.88, 0.26, 0.73, 0.013 +20010829, -0.98, 0.84, 0.09, -0.02, 0.54, 0.013 +20010830, -1.60, 0.45, 0.63, 0.67, 1.21, 0.013 +20010831, 0.42, -0.23, 0.29, -0.20, -0.22, 0.013 +20010904, -0.12, -0.20, 0.65, 1.02, 0.42, 0.018 +20010905, -0.32, -0.61, 0.54, 1.36, 1.02, 0.018 +20010906, -2.13, 0.31, 0.44, 0.51, 0.93, 0.018 +20010907, -1.83, 0.17, -0.52, -0.03, 0.25, 0.018 +20010910, 0.37, -1.30, -0.49, 0.30, -0.33, 0.018 +20010917, -5.03, -0.04, -0.80, 1.02, 0.99, 0.018 +20010918, -0.82, -1.13, 1.20, 0.45, 0.39, 0.018 +20010919, -1.67, -0.80, 0.00, -0.05, -0.44, 0.018 +20010920, -3.05, -0.90, -0.10, -0.44, -0.13, 0.018 +20010921, -1.96, -0.33, -0.58, 0.38, 0.25, 0.018 +20010924, 3.82, -0.13, -0.29, -0.58, -0.95, 0.018 +20010925, 0.74, -0.41, 0.75, 0.41, 0.28, 0.018 +20010926, -0.67, -0.81, 0.24, 1.41, 1.04, 0.018 +20010927, 1.10, -0.82, 0.40, 0.61, 0.65, 0.018 +20010928, 2.25, 0.68, 0.52, -0.83, -0.70, 0.018 +20011001, -0.45, -1.15, -0.18, 0.87, -0.01, 0.010 +20011002, 1.17, -0.25, -0.28, -0.12, -0.27, 0.010 +20011003, 2.28, 0.28, -1.10, -1.79, -1.87, 0.010 +20011004, -0.12, 1.30, -0.75, -0.58, -0.79, 0.010 +20011005, 0.04, -0.14, -1.22, 0.32, -0.19, 0.010 +20011008, -0.80, 0.31, 0.39, -0.43, -0.17, 0.010 +20011009, -0.51, -0.36, 0.02, 0.08, 0.30, 0.010 +20011010, 2.35, 0.33, -0.56, -0.32, -0.88, 0.010 +20011011, 1.73, 0.20, -0.38, -1.80, -1.77, 0.010 +20011012, -0.57, 0.22, -0.40, -0.81, -0.32, 0.010 +20011015, -0.09, 0.47, -0.25, 0.26, 0.22, 0.010 +20011016, 0.78, 0.35, -0.69, -0.17, -0.10, 0.010 +20011017, -2.02, 0.29, 0.16, 1.59, 0.77, 0.010 +20011018, -0.73, 0.11, -0.19, 0.08, 0.18, 0.010 +20011019, 0.54, 0.48, -0.75, 0.19, 0.28, 0.010 +20011022, 1.51, -0.43, -0.47, -0.38, -0.32, 0.010 +20011023, -0.51, 0.02, -0.16, 0.29, -0.25, 0.010 +20011024, 0.08, 0.17, -1.11, -0.42, -0.40, 0.010 +20011025, 1.42, 0.34, -1.34, -0.63, -0.71, 0.010 +20011026, 0.41, 0.41, 0.10, 0.42, 0.44, 0.010 +20011029, -2.33, 0.56, 0.81, 0.45, 1.11, 0.010 +20011030, -1.76, 0.43, 0.67, 0.61, 0.75, 0.010 +20011031, 0.18, 1.30, -0.25, -0.46, -0.60, 0.010 +20011101, 2.10, -0.76, -0.72, 0.27, -0.23, 0.008 +20011102, 0.18, -0.64, 0.48, 0.33, 0.14, 0.008 +20011105, 1.42, -0.70, -0.32, -0.96, -0.92, 0.008 +20011106, 1.44, -0.54, -0.04, -0.29, -0.22, 0.008 +20011107, -0.23, 0.05, -0.35, 0.04, -0.52, 0.008 +20011108, 0.07, -0.29, 0.49, 0.21, -0.30, 0.008 +20011109, 0.07, -0.06, -0.13, 0.27, 0.08, 0.008 +20011112, -0.07, 0.58, -0.43, -0.43, -0.21, 0.008 +20011113, 1.86, -0.37, -0.01, -0.71, -0.88, 0.008 +20011114, 0.34, 0.53, 0.54, -0.30, -0.07, 0.008 +20011115, 0.00, -0.85, 1.37, -0.19, 0.43, 0.008 +20011116, -0.25, 0.60, 0.49, -0.66, 0.10, 0.008 +20011119, 1.15, 0.09, -0.34, -0.98, -0.83, 0.008 +20011120, -0.80, 0.22, 0.14, 1.37, 1.27, 0.008 +20011121, -0.48, 0.32, -0.29, 0.10, 0.21, 0.008 +20011123, 1.17, 0.06, 0.00, -0.23, -0.16, 0.008 +20011126, 0.72, -0.17, -0.16, -0.61, -0.59, 0.008 +20011127, -0.55, 0.55, 0.23, -0.72, -0.09, 0.008 +20011128, -1.78, 0.35, 1.02, 0.74, 1.24, 0.008 +20011129, 1.15, 0.85, -0.48, -0.57, -0.38, 0.008 +20011130, -0.14, -0.19, 0.28, -0.24, 0.32, 0.008 +20011203, -0.86, 0.04, 0.32, 0.56, 0.52, 0.007 +20011204, 1.44, 0.54, -0.40, -1.00, -0.87, 0.007 +20011205, 2.31, -0.08, -0.62, -0.99, -1.53, 0.007 +20011206, -0.12, 0.57, 0.78, -0.57, -0.14, 0.007 +20011207, -0.74, 0.80, 0.03, 0.82, 0.36, 0.007 +20011210, -1.52, 0.49, -0.36, 0.53, 0.51, 0.007 +20011211, -0.20, 0.28, -0.13, -0.60, -0.24, 0.007 +20011212, 0.04, 0.16, -0.04, -0.05, -0.23, 0.007 +20011213, -1.51, 0.43, 0.23, 1.11, 0.95, 0.007 +20011214, 0.31, 0.32, 0.50, 0.34, 0.60, 0.007 +20011217, 1.05, 0.37, 0.10, -0.19, -0.38, 0.007 +20011218, 0.84, 0.33, -0.72, 0.12, -0.22, 0.007 +20011219, 0.43, -0.81, -0.36, 0.92, 0.00, 0.007 +20011220, -0.93, -0.75, 1.26, 1.12, 1.02, 0.007 +20011221, 0.57, 1.33, 0.12, -0.44, 0.06, 0.007 +20011224, 0.02, 0.34, 0.06, 0.02, 0.03, 0.007 +20011226, 0.50, 0.44, -0.28, -0.37, -0.28, 0.007 +20011227, 0.69, -0.02, -0.37, -0.16, -0.55, 0.007 +20011228, 0.41, -0.24, 0.12, -0.71, -0.55, 0.007 +20011231, -1.04, 0.38, 0.79, -0.26, 0.59, 0.007 +20020102, 0.42, -0.71, 0.13, -0.24, -0.41, 0.007 +20020103, 0.99, 0.78, -0.53, -0.33, -0.81, 0.007 +20020104, 0.70, 0.22, 0.31, -0.06, -0.21, 0.007 +20020107, -0.70, -0.24, 0.87, -0.08, 0.17, 0.007 +20020108, -0.23, 1.20, 0.24, -0.27, -0.03, 0.007 +20020109, -0.45, 0.10, -0.15, 0.27, 0.08, 0.007 +20020110, 0.08, -0.08, 0.26, 0.12, -0.11, 0.007 +20020111, -0.86, -0.09, 0.29, 0.15, 0.51, 0.007 +20020114, -0.85, -0.62, -0.05, 0.81, 0.27, 0.007 +20020115, 0.67, -0.42, 0.20, 0.41, 0.22, 0.007 +20020116, -1.62, 0.23, 0.59, 0.91, 1.06, 0.007 +20020117, 1.06, 0.18, -0.63, 0.03, -0.12, 0.007 +20020118, -1.08, -0.39, 0.88, 0.67, 0.69, 0.007 +20020122, -0.81, -0.22, 0.08, 1.18, 1.13, 0.007 +20020123, 0.92, 0.63, -0.16, -0.33, -0.56, 0.007 +20020124, 0.40, -0.21, 0.31, -0.71, -0.11, 0.007 +20020125, 0.09, -0.17, 0.38, 0.44, 0.43, 0.007 +20020128, 0.05, 0.22, 0.62, 0.08, 0.01, 0.007 +20020129, -2.54, 1.25, 0.22, 0.04, 0.39, 0.007 +20020130, 1.05, 0.06, -0.75, 0.91, -0.16, 0.007 +20020131, 1.35, -0.52, 0.21, 0.35, 0.32, 0.007 +20020201, -0.71, 0.24, -0.31, 0.15, 0.15, 0.007 +20020204, -2.37, 0.58, 0.16, 1.42, 1.04, 0.007 +20020205, -0.35, 0.10, -0.43, 0.92, 0.35, 0.007 +20020206, -0.78, -0.59, -0.10, 0.85, 0.17, 0.007 +20020207, -0.41, -0.68, 0.99, 0.31, 0.69, 0.007 +20020208, 1.59, -0.14, 0.32, -1.21, -0.66, 0.007 +20020211, 1.33, -0.39, -0.48, 0.10, -0.45, 0.007 +20020212, -0.28, 0.59, -0.49, -0.08, 0.02, 0.007 +20020213, 0.99, -0.04, -0.12, 0.09, -0.09, 0.007 +20020214, -0.24, -0.68, -0.16, 0.61, 0.44, 0.007 +20020215, -1.12, 0.90, 0.15, 0.83, 1.00, 0.007 +20020219, -1.94, 0.30, 0.52, 1.19, 0.82, 0.007 +20020220, 1.33, -0.15, 0.39, 0.36, -0.05, 0.007 +20020221, -1.52, -0.20, 0.70, 0.85, 1.22, 0.007 +20020222, 0.75, 0.39, 0.00, 0.24, 0.55, 0.007 +20020225, 1.66, -1.17, 0.43, 0.10, -0.78, 0.007 +20020226, 0.11, 0.36, 0.11, -0.20, 0.04, 0.007 +20020227, 0.08, 0.22, 0.43, 0.72, 0.47, 0.007 +20020228, -0.31, -0.20, 0.53, 0.55, 0.28, 0.007 +20020301, 2.22, -0.60, -0.40, -0.43, -0.91, 0.007 +20020304, 1.98, -0.33, -0.28, -1.04, -1.10, 0.007 +20020305, -0.54, 0.55, -0.02, -0.57, -0.26, 0.007 +20020306, 1.39, 0.01, 0.30, -0.43, 0.06, 0.007 +20020307, -0.42, 0.63, 0.14, 0.18, -0.06, 0.007 +20020308, 0.72, 0.27, -0.12, -0.90, -0.59, 0.007 +20020311, 0.29, 0.14, -0.04, -0.27, -0.18, 0.007 +20020312, -0.28, 0.27, -0.13, 1.07, 0.74, 0.007 +20020313, -0.91, 0.43, 0.03, 0.37, 0.62, 0.007 +20020314, -0.05, 0.45, -0.06, -0.06, 0.31, 0.007 +20020315, 1.06, -0.95, 0.31, 0.19, 0.01, 0.007 +20020318, 0.09, 0.62, 0.05, -0.46, -0.13, 0.007 +20020319, 0.34, 0.06, -0.14, 0.53, 0.34, 0.007 +20020320, -1.50, 0.61, 0.65, 0.63, 0.85, 0.007 +20020321, 0.31, 0.92, -0.33, -1.15, -0.33, 0.007 +20020322, -0.42, -0.11, 0.27, 0.22, 0.34, 0.007 +20020325, -1.45, 0.53, -0.02, 0.58, 0.54, 0.007 +20020326, 0.60, 0.42, -0.13, 0.79, 0.38, 0.007 +20020327, 0.55, 0.16, 0.64, 0.16, 0.26, 0.007 +20020328, 0.29, -0.09, 0.31, -0.80, -0.36, 0.007 +20020401, -0.12, -0.21, -0.11, -0.40, -0.31, 0.007 +20020402, -0.92, 0.39, 0.19, 1.29, 0.85, 0.007 +20020403, -0.98, 0.34, 0.42, 0.13, 0.18, 0.007 +20020404, 0.12, 0.08, 0.52, 0.36, 0.22, 0.007 +20020405, -0.26, 0.04, 0.83, 0.47, 0.47, 0.007 +20020408, 0.35, 0.51, 0.14, 0.04, 0.15, 0.007 +20020409, -0.60, 0.64, 0.69, 0.85, 0.98, 0.007 +20020410, 1.15, 0.50, -0.29, 0.41, 0.25, 0.007 +20020411, -2.22, 0.92, 0.79, 0.29, 1.07, 0.007 +20020412, 0.84, 1.07, 0.12, -0.88, -0.38, 0.007 +20020415, -0.67, 0.41, -0.08, -0.19, -0.19, 0.007 +20020416, 2.26, -0.40, 0.59, -0.80, -0.95, 0.007 +20020417, -0.24, -0.36, 0.30, -0.39, 0.02, 0.007 +20020418, -0.14, 0.37, -0.61, 0.32, 0.25, 0.007 +20020419, 0.07, -0.14, 0.23, 0.54, 0.35, 0.007 +20020422, -1.50, 0.60, -0.53, 0.69, 0.35, 0.007 +20020423, -0.52, 0.42, 0.46, 0.64, 0.31, 0.007 +20020424, -0.66, 0.05, 0.47, -0.18, 0.37, 0.007 +20020425, -0.11, 0.14, 0.00, 0.50, 0.32, 0.007 +20020426, -1.41, 0.08, 0.28, 0.98, 0.91, 0.007 +20020429, -0.88, 0.71, -0.58, 0.69, 0.22, 0.007 +20020430, 1.20, 0.59, 0.11, -0.81, 0.01, 0.007 +20020501, 0.74, -0.81, 0.70, 0.63, 0.27, 0.007 +20020502, -0.21, 0.68, 0.30, 1.09, 0.93, 0.007 +20020503, -0.96, 0.81, 0.73, 0.11, 0.89, 0.007 +20020506, -1.84, 0.11, 0.91, 0.61, 0.72, 0.007 +20020507, -0.36, -0.60, 0.81, 0.44, 0.42, 0.007 +20020508, 3.57, -1.53, -1.99, -2.02, -2.64, 0.007 +20020509, -1.43, -0.14, 0.70, 0.59, 0.71, 0.007 +20020510, -1.64, 0.04, 0.51, 0.39, 0.78, 0.007 +20020513, 1.75, -0.56, -1.02, 0.03, -0.90, 0.007 +20020514, 2.20, 0.18, -1.16, -0.69, -1.43, 0.007 +20020515, -0.40, 0.48, 0.60, -0.41, -0.04, 0.007 +20020516, 0.35, -1.04, -0.78, 0.56, -0.24, 0.007 +20020517, 0.69, -0.34, -0.44, 0.08, -0.17, 0.007 +20020520, -1.28, 0.11, 1.04, 0.08, 0.42, 0.007 +20020521, -1.16, -0.25, 0.26, 0.18, 0.38, 0.007 +20020522, 0.37, -0.70, -0.13, 0.34, 0.11, 0.007 +20020523, 1.05, 0.04, -0.07, -0.26, -0.07, 0.007 +20020524, -1.17, -0.19, 0.66, 0.08, 0.48, 0.007 +20020528, -0.75, 0.59, -0.41, -0.26, -0.12, 0.007 +20020529, -0.67, -0.16, 0.22, 0.51, 0.77, 0.007 +20020530, -0.24, 0.13, -0.06, -0.48, 0.47, 0.007 +20020531, 0.19, -0.07, 0.22, 0.58, 0.57, 0.007 +20020603, -2.43, -0.44, 1.30, 0.18, 0.91, 0.006 +20020604, -0.11, -0.12, -0.71, -0.28, -0.70, 0.006 +20020605, 0.83, -0.41, -0.31, 0.69, 0.22, 0.006 +20020606, -1.91, -0.09, 0.98, 0.31, 0.42, 0.006 +20020607, 0.08, 0.80, -0.10, -0.01, 0.43, 0.006 +20020610, 0.21, -0.36, -0.29, 0.42, 0.00, 0.006 +20020611, -1.70, 0.61, 0.43, 0.50, 0.61, 0.006 +20020612, 0.54, -0.40, -1.34, 0.71, -0.39, 0.006 +20020613, -1.10, -0.24, 0.42, -0.13, 0.39, 0.006 +20020614, -0.07, 0.62, -0.70, 0.06, -0.20, 0.006 +20020617, 2.77, -0.34, -0.94, -0.11, -0.58, 0.006 +20020618, 0.05, -0.23, 0.59, 0.20, 0.19, 0.006 +20020619, -1.63, 0.06, 0.50, 0.72, 1.05, 0.006 +20020620, -1.37, 1.13, -0.13, 0.79, 0.91, 0.006 +20020621, -1.53, 1.58, 1.37, -0.48, 0.75, 0.006 +20020624, 0.18, -0.29, -0.52, 0.07, -0.73, 0.006 +20020625, -1.69, 0.59, 0.06, 0.41, 0.18, 0.006 +20020626, -0.27, 0.73, -1.09, 1.11, 0.07, 0.006 +20020627, 1.68, 0.07, -1.18, -0.07, -0.55, 0.006 +20020628, 0.12, 0.60, 1.83, -1.36, -0.38, 0.006 +20020701, -2.32, -0.43, 0.36, 1.81, 0.35, 0.007 +20020702, -2.27, -0.95, 0.02, 1.54, 0.19, 0.007 +20020703, 0.41, -1.38, -0.16, -0.96, 0.13, 0.007 +20020705, 3.55, -0.98, -0.73, -0.97, 0.29, 0.007 +20020708, -1.21, -0.14, 0.33, 1.13, -0.15, 0.007 +20020709, -2.36, 1.39, 1.00, -0.12, 0.41, 0.007 +20020710, -3.03, 1.14, -0.19, 0.16, 0.01, 0.007 +20020711, 0.56, -1.42, -0.50, -1.09, 0.43, 0.007 +20020712, -0.55, -0.10, -0.53, -0.84, -0.35, 0.007 +20020715, -0.45, -0.74, -0.45, -0.65, 0.67, 0.007 +20020716, -1.50, 1.21, -0.91, -0.96, -0.39, 0.007 +20020717, 0.63, -0.02, -0.31, -0.36, -0.14, 0.007 +20020718, -2.70, -0.31, 0.98, 0.28, 0.44, 0.007 +20020719, -3.38, 1.04, 0.10, -0.50, -0.53, 0.007 +20020722, -3.18, 1.44, 0.42, -0.29, -0.08, 0.007 +20020723, -2.86, -0.73, -1.59, 2.25, -0.08, 0.007 +20020724, 5.43, -1.93, -1.66, 1.31, -0.38, 0.007 +20020725, -0.52, 0.47, -0.08, 3.05, -0.57, 0.007 +20020726, 1.49, -0.59, 0.23, 0.61, -0.75, 0.007 +20020729, 5.39, -1.03, -0.13, -1.19, -0.23, 0.007 +20020730, 0.42, -0.57, -0.02, -1.06, -0.29, 0.007 +20020731, 0.65, -2.59, 0.04, 1.29, 0.28, 0.007 +20020801, -2.68, 1.83, 1.03, 0.44, -0.34, 0.006 +20020802, -2.36, -0.53, -0.68, 0.73, 0.05, 0.006 +20020805, -3.34, 1.09, 0.51, 1.31, -0.11, 0.006 +20020806, 3.03, 0.18, -0.51, -1.00, -0.01, 0.006 +20020807, 1.81, -1.19, -0.40, 0.00, -0.12, 0.006 +20020808, 3.05, -1.57, -0.53, -0.27, 0.13, 0.006 +20020809, 0.30, -0.58, 0.05, 0.62, -0.57, 0.006 +20020812, -0.43, 0.46, -0.15, 0.28, -0.48, 0.006 +20020813, -2.15, -0.31, 0.54, 0.58, -0.10, 0.006 +20020814, 3.76, -0.99, -0.91, -0.24, 0.41, 0.006 +20020815, 1.17, -1.08, 0.62, 0.02, -0.53, 0.006 +20020816, 0.06, 1.19, -0.14, -1.11, 0.44, 0.006 +20020819, 2.17, -0.88, -0.05, -0.32, 0.34, 0.006 +20020820, -1.30, 0.54, 0.83, -0.26, -0.34, 0.006 +20020821, 1.36, 0.61, 0.35, -1.37, 0.30, 0.006 +20020822, 1.32, -0.50, -0.32, -0.38, -0.21, 0.006 +20020823, -2.25, 0.28, -0.01, 0.94, -0.52, 0.006 +20020826, 0.83, 0.74, 0.40, -0.23, 0.69, 0.006 +20020827, -1.55, -0.93, 0.94, 0.81, -0.09, 0.006 +20020828, -1.79, -0.19, 0.27, 0.82, -0.41, 0.006 +20020829, 0.21, 0.75, -0.44, -1.15, -0.02, 0.006 +20020830, -0.28, -0.33, 0.88, 0.75, -0.05, 0.006 +20020903, -3.95, 1.16, 0.62, 0.54, -0.10, 0.007 +20020904, 1.83, 0.62, -0.13, -0.40, 0.30, 0.007 +20020905, -1.62, -0.48, 0.09, 1.00, -0.35, 0.007 +20020906, 1.82, 0.53, 0.14, -1.13, 0.14, 0.007 +20020909, 0.92, -0.67, -0.52, 0.27, -0.49, 0.007 +20020910, 0.66, -0.15, -0.24, -0.51, 0.32, 0.007 +20020911, -0.03, -0.17, 0.28, -0.32, 0.26, 0.007 +20020912, -2.37, 0.87, 0.35, 0.22, -0.18, 0.007 +20020913, 0.38, 0.48, 0.04, 0.24, -0.14, 0.007 +20020916, 0.02, -0.78, -0.30, 1.07, -0.49, 0.007 +20020917, -1.91, 0.26, 0.60, -0.24, -0.23, 0.007 +20020918, -0.45, -0.33, 0.20, 0.34, -0.57, 0.007 +20020919, -2.96, 0.24, 0.33, 0.65, -0.10, 0.007 +20020920, 0.19, 0.00, 0.27, -0.20, 0.40, 0.007 +20020923, -1.48, -0.77, 0.09, 1.41, -0.42, 0.007 +20020924, -1.54, 0.91, -0.62, -0.35, -0.17, 0.007 +20020925, 2.44, -0.18, -1.11, -0.74, 0.20, 0.007 +20020926, 1.74, -0.45, 1.02, 1.22, -0.09, 0.007 +20020927, -2.98, 0.71, 0.64, -0.43, -0.25, 0.007 +20020930, -1.28, 1.51, -0.40, 0.77, -0.51, 0.007 +20021001, 3.56, -2.21, -0.50, 0.06, 0.67, 0.006 +20021002, -2.31, 0.58, 0.34, 0.55, -0.27, 0.006 +20021003, -1.14, 0.50, -0.16, 0.63, 0.42, 0.006 +20021004, -2.25, 0.07, -0.20, 0.47, -0.09, 0.006 +20021007, -2.00, -0.56, -0.36, 0.63, 0.07, 0.006 +20021008, 1.54, -0.74, -1.81, 1.44, -1.25, 0.006 +20021009, -2.77, -0.44, -1.05, 0.19, -0.16, 0.006 +20021010, 3.41, -1.64, 0.28, -1.29, 0.52, 0.006 +20021011, 3.74, -1.54, -0.30, -0.72, 0.36, 0.006 +20021014, 0.77, 0.03, -1.19, 0.48, -0.44, 0.006 +20021015, 4.57, -1.06, 0.22, -1.42, 0.13, 0.006 +20021016, -2.42, 0.21, 0.20, 0.66, -0.99, 0.006 +20021017, 2.40, 0.82, -0.61, -0.70, 0.50, 0.006 +20021018, 0.49, -0.21, -0.48, 0.04, -0.23, 0.006 +20021021, 1.65, -0.62, 0.56, -0.80, 0.69, 0.006 +20021022, -1.11, -0.43, 0.63, -0.29, -0.04, 0.006 +20021023, 0.76, 0.80, 0.20, -1.01, 0.45, 0.006 +20021024, -1.44, 0.73, 0.28, -0.80, 0.24, 0.006 +20021025, 1.69, -0.08, -0.48, -0.79, 0.22, 0.006 +20021028, -0.83, 0.03, -0.26, -0.10, 0.25, 0.006 +20021029, -0.87, 0.95, -0.18, 0.65, -0.52, 0.006 +20021030, 1.03, 0.37, -0.61, -0.60, 0.58, 0.006 +20021031, -0.41, 0.32, 0.36, -0.67, -0.12, 0.006 +20021101, 1.73, 0.71, -0.53, -0.86, 0.78, 0.006 +20021104, 0.79, 0.25, -0.54, -1.75, 0.15, 0.006 +20021105, 0.63, -0.94, 0.26, -0.01, -0.05, 0.006 +20021106, 0.98, 0.61, 0.41, -1.15, 0.47, 0.006 +20021107, -2.22, 0.28, -0.30, 1.05, -0.53, 0.006 +20021108, -0.92, -0.13, 0.28, 0.29, -0.09, 0.006 +20021111, -2.09, -0.32, 0.48, 1.11, -0.69, 0.006 +20021112, 0.83, 0.48, -0.25, -1.52, 0.55, 0.006 +20021113, 0.02, 0.40, -0.30, -0.49, 0.18, 0.006 +20021114, 2.43, 0.04, -0.90, -0.58, 0.56, 0.006 +20021115, 0.61, -0.73, -0.11, -0.18, 0.10, 0.006 +20021118, -1.00, 0.27, -0.17, -0.37, 0.36, 0.006 +20021119, -0.48, -0.24, 0.27, 0.60, 0.14, 0.006 +20021120, 1.93, 0.37, -0.94, -0.87, 0.35, 0.006 +20021121, 2.16, -0.17, 0.06, -1.91, 0.70, 0.006 +20021122, -0.22, 0.79, 0.24, -0.33, 0.16, 0.006 +20021125, 0.36, 0.87, 0.06, -1.01, 0.81, 0.006 +20021126, -2.03, 0.66, 0.58, 0.68, 0.26, 0.006 +20021127, 2.78, 0.02, -0.14, -0.93, 0.51, 0.006 +20021129, -0.32, -0.52, 0.53, -0.41, 0.14, 0.006 +20021202, -0.10, 0.67, -0.12, 0.07, 0.05, 0.005 +20021203, -1.54, 0.08, -0.72, 2.02, -0.61, 0.005 +20021204, -0.38, -0.36, 0.50, 1.43, -0.86, 0.005 +20021205, -1.11, 0.29, 0.70, -0.01, 0.00, 0.005 +20021206, 0.61, -0.10, -0.10, 0.24, 0.10, 0.005 +20021209, -2.26, -0.20, 0.30, 1.86, -0.88, 0.005 +20021210, 1.44, 0.27, -0.13, -0.79, 0.36, 0.005 +20021211, 0.10, -0.17, 0.31, -0.40, 0.22, 0.005 +20021212, -0.27, 0.61, 0.30, -0.13, 0.04, 0.005 +20021213, -1.37, -0.37, 0.41, 1.07, -0.16, 0.005 +20021216, 2.21, -0.61, -0.34, -0.36, 0.25, 0.005 +20021217, -0.76, -0.15, 0.43, -0.69, 0.20, 0.005 +20021218, -1.34, -0.38, 0.07, 0.92, -0.58, 0.005 +20021219, -0.70, 0.54, 0.38, 0.47, 0.36, 0.005 +20021220, 1.23, -0.44, -0.40, 0.36, -0.03, 0.005 +20021223, 0.24, 0.39, -0.06, -0.68, 0.14, 0.005 +20021224, -0.52, 0.20, 0.05, 0.19, -0.10, 0.005 +20021226, -0.19, 0.45, 0.09, -0.01, 0.19, 0.005 +20021227, -1.53, 0.39, 0.01, 0.27, -0.01, 0.005 +20021230, 0.34, -0.80, 0.06, 0.94, -0.51, 0.005 +20021231, 0.12, 0.17, 0.57, -0.50, 0.16, 0.005 +20030102, 3.14, -0.91, -0.31, -0.58, 0.50, 0.005 +20030103, -0.11, -0.41, 0.04, -0.28, 0.13, 0.005 +20030106, 2.13, -0.66, -0.41, -0.54, 0.77, 0.005 +20030107, -0.63, 0.11, -0.17, -0.96, 0.21, 0.005 +20030108, -1.34, 0.22, 0.43, 0.34, -0.54, 0.005 +20030109, 1.89, -0.16, -0.48, -0.80, 0.30, 0.005 +20030110, 0.04, 0.08, 0.18, -1.05, 0.22, 0.005 +20030113, -0.12, 0.15, 0.19, -0.14, -0.13, 0.005 +20030114, 0.55, -0.01, -0.17, -0.52, 0.36, 0.005 +20030115, -1.32, 0.79, 0.56, 0.14, -0.25, 0.005 +20030116, -0.34, 0.28, 0.18, 0.75, -0.15, 0.005 +20030117, -1.40, -0.21, 0.70, 0.99, -0.62, 0.005 +20030121, -1.53, 0.34, -0.36, 0.02, -0.07, 0.005 +20030122, -0.94, 0.38, -0.50, 0.19, 0.00, 0.005 +20030123, 0.99, -0.11, -0.65, -1.07, -0.05, 0.005 +20030124, -2.78, 0.65, 0.57, 0.68, -0.22, 0.005 +20030127, -1.65, 0.03, -0.13, 0.60, -0.21, 0.005 +20030128, 1.26, 0.01, -0.44, -0.23, 0.43, 0.005 +20030129, 0.63, -0.26, -0.14, -0.11, 0.12, 0.005 +20030130, -2.13, 0.58, -0.36, 0.83, -0.13, 0.005 +20030131, 1.28, -0.19, 0.23, 1.02, 0.25, 0.005 +20030203, 0.37, -0.79, -0.07, 0.48, 0.01, 0.005 +20030204, -1.34, 1.00, -0.19, 0.92, 0.15, 0.005 +20030205, -0.49, 0.13, 0.05, -0.29, 0.07, 0.005 +20030206, -0.64, 0.06, 0.13, 0.29, -0.06, 0.005 +20030207, -1.06, -0.48, -0.24, 0.11, 0.07, 0.005 +20030210, 0.69, 0.00, 0.07, -0.21, 0.38, 0.005 +20030211, -0.71, 0.29, -0.31, -0.30, 0.08, 0.005 +20030212, -1.25, 0.10, 0.10, 0.15, -0.16, 0.005 +20030213, -0.26, -0.16, -0.25, 0.34, 0.11, 0.005 +20030214, 1.90, -0.86, -0.65, -0.08, -0.06, 0.005 +20030218, 1.97, -0.46, -0.13, -1.03, 0.12, 0.005 +20030219, -0.70, -0.30, 0.03, 0.09, -0.16, 0.005 +20030220, -0.83, 0.84, -0.15, -0.26, -0.07, 0.005 +20030221, 1.31, -0.09, -0.07, 0.26, -0.44, 0.005 +20030224, -1.78, 0.29, -0.11, 0.37, -0.29, 0.005 +20030225, 0.70, 0.07, -0.19, 0.49, -0.17, 0.005 +20030226, -1.22, 0.34, 0.45, 0.29, -0.28, 0.005 +20030227, 1.15, -0.28, -0.14, -0.17, -0.12, 0.005 +20030228, 0.41, -0.66, 0.22, -0.45, 0.25, 0.005 +20030303, -0.67, 0.25, 0.42, 0.15, 0.04, 0.005 +20030304, -1.44, 0.79, -0.53, 0.37, -0.01, 0.005 +20030305, 0.78, -0.95, -0.02, 0.19, 0.04, 0.005 +20030306, -0.84, 0.19, 0.03, 0.20, -0.34, 0.005 +20030307, 0.76, -0.68, -0.16, 0.27, -0.55, 0.005 +20030310, -2.36, 0.77, 0.10, 0.01, -0.04, 0.005 +20030311, -0.81, 0.65, -0.70, 0.49, 0.35, 0.005 +20030312, 0.32, -0.54, -0.41, 0.34, 0.21, 0.005 +20030313, 3.39, -1.00, -0.61, -1.47, 0.11, 0.005 +20030314, 0.13, -0.41, 0.14, 0.06, -0.21, 0.005 +20030317, 3.41, -0.83, -0.25, -1.05, 0.44, 0.005 +20030318, 0.44, 0.41, -0.65, -0.34, 0.01, 0.005 +20030319, 0.72, -0.51, -0.23, 0.80, -0.49, 0.005 +20030320, 0.28, 0.20, 0.37, -0.35, 0.23, 0.005 +20030321, 2.19, -0.78, -0.05, 0.38, -0.01, 0.005 +20030324, -3.36, 1.25, 0.18, 0.74, -0.12, 0.005 +20030325, 1.21, -0.02, -0.03, -0.32, -0.07, 0.005 +20030326, -0.55, -0.24, -0.28, -0.02, 0.20, 0.005 +20030327, -0.09, 0.68, -0.01, 0.27, -0.28, 0.005 +20030328, -0.48, 0.38, 0.22, 0.42, 0.01, 0.005 +20030331, -1.65, 0.81, 0.42, 0.54, -0.21, 0.005 +20030401, 1.12, -0.21, 0.24, 0.11, -0.16, 0.005 +20030402, 2.60, -0.59, -0.86, -1.23, 0.09, 0.005 +20030403, -0.49, 0.33, 0.02, -0.44, 0.06, 0.005 +20030404, 0.15, -0.65, 0.39, 0.41, -0.01, 0.005 +20030407, 0.18, 0.52, 0.57, -0.45, 0.27, 0.005 +20030408, -0.24, -0.23, 0.09, 0.35, -0.58, 0.005 +20030409, -1.28, 0.64, 0.77, 0.07, 0.00, 0.005 +20030410, 0.52, -0.31, -0.25, 0.31, 0.09, 0.005 +20030411, -0.32, 0.02, -0.05, -0.26, 0.10, 0.005 +20030414, 1.88, -0.43, 0.00, -0.30, 0.27, 0.005 +20030415, 0.62, 0.03, -0.39, 0.05, -0.22, 0.005 +20030416, -1.11, 0.52, 0.18, -0.80, 0.65, 0.005 +20030417, 1.52, -0.03, -0.03, -0.73, 0.15, 0.005 +20030421, -0.11, 0.47, 0.12, -0.48, -0.01, 0.005 +20030422, 2.07, -0.77, 0.23, -0.49, 0.02, 0.005 +20030423, 0.89, -0.01, 0.31, -0.43, 0.14, 0.005 +20030424, -0.81, 0.51, -0.23, 0.30, -0.19, 0.005 +20030425, -1.30, 0.62, -0.11, 0.58, -0.14, 0.005 +20030428, 1.76, -0.12, -0.11, -0.33, 0.33, 0.005 +20030429, 0.34, -0.19, -0.20, -0.36, 0.03, 0.005 +20030430, 0.03, 0.78, 0.25, -0.12, 0.08, 0.005 +20030501, -0.03, 0.25, -0.26, -0.42, -0.05, 0.004 +20030502, 1.56, 0.46, -0.49, -0.58, 0.12, 0.004 +20030505, -0.19, 0.80, -0.38, -0.66, 0.19, 0.004 +20030506, 0.80, -0.20, 0.04, -0.17, -0.05, 0.004 +20030507, -0.46, 0.09, 0.58, 0.47, -0.26, 0.004 +20030508, -0.99, 0.48, 0.14, 0.51, -0.06, 0.004 +20030509, 1.39, -0.01, -0.22, -0.57, 0.45, 0.004 +20030512, 1.25, -0.13, -0.10, -0.86, 0.26, 0.004 +20030513, -0.23, 0.57, 0.30, -0.19, 0.10, 0.004 +20030514, -0.23, 0.34, 0.01, -0.47, 0.15, 0.004 +20030515, 0.74, -0.13, -0.14, -0.59, 0.43, 0.004 +20030516, -0.31, -1.28, 1.01, -0.57, 0.28, 0.004 +20030519, -2.30, 0.72, 0.04, 0.44, 0.00, 0.004 +20030520, -0.12, 0.08, -0.11, 0.28, 0.13, 0.004 +20030521, 0.41, -0.07, 0.31, 0.17, 0.24, 0.004 +20030522, 0.96, -0.06, -0.07, -0.76, 0.13, 0.004 +20030523, 0.26, 0.42, 0.40, -0.53, 0.23, 0.004 +20030527, 1.95, 0.26, -1.05, -1.05, 0.43, 0.004 +20030528, 0.22, 0.56, -0.41, -0.21, 0.13, 0.004 +20030529, -0.26, 0.95, 0.07, -0.51, 0.35, 0.004 +20030530, 1.53, 0.30, 0.10, -0.06, -0.20, 0.004 +20030602, 0.39, -0.17, 0.75, -0.04, -0.19, 0.005 +20030603, 0.39, -0.09, -0.57, 0.15, 0.02, 0.005 +20030604, 1.56, 0.10, -0.04, -0.83, 0.41, 0.005 +20030605, 0.55, 0.87, -0.74, -0.73, -0.10, 0.005 +20030606, -0.33, -0.21, -0.30, 0.35, 0.05, 0.005 +20030609, -1.31, -0.32, 0.18, 0.98, -0.18, 0.005 +20030610, 0.95, 0.40, 0.10, -0.07, -0.19, 0.005 +20030611, 1.29, -0.25, 0.38, -0.14, -0.24, 0.005 +20030612, 0.18, 0.15, 0.34, -0.52, 0.45, 0.005 +20030613, -1.02, -0.21, 0.12, 0.60, -0.30, 0.005 +20030616, 2.15, -0.49, -0.48, -0.02, -0.25, 0.005 +20030617, 0.13, 0.15, -0.12, -0.26, -0.27, 0.005 +20030618, -0.15, 0.23, -0.23, -0.34, 0.36, 0.005 +20030619, -1.49, 0.04, 0.74, 0.54, 0.24, 0.005 +20030620, 0.05, -0.16, 0.10, 0.27, -0.17, 0.005 +20030623, -1.52, -0.61, 0.23, 1.09, -0.16, 0.005 +20030624, 0.19, 0.13, 0.13, 0.50, -0.10, 0.005 +20030625, -0.60, 1.16, -0.08, -0.38, -0.04, 0.005 +20030626, 1.12, 0.34, -0.51, -0.63, 0.20, 0.005 +20030627, -0.84, 0.65, 0.19, 0.05, -0.01, 0.005 +20030630, -0.17, -0.05, 0.43, -0.15, 0.12, 0.005 +20030701, 0.73, -0.42, -0.15, 0.07, -0.04, 0.003 +20030702, 1.28, 0.89, 0.05, -0.98, 0.57, 0.003 +20030703, -0.72, 0.26, -0.08, 0.02, -0.23, 0.003 +20030707, 1.91, -0.14, 0.27, -1.18, 0.73, 0.003 +20030708, 0.51, 1.31, -0.04, -0.50, 0.20, 0.003 +20030709, -0.34, 0.97, 0.26, -1.06, 0.77, 0.003 +20030710, -1.33, -0.07, -0.22, 0.58, -0.41, 0.003 +20030711, 0.92, 0.11, -0.06, -0.25, 0.04, 0.003 +20030714, 0.73, 0.24, 0.13, -0.76, 0.10, 0.003 +20030715, -0.41, 0.02, -0.04, -0.16, -0.01, 0.003 +20030716, -0.64, 0.17, -0.27, 0.53, -0.26, 0.003 +20030717, -1.45, -1.22, -0.40, 1.16, -0.88, 0.003 +20030718, 1.08, -0.15, 0.02, -0.02, 0.45, 0.003 +20030721, -1.42, 0.03, -0.38, 0.23, -0.24, 0.003 +20030722, 0.97, 0.31, 0.34, -0.75, 0.83, 0.003 +20030723, 0.18, 0.48, -1.00, 0.11, -0.50, 0.003 +20030724, -0.65, 0.41, 0.38, -0.17, -0.14, 0.003 +20030725, 1.51, -0.72, -0.24, -0.20, -0.06, 0.003 +20030728, -0.02, 0.99, 0.36, -0.75, 0.58, 0.003 +20030729, -0.57, 0.57, 0.02, 0.02, 0.07, 0.003 +20030730, -0.18, 0.16, -0.61, 0.80, -0.61, 0.003 +20030731, 0.32, 0.25, 0.40, -0.73, 0.71, 0.003 +20030801, -1.06, -0.52, -0.06, -0.09, 0.19, 0.003 +20030804, 0.11, -0.70, -0.31, 0.46, -0.32, 0.003 +20030805, -1.71, 0.42, 0.02, 0.56, -0.39, 0.003 +20030806, 0.02, -0.86, 0.46, 0.83, -0.70, 0.003 +20030807, 0.57, -0.55, -0.47, 0.61, -0.47, 0.003 +20030808, 0.33, -0.33, 0.15, 0.41, -0.24, 0.003 +20030811, 0.43, 0.67, -0.03, -0.53, 0.23, 0.003 +20030812, 1.09, 0.50, 0.05, -0.58, 0.33, 0.003 +20030813, -0.50, 0.69, 0.06, -0.35, 0.21, 0.003 +20030814, 0.62, 0.11, 0.44, -0.50, 0.52, 0.003 +20030815, 0.10, 0.14, -0.14, 0.09, -0.13, 0.003 +20030818, 1.03, 0.73, 0.09, -0.97, 0.53, 0.003 +20030819, 0.43, 1.04, 0.61, -0.63, 0.42, 0.003 +20030820, -0.14, 0.36, 0.06, 0.09, 0.45, 0.003 +20030821, 0.47, 0.58, 0.42, -0.80, 0.62, 0.003 +20030822, -1.06, -0.66, 0.12, -0.28, 0.11, 0.003 +20030825, -0.04, -0.15, -0.31, 0.41, -0.37, 0.003 +20030826, 0.29, 0.18, 0.18, -0.05, 0.13, 0.003 +20030827, 0.17, 0.79, 0.06, -0.56, 0.50, 0.003 +20030828, 0.70, 0.28, 0.22, -0.28, 0.20, 0.003 +20030829, 0.53, -0.25, 0.33, -0.29, 0.34, 0.003 +20030902, 1.40, 0.48, 0.02, 0.18, 0.08, 0.004 +20030903, 0.42, 0.30, 0.14, -0.08, -0.05, 0.004 +20030904, 0.22, 0.31, -0.17, -0.71, 0.40, 0.004 +20030905, -0.62, -0.08, 0.20, -0.15, 0.47, 0.004 +20030908, 1.07, 0.49, -0.12, -0.65, 0.47, 0.004 +20030909, -0.79, 0.26, -0.22, -0.19, 0.17, 0.004 +20030910, -1.37, -0.62, -0.60, 1.21, -1.02, 0.004 +20030911, 0.62, 0.57, 0.03, -0.13, 0.14, 0.004 +20030912, 0.23, 0.13, 0.16, 0.03, 0.17, 0.004 +20030915, -0.35, 0.23, -0.08, 0.40, -0.28, 0.004 +20030916, 1.40, 0.05, 0.06, -0.85, 0.31, 0.004 +20030917, -0.26, 0.22, 0.18, -0.19, 0.23, 0.004 +20030918, 1.25, -0.52, 0.25, -0.22, 0.21, 0.004 +20030919, -0.23, 0.46, 0.02, 0.02, 0.32, 0.004 +20030922, -1.30, 0.18, 0.14, 0.34, 0.04, 0.004 +20030923, 0.65, 0.50, -0.10, -0.43, 0.06, 0.004 +20030924, -1.88, -0.04, 0.08, 1.27, -0.59, 0.004 +20030925, -0.81, -1.65, -0.21, 0.62, -0.53, 0.004 +20030926, -0.84, -1.21, 0.04, 0.75, -0.26, 0.004 +20030929, 0.98, 0.41, 0.02, -0.52, 0.24, 0.004 +20030930, -0.96, 0.06, 0.14, 0.51, -0.19, 0.004 +20031001, 2.16, 0.38, 0.09, 0.30, -0.54, 0.003 +20031002, 0.31, 0.19, 0.07, -0.44, 0.20, 0.003 +20031003, 1.02, 0.61, -0.01, -0.83, 0.41, 0.003 +20031006, 0.49, 0.38, 0.36, -0.44, 0.37, 0.003 +20031007, 0.51, 0.30, 0.10, -0.25, 0.34, 0.003 +20031008, -0.48, -0.30, 0.19, -0.05, 0.19, 0.003 +20031009, 0.55, 0.32, 0.38, -0.34, 0.15, 0.003 +20031010, -0.08, -0.33, 0.41, -0.16, 0.24, 0.003 +20031013, 0.81, 0.84, 0.09, -0.14, 0.16, 0.003 +20031014, 0.44, 0.46, 0.16, -0.32, 0.00, 0.003 +20031015, -0.36, -0.32, -0.05, 0.10, 0.11, 0.003 +20031016, 0.35, 0.08, 0.04, -0.18, 0.10, 0.003 +20031017, -1.11, -0.44, 0.05, 0.92, -0.23, 0.003 +20031020, 0.41, -0.18, -0.25, 0.22, -0.41, 0.003 +20031021, 0.24, 0.49, -0.31, -0.72, 0.30, 0.003 +20031022, -1.52, -0.60, -0.02, 0.74, -0.23, 0.003 +20031023, 0.22, -0.70, -0.22, 1.13, -0.50, 0.003 +20031024, -0.45, -0.34, -0.01, 0.21, 0.00, 0.003 +20031027, 0.40, 1.12, 0.30, -0.38, 0.36, 0.003 +20031028, 1.59, 0.40, -0.22, -0.95, 0.09, 0.003 +20031029, 0.28, 0.83, 0.32, -0.18, 0.27, 0.003 +20031030, -0.11, -0.12, 0.27, -0.06, 0.42, 0.003 +20031031, 0.28, -0.53, -0.09, 0.26, -0.32, 0.003 +20031103, 0.93, 0.69, 0.41, -0.61, 0.32, 0.004 +20031104, -0.45, 0.72, 0.41, -0.37, 0.50, 0.004 +20031105, -0.04, 0.18, -0.09, 0.02, 0.26, 0.004 +20031106, 0.58, 0.08, 0.10, -0.40, 0.34, 0.004 +20031107, -0.33, 0.41, 0.30, 0.01, 0.39, 0.004 +20031110, -0.74, -0.88, -0.02, 0.96, -0.50, 0.004 +20031111, -0.21, -0.64, -0.10, 0.48, -0.35, 0.004 +20031112, 1.33, 0.89, -0.21, -0.51, 0.46, 0.004 +20031113, 0.03, 0.21, -0.21, 0.39, -0.32, 0.004 +20031114, -0.83, -0.60, -0.07, 1.08, -0.30, 0.004 +20031117, -0.72, -0.62, -0.19, 0.36, -0.40, 0.004 +20031118, -0.87, 0.13, 0.09, 0.53, -0.29, 0.004 +20031119, 0.76, 0.00, -0.02, -0.19, -0.04, 0.004 +20031120, -0.77, 0.26, 0.03, 0.14, -0.01, 0.004 +20031121, 0.21, 0.22, 0.59, -0.40, 0.37, 0.004 +20031124, 1.71, 0.66, -0.03, -0.71, 0.31, 0.004 +20031125, 0.31, 0.38, 0.60, -0.05, 0.27, 0.004 +20031126, 0.40, -0.06, 0.41, -0.43, 0.42, 0.004 +20031128, 0.11, 0.20, -0.17, -0.29, 0.24, 0.004 +20031201, 1.11, 0.35, -0.12, -0.06, 0.13, 0.004 +20031202, -0.27, 0.18, 0.13, 0.13, 0.11, 0.004 +20031203, -0.34, -1.11, 0.42, 0.31, 0.13, 0.004 +20031204, 0.26, -0.46, -0.23, 0.16, -0.26, 0.004 +20031205, -0.79, -0.05, -0.07, 0.45, -0.25, 0.004 +20031208, 0.65, -0.10, 0.36, 0.23, -0.21, 0.004 +20031209, -0.95, -0.49, 0.19, 0.60, -0.49, 0.004 +20031210, -0.29, -1.03, -0.24, 0.00, -0.23, 0.004 +20031211, 1.34, 1.20, 0.15, -0.71, 0.45, 0.004 +20031212, 0.31, 0.55, 0.30, -0.38, 0.21, 0.004 +20031215, -0.73, -1.32, 0.15, 0.49, -0.09, 0.004 +20031216, 0.50, -0.29, 0.02, 0.43, -0.14, 0.004 +20031217, 0.15, 0.00, -0.10, 0.39, -0.11, 0.004 +20031218, 1.24, 0.23, 0.22, -0.84, 0.58, 0.004 +20031219, -0.04, -0.06, 0.40, -0.15, 0.09, 0.004 +20031222, 0.36, -0.01, 0.46, -0.12, 0.35, 0.004 +20031223, 0.36, 0.62, -0.06, -0.28, 0.23, 0.004 +20031224, -0.18, -0.25, 0.12, -0.20, 0.04, 0.004 +20031226, 0.19, 0.35, 0.06, 0.02, 0.08, 0.004 +20031229, 1.29, 0.32, -0.04, -0.32, 0.10, 0.004 +20031230, 0.05, 0.25, 0.15, -0.10, 0.09, 0.004 +20031231, 0.01, -1.41, 0.02, -0.09, 0.16, 0.004 +20040102, -0.17, 0.81, 0.42, -0.55, 0.61, 0.003 +20040105, 1.20, 0.28, 0.01, -0.73, 0.81, 0.003 +20040106, 0.20, 0.05, 0.18, -0.40, 0.54, 0.003 +20040107, 0.34, 0.51, -0.06, -0.54, 0.22, 0.003 +20040108, 0.45, 0.34, 0.63, -0.93, 0.94, 0.003 +20040109, -0.72, 0.02, 0.20, -0.50, 0.16, 0.003 +20040112, 0.57, 0.81, 0.08, -0.86, 0.80, 0.003 +20040113, -0.51, 0.28, 0.10, 0.25, -0.03, 0.003 +20040114, 0.80, 0.03, 0.41, 0.02, 0.19, 0.003 +20040115, 0.15, -0.06, -0.28, -0.02, 0.13, 0.003 +20040116, 0.72, -0.03, 0.56, -1.37, 0.67, 0.003 +20040120, 0.15, 1.25, 0.58, -0.42, 0.49, 0.003 +20040121, 0.64, -0.82, 0.46, 0.90, -0.71, 0.003 +20040122, -0.32, -0.56, 0.05, 0.49, -0.67, 0.003 +20040123, -0.14, 0.90, -0.27, 0.23, -0.16, 0.003 +20040126, 1.12, -0.23, -0.33, -0.33, 0.16, 0.003 +20040127, -0.96, 0.08, 0.04, 0.79, -0.21, 0.003 +20040128, -1.44, -0.44, -0.44, 0.38, 0.02, 0.003 +20040129, 0.25, -1.04, -0.85, 0.73, -0.92, 0.003 +20040130, -0.15, 0.28, 0.37, -0.56, 0.19, 0.003 +20040202, 0.27, -0.33, -0.26, 0.21, -0.24, 0.003 +20040203, 0.00, -0.14, -0.16, 0.28, -0.18, 0.003 +20040204, -0.97, -1.48, -0.52, 1.55, -1.14, 0.003 +20040205, 0.23, 0.45, 0.25, -0.16, 0.14, 0.003 +20040206, 1.39, 1.02, 0.35, -0.94, 0.88, 0.003 +20040209, -0.10, 0.41, 0.21, -0.14, 0.20, 0.003 +20040210, 0.56, 0.61, 0.14, -0.27, 0.15, 0.003 +20040211, 1.04, -0.37, 0.18, -0.01, -0.05, 0.003 +20040212, -0.46, -0.12, -0.15, 0.43, -0.09, 0.003 +20040213, -0.57, -0.65, -0.18, 0.45, -0.41, 0.003 +20040217, 0.98, 0.47, 0.55, -0.49, 0.11, 0.003 +20040218, -0.39, -0.06, 0.04, -0.05, -0.10, 0.003 +20040219, -0.54, -0.93, -0.07, 0.71, -0.30, 0.003 +20040220, -0.30, -0.16, -0.36, 0.51, -0.35, 0.003 +20040223, -0.51, -1.16, -0.11, 0.84, -0.67, 0.003 +20040224, -0.14, 0.32, -0.27, 0.22, -0.26, 0.003 +20040225, 0.54, 0.51, 0.15, -0.62, 0.37, 0.003 +20040226, 0.29, 0.48, 0.34, -0.41, 0.34, 0.003 +20040227, 0.11, 0.28, 0.36, 0.10, 0.34, 0.003 +20040301, 1.02, 0.52, 0.26, 0.02, 0.35, 0.004 +20040302, -0.59, -0.03, 0.18, 0.14, -0.02, 0.004 +20040303, 0.14, -0.12, -0.20, 0.34, -0.41, 0.004 +20040304, 0.44, 0.74, 0.21, -0.81, 0.43, 0.004 +20040305, 0.24, -0.05, -0.21, 0.50, -0.20, 0.004 +20040308, -0.84, -0.24, 0.23, 0.73, -0.42, 0.004 +20040309, -0.66, -0.42, -0.34, 0.55, -0.57, 0.004 +20040310, -1.50, -0.26, -0.46, 0.53, -0.76, 0.004 +20040311, -1.42, 0.34, -0.13, -0.07, -0.02, 0.004 +20040312, 1.34, 0.99, 0.21, -0.84, 0.60, 0.004 +20040315, -1.56, -1.02, -0.24, 1.02, -0.73, 0.004 +20040316, 0.43, -0.62, -0.12, 0.32, -0.26, 0.004 +20040317, 1.22, 0.70, 0.45, -0.88, 0.84, 0.004 +20040318, -0.20, -0.48, 0.13, 0.07, -0.19, 0.004 +20040319, -1.00, 0.39, 0.26, 0.14, -0.07, 0.004 +20040322, -1.42, -0.61, -0.20, 0.69, -0.65, 0.004 +20040323, -0.09, 0.40, 0.04, 0.45, -0.20, 0.004 +20040324, -0.27, -0.17, -0.14, -0.22, 0.10, 0.004 +20040325, 1.68, 0.59, -0.29, -1.09, 0.72, 0.004 +20040326, 0.00, 0.35, 0.39, -0.18, 0.19, 0.004 +20040329, 1.34, 0.53, -0.21, -0.21, 0.21, 0.004 +20040330, 0.47, 0.48, 0.23, -0.18, 0.09, 0.004 +20040331, 0.00, 0.21, 0.18, 0.39, 0.02, 0.004 +20040401, 0.64, 0.21, 0.00, -0.46, 0.14, 0.004 +20040402, 0.90, 0.61, 0.08, -1.13, 0.81, 0.004 +20040405, 0.79, 0.04, -0.30, -0.50, -0.02, 0.004 +20040406, -0.28, -0.64, 0.21, 0.74, -0.46, 0.004 +20040407, -0.50, 0.89, -0.18, 0.13, -0.08, 0.004 +20040408, -0.14, -0.36, 0.11, -0.70, 0.24, 0.004 +20040412, 0.50, 0.20, -0.29, -0.05, -0.01, 0.004 +20040413, -1.50, -0.65, -0.39, 0.44, -0.31, 0.004 +20040414, -0.21, -0.42, -0.44, -0.16, 0.14, 0.004 +20040415, -0.04, -0.26, -0.38, 1.13, -0.69, 0.004 +20040416, 0.46, 0.05, 0.17, 0.74, -0.56, 0.004 +20040419, 0.22, 0.43, -0.35, -0.52, 0.30, 0.004 +20040420, -1.48, -0.19, 0.13, 0.65, -0.16, 0.004 +20040421, 0.60, 0.46, 0.08, -0.10, 0.23, 0.004 +20040422, 1.44, 0.14, 0.05, 0.01, -0.03, 0.004 +20040423, -0.01, -0.37, -0.08, -0.43, 0.10, 0.004 +20040426, -0.33, -0.07, -0.26, -0.03, 0.38, 0.004 +20040427, 0.13, 0.05, -0.06, 0.59, -0.75, 0.004 +20040428, -1.46, -0.85, -0.13, 0.73, -0.34, 0.004 +20040429, -0.86, -0.77, -0.65, 0.96, -1.00, 0.004 +20040430, -0.66, -0.71, 0.00, 1.25, -0.75, 0.004 +20040503, 0.85, 0.01, -0.40, 0.36, -0.10, 0.003 +20040504, 0.21, 0.43, 0.16, -0.39, 0.30, 0.003 +20040505, 0.27, -0.17, -0.25, 0.05, 0.16, 0.003 +20040506, -0.80, -0.39, -0.21, 0.34, -0.21, 0.003 +20040507, -1.48, -0.81, -0.55, -0.36, 0.03, 0.003 +20040510, -1.29, -0.64, -0.47, 0.50, -0.51, 0.003 +20040511, 0.95, 0.83, 0.15, -0.99, 0.55, 0.003 +20040512, 0.12, -0.14, -0.01, 0.16, -0.18, 0.003 +20040513, -0.08, -0.28, 0.02, -0.12, 0.12, 0.003 +20040514, -0.17, -0.51, -0.03, 0.93, -0.52, 0.003 +20040517, -1.13, -0.39, -0.35, 0.60, -0.64, 0.003 +20040518, 0.76, 0.33, 0.35, -0.36, 0.28, 0.003 +20040519, -0.19, 0.03, 0.47, -0.70, 0.48, 0.003 +20040520, 0.02, -0.10, 0.12, 0.23, -0.35, 0.003 +20040521, 0.44, 0.42, -0.01, -0.11, 0.00, 0.003 +20040524, 0.29, 0.75, 0.57, -0.36, 0.07, 0.003 +20040525, 1.66, 0.58, 0.05, -0.36, 0.20, 0.003 +20040526, 0.29, 0.12, 0.02, -0.39, 0.10, 0.003 +20040527, 0.51, -0.35, -0.09, 0.13, 0.07, 0.003 +20040528, 0.02, -0.05, 0.09, -0.13, 0.11, 0.003 +20040601, 0.14, 0.67, -0.03, -0.02, -0.07, 0.004 +20040602, 0.31, -0.20, -0.15, 0.31, -0.15, 0.004 +20040603, -0.90, -0.87, -0.06, 0.62, -0.66, 0.004 +20040604, 0.57, 0.32, 0.05, -0.45, 0.45, 0.004 +20040607, 1.57, 0.23, 0.33, -0.15, 0.03, 0.004 +20040608, 0.08, -0.19, -0.05, 0.20, -0.01, 0.004 +20040609, -1.04, -0.41, 0.03, 0.87, -0.40, 0.004 +20040610, 0.36, -0.23, 0.39, 0.18, -0.04, 0.004 +20040614, -1.05, -0.66, -0.55, 0.50, -0.35, 0.004 +20040615, 0.71, 1.05, 0.22, -0.27, 0.38, 0.004 +20040616, 0.14, 0.22, 0.06, 0.01, -0.22, 0.004 +20040617, -0.14, 0.09, 0.12, 0.62, -0.36, 0.004 +20040618, 0.19, -0.16, 0.22, -0.06, 0.12, 0.004 +20040621, -0.42, 0.14, 0.16, 0.48, -0.14, 0.004 +20040622, 0.38, 0.15, 0.05, -0.33, 0.43, 0.004 +20040623, 0.90, 0.47, 0.20, -0.58, 0.41, 0.004 +20040624, -0.23, 0.08, 0.15, 0.03, -0.31, 0.004 +20040625, -0.23, 1.24, 0.08, -0.70, 0.32, 0.004 +20040628, -0.25, -0.05, -0.15, 0.46, -0.40, 0.004 +20040629, 0.31, 0.52, -0.04, -0.33, 0.41, 0.004 +20040630, 0.48, 0.13, 0.30, -0.37, 0.20, 0.004 +20040701, -1.06, -0.40, 0.56, 0.69, -0.70, 0.005 +20040702, -0.28, 0.26, 0.37, 0.33, -0.15, 0.005 +20040706, -0.94, -0.71, 1.03, 1.34, -0.57, 0.005 +20040707, 0.15, -0.33, 0.24, 0.16, 0.12, 0.005 +20040708, -0.96, -0.90, 0.27, 0.61, -0.02, 0.005 +20040709, 0.31, 0.16, -0.13, -0.15, 0.21, 0.005 +20040712, 0.04, -0.39, 0.39, 0.63, -0.30, 0.005 +20040713, 0.09, 0.05, 0.14, 0.10, -0.12, 0.005 +20040714, -0.33, -0.26, 0.50, 0.25, -0.28, 0.005 +20040715, -0.32, 0.65, 0.06, -0.05, 0.20, 0.005 +20040716, -0.56, -0.59, 0.65, 0.81, -0.15, 0.005 +20040719, -0.12, -0.16, 0.59, 0.45, 0.16, 0.005 +20040720, 0.83, 0.78, -0.80, -0.60, 0.27, 0.005 +20040721, -1.49, -1.07, 0.75, 1.11, -0.56, 0.005 +20040722, 0.14, -0.56, -0.54, -0.34, -0.03, 0.005 +20040723, -1.03, -0.30, 0.83, 0.58, -0.01, 0.005 +20040726, -0.39, -0.67, 0.26, 0.63, -0.13, 0.005 +20040727, 1.10, 0.91, -0.50, -0.63, 0.06, 0.005 +20040728, -0.09, -0.58, 0.37, 0.36, -0.17, 0.005 +20040729, 0.66, 0.88, -0.49, -0.61, 0.18, 0.005 +20040730, 0.14, 0.16, -0.32, -0.40, 0.26, 0.005 +20040802, 0.36, -0.38, 0.28, 0.32, 0.08, 0.005 +20040803, -0.75, -0.72, 0.81, 0.73, -0.27, 0.005 +20040804, -0.20, -0.02, 0.02, 0.25, 0.46, 0.005 +20040805, -1.63, -0.21, 0.48, -0.13, 0.02, 0.005 +20040806, -1.59, -0.77, 0.73, 0.77, -0.38, 0.005 +20040809, 0.02, -0.35, 0.01, 0.37, -0.05, 0.005 +20040810, 1.39, 0.67, -0.37, -0.61, 0.22, 0.005 +20040811, -0.29, -0.25, 0.14, 0.88, -0.96, 0.005 +20040812, -1.18, -0.45, 0.27, 0.72, -0.33, 0.005 +20040813, 0.10, -0.03, 0.04, 0.22, 0.09, 0.005 +20040816, 1.40, 0.38, 0.04, -0.70, 0.13, 0.005 +20040817, 0.30, 0.01, -0.60, -0.52, 0.17, 0.005 +20040818, 1.34, 0.69, -0.78, -0.81, -0.03, 0.005 +20040819, -0.38, -0.25, 0.24, -0.05, -0.03, 0.005 +20040820, 0.79, 0.91, -0.30, -0.44, 0.01, 0.005 +20040823, -0.32, -0.43, -0.31, -0.13, 0.15, 0.005 +20040824, 0.03, 0.18, 0.15, 0.11, -0.09, 0.005 +20040825, 0.84, 0.08, -0.51, -0.57, -0.04, 0.005 +20040826, -0.05, -0.44, 0.39, 0.40, -0.21, 0.005 +20040827, 0.33, 0.45, -0.22, -0.12, -0.03, 0.005 +20040830, -0.86, -0.34, 0.37, 0.49, -0.10, 0.005 +20040831, 0.48, 0.08, 0.15, 0.06, -0.17, 0.005 +20040901, 0.30, 0.54, -0.40, 0.04, -0.09, 0.005 +20040902, 1.09, 0.23, -0.16, -0.05, -0.16, 0.005 +20040903, -0.45, -0.13, 0.42, 0.81, -0.32, 0.005 +20040907, 0.73, 0.38, 0.03, -0.06, -0.07, 0.005 +20040908, -0.48, -0.40, 0.01, -0.09, -0.17, 0.005 +20040909, 0.34, 1.16, -0.37, -0.60, 0.47, 0.005 +20040910, 0.53, 0.06, -0.65, -0.59, 0.24, 0.005 +20040913, 0.30, 0.39, -0.48, -0.43, -0.10, 0.005 +20040914, 0.19, -0.47, -0.17, -0.06, -0.15, 0.005 +20040915, -0.67, 0.25, 0.32, 0.51, -0.46, 0.005 +20040916, 0.36, 0.51, 0.35, -0.27, 0.24, 0.005 +20040917, 0.35, -0.54, -0.01, -0.13, -0.07, 0.005 +20040920, -0.51, 0.14, 0.07, -0.35, 0.12, 0.005 +20040921, 0.66, 0.39, -0.08, 0.07, -0.16, 0.005 +20040922, -1.37, -0.43, 0.55, 0.09, 0.03, 0.005 +20040923, -0.37, 0.35, -0.08, -0.40, 0.27, 0.005 +20040924, 0.14, -0.08, 0.36, 0.58, -0.37, 0.005 +20040927, -0.71, -0.57, 0.36, 0.48, -0.29, 0.005 +20040928, 0.63, 0.65, -0.23, 0.12, -0.25, 0.005 +20040929, 0.50, 0.56, -0.66, -0.29, -0.07, 0.005 +20040930, 0.06, 0.24, 0.52, -0.74, -0.40, 0.005 +20041001, 1.48, 0.45, -0.14, -0.67, 0.44, 0.005 +20041004, 0.38, 0.34, -0.16, -0.35, 0.38, 0.005 +20041005, -0.11, -0.14, 0.09, 0.39, 0.03, 0.005 +20041006, 0.69, 0.16, 0.14, -0.07, -0.09, 0.005 +20041007, -1.05, -0.52, 0.30, 0.34, 0.08, 0.005 +20041008, -0.80, -0.36, 0.62, 0.62, -0.17, 0.005 +20041011, 0.23, 0.16, -0.45, -0.07, -0.21, 0.005 +20041012, -0.23, -0.02, 0.27, 0.15, -0.12, 0.005 +20041013, -0.75, -0.43, -0.37, -0.23, -0.01, 0.005 +20041014, -0.92, 0.10, -0.34, 0.54, -0.03, 0.005 +20041015, 0.45, 0.27, 0.05, 0.41, 0.10, 0.005 +20041018, 0.51, -0.09, -0.79, -0.23, -0.20, 0.005 +20041019, -0.92, 0.09, -0.53, 0.25, 0.26, 0.005 +20041020, 0.11, 0.53, -0.13, 0.06, -0.22, 0.005 +20041021, 0.37, 0.60, -0.06, -0.96, 0.49, 0.005 +20041022, -1.00, -0.43, 0.64, 0.39, -0.24, 0.005 +20041025, -0.03, 0.76, 0.50, 0.01, 0.03, 0.005 +20041026, 1.36, -0.52, 0.65, 0.16, -0.37, 0.005 +20041027, 1.39, 0.18, -1.13, -0.68, -0.06, 0.005 +20041028, 0.13, -0.39, -0.06, -0.18, 0.26, 0.005 +20041029, 0.18, -0.48, 0.24, 0.00, 0.03, 0.005 +20041101, 0.06, 0.40, 0.05, -0.03, -0.21, 0.007 +20041102, -0.01, -0.16, -0.01, -0.18, -0.13, 0.007 +20041103, 1.17, 0.47, -0.05, 0.30, -0.25, 0.007 +20041104, 1.51, -0.52, 0.28, 0.71, 0.07, 0.007 +20041105, 0.44, 0.20, -0.32, -0.12, 0.19, 0.007 +20041108, -0.13, -0.27, 0.03, -0.27, 0.10, 0.007 +20041109, 0.05, 0.70, -0.03, -0.22, -0.02, 0.007 +20041110, -0.01, 0.57, 0.28, 0.35, -0.28, 0.007 +20041111, 0.90, 0.10, -0.22, -0.20, 0.09, 0.007 +20041112, 0.86, -0.02, -0.09, 0.37, 0.00, 0.007 +20041115, 0.07, 0.24, -0.26, -0.56, 0.03, 0.007 +20041116, -0.66, -0.21, 0.30, -0.31, 0.21, 0.007 +20041117, 0.64, 0.26, -0.10, -0.55, 0.31, 0.007 +20041118, 0.05, -0.25, 0.05, -0.23, 0.10, 0.007 +20041119, -1.11, -0.08, 0.74, 0.30, -0.14, 0.007 +20041122, 0.60, 0.54, 0.36, 0.04, 0.15, 0.007 +20041123, 0.06, 0.38, 0.35, 0.11, -0.31, 0.007 +20041124, 0.47, 0.29, 0.13, -0.28, 0.05, 0.007 +20041126, 0.12, 0.20, 0.30, -0.18, 0.12, 0.007 +20041129, -0.21, 0.81, -0.15, -0.26, -0.14, 0.007 +20041130, -0.37, 0.23, 0.11, 0.25, -0.16, 0.007 +20041201, 1.48, -0.03, -0.75, -0.34, -0.08, 0.007 +20041202, -0.07, 0.00, -0.57, -0.37, 0.20, 0.007 +20041203, 0.04, -0.17, 0.11, -0.25, 0.24, 0.007 +20041206, -0.13, -0.40, -0.07, -0.30, 0.22, 0.007 +20041207, -1.16, -0.89, 0.36, 0.18, -0.05, 0.007 +20041208, 0.46, 0.41, -0.41, 0.54, -0.59, 0.007 +20041209, 0.44, -0.76, 0.14, 0.10, -0.09, 0.007 +20041210, -0.01, 0.50, 0.19, -0.10, 0.11, 0.007 +20041213, 0.86, 0.03, -0.04, -0.13, -0.15, 0.007 +20041214, 0.45, 0.51, -0.20, -0.07, 0.04, 0.007 +20041215, 0.33, 0.42, 0.47, -0.37, 0.18, 0.007 +20041216, -0.28, -0.48, 0.34, 0.20, 0.22, 0.007 +20041217, -0.55, 0.56, 0.45, -0.09, 0.20, 0.007 +20041220, -0.13, -0.56, 0.39, 0.28, 0.12, 0.007 +20041221, 0.92, 0.28, -0.05, -0.02, 0.08, 0.007 +20041222, 0.39, 0.00, -0.15, 0.00, -0.10, 0.007 +20041223, 0.09, 0.19, -0.21, -0.01, -0.15, 0.007 +20041227, -0.45, -0.26, 0.01, -0.36, 0.21, 0.007 +20041228, 0.83, 0.78, -0.16, 0.07, -0.29, 0.007 +20041229, 0.01, -0.06, -0.03, -0.02, -0.06, 0.007 +20041230, 0.04, -0.01, -0.11, -0.11, 0.09, 0.007 +20041231, -0.14, -0.01, 0.20, -0.07, 0.11, 0.007 +20050103, -0.97, -0.65, -0.04, 0.37, -0.02, 0.008 +20050104, -1.30, -0.50, 0.44, 0.90, -0.49, 0.008 +20050105, -0.51, -1.13, 0.00, 0.09, -0.14, 0.008 +20050106, 0.34, -0.03, 0.13, 0.46, -0.13, 0.008 +20050107, -0.22, -0.82, -0.02, -0.17, -0.02, 0.008 +20050110, 0.42, 0.30, 0.04, 0.05, -0.23, 0.008 +20050111, -0.68, -0.30, 0.30, 0.93, -0.18, 0.008 +20050112, 0.38, -0.09, -0.16, -0.22, 0.13, 0.008 +20050113, -0.77, 0.25, 0.38, 0.05, 0.04, 0.008 +20050114, 0.66, 0.51, 0.07, -0.25, 0.16, 0.008 +20050118, 0.97, 0.16, -0.18, -0.06, -0.10, 0.008 +20050119, -0.97, -0.05, 0.48, 0.47, -0.32, 0.008 +20050120, -0.77, -0.11, -0.05, 0.38, 0.30, 0.008 +20050121, -0.56, 0.34, 0.25, -0.15, -0.10, 0.008 +20050124, -0.49, -0.69, 0.61, 0.58, -0.11, 0.008 +20050125, 0.34, 0.12, -0.37, 0.12, -0.14, 0.008 +20050126, 0.62, 0.94, -0.21, -0.35, -0.01, 0.008 +20050127, 0.08, 0.12, 0.04, -0.03, 0.12, 0.008 +20050128, -0.30, -0.23, 0.18, 0.27, -0.03, 0.008 +20050131, 0.97, 0.85, 0.16, -0.24, -0.11, 0.008 +20050201, 0.69, -0.01, 0.20, 0.55, -0.15, 0.009 +20050202, 0.36, 0.28, 0.17, 0.08, 0.15, 0.009 +20050203, -0.27, -0.08, 0.39, 0.11, -0.02, 0.009 +20050204, 1.12, 0.08, -0.56, -0.28, -0.02, 0.009 +20050207, -0.11, 0.10, -0.03, -0.14, 0.14, 0.009 +20050208, 0.08, 0.22, -0.17, -0.15, 0.08, 0.009 +20050209, -1.00, -1.10, 0.73, 0.13, -0.25, 0.009 +20050210, 0.35, -0.30, 0.05, 0.17, -0.39, 0.009 +20050211, 0.77, 0.40, -0.31, -0.49, 0.28, 0.009 +20050214, 0.09, -0.03, 0.14, 0.06, 0.11, 0.009 +20050215, 0.28, -0.38, -0.01, -0.13, 0.18, 0.009 +20050216, 0.07, 0.50, 0.40, -0.07, -0.14, 0.009 +20050217, -0.79, -0.31, 0.21, 0.09, 0.04, 0.009 +20050218, 0.01, -0.14, -0.05, 0.15, 0.11, 0.009 +20050222, -1.47, -0.33, -0.12, -0.02, -0.03, 0.009 +20050223, 0.53, -0.12, 0.25, 0.18, -0.10, 0.009 +20050224, 0.83, 0.25, -0.23, 0.24, -0.19, 0.009 +20050225, 0.97, 0.47, 0.38, 0.21, -0.15, 0.009 +20050228, -0.61, 0.24, 0.04, 0.40, 0.18, 0.009 +20050301, 0.58, 0.06, 0.02, -0.16, 0.42, 0.010 +20050302, -0.01, -0.15, 0.05, 0.32, -0.06, 0.010 +20050303, -0.01, 0.15, 0.55, 0.41, -0.03, 0.010 +20050304, 0.89, 0.03, 0.32, 0.35, -0.20, 0.010 +20050307, 0.27, -0.43, 0.01, -0.29, 0.10, 0.010 +20050308, -0.54, -0.37, -0.06, 0.26, -0.17, 0.010 +20050309, -0.96, 0.02, -0.07, -0.19, 0.57, 0.010 +20050310, 0.01, -0.83, -0.22, 0.05, 0.10, 0.010 +20050311, -0.55, 0.62, 0.52, 0.13, 0.04, 0.010 +20050314, 0.61, -0.25, 0.11, -0.49, 0.09, 0.010 +20050315, -0.67, 0.20, 0.27, 0.00, 0.04, 0.010 +20050316, -0.84, 0.23, 0.12, 0.11, -0.10, 0.010 +20050317, 0.19, 0.10, 0.52, -0.21, 0.15, 0.010 +20050318, -0.13, -0.30, -0.04, 0.31, -0.18, 0.010 +20050321, -0.38, 0.25, -0.20, -0.43, 0.09, 0.010 +20050322, -0.92, 0.62, -0.11, 0.00, 0.14, 0.010 +20050323, -0.12, -1.00, -0.50, -0.04, -0.07, 0.010 +20050324, 0.01, 0.47, -0.08, -0.10, 0.10, 0.010 +20050328, 0.15, -0.20, -0.03, 0.34, -0.11, 0.010 +20050329, -0.86, -0.88, 0.07, 0.20, -0.01, 0.010 +20050330, 1.35, 0.14, -0.21, -0.13, 0.03, 0.010 +20050331, 0.00, 0.07, 0.64, 0.03, 0.25, 0.010 +20050401, -0.64, 0.10, 0.42, 0.32, -0.07, 0.010 +20050404, 0.29, 0.00, 0.19, 0.00, -0.33, 0.010 +20050405, 0.40, -0.21, -0.25, 0.31, -0.06, 0.010 +20050406, 0.22, -0.04, 0.03, -0.04, -0.04, 0.010 +20050407, 0.57, -0.10, -0.17, -0.48, 0.31, 0.010 +20050408, -0.88, -0.49, 0.04, -0.06, 0.10, 0.010 +20050411, -0.09, -0.58, 0.02, 0.29, -0.08, 0.010 +20050412, 0.56, 0.20, -0.09, 0.13, -0.04, 0.010 +20050413, -1.22, -0.39, -0.17, 0.35, 0.01, 0.010 +20050414, -1.10, -0.63, -0.26, 0.21, -0.22, 0.010 +20050415, -1.59, -0.26, -0.38, -0.10, -0.36, 0.010 +20050418, 0.29, 0.40, 0.23, 0.35, -0.26, 0.010 +20050419, 0.75, 0.84, 0.13, -0.49, 0.05, 0.010 +20050420, -1.35, -0.28, 0.05, -0.36, 0.15, 0.010 +20050421, 1.87, 0.29, -0.56, -0.30, 0.08, 0.010 +20050422, -0.83, -0.73, 0.43, 0.56, 0.06, 0.010 +20050425, 0.93, 0.11, 0.01, 0.01, -0.12, 0.010 +20050426, -0.88, -0.54, -0.13, -0.05, -0.15, 0.010 +20050427, 0.30, -0.51, -0.24, 0.42, -0.02, 0.010 +20050428, -1.20, -0.93, 0.37, 0.10, 0.26, 0.010 +20050429, 1.04, -0.39, -0.02, -0.18, -0.17, 0.010 +20050502, 0.52, 0.54, 0.06, 0.34, -0.39, 0.011 +20050503, -0.04, -0.10, -0.31, -0.15, 0.08, 0.011 +20050504, 1.28, 0.34, 0.41, -0.65, 0.03, 0.011 +20050505, -0.19, 0.31, -0.39, 0.26, -0.23, 0.011 +20050506, -0.03, 0.29, 0.16, -0.35, 0.21, 0.011 +20050509, 0.61, 0.36, -0.04, 0.04, 0.01, 0.011 +20050510, -1.03, -0.22, 0.02, -0.14, 0.35, 0.011 +20050511, 0.39, -0.39, -0.13, 0.24, -0.19, 0.011 +20050512, -1.02, -0.32, -0.75, -0.33, 0.26, 0.011 +20050513, -0.50, -0.24, -0.67, -0.27, 0.01, 0.011 +20050516, 1.03, 0.48, -0.17, 0.38, -0.18, 0.011 +20050517, 0.66, -0.14, 0.29, 0.21, -0.14, 0.011 +20050518, 1.15, 0.96, -0.26, 0.04, 0.07, 0.011 +20050519, 0.47, -0.06, -0.08, -0.14, 0.05, 0.011 +20050520, -0.13, -0.09, 0.25, -0.31, 0.30, 0.011 +20050523, 0.43, 0.20, -0.02, 0.04, -0.20, 0.011 +20050524, 0.05, -0.03, 0.00, -0.24, 0.09, 0.011 +20050525, -0.44, -0.55, 0.19, 0.23, 0.02, 0.011 +20050526, 0.74, 0.66, 0.08, -0.34, 0.03, 0.011 +20050527, 0.18, 0.16, 0.31, 0.03, -0.15, 0.011 +20050531, -0.49, 0.47, 0.28, -0.16, 0.16, 0.011 +20050601, 0.90, 0.19, 0.00, 0.14, -0.12, 0.010 +20050602, 0.24, 0.10, -0.24, 0.02, 0.15, 0.010 +20050603, -0.67, -0.12, 0.48, 0.21, 0.15, 0.010 +20050606, 0.14, 0.32, 0.13, 0.32, -0.18, 0.010 +20050607, -0.03, 0.18, 0.09, 0.33, 0.00, 0.010 +20050608, -0.28, -0.35, 0.36, -0.09, 0.32, 0.010 +20050609, 0.58, 0.31, -0.12, -0.35, -0.33, 0.010 +20050610, -0.21, 0.18, 0.54, -0.12, 0.10, 0.010 +20050613, 0.28, 0.16, 0.17, 0.04, -0.01, 0.010 +20050614, 0.31, 0.54, 0.39, 0.23, -0.08, 0.010 +20050615, 0.22, 0.27, 0.21, 0.13, 0.07, 0.010 +20050616, 0.46, 0.62, -0.29, -0.22, -0.21, 0.010 +20050617, 0.36, -0.52, 0.20, -0.06, -0.02, 0.010 +20050620, -0.07, -0.29, 0.09, 0.07, -0.06, 0.010 +20050621, -0.18, 0.09, -0.05, -0.29, 0.09, 0.010 +20050622, 0.05, 0.32, -0.09, 0.13, 0.03, 0.010 +20050623, -1.07, -0.38, 0.13, -0.03, -0.10, 0.010 +20050624, -0.72, 0.05, 0.12, 0.00, -0.39, 0.010 +20050627, -0.07, -0.03, 0.55, 0.51, -0.32, 0.010 +20050628, 1.05, 1.03, -0.51, -0.02, 0.15, 0.010 +20050629, -0.07, 0.34, 0.12, 0.09, 0.08, 0.010 +20050630, -0.63, 0.22, 0.27, -0.05, 0.14, 0.010 +20050701, 0.32, 0.18, 0.30, 0.38, -0.10, 0.012 +20050705, 0.92, 0.61, -0.19, 0.25, -0.31, 0.012 +20050706, -0.73, 0.10, 0.07, -0.28, 0.05, 0.012 +20050707, 0.26, -0.10, -0.24, 0.10, -0.12, 0.012 +20050708, 1.21, 0.70, -0.55, -0.27, -0.04, 0.012 +20050711, 0.69, 0.73, -0.13, -0.10, -0.04, 0.012 +20050712, 0.20, -0.28, -0.04, 0.03, -0.08, 0.012 +20050713, 0.02, -0.42, 0.07, -0.12, 0.10, 0.012 +20050714, 0.14, -0.76, -0.44, -0.50, -0.01, 0.012 +20050715, 0.12, -0.03, -0.03, -0.12, 0.05, 0.012 +20050718, -0.55, -0.18, 0.10, -0.12, 0.23, 0.012 +20050719, 0.75, 0.81, -0.11, -0.14, -0.13, 0.012 +20050720, 0.54, 0.80, -0.26, 0.07, -0.07, 0.012 +20050721, -0.74, -0.61, 0.15, -0.32, -0.29, 0.012 +20050722, 0.57, 1.00, 0.54, 0.46, -0.10, 0.012 +20050725, -0.47, -0.48, 0.13, -0.02, -0.03, 0.012 +20050726, 0.21, 0.27, 0.22, -0.37, 0.33, 0.012 +20050727, 0.43, -0.37, -0.04, 0.00, -0.09, 0.012 +20050728, 0.67, 0.52, -0.18, 0.14, -0.25, 0.012 +20050729, -0.66, 0.27, 0.12, -0.19, -0.03, 0.012 +20050801, 0.15, 0.28, -0.12, -0.10, -0.16, 0.013 +20050802, 0.70, 0.00, 0.11, -0.27, 0.04, 0.013 +20050803, -0.02, -0.67, -0.04, -0.32, 0.03, 0.013 +20050804, -0.82, -0.78, 0.35, -0.09, 0.05, 0.013 +20050805, -0.81, -0.34, -0.02, -0.23, 0.20, 0.013 +20050808, -0.32, 0.04, 0.25, 0.43, 0.08, 0.013 +20050809, 0.55, -0.56, -0.07, -0.32, -0.02, 0.013 +20050810, -0.13, 0.12, 0.16, 0.30, -0.19, 0.013 +20050811, 0.71, 0.16, -0.08, -0.25, -0.15, 0.013 +20050812, -0.57, -0.33, 0.11, 0.08, -0.01, 0.013 +20050815, 0.30, 0.44, -0.14, -0.22, -0.02, 0.013 +20050816, -1.22, -0.46, 0.17, -0.26, 0.02, 0.013 +20050817, 0.05, -0.09, -0.06, -0.63, 0.32, 0.013 +20050818, -0.15, -0.37, 0.05, 0.08, -0.03, 0.013 +20050819, 0.07, 0.15, 0.17, 0.18, 0.09, 0.013 +20050822, 0.19, 0.49, 0.15, -0.04, 0.12, 0.013 +20050823, -0.31, -0.04, 0.01, -0.34, 0.13, 0.013 +20050824, -0.56, 0.49, 0.13, 0.03, 0.02, 0.013 +20050825, 0.21, 0.11, 0.20, -0.20, 0.06, 0.013 +20050826, -0.66, -0.61, -0.09, -0.24, 0.12, 0.013 +20050829, 0.65, 0.36, -0.22, 0.09, -0.02, 0.013 +20050830, -0.31, 0.01, 0.34, -0.12, 0.15, 0.013 +20050831, 1.10, 0.75, -0.06, 0.23, -0.35, 0.013 +20050901, 0.13, 0.11, 0.24, 0.40, -0.13, 0.014 +20050902, -0.36, -0.34, -0.01, -0.09, 0.04, 0.014 +20050906, 1.22, 0.26, -0.49, 0.18, -0.11, 0.014 +20050907, 0.30, 0.12, -0.14, 0.05, 0.02, 0.014 +20050908, -0.40, -0.13, -0.05, -0.15, 0.13, 0.014 +20050909, 0.73, -0.06, 0.14, 0.16, -0.13, 0.014 +20050912, 0.00, 0.46, -0.34, -0.21, -0.14, 0.014 +20050913, -0.76, -0.25, 0.13, -0.42, -0.01, 0.014 +20050914, -0.44, -0.59, 0.42, 0.25, 0.11, 0.014 +20050915, -0.02, -0.21, 0.30, 0.17, 0.04, 0.014 +20050916, 0.72, 0.21, -0.10, 0.19, -0.03, 0.014 +20050919, -0.55, -0.08, 0.22, 0.31, -0.21, 0.014 +20050920, -0.78, -0.15, 0.04, -0.40, 0.06, 0.014 +20050921, -1.03, -0.44, 0.30, 0.63, -0.14, 0.014 +20050922, 0.30, -0.09, -0.24, 0.61, -0.19, 0.014 +20050923, 0.15, 0.51, 0.19, -0.47, 0.06, 0.014 +20050926, 0.12, 0.58, 0.07, 0.04, -0.20, 0.014 +20050927, -0.02, -0.09, -0.09, -0.08, -0.17, 0.014 +20050928, 0.06, -0.55, 0.27, -0.08, 0.13, 0.014 +20050929, 0.92, 0.22, 0.04, -0.23, -0.02, 0.014 +20050930, 0.20, 0.24, -0.17, -0.40, 0.25, 0.014 +20051003, 0.00, 0.47, 0.01, -0.10, -0.06, 0.013 +20051004, -0.97, 0.14, -0.18, -0.47, 0.18, 0.013 +20051005, -1.63, -1.10, -0.25, -0.19, -0.17, 0.013 +20051006, -0.57, -0.42, 0.10, 0.10, -0.09, 0.013 +20051007, 0.42, 0.39, 0.25, 0.22, -0.12, 0.013 +20051010, -0.73, -0.11, -0.22, -0.06, -0.12, 0.013 +20051011, -0.33, -0.88, 0.14, 0.84, -0.19, 0.013 +20051012, -0.79, -0.61, 0.10, -0.03, 0.01, 0.013 +20051013, -0.09, 0.31, -0.55, -0.79, -0.09, 0.013 +20051014, 0.92, 0.51, -0.10, -0.07, -0.16, 0.013 +20051017, 0.29, -0.27, 0.12, 0.20, -0.16, 0.013 +20051018, -1.03, -0.14, -0.13, -0.49, 0.25, 0.013 +20051019, 1.45, 0.41, -0.19, -0.01, -0.42, 0.013 +20051020, -1.44, -0.09, -0.37, -0.32, 0.00, 0.013 +20051021, 0.32, 0.43, 0.24, 0.20, -0.31, 0.013 +20051024, 1.70, 0.25, 0.29, 0.08, -0.09, 0.013 +20051025, -0.30, -0.22, 0.09, 0.51, -0.21, 0.013 +20051026, -0.46, -0.19, 0.18, -0.28, 0.09, 0.013 +20051027, -1.24, -1.01, 0.42, -0.18, 0.33, 0.013 +20051028, 1.55, -0.03, 0.27, 0.53, 0.08, 0.013 +20051031, 0.96, 0.80, 0.03, -0.21, -0.06, 0.013 +20051101, -0.27, -0.16, 0.39, -0.09, -0.35, 0.015 +20051102, 1.15, 0.86, 0.00, -0.03, -0.07, 0.015 +20051103, 0.43, -0.12, -0.19, -0.05, -0.29, 0.015 +20051104, 0.01, -0.04, -0.28, -0.25, 0.05, 0.015 +20051107, 0.25, 0.22, -0.06, -0.15, 0.03, 0.015 +20051108, -0.37, -0.32, -0.04, 0.07, -0.04, 0.015 +20051109, 0.15, 0.25, -0.02, -0.04, 0.07, 0.015 +20051110, 0.80, -0.16, -0.60, -0.08, -0.29, 0.015 +20051111, 0.27, -0.01, -0.12, 0.11, -0.21, 0.015 +20051114, -0.10, -0.32, 0.05, -0.07, 0.07, 0.015 +20051115, -0.49, -0.72, -0.17, -0.06, -0.11, 0.015 +20051116, 0.11, -0.36, 0.01, 0.19, -0.25, 0.015 +20051117, 1.06, 0.67, -0.09, -0.39, 0.04, 0.015 +20051118, 0.43, 0.32, -0.16, -0.02, 0.14, 0.015 +20051121, 0.60, 0.40, -0.35, 0.19, -0.28, 0.015 +20051122, 0.48, -0.01, -0.01, 0.32, -0.03, 0.015 +20051123, 0.31, -0.30, 0.22, -0.06, 0.10, 0.015 +20051125, 0.18, -0.12, -0.08, 0.14, 0.01, 0.015 +20051128, -1.01, -0.73, 0.22, -0.18, 0.15, 0.015 +20051129, 0.01, 0.31, 0.28, 0.14, 0.08, 0.015 +20051130, -0.43, 1.11, -0.16, -0.27, 0.02, 0.015 +20051201, 1.27, 0.54, 0.13, -0.04, 0.13, 0.015 +20051202, 0.05, 0.08, -0.14, 0.15, -0.01, 0.015 +20051205, -0.30, -0.17, 0.08, 0.29, -0.18, 0.015 +20051206, 0.12, 0.05, 0.06, -0.01, -0.16, 0.015 +20051207, -0.49, -0.12, 0.06, -0.14, 0.09, 0.015 +20051208, -0.03, 0.29, 0.07, -0.01, -0.02, 0.015 +20051209, 0.27, 0.20, 0.05, -0.22, 0.21, 0.015 +20051212, 0.10, 0.09, -0.05, 0.14, 0.06, 0.015 +20051213, 0.44, -0.54, -0.21, 0.37, -0.23, 0.015 +20051214, 0.34, -0.18, 0.08, 0.62, -0.05, 0.015 +20051215, -0.23, -0.59, -0.37, -0.11, 0.08, 0.015 +20051216, -0.29, 0.02, -0.04, -0.19, 0.02, 0.015 +20051219, -0.73, -0.76, 0.29, 0.11, -0.10, 0.015 +20051220, -0.02, 0.01, 0.02, 0.12, -0.02, 0.015 +20051221, 0.33, 0.68, -0.35, -0.08, -0.06, 0.015 +20051222, 0.45, 0.09, -0.02, -0.43, 0.14, 0.015 +20051223, 0.08, 0.27, 0.00, -0.07, 0.10, 0.015 +20051227, -1.00, -0.44, 0.17, -0.23, 0.13, 0.015 +20051228, 0.19, 0.39, 0.13, 0.09, -0.09, 0.015 +20051229, -0.27, 0.00, 0.21, -0.15, 0.07, 0.015 +20051230, -0.50, -0.16, 0.26, -0.08, 0.08, 0.015 +20060103, 1.50, -0.14, 0.13, 0.24, -0.32, 0.017 +20060104, 0.46, 0.30, 0.02, -0.47, 0.30, 0.017 +20060105, 0.03, 0.24, -0.15, -0.48, 0.17, 0.017 +20060106, 0.92, 0.09, -0.23, 0.01, 0.14, 0.017 +20060109, 0.45, 0.52, -0.10, 0.03, -0.07, 0.017 +20060110, 0.05, 0.59, 0.02, -0.20, -0.13, 0.017 +20060111, 0.28, -0.29, -0.11, -0.41, 0.13, 0.017 +20060112, -0.65, 0.08, -0.03, -0.10, 0.06, 0.017 +20060113, 0.17, 0.16, 0.06, 0.04, -0.04, 0.017 +20060117, -0.40, -0.24, 0.22, 0.39, -0.27, 0.017 +20060118, -0.35, 0.40, 0.30, -0.35, 0.21, 0.017 +20060119, 0.63, 0.95, -0.08, 0.01, 0.14, 0.017 +20060120, -1.80, 0.49, 0.51, 0.30, 0.27, 0.017 +20060123, 0.18, 0.27, 0.43, 0.31, -0.20, 0.017 +20060124, 0.44, 1.02, 0.16, -0.11, -0.04, 0.017 +20060125, -0.22, -0.04, -0.12, -0.11, -0.11, 0.017 +20060126, 0.79, 0.87, 0.04, 0.02, -0.02, 0.017 +20060127, 0.67, -0.20, -0.17, 0.02, -0.34, 0.017 +20060130, 0.10, -0.18, 0.21, 0.05, -0.03, 0.017 +20060131, -0.21, 0.59, -0.03, -0.05, -0.35, 0.017 +20060201, 0.14, 0.08, 0.05, -0.47, 0.39, 0.018 +20060202, -0.88, -0.24, -0.07, 0.21, 0.03, 0.018 +20060203, -0.51, 0.25, 0.01, -0.07, -0.02, 0.018 +20060206, 0.10, 0.39, 0.51, 0.30, 0.00, 0.018 +20060207, -0.92, -0.55, -0.23, -0.40, 0.43, 0.018 +20060208, 0.77, -0.32, -0.09, -0.16, 0.39, 0.018 +20060209, -0.19, -0.22, -0.27, -0.15, 0.37, 0.018 +20060210, 0.15, -0.38, -0.05, 0.04, 0.06, 0.018 +20060213, -0.47, -0.47, 0.14, 0.06, 0.17, 0.018 +20060214, 1.01, 0.22, -0.10, -0.16, -0.01, 0.018 +20060215, 0.41, 0.36, -0.47, 0.01, -0.07, 0.018 +20060216, 0.75, 0.11, 0.22, 0.17, 0.06, 0.018 +20060217, -0.16, 0.02, 0.36, 0.06, 0.17, 0.018 +20060221, -0.38, -0.13, 0.14, 0.51, -0.25, 0.018 +20060222, 0.73, 0.00, -0.03, -0.34, -0.15, 0.018 +20060223, -0.29, 0.18, -0.22, 0.03, 0.07, 0.018 +20060224, 0.19, 0.37, 0.16, -0.04, -0.03, 0.018 +20060227, 0.40, 0.11, -0.36, -0.35, 0.30, 0.018 +20060228, -1.10, -0.20, 0.07, 0.02, 0.11, 0.018 +20060301, 0.90, 0.60, -0.04, -0.38, 0.39, 0.016 +20060302, -0.16, -0.02, 0.06, 0.04, 0.02, 0.016 +20060303, -0.15, -0.02, 0.07, 0.08, 0.03, 0.016 +20060306, -0.75, -0.27, -0.14, -0.15, -0.06, 0.016 +20060307, -0.40, -1.08, 0.05, -0.02, -0.20, 0.016 +20060308, 0.14, -0.08, 0.06, 0.02, -0.03, 0.016 +20060309, -0.51, 0.03, 0.29, 0.02, 0.14, 0.016 +20060310, 0.69, 0.40, 0.03, 0.20, 0.06, 0.016 +20060313, 0.24, 0.03, 0.10, 0.06, -0.09, 0.016 +20060314, 1.00, 0.03, -0.03, 0.18, -0.21, 0.016 +20060315, 0.48, 0.38, 0.15, -0.22, 0.33, 0.016 +20060316, 0.11, -0.10, 0.32, 0.17, 0.03, 0.016 +20060317, 0.18, 0.06, -0.32, -0.10, -0.04, 0.016 +20060320, -0.07, 0.10, -0.33, -0.29, -0.13, 0.016 +20060321, -0.69, -0.49, -0.10, 0.34, -0.17, 0.016 +20060322, 0.62, 0.50, 0.12, 0.32, -0.15, 0.016 +20060323, -0.18, 0.59, 0.00, 0.27, -0.02, 0.016 +20060324, 0.22, 0.67, 0.20, -0.15, -0.13, 0.016 +20060327, -0.07, 0.17, 0.25, 0.07, -0.06, 0.016 +20060328, -0.61, 0.28, -0.08, 0.18, -0.13, 0.016 +20060329, 0.87, 0.82, 0.14, -0.20, 0.19, 0.016 +20060330, -0.16, 0.09, -0.16, -0.30, -0.21, 0.016 +20060331, -0.23, 0.71, -0.05, -0.19, -0.07, 0.016 +20060403, 0.07, -0.84, 0.68, 0.17, 0.23, 0.019 +20060404, 0.54, -0.21, 0.13, 0.19, -0.30, 0.019 +20060405, 0.42, 0.03, 0.25, -0.07, 0.08, 0.019 +20060406, -0.15, 0.17, 0.01, -0.18, -0.14, 0.019 +20060407, -1.02, -0.14, -0.17, 0.02, 0.06, 0.019 +20060410, -0.02, -0.34, 0.05, 0.62, -0.14, 0.019 +20060411, -0.83, -0.66, 0.02, 0.24, -0.08, 0.019 +20060412, 0.19, 0.57, -0.03, -0.27, 0.15, 0.019 +20060413, 0.12, 0.37, -0.14, -0.23, 0.22, 0.019 +20060417, -0.28, 0.11, 0.30, 0.59, -0.22, 0.019 +20060418, 1.71, 0.71, 0.07, 0.04, 0.03, 0.019 +20060419, 0.33, 0.90, 0.07, -0.07, -0.36, 0.019 +20060420, 0.01, -0.52, 0.05, -0.04, 0.32, 0.019 +20060421, -0.10, -0.14, 0.30, 0.29, -0.21, 0.019 +20060424, -0.30, -0.46, 0.13, -0.32, -0.10, 0.019 +20060425, -0.44, 0.40, 0.00, -0.02, 0.19, 0.019 +20060426, 0.20, -0.13, 0.28, -0.26, 0.05, 0.019 +20060427, 0.24, -0.93, 0.00, -0.18, 0.16, 0.019 +20060428, 0.05, 0.36, 0.52, 0.66, -0.14, 0.019 +20060501, -0.41, 0.01, 0.47, -0.05, 0.15, 0.020 +20060502, 0.54, 0.26, 0.57, 0.29, 0.19, 0.020 +20060503, -0.31, 0.39, 0.08, -0.11, 0.18, 0.020 +20060504, 0.37, 0.52, -0.24, -0.16, 0.10, 0.020 +20060505, 1.04, -0.27, -0.02, 0.04, -0.09, 0.020 +20060508, -0.05, 0.04, 0.09, 0.02, 0.19, 0.020 +20060509, -0.01, -0.14, 0.20, 0.06, -0.07, 0.020 +20060510, -0.20, -0.50, 0.54, 0.09, -0.24, 0.020 +20060511, -1.35, -1.03, 0.23, 0.37, 0.10, 0.020 +20060512, -1.26, -0.79, -0.08, -0.15, 0.31, 0.020 +20060515, 0.04, -0.96, -0.29, 0.38, -0.06, 0.020 +20060516, -0.12, 0.12, 0.35, 0.11, -0.29, 0.020 +20060517, -1.66, 0.09, 0.16, -0.13, 0.15, 0.020 +20060518, -0.69, -0.33, 0.13, 0.05, 0.24, 0.020 +20060519, 0.38, 0.12, 0.01, -0.04, 0.38, 0.020 +20060522, -0.55, -0.74, 0.25, 0.03, 0.04, 0.020 +20060523, -0.44, 0.07, -0.02, 0.21, -0.26, 0.020 +20060524, 0.03, -0.13, -0.15, -0.08, 0.04, 0.020 +20060525, 1.22, 0.69, 0.01, 0.11, -0.06, 0.020 +20060526, 0.60, -0.12, -0.08, -0.16, 0.03, 0.020 +20060530, -1.65, -0.80, 0.13, -0.14, 0.17, 0.020 +20060531, 0.94, 0.42, 0.38, 0.21, 0.22, 0.020 +20060601, 1.29, 0.75, -0.17, -0.27, 0.15, 0.018 +20060602, 0.16, -0.01, 0.22, 0.09, -0.12, 0.018 +20060605, -1.94, -1.18, 0.20, -0.15, 0.18, 0.018 +20060606, -0.28, -0.16, -0.09, 0.45, 0.06, 0.018 +20060607, -0.57, 0.00, -0.19, -0.35, -0.01, 0.018 +20060608, 0.01, -0.25, 0.04, 0.41, -0.16, 0.018 +20060609, -0.44, -0.23, -0.05, 0.15, 0.13, 0.018 +20060612, -1.48, -1.25, 0.27, 0.36, -0.01, 0.018 +20060613, -1.15, -0.46, -0.41, 0.29, 0.01, 0.018 +20060614, 0.46, 0.10, -0.22, 0.04, 0.24, 0.018 +20060615, 2.33, 1.11, 0.27, -0.44, 0.03, 0.018 +20060616, -0.43, -0.72, 0.01, 0.20, 0.07, 0.018 +20060619, -1.01, -0.79, 0.15, -0.33, 0.18, 0.018 +20060620, -0.07, -0.37, 0.07, 0.03, 0.01, 0.018 +20060621, 1.11, 0.74, -0.17, 0.02, -0.12, 0.018 +20060622, -0.52, 0.23, 0.16, 0.36, -0.28, 0.018 +20060623, 0.03, 0.31, 0.22, 0.16, -0.33, 0.018 +20060626, 0.50, 0.58, 0.19, 0.02, -0.10, 0.018 +20060627, -1.00, -0.68, 0.28, 0.36, -0.17, 0.018 +20060628, 0.47, -0.35, 0.15, 0.22, -0.07, 0.018 +20060629, 2.29, 1.43, -0.25, 0.00, -0.05, 0.018 +20060630, -0.02, 1.17, 0.14, -0.25, 0.22, 0.018 +20060703, 0.72, -0.03, -0.24, 0.30, -0.05, 0.020 +20060705, -0.88, -0.52, 0.38, 0.15, 0.03, 0.020 +20060706, 0.23, -0.11, 0.03, 0.12, 0.25, 0.020 +20060707, -0.80, -0.78, 0.72, 0.05, 0.23, 0.020 +20060710, 0.04, -0.21, 0.51, 0.46, 0.20, 0.020 +20060711, 0.37, 0.29, -0.16, -0.17, -0.24, 0.020 +20060712, -1.21, -0.60, 0.35, -0.08, 0.07, 0.020 +20060713, -1.43, -0.57, 0.07, 0.21, 0.01, 0.020 +20060714, -0.60, -0.29, 0.15, 0.48, -0.11, 0.020 +20060717, -0.22, -0.50, 0.08, -0.27, 0.37, 0.020 +20060718, 0.17, 0.16, 0.30, 0.07, 0.11, 0.020 +20060719, 1.98, 0.96, -0.27, 0.22, -0.07, 0.020 +20060720, -1.11, -1.56, 0.60, -0.20, 0.21, 0.020 +20060721, -0.89, -0.80, 0.33, 0.58, 0.43, 0.020 +20060724, 1.75, 0.84, -0.49, 0.22, -0.34, 0.020 +20060725, 0.69, 0.21, 0.01, -0.21, -0.27, 0.020 +20060726, -0.13, -0.28, 0.48, -0.12, 0.23, 0.020 +20060727, -0.58, -0.71, 0.36, -0.23, 0.01, 0.020 +20060728, 1.31, 0.64, -0.15, 0.01, 0.12, 0.020 +20060731, -0.09, 0.27, -0.09, -0.02, -0.22, 0.020 +20060801, -0.60, -0.89, 0.34, 0.22, -0.11, 0.018 +20060802, 0.64, 0.27, -0.25, -0.15, -0.10, 0.018 +20060803, 0.27, 0.79, -0.46, 0.38, 0.05, 0.018 +20060804, -0.13, -0.45, 0.16, 0.07, 0.00, 0.018 +20060807, -0.35, -0.30, 0.10, 0.32, -0.17, 0.018 +20060808, -0.42, -0.76, 0.10, 0.09, -0.07, 0.018 +20060809, -0.52, -0.47, -0.01, -0.13, 0.61, 0.018 +20060810, 0.49, 0.28, -0.39, -0.01, 0.23, 0.018 +20060811, -0.49, -0.55, 0.19, -0.01, 0.01, 0.018 +20060814, 0.12, 0.16, -0.31, -0.24, 0.64, 0.018 +20060815, 1.46, 0.71, -0.41, -0.38, -0.11, 0.018 +20060816, 0.90, 0.54, -0.51, -0.25, -0.09, 0.018 +20060817, 0.18, 0.31, -0.18, -0.51, 0.18, 0.018 +20060818, 0.30, -0.17, -0.12, 0.14, -0.06, 0.018 +20060821, -0.48, -0.46, 0.15, 0.07, 0.15, 0.018 +20060822, 0.07, 0.27, 0.06, -0.06, -0.03, 0.018 +20060823, -0.55, -0.74, 0.15, -0.26, 0.40, 0.018 +20060824, 0.16, -0.20, 0.08, -0.11, 0.01, 0.018 +20060825, -0.07, 0.19, -0.09, -0.05, 0.02, 0.018 +20060828, 0.58, 0.37, -0.12, -0.14, 0.19, 0.018 +20060829, 0.33, 0.86, -0.12, -0.36, 0.32, 0.018 +20060830, 0.13, 0.67, -0.28, -0.37, 0.08, 0.018 +20060831, 0.03, 0.06, 0.23, 0.01, -0.05, 0.018 +20060901, 0.49, -0.26, -0.04, 0.23, -0.05, 0.020 +20060905, 0.21, 0.53, 0.02, 0.04, -0.49, 0.020 +20060906, -1.13, -0.97, 0.46, 0.07, 0.52, 0.020 +20060907, -0.50, -0.18, 0.21, 0.06, -0.06, 0.020 +20060908, 0.32, -0.11, -0.12, -0.16, 0.41, 0.020 +20060911, -0.03, -0.20, -0.08, -0.14, 0.53, 0.020 +20060912, 1.18, 1.10, -0.32, -0.06, -0.14, 0.020 +20060913, 0.45, 0.45, -0.08, 0.20, -0.25, 0.020 +20060914, -0.16, -0.25, 0.08, -0.14, 0.19, 0.020 +20060915, 0.21, -0.02, -0.28, 0.22, -0.20, 0.020 +20060918, 0.04, -0.02, -0.30, 0.29, -0.20, 0.020 +20060919, -0.29, -0.21, 0.19, 0.14, 0.24, 0.020 +20060920, 0.60, 0.50, 0.01, -0.32, 0.31, 0.020 +20060921, -0.59, -0.34, 0.07, 0.34, -0.29, 0.020 +20060922, -0.41, -0.81, 0.51, 0.09, 0.09, 0.020 +20060925, 0.86, 0.15, 0.09, -0.21, 0.20, 0.020 +20060926, 0.71, -0.36, -0.18, 0.41, -0.18, 0.020 +20060927, 0.08, 0.39, -0.27, 0.20, 0.05, 0.020 +20060928, 0.15, -0.12, -0.19, -0.02, -0.14, 0.020 +20060929, -0.33, -0.61, 0.25, -0.36, -0.04, 0.020 +20061002, -0.43, -0.55, 0.19, -0.12, 0.35, 0.018 +20061003, 0.13, -0.36, 0.46, -0.33, 0.46, 0.018 +20061004, 1.28, 0.70, -0.52, 0.11, -0.10, 0.018 +20061005, 0.43, 0.92, -0.37, 0.04, -0.24, 0.018 +20061006, -0.31, -0.06, -0.09, -0.08, 0.08, 0.018 +20061009, 0.20, 0.44, 0.11, -0.11, -0.03, 0.018 +20061010, 0.21, 0.03, 0.00, 0.31, -0.31, 0.018 +20061011, -0.30, -0.28, 0.23, -0.25, 0.23, 0.018 +20061012, 1.07, 0.94, -0.19, 0.02, -0.24, 0.018 +20061013, 0.22, 0.48, -0.06, -0.06, -0.18, 0.018 +20061016, 0.34, 0.62, -0.32, 0.18, -0.22, 0.018 +20061017, -0.44, -0.18, 0.42, -0.13, 0.36, 0.018 +20061018, 0.08, -0.33, 0.03, 0.11, 0.21, 0.018 +20061019, 0.10, 0.45, -0.09, -0.01, -0.24, 0.018 +20061020, -0.02, -0.72, 0.04, 0.11, 0.18, 0.018 +20061023, 0.56, -0.47, -0.19, 0.06, -0.10, 0.018 +20061024, 0.01, -0.15, 0.22, 0.38, -0.51, 0.018 +20061025, 0.32, 0.24, -0.08, 0.23, -0.11, 0.018 +20061026, 0.63, 0.43, 0.20, -0.40, 0.10, 0.018 +20061027, -0.88, -0.32, 0.12, -0.03, 0.29, 0.018 +20061030, 0.07, 0.39, -0.01, -0.22, 0.38, 0.018 +20061031, -0.07, -0.35, -0.11, -0.04, -0.15, 0.018 +20061101, -0.87, -0.94, 0.27, 0.30, 0.51, 0.020 +20061102, -0.05, -0.22, 0.06, -0.13, -0.17, 0.020 +20061103, -0.12, 0.56, -0.14, -0.02, -0.15, 0.020 +20061106, 1.16, 0.23, -0.12, -0.06, -0.03, 0.020 +20061107, 0.23, 0.02, -0.30, -0.31, 0.09, 0.020 +20061108, 0.29, 0.35, 0.34, -0.14, 0.00, 0.020 +20061109, -0.58, -0.39, 0.33, 0.23, 0.10, 0.020 +20061110, 0.26, 0.66, -0.02, -0.20, -0.08, 0.020 +20061113, 0.27, 0.14, 0.03, -0.30, 0.01, 0.020 +20061114, 0.71, 0.87, -0.23, 0.16, -0.15, 0.020 +20061115, 0.35, 0.54, -0.41, 0.09, -0.11, 0.020 +20061116, 0.16, -0.33, 0.11, -0.26, 0.52, 0.020 +20061117, 0.03, -0.35, -0.12, 0.14, -0.08, 0.020 +20061120, -0.06, 0.23, 0.05, 0.05, -0.05, 0.020 +20061121, 0.14, 0.02, -0.08, 0.16, -0.50, 0.020 +20061122, 0.28, -0.15, -0.25, -0.07, -0.01, 0.020 +20061124, -0.32, 0.26, 0.09, -0.02, -0.11, 0.020 +20061127, -1.53, -0.95, 0.32, 0.26, 0.06, 0.020 +20061128, 0.30, -0.01, -0.04, 0.28, -0.17, 0.020 +20061129, 0.95, 0.19, -0.04, 0.21, -0.40, 0.020 +20061130, 0.11, 0.12, 0.21, -0.29, -0.14, 0.020 +20061201, -0.30, -0.30, 0.11, 0.10, -0.03, 0.020 +20061204, 0.99, 0.83, -0.16, 0.02, 0.00, 0.020 +20061205, 0.41, -0.16, 0.24, -0.03, -0.12, 0.020 +20061206, -0.10, -0.06, 0.23, -0.13, -0.06, 0.020 +20061207, -0.41, 0.01, 0.08, -0.03, 0.21, 0.020 +20061208, 0.14, -0.16, 0.01, -0.17, 0.20, 0.020 +20061211, 0.18, -0.24, 0.65, -0.14, 0.04, 0.020 +20061212, -0.20, -0.47, 0.45, -0.10, 0.20, 0.020 +20061213, 0.09, -0.03, 0.17, 0.23, -0.02, 0.020 +20061214, 0.80, -0.13, -0.12, 0.20, 0.29, 0.020 +20061215, 0.07, -0.32, 0.40, -0.36, 0.31, 0.020 +20061218, -0.46, -0.95, 0.17, -0.31, 0.42, 0.020 +20061219, 0.16, -0.12, 0.04, 0.11, 0.05, 0.020 +20061220, -0.12, 0.56, 0.08, -0.17, 0.22, 0.020 +20061221, -0.38, 0.04, 0.35, -0.09, 0.16, 0.020 +20061222, -0.48, 0.30, 0.08, -0.07, 0.11, 0.020 +20061226, 0.44, 0.37, 0.37, 0.03, 0.25, 0.020 +20061227, 0.74, 0.52, -0.05, 0.21, -0.08, 0.020 +20061228, -0.18, -0.17, -0.01, 0.09, -0.10, 0.020 +20061229, -0.51, -0.29, -0.02, -0.14, -0.07, 0.020 +20070103, -0.04, 0.00, 0.14, -0.10, 0.85, 0.022 +20070104, 0.16, 0.13, -0.52, -0.24, 0.04, 0.022 +20070105, -0.73, -0.93, -0.33, 0.12, -0.19, 0.022 +20070108, 0.24, -0.05, 0.08, 0.04, 0.02, 0.022 +20070109, 0.00, 0.21, -0.20, 0.15, 0.25, 0.022 +20070110, 0.23, -0.14, -0.17, -0.45, -0.05, 0.022 +20070111, 0.74, 0.46, -0.29, -0.02, 0.32, 0.022 +20070112, 0.50, 0.22, -0.28, 0.18, -0.14, 0.022 +20070116, 0.00, -0.30, 0.06, -0.22, 0.21, 0.022 +20070117, -0.14, -0.17, -0.05, 0.27, -0.21, 0.022 +20070118, -0.48, -0.94, 0.53, 0.36, 0.44, 0.022 +20070119, 0.33, 0.44, 0.07, 0.09, -0.40, 0.022 +20070122, -0.55, -0.38, 0.34, 0.09, 0.19, 0.022 +20070123, 0.37, 0.65, 0.07, 0.29, -0.41, 0.022 +20070124, 0.84, 0.18, -0.05, -0.16, -0.40, 0.022 +20070125, -1.15, -0.07, -0.10, -0.19, 0.05, 0.022 +20070126, -0.06, 0.57, 0.10, 0.12, -0.06, 0.022 +20070129, 0.02, 0.60, 0.23, -0.14, 0.15, 0.022 +20070130, 0.52, 0.04, 0.22, -0.19, -0.26, 0.022 +20070131, 0.64, -0.41, 0.03, 0.17, -0.15, 0.022 +20070201, 0.59, 0.36, -0.24, 0.19, -0.12, 0.020 +20070202, 0.15, 0.12, 0.27, 0.00, -0.11, 0.020 +20070205, -0.12, -0.25, 0.13, -0.14, 0.03, 0.020 +20070206, 0.10, 0.29, 0.19, -0.14, -0.04, 0.020 +20070207, 0.21, 0.38, -0.01, -0.41, 0.11, 0.020 +20070208, -0.10, 0.21, -0.22, -0.13, -0.19, 0.020 +20070209, -0.76, -0.29, 0.15, 0.03, 0.19, 0.020 +20070212, -0.35, 0.22, 0.09, 0.04, 0.22, 0.020 +20070213, 0.72, -0.08, 0.33, 0.03, -0.06, 0.020 +20070214, 0.73, -0.52, -0.17, -0.07, -0.06, 0.020 +20070215, 0.11, 0.09, -0.37, 0.10, -0.05, 0.020 +20070216, 0.00, 0.33, 0.07, -0.14, -0.39, 0.020 +20070220, 0.42, 0.60, -0.18, -0.06, -0.12, 0.020 +20070221, -0.09, 0.31, -0.21, 0.19, -0.05, 0.020 +20070222, -0.06, 0.36, -0.12, -0.04, -0.18, 0.020 +20070223, -0.31, 0.13, -0.26, 0.07, -0.07, 0.020 +20070226, -0.19, -0.13, 0.09, 0.17, 0.04, 0.020 +20070227, -3.43, -0.17, 0.02, 0.03, 0.21, 0.020 +20070228, 0.47, -0.50, 0.35, -0.17, -0.12, 0.020 +20070301, -0.25, -0.04, 0.19, 0.19, 0.07, 0.019 +20070302, -1.24, -0.64, 0.23, -0.18, 0.00, 0.019 +20070305, -1.11, -0.76, -0.28, -0.03, 0.38, 0.019 +20070306, 1.58, 0.68, 0.00, 0.12, -0.18, 0.019 +20070307, -0.21, -0.03, -0.02, 0.23, -0.18, 0.019 +20070308, 0.68, -0.07, 0.11, 0.03, -0.03, 0.019 +20070309, 0.09, 0.30, 0.14, -0.02, 0.06, 0.019 +20070312, 0.28, 0.24, -0.12, -0.25, 0.20, 0.019 +20070313, -2.03, -0.32, -0.12, -0.24, 0.05, 0.019 +20070314, 0.57, 0.09, -0.09, 0.37, -0.32, 0.019 +20070315, 0.44, 0.49, 0.13, 0.06, -0.03, 0.019 +20070316, -0.42, -0.14, -0.17, -0.14, -0.02, 0.019 +20070319, 1.08, -0.09, 0.02, 0.07, -0.04, 0.019 +20070320, 0.67, 0.08, 0.14, 0.14, -0.11, 0.019 +20070321, 1.64, -0.13, -0.10, 0.07, -0.22, 0.019 +20070322, -0.02, 0.19, -0.31, 0.16, -0.35, 0.019 +20070323, 0.08, 0.13, 0.04, -0.03, -0.06, 0.019 +20070326, 0.06, -0.07, -0.08, -0.04, -0.06, 0.019 +20070327, -0.61, -0.17, -0.02, -0.13, -0.19, 0.019 +20070328, -0.74, 0.20, -0.04, -0.06, 0.23, 0.019 +20070329, 0.29, -0.13, 0.17, 0.32, 0.03, 0.019 +20070330, -0.07, 0.27, -0.05, -0.36, 0.20, 0.019 +20070402, 0.22, 0.05, -0.11, 0.06, 0.01, 0.022 +20070403, 0.93, 0.01, -0.12, -0.15, -0.08, 0.022 +20070404, 0.09, -0.18, -0.25, 0.06, 0.22, 0.022 +20070405, 0.31, 0.01, -0.08, -0.17, 0.12, 0.022 +20070409, 0.05, -0.20, 0.07, 0.01, 0.16, 0.022 +20070410, 0.22, 0.09, 0.02, 0.02, -0.13, 0.022 +20070411, -0.64, -0.07, 0.12, -0.12, 0.01, 0.022 +20070412, 0.61, 0.25, -0.19, -0.02, 0.03, 0.022 +20070413, 0.34, 0.23, -0.08, -0.07, 0.18, 0.022 +20070416, 1.06, 0.32, 0.11, 0.28, -0.19, 0.022 +20070417, 0.09, -0.48, -0.12, 0.06, 0.01, 0.022 +20070418, 0.00, -0.61, 0.44, -0.12, 0.08, 0.022 +20070419, -0.23, -0.37, 0.03, 0.16, 0.43, 0.022 +20070420, 0.89, 0.21, 0.04, 0.31, -0.15, 0.022 +20070423, -0.24, 0.05, -0.29, -0.23, -0.17, 0.022 +20070424, -0.10, -0.07, -0.24, -0.04, 0.22, 0.022 +20070425, 0.91, -0.31, 0.17, 0.38, 0.04, 0.022 +20070426, -0.02, 0.31, -0.34, 0.19, -0.19, 0.022 +20070427, -0.13, -0.33, -0.31, 0.25, 0.27, 0.022 +20070430, -0.93, -0.85, 0.02, 0.15, 0.11, 0.022 +20070501, 0.22, -0.12, 0.03, 0.29, 0.28, 0.018 +20070502, 0.79, 0.65, 0.02, -0.06, -0.03, 0.018 +20070503, 0.37, -0.30, 0.32, 0.14, -0.07, 0.018 +20070504, 0.25, 0.19, -0.02, -0.11, -0.09, 0.018 +20070507, 0.18, -0.33, 0.32, -0.10, 0.29, 0.018 +20070508, -0.13, -0.04, -0.11, 0.17, 0.00, 0.018 +20070509, 0.35, 0.09, -0.02, 0.18, -0.37, 0.018 +20070510, -1.42, -0.50, 0.29, 0.01, 0.03, 0.018 +20070511, 0.95, 0.18, 0.06, -0.13, -0.31, 0.018 +20070514, -0.28, -0.56, 0.07, 0.09, 0.04, 0.018 +20070515, -0.27, -0.72, 0.28, 0.12, 0.25, 0.018 +20070516, 0.82, -0.18, 0.05, 0.12, 0.09, 0.018 +20070517, -0.10, -0.32, 0.03, 0.16, -0.41, 0.018 +20070518, 0.66, 0.36, -0.49, 0.08, -0.10, 0.018 +20070521, 0.31, 0.94, -0.28, -0.03, -0.24, 0.018 +20070522, 0.08, 0.67, -0.04, -0.18, -0.23, 0.018 +20070523, -0.18, -0.18, -0.12, 0.12, 0.06, 0.018 +20070524, -1.07, -0.44, -0.05, 0.05, 0.11, 0.018 +20070525, 0.55, 0.22, -0.07, 0.04, 0.03, 0.018 +20070529, 0.24, 0.59, 0.01, 0.04, 0.00, 0.018 +20070530, 0.77, -0.22, -0.01, 0.07, -0.37, 0.018 +20070531, 0.13, 0.33, -0.30, 0.02, -0.22, 0.018 +20070601, 0.44, 0.35, -0.05, 0.24, -0.14, 0.019 +20070604, 0.18, 0.05, 0.00, 0.03, -0.39, 0.019 +20070605, -0.55, -0.13, -0.22, 0.06, -0.05, 0.019 +20070606, -0.92, 0.06, 0.05, -0.20, -0.16, 0.019 +20070607, -1.75, -0.03, 0.06, -0.10, -0.04, 0.019 +20070608, 1.07, -0.07, 0.03, -0.02, 0.20, 0.019 +20070611, 0.08, -0.24, 0.10, 0.01, -0.02, 0.019 +20070612, -1.06, -0.16, -0.18, 0.13, 0.06, 0.019 +20070613, 1.37, -0.19, -0.10, 0.09, 0.13, 0.019 +20070614, 0.50, 0.11, -0.07, 0.01, 0.03, 0.019 +20070615, 0.69, 0.52, -0.07, 0.14, 0.22, 0.019 +20070618, -0.13, 0.02, -0.11, 0.06, -0.19, 0.019 +20070619, 0.14, 0.03, 0.15, -0.18, 0.31, 0.019 +20070620, -1.29, 0.05, -0.18, -0.02, 0.19, 0.019 +20070621, 0.56, -0.18, 0.01, 0.05, -0.08, 0.019 +20070622, -1.25, 0.59, -0.01, -0.15, -0.18, 0.019 +20070625, -0.39, -0.43, -0.11, 0.13, 0.11, 0.019 +20070626, -0.35, 0.15, -0.31, 0.07, 0.31, 0.019 +20070627, 0.92, 0.48, -0.39, 0.21, -0.20, 0.019 +20070628, 0.03, 0.13, 0.15, 0.00, 0.07, 0.019 +20070629, -0.19, -0.33, 0.11, 0.00, -0.09, 0.019 +20070702, 1.06, -0.01, 0.11, 0.02, 0.17, 0.019 +20070703, 0.36, -0.05, -0.10, 0.29, -0.17, 0.019 +20070705, 0.07, 0.14, -0.60, 0.23, -0.09, 0.019 +20070706, 0.40, -0.08, -0.08, 0.12, -0.22, 0.019 +20070709, 0.10, 0.07, -0.06, -0.03, -0.10, 0.019 +20070710, -1.43, -0.20, -0.38, 0.14, 0.01, 0.019 +20070711, 0.55, -0.25, -0.10, 0.15, -0.10, 0.019 +20070712, 1.78, -0.18, -0.31, 0.26, -0.15, 0.019 +20070713, 0.28, -0.27, 0.08, 0.03, -0.09, 0.019 +20070716, -0.31, -0.51, -0.24, -0.04, 0.19, 0.019 +20070717, 0.02, 0.10, -0.23, -0.22, 0.27, 0.019 +20070718, -0.25, -0.20, -0.19, 0.25, -0.12, 0.019 +20070719, 0.44, 0.26, -0.48, -0.08, 0.19, 0.019 +20070720, -1.25, -0.33, -0.19, -0.08, -0.13, 0.019 +20070723, 0.36, -0.49, -0.42, -0.10, 0.14, 0.019 +20070724, -2.04, -0.61, -0.22, -0.28, 0.05, 0.019 +20070725, 0.30, -0.41, 0.08, -0.04, -0.02, 0.019 +20070726, -2.36, -0.04, -0.23, -0.05, -0.50, 0.019 +20070727, -1.51, -0.05, 0.14, 0.04, -0.34, 0.019 +20070730, 0.93, -0.24, -0.07, 0.04, -0.27, 0.019 +20070731, -1.19, 0.34, -0.02, -0.05, 0.18, 0.019 +20070801, 0.51, -0.51, -0.25, 0.27, 0.20, 0.018 +20070802, 0.55, 0.13, -0.36, -0.38, -0.10, 0.018 +20070803, -2.66, -0.76, -0.72, -0.37, -0.09, 0.018 +20070806, 2.07, -1.10, -0.41, 0.49, -0.21, 0.018 +20070807, 0.65, 0.31, -0.67, 0.04, -0.78, 0.018 +20070808, 1.47, 1.07, -0.73, -0.53, -0.83, 0.018 +20070809, -2.74, 1.46, -0.61, -0.85, -0.68, 0.018 +20070810, 0.03, 0.22, 1.35, 0.56, 1.00, 0.018 +20070813, -0.06, -1.09, 0.32, -0.02, 0.34, 0.018 +20070814, -1.83, -0.13, -0.19, 0.02, 0.43, 0.018 +20070815, -1.46, 0.00, -0.04, -0.06, 0.13, 0.018 +20070816, 0.31, 1.37, 1.16, -0.16, 0.28, 0.018 +20070817, 2.36, -0.35, 0.38, -0.08, -0.24, 0.018 +20070820, 0.00, 0.17, -0.31, 0.06, 0.05, 0.018 +20070821, 0.15, -0.05, 0.08, -0.24, 0.08, 0.018 +20070822, 1.20, 0.05, -0.01, 0.01, 0.05, 0.018 +20070823, -0.23, -0.98, 0.16, -0.16, 0.00, 0.018 +20070824, 1.21, 0.12, -0.22, 0.34, -0.04, 0.018 +20070827, -0.85, -0.15, -0.14, 0.05, 0.09, 0.018 +20070828, -2.33, -0.15, -0.41, 0.07, -0.07, 0.018 +20070829, 2.13, 0.12, 0.01, 0.04, 0.05, 0.018 +20070830, -0.43, -0.06, -0.48, -0.11, -0.14, 0.018 +20070831, 1.12, 0.05, -0.08, 0.14, -0.08, 0.018 +20070904, 1.03, -0.18, 0.04, -0.29, -0.39, 0.017 +20070905, -1.05, -0.03, -0.32, 0.05, -0.29, 0.017 +20070906, 0.42, -0.03, -0.19, -0.17, 0.12, 0.017 +20070907, -1.70, -0.30, 0.19, 0.00, -0.11, 0.017 +20070910, -0.27, -0.57, -0.22, -0.15, -0.17, 0.017 +20070911, 1.35, 0.04, -0.34, -0.02, -0.27, 0.017 +20070912, -0.03, -0.43, -0.20, 0.16, -0.31, 0.017 +20070913, 0.69, -0.59, 0.30, 0.09, -0.35, 0.017 +20070914, 0.10, 0.36, -0.06, 0.23, -0.19, 0.017 +20070917, -0.60, -0.43, 0.04, 0.03, 0.05, 0.017 +20070918, 2.88, 0.68, 0.37, 0.31, -0.16, 0.017 +20070919, 0.59, 0.58, 0.24, -0.13, 0.07, 0.017 +20070920, -0.65, -0.19, -0.31, -0.10, -0.25, 0.017 +20070921, 0.43, -0.21, -0.24, -0.02, -0.24, 0.017 +20070924, -0.56, -0.46, -0.63, -0.16, -0.17, 0.017 +20070925, -0.03, -0.34, -0.38, -0.26, -0.20, 0.017 +20070926, 0.60, 0.17, -0.07, -0.06, 0.00, 0.017 +20070927, 0.43, 0.21, -0.03, 0.09, -0.20, 0.017 +20070928, -0.37, -0.61, 0.03, -0.18, -0.05, 0.017 +20071001, 1.37, 0.80, 0.07, -0.17, 0.25, 0.014 +20071002, 0.11, 0.69, 0.18, -0.11, -0.21, 0.014 +20071003, -0.48, -0.20, -0.17, 0.07, 0.07, 0.014 +20071004, 0.18, 0.02, 0.05, -0.05, 0.03, 0.014 +20071005, 1.10, 0.67, -0.07, -0.14, -0.16, 0.014 +20071008, -0.27, -0.21, -0.29, -0.24, -0.12, 0.014 +20071009, 0.78, -0.21, -0.15, 0.07, -0.08, 0.014 +20071010, -0.13, 0.00, -0.40, -0.03, -0.43, 0.014 +20071011, -0.58, -0.62, 0.60, -0.07, -0.08, 0.014 +20071012, 0.51, 0.06, -0.31, -0.47, -0.16, 0.014 +20071015, -0.89, -0.38, -0.22, 0.25, 0.02, 0.014 +20071016, -0.67, -0.05, -0.28, 0.15, 0.20, 0.014 +20071017, 0.22, -0.16, -0.26, -0.44, -0.06, 0.014 +20071018, -0.10, 0.07, -0.38, 0.13, -0.17, 0.014 +20071019, -2.45, -0.50, 0.02, -0.18, 0.11, 0.014 +20071022, 0.47, 0.87, 0.05, 0.09, 0.22, 0.014 +20071023, 0.85, 0.05, -0.54, -0.10, -0.40, 0.014 +20071024, -0.33, -0.47, -0.20, 0.48, 0.17, 0.014 +20071025, -0.19, -0.35, -0.03, 0.86, 0.46, 0.014 +20071026, 1.38, 0.29, 0.37, -0.20, 0.21, 0.014 +20071029, 0.40, -0.30, -0.58, 0.13, -0.43, 0.014 +20071030, -0.64, -0.03, 0.13, -0.43, 0.49, 0.014 +20071031, 1.23, 0.04, -0.12, 0.07, -0.05, 0.014 +20071101, -2.66, -1.00, -0.43, -0.17, 0.09, 0.016 +20071102, 0.08, 0.19, -0.90, 0.28, -0.04, 0.016 +20071105, -0.59, -0.34, -0.11, -0.10, 0.10, 0.016 +20071106, 1.19, 0.09, -0.17, 0.44, -0.44, 0.016 +20071107, -2.77, -0.14, -0.46, 0.11, -0.12, 0.016 +20071108, -0.05, 0.65, 1.17, 0.14, 0.56, 0.016 +20071109, -1.46, 0.33, 0.86, 0.17, 0.05, 0.016 +20071112, -1.08, 0.43, 0.28, 0.48, 0.78, 0.016 +20071113, 2.81, -0.44, 0.05, 0.07, -0.71, 0.016 +20071114, -0.63, -0.21, -0.18, 0.06, -0.30, 0.016 +20071115, -1.25, -0.10, -0.06, -0.29, 0.14, 0.016 +20071116, 0.41, -0.67, -0.63, 0.05, -0.47, 0.016 +20071119, -1.81, -0.37, -0.37, 0.52, 0.31, 0.016 +20071120, 0.31, -0.50, -0.10, 0.75, -0.28, 0.016 +20071121, -1.54, 0.37, 0.09, 0.15, 0.12, 0.016 +20071123, 1.59, 0.25, 0.19, 0.15, -0.05, 0.016 +20071126, -2.09, -0.15, -0.65, -0.08, -0.42, 0.016 +20071127, 1.31, -0.63, -0.20, -0.28, 0.22, 0.016 +20071128, 2.90, 0.34, -0.19, -0.22, -0.02, 0.016 +20071129, 0.01, -0.50, -0.31, -0.18, -0.18, 0.016 +20071130, 0.70, -0.50, 0.86, -0.06, 0.27, 0.016 +20071203, -0.60, -0.49, 0.10, -0.08, -0.27, 0.014 +20071204, -0.61, -0.17, -0.15, 0.14, 0.04, 0.014 +20071205, 1.47, 0.04, -0.04, 0.07, -0.03, 0.014 +20071206, 1.55, 0.97, 0.27, -0.03, 0.04, 0.014 +20071207, -0.07, 0.01, -0.05, 0.16, -0.08, 0.014 +20071210, 0.71, -0.11, 0.24, 0.33, -0.20, 0.014 +20071211, -2.50, -0.36, -0.07, -0.18, -0.30, 0.014 +20071212, 0.48, 0.08, -0.20, 0.24, -0.30, 0.014 +20071213, 0.06, -0.36, -0.31, 0.06, 0.64, 0.014 +20071214, -1.36, -0.51, -0.26, -0.07, -0.08, 0.014 +20071217, -1.59, -0.22, 0.31, 0.54, 0.47, 0.014 +20071218, 0.65, 1.12, -0.01, 0.26, 0.22, 0.014 +20071219, -0.10, 0.30, -0.42, 0.16, -0.19, 0.014 +20071220, 0.64, 0.74, -0.39, -0.31, -0.10, 0.014 +20071221, 1.64, 0.41, -0.02, -0.04, -0.19, 0.014 +20071224, 0.80, 0.13, 0.21, 0.07, -0.08, 0.014 +20071226, 0.10, 0.24, -0.04, -0.32, -0.26, 0.014 +20071227, -1.49, -1.21, 0.04, -0.14, -0.21, 0.014 +20071228, 0.12, -0.34, -0.14, 0.14, -0.29, 0.014 +20071231, -0.65, 0.04, 0.42, -0.29, 0.10, 0.014 +20080102, -1.46, -0.11, -0.10, 0.19, -0.35, 0.010 +20080103, -0.14, -1.07, -0.37, -0.12, -0.32, 0.010 +20080104, -2.56, -0.51, 0.13, 0.08, 0.10, 0.010 +20080107, 0.16, 0.10, 0.13, 0.36, 1.04, 0.010 +20080108, -1.81, -0.59, -0.86, 0.10, -0.06, 0.010 +20080109, 1.10, -0.39, -0.63, 0.76, 0.10, 0.010 +20080110, 0.89, -0.06, 0.57, -0.69, -0.01, 0.010 +20080111, -1.42, -0.75, 0.25, -0.09, -0.07, 0.010 +20080114, 1.02, -0.01, -0.19, 0.20, -0.18, 0.010 +20080115, -2.39, 0.38, -0.12, -0.07, 0.55, 0.010 +20080116, -0.51, 0.86, 1.20, -0.49, 0.48, 0.010 +20080117, -2.80, 0.22, -0.11, -0.53, 0.26, 0.010 +20080118, -0.56, -0.37, -0.87, 0.63, -0.51, 0.010 +20080122, -0.98, 0.55, 1.19, 0.31, -0.21, 0.010 +20080123, 2.04, 0.99, 1.65, 0.90, 1.19, 0.010 +20080124, 1.02, -0.98, -0.53, 0.23, -0.21, 0.010 +20080125, -1.39, 0.86, 0.25, -0.25, -0.03, 0.010 +20080128, 1.71, 0.20, 0.99, 0.10, 0.33, 0.010 +20080129, 0.69, -0.29, 0.99, -0.17, 0.05, 0.010 +20080130, -0.59, -0.39, -0.10, 0.25, 0.11, 0.010 +20080131, 1.66, 0.87, 0.46, 0.42, 0.11, 0.010 +20080201, 1.48, 0.70, 0.06, -0.77, -0.45, 0.007 +20080204, -0.99, 0.05, -0.18, -0.47, -0.10, 0.007 +20080205, -3.01, 0.33, 0.03, 0.06, 0.29, 0.007 +20080206, -0.85, -0.40, 0.51, -0.20, 0.35, 0.007 +20080207, 0.82, 0.44, 0.04, 0.45, -0.31, 0.007 +20080208, -0.30, -0.15, -0.33, -0.05, -0.24, 0.007 +20080211, 0.58, -0.24, -0.59, 0.33, -0.25, 0.007 +20080212, 0.61, -0.11, -0.06, -0.06, 0.44, 0.007 +20080213, 1.46, 0.73, 0.03, -0.32, -0.40, 0.007 +20080214, -1.35, -0.79, 0.14, -0.04, -0.04, 0.007 +20080215, -0.02, -0.75, 0.33, -0.08, 0.18, 0.007 +20080219, -0.06, 0.24, -0.36, 0.60, -0.30, 0.007 +20080220, 0.83, 0.29, -0.01, 1.05, 0.16, 0.007 +20080221, -1.28, -0.40, -0.19, -0.20, 0.04, 0.007 +20080222, 0.61, -0.81, 0.63, 0.19, -0.05, 0.007 +20080225, 1.46, 0.50, -0.06, 0.24, -0.10, 0.007 +20080226, 0.72, 0.46, -0.09, 0.37, 0.20, 0.007 +20080227, -0.11, -0.05, -0.24, -0.15, -0.13, 0.007 +20080228, -0.93, -0.44, -0.48, 0.20, -0.60, 0.007 +20080229, -2.64, -0.03, -0.16, -0.33, 0.13, 0.007 +20080303, -0.04, -0.21, -0.34, 0.82, 0.29, 0.009 +20080304, -0.36, -0.11, -0.05, -0.05, 0.43, 0.009 +20080305, 0.56, -0.19, -0.36, 0.22, -0.08, 0.009 +20080306, -2.26, -0.50, -0.23, 0.01, 0.32, 0.009 +20080307, -0.88, 0.26, 0.58, 0.06, 0.43, 0.009 +20080310, -1.72, -0.66, 0.50, 0.62, 0.74, 0.009 +20080311, 3.57, 0.38, 0.23, 0.23, -0.32, 0.009 +20080312, -0.77, 0.07, -0.82, -0.26, -0.20, 0.009 +20080313, 0.65, 1.31, -0.21, 0.44, -0.37, 0.009 +20080314, -2.07, -0.29, -0.26, 0.13, 0.17, 0.009 +20080317, -1.21, -0.83, 0.51, -0.11, 1.05, 0.009 +20080318, 4.09, 0.18, -0.25, 0.32, -0.69, 0.009 +20080319, -2.37, -0.08, 0.19, -0.85, 0.54, 0.009 +20080320, 2.30, -0.01, 0.74, 0.20, -0.27, 0.009 +20080324, 1.71, 1.12, -0.60, -0.32, -0.94, 0.009 +20080325, 0.38, 0.39, -0.17, -0.07, 0.02, 0.009 +20080326, -0.82, 0.59, -0.49, 0.38, -0.55, 0.009 +20080327, -1.13, -0.21, 0.02, -0.53, 0.29, 0.009 +20080328, -0.82, -0.48, 0.26, -0.05, -0.26, 0.009 +20080331, 0.57, 0.11, 0.59, -0.06, -0.23, 0.009 +20080401, 3.37, -0.62, 0.05, 0.00, -0.23, 0.008 +20080402, -0.09, 0.50, -0.14, 0.17, -0.32, 0.008 +20080403, 0.14, -0.08, -0.06, -0.27, 0.12, 0.008 +20080404, 0.16, -0.01, -0.46, -0.03, 0.00, 0.008 +20080407, 0.14, -0.38, 0.49, -0.12, 0.04, 0.008 +20080408, -0.34, 0.35, -0.05, 0.26, -0.37, 0.008 +20080409, -0.96, -0.87, -0.22, 0.15, -0.09, 0.008 +20080410, 0.53, 0.60, -0.55, -0.07, 0.11, 0.008 +20080411, -2.02, -0.55, 0.54, 0.29, 0.12, 0.008 +20080414, -0.38, 0.12, -0.32, 0.60, -0.12, 0.008 +20080415, 0.46, 0.33, 0.27, 0.43, 0.01, 0.008 +20080416, 2.27, 0.56, 0.15, 0.06, 0.01, 0.008 +20080417, -0.10, -0.79, 0.34, -0.03, -0.01, 0.008 +20080418, 1.67, 0.12, -0.65, 0.35, -0.36, 0.008 +20080421, -0.17, -0.16, -0.55, 0.18, -0.47, 0.008 +20080422, -0.97, -1.05, 0.29, 0.14, -0.39, 0.008 +20080423, 0.26, 0.12, -1.16, -0.09, 0.24, 0.008 +20080424, 0.66, 0.58, 0.37, -0.41, 0.42, 0.008 +20080425, 0.68, -0.02, 0.18, 0.31, -0.56, 0.008 +20080428, -0.03, 0.60, 0.19, -0.03, -0.17, 0.008 +20080429, -0.36, -0.40, 0.33, -0.47, -0.23, 0.008 +20080430, -0.30, -0.07, 0.09, -0.16, -0.27, 0.008 +20080501, 1.66, 0.07, 0.22, -0.88, 0.49, 0.008 +20080502, 0.20, -0.71, 0.02, 0.20, -0.24, 0.008 +20080505, -0.41, 0.35, -0.13, 0.78, 0.00, 0.008 +20080506, 0.75, 0.02, 0.29, 0.10, -0.19, 0.008 +20080507, -1.66, 0.01, -0.18, 0.37, 0.39, 0.008 +20080508, 0.37, 0.07, -0.16, -0.15, -0.09, 0.008 +20080509, -0.54, 0.65, -0.25, 0.19, -0.04, 0.008 +20080512, 1.10, 0.67, -0.34, 0.06, 0.39, 0.008 +20080513, 0.09, 0.62, -0.04, 0.20, -0.10, 0.008 +20080514, 0.38, -0.45, 0.17, -0.22, 0.32, 0.008 +20080515, 1.02, -0.10, -0.30, 0.09, 0.15, 0.008 +20080516, 0.10, -0.36, 0.02, 0.29, -0.48, 0.008 +20080519, -0.02, -0.23, 0.24, 0.16, -0.20, 0.008 +20080520, -0.80, 0.56, -0.17, 0.43, -0.32, 0.008 +20080521, -1.56, 0.47, 0.17, 0.09, 0.42, 0.008 +20080522, 0.38, 0.26, -0.04, -0.42, 0.26, 0.008 +20080523, -1.24, 0.08, -0.37, -0.16, -0.14, 0.008 +20080527, 0.72, 0.58, -0.22, -0.24, 0.15, 0.008 +20080528, 0.49, 0.03, -0.06, 0.22, -0.20, 0.008 +20080529, 0.61, 0.29, -0.25, -0.53, 0.10, 0.008 +20080530, 0.29, 0.28, 0.00, 0.11, -0.52, 0.008 +20080602, -0.98, 0.17, 0.24, 0.45, -0.06, 0.008 +20080603, -0.46, 0.23, 0.02, -0.29, 0.14, 0.008 +20080604, 0.02, 0.52, -0.74, -0.29, 0.26, 0.008 +20080605, 1.95, 0.42, -0.09, 0.64, -0.56, 0.008 +20080606, -2.90, 0.14, -0.03, 0.15, -0.46, 0.008 +20080609, -0.03, -0.55, -0.22, 0.92, 0.00, 0.008 +20080610, -0.31, 0.00, -0.22, 0.08, 0.44, 0.008 +20080611, -1.66, -0.17, -0.15, 0.39, -0.18, 0.008 +20080612, 0.31, -0.01, -0.06, -0.23, 0.56, 0.008 +20080613, 1.55, 0.31, -0.35, 0.08, -0.13, 0.008 +20080616, 0.15, 0.87, -0.18, 0.08, -0.40, 0.008 +20080617, -0.55, 0.12, -0.25, 0.41, -0.38, 0.008 +20080618, -0.96, 0.25, 0.26, 0.33, 0.09, 0.008 +20080619, 0.34, 0.44, -0.58, -0.04, 0.45, 0.008 +20080620, -1.79, 0.36, 0.07, 0.33, 0.00, 0.008 +20080623, -0.16, -0.59, -0.31, 1.00, -0.24, 0.008 +20080624, -0.54, -1.20, 0.28, -0.28, 0.30, 0.008 +20080625, 0.64, 0.29, -0.43, -0.42, 0.18, 0.008 +20080626, -2.83, 0.56, 0.13, 0.29, -0.10, 0.008 +20080627, -0.37, 0.22, -0.42, 0.52, -0.34, 0.008 +20080630, -0.07, -1.12, 0.32, 0.52, -0.04, 0.008 +20080701, 0.29, -0.39, 0.28, 0.26, -0.46, 0.007 +20080702, -2.00, -0.85, 0.12, -0.11, 0.22, 0.007 +20080703, -0.15, -0.68, -0.17, 0.40, 0.23, 0.007 +20080707, -0.81, -0.16, -1.12, 0.18, 0.23, 0.007 +20080708, 1.84, 1.38, 2.35, -1.06, 0.26, 0.007 +20080709, -2.06, -0.33, -1.32, 0.37, 0.11, 0.007 +20080710, 0.65, -0.14, -1.23, 0.65, -0.40, 0.007 +20080711, -0.88, 1.27, -1.11, -0.05, 0.08, 0.007 +20080714, -0.93, -0.54, -2.43, 0.72, -0.19, 0.007 +20080715, -0.96, 0.87, -1.17, 0.27, 0.56, 0.007 +20080716, 2.52, 0.94, 4.76, -1.11, -0.02, 0.007 +20080717, 1.13, 0.67, 4.14, -1.15, 0.41, 0.007 +20080718, -0.08, -0.51, 1.12, 0.04, 0.03, 0.007 +20080721, 0.16, 0.27, -0.56, -0.06, -0.48, 0.007 +20080722, 1.37, 1.49, 3.21, -0.75, 0.08, 0.007 +20080723, 0.32, 0.24, 1.61, -0.41, 0.51, 0.007 +20080724, -2.31, 0.10, -2.88, 1.00, -0.10, 0.007 +20080725, 0.47, 0.67, -1.01, 0.26, -0.36, 0.007 +20080728, -1.76, -0.18, -1.39, 0.82, 0.06, 0.007 +20080729, 2.27, 0.24, 3.18, -0.65, 0.23, 0.007 +20080730, 1.58, -1.26, -0.09, 0.25, -0.31, 0.007 +20080731, -1.16, 0.62, 0.37, -1.00, 0.42, 0.007 +20080801, -0.47, 0.78, 0.85, -0.22, -0.42, 0.006 +20080804, -1.09, -0.24, 0.48, 0.00, 0.94, 0.006 +20080805, 2.65, -0.37, 1.65, -0.25, 0.23, 0.006 +20080806, 0.50, 0.33, -1.15, 0.15, -0.84, 0.006 +20080807, -1.73, 0.33, -1.74, 1.00, 0.07, 0.006 +20080808, 2.28, 0.78, 1.38, 0.25, 0.92, 0.006 +20080811, 0.83, 1.53, 1.19, -0.24, 0.31, 0.006 +20080812, -1.05, 0.51, -1.94, 0.61, 0.07, 0.006 +20080813, -0.15, 0.42, -2.02, 0.36, -0.60, 0.006 +20080814, 0.63, 0.28, 1.30, -0.57, -0.02, 0.006 +20080815, 0.38, -0.28, 1.07, -0.23, 0.46, 0.006 +20080818, -1.45, 0.08, -0.89, 0.52, 0.16, 0.006 +20080819, -1.00, -0.74, -1.24, 0.61, -0.32, 0.006 +20080820, 0.54, -0.51, -0.06, 0.35, -0.67, 0.006 +20080821, 0.12, -0.93, -0.45, 0.32, 0.02, 0.006 +20080822, 1.14, 0.59, 1.03, -0.18, 0.45, 0.006 +20080825, -1.92, -0.26, -0.53, 0.10, -0.02, 0.006 +20080826, 0.33, -0.09, 0.15, 0.30, -0.23, 0.006 +20080827, 0.88, 0.35, 0.30, -0.02, -0.12, 0.006 +20080828, 1.51, 0.42, 1.81, -0.93, 0.19, 0.006 +20080829, -1.25, 0.30, 0.62, -0.22, 0.16, 0.006 +20080902, -0.44, 0.63, 2.02, -0.02, 0.87, 0.007 +20080903, -0.23, 0.80, 1.66, -0.10, 0.41, 0.007 +20080904, -2.90, 0.04, -0.47, 0.64, 0.34, 0.007 +20080905, 0.42, -0.55, 1.58, -0.67, 0.05, 0.007 +20080908, 1.76, -0.06, 2.20, 0.19, 0.95, 0.007 +20080909, -3.41, 0.41, -0.70, 0.74, 1.06, 0.007 +20080910, 0.70, 0.33, -0.77, 0.67, -0.38, 0.007 +20080911, 1.22, -0.90, 0.19, 0.78, -0.03, 0.007 +20080912, 0.29, -0.16, -0.20, 0.66, -0.14, 0.007 +20080915, -4.45, 0.89, -2.25, 1.05, 1.22, 0.007 +20080916, 1.65, 0.79, 1.96, -0.28, -0.98, 0.007 +20080917, -4.60, 0.24, -2.13, 0.85, 0.15, 0.007 +20080918, 4.41, 1.89, 4.84, -2.57, -0.33, 0.007 +20080919, 4.27, -1.12, 3.63, -2.62, -1.57, 0.007 +20080922, -3.94, -0.14, -3.39, 1.56, -0.07, 0.007 +20080923, -1.55, 0.02, 0.14, -0.09, 0.28, 0.007 +20080924, -0.32, -1.28, -0.76, 0.14, 0.20, 0.007 +20080925, 1.70, -1.02, 0.64, 0.33, 0.04, 0.007 +20080926, 0.11, -0.57, 0.93, 0.49, -0.26, 0.007 +20080929, -8.26, 2.61, -3.69, 1.30, 1.00, 0.007 +20080930, 4.88, -2.83, 2.88, -0.31, -1.08, 0.007 +20081001, -0.47, -0.58, 2.77, -1.23, 0.13, 0.004 +20081002, -4.20, -0.55, 0.62, 0.08, 1.03, 0.004 +20081003, -1.47, -1.24, -1.23, 0.35, 0.94, 0.004 +20081006, -3.95, 0.00, 0.43, 0.44, 0.62, 0.004 +20081007, -5.76, 0.37, -3.43, 1.11, 0.56, 0.004 +20081008, -1.27, -0.60, -2.20, 0.89, -0.42, 0.004 +20081009, -7.36, -0.65, -2.54, 0.04, 0.02, 0.004 +20081010, -0.95, 4.49, 3.05, -0.80, -0.82, 0.004 +20081013, 11.35, -2.88, -2.33, 0.39, -0.58, 0.004 +20081014, -0.86, -2.07, 4.43, -1.55, 0.24, 0.004 +20081015, -8.78, 0.12, 0.82, -0.21, 0.49, 0.004 +20081016, 4.32, 1.89, -1.63, 1.28, -0.39, 0.004 +20081017, -0.41, -1.11, -0.79, -0.70, 0.13, 0.004 +20081020, 4.55, -1.22, -0.85, 0.36, 0.31, 0.004 +20081021, -2.95, 0.19, 0.55, 0.35, -0.10, 0.004 +20081022, -5.76, 0.74, 0.14, -0.62, 0.03, 0.004 +20081023, 0.29, -3.27, -0.89, 1.95, 0.94, 0.004 +20081024, -3.28, -0.21, -0.36, 0.43, 0.39, 0.004 +20081027, -3.36, -0.83, 0.35, 1.22, 0.65, 0.004 +20081028, 9.77, -3.41, 0.30, 1.05, -0.16, 0.004 +20081029, -0.47, 2.49, -1.38, -0.18, -0.90, 0.004 +20081030, 2.99, 1.81, -0.63, -0.15, -1.05, 0.004 +20081031, 1.88, 2.70, 1.98, -0.40, -0.37, 0.004 +20081103, -0.05, 0.23, 0.57, -0.79, 0.45, 0.001 +20081104, 3.57, -2.55, 0.20, -0.57, -0.75, 0.001 +20081105, -5.05, -0.06, -1.46, 0.52, 0.13, 0.001 +20081106, -4.83, 1.49, -0.42, 0.46, 1.23, 0.001 +20081107, 2.62, -1.20, -0.78, 0.58, -0.12, 0.001 +20081110, -1.32, -0.99, -2.05, 1.03, 0.18, 0.001 +20081111, -2.25, 0.09, 0.01, 0.35, 0.43, 0.001 +20081112, -5.14, -0.65, -1.09, 1.10, 0.06, 0.001 +20081113, 6.79, 0.77, -0.10, 0.62, 0.46, 0.001 +20081114, -4.27, -2.28, 0.02, -0.05, -0.01, 0.001 +20081117, -2.43, 1.50, -1.63, 0.97, 0.17, 0.001 +20081118, 0.70, -1.48, -0.73, 0.88, 0.42, 0.001 +20081119, -6.29, -0.69, -3.09, 1.43, 0.23, 0.001 +20081120, -6.60, 1.00, -2.51, 1.20, 1.22, 0.001 +20081121, 6.11, -1.55, -2.03, 1.08, 1.11, 0.001 +20081124, 6.27, -0.06, 4.67, -0.87, -1.74, 0.001 +20081125, 0.94, 0.48, 2.29, -0.86, -0.07, 0.001 +20081126, 3.88, 1.83, 0.24, -0.64, -0.61, 0.001 +20081128, 1.06, -0.24, 1.90, -1.26, 0.07, 0.001 +20081201, -8.95, -1.54, -3.53, 1.18, 0.58, 0.000 +20081202, 3.97, 1.11, 2.54, -1.01, 0.49, 0.000 +20081203, 2.63, -0.04, 1.47, 0.01, -0.02, 0.000 +20081204, -2.90, 0.21, 1.25, -0.12, 0.58, 0.000 +20081205, 3.75, 0.45, 1.79, -0.99, -0.46, 0.000 +20081208, 3.80, -0.05, 0.17, -0.04, -1.35, 0.000 +20081209, -2.23, -0.85, -1.23, -0.46, -0.50, 0.000 +20081210, 1.20, 0.98, -0.99, 0.79, -0.39, 0.000 +20081211, -2.93, -1.69, -2.24, 0.43, 0.11, 0.000 +20081212, 0.96, 2.35, 0.59, -0.60, 0.02, 0.000 +20081215, -1.54, -1.57, -1.24, 0.72, -0.03, 0.000 +20081216, 5.15, 0.37, 2.43, -0.96, -0.11, 0.000 +20081217, -0.62, 1.63, -0.52, 0.13, -0.31, 0.000 +20081218, -1.83, 0.77, -0.36, -0.07, -0.13, 0.000 +20081219, 0.35, 0.75, -0.03, 0.20, -0.18, 0.000 +20081222, -1.87, -0.24, -0.76, 0.20, 0.62, 0.000 +20081223, -0.89, -0.32, -0.89, 0.24, -0.31, 0.000 +20081224, 0.51, -0.13, 0.60, 0.19, -0.06, 0.000 +20081226, 0.63, 0.61, 0.07, 0.01, 0.20, 0.000 +20081229, -0.56, -1.47, -0.04, 0.50, -0.10, 0.000 +20081230, 2.47, 0.84, 0.99, 0.07, 0.05, 0.000 +20081231, 1.70, 1.66, 0.76, -0.73, -0.11, 0.000 +20090102, 3.11, -1.40, -0.35, -0.37, -0.15, 0.000 +20090105, -0.28, 0.33, -1.12, -0.44, -0.55, 0.000 +20090106, 0.87, 1.12, 0.88, -0.67, -0.12, 0.000 +20090107, -2.96, -0.01, -1.15, 0.31, 0.11, 0.000 +20090108, 0.47, 0.65, 0.39, -0.44, 0.66, 0.000 +20090109, -2.21, -1.61, -1.12, 0.51, 0.12, 0.000 +20090112, -2.28, -0.10, -1.83, 0.54, 0.49, 0.000 +20090113, 0.28, 0.40, 0.20, -0.52, -0.35, 0.000 +20090114, -3.38, -0.71, -1.25, 0.46, 0.27, 0.000 +20090115, 0.39, 1.73, -2.25, 0.51, 0.46, 0.000 +20090116, 0.74, 0.13, -1.04, 0.27, 0.42, 0.000 +20090120, -5.34, -0.87, -3.95, 0.85, 1.27, 0.000 +20090121, 4.21, -0.22, 2.56, -0.54, -1.36, 0.000 +20090122, -1.62, -1.21, -1.61, 0.50, -0.79, 0.000 +20090123, 0.44, -0.29, 0.84, -0.46, -0.56, 0.000 +20090126, 0.54, 0.75, -0.60, 0.46, -0.26, 0.000 +20090127, 1.08, -0.19, 0.33, -0.63, -0.14, 0.000 +20090128, 3.32, 0.06, 2.66, -0.55, -0.72, 0.000 +20090129, -3.23, -0.65, -2.30, 0.20, 0.01, 0.000 +20090130, -2.16, 0.10, -1.18, 0.05, -0.33, 0.000 +20090202, 0.06, 1.17, -0.53, -0.11, 0.25, 0.001 +20090203, 1.46, -0.62, -2.35, 0.82, 0.49, 0.001 +20090204, -0.60, -0.31, -0.42, -0.29, -0.60, 0.001 +20090205, 1.61, 0.01, -0.23, 0.02, -0.21, 0.001 +20090206, 2.79, 0.47, 2.21, -0.19, -0.28, 0.001 +20090209, 0.03, -0.72, 0.21, 0.09, -0.41, 0.001 +20090210, -4.62, 0.40, -2.79, 0.51, -0.10, 0.001 +20090211, 0.75, -0.43, 1.25, -0.60, -0.04, 0.001 +20090212, 0.30, 0.21, -0.60, 0.17, -0.50, 0.001 +20090213, -0.85, 0.63, -1.45, -0.25, -0.24, 0.001 +20090217, -4.36, 0.47, -2.33, 0.52, 0.48, 0.001 +20090218, -0.33, -1.06, -0.72, 0.55, -0.29, 0.001 +20090219, -1.15, -0.34, -2.00, 0.77, -0.27, 0.001 +20090220, -1.16, -0.24, -1.00, 0.53, 0.32, 0.001 +20090223, -3.43, -0.25, 0.86, -0.06, 0.55, 0.001 +20090224, 4.00, -0.33, 2.95, -1.26, -0.32, 0.001 +20090225, -1.15, -1.36, 0.17, 0.09, -0.06, 0.001 +20090226, -1.53, -0.16, 1.32, 0.04, -0.25, 0.001 +20090227, -2.01, 1.28, -2.15, 0.29, 0.35, 0.001 +20090302, -4.75, -0.47, -0.30, 0.32, 0.92, 0.001 +20090303, -0.71, -1.08, -2.43, -0.14, -0.83, 0.001 +20090304, 2.42, 0.18, -0.99, -0.59, -0.10, 0.001 +20090305, -4.21, -1.13, -3.02, 0.59, 0.07, 0.001 +20090306, 0.20, 0.21, -0.64, -0.13, -0.11, 0.001 +20090309, -1.09, -0.87, 0.33, 0.07, -0.63, 0.001 +20090310, 6.35, -0.02, 4.20, -2.03, -0.08, 0.001 +20090311, 0.30, -0.37, 0.57, -0.01, -0.52, 0.001 +20090312, 4.16, 1.85, 2.61, -0.65, 0.01, 0.001 +20090313, 0.73, 0.18, 0.55, -0.15, 0.05, 0.001 +20090316, -0.55, -0.84, 0.42, 0.78, -0.11, 0.001 +20090317, 3.20, 0.97, 1.44, -0.40, 0.04, 0.001 +20090318, 2.18, 0.99, 3.99, -0.95, 0.29, 0.001 +20090319, -1.03, 0.41, -2.53, 0.60, -0.49, 0.001 +20090320, -1.95, -0.72, -0.80, 0.36, 0.17, 0.001 +20090323, 6.89, 0.39, 4.09, -0.87, -0.18, 0.001 +20090324, -1.93, -1.52, -1.55, 0.32, -0.25, 0.001 +20090325, 0.94, 1.34, 1.30, -0.33, -0.29, 0.001 +20090326, 2.68, 1.86, 0.01, -0.23, 0.16, 0.001 +20090327, -2.06, -1.33, 0.28, -0.40, 0.47, 0.001 +20090330, -3.47, 0.97, -3.86, 1.38, -0.10, 0.001 +20090331, 1.29, -0.08, 1.53, -0.18, -0.37, 0.001 +20090401, 1.65, -0.20, 1.48, -0.03, 0.51, 0.001 +20090402, 3.07, 1.95, 0.50, -0.12, -0.27, 0.001 +20090403, 1.02, 0.08, 0.87, -0.15, -0.61, 0.001 +20090406, -0.93, -0.81, -0.48, 0.25, 0.12, 0.001 +20090407, -2.42, -0.79, -0.20, 0.37, 0.43, 0.001 +20090408, 1.28, 1.03, 0.09, -0.04, 0.17, 0.001 +20090409, 3.91, 1.51, 4.37, -0.23, -0.66, 0.001 +20090413, 0.26, -0.47, 2.28, -0.93, -0.27, 0.001 +20090414, -2.02, -0.60, -2.85, 0.30, -0.02, 0.001 +20090415, 1.12, 0.33, 2.33, -0.34, 0.41, 0.001 +20090416, 1.69, 1.24, 0.12, -0.05, 0.47, 0.001 +20090417, 0.55, 0.99, 0.25, 0.48, 0.12, 0.001 +20090420, -4.32, -0.86, -4.24, 0.55, 0.35, 0.001 +20090421, 2.19, 1.43, 3.09, -0.27, -0.36, 0.001 +20090422, -0.61, 1.34, -1.10, 0.69, -0.15, 0.001 +20090423, 0.66, -1.60, 0.21, 0.62, -0.35, 0.001 +20090424, 1.77, 0.84, 0.20, -0.21, 0.37, 0.001 +20090427, -0.95, -0.67, -1.71, -0.07, -0.12, 0.001 +20090428, -0.20, 0.93, 0.08, 0.25, -0.14, 0.001 +20090429, 2.41, 1.08, 1.18, -0.98, -0.08, 0.001 +20090430, -0.04, -0.50, -0.64, 0.00, 0.11, 0.001 +20090501, 0.45, -0.59, -0.25, 0.09, -0.02, 0.000 +20090504, 3.36, 0.28, 2.95, -0.42, -0.44, 0.000 +20090505, -0.27, 0.00, -0.16, -0.36, -0.38, 0.000 +20090506, 1.45, -1.40, 2.66, 0.10, -0.25, 0.000 +20090507, -1.42, -0.76, -0.81, 0.78, -0.14, 0.000 +20090508, 2.48, 0.81, 2.77, -0.43, -0.41, 0.000 +20090511, -2.01, 0.59, -2.46, -0.13, 0.07, 0.000 +20090512, -0.31, -1.20, -1.64, 0.40, 0.53, 0.000 +20090513, -2.91, -1.84, -1.49, 0.34, 0.51, 0.000 +20090514, 1.11, 0.71, 0.97, -0.36, -0.35, 0.000 +20090515, -1.02, 0.35, -1.12, 0.12, -0.08, 0.000 +20090518, 3.13, 0.76, 1.95, -0.21, -0.33, 0.000 +20090519, -0.04, -0.03, -1.21, -0.08, 0.08, 0.000 +20090520, -0.48, -0.26, -1.10, 0.00, -0.08, 0.000 +20090521, -1.68, -0.04, 0.35, -0.30, -0.24, 0.000 +20090522, -0.15, -0.52, -0.58, -0.32, 0.36, 0.000 +20090526, 2.78, 1.71, 0.63, 0.15, 0.00, 0.000 +20090527, -1.80, 0.03, -1.30, -0.17, -0.41, 0.000 +20090528, 1.35, -1.19, 0.45, -0.10, -0.34, 0.000 +20090529, 1.38, 0.50, -0.21, -0.06, -0.19, 0.000 +20090601, 2.72, 1.37, -0.71, 0.53, -0.19, 0.000 +20090602, 0.29, 0.78, -0.18, -0.10, -0.03, 0.000 +20090603, -1.39, 0.63, -0.84, 0.27, 0.34, 0.000 +20090604, 1.18, 0.45, 1.09, -0.61, -0.56, 0.000 +20090605, -0.19, 0.02, -0.56, 0.19, -0.20, 0.000 +20090608, -0.20, -0.78, 0.61, -0.08, 0.08, 0.000 +20090609, 0.49, 0.24, -0.28, -0.59, -0.33, 0.000 +20090610, -0.35, -0.36, -0.48, 0.18, -0.03, 0.000 +20090611, 0.63, -0.17, 0.26, -0.66, -0.03, 0.000 +20090612, 0.03, -0.13, 0.01, 0.10, 0.25, 0.000 +20090615, -2.38, -0.43, -0.33, 0.12, 0.22, 0.000 +20090616, -1.33, -0.20, -0.28, -0.17, 0.12, 0.000 +20090617, -0.08, 0.72, -0.98, 0.20, 0.27, 0.000 +20090618, 0.74, -0.41, 0.41, 0.33, -0.19, 0.000 +20090619, 0.35, 0.39, 0.11, -0.27, -0.29, 0.000 +20090622, -3.08, -0.65, -0.73, 0.22, 0.74, 0.000 +20090623, 0.08, -1.00, 0.14, -0.23, -0.04, 0.000 +20090624, 0.78, 0.23, -0.15, -0.35, -0.12, 0.000 +20090625, 2.19, 0.82, 0.05, 0.38, -0.01, 0.000 +20090626, 0.04, 1.56, 0.13, -0.61, -0.42, 0.000 +20090629, 0.82, -1.01, 0.36, 0.04, 0.43, 0.000 +20090630, -0.74, 0.28, -0.19, 0.11, -0.19, 0.000 +20090701, 0.54, 1.39, 0.21, 0.48, 0.56, 0.001 +20090702, -2.89, -0.78, -1.03, 0.04, -0.25, 0.001 +20090706, -0.03, -1.02, -0.97, -0.14, -0.10, 0.001 +20090707, -1.93, 0.02, -0.16, -0.23, -0.08, 0.001 +20090708, -0.20, -0.69, -1.11, 1.07, -0.61, 0.001 +20090709, 0.35, -0.38, 1.25, -0.40, 0.10, 0.001 +20090710, -0.35, 0.85, -0.51, 0.35, 0.03, 0.001 +20090713, 2.43, -0.38, 1.81, -1.15, -0.09, 0.001 +20090714, 0.59, 0.36, 0.63, 0.34, 0.43, 0.001 +20090715, 2.98, 0.66, 1.41, -0.30, 0.48, 0.001 +20090716, 0.94, 0.41, -0.12, 0.60, -0.05, 0.001 +20090717, -0.05, -0.33, -0.04, 0.47, 0.33, 0.001 +20090720, 1.19, 0.42, 0.37, 0.43, 0.72, 0.001 +20090721, 0.31, -0.64, -0.81, 0.54, -0.13, 0.001 +20090722, 0.08, 0.64, 0.34, -0.33, 0.26, 0.001 +20090723, 2.37, 0.71, 1.11, -0.28, 0.45, 0.001 +20090724, 0.38, 0.30, 0.14, -0.35, 0.37, 0.001 +20090727, 0.30, 0.20, 0.98, -0.74, 0.46, 0.001 +20090728, -0.20, 0.28, -0.34, -0.49, -0.05, 0.001 +20090729, -0.46, -0.19, -0.83, -0.05, 0.09, 0.001 +20090730, 1.24, 0.50, 1.45, -0.16, -0.15, 0.001 +20090731, 0.05, -0.02, 1.28, -0.30, 0.18, 0.001 +20090803, 1.63, 0.28, 1.68, 0.09, 0.05, 0.001 +20090804, 0.32, 0.51, 0.82, -0.61, 0.56, 0.001 +20090805, -0.30, -0.87, 1.71, -1.43, 0.13, 0.001 +20090806, -0.62, -0.94, 0.05, 0.12, 0.31, 0.001 +20090807, 1.44, 1.10, 1.18, -0.16, 0.18, 0.001 +20090810, -0.32, 0.57, 0.27, 0.12, -0.01, 0.001 +20090811, -1.25, -0.26, -1.14, 0.89, 0.15, 0.001 +20090812, 1.21, 0.51, 0.55, -0.46, 0.15, 0.001 +20090813, 0.73, -0.16, 1.10, -0.75, -0.07, 0.001 +20090814, -0.97, -1.19, -0.28, -0.07, -0.14, 0.001 +20090817, -2.46, -0.30, -1.69, 0.53, -0.10, 0.001 +20090818, 1.11, 0.57, 1.30, -0.29, 0.26, 0.001 +20090819, 0.72, 0.35, -0.39, 0.25, 0.25, 0.001 +20090820, 1.00, 0.05, 0.84, -0.13, 0.08, 0.001 +20090821, 1.83, 0.43, 0.69, -0.27, -0.01, 0.001 +20090824, -0.09, 0.07, -0.28, 0.48, 0.09, 0.001 +20090825, 0.27, 0.24, 0.65, -0.37, 0.65, 0.001 +20090826, -0.01, 0.11, 0.11, -0.24, 0.25, 0.001 +20090827, 0.21, -0.10, 0.53, -0.02, 0.23, 0.001 +20090828, -0.19, -0.37, 0.55, -0.33, 0.31, 0.001 +20090831, -0.86, -0.54, -0.63, -0.27, -0.18, 0.001 +20090901, -2.15, -0.15, -2.03, 1.05, -0.46, 0.000 +20090902, -0.28, 0.01, -0.70, 0.25, 0.18, 0.000 +20090903, 0.93, 0.21, 1.09, -0.43, 0.14, 0.000 +20090904, 1.31, 0.27, 0.27, 0.17, 0.20, 0.000 +20090908, 0.88, 0.18, 0.10, 0.23, -0.01, 0.000 +20090909, 0.90, 0.91, 0.67, -0.16, 0.16, 0.000 +20090910, 1.08, 0.58, 0.92, -0.27, 0.18, 0.000 +20090911, -0.10, 0.06, -0.10, 0.37, 0.06, 0.000 +20090914, 0.65, 0.24, 0.64, -0.28, 0.34, 0.000 +20090915, 0.44, 0.61, 0.60, -0.09, -0.02, 0.000 +20090916, 1.55, 0.52, 1.30, -0.56, -0.16, 0.000 +20090917, -0.30, -0.05, -0.34, 0.07, -0.15, 0.000 +20090918, 0.23, 0.14, -0.19, 0.19, 0.12, 0.000 +20090921, -0.27, -0.16, -0.67, -0.04, 0.05, 0.000 +20090922, 0.66, 0.09, 1.50, -0.38, 0.12, 0.000 +20090923, -1.00, 0.01, -0.89, 0.13, -0.15, 0.000 +20090924, -1.07, -0.82, -1.34, 0.48, -0.35, 0.000 +20090925, -0.64, 0.11, -0.51, 0.22, 0.02, 0.000 +20090928, 1.79, 0.52, 1.04, -0.36, 0.29, 0.000 +20090929, -0.12, 0.00, 0.36, 0.36, 0.01, 0.000 +20090930, -0.40, -0.61, -0.63, 0.34, -0.20, 0.000 +20091001, -2.63, -0.76, -1.37, 0.70, -0.25, 0.000 +20091002, -0.49, -0.31, -0.14, -0.15, 0.02, 0.000 +20091005, 1.54, 0.37, 1.83, -0.34, 0.37, 0.000 +20091006, 1.42, 0.51, 0.24, 0.12, -0.16, 0.000 +20091007, 0.28, -0.29, 0.56, -0.30, -0.11, 0.000 +20091008, 0.82, 0.34, 0.34, 0.93, -0.01, 0.000 +20091009, 0.59, 0.56, -0.22, -0.06, 0.07, 0.000 +20091012, 0.36, -0.48, 0.33, 0.09, 0.22, 0.000 +20091013, -0.22, 0.05, -0.18, -0.01, -0.01, 0.000 +20091014, 1.73, 0.17, 1.12, -0.56, 0.26, 0.000 +20091015, 0.35, -0.28, -0.44, 0.82, -0.27, 0.000 +20091016, -0.82, -0.16, -1.27, 0.80, -0.39, 0.000 +20091019, 0.92, 0.04, 0.03, 0.48, 0.07, 0.000 +20091020, -0.69, -0.71, -0.48, 0.36, -0.41, 0.000 +20091021, -0.90, -0.18, -0.54, 0.69, -0.09, 0.000 +20091022, 1.05, 0.09, 0.66, -0.49, 0.35, 0.000 +20091023, -1.23, -0.90, -1.02, 0.40, -1.02, 0.000 +20091026, -1.20, -0.17, -1.35, 0.81, -0.06, 0.000 +20091027, -0.51, -0.69, -0.61, 0.11, 0.08, 0.000 +20091028, -2.16, -1.72, -1.39, -0.01, -0.33, 0.000 +20091029, 2.20, 0.05, 1.64, -0.58, 0.26, 0.000 +20091030, -2.80, -0.34, -1.87, 0.54, -0.27, 0.000 +20091102, 0.54, -0.76, -0.32, 0.39, -0.07, 0.000 +20091103, 0.45, 1.14, 0.75, -0.20, 0.23, 0.000 +20091104, 0.03, -1.18, -0.51, 0.29, -0.22, 0.000 +20091105, 2.07, 1.22, 0.63, 0.04, 0.37, 0.000 +20091106, 0.24, -0.32, -0.45, -0.09, 0.00, 0.000 +20091109, 2.17, -0.27, 1.35, -0.05, 0.29, 0.000 +20091110, -0.05, -0.78, -0.08, 0.68, 0.01, 0.000 +20091111, 0.52, 0.30, 0.31, -0.55, 0.28, 0.000 +20091112, -1.12, -1.01, -0.76, 0.14, -0.09, 0.000 +20091113, 0.61, 0.33, -0.04, 0.23, 0.06, 0.000 +20091116, 1.54, 1.29, 0.20, 0.25, 0.37, 0.000 +20091117, 0.14, -0.25, -0.04, -0.11, -0.18, 0.000 +20091118, -0.13, -0.42, 0.44, -0.36, 0.05, 0.000 +20091119, -1.39, -0.89, -0.60, 0.03, -0.10, 0.000 +20091120, -0.33, 0.12, -0.47, 0.06, -0.17, 0.000 +20091123, 1.30, 0.40, -0.09, 0.04, -0.27, 0.000 +20091124, -0.09, -0.22, -0.43, 0.14, 0.02, 0.000 +20091125, 0.47, -0.42, 0.12, 0.24, -0.04, 0.000 +20091127, -1.74, -0.65, -0.78, 0.32, -0.12, 0.000 +20091130, 0.28, -0.29, 0.74, -0.77, -0.26, 0.000 +20091201, 1.28, 0.55, -0.28, 0.30, 0.14, 0.000 +20091202, 0.18, 0.99, -0.30, 0.05, 0.17, 0.000 +20091203, -0.86, -0.26, -0.33, 0.37, 0.08, 0.000 +20091204, 0.70, 1.66, 0.74, -0.33, 0.43, 0.000 +20091207, -0.15, 0.52, -0.26, 0.41, 0.26, 0.000 +20091208, -0.97, 0.02, -0.14, -0.12, -0.02, 0.000 +20091209, 0.32, -0.19, 0.01, -0.06, -0.07, 0.000 +20091210, 0.50, -0.92, -0.10, 0.55, -0.25, 0.000 +20091211, 0.43, 0.42, 0.46, 0.10, 0.23, 0.000 +20091214, 0.80, 0.72, 0.34, -0.15, -0.60, 0.000 +20091215, -0.48, 0.21, -0.59, 0.51, -0.33, 0.000 +20091216, 0.19, 0.53, 0.73, -0.45, 0.06, 0.000 +20091217, -1.18, 0.15, -0.32, 0.39, -0.31, 0.000 +20091218, 0.68, 0.23, 0.24, -0.65, -0.55, 0.000 +20091221, 1.03, 0.27, 0.32, 0.07, 0.21, 0.000 +20091222, 0.43, 0.55, -0.11, -0.12, 0.40, 0.000 +20091223, 0.36, 0.88, -0.39, 0.43, -0.15, 0.000 +20091224, 0.51, -0.07, 0.20, -0.14, -0.04, 0.000 +20091228, 0.08, -0.18, -0.28, 0.12, -0.17, 0.000 +20091229, -0.09, 0.07, -0.08, -0.04, 0.00, 0.000 +20091230, 0.00, -0.08, -0.09, -0.20, 0.19, 0.000 +20091231, -0.99, -0.16, 0.33, -0.46, 0.15, 0.000 +20100104, 1.69, 0.75, 1.11, -0.24, 0.21, 0.000 +20100105, 0.31, -0.38, 1.21, -0.10, 0.18, 0.000 +20100106, 0.13, -0.16, 0.51, -0.02, 0.20, 0.000 +20100107, 0.40, 0.23, 0.94, -0.65, 0.23, 0.000 +20100108, 0.33, 0.34, 0.01, 0.27, -0.38, 0.000 +20100111, 0.13, -0.15, -0.21, 0.08, 0.58, 0.000 +20100112, -1.00, -0.36, -1.31, 0.48, -0.05, 0.000 +20100113, 0.85, 0.32, 0.34, -0.34, 0.10, 0.000 +20100114, 0.24, 0.24, 0.05, -0.25, -0.02, 0.000 +20100115, -1.12, -0.21, -0.39, 0.61, -0.13, 0.000 +20100119, 1.26, 0.39, -0.16, -0.17, 0.02, 0.000 +20100120, -0.98, -0.54, 0.25, -0.58, -0.15, 0.000 +20100121, -1.74, 0.13, -1.14, 0.00, -0.45, 0.000 +20100122, -2.14, 0.47, -0.81, 0.48, 0.04, 0.000 +20100125, 0.37, -0.19, 0.33, 0.08, 0.11, 0.000 +20100126, -0.45, -0.22, -0.46, 0.40, -0.06, 0.000 +20100127, 0.53, 0.22, 0.16, -0.92, -0.04, 0.000 +20100128, -1.18, -0.53, 0.47, -0.24, 0.05, 0.000 +20100129, -0.97, -0.07, -0.45, -0.20, 0.20, 0.000 +20100201, 1.39, -0.14, 0.91, -0.16, 0.69, 0.000 +20100202, 1.21, -0.32, 0.66, 0.20, 0.69, 0.000 +20100203, -0.49, 0.06, -0.39, 0.25, -0.14, 0.000 +20100204, -3.14, -0.34, -1.19, 0.39, -0.03, 0.000 +20100205, 0.29, -0.08, -0.07, -0.60, -0.16, 0.000 +20100208, -0.79, -0.05, -0.35, 0.14, 0.17, 0.000 +20100209, 1.33, 0.36, 0.59, 0.28, 0.41, 0.000 +20100210, -0.17, 0.29, 0.29, -0.55, -0.03, 0.000 +20100211, 1.13, 0.66, 0.07, 0.10, -0.17, 0.000 +20100212, -0.07, 0.96, 0.15, -0.16, 0.28, 0.000 +20100216, 1.75, -0.13, 1.02, 0.00, 0.09, 0.000 +20100217, 0.49, 0.17, 0.12, 0.25, -0.05, 0.000 +20100218, 0.62, 0.11, 0.00, 0.29, -0.12, 0.000 +20100219, 0.28, 0.08, 0.48, -0.24, -0.02, 0.000 +20100222, -0.05, 0.04, 0.57, -0.64, -0.13, 0.000 +20100223, -1.24, 0.13, -0.94, 0.26, -0.01, 0.000 +20100224, 0.94, -0.26, 0.53, -0.22, 0.02, 0.000 +20100225, -0.13, 0.28, 0.28, 0.10, -0.03, 0.000 +20100226, 0.13, -0.43, 0.39, 0.04, -0.06, 0.000 +20100301, 1.20, 1.19, 0.07, 0.06, 0.53, 0.000 +20100302, 0.32, 0.64, 0.19, -0.18, -0.07, 0.000 +20100303, 0.09, 0.15, 0.09, 0.11, 0.29, 0.000 +20100304, 0.37, 0.14, 0.23, -0.02, 0.25, 0.000 +20100305, 1.43, 0.51, 0.61, -0.14, 0.26, 0.000 +20100308, 0.02, 0.12, 0.26, -0.20, 0.10, 0.000 +20100309, 0.21, 0.25, -0.10, 0.01, 0.03, 0.000 +20100310, 0.53, 0.15, 0.68, -0.47, 0.31, 0.000 +20100311, 0.43, -0.07, -0.11, -0.24, 0.12, 0.000 +20100312, -0.02, 0.00, -0.28, 0.49, -0.07, 0.000 +20100315, -0.02, -0.35, -0.48, 0.17, -0.06, 0.000 +20100316, 0.78, -0.07, 0.59, -0.13, 0.17, 0.000 +20100317, 0.57, 0.06, 0.36, -0.12, 0.06, 0.000 +20100318, -0.10, -0.27, -0.57, 0.02, 0.08, 0.000 +20100319, -0.62, -0.65, -0.63, 0.00, -0.49, 0.000 +20100322, 0.67, 0.85, 0.01, 0.18, 0.09, 0.000 +20100323, 0.80, 0.39, 0.36, -0.08, 0.11, 0.000 +20100324, -0.60, -0.52, 0.82, -0.39, 0.05, 0.000 +20100325, -0.26, -0.51, -0.28, -0.08, -0.04, 0.000 +20100326, 0.06, -0.06, 0.31, 0.00, 0.12, 0.000 +20100329, 0.59, -0.01, 0.19, 0.28, 0.10, 0.000 +20100330, 0.04, 0.23, -0.45, 0.35, -0.22, 0.000 +20100331, -0.36, -0.44, 0.16, -0.24, -0.09, 0.000 +20100401, 0.75, 0.10, 0.79, 0.11, 0.37, 0.001 +20100405, 0.95, 1.13, 0.92, -0.25, 0.32, 0.001 +20100406, 0.19, 0.33, 0.46, -0.28, -0.13, 0.001 +20100407, -0.48, 0.22, 0.24, -0.08, 0.19, 0.001 +20100408, 0.31, -0.24, 0.39, -0.14, 0.22, 0.001 +20100409, 0.66, -0.13, 0.17, 0.39, 0.20, 0.001 +20100412, 0.23, 0.32, 0.07, -0.03, 0.23, 0.001 +20100413, 0.07, 0.11, -0.05, 0.14, 0.05, 0.001 +20100414, 1.24, 1.03, 1.41, -1.03, 0.53, 0.001 +20100415, 0.11, 0.54, -0.04, 0.27, -0.18, 0.001 +20100416, -1.53, 0.49, -1.83, 1.09, -0.24, 0.001 +20100419, 0.28, -0.88, -0.08, -0.10, 0.22, 0.001 +20100420, 0.88, 0.75, 0.56, -0.20, -0.05, 0.001 +20100421, -0.06, 0.70, 0.20, 0.48, -0.17, 0.001 +20100422, 0.37, 0.85, 0.49, -0.04, 0.09, 0.001 +20100423, 0.70, 0.39, 0.58, -0.06, 0.14, 0.001 +20100426, -0.43, 0.35, -0.32, 0.71, 0.29, 0.001 +20100427, -2.34, -0.03, -1.41, 0.50, -0.66, 0.001 +20100428, 0.56, -0.61, 0.73, -0.61, 0.33, 0.001 +20100429, 1.34, 0.59, 0.45, -0.22, 0.47, 0.001 +20100430, -1.72, -1.07, -0.92, 0.37, -0.55, 0.001 +20100503, 1.36, 0.77, 0.61, -0.16, 0.36, 0.001 +20100504, -2.50, -0.64, -0.90, 0.22, -0.20, 0.001 +20100505, -0.75, -0.83, -0.62, -0.05, -0.48, 0.001 +20100506, -3.27, -0.36, -0.90, 0.85, -0.31, 0.001 +20100507, -1.75, -1.37, -0.48, 0.15, -0.15, 0.001 +20100510, 4.47, 1.05, 1.16, -0.47, 0.16, 0.001 +20100511, -0.17, 1.13, -0.15, -0.08, 0.04, 0.001 +20100512, 1.63, 1.45, 0.19, 0.07, 0.21, 0.001 +20100513, -1.12, 0.32, -0.31, 0.13, -0.17, 0.001 +20100514, -1.92, -0.35, -0.77, 0.37, -0.27, 0.001 +20100517, 0.11, 0.01, -0.56, 0.15, 0.16, 0.001 +20100518, -1.41, -0.31, -0.96, 0.61, -0.29, 0.001 +20100519, -0.63, -0.90, 0.03, -0.26, 0.15, 0.001 +20100520, -3.99, -1.04, -1.15, 0.50, -0.30, 0.001 +20100521, 1.44, -0.21, 1.59, -0.74, 0.10, 0.001 +20100524, -1.19, 0.22, -0.92, 0.68, -0.10, 0.001 +20100525, -0.03, -0.41, 0.54, -0.49, 0.16, 0.001 +20100526, -0.35, 0.92, 0.38, -0.22, 0.14, 0.001 +20100527, 3.45, 0.84, 1.61, -0.36, 0.72, 0.001 +20100528, -1.18, 0.01, -0.64, 0.29, 0.00, 0.001 +20100601, -1.89, -1.32, -1.57, 0.01, -0.29, 0.001 +20100602, 2.63, 0.29, 0.43, -0.28, 0.02, 0.001 +20100603, 0.54, 0.64, -0.29, 0.28, -0.25, 0.001 +20100604, -3.62, -1.28, -0.70, 0.10, -0.25, 0.001 +20100607, -1.52, -1.16, -1.06, 0.49, -0.66, 0.001 +20100608, 0.90, -1.42, 0.17, -0.26, 0.22, 0.001 +20100609, -0.46, 0.74, -0.18, 0.48, 0.24, 0.001 +20100610, 2.95, 0.48, 0.90, 0.15, 0.37, 0.001 +20100611, 0.62, 0.92, 0.06, -0.12, 0.06, 0.001 +20100614, -0.06, 0.64, 0.01, 0.24, 0.25, 0.001 +20100615, 2.36, 0.21, 0.91, -0.23, 0.09, 0.001 +20100616, -0.11, -0.26, -0.32, 0.01, -0.32, 0.001 +20100617, 0.08, -0.22, -0.45, -0.26, -0.04, 0.001 +20100618, 0.13, 0.01, 0.24, -0.21, -0.14, 0.001 +20100621, -0.47, -0.55, 0.00, 0.15, 0.11, 0.001 +20100622, -1.63, -0.47, -0.75, -0.28, -0.30, 0.001 +20100623, -0.29, -0.01, 0.23, -0.19, 0.02, 0.001 +20100624, -1.65, -0.03, -0.89, -0.08, -0.20, 0.001 +20100625, 0.48, 1.22, 1.03, -1.18, -0.25, 0.001 +20100628, -0.23, -0.10, -0.71, 0.33, 0.03, 0.001 +20100629, -3.23, -0.78, -1.27, 0.48, -0.22, 0.001 +20100630, -0.98, 0.00, -0.36, 0.02, -0.02, 0.001 +20100701, -0.40, -0.37, -0.43, 0.48, 0.16, 0.001 +20100702, -0.50, -0.32, -0.43, 0.14, -0.36, 0.001 +20100706, 0.33, -1.95, 0.08, 0.02, -0.46, 0.001 +20100707, 3.17, 0.03, 0.45, -0.77, 0.91, 0.001 +20100708, 1.00, 0.55, 0.00, 0.06, 0.11, 0.001 +20100709, 0.81, 0.67, 0.58, -0.63, 0.49, 0.001 +20100712, -0.11, -1.17, 0.05, 0.30, -0.14, 0.001 +20100713, 1.76, 1.61, 0.65, -0.67, 0.94, 0.001 +20100714, -0.04, -0.20, -0.76, 0.51, -0.31, 0.001 +20100715, 0.02, -0.86, -0.10, 0.33, -0.07, 0.001 +20100716, -2.94, -0.61, -0.96, 0.98, -0.69, 0.001 +20100719, 0.54, -0.20, -0.19, 0.04, 0.21, 0.001 +20100720, 1.23, 0.60, 0.14, -0.07, 0.50, 0.001 +20100721, -1.30, -0.38, -0.41, 0.30, -0.05, 0.001 +20100722, 2.37, 1.24, 0.54, -0.76, 0.74, 0.001 +20100723, 1.05, 1.40, -0.23, -0.28, 0.48, 0.001 +20100726, 1.23, 0.89, 0.12, -0.51, 0.25, 0.001 +20100727, -0.23, -0.30, 0.35, 0.44, -0.34, 0.001 +20100728, -0.82, -0.86, -0.03, 0.38, -0.26, 0.001 +20100729, -0.36, 0.41, 0.66, -0.21, -0.11, 0.001 +20100730, 0.06, 0.06, -0.22, -0.05, 0.04, 0.001 +20100802, 2.08, -0.54, 0.15, -0.34, 0.37, 0.001 +20100803, -0.55, -0.37, -0.50, 0.19, -0.61, 0.001 +20100804, 0.74, 0.36, -0.09, -0.30, 0.20, 0.001 +20100805, -0.22, -0.84, 0.13, 0.04, 0.14, 0.001 +20100806, -0.36, -0.20, -0.35, 0.09, -0.25, 0.001 +20100809, 0.62, 0.61, 0.05, -0.15, 0.02, 0.001 +20100810, -0.79, -1.25, -0.21, 0.36, -0.26, 0.001 +20100811, -2.91, -1.07, -0.65, 1.06, -0.57, 0.001 +20100812, -0.50, 0.02, -0.04, 0.55, -0.18, 0.001 +20100813, -0.47, -0.78, 0.24, -0.16, -0.03, 0.001 +20100816, 0.10, 0.88, -0.20, -0.07, 0.08, 0.001 +20100817, 1.31, 0.50, -0.19, -0.28, 0.17, 0.001 +20100818, 0.21, 0.08, 0.07, 0.06, 0.34, 0.001 +20100819, -1.74, -0.86, -0.41, 0.38, -0.42, 0.001 +20100820, -0.28, 0.23, -0.23, -0.13, -0.18, 0.001 +20100823, -0.50, -0.90, -0.44, 0.27, -0.41, 0.001 +20100824, -1.48, 0.16, 0.14, 0.20, -0.13, 0.001 +20100825, 0.45, 1.01, 0.00, -0.19, 0.01, 0.001 +20100826, -0.76, -0.09, -0.26, 0.13, -0.16, 0.001 +20100827, 1.82, 0.93, 0.36, -0.94, 0.22, 0.001 +20100830, -1.54, -0.83, -0.40, 0.36, -0.33, 0.001 +20100831, 0.01, -0.19, 0.77, -0.45, 0.26, 0.001 +20100901, 3.05, 0.69, 0.47, -0.34, 0.42, 0.001 +20100902, 0.97, 0.23, -0.31, -0.10, 0.52, 0.001 +20100903, 1.35, 0.36, 0.20, -0.27, 0.19, 0.001 +20100907, -1.23, -0.86, -0.74, 0.48, -0.52, 0.001 +20100908, 0.65, 0.05, 0.17, -0.35, 0.00, 0.001 +20100909, 0.44, -0.40, 0.55, 0.03, 0.02, 0.001 +20100910, 0.45, -0.08, -0.13, 0.17, -0.01, 0.001 +20100913, 1.30, 1.15, 0.20, -0.37, 0.31, 0.001 +20100914, -0.06, -0.29, -0.53, 0.24, -0.13, 0.001 +20100915, 0.36, 0.11, -0.23, 0.21, -0.29, 0.001 +20100916, -0.07, -0.54, -0.69, 0.22, -0.24, 0.001 +20100917, 0.15, 0.55, -0.59, 0.19, -0.23, 0.001 +20100920, 1.60, 1.13, 0.22, -0.25, 0.34, 0.001 +20100921, -0.31, -0.31, -0.32, 0.08, -0.28, 0.001 +20100922, -0.52, -0.57, -0.53, 0.61, -0.19, 0.001 +20100923, -0.78, -0.16, -0.68, 0.25, -0.17, 0.001 +20100924, 2.19, 0.96, 0.48, -0.72, 0.52, 0.001 +20100927, -0.46, 0.19, -0.45, 0.18, -0.08, 0.001 +20100928, 0.58, 0.53, 0.10, -0.23, 0.23, 0.001 +20100929, -0.17, 0.64, -0.25, -0.11, 0.05, 0.001 +20100930, -0.26, 0.10, 0.30, -0.12, -0.01, 0.001 +20101001, 0.43, 0.03, 0.21, 0.06, 0.28, 0.001 +20101004, -0.88, -0.73, -0.07, 0.04, 0.03, 0.001 +20101005, 2.11, 0.77, 0.14, -0.23, 0.12, 0.001 +20101006, -0.10, -0.39, 0.47, 0.19, 0.19, 0.001 +20101007, -0.16, 0.06, -0.29, -0.01, 0.02, 0.001 +20101008, 0.74, 0.86, -0.13, -0.34, 0.40, 0.001 +20101011, 0.04, 0.04, -0.22, 0.35, 0.01, 0.001 +20101012, 0.39, 0.00, 0.19, -0.16, 0.03, 0.001 +20101013, 0.78, 0.83, -0.36, -0.06, -0.06, 0.001 +20101014, -0.38, 0.29, -0.41, 0.25, -0.18, 0.001 +20101015, 0.18, -0.17, -1.28, 0.58, -0.64, 0.001 +20101018, 0.69, 0.13, 0.85, -0.22, 0.18, 0.001 +20101019, -1.67, -0.72, 0.26, 0.25, -0.16, 0.001 +20101020, 1.06, 0.10, 0.09, 0.15, 0.30, 0.001 +20101021, 0.11, -0.56, -0.51, 0.47, -0.20, 0.001 +20101022, 0.29, 0.44, -0.44, -0.21, -0.25, 0.001 +20101025, 0.31, 0.43, -0.52, -0.08, -0.04, 0.001 +20101026, 0.02, -0.01, -0.18, 0.32, -0.14, 0.001 +20101027, -0.24, -0.25, -0.22, -0.40, -0.11, 0.001 +20101028, 0.08, -0.59, -0.07, 0.15, -0.19, 0.001 +20101029, 0.07, 0.30, -0.11, 0.12, 0.16, 0.001 +20101101, -0.01, -0.67, -0.20, 0.26, 0.01, 0.001 +20101102, 0.90, 1.26, -0.17, 0.10, 0.09, 0.001 +20101103, 0.38, -0.05, 0.17, -0.15, 0.14, 0.001 +20101104, 1.94, 0.49, 1.04, -0.83, 0.87, 0.001 +20101105, 0.41, -0.04, 0.68, -0.35, 0.49, 0.001 +20101108, -0.12, 0.43, -0.48, 0.25, -0.14, 0.001 +20101109, -0.78, -0.46, -0.49, 0.73, -0.21, 0.001 +20101110, 0.53, 0.66, 0.55, -0.42, 0.38, 0.001 +20101111, -0.35, -0.04, -0.08, 0.16, 0.20, 0.001 +20101112, -1.29, -0.47, -0.07, 0.19, -0.05, 0.001 +20101115, -0.09, 0.23, 0.32, -0.02, 0.16, 0.001 +20101116, -1.58, -0.34, -0.15, 0.35, -0.14, 0.001 +20101117, 0.07, 0.30, -0.29, 0.17, 0.24, 0.001 +20101118, 1.57, 0.31, -0.30, -0.28, -0.07, 0.001 +20101119, 0.31, 0.16, -0.18, -0.13, 0.13, 0.001 +20101122, -0.02, 0.51, -0.94, 0.13, -0.31, 0.001 +20101123, -1.38, 0.50, -0.28, 0.39, -0.38, 0.001 +20101124, 1.59, 0.62, 0.03, -0.37, 0.22, 0.001 +20101126, -0.67, 0.28, -0.35, 0.21, -0.09, 0.001 +20101129, -0.13, 0.06, 0.42, -0.15, 0.12, 0.001 +20101130, -0.59, -0.20, -0.02, 0.00, 0.05, 0.001 +20101201, 2.12, -0.11, 0.01, -0.43, 0.40, 0.001 +20101202, 1.23, -0.26, 0.66, -0.47, 0.73, 0.001 +20101203, 0.35, 0.37, 0.05, -0.11, 0.25, 0.001 +20101206, -0.03, 0.74, -0.06, -0.13, 0.16, 0.001 +20101207, 0.10, 0.37, 0.00, -0.01, -0.09, 0.001 +20101208, 0.32, -0.45, 0.62, -0.31, 0.19, 0.001 +20101209, 0.42, 0.05, 0.65, -0.39, 0.51, 0.001 +20101210, 0.67, 0.45, 0.24, -0.23, 0.17, 0.001 +20101213, -0.08, -0.57, 0.08, -0.18, -0.07, 0.001 +20101214, 0.09, -0.05, -0.11, 0.38, -0.08, 0.001 +20101215, -0.49, 0.13, -0.55, 0.20, -0.10, 0.001 +20101216, 0.70, 0.42, -0.11, -0.24, 0.03, 0.001 +20101217, 0.15, 0.16, -0.14, -0.33, 0.24, 0.001 +20101220, 0.23, 0.05, 0.34, -0.29, 0.18, 0.001 +20101221, 0.68, 0.39, 0.74, -0.57, 0.29, 0.001 +20101222, 0.29, -0.33, 0.82, -0.21, 0.21, 0.001 +20101223, -0.16, 0.04, -0.32, 0.18, -0.17, 0.001 +20101227, 0.08, 0.26, 0.44, -0.36, 0.16, 0.001 +20101228, 0.00, -0.43, 0.18, -0.03, -0.13, 0.001 +20101229, 0.17, 0.10, -0.16, 0.06, -0.07, 0.001 +20101230, -0.11, 0.13, -0.03, 0.19, 0.05, 0.001 +20101231, -0.10, -0.61, 0.23, -0.14, 0.13, 0.001 +20110103, 1.18, 0.57, 0.79, -0.45, 0.14, 0.000 +20110104, -0.26, -1.33, 0.11, -0.01, 0.01, 0.000 +20110105, 0.59, 0.61, 0.14, -0.44, 0.02, 0.000 +20110106, -0.15, -0.13, -0.33, -0.10, -0.12, 0.000 +20110107, -0.21, -0.24, -0.30, 0.18, -0.16, 0.000 +20110110, -0.02, 0.50, -0.16, -0.41, 0.07, 0.000 +20110111, 0.39, 0.10, 0.22, -0.33, 0.08, 0.000 +20110112, 0.87, -0.05, 0.25, -0.40, 0.32, 0.000 +20110113, -0.17, 0.12, -0.39, 0.50, 0.09, 0.000 +20110114, 0.69, 0.04, 0.49, -0.64, 0.13, 0.000 +20110118, 0.18, -0.02, -0.41, 0.31, -0.14, 0.000 +20110119, -1.24, -1.33, -0.54, 0.99, -0.46, 0.000 +20110120, -0.30, -0.95, 0.76, 0.57, 0.37, 0.000 +20110121, 0.11, -0.85, 0.56, -0.15, 0.33, 0.000 +20110124, 0.65, 0.20, -0.23, -0.20, 0.34, 0.000 +20110125, 0.02, 0.00, 0.10, 0.32, -0.09, 0.000 +20110126, 0.60, 1.33, -0.22, -0.33, 0.10, 0.000 +20110127, 0.26, -0.04, 0.29, -0.07, 0.00, 0.000 +20110128, -1.88, -0.82, -0.03, 0.07, -0.37, 0.000 +20110131, 0.71, 0.00, -0.27, -0.33, 0.06, 0.000 +20110201, 1.75, 0.56, 0.53, -0.37, 0.18, 0.001 +20110202, -0.26, -0.13, -0.39, -0.10, -0.06, 0.001 +20110203, 0.26, -0.01, -0.10, 0.15, 0.30, 0.001 +20110204, 0.29, -0.01, -0.57, -0.19, -0.01, 0.001 +20110207, 0.70, 0.30, 0.59, -0.32, 0.24, 0.001 +20110208, 0.48, 0.23, 0.00, 0.11, 0.09, 0.001 +20110209, -0.31, -0.19, -0.09, 0.39, -0.16, 0.001 +20110210, 0.12, 0.33, -0.30, -0.18, 0.12, 0.001 +20110211, 0.67, 0.40, 0.51, -0.34, 0.38, 0.001 +20110214, 0.30, 0.23, -0.15, -0.16, -0.07, 0.001 +20110215, -0.38, -0.30, 0.30, 0.21, -0.13, 0.001 +20110216, 0.68, 0.40, 0.26, -0.12, 0.29, 0.001 +20110217, 0.37, 0.36, 0.21, -0.46, 0.29, 0.001 +20110218, 0.12, -0.12, -0.03, 0.17, 0.06, 0.001 +20110222, -2.19, -0.49, -0.35, 0.77, -0.55, 0.001 +20110223, -0.78, -1.10, 0.40, -0.11, -0.22, 0.001 +20110224, 0.04, 0.64, -0.32, -0.25, -0.16, 0.001 +20110225, 1.22, 0.98, 0.22, -0.76, 0.48, 0.001 +20110228, 0.42, -0.40, 0.26, -0.20, -0.20, 0.001 +20110301, -1.58, -0.28, -0.06, 0.44, -0.49, 0.000 +20110302, 0.28, 0.28, -0.23, -0.10, 0.19, 0.000 +20110303, 1.76, 0.47, -0.04, -0.36, 0.13, 0.000 +20110304, -0.67, 0.27, -0.53, 0.15, -0.21, 0.000 +20110307, -0.96, -0.63, 0.12, 0.39, -0.26, 0.000 +20110308, 0.97, 0.53, 0.67, -0.03, 0.30, 0.000 +20110309, -0.17, -0.20, 0.33, 0.57, -0.24, 0.000 +20110310, -1.93, -0.72, -0.31, 0.75, -0.57, 0.000 +20110311, 0.69, -0.35, 0.14, -0.40, 0.22, 0.000 +20110314, -0.59, 0.07, -0.40, 0.13, -0.02, 0.000 +20110315, -1.05, 0.27, -0.14, 0.36, 0.00, 0.000 +20110316, -1.77, 0.64, -0.07, -0.05, 0.20, 0.000 +20110317, 1.12, -0.75, 0.58, -0.29, 0.12, 0.000 +20110318, 0.49, 0.59, 0.22, 0.04, 0.34, 0.000 +20110321, 1.58, 0.85, -0.26, -0.40, 0.00, 0.000 +20110322, -0.34, -0.08, -0.05, 0.11, -0.20, 0.000 +20110323, 0.31, 0.12, -0.40, 0.03, 0.11, 0.000 +20110324, 0.96, -0.20, -0.42, -0.24, 0.36, 0.000 +20110325, 0.41, 0.48, -0.04, 0.12, 0.05, 0.000 +20110328, -0.35, 0.09, -0.18, 0.37, -0.16, 0.000 +20110329, 0.74, 0.23, -0.19, -0.21, 0.15, 0.000 +20110330, 0.79, 0.45, 0.07, 0.00, 0.10, 0.000 +20110331, -0.11, 0.56, -0.30, 0.13, -0.08, 0.000 +20110401, 0.52, -0.08, 0.24, 0.12, 0.07, 0.000 +20110404, 0.09, 0.23, -0.11, 0.15, -0.07, 0.000 +20110405, 0.08, 0.47, -0.20, 0.09, 0.29, 0.000 +20110406, 0.21, -0.16, 0.60, -0.11, 0.21, 0.000 +20110407, -0.20, -0.22, -0.16, 0.21, -0.13, 0.000 +20110408, -0.47, -0.53, -0.27, 0.05, -0.21, 0.000 +20110411, -0.39, -0.63, -0.11, 0.45, -0.24, 0.000 +20110412, -0.84, -0.65, 0.03, 0.55, -0.19, 0.000 +20110413, 0.11, 0.09, -0.69, -0.09, -0.14, 0.000 +20110414, 0.00, 0.34, -0.35, -0.07, -0.18, 0.000 +20110415, 0.44, 0.53, -0.06, -0.03, 0.29, 0.000 +20110418, -1.15, -0.41, -0.34, 0.31, -0.30, 0.000 +20110419, 0.50, -0.35, -0.15, 0.01, 0.24, 0.000 +20110420, 1.45, 0.51, -0.61, -0.37, 0.09, 0.000 +20110421, 0.56, 0.31, -0.06, -0.07, 0.07, 0.000 +20110425, -0.16, -0.05, -0.03, 0.06, -0.29, 0.000 +20110426, 0.89, 0.08, -0.03, -0.21, 0.42, 0.000 +20110427, 0.66, -0.06, -0.23, 0.22, -0.31, 0.000 +20110428, 0.32, -0.09, 0.12, -0.01, -0.24, 0.000 +20110429, 0.29, 0.20, -0.05, -0.25, -0.15, 0.000 +20110502, -0.28, -0.89, -0.14, 0.42, -0.32, 0.000 +20110503, -0.50, -0.93, 0.44, 0.53, -0.04, 0.000 +20110504, -0.74, -0.56, -0.15, 0.55, -0.29, 0.000 +20110505, -0.82, 0.48, -0.33, 0.31, 0.22, 0.000 +20110506, 0.46, 0.07, -0.17, -0.27, -0.11, 0.000 +20110509, 0.55, 0.66, -0.43, -0.06, -0.05, 0.000 +20110510, 0.86, 0.67, 0.24, 0.02, -0.05, 0.000 +20110511, -1.09, -0.64, -0.44, 0.73, -0.42, 0.000 +20110512, 0.52, 0.31, -0.44, 0.09, -0.07, 0.000 +20110513, -0.88, -0.48, -0.32, 0.26, -0.21, 0.000 +20110516, -0.76, -0.96, 0.45, 0.17, 0.05, 0.000 +20110517, -0.11, -0.40, 0.11, 0.08, -0.29, 0.000 +20110518, 1.02, 0.64, -0.30, -0.32, 0.25, 0.000 +20110519, 0.22, 0.00, -0.12, 0.19, -0.08, 0.000 +20110520, -0.73, 0.04, -0.21, -0.19, -0.03, 0.000 +20110523, -1.29, -0.53, 0.01, 0.35, -0.31, 0.000 +20110524, -0.14, -0.28, 0.00, 0.07, -0.01, 0.000 +20110525, 0.45, 0.98, -0.36, -0.46, 0.17, 0.000 +20110526, 0.52, 0.67, -0.15, -0.08, 0.01, 0.000 +20110527, 0.49, 0.20, 0.23, -0.16, 0.12, 0.000 +20110531, 1.04, 0.37, -0.06, -0.18, -0.04, 0.000 +20110601, -2.33, -0.73, -0.25, 0.62, -0.69, 0.000 +20110602, -0.10, -0.01, 0.14, -0.42, -0.07, 0.000 +20110603, -1.10, -0.50, 0.18, 0.18, -0.06, 0.000 +20110606, -1.18, -0.37, -0.32, 0.53, -0.21, 0.000 +20110607, -0.04, 0.31, -0.12, -0.10, -0.06, 0.000 +20110608, -0.54, -0.67, 0.04, 0.53, -0.36, 0.000 +20110609, 0.75, 0.00, 0.02, 0.04, 0.15, 0.000 +20110610, -1.37, -0.18, 0.44, -0.05, -0.10, 0.000 +20110613, 0.01, -0.43, 0.36, 0.37, -0.46, 0.000 +20110614, 1.36, 0.97, -0.40, 0.12, 0.32, 0.000 +20110615, -1.72, -0.02, -0.15, 0.37, -0.28, 0.000 +20110616, 0.12, 0.01, 0.43, 0.39, -0.13, 0.000 +20110617, 0.25, -0.37, 0.65, 0.01, 0.18, 0.000 +20110620, 0.58, 0.36, -0.08, 0.13, -0.04, 0.000 +20110621, 1.52, 0.94, -0.39, -0.31, 0.16, 0.000 +20110622, -0.62, -0.10, 0.07, -0.06, 0.12, 0.000 +20110623, -0.14, 0.59, -0.83, 0.23, -0.07, 0.000 +20110624, -1.10, 0.50, 0.13, 0.09, -0.26, 0.000 +20110627, 0.89, 0.09, -0.05, 0.22, -0.30, 0.000 +20110628, 1.36, 0.40, -0.52, -0.17, -0.03, 0.000 +20110629, 0.77, -0.62, 0.66, -0.38, 0.39, 0.000 +20110630, 0.99, 0.09, -0.25, 0.04, 0.31, 0.000 +20110701, 1.45, -0.01, 0.14, 0.03, 0.14, 0.000 +20110705, -0.08, 0.17, -0.84, 0.41, -0.52, 0.000 +20110706, 0.18, 0.35, -0.56, 0.24, 0.01, 0.000 +20110707, 1.10, 0.48, 0.09, -0.17, -0.31, 0.000 +20110708, -0.67, -0.02, -0.42, 0.32, -0.13, 0.000 +20110711, -1.91, -0.18, -0.23, 0.71, 0.08, 0.000 +20110712, -0.45, 0.05, 0.45, 0.09, 0.24, 0.000 +20110713, 0.45, 0.54, -0.12, -0.19, -0.18, 0.000 +20110714, -0.82, -0.79, 0.13, 0.21, 0.18, 0.000 +20110715, 0.58, 0.06, -0.53, 0.13, -0.65, 0.000 +20110718, -0.94, -0.59, -0.38, 0.57, -0.37, 0.000 +20110719, 1.72, 0.54, -0.67, 0.19, -0.31, 0.000 +20110720, -0.10, -0.21, 0.72, -0.08, 0.44, 0.000 +20110721, 1.29, -0.30, 1.06, -0.43, 0.30, 0.000 +20110722, 0.10, -0.14, -0.75, -0.06, -0.63, 0.000 +20110725, -0.68, -0.54, 0.09, 0.25, -0.14, 0.000 +20110726, -0.47, -0.34, 0.14, 0.05, -0.17, 0.000 +20110727, -2.16, -0.73, 0.43, 0.57, 0.36, 0.000 +20110728, -0.31, 0.12, -0.12, -0.14, -0.37, 0.000 +20110729, -0.56, 0.22, 0.12, -0.22, 0.27, 0.000 +20110801, -0.40, -0.13, 0.21, 0.03, -0.07, 0.000 +20110802, -2.68, -0.49, 0.15, 0.17, -0.21, 0.000 +20110803, 0.58, 0.24, -0.33, 0.20, -0.23, 0.000 +20110804, -5.04, -0.81, 0.33, 0.87, 0.06, 0.000 +20110805, -0.36, -1.19, -0.46, 1.05, 0.18, 0.000 +20110808, -6.97, -1.57, -1.55, 1.67, -0.34, 0.000 +20110809, 4.97, 0.97, 0.64, -1.65, -0.04, 0.000 +20110810, -4.30, -0.60, -1.49, 1.42, -0.44, 0.000 +20110811, 4.72, 0.35, 0.59, -0.77, -0.13, 0.000 +20110812, 0.54, -0.29, -1.48, 0.55, -0.28, 0.000 +20110815, 2.25, 0.46, 0.98, -1.09, 0.24, 0.000 +20110816, -1.07, -0.80, -0.10, 0.60, 0.39, 0.000 +20110817, -0.01, -0.27, 0.70, -0.08, 0.46, 0.000 +20110818, -4.65, -1.00, 0.59, 0.83, 0.50, 0.000 +20110819, -1.55, 0.12, -0.37, 0.18, 0.11, 0.000 +20110822, -0.03, -0.01, -0.81, 0.57, -0.05, 0.000 +20110823, 3.60, 1.15, -0.82, -0.14, -0.64, 0.000 +20110824, 1.35, -0.05, 0.95, -0.45, 0.55, 0.000 +20110825, -1.67, -0.90, 0.54, -0.09, 0.04, 0.000 +20110826, 1.74, 0.85, -1.07, 0.14, -0.56, 0.000 +20110829, 3.11, 1.54, 0.82, -1.18, 0.34, 0.000 +20110830, 0.32, 0.24, -0.78, 0.23, -0.09, 0.000 +20110831, 0.42, -0.71, 0.26, -0.13, -0.06, 0.000 +20110901, -1.33, -1.11, -0.76, 0.56, -0.18, 0.000 +20110902, -2.64, -0.85, -0.66, 0.58, -0.07, 0.000 +20110906, -0.71, 0.38, -0.63, 0.23, -0.15, 0.000 +20110907, 3.06, 0.94, 0.92, -1.18, 0.11, 0.000 +20110908, -1.18, -0.82, -0.55, 0.35, -0.19, 0.000 +20110909, -2.65, -0.20, 0.04, 0.21, 0.04, 0.000 +20110912, 0.68, -0.01, 0.30, -0.37, -0.15, 0.000 +20110913, 1.12, 0.73, -0.40, -0.14, -0.09, 0.000 +20110914, 1.45, 0.41, -0.40, 0.00, -0.20, 0.000 +20110915, 1.64, -0.51, 0.54, -0.32, 0.06, 0.000 +20110916, 0.47, -0.39, -0.35, 0.22, -0.14, 0.000 +20110919, -0.99, -0.57, -1.23, 1.05, -0.29, 0.000 +20110920, -0.45, -1.43, 0.25, 0.23, 0.26, 0.000 +20110921, -2.92, -0.50, -1.22, 0.43, -0.33, 0.000 +20110922, -3.29, 0.14, 0.48, 0.54, 0.56, 0.000 +20110923, 0.74, 0.69, -0.01, -0.19, 0.13, 0.000 +20110926, 2.28, -0.55, 1.23, -0.58, 0.06, 0.000 +20110927, 1.22, 1.03, -0.56, -0.09, -0.18, 0.000 +20110928, -2.29, -1.69, -0.17, 0.72, 0.01, 0.000 +20110929, 0.77, 0.66, 2.03, -0.83, 0.78, 0.000 +20110930, -2.50, -0.21, -0.09, 0.34, 0.17, 0.000 +20111003, -3.18, -1.99, -0.63, 1.10, 0.07, 0.000 +20111004, 2.68, 3.62, 0.37, -0.79, -0.20, 0.000 +20111005, 1.92, -0.26, -0.45, -0.53, -0.39, 0.000 +20111006, 1.94, 0.28, 0.51, -0.39, 0.15, 0.000 +20111007, -0.98, -1.34, -1.35, 1.32, 0.02, 0.000 +20111010, 3.44, 0.56, 0.59, -0.46, -0.22, 0.000 +20111011, 0.15, 0.65, -0.17, 0.01, -0.21, 0.000 +20111012, 1.07, 0.56, 0.90, -0.67, 0.21, 0.000 +20111013, -0.21, 0.15, -1.22, 0.31, -0.31, 0.000 +20111014, 1.72, 0.15, -0.36, 0.00, -0.59, 0.000 +20111017, -2.06, -1.32, -0.46, 0.62, -0.03, 0.000 +20111018, 2.11, 0.72, 1.51, -1.36, 0.37, 0.000 +20111019, -1.38, -0.74, 0.37, 0.32, 0.53, 0.000 +20111020, 0.43, -0.23, 0.70, -0.26, 0.20, 0.000 +20111021, 1.92, 0.17, 0.01, -0.22, 0.04, 0.000 +20111024, 1.59, 1.74, -0.38, -0.39, -0.54, 0.000 +20111025, -2.13, -0.87, -0.34, 0.69, 0.05, 0.000 +20111026, 1.12, 0.76, 0.78, -0.63, 0.35, 0.000 +20111027, 3.54, 1.47, 0.83, -1.54, -0.12, 0.000 +20111028, -0.01, -0.53, -0.47, -0.14, -0.26, 0.000 +20111031, -2.50, 0.00, -0.79, 0.98, 0.16, 0.000 +20111101, -2.86, -0.59, -1.07, 0.92, 0.01, 0.000 +20111102, 1.72, 0.83, 0.99, -0.50, -0.05, 0.000 +20111103, 1.97, 0.60, -0.13, -0.13, -0.12, 0.000 +20111104, -0.53, -0.01, -0.59, 0.13, -0.01, 0.000 +20111107, 0.48, -0.68, 0.39, 0.23, 0.40, 0.000 +20111108, 1.21, 0.02, 0.47, -0.18, -0.14, 0.000 +20111109, -3.78, -0.85, -0.64, 0.94, 0.31, 0.000 +20111110, 0.83, 0.08, 0.58, 0.10, 0.51, 0.000 +20111111, 1.98, 0.52, -0.22, -0.05, -0.18, 0.000 +20111114, -0.92, -0.51, -0.80, 0.42, -0.23, 0.000 +20111115, 0.56, 0.86, -0.26, 0.13, -0.16, 0.000 +20111116, -1.64, -0.18, -0.18, 0.10, 0.06, 0.000 +20111117, -1.65, 0.18, 0.21, 0.24, 0.43, 0.000 +20111118, -0.07, 0.12, 0.91, 0.05, 0.64, 0.000 +20111121, -1.87, -0.54, -0.07, 0.09, -0.05, 0.000 +20111122, -0.44, -0.32, -0.56, 0.15, -0.23, 0.000 +20111123, -2.29, -0.72, -0.28, 0.62, 0.17, 0.000 +20111125, -0.34, -0.99, 0.47, -0.25, 0.36, 0.000 +20111128, 3.10, 1.58, -0.70, -0.58, -0.56, 0.000 +20111129, 0.18, -0.51, 0.17, 0.28, 0.35, 0.000 +20111130, 4.44, 1.10, 1.08, -1.09, -0.06, 0.000 +20111201, -0.22, -0.54, -0.64, 0.33, -0.19, 0.000 +20111202, 0.05, 0.53, 0.64, -0.35, 0.27, 0.000 +20111205, 1.09, 0.30, 0.30, -0.63, -0.41, 0.000 +20111206, 0.04, -0.08, 0.08, 0.07, 0.22, 0.000 +20111207, 0.16, -0.23, 0.74, 0.05, 0.41, 0.000 +20111208, -2.23, -0.79, -0.99, 0.92, 0.02, 0.000 +20111209, 1.83, 1.33, 0.06, -0.32, -0.23, 0.000 +20111212, -1.48, 0.03, -0.43, 0.63, 0.29, 0.000 +20111213, -1.05, -1.03, 0.12, 0.20, 0.11, 0.000 +20111214, -1.21, -0.28, 0.92, -0.18, 0.76, 0.000 +20111215, 0.40, 0.68, 0.13, 0.26, 0.55, 0.000 +20111216, 0.45, 0.28, -0.11, 0.14, -0.14, 0.000 +20111219, -1.31, -0.49, -0.69, 0.70, -0.08, 0.000 +20111220, 3.10, 0.83, 0.30, -0.70, -0.17, 0.000 +20111221, 0.20, 0.02, 1.31, -0.23, 0.94, 0.000 +20111222, 0.83, -0.18, 0.69, -0.79, -0.08, 0.000 +20111223, 0.84, -0.54, -0.16, 0.28, -0.01, 0.000 +20111227, 0.04, 0.45, -0.52, 0.41, -0.24, 0.000 +20111228, -1.34, -0.73, -0.03, 0.18, 0.24, 0.000 +20111229, 1.10, 0.23, 0.24, -0.19, 0.08, 0.000 +20111230, -0.40, -0.08, -0.14, -0.06, 0.02, 0.000 +20120103, 1.50, -0.10, 0.86, -0.67, -0.22, 0.000 +20120104, 0.00, -0.63, 0.08, 0.27, -0.06, 0.000 +20120105, 0.39, 0.19, 0.13, -0.36, 0.05, 0.000 +20120106, -0.19, -0.04, -0.25, -0.05, -0.03, 0.000 +20120109, 0.28, 0.26, -0.06, -0.19, 0.24, 0.000 +20120110, 0.97, 0.40, 0.39, -0.78, -0.03, 0.000 +20120111, 0.13, 0.16, 0.36, -0.77, 0.22, 0.000 +20120112, 0.31, 0.29, 0.00, -0.24, 0.07, 0.000 +20120113, -0.52, -0.24, -0.44, 0.64, 0.11, 0.000 +20120117, 0.36, -0.13, -0.73, 0.57, -0.32, 0.000 +20120118, 1.22, 0.57, 0.15, -0.61, -0.17, 0.000 +20120119, 0.51, -0.15, -0.22, -0.11, -0.24, 0.000 +20120120, 0.03, 0.27, 0.65, 0.02, 0.10, 0.000 +20120123, 0.02, -0.21, 0.13, 0.34, -0.38, 0.000 +20120124, 0.00, 0.74, -0.40, -0.39, -0.23, 0.000 +20120125, 0.91, 0.07, -0.73, 0.32, -0.22, 0.000 +20120126, -0.59, 0.22, -0.55, 0.20, -0.04, 0.000 +20120127, 0.01, 0.84, -0.10, -0.35, -0.17, 0.000 +20120130, -0.31, -0.46, -0.29, 0.47, 0.05, 0.000 +20120131, -0.05, -0.05, 0.01, -0.05, -0.11, 0.000 +20120201, 1.10, 1.11, 0.35, -0.51, 0.30, 0.000 +20120202, 0.17, 0.38, -0.05, -0.45, -0.01, 0.000 +20120203, 1.58, 0.63, 0.32, -0.64, -0.25, 0.000 +20120206, -0.05, -0.29, -0.19, -0.04, -0.23, 0.000 +20120207, 0.16, -0.27, -0.09, 0.21, 0.00, 0.000 +20120208, 0.25, -0.10, 0.42, -0.15, 0.01, 0.000 +20120209, 0.15, -0.38, -0.38, 0.21, 0.01, 0.000 +20120210, -0.75, -0.59, -0.10, 0.29, 0.16, 0.000 +20120213, 0.75, 0.58, -0.05, -0.18, 0.01, 0.000 +20120214, -0.09, -0.41, -0.41, 0.56, -0.21, 0.000 +20120215, -0.50, -0.22, 0.10, -0.11, 0.03, 0.000 +20120216, 1.27, 0.71, 0.28, -0.18, -0.16, 0.000 +20120217, 0.16, -0.24, 0.50, 0.06, 0.31, 0.000 +20120221, -0.05, -0.61, 0.35, 0.14, -0.34, 0.000 +20120222, -0.39, -0.38, -0.65, 0.47, -0.15, 0.000 +20120223, 0.56, 0.89, -0.07, -0.40, 0.26, 0.000 +20120224, 0.15, -0.47, -0.65, 0.18, -0.20, 0.000 +20120227, 0.14, -0.15, 0.37, 0.04, 0.10, 0.000 +20120228, 0.28, -0.62, -0.15, 0.16, -0.03, 0.000 +20120229, -0.55, -1.07, 0.20, 0.19, 0.32, 0.000 +20120301, 0.64, -0.17, 0.02, -0.01, -0.08, 0.000 +20120302, -0.46, -1.26, 0.00, 0.11, 0.34, 0.000 +20120305, -0.40, 0.45, 0.27, 0.14, 0.40, 0.000 +20120306, -1.62, -0.35, -0.32, 0.50, -0.19, 0.000 +20120307, 0.80, 0.31, 0.22, -0.32, 0.07, 0.000 +20120308, 1.07, 0.38, -0.30, -0.13, 0.05, 0.000 +20120309, 0.49, 0.90, 0.15, -0.22, 0.00, 0.000 +20120312, -0.07, -0.21, -0.03, 0.28, 0.09, 0.000 +20120313, 1.86, 0.15, 0.89, -0.64, -0.09, 0.000 +20120314, -0.23, -0.62, -0.21, 0.44, 0.16, 0.000 +20120315, 0.67, 0.30, 0.51, -0.55, 0.15, 0.000 +20120316, 0.06, -0.27, 0.38, -0.46, -0.17, 0.000 +20120319, 0.41, 0.50, -0.10, -0.14, -0.36, 0.000 +20120320, -0.39, -0.63, 0.31, 0.04, 0.12, 0.000 +20120321, -0.10, 0.29, -0.40, 0.14, 0.08, 0.000 +20120322, -0.74, -0.15, -0.42, 0.55, -0.02, 0.000 +20120323, 0.39, 0.61, 0.31, -0.33, -0.18, 0.000 +20120326, 1.45, 0.48, -0.24, 0.13, -0.16, 0.000 +20120327, -0.30, -0.38, -0.31, 0.07, -0.11, 0.000 +20120328, -0.51, 0.00, 0.42, -0.22, 0.39, 0.000 +20120329, -0.16, -0.04, -0.23, 0.19, 0.13, 0.000 +20120330, 0.28, -0.69, -0.04, -0.01, 0.16, 0.000 +20120402, 0.77, 0.35, 0.03, 0.15, -0.34, 0.000 +20120403, -0.34, -0.33, -0.32, 0.16, 0.20, 0.000 +20120404, -1.11, -0.60, 0.05, 0.27, 0.36, 0.000 +20120405, -0.03, -0.11, -0.47, 0.23, -0.19, 0.000 +20120409, -1.21, -0.44, -0.05, 0.52, 0.17, 0.000 +20120410, -1.85, -0.44, 0.09, 0.23, 0.08, 0.000 +20120411, 0.85, 0.80, 0.28, -0.28, 0.15, 0.000 +20120412, 1.44, 0.08, 0.29, -0.48, -0.19, 0.000 +20120413, -1.25, -0.20, -0.76, 0.64, 0.10, 0.000 +20120416, -0.09, 0.19, 0.86, -0.21, 0.46, 0.000 +20120417, 1.55, 0.04, -0.24, -0.10, -0.35, 0.000 +20120418, -0.43, -0.46, -0.41, 0.37, -0.11, 0.000 +20120419, -0.57, -0.06, 0.30, -0.31, 0.29, 0.000 +20120420, 0.11, 0.52, -0.09, 0.31, 0.64, 0.000 +20120423, -0.95, -0.51, 0.16, 0.07, -0.04, 0.000 +20120424, 0.29, 0.27, 0.98, -0.63, 0.69, 0.000 +20120425, 1.44, 0.37, -1.05, 0.35, -0.76, 0.000 +20120426, 0.75, -0.04, -0.02, -0.18, -0.25, 0.000 +20120427, 0.35, 0.70, -0.18, 0.09, -0.16, 0.000 +20120430, -0.49, -0.62, 0.09, -0.10, -0.15, 0.000 +20120501, 0.48, -0.78, 0.39, -0.04, 0.02, 0.000 +20120502, -0.15, 0.64, -0.59, 0.38, 0.29, 0.000 +20120503, -0.92, -0.63, 0.12, 0.41, 0.33, 0.000 +20120504, -1.62, -0.19, 0.13, 0.20, 0.17, 0.000 +20120507, 0.04, 0.13, 0.50, -0.38, 0.30, 0.000 +20120508, -0.41, 0.35, 0.36, 0.10, 0.27, 0.000 +20120509, -0.62, 0.15, -0.25, 0.08, -0.11, 0.000 +20120510, 0.29, 0.09, 0.56, -0.08, 0.53, 0.000 +20120511, -0.29, 0.11, -0.94, -0.03, -0.07, 0.000 +20120514, -1.14, -0.14, -0.12, 0.08, 0.09, 0.000 +20120515, -0.52, 0.51, -0.20, 0.39, 0.03, 0.000 +20120516, -0.44, -0.18, -0.43, 0.67, 0.25, 0.000 +20120517, -1.64, -0.52, 0.43, 0.07, -0.05, 0.000 +20120518, -0.80, -0.20, 0.16, 0.12, 0.39, 0.000 +20120521, 1.69, 0.57, -1.18, -0.21, -0.65, 0.000 +20120522, 0.00, -0.82, 0.28, -0.06, 0.01, 0.000 +20120523, 0.26, 0.49, -0.27, 0.00, -0.10, 0.000 +20120524, 0.16, 0.03, 0.21, 0.33, 0.56, 0.000 +20120525, -0.16, 0.24, -0.10, 0.17, 0.14, 0.000 +20120529, 1.14, 0.19, -0.02, -0.31, -0.06, 0.000 +20120530, -1.47, -0.31, -0.26, 0.58, -0.03, 0.000 +20120531, -0.23, 0.18, 0.57, -0.14, 0.22, 0.000 +20120601, -2.60, -0.58, 0.21, 0.15, 0.07, 0.000 +20120604, -0.05, 0.08, -0.55, 0.31, -0.41, 0.000 +20120605, 0.68, 0.29, 0.06, -0.57, -0.07, 0.000 +20120606, 2.32, 0.13, 0.21, -0.36, -0.15, 0.000 +20120607, -0.10, -0.46, 0.13, 0.04, 0.25, 0.000 +20120608, 0.85, 0.23, 0.02, -0.11, 0.11, 0.000 +20120611, -1.40, -0.84, -0.05, 0.41, 0.32, 0.000 +20120612, 1.16, 0.14, 0.08, -0.32, -0.02, 0.000 +20120613, -0.77, -0.45, 0.35, 0.14, 0.08, 0.000 +20120614, 1.04, 0.22, 0.37, -0.08, 0.37, 0.000 +20120615, 1.07, 0.10, -0.06, -0.20, -0.45, 0.000 +20120618, 0.21, 0.09, -0.85, 0.18, -0.18, 0.000 +20120619, 1.09, 0.69, 0.16, -0.36, -0.32, 0.000 +20120620, -0.14, -0.09, 0.15, 0.03, -0.04, 0.000 +20120621, -2.26, -0.10, 0.13, 0.00, 0.66, 0.000 +20120622, 0.79, 0.64, 0.08, -0.30, -0.11, 0.000 +20120625, -1.62, 0.08, -0.14, 0.45, 0.21, 0.000 +20120626, 0.52, -0.10, -0.06, -0.08, 0.05, 0.000 +20120627, 0.92, 0.40, 0.48, -0.54, 0.00, 0.000 +20120628, -0.24, 0.18, 0.44, 0.20, 0.51, 0.000 +20120629, 2.55, 0.33, -0.71, -0.25, -0.62, 0.000 +20120702, 0.33, 0.69, -0.04, -0.27, 0.21, 0.000 +20120703, 0.76, 0.73, 0.07, 0.15, -0.61, 0.000 +20120705, -0.36, 0.45, -0.87, 0.58, -0.27, 0.000 +20120706, -0.99, -0.40, 0.36, 0.07, 0.68, 0.000 +20120709, -0.23, -0.25, -0.24, 0.23, 0.00, 0.000 +20120710, -0.84, -0.39, 0.31, -0.04, 0.31, 0.000 +20120711, -0.08, -0.27, 0.74, -0.16, 0.08, 0.000 +20120712, -0.50, 0.15, -0.81, -0.13, 0.07, 0.000 +20120713, 1.62, -0.28, 0.57, -0.15, 0.04, 0.000 +20120716, -0.31, -0.44, -0.25, 0.01, 0.01, 0.000 +20120717, 0.67, -0.51, 0.24, -0.07, 0.17, 0.000 +20120718, 0.71, 0.23, -0.79, 0.47, -0.70, 0.000 +20120719, 0.27, -0.46, -0.97, 0.51, -0.86, 0.000 +20120720, -1.06, -0.36, 0.07, -0.02, 0.34, 0.000 +20120723, -1.02, -0.66, 0.20, 0.09, 0.37, 0.000 +20120724, -0.99, -0.57, 0.26, -0.28, 0.10, 0.000 +20120725, -0.01, 0.24, -0.05, -0.45, 0.06, 0.000 +20120726, 1.53, -0.75, 0.39, 0.14, 0.23, 0.000 +20120727, 1.96, 0.57, 0.08, -0.15, -0.37, 0.000 +20120730, -0.13, -0.39, 0.26, 0.21, 0.28, 0.000 +20120731, -0.47, 0.02, 0.25, 0.43, -0.05, 0.000 +20120801, -0.50, -1.56, 0.29, 0.08, 0.17, 0.000 +20120802, -0.69, 0.14, -0.41, -0.08, 0.09, 0.000 +20120803, 1.99, 0.63, 0.57, -0.32, -0.20, 0.000 +20120806, 0.34, 0.55, 0.07, -0.30, -0.20, 0.000 +20120807, 0.64, 0.41, 0.07, 0.10, -0.50, 0.000 +20120808, 0.09, -0.20, 0.57, 0.18, 0.42, 0.000 +20120809, 0.12, 0.35, 0.11, -0.24, -0.40, 0.000 +20120810, 0.17, -0.34, -0.02, 0.13, 0.06, 0.000 +20120813, -0.14, -0.17, 0.00, -0.06, 0.06, 0.000 +20120814, -0.03, -0.43, -0.05, 0.28, 0.25, 0.000 +20120815, 0.27, 0.72, -0.07, -0.08, -0.10, 0.000 +20120816, 0.75, 0.48, -0.17, 0.03, -0.21, 0.000 +20120817, 0.27, 0.59, 0.11, 0.03, -0.12, 0.000 +20120820, -0.06, -0.44, 0.59, -0.23, 0.15, 0.000 +20120821, -0.31, 0.17, 0.40, -0.07, -0.07, 0.000 +20120822, 0.00, -0.51, -0.35, -0.21, -0.32, 0.000 +20120823, -0.78, -0.06, -0.36, -0.18, 0.12, 0.000 +20120824, 0.61, -0.30, -0.03, -0.13, 0.18, 0.000 +20120827, -0.06, 0.12, -0.12, 0.03, -0.16, 0.000 +20120828, 0.01, 0.57, -0.09, -0.02, -0.01, 0.000 +20120829, 0.15, 0.27, 0.12, -0.17, 0.13, 0.000 +20120830, -0.80, -0.44, 0.00, 0.00, 0.25, 0.000 +20120831, 0.52, -0.06, 0.00, -0.06, -0.33, 0.000 +20120904, 0.08, 0.92, -0.17, -0.28, 0.12, 0.000 +20120905, -0.05, -0.04, 0.32, -0.14, 0.04, 0.000 +20120906, 2.07, -0.02, 0.34, -0.08, 0.07, 0.000 +20120907, 0.45, 0.12, 0.78, 0.08, 0.04, 0.000 +20120910, -0.57, 0.29, -0.06, 0.11, 0.38, 0.000 +20120911, 0.28, 0.09, 0.54, -0.07, 0.17, 0.000 +20120912, 0.27, 0.12, 0.31, -0.41, 0.02, 0.000 +20120913, 1.56, -0.31, 0.56, -0.33, 0.00, 0.000 +20120914, 0.54, 0.60, 0.48, -0.01, -0.40, 0.000 +20120917, -0.42, -0.30, -0.79, 0.22, -0.19, 0.000 +20120918, -0.15, -0.05, -0.24, -0.07, 0.05, 0.000 +20120919, 0.18, -0.14, 0.05, -0.15, 0.29, 0.000 +20120920, -0.13, -0.44, -0.17, 0.00, 0.13, 0.000 +20120921, 0.04, 0.45, -0.04, -0.19, 0.15, 0.000 +20120924, -0.26, -0.15, 0.33, -0.07, 0.46, 0.000 +20120925, -1.11, -0.39, -0.36, -0.01, 0.39, 0.000 +20120926, -0.57, -0.04, 0.03, 0.13, 0.13, 0.000 +20120927, 0.99, 0.23, -0.15, -0.07, -0.35, 0.000 +20120928, -0.46, -0.30, -0.25, -0.01, 0.03, 0.000 +20121001, 0.26, 0.10, 0.24, -0.03, 0.19, 0.000 +20121002, 0.10, -0.16, 0.27, -0.19, 0.04, 0.000 +20121003, 0.36, -0.68, -0.02, -0.35, 0.37, 0.000 +20121004, 0.76, -0.06, 0.77, -0.14, 0.21, 0.000 +20121005, -0.03, -0.19, 0.22, -0.10, 0.61, 0.000 +20121008, -0.36, -0.17, 0.21, 0.02, 0.11, 0.000 +20121009, -1.05, -0.26, 0.35, 0.08, 0.03, 0.000 +20121010, -0.58, 0.37, 0.26, -0.34, 0.25, 0.000 +20121011, 0.11, 0.42, 0.68, -0.16, 0.07, 0.000 +20121012, -0.34, -0.41, -0.90, 0.53, -0.20, 0.000 +20121015, 0.79, -0.19, 0.16, -0.22, 0.24, 0.000 +20121016, 1.00, -0.26, -0.24, 0.22, -0.62, 0.000 +20121017, 0.49, 0.26, 1.13, -0.65, 0.36, 0.000 +20121018, -0.31, -0.50, 0.26, -0.09, 0.40, 0.000 +20121019, -1.68, -0.35, 0.46, -0.14, 0.44, 0.000 +20121022, 0.01, -0.06, 0.18, 0.12, -0.16, 0.000 +20121023, -1.29, 0.91, -0.51, -0.06, 0.00, 0.000 +20121024, -0.28, -0.18, 0.43, -0.37, 0.13, 0.000 +20121025, 0.27, 0.20, -0.09, 0.08, -0.09, 0.000 +20121026, -0.07, -0.18, -0.40, 0.36, -0.21, 0.000 +20121031, 0.14, 0.59, 0.37, 0.01, 0.14, 0.000 +20121101, 1.19, 0.20, 0.21, 0.29, 0.03, 0.000 +20121102, -1.04, -0.49, 0.26, 0.27, 0.46, 0.000 +20121105, 0.28, 0.34, -0.22, -0.07, -0.25, 0.000 +20121106, 0.80, 0.03, 0.54, 0.25, 0.16, 0.000 +20121107, -2.31, -0.23, -1.45, 0.20, 0.05, 0.000 +20121108, -1.24, -0.26, 0.41, -0.32, 0.40, 0.000 +20121109, 0.15, 0.01, -0.14, 0.08, -0.06, 0.000 +20121112, 0.00, -0.18, 0.06, 0.06, -0.03, 0.000 +20121113, -0.40, -0.22, -0.30, 0.06, 0.26, 0.000 +20121114, -1.40, -0.38, -0.25, 0.14, -0.27, 0.000 +20121115, -0.24, -0.33, 0.17, 0.09, 0.10, 0.000 +20121116, 0.58, 0.04, 0.03, -0.40, 0.25, 0.000 +20121119, 1.98, 0.26, -0.01, 0.48, -0.20, 0.000 +20121120, 0.11, -0.05, 0.14, -0.30, 0.16, 0.000 +20121121, 0.31, 0.35, -0.06, 0.01, 0.08, 0.000 +20121123, 1.28, -0.15, 0.07, 0.14, -0.03, 0.000 +20121126, -0.14, 0.49, -0.17, -0.08, -0.30, 0.000 +20121127, -0.43, 0.40, -0.22, 0.00, 0.04, 0.000 +20121128, 0.83, 0.00, -0.28, 0.25, -0.15, 0.000 +20121129, 0.54, 0.68, -0.02, -0.22, -0.19, 0.000 +20121130, 0.02, -0.14, 0.27, -0.20, 0.32, 0.000 +20121203, -0.46, 0.28, 0.21, -0.01, 0.02, 0.001 +20121204, -0.16, 0.35, -0.06, -0.02, 0.07, 0.001 +20121205, 0.17, -0.56, 0.99, -0.55, 0.64, 0.001 +20121206, 0.31, -0.19, -0.15, 0.15, -0.18, 0.001 +20121207, 0.27, -0.34, 0.34, -0.09, 0.42, 0.001 +20121210, 0.11, 0.42, 0.02, -0.16, -0.01, 0.001 +20121211, 0.68, 0.41, -0.06, -0.29, -0.28, 0.001 +20121212, -0.02, -0.62, 0.54, -0.28, 0.16, 0.001 +20121213, -0.57, 0.05, 0.06, 0.04, 0.21, 0.001 +20121214, -0.34, 0.32, 0.25, -0.20, 0.35, 0.001 +20121217, 1.16, 0.00, 0.59, -0.36, 0.06, 0.001 +20121218, 1.20, 0.40, 0.08, 0.15, -0.60, 0.001 +20121219, -0.60, 0.60, 0.24, -0.04, -0.24, 0.001 +20121220, 0.53, -0.14, 0.72, -0.44, 0.24, 0.001 +20121221, -0.88, 0.41, -0.33, 0.20, -0.13, 0.001 +20121224, -0.24, -0.22, 0.00, -0.11, 0.16, 0.001 +20121226, -0.54, -0.11, 0.34, -0.14, 0.15, 0.001 +20121227, -0.11, -0.02, -0.17, 0.18, -0.03, 0.001 +20121228, -1.00, 0.46, 0.00, -0.10, 0.13, 0.001 +20121231, 1.71, 0.40, -0.07, 0.15, -0.28, 0.001 +20130102, 2.62, 0.12, 0.35, -0.63, -0.04, 0.000 +20130103, -0.14, 0.13, 0.04, 0.17, 0.23, 0.000 +20130104, 0.55, 0.19, 0.43, -0.37, 0.26, 0.000 +20130107, -0.31, -0.08, -0.36, -0.10, -0.12, 0.000 +20130108, -0.27, 0.03, -0.07, -0.18, 0.09, 0.000 +20130109, 0.34, 0.24, -0.41, -0.02, -0.15, 0.000 +20130110, 0.66, -0.59, 0.51, -0.17, 0.03, 0.000 +20130111, 0.02, 0.05, -0.45, 0.26, -0.22, 0.000 +20130114, -0.06, 0.03, -0.08, -0.09, 0.37, 0.000 +20130115, 0.19, 0.28, 0.00, -0.08, 0.07, 0.000 +20130116, -0.04, -0.23, 0.23, -0.02, -0.03, 0.000 +20130117, 0.61, 0.39, -0.09, 0.18, -0.01, 0.000 +20130118, 0.29, 0.03, -0.11, 0.17, 0.27, 0.000 +20130122, 0.48, 0.21, 0.46, -0.19, 0.11, 0.000 +20130123, 0.10, -0.34, -0.13, -0.15, -0.16, 0.000 +20130124, 0.09, 0.35, 0.05, 0.09, 0.53, 0.000 +20130125, 0.59, -0.04, -0.28, 0.02, -0.17, 0.000 +20130128, -0.14, 0.35, 0.12, -0.03, -0.05, 0.000 +20130129, 0.36, -0.44, 0.35, -0.10, 0.30, 0.000 +20130130, -0.38, -0.88, 0.12, -0.09, -0.01, 0.000 +20130131, -0.08, 0.71, 0.19, -0.26, 0.10, 0.000 +20130201, 0.99, 0.08, 0.26, -0.27, -0.05, 0.000 +20130204, -1.19, -0.10, -0.15, -0.02, 0.02, 0.000 +20130205, 1.07, -0.06, 0.18, 0.00, -0.10, 0.000 +20130206, 0.15, 0.30, 0.12, -0.16, 0.04, 0.000 +20130207, -0.15, -0.09, 0.02, 0.17, -0.04, 0.000 +20130208, 0.58, 0.03, -0.21, 0.14, -0.45, 0.000 +20130211, -0.08, -0.03, 0.39, -0.18, 0.28, 0.000 +20130212, 0.16, 0.27, 0.72, -0.54, 0.45, 0.000 +20130213, 0.14, 0.08, -0.01, -0.01, -0.04, 0.000 +20130214, 0.11, 0.31, 0.10, -0.31, -0.20, 0.000 +20130215, -0.11, 0.01, -0.10, -0.04, 0.13, 0.000 +20130219, 0.74, 0.25, 0.17, -0.08, 0.35, 0.000 +20130220, -1.36, -0.61, -0.63, 0.24, 0.12, 0.000 +20130221, -0.66, -0.31, -0.06, 0.05, 0.26, 0.000 +20130222, 0.94, 0.17, -0.06, -0.11, -0.13, 0.000 +20130225, -1.82, -0.26, -0.72, 0.60, -0.39, 0.000 +20130226, 0.58, -0.19, 0.02, -0.01, 0.22, 0.000 +20130227, 1.29, -0.32, 0.16, -0.21, 0.03, 0.000 +20130228, -0.05, 0.11, -0.16, 0.04, -0.01, 0.000 +20130301, 0.22, 0.11, -0.33, -0.12, 0.00, 0.000 +20130304, 0.47, -0.41, 0.11, -0.40, 0.44, 0.000 +20130305, 1.00, 0.20, -0.18, 0.06, 0.00, 0.000 +20130306, 0.18, 0.14, 0.47, -0.27, 0.13, 0.000 +20130307, 0.27, 0.26, 0.41, -0.08, -0.06, 0.000 +20130308, 0.52, 0.41, -0.15, 0.04, 0.01, 0.000 +20130311, 0.30, -0.29, 0.23, 0.02, 0.02, 0.000 +20130312, -0.22, 0.04, -0.14, 0.27, 0.08, 0.000 +20130313, 0.20, 0.23, 0.08, 0.10, 0.26, 0.000 +20130314, 0.58, 0.40, 0.40, -0.03, -0.01, 0.000 +20130315, -0.19, 0.12, 0.43, 0.18, 0.01, 0.000 +20130318, -0.50, 0.09, -0.23, 0.34, -0.03, 0.000 +20130319, -0.24, -0.05, 0.03, 0.14, 0.36, 0.000 +20130320, 0.76, 0.21, 0.00, -0.27, 0.22, 0.000 +20130321, -0.85, 0.12, -0.28, 0.00, 0.08, 0.000 +20130322, 0.62, -0.52, -0.30, 0.11, -0.15, 0.000 +20130325, -0.29, 0.30, 0.02, 0.06, -0.03, 0.000 +20130326, 0.76, -0.39, -0.22, 0.06, -0.04, 0.000 +20130327, -0.02, 0.11, -0.31, 0.10, -0.10, 0.000 +20130328, 0.39, -0.31, -0.30, -0.16, 0.09, 0.000 +20130401, -0.57, -0.91, 0.02, 0.13, 0.26, 0.000 +20130402, 0.33, -0.90, -0.32, -0.06, 0.04, 0.000 +20130403, -1.16, -0.42, -0.20, 0.51, -0.11, 0.000 +20130404, 0.42, 0.24, 0.25, -0.09, 0.28, 0.000 +20130405, -0.41, 0.09, 0.35, -0.13, 0.24, 0.000 +20130408, 0.70, 0.12, 0.29, -0.32, 0.11, 0.000 +20130409, 0.31, -0.41, 0.19, -0.02, -0.39, 0.000 +20130410, 1.28, 0.63, -0.10, -0.02, -0.07, 0.000 +20130411, 0.35, -0.17, -0.15, 0.12, 0.48, 0.000 +20130412, -0.28, -0.18, -0.46, -0.04, 0.07, 0.000 +20130415, -2.48, -1.50, -0.28, -0.01, -0.04, 0.000 +20130416, 1.47, 0.16, 0.07, -0.31, -0.06, 0.000 +20130417, -1.46, -0.35, -0.54, 0.14, 0.28, 0.000 +20130418, -0.71, 0.18, 0.02, 0.41, 0.10, 0.000 +20130419, 0.97, 0.03, 0.12, -0.42, 0.19, 0.000 +20130422, 0.45, -0.18, -0.14, 0.26, -0.29, 0.000 +20130423, 1.11, 0.52, 0.63, -0.49, 0.25, 0.000 +20130424, 0.06, 0.51, 1.22, 0.00, -0.26, 0.000 +20130425, 0.49, 0.23, 0.01, -0.06, -0.08, 0.000 +20130426, -0.20, -0.35, -0.22, 0.09, 0.09, 0.000 +20130429, 0.67, 0.11, -0.08, 0.24, -0.32, 0.000 +20130430, 0.29, 0.35, -0.05, 0.18, -0.28, 0.000 +20130501, -1.08, -1.47, -0.27, -0.09, -0.10, 0.000 +20130502, 1.04, 0.55, 0.13, -0.42, -0.25, 0.000 +20130503, 1.12, 0.62, 0.16, -0.12, -0.28, 0.000 +20130506, 0.23, 0.28, 0.84, -0.48, 0.06, 0.000 +20130507, 0.54, 0.19, 0.14, 0.21, 0.30, 0.000 +20130508, 0.44, -0.18, 0.14, -0.03, -0.15, 0.000 +20130509, -0.31, 0.07, -0.30, 0.04, -0.17, 0.000 +20130510, 0.54, 0.40, -0.20, -0.31, -0.01, 0.000 +20130513, -0.02, -0.26, -0.06, -0.40, 0.07, 0.000 +20130514, 1.10, 0.17, 0.31, -0.22, 0.16, 0.000 +20130515, 0.51, -0.11, 0.27, -0.05, 0.31, 0.000 +20130516, -0.50, 0.16, -0.28, 0.12, -0.35, 0.000 +20130517, 1.04, 0.09, 0.38, 0.10, -0.17, 0.000 +20130520, -0.06, 0.42, 0.49, 0.25, -0.21, 0.000 +20130521, 0.16, -0.07, -0.08, 0.18, 0.21, 0.000 +20130522, -0.92, -0.73, -0.17, 0.20, 0.34, 0.000 +20130523, -0.19, 0.48, -0.10, 0.01, 0.09, 0.000 +20130524, -0.06, 0.15, 0.05, -0.05, 0.01, 0.000 +20130528, 0.77, 0.68, 0.22, -0.12, -0.18, 0.000 +20130529, -0.70, -0.25, 0.59, -0.24, -0.29, 0.000 +20130530, 0.50, 0.37, 0.48, -0.44, 0.00, 0.000 +20130531, -1.31, 0.47, -0.24, 0.17, -0.13, 0.000 +20130603, 0.48, 0.16, -0.11, 0.23, -0.05, 0.000 +20130604, -0.55, -0.26, -0.16, 0.35, -0.03, 0.000 +20130605, -1.38, 0.02, -0.26, 0.10, -0.15, 0.000 +20130606, 0.89, 0.18, 0.26, -0.51, 0.36, 0.000 +20130607, 1.30, -0.44, 0.07, -0.24, -0.07, 0.000 +20130610, 0.07, 0.66, 0.22, -0.22, -0.10, 0.000 +20130611, -1.04, -0.04, -0.58, 0.35, 0.03, 0.000 +20130612, -0.82, 0.04, 0.03, 0.13, 0.15, 0.000 +20130613, 1.47, 0.14, 0.31, -0.17, 0.28, 0.000 +20130614, -0.59, -0.28, -0.56, 0.19, -0.03, 0.000 +20130617, 0.74, -0.09, 0.02, -0.23, -0.38, 0.000 +20130618, 0.80, 0.36, -0.06, -0.01, 0.04, 0.000 +20130619, -1.28, 0.21, 0.12, -0.02, -0.29, 0.000 +20130620, -2.45, 0.01, 0.34, 0.05, -0.11, 0.000 +20130621, 0.13, 0.19, -0.08, -0.20, 0.11, 0.000 +20130624, -1.19, 0.01, -0.66, 0.23, -0.14, 0.000 +20130625, 0.96, 0.07, 0.85, -0.28, 0.29, 0.000 +20130626, 0.92, -0.72, -0.13, 0.00, 0.19, 0.000 +20130627, 0.77, 0.86, 0.36, -0.43, 0.24, 0.000 +20130628, -0.33, 0.30, -0.14, 0.19, -0.31, 0.000 +20130701, 0.71, 0.73, -0.13, -0.34, 0.01, 0.000 +20130702, -0.10, 0.02, 0.08, 0.09, -0.09, 0.000 +20130703, 0.11, 0.17, -0.21, 0.18, -0.06, 0.000 +20130705, 1.11, 0.42, 0.45, -0.32, 0.14, 0.000 +20130708, 0.53, -0.15, 0.05, 0.15, 0.10, 0.000 +20130709, 0.74, 0.05, 0.26, -0.01, 0.03, 0.000 +20130710, 0.06, 0.29, -0.41, -0.07, -0.10, 0.000 +20130711, 1.32, -0.19, -0.63, -0.14, -0.17, 0.000 +20130712, 0.33, -0.03, 0.20, -0.67, 0.05, 0.000 +20130715, 0.20, 0.55, 0.34, -0.02, 0.08, 0.000 +20130716, -0.41, 0.03, 0.08, 0.13, 0.27, 0.000 +20130717, 0.30, -0.04, 0.18, -0.45, 0.04, 0.000 +20130718, 0.54, 0.14, 0.96, -0.19, 0.21, 0.000 +20130719, 0.09, -0.10, 0.28, -0.33, 0.47, 0.000 +20130722, 0.22, 0.11, 0.29, -0.13, 0.09, 0.000 +20130723, -0.15, 0.10, 0.28, -0.02, 0.29, 0.000 +20130724, -0.39, -0.28, -0.25, 0.66, -0.08, 0.000 +20130725, 0.42, 0.48, -0.35, -0.47, -0.27, 0.000 +20130726, 0.02, -0.65, -0.22, 0.15, -0.19, 0.000 +20130729, -0.37, -0.33, -0.28, 0.30, -0.16, 0.000 +20130730, 0.12, 0.16, -0.52, 0.13, -0.09, 0.000 +20130731, 0.09, 0.20, 0.09, 0.01, -0.06, 0.000 +20130801, 1.40, 0.08, 0.05, -0.20, -0.17, 0.000 +20130802, 0.20, -0.24, -0.33, -0.01, -0.06, 0.000 +20130805, -0.07, 0.49, -0.17, -0.05, -0.08, 0.000 +20130806, -0.68, -0.35, -0.09, 0.34, -0.05, 0.000 +20130807, -0.42, -0.35, 0.02, 0.29, 0.05, 0.000 +20130808, 0.47, -0.01, -0.01, -0.04, 0.15, 0.000 +20130809, -0.29, 0.13, -0.19, 0.15, -0.18, 0.000 +20130812, -0.02, 0.55, -0.22, 0.16, -0.08, 0.000 +20130813, 0.20, -0.28, -0.05, 0.08, -0.11, 0.000 +20130814, -0.50, 0.15, 0.29, -0.05, 0.02, 0.000 +20130815, -1.47, -0.37, 0.30, -0.05, 0.03, 0.000 +20130816, -0.26, 0.05, 0.10, -0.14, -0.13, 0.000 +20130819, -0.62, -0.26, -0.75, 0.62, -0.33, 0.000 +20130820, 0.53, 0.86, 0.13, -0.33, 0.09, 0.000 +20130821, -0.59, -0.07, -0.46, -0.08, -0.31, 0.000 +20130822, 0.93, 0.50, 0.05, -0.33, -0.19, 0.000 +20130823, 0.38, -0.27, -0.14, 0.09, -0.25, 0.000 +20130826, -0.29, 0.46, -0.50, -0.11, -0.25, 0.000 +20130827, -1.75, -0.74, -0.32, 0.66, 0.04, 0.000 +20130828, 0.30, 0.11, 0.07, -0.01, -0.09, 0.000 +20130829, 0.34, 0.73, -0.41, -0.39, -0.25, 0.000 +20130830, -0.47, -1.14, -0.21, 0.01, -0.09, 0.000 +20130903, 0.46, 0.06, 0.09, -0.48, -0.23, 0.000 +20130904, 0.83, -0.01, -0.15, -0.12, 0.09, 0.000 +20130905, 0.19, 0.21, 0.37, -0.20, -0.08, 0.000 +20130906, 0.01, 0.00, 0.00, -0.18, -0.10, 0.000 +20130909, 1.09, 0.42, -0.21, -0.19, -0.14, 0.000 +20130910, 0.80, 0.06, 0.21, -0.16, 0.04, 0.000 +20130911, 0.28, -0.23, 0.01, 0.22, 0.15, 0.000 +20130912, -0.32, -0.29, -0.34, 0.13, -0.15, 0.000 +20130913, 0.29, 0.27, -0.01, 0.16, 0.24, 0.000 +20130916, 0.49, -0.39, 0.40, -0.02, 0.39, 0.000 +20130917, 0.54, 0.41, -0.14, -0.34, -0.22, 0.000 +20130918, 1.10, -0.24, -0.45, -0.03, -0.18, 0.000 +20130919, -0.13, 0.09, -0.60, 0.10, -0.29, 0.000 +20130920, -0.63, 0.51, 0.18, -0.08, -0.17, 0.000 +20130923, -0.45, 0.42, -0.37, 0.62, -0.23, 0.000 +20130924, -0.12, 0.49, 0.01, -0.15, 0.00, 0.000 +20130925, -0.23, 0.11, 0.58, -0.41, 0.03, 0.000 +20130926, 0.42, 0.15, -0.73, 0.15, -0.32, 0.000 +20130927, -0.39, -0.01, -0.06, 0.07, -0.12, 0.000 +20130930, -0.49, 0.51, 0.06, 0.16, 0.04, 0.000 +20131001, 0.90, 0.37, -0.13, -0.14, -0.22, 0.000 +20131002, -0.10, -0.33, -0.09, -0.10, -0.08, 0.000 +20131003, -0.88, -0.17, 0.20, 0.05, 0.22, 0.000 +20131004, 0.74, 0.00, 0.09, -0.27, -0.14, 0.000 +20131007, -0.95, -0.29, 0.00, 0.11, 0.19, 0.000 +20131008, -1.35, -0.41, 0.76, 0.62, 0.54, 0.000 +20131009, -0.05, -0.35, 0.62, 0.44, 0.34, 0.000 +20131010, 2.23, 0.19, -0.02, -0.34, -0.28, 0.000 +20131011, 0.71, 0.76, -0.01, 0.12, -0.10, 0.000 +20131014, 0.44, 0.21, -0.11, 0.07, -0.15, 0.000 +20131015, -0.73, -0.18, 0.01, 0.30, -0.14, 0.000 +20131016, 1.37, -0.30, 0.14, -0.54, -0.10, 0.000 +20131017, 0.70, 0.12, 0.04, -0.17, 0.07, 0.000 +20131018, 0.73, 0.27, -0.05, -0.08, -0.49, 0.000 +20131021, -0.02, -0.13, 0.06, 0.30, 0.02, 0.000 +20131022, 0.50, -0.28, 0.10, 0.24, 0.35, 0.000 +20131023, -0.51, 0.15, -0.33, 0.55, 0.21, 0.000 +20131024, 0.42, 0.34, -0.32, -0.03, -0.16, 0.000 +20131025, 0.33, -0.33, 0.13, 0.16, 0.04, 0.000 +20131028, 0.09, -0.07, 0.01, 0.37, 0.17, 0.000 +20131029, 0.54, -0.14, -0.12, 0.08, 0.28, 0.000 +20131030, -0.61, -0.75, 0.50, 0.46, 0.06, 0.000 +20131031, -0.34, -0.11, -0.43, 0.34, 0.15, 0.000 +20131101, 0.20, -0.65, 0.22, 0.17, 0.29, 0.000 +20131104, 0.47, 0.75, -0.03, 0.08, -0.04, 0.000 +20131105, -0.23, -0.01, -0.25, 0.23, -0.10, 0.000 +20131106, 0.27, -0.81, 0.39, 0.27, 0.18, 0.000 +20131107, -1.46, -0.33, 0.19, 0.13, 0.32, 0.000 +20131108, 1.45, 0.59, 0.42, -0.51, -0.07, 0.000 +20131111, 0.12, 0.05, -0.13, 0.00, -0.03, 0.000 +20131112, -0.19, 0.33, -0.71, 0.54, 0.13, 0.000 +20131113, 0.90, 0.06, -0.13, -0.38, -0.21, 0.000 +20131114, 0.43, -0.57, 0.31, -0.08, 0.03, 0.000 +20131115, 0.43, 0.06, -0.27, 0.03, -0.05, 0.000 +20131118, -0.50, -0.38, 0.46, 0.42, 0.29, 0.000 +20131119, -0.27, -0.29, 0.26, 0.04, 0.00, 0.000 +20131120, -0.33, 0.26, 0.02, 0.02, -0.03, 0.000 +20131121, 0.97, 0.81, -0.06, -0.44, -0.30, 0.000 +20131122, 0.50, -0.09, 0.12, -0.09, -0.04, 0.000 +20131125, -0.11, 0.16, 0.14, 0.00, 0.25, 0.000 +20131126, 0.18, 0.80, -0.48, -0.34, -0.39, 0.000 +20131127, 0.30, 0.33, -0.06, 0.07, 0.01, 0.000 +20131129, -0.02, 0.26, -0.17, 0.00, -0.18, 0.000 +20131202, -0.31, -0.93, 0.15, -0.03, 0.02, 0.000 +20131203, -0.34, -0.13, -0.10, 0.16, -0.03, 0.000 +20131204, -0.07, -0.21, 0.26, -0.36, -0.15, 0.000 +20131205, -0.35, 0.60, -0.64, 0.04, -0.44, 0.000 +20131206, 1.02, -0.28, 0.20, -0.02, 0.46, 0.000 +20131209, 0.17, -0.41, 0.00, -0.03, 0.04, 0.000 +20131210, -0.34, -0.53, 0.20, -0.04, -0.05, 0.000 +20131211, -1.16, -0.35, 0.05, 0.55, 0.11, 0.000 +20131212, -0.23, 0.38, 0.25, -0.31, -0.06, 0.000 +20131213, 0.10, 0.22, -0.01, -0.30, 0.19, 0.000 +20131216, 0.67, 0.57, -0.14, 0.16, -0.04, 0.000 +20131217, -0.26, 0.14, -0.16, -0.15, -0.14, 0.000 +20131218, 1.55, -0.42, 0.04, -0.03, 0.31, 0.000 +20131219, -0.10, -0.50, 0.16, -0.07, 0.10, 0.000 +20131220, 0.69, 1.25, -0.30, -0.21, -0.41, 0.000 +20131223, 0.62, 0.48, -0.05, -0.21, -0.15, 0.000 +20131224, 0.34, 0.11, 0.11, -0.04, 0.16, 0.000 +20131226, 0.44, -0.34, -0.31, 0.20, 0.07, 0.000 +20131227, -0.05, -0.02, 0.23, 0.08, 0.24, 0.000 +20131230, 0.00, 0.03, -0.30, 0.14, 0.08, 0.000 +20131231, 0.44, -0.16, 0.04, -0.04, -0.21, 0.000 +20140102, -0.88, -0.24, 0.12, -0.33, 0.11, 0.000 +20140103, 0.03, 0.41, 0.05, -0.32, 0.14, 0.000 +20140106, -0.34, -0.54, 0.26, -0.34, 0.06, 0.000 +20140107, 0.68, 0.33, -0.41, -0.06, -0.29, 0.000 +20140108, 0.04, 0.01, -0.11, -0.53, -0.04, 0.000 +20140109, 0.02, 0.16, -0.38, -0.52, -0.41, 0.000 +20140110, 0.27, 0.45, -0.78, -0.30, -0.31, 0.000 +20140113, -1.32, -0.10, 0.11, -0.10, 0.47, 0.000 +20140114, 1.15, 0.13, -0.39, -0.05, -0.35, 0.000 +20140115, 0.53, 0.22, 0.21, -0.39, -0.01, 0.000 +20140116, -0.07, 0.24, -0.68, -0.01, -0.27, 0.000 +20140117, -0.39, 0.02, 0.04, -0.20, 0.02, 0.000 +20140121, 0.30, 0.43, -0.01, -0.21, -0.35, 0.000 +20140122, 0.15, 0.28, 0.21, -0.20, -0.17, 0.000 +20140123, -0.86, 0.09, -0.51, 0.18, -0.08, 0.000 +20140124, -2.19, -0.39, 0.22, 0.27, 0.06, 0.000 +20140127, -0.65, -0.81, 0.46, 0.39, 0.40, 0.000 +20140128, 0.73, 0.18, -0.03, -0.82, 0.16, 0.000 +20140129, -1.07, -0.34, 0.26, 0.14, 0.15, 0.000 +20140130, 1.22, 0.22, -0.42, -0.90, -0.54, 0.000 +20140131, -0.66, -0.10, -0.39, 0.19, -0.19, 0.000 +20140203, -2.48, -0.87, 0.31, 0.20, 0.04, 0.000 +20140204, 0.77, -0.07, -0.10, -0.14, 0.22, 0.000 +20140205, -0.23, -0.57, 0.18, 0.15, 0.22, 0.000 +20140206, 1.21, -0.43, 0.23, 0.07, -0.07, 0.000 +20140207, 1.33, -0.22, -0.67, -0.47, -0.51, 0.000 +20140210, 0.16, 0.07, -0.44, -0.24, -0.18, 0.000 +20140211, 1.09, -0.19, 0.24, -0.02, 0.10, 0.000 +20140212, 0.11, 0.24, -0.09, 0.14, 0.01, 0.000 +20140213, 0.72, 0.68, -0.10, -0.21, -0.34, 0.000 +20140214, 0.42, -0.32, 0.37, 0.35, 0.38, 0.000 +20140218, 0.27, 0.95, -0.25, -0.35, -0.27, 0.000 +20140219, -0.74, -0.31, -0.40, 0.34, 0.03, 0.000 +20140220, 0.70, 0.50, -0.14, -0.06, -0.17, 0.000 +20140221, -0.09, 0.36, -0.04, 0.01, -0.06, 0.000 +20140224, 0.65, 0.20, 0.26, -0.15, -0.01, 0.000 +20140225, -0.10, 0.05, -0.61, -0.05, 0.08, 0.000 +20140226, 0.12, 0.65, -0.09, -0.02, 0.03, 0.000 +20140227, 0.54, 0.11, 0.02, -0.28, -0.02, 0.000 +20140228, 0.15, -0.66, 0.84, 0.45, 0.09, 0.000 +20140303, -0.70, 0.08, 0.15, 0.02, 0.13, 0.000 +20140304, 1.67, 1.08, -0.12, -0.43, -0.14, 0.000 +20140305, 0.01, -0.22, 0.28, -0.56, -0.15, 0.000 +20140306, 0.16, -0.24, 0.76, 0.32, 0.35, 0.000 +20140307, 0.04, -0.01, 0.51, 0.15, 0.32, 0.000 +20140310, -0.09, -0.08, 0.06, 0.05, -0.13, 0.000 +20140311, -0.62, -0.55, -0.19, 0.49, -0.04, 0.000 +20140312, 0.13, 0.29, -0.17, -0.08, -0.42, 0.000 +20140313, -1.21, -0.06, 0.27, 0.15, 0.04, 0.000 +20140314, -0.16, 0.68, -0.05, 0.17, 0.07, 0.000 +20140317, 0.90, -0.35, -0.01, 0.15, 0.03, 0.000 +20140318, 0.82, 0.69, -0.42, -0.32, -0.27, 0.000 +20140319, -0.59, -0.12, 0.61, -0.35, 0.03, 0.000 +20140320, 0.52, -0.36, 0.99, -0.12, 0.32, 0.000 +20140321, -0.37, -0.17, 0.88, 0.48, 0.46, 0.000 +20140324, -0.64, -0.79, 0.96, 0.61, 0.36, 0.000 +20140325, 0.30, -0.33, 0.13, 0.26, 0.14, 0.000 +20140326, -0.89, -1.12, 0.30, 0.69, 0.46, 0.000 +20140327, -0.19, -0.13, -0.25, 0.06, 0.02, 0.000 +20140328, 0.41, -0.37, 0.52, 0.57, 0.31, 0.000 +20140331, 0.97, 0.98, -0.17, -0.20, 0.02, 0.000 +20140401, 0.87, 0.66, -0.40, -0.12, -0.27, 0.000 +20140402, 0.29, 0.04, 0.12, 0.09, 0.04, 0.000 +20140403, -0.31, -0.78, 0.78, 0.52, 0.40, 0.000 +20140404, -1.47, -1.03, 0.74, 0.63, 0.47, 0.000 +20140407, -1.26, -0.35, -0.02, 0.24, 0.06, 0.000 +20140408, 0.50, 0.28, -0.23, -0.01, -0.12, 0.000 +20140409, 1.20, 0.24, -0.93, -0.42, -0.53, 0.000 +20140410, -2.24, -0.62, 0.86, 0.81, 0.76, 0.000 +20140411, -1.07, -0.40, 0.29, 0.44, 0.04, 0.000 +20140414, 0.70, -0.48, 0.20, 0.34, -0.17, 0.000 +20140415, 0.59, -0.36, 0.17, -0.09, -0.15, 0.000 +20140416, 1.13, -0.01, -0.45, -0.06, -0.10, 0.000 +20140417, 0.23, 0.31, 0.24, -0.18, 0.17, 0.000 +20140421, 0.36, 0.17, -0.43, 0.05, -0.07, 0.000 +20140422, 0.58, 0.69, -0.37, -0.70, -0.08, 0.000 +20140423, -0.31, -0.54, 0.89, 0.22, 0.24, 0.000 +20140424, 0.08, -0.42, -0.18, 0.23, -0.20, 0.000 +20140425, -1.05, -0.88, 0.60, 0.80, 0.66, 0.000 +20140428, 0.11, -0.66, -0.54, 1.15, 0.02, 0.000 +20140429, 0.56, -0.25, -0.22, -0.56, -0.19, 0.000 +20140430, 0.35, 0.22, -0.04, 0.09, 0.05, 0.000 +20140501, 0.04, -0.16, -0.17, -0.48, -0.20, 0.000 +20140502, -0.07, 0.27, 0.34, 0.34, 0.16, 0.000 +20140505, 0.13, -0.38, -0.52, 0.13, -0.27, 0.000 +20140506, -1.03, -0.49, 0.16, 0.83, 0.13, 0.000 +20140507, 0.45, -0.75, 1.17, 0.02, 0.56, 0.000 +20140508, -0.26, -0.96, 0.38, 0.12, 0.26, 0.000 +20140509, 0.25, 0.63, -0.37, -0.10, -0.07, 0.000 +20140512, 1.20, 1.36, -0.29, -0.45, -0.32, 0.000 +20140513, -0.05, -1.04, 0.18, -0.03, 0.00, 0.000 +20140514, -0.60, -1.12, -0.43, 0.16, -0.22, 0.000 +20140515, -0.90, 0.33, -0.27, 0.20, -0.06, 0.000 +20140516, 0.36, 0.22, -0.40, 0.23, -0.16, 0.000 +20140519, 0.50, 0.64, 0.00, -0.31, -0.07, 0.000 +20140520, -0.78, -0.78, 0.23, 0.14, -0.11, 0.000 +20140521, 0.81, -0.27, 0.04, 0.01, -0.15, 0.000 +20140522, 0.36, 0.61, -0.27, -0.53, -0.22, 0.000 +20140523, 0.49, 0.60, -0.23, -0.09, -0.04, 0.000 +20140527, 0.69, 0.67, -0.19, -0.52, -0.29, 0.000 +20140528, -0.11, -0.28, 0.27, 0.07, 0.14, 0.000 +20140529, 0.54, -0.22, -0.12, -0.03, -0.22, 0.000 +20140530, 0.06, -0.64, 0.28, 0.34, 0.09, 0.000 +20140602, 0.06, -0.65, 0.41, 0.16, 0.18, 0.000 +20140603, -0.05, -0.24, 0.18, 0.09, -0.16, 0.000 +20140604, 0.28, 0.23, -0.09, -0.22, -0.18, 0.000 +20140605, 0.77, 1.28, -0.18, -0.17, -0.10, 0.000 +20140606, 0.54, 0.49, 0.00, -0.15, -0.09, 0.000 +20140609, 0.22, 1.00, -0.30, -0.36, -0.05, 0.000 +20140610, -0.03, -0.19, -0.04, -0.35, 0.08, 0.000 +20140611, -0.34, -0.17, -0.29, -0.13, -0.16, 0.000 +20140612, -0.68, 0.11, 0.16, -0.24, -0.03, 0.000 +20140613, 0.31, -0.06, -0.19, 0.08, -0.12, 0.000 +20140616, 0.13, 0.41, -0.67, -0.08, -0.30, 0.000 +20140617, 0.34, 0.57, 0.46, -0.51, 0.06, 0.000 +20140618, 0.75, -0.25, -0.09, 0.06, -0.19, 0.000 +20140619, 0.12, -0.15, -0.06, 0.15, -0.09, 0.000 +20140620, 0.18, 0.21, 0.04, 0.02, 0.01, 0.000 +20140623, -0.01, -0.22, 0.08, -0.06, -0.17, 0.000 +20140624, -0.72, -0.37, -0.20, 0.00, 0.03, 0.000 +20140625, 0.53, 0.34, 0.06, -0.15, -0.22, 0.000 +20140626, -0.11, -0.08, 0.05, 0.10, -0.06, 0.000 +20140627, 0.26, 0.47, -0.23, 0.11, -0.13, 0.000 +20140630, 0.07, 0.26, 0.19, -0.26, -0.15, 0.000 +20140701, 0.74, 0.43, -0.37, 0.09, -0.12, 0.000 +20140702, -0.03, -0.46, -0.21, 0.07, 0.22, 0.000 +20140703, 0.59, 0.21, 0.08, 0.03, 0.22, 0.000 +20140707, -0.62, -1.20, 0.38, 0.74, 0.28, 0.000 +20140708, -0.82, -0.56, 0.71, 0.82, 0.46, 0.000 +20140709, 0.46, -0.40, -0.12, -0.03, -0.10, 0.000 +20140710, -0.49, -0.59, 0.02, 0.06, 0.08, 0.000 +20140711, 0.12, -0.31, -0.39, -0.38, -0.16, 0.000 +20140714, 0.46, -0.01, -0.13, 0.01, -0.16, 0.000 +20140715, -0.32, -0.82, 0.98, 0.21, 0.37, 0.000 +20140716, 0.32, -0.58, 0.32, 0.19, 0.19, 0.000 +20140717, -1.21, -0.35, 0.18, 0.40, 0.18, 0.000 +20140718, 1.12, 0.44, -0.47, -0.25, -0.33, 0.000 +20140721, -0.25, -0.23, 0.05, -0.34, -0.30, 0.000 +20140722, 0.53, 0.27, -0.32, 0.21, -0.18, 0.000 +20140723, 0.19, 0.10, -0.74, -0.23, 0.02, 0.000 +20140724, 0.05, -0.28, 0.04, -0.20, -0.04, 0.000 +20140725, -0.53, -0.36, 0.17, -0.04, 0.06, 0.000 +20140728, -0.08, -0.45, 0.28, 0.04, 0.00, 0.000 +20140729, -0.33, 0.63, -0.67, -0.18, -0.14, 0.000 +20140730, 0.12, 0.35, -0.29, -0.64, -0.33, 0.000 +20140731, -2.03, -0.16, 0.47, 0.36, 0.29, 0.000 +20140801, -0.32, -0.25, -0.06, 0.09, 0.14, 0.000 +20140804, 0.74, 0.04, -0.22, -0.10, -0.43, 0.000 +20140805, -0.84, 0.71, -0.19, -0.14, 0.02, 0.000 +20140806, 0.02, 0.39, 0.18, -0.03, 0.26, 0.000 +20140807, -0.52, -0.06, -0.14, -0.01, -0.03, 0.000 +20140808, 1.13, -0.14, -0.18, 0.36, 0.15, 0.000 +20140811, 0.40, 0.56, -0.29, -0.17, -0.28, 0.000 +20140812, -0.23, -0.57, 0.25, 0.05, 0.02, 0.000 +20140813, 0.69, -0.14, -0.24, -0.38, -0.21, 0.000 +20140814, 0.44, -0.26, 0.04, -0.21, 0.00, 0.000 +20140815, 0.00, -0.15, -0.15, 0.18, -0.22, 0.000 +20140818, 0.93, 0.59, -0.20, 0.03, 0.02, 0.000 +20140819, 0.49, -0.12, -0.11, 0.26, -0.13, 0.000 +20140820, 0.19, -0.64, 0.27, 0.00, 0.28, 0.000 +20140821, 0.28, -0.07, 0.82, -0.10, 0.25, 0.000 +20140822, -0.10, 0.27, -0.39, -0.05, -0.19, 0.000 +20140825, 0.50, -0.21, 0.04, -0.03, -0.08, 0.000 +20140826, 0.19, 0.67, -0.33, -0.36, -0.18, 0.000 +20140827, 0.00, -0.22, 0.15, 0.12, 0.10, 0.000 +20140828, -0.19, -0.39, 0.10, 0.20, 0.01, 0.000 +20140829, 0.39, 0.28, 0.09, -0.31, -0.16, 0.000 +20140902, 0.06, 0.42, -0.09, -0.08, -0.24, 0.000 +20140903, -0.14, -0.49, 0.23, 0.03, 0.42, 0.000 +20140904, -0.17, -0.16, -0.15, 0.16, 0.01, 0.000 +20140905, 0.45, -0.27, -0.06, 0.13, 0.00, 0.000 +20140908, -0.22, 0.47, -0.44, -0.38, -0.25, 0.000 +20140909, -0.72, -0.42, -0.02, 0.27, 0.14, 0.000 +20140910, 0.45, 0.15, -0.40, -0.27, -0.19, 0.000 +20140911, 0.19, 0.49, 0.20, -0.25, 0.01, 0.000 +20140912, -0.55, -0.19, 0.14, -0.09, 0.13, 0.000 +20140915, -0.28, -0.93, 0.66, 0.46, 0.71, 0.000 +20140916, 0.70, -0.39, -0.13, 0.16, -0.18, 0.000 +20140917, 0.17, 0.08, -0.20, -0.25, -0.19, 0.000 +20140918, 0.50, 0.00, 0.03, -0.12, -0.04, 0.000 +20140919, -0.18, -0.96, 0.05, 0.19, -0.04, 0.000 +20140922, -0.97, -0.54, 0.13, 0.43, 0.21, 0.000 +20140923, -0.62, -0.32, -0.05, -0.02, -0.26, 0.000 +20140924, 0.81, 0.04, -0.92, 0.09, -0.44, 0.000 +20140925, -1.62, 0.13, 0.15, 0.30, 0.27, 0.000 +20140926, 0.85, -0.07, -0.27, 0.08, -0.48, 0.000 +20140929, -0.22, 0.19, -0.44, 0.16, -0.27, 0.000 +20140930, -0.40, -1.01, 0.14, 0.04, -0.01, 0.000 +20141001, -1.39, -0.14, 0.33, 0.20, -0.05, 0.000 +20141002, 0.15, 0.97, -0.38, -0.32, -0.30, 0.000 +20141003, 1.08, -0.39, -0.41, -0.10, -0.12, 0.000 +20141006, -0.26, -0.77, 0.39, 0.32, 0.17, 0.000 +20141007, -1.56, -0.12, 0.12, 0.27, 0.05, 0.000 +20141008, 1.70, -0.01, -0.06, -0.01, -0.07, 0.000 +20141009, -2.17, -0.47, -0.40, 0.40, -0.13, 0.000 +20141010, -1.30, -0.07, 0.56, 0.73, 0.38, 0.000 +20141013, -1.59, 1.31, 0.50, -0.32, 0.22, 0.000 +20141014, 0.28, 0.82, -0.12, 0.02, 0.08, 0.000 +20141015, -0.53, 1.65, -1.31, -0.49, -0.60, 0.000 +20141016, 0.23, 1.08, 0.17, -0.43, 0.12, 0.000 +20141017, 1.14, -1.56, -0.10, 0.01, 0.28, 0.000 +20141020, 0.94, 0.13, -0.33, 0.08, -0.34, 0.000 +20141021, 1.98, -0.41, 0.03, 0.07, -0.14, 0.000 +20141022, -0.85, -0.55, 0.22, 0.11, 0.20, 0.000 +20141023, 1.29, 0.44, -0.46, -0.31, -0.05, 0.000 +20141024, 0.66, -0.50, -0.11, -0.34, 0.11, 0.000 +20141027, -0.17, 0.07, -0.26, 0.13, -0.02, 0.000 +20141028, 1.37, 1.56, -0.02, -0.38, -0.19, 0.000 +20141029, -0.18, 0.04, 0.43, 0.24, 0.29, 0.000 +20141030, 0.60, 0.21, -0.47, -0.44, 0.08, 0.000 +20141031, 1.23, 0.32, 0.19, 0.18, -0.01, 0.000 +20141103, -0.01, -0.30, -0.06, 0.03, 0.13, 0.000 +20141104, -0.35, -0.05, -0.11, 0.11, 0.04, 0.000 +20141105, 0.48, -0.41, 0.86, 0.30, 0.78, 0.000 +20141106, 0.49, 0.05, -0.48, 0.13, -0.28, 0.000 +20141107, 0.09, 0.03, 0.44, -0.20, 0.04, 0.000 +20141110, 0.33, 0.15, -0.50, -0.27, -0.42, 0.000 +20141111, 0.10, 0.00, -0.29, 0.12, -0.26, 0.000 +20141112, 0.07, 0.71, -0.29, 0.19, 0.07, 0.000 +20141113, -0.03, -0.91, -0.33, 0.55, 0.02, 0.000 +20141114, 0.06, -0.13, 0.14, 0.02, -0.12, 0.000 +20141117, -0.05, -0.94, 0.28, 0.00, 0.25, 0.000 +20141118, 0.51, -0.01, -0.36, -0.15, -0.02, 0.000 +20141119, -0.21, -0.87, -0.06, 0.37, 0.10, 0.000 +20141120, 0.31, 0.87, -0.03, -0.05, -0.03, 0.000 +20141121, 0.48, -0.37, -0.08, -0.08, 0.04, 0.000 +20141124, 0.40, 0.90, -0.58, -0.21, -0.08, 0.000 +20141125, -0.08, 0.05, -0.04, 0.09, 0.16, 0.000 +20141126, 0.30, 0.03, -0.45, -0.19, -0.20, 0.000 +20141128, -0.35, -1.02, -1.02, 0.63, -0.04, 0.000 +20141201, -0.90, -0.87, 0.61, 0.13, 0.52, 0.000 +20141202, 0.65, 0.46, 0.05, -0.47, 0.03, 0.000 +20141203, 0.46, 0.46, 0.30, -0.16, 0.04, 0.000 +20141204, -0.17, -0.35, 0.09, 0.07, -0.18, 0.000 +20141205, 0.25, 0.57, 0.25, -0.63, 0.15, 0.000 +20141208, -0.82, -0.57, 0.27, 0.00, 0.09, 0.000 +20141209, 0.13, 1.68, -0.29, -0.45, -0.34, 0.000 +20141210, -1.72, -0.62, -0.10, 0.12, 0.16, 0.000 +20141211, 0.49, -0.06, -0.20, 0.20, 0.02, 0.000 +20141212, -1.55, 0.45, -0.58, 0.21, -0.29, 0.000 +20141215, -0.68, -0.24, 0.11, 0.67, 0.16, 0.000 +20141216, -0.80, 0.70, 0.59, -0.12, 0.45, 0.000 +20141217, 2.15, 0.90, -0.10, -0.43, -0.41, 0.000 +20141218, 2.36, -0.91, -0.21, -0.42, -0.23, 0.000 +20141219, 0.43, -0.22, 0.19, -0.48, 0.00, 0.000 +20141222, 0.37, 0.19, -0.04, 0.18, 0.07, 0.000 +20141223, 0.21, -0.12, 1.05, 0.59, 0.62, 0.000 +20141224, 0.07, 0.34, -0.17, -0.12, -0.07, 0.000 +20141226, 0.39, 0.34, -0.32, -0.08, -0.18, 0.000 +20141229, 0.13, 0.21, 0.56, 0.18, 0.18, 0.000 +20141230, -0.48, 0.07, 0.34, -0.07, 0.30, 0.000 +20141231, -0.93, 0.47, -0.39, -0.13, -0.22, 0.000 +20150102, -0.11, -0.56, 0.09, -0.25, 0.10, 0.000 +20150105, -1.84, 0.25, -0.63, 0.16, -0.12, 0.000 +20150106, -1.04, -0.78, -0.26, 0.53, 0.04, 0.000 +20150107, 1.19, 0.15, -0.65, 0.23, -0.14, 0.000 +20150108, 1.81, -0.10, -0.28, 0.10, -0.20, 0.000 +20150109, -0.85, -0.02, -0.50, -0.11, -0.18, 0.000 +20150112, -0.79, 0.34, -0.37, 0.15, 0.20, 0.000 +20150113, -0.19, 0.26, 0.03, 0.46, 0.03, 0.000 +20150114, -0.60, 0.27, -0.49, 0.19, -0.14, 0.000 +20150115, -1.08, -0.94, 0.64, 0.67, 0.60, 0.000 +20150116, 1.36, 0.50, -0.15, -0.29, -0.10, 0.000 +20150120, 0.11, -0.75, -0.55, 0.00, -0.53, 0.000 +20150121, 0.42, -0.92, 0.55, 0.19, -0.01, 0.000 +20150122, 1.58, 0.45, 0.41, 0.05, -0.11, 0.000 +20150123, -0.47, 0.44, -0.82, -0.04, -0.58, 0.000 +20150126, 0.43, 0.57, -0.05, -0.44, -0.09, 0.000 +20150127, -1.21, 0.75, 0.23, -0.39, 0.51, 0.000 +20150128, -1.39, -0.18, -0.76, 0.55, -0.19, 0.000 +20150129, 0.98, 0.20, -0.01, 0.08, -0.35, 0.000 +20150130, -1.30, -0.82, 0.03, -0.12, -0.44, 0.000 +20150202, 1.25, -0.39, 0.99, 0.04, 0.18, 0.000 +20150203, 1.49, 0.25, 0.51, 0.09, 0.44, 0.000 +20150204, -0.35, -0.10, -0.21, 0.29, -0.14, 0.000 +20150205, 1.10, 0.44, -0.16, -0.49, -0.20, 0.000 +20150206, -0.20, 0.07, 0.38, -0.19, -0.09, 0.000 +20150209, -0.46, -0.37, 0.10, 0.00, 0.00, 0.000 +20150210, 1.04, -0.37, -0.70, 0.10, -0.44, 0.000 +20150211, 0.03, -0.17, -0.32, 0.09, -0.07, 0.000 +20150212, 1.00, 0.19, -0.10, -0.15, -0.16, 0.000 +20150213, 0.47, 0.16, -0.29, -0.30, -0.22, 0.000 +20150217, 0.17, -0.02, -0.01, -0.18, -0.16, 0.000 +20150218, 0.03, 0.24, -0.81, 0.29, -0.17, 0.000 +20150219, -0.01, 0.21, -0.36, -0.04, -0.39, 0.000 +20150220, 0.61, -0.44, -0.27, -0.07, -0.11, 0.000 +20150223, -0.08, 0.04, -0.37, 0.38, -0.21, 0.000 +20150224, 0.32, -0.01, 0.68, -0.22, 0.35, 0.000 +20150225, 0.02, 0.19, -0.51, -0.55, -0.22, 0.000 +20150226, -0.08, 0.52, -0.49, -0.18, -0.35, 0.000 +20150227, -0.36, -0.22, 0.22, 0.04, 0.32, 0.000 +20150302, 0.62, 0.20, -0.43, 0.05, 0.07, 0.000 +20150303, -0.43, -0.30, 0.30, -0.07, 0.00, 0.000 +20150304, -0.41, 0.10, -0.40, -0.04, -0.26, 0.000 +20150305, 0.15, 0.21, -0.43, -0.52, -0.14, 0.000 +20150306, -1.29, 0.29, 0.43, -0.12, 0.01, 0.000 +20150309, 0.37, 0.09, -0.02, 0.26, -0.03, 0.000 +20150310, -1.63, 0.42, -0.46, 0.08, -0.14, 0.000 +20150311, -0.04, 0.62, 0.52, -0.47, -0.03, 0.000 +20150312, 1.28, 0.40, 0.50, -0.06, 0.23, 0.000 +20150313, -0.57, 0.19, -0.04, -0.11, -0.13, 0.000 +20150316, 1.23, -0.78, -0.42, -0.09, -0.15, 0.000 +20150317, -0.20, 0.52, -0.03, -0.01, -0.31, 0.000 +20150318, 1.08, -0.49, 0.00, 0.16, -0.02, 0.000 +20150319, -0.36, 0.79, -1.11, 0.11, -0.42, 0.000 +20150320, 0.81, -0.10, 0.54, 0.46, 0.25, 0.000 +20150323, -0.19, 0.20, 0.24, 0.18, 0.31, 0.000 +20150324, -0.51, 0.52, -0.29, 0.10, -0.20, 0.000 +20150325, -1.56, -0.89, 1.04, 0.34, 0.53, 0.000 +20150326, -0.22, 0.10, -0.06, 0.07, -0.22, 0.000 +20150327, 0.32, 0.43, -0.70, -0.15, -0.14, 0.000 +20150330, 1.24, 0.06, -0.04, -0.26, 0.01, 0.000 +20150331, -0.75, 0.45, 0.38, 0.17, 0.26, 0.000 +20150401, -0.38, 0.34, 0.43, -0.17, 0.25, 0.000 +20150402, 0.35, -0.11, 0.30, -0.12, 0.25, 0.000 +20150406, 0.61, -0.28, -0.15, 0.22, -0.22, 0.000 +20150407, -0.22, -0.19, -0.16, -0.18, -0.23, 0.000 +20150408, 0.37, 0.47, -0.72, -0.07, -0.28, 0.000 +20150409, 0.41, -0.71, -0.06, -0.27, 0.15, 0.000 +20150410, 0.49, -0.16, -0.28, -0.48, 0.20, 0.000 +20150413, -0.38, 0.55, 0.23, -0.14, -0.13, 0.000 +20150414, 0.11, -0.13, 0.19, 0.09, 0.09, 0.000 +20150415, 0.57, 0.27, 0.32, -0.19, -0.07, 0.000 +20150416, -0.08, -0.10, -0.20, -0.23, -0.21, 0.000 +20150417, -1.23, -0.43, 0.23, 0.13, 0.10, 0.000 +20150420, 0.95, 0.14, -0.27, 0.46, -0.32, 0.000 +20150421, -0.10, 0.13, -0.76, 0.11, -0.25, 0.000 +20150422, 0.46, -0.40, 0.16, -0.05, -0.02, 0.000 +20150423, 0.29, 0.30, -0.22, -0.05, -0.19, 0.000 +20150424, 0.17, -0.55, -0.28, 0.79, -0.52, 0.000 +20150427, -0.54, -0.68, 0.56, 0.50, -0.03, 0.000 +20150428, 0.27, 0.26, 1.02, 0.07, 0.45, 0.000 +20150429, -0.38, -0.72, 0.74, -0.77, -0.01, 0.000 +20150430, -1.11, -1.03, 0.77, 0.20, 0.47, 0.000 +20150501, 1.01, -0.31, -0.63, 0.30, -0.18, 0.000 +20150504, 0.32, 0.09, 0.24, -0.17, 0.03, 0.000 +20150505, -1.19, -0.14, 0.51, -0.01, 0.30, 0.000 +20150506, -0.31, 0.60, -0.14, -0.25, 0.11, 0.000 +20150507, 0.39, -0.01, -0.39, -0.22, -0.02, 0.000 +20150508, 1.21, -0.56, -0.12, -0.31, -0.23, 0.000 +20150511, -0.39, 0.66, -0.03, -0.05, 0.01, 0.000 +20150512, -0.27, 0.00, 0.07, -0.15, -0.01, 0.000 +20150513, 0.01, 0.00, 0.02, -0.07, 0.03, 0.000 +20150514, 1.01, -0.16, -0.35, 0.13, -0.44, 0.000 +20150515, 0.05, -0.22, -0.20, 0.22, 0.26, 0.000 +20150518, 0.44, 0.73, -0.09, -0.17, -0.28, 0.000 +20150519, -0.09, -0.07, 0.23, -0.09, -0.04, 0.000 +20150520, -0.05, 0.19, -0.13, -0.13, 0.07, 0.000 +20150521, 0.23, -0.30, -0.02, 0.07, -0.15, 0.000 +20150522, -0.22, -0.13, -0.14, -0.13, -0.07, 0.000 +20150526, -1.01, -0.03, -0.01, -0.12, 0.16, 0.000 +20150527, 0.93, 0.29, -0.35, -0.03, -0.33, 0.000 +20150528, -0.12, 0.11, 0.13, -0.23, 0.09, 0.000 +20150529, -0.58, 0.05, 0.06, -0.27, -0.02, 0.000 +20150601, 0.17, -0.06, -0.22, 0.22, -0.37, 0.000 +20150602, -0.02, 0.32, 0.33, -0.20, 0.17, 0.000 +20150603, 0.39, 0.86, -0.24, -0.12, -0.04, 0.000 +20150604, -0.88, -0.08, -0.01, 0.19, -0.03, 0.000 +20150605, 0.06, 0.83, 0.05, -0.53, -0.38, 0.000 +20150608, -0.66, 0.06, 0.03, 0.05, 0.05, 0.000 +20150609, 0.02, -0.28, 0.35, 0.13, 0.10, 0.000 +20150610, 1.20, 0.16, 0.19, -0.02, 0.02, 0.000 +20150611, 0.21, -0.09, -0.11, 0.16, 0.00, 0.000 +20150612, -0.63, 0.34, 0.14, 0.06, 0.10, 0.000 +20150615, -0.45, 0.15, -0.13, -0.20, -0.25, 0.000 +20150616, 0.57, 0.10, 0.00, 0.14, -0.07, 0.000 +20150617, 0.16, -0.31, -0.63, 0.15, -0.09, 0.000 +20150618, 0.99, 0.16, -0.43, -0.13, -0.15, 0.000 +20150619, -0.43, 0.51, -0.20, 0.07, -0.05, 0.000 +20150622, 0.63, 0.09, -0.06, -0.16, -0.24, 0.000 +20150623, 0.12, 0.24, 0.27, -0.08, 0.00, 0.000 +20150624, -0.79, -0.14, 0.13, 0.18, -0.01, 0.000 +20150625, -0.25, 0.34, -0.20, 0.18, -0.08, 0.000 +20150626, -0.06, -0.19, 0.45, 0.32, 0.35, 0.000 +20150629, -2.15, -0.41, 0.19, 0.30, 0.10, 0.000 +20150630, 0.34, 0.29, -0.67, -0.31, -0.63, 0.000 +20150701, 0.60, -0.75, -0.07, 0.19, 0.08, 0.000 +20150702, -0.11, -0.61, -0.05, -0.07, 0.01, 0.000 +20150706, -0.37, 0.08, -0.55, -0.21, -0.22, 0.000 +20150707, 0.53, -0.48, -0.25, 0.42, -0.02, 0.000 +20150708, -1.68, -0.04, 0.07, 0.13, 0.12, 0.000 +20150709, 0.29, 0.18, -0.02, -0.29, -0.24, 0.000 +20150710, 1.24, 0.18, -0.55, -0.20, -0.07, 0.000 +20150713, 1.14, -0.12, -0.42, 0.10, -0.31, 0.000 +20150714, 0.47, 0.11, 0.13, -0.33, -0.36, 0.000 +20150715, -0.19, -0.80, -0.08, -0.25, -0.30, 0.000 +20150716, 0.78, -0.25, -0.62, -0.25, -0.65, 0.000 +20150717, 0.05, -0.68, -0.64, -0.26, -0.93, 0.000 +20150720, -0.01, -0.80, -0.57, 0.34, -0.30, 0.000 +20150721, -0.47, 0.06, 0.29, -0.22, -0.07, 0.000 +20150722, -0.18, 0.27, 0.19, -0.35, 0.11, 0.000 +20150723, -0.60, -0.39, -0.34, -0.05, -0.03, 0.000 +20150724, -1.08, -0.66, -0.02, 0.00, -0.01, 0.000 +20150727, -0.74, -0.25, 0.08, 0.08, 0.38, 0.000 +20150728, 1.23, -0.33, -0.12, 0.06, 0.14, 0.000 +20150729, 0.74, -0.22, 0.52, 0.89, 0.30, 0.000 +20150730, 0.12, 0.19, -0.26, 0.10, -0.13, 0.000 +20150731, -0.15, 0.73, -0.98, 0.24, -0.06, 0.000 +20150803, -0.35, -0.32, -0.16, 0.07, 0.04, 0.000 +20150804, -0.14, 0.04, -0.19, -0.03, 0.19, 0.000 +20150805, 0.36, -0.07, -0.45, 0.01, -0.06, 0.000 +20150806, -0.88, -0.37, 1.99, 0.23, 0.74, 0.000 +20150807, -0.36, -0.40, -0.35, 0.32, 0.18, 0.000 +20150810, 1.32, 0.19, 0.69, 0.22, 0.04, 0.000 +20150811, -0.98, -0.06, 0.43, 0.10, 0.08, 0.000 +20150812, 0.07, -0.19, -0.28, -0.11, -0.16, 0.000 +20150813, -0.14, -0.40, 0.02, 0.13, -0.09, 0.000 +20150814, 0.43, 0.13, 0.43, -0.09, 0.06, 0.000 +20150817, 0.60, 0.35, -0.88, -0.21, -0.42, 0.000 +20150818, -0.35, -0.61, 0.35, 0.36, 0.10, 0.000 +20150819, -0.85, -0.20, -0.22, -0.13, -0.03, 0.000 +20150820, -2.24, -0.21, 0.60, 0.60, 0.67, 0.000 +20150821, -2.95, 1.80, 0.15, -0.72, 0.84, 0.000 +20150824, -3.90, 0.27, -0.43, 0.41, 0.12, 0.000 +20150825, -1.17, 0.57, -0.61, -0.27, -0.64, 0.000 +20150826, 3.68, -1.43, -0.38, 0.19, -0.67, 0.000 +20150827, 2.40, -0.61, 0.60, -0.28, -0.24, 0.000 +20150828, 0.23, 0.98, 0.08, -0.16, 0.08, 0.000 +20150831, -0.74, 0.90, 1.41, 0.11, 0.50, 0.000 +20150901, -2.91, 0.26, -0.50, -0.03, 0.09, 0.000 +20150902, 1.81, -0.31, -0.93, 0.21, -0.69, 0.000 +20150903, 0.17, -0.18, 0.73, 0.35, 0.78, 0.000 +20150904, -1.39, 0.82, -0.58, -0.07, -0.45, 0.000 +20150908, 2.52, -0.41, -0.56, -0.06, -0.29, 0.000 +20150909, -1.34, 0.17, 0.12, 0.18, 0.01, 0.000 +20150910, 0.49, -0.20, -0.31, -0.24, -0.69, 0.000 +20150911, 0.44, -0.28, -0.70, -0.05, -0.29, 0.000 +20150914, -0.41, 0.03, 0.01, -0.04, -0.07, 0.000 +20150915, 1.22, -0.15, 0.25, 0.00, 0.09, 0.000 +20150916, 0.84, 0.06, 0.44, 0.33, 0.22, 0.000 +20150917, -0.17, 0.76, -1.49, -0.28, -0.53, 0.000 +20150918, -1.62, 0.27, -0.96, -0.42, -0.54, 0.000 +20150921, 0.36, -0.83, 1.20, 0.46, 0.22, 0.000 +20150922, -1.29, -0.29, 0.14, 0.29, 0.08, 0.000 +20150923, -0.27, -0.21, -0.14, -0.16, -0.27, 0.000 +20150924, -0.36, 0.25, 0.56, -0.05, 0.03, 0.000 +20150925, -0.22, -1.43, 1.87, 0.54, 0.70, 0.000 +20150928, -2.63, -0.18, 1.17, 0.63, 0.72, 0.000 +20150929, -0.07, -0.59, 0.72, 0.72, 0.65, 0.000 +20150930, 1.88, -0.49, -0.48, -0.41, -0.34, 0.000 +20151001, 0.13, -0.52, -0.04, -0.15, -0.21, 0.000 +20151002, 1.48, 0.28, -0.84, -0.10, -0.03, 0.000 +20151005, 1.93, 0.74, 0.77, 0.14, 0.64, 0.000 +20151006, -0.43, -0.09, 1.73, 0.35, 0.58, 0.000 +20151007, 0.94, 0.68, -0.24, -0.23, -0.01, 0.000 +20151008, 0.84, 0.35, 0.76, 0.54, 0.74, 0.000 +20151009, 0.12, 0.10, -1.08, 0.16, -0.16, 0.000 +20151012, 0.06, -0.43, -0.07, 0.12, -0.09, 0.000 +20151013, -0.74, -0.66, 0.69, 0.29, 0.21, 0.000 +20151014, -0.60, -0.27, -0.03, -0.48, 0.36, 0.000 +20151015, 1.56, 0.60, -0.15, -1.10, -0.51, 0.000 +20151016, 0.36, -0.55, -0.35, 0.00, 0.02, 0.000 +20151019, 0.00, 0.09, -0.71, 0.13, -0.34, 0.000 +20151020, -0.15, 0.16, 1.21, 0.48, 0.27, 0.000 +20151021, -0.74, -0.89, -0.18, 0.46, 0.23, 0.000 +20151022, 1.50, -0.76, 0.47, 0.06, 0.57, 0.000 +20151023, 1.09, -0.08, -0.59, 0.19, -0.85, 0.000 +20151026, -0.20, -0.46, -0.71, 0.20, -0.16, 0.000 +20151027, -0.42, -1.06, -0.88, -0.42, -0.51, 0.000 +20151028, 1.43, 1.50, 0.63, -0.68, -0.25, 0.000 +20151029, -0.20, -0.89, 0.10, 0.41, -0.20, 0.000 +20151030, -0.41, 0.21, -0.55, 0.35, 0.08, 0.000 +20151102, 1.25, 0.90, -0.01, -0.49, -0.05, 0.000 +20151103, 0.32, 0.46, 0.22, 0.03, -0.10, 0.000 +20151104, -0.26, 0.18, -0.33, -0.60, -0.69, 0.000 +20151105, -0.08, 0.05, 0.47, 0.04, 0.14, 0.000 +20151106, 0.14, 0.85, 0.28, -0.54, -0.20, 0.000 +20151109, -0.95, -0.26, -0.04, -0.65, -0.01, 0.000 +20151110, 0.13, 0.01, 0.26, -0.11, 0.20, 0.000 +20151111, -0.43, -0.57, -0.18, -0.13, 0.06, 0.000 +20151112, -1.45, -0.56, -0.45, 0.17, -0.27, 0.000 +20151113, -1.06, 0.32, 0.39, -0.62, 0.42, 0.000 +20151116, 1.39, -0.53, 0.46, 0.18, -0.14, 0.000 +20151117, -0.11, -0.24, -0.66, 0.02, -0.17, 0.000 +20151118, 1.61, -0.02, -0.09, -0.10, -0.40, 0.000 +20151119, -0.13, -0.28, -0.11, 0.17, 0.14, 0.000 +20151120, 0.35, 0.40, -0.41, 0.29, 0.01, 0.000 +20151123, -0.01, 0.61, -0.35, 0.12, -0.18, 0.000 +20151124, 0.21, 0.75, 0.26, 0.24, 0.10, 0.000 +20151125, 0.09, 0.84, -0.56, -0.09, -0.10, 0.000 +20151127, 0.09, 0.19, -0.29, -0.18, 0.07, 0.000 +20151130, -0.47, 0.20, 0.69, -0.23, 0.09, 0.000 +20151201, 0.97, -0.64, 0.24, -0.09, -0.14, 0.000 +20151202, -1.01, 0.19, -0.70, 0.02, -0.15, 0.000 +20151203, -1.50, -0.21, 0.42, 0.34, 0.17, 0.000 +20151204, 1.87, -1.06, -0.52, 0.12, -0.33, 0.000 +20151207, -0.84, -0.87, -0.66, 0.69, 0.18, 0.000 +20151208, -0.59, 0.27, -1.23, -0.15, -0.78, 0.000 +20151209, -0.83, -0.21, 0.42, 0.47, 0.63, 0.000 +20151210, 0.30, 0.09, -0.22, 0.11, -0.19, 0.000 +20151211, -2.03, -0.20, -0.06, 0.18, 0.35, 0.000 +20151214, 0.29, -1.12, -0.20, 0.14, -0.33, 0.000 +20151215, 1.10, 0.20, 0.77, -0.83, 0.13, 0.000 +20151216, 1.47, 0.01, -0.64, -0.11, -0.17, 0.000 +20151217, -1.46, 0.31, -0.31, -0.22, -0.05, 0.000 +20151218, -1.70, 0.70, -0.39, -0.29, 0.19, 0.000 +20151221, 0.74, -0.18, -0.06, -0.14, 0.04, 0.000 +20151222, 0.89, 0.02, 0.51, 0.20, 0.51, 0.000 +20151223, 1.30, 0.23, 0.58, -0.01, 0.13, 0.000 +20151224, -0.11, 0.27, -0.03, -0.21, 0.08, 0.000 +20151228, -0.29, -0.54, -0.38, 0.08, -0.07, 0.000 +20151229, 1.05, 0.03, -0.31, 0.03, -0.33, 0.000 +20151230, -0.74, -0.17, -0.14, 0.04, 0.15, 0.000 +20151231, -0.92, -0.21, 0.24, -0.12, 0.10, 0.000 +20160104, -1.59, -0.73, 0.53, 0.35, 0.42, 0.000 +20160105, 0.12, -0.25, 0.01, 0.03, 0.36, 0.000 +20160106, -1.35, -0.21, 0.00, 0.15, 0.05, 0.000 +20160107, -2.44, -0.27, 0.08, 0.48, 0.43, 0.000 +20160108, -1.11, -0.52, -0.03, 0.21, 0.04, 0.000 +20160111, -0.06, -0.62, 0.34, 0.65, 0.44, 0.000 +20160112, 0.71, -0.46, -0.78, -0.03, -0.31, 0.000 +20160113, -2.67, -0.56, 0.78, 0.37, 0.69, 0.000 +20160114, 1.65, -0.07, -0.40, -0.62, -0.48, 0.000 +20160115, -2.14, 0.41, -0.21, 0.32, 0.33, 0.000 +20160119, -0.20, -1.38, -0.07, 0.30, 0.26, 0.000 +20160120, -0.94, 1.69, -1.24, 0.18, -0.56, 0.000 +20160121, 0.45, -0.46, 0.01, 0.47, 0.60, 0.000 +20160122, 2.08, 0.13, -0.19, -0.46, -0.76, 0.000 +20160125, -1.71, -0.51, -0.99, 0.30, -0.01, 0.000 +20160126, 1.52, 0.58, 1.22, 0.58, 0.72, 0.000 +20160127, -1.11, -0.37, 1.71, -0.24, 1.07, 0.000 +20160128, 0.49, -0.58, 1.25, -0.25, -0.50, 0.000 +20160129, 2.57, 0.58, 0.37, 0.00, 0.46, 0.000 +20160201, -0.04, -0.32, -0.96, 0.08, -0.40, 0.001 +20160202, -2.00, -0.13, -0.35, 0.29, 0.41, 0.001 +20160203, 0.46, -0.21, 0.45, 0.42, 0.37, 0.001 +20160204, 0.27, 0.37, 0.33, 0.20, 0.09, 0.001 +20160205, -2.06, -0.72, 1.75, 1.07, 1.45, 0.001 +20160208, -1.51, 0.11, 0.89, 1.63, 0.97, 0.001 +20160209, -0.10, -0.55, -0.28, -0.06, 0.03, 0.001 +20160210, 0.01, -0.22, -0.55, -0.29, -0.79, 0.001 +20160211, -1.17, 0.28, -1.48, 0.32, -0.39, 0.001 +20160212, 1.98, -0.29, 1.14, -0.38, 0.30, 0.001 +20160216, 1.78, 0.54, -0.56, 0.03, -0.27, 0.001 +20160217, 1.75, -0.15, -0.64, -0.38, -0.49, 0.001 +20160218, -0.51, 0.00, 0.23, 0.33, 0.53, 0.001 +20160219, 0.06, 0.29, -0.63, -0.64, -0.41, 0.001 +20160222, 1.43, -0.18, 0.24, 0.25, -0.21, 0.001 +20160223, -1.22, 0.38, -0.52, 0.77, 0.51, 0.001 +20160224, 0.53, 0.64, -0.33, 0.01, 0.12, 0.001 +20160225, 1.10, -0.45, 0.22, -0.10, -0.24, 0.001 +20160226, -0.01, 0.87, 0.26, -0.53, -0.01, 0.001 +20160229, -0.69, 0.71, 0.26, 0.13, 0.42, 0.001 +20160301, 2.34, -0.64, 0.30, -0.50, -0.55, 0.001 +20160302, 0.54, 0.59, 0.70, -0.70, -0.09, 0.001 +20160303, 0.51, 0.57, 0.65, 0.31, 0.36, 0.001 +20160304, 0.37, 0.33, 0.29, 0.10, 0.03, 0.001 +20160307, 0.21, 1.33, 0.55, -0.39, 0.43, 0.001 +20160308, -1.27, -1.26, -0.49, 0.62, 0.15, 0.001 +20160309, 0.50, 0.11, 0.38, 0.18, 0.12, 0.001 +20160310, -0.11, -0.74, 0.63, 0.31, 0.18, 0.001 +20160311, 1.69, 0.29, 0.19, -0.40, -0.32, 0.001 +20160314, -0.12, -0.13, -0.87, 0.00, -0.24, 0.001 +20160315, -0.36, -1.42, 0.66, 0.46, 0.07, 0.001 +20160316, 0.63, 0.10, -0.04, 0.56, -0.04, 0.001 +20160317, 0.72, 0.97, 0.58, 0.16, 0.67, 0.001 +20160318, 0.54, 0.41, -0.19, -0.26, 0.19, 0.001 +20160321, 0.10, -0.27, -0.31, -0.08, -0.35, 0.001 +20160322, -0.05, -0.09, -0.44, -0.30, -0.26, 0.001 +20160323, -0.86, -1.20, -0.09, 0.61, 0.01, 0.001 +20160324, 0.00, 0.42, -0.05, 0.05, -0.01, 0.001 +20160328, 0.04, -0.04, 0.14, -0.04, 0.25, 0.001 +20160329, 1.07, 1.64, -1.18, 0.18, -0.57, 0.001 +20160330, 0.41, -0.27, 0.15, -0.06, 0.00, 0.001 +20160331, -0.11, 0.41, -0.48, -0.12, -0.11, 0.001 +20160401, 0.64, -0.34, -0.62, -0.37, -0.14, 0.000 +20160404, -0.41, -0.33, -0.74, -0.25, -0.23, 0.000 +20160405, -0.94, -0.18, -0.36, 0.06, 0.18, 0.000 +20160406, 1.14, 0.06, -0.82, -0.47, -0.64, 0.000 +20160407, -1.23, -0.09, -0.35, -0.01, 0.21, 0.000 +20160408, 0.29, 0.12, 0.69, 0.36, 0.28, 0.000 +20160411, -0.28, 0.00, 0.95, 0.00, 0.29, 0.000 +20160412, 0.99, 0.01, 0.85, 0.04, -0.15, 0.000 +20160413, 1.23, 0.95, 0.35, -0.46, -0.35, 0.000 +20160414, 0.03, -0.26, 0.18, -0.36, -0.12, 0.000 +20160415, -0.04, 0.31, -0.32, 0.22, 0.17, 0.000 +20160418, 0.65, 0.13, -0.19, -0.16, -0.05, 0.000 +20160419, 0.29, -0.17, 1.49, -0.24, 0.37, 0.000 +20160420, 0.15, 0.00, 0.54, -0.31, -0.12, 0.000 +20160421, -0.47, -0.01, -0.60, -0.60, -0.34, 0.000 +20160422, 0.12, 1.03, 0.49, -0.09, 0.96, 0.000 +20160425, -0.24, -0.65, -0.18, 0.07, -0.15, 0.000 +20160426, 0.29, 0.82, 0.78, 0.33, 0.61, 0.000 +20160427, 0.21, 0.23, 0.68, -0.19, 0.79, 0.000 +20160428, -0.96, -0.20, 0.05, -0.48, 0.55, 0.000 +20160429, -0.50, -0.20, 0.38, 0.06, -0.20, 0.000 +20160502, 0.78, -0.04, -0.36, 0.00, -0.09, 0.001 +20160503, -1.05, -0.73, -0.50, 0.54, 0.03, 0.001 +20160504, -0.66, -0.16, 0.06, 0.45, 0.29, 0.001 +20160505, -0.08, -0.53, 0.08, 0.11, 0.03, 0.001 +20160506, 0.38, 0.07, 0.24, 0.17, 0.25, 0.001 +20160509, 0.05, 0.19, -1.49, 0.10, -0.50, 0.001 +20160510, 1.26, -0.38, 0.48, -0.11, 0.05, 0.001 +20160511, -0.89, -0.34, 0.78, -0.44, 0.00, 0.001 +20160512, -0.11, -0.59, 0.14, 0.38, 0.12, 0.001 +20160513, -0.82, 0.28, -0.66, -0.56, -0.17, 0.001 +20160516, 0.99, 0.21, -0.24, -0.05, -0.32, 0.001 +20160517, -0.95, -0.68, 0.61, -0.12, -0.10, 0.001 +20160518, 0.10, 0.14, 0.83, -1.34, -0.65, 0.001 +20160519, -0.33, -0.31, -0.30, 0.39, -0.01, 0.001 +20160520, 0.75, 0.84, -0.30, -0.39, -0.38, 0.001 +20160523, -0.18, 0.25, -0.32, -0.21, 0.08, 0.001 +20160524, 1.43, 0.61, -0.34, -0.10, -0.40, 0.001 +20160525, 0.72, -0.13, 0.57, 0.21, -0.11, 0.001 +20160526, -0.04, -0.16, -0.51, 0.17, -0.22, 0.001 +20160527, 0.49, 0.35, -0.22, -0.06, -0.09, 0.001 +20160531, -0.01, 0.45, -0.36, -0.17, -0.33, 0.001 +20160601, 0.20, 0.64, -0.24, -0.26, 0.08, 0.001 +20160602, 0.35, 0.24, -0.59, -0.24, -0.06, 0.001 +20160603, -0.38, -0.18, -0.10, 0.53, 0.15, 0.001 +20160606, 0.60, 0.71, 0.32, -0.19, -0.12, 0.001 +20160607, 0.12, 0.23, 0.10, 0.34, 0.22, 0.001 +20160608, 0.37, 0.43, -0.11, 0.05, -0.10, 0.001 +20160609, -0.27, -0.43, -0.21, 0.31, 0.13, 0.001 +20160610, -1.05, -0.38, -0.17, 0.16, 0.60, 0.001 +20160613, -0.84, -0.37, 0.10, -0.24, -0.04, 0.001 +20160614, -0.19, 0.14, -0.71, 0.27, 0.04, 0.001 +20160615, -0.11, 0.26, -0.06, -0.05, 0.05, 0.001 +20160616, 0.24, -0.31, -0.40, 0.28, 0.35, 0.001 +20160617, -0.30, 0.07, 0.94, 0.40, 0.62, 0.001 +20160620, 0.71, 0.59, -0.01, -0.16, 0.12, 0.001 +20160621, 0.21, -0.61, 0.50, -0.20, 0.00, 0.001 +20160622, -0.20, -0.30, 0.08, 0.05, 0.00, 0.001 +20160623, 1.45, 0.54, 0.43, -0.55, -0.21, 0.001 +20160624, -3.70, 0.02, -1.13, 0.93, 0.11, 0.001 +20160627, -2.07, -1.05, -0.66, 0.52, 0.44, 0.001 +20160628, 1.76, -0.38, 0.14, -0.62, -0.59, 0.001 +20160629, 1.80, 0.31, -0.07, -0.11, -0.25, 0.001 +20160630, 1.42, 0.38, 0.45, -0.13, 0.38, 0.001 +20160701, 0.24, 0.48, -0.40, -0.14, 0.23, 0.001 +20160705, -0.85, -0.82, -1.37, 0.57, -0.69, 0.001 +20160706, 0.62, 0.17, -0.12, -0.11, -0.15, 0.001 +20160707, 0.02, 0.34, -0.20, 0.21, -0.29, 0.001 +20160708, 1.60, 0.94, 0.36, 0.06, 0.27, 0.001 +20160711, 0.43, 0.68, 0.26, 0.30, -0.08, 0.001 +20160712, 0.75, 0.73, 1.00, -0.63, 0.64, 0.001 +20160713, -0.05, -0.46, 0.51, 0.55, 0.00, 0.001 +20160714, 0.51, -0.42, 0.45, -0.04, 0.00, 0.001 +20160715, -0.05, 0.29, 0.01, -0.30, 0.00, 0.001 +20160718, 0.25, 0.01, -0.12, 0.09, -0.24, 0.001 +20160719, -0.22, -0.62, 0.04, 0.47, -0.23, 0.001 +20160720, 0.48, 0.39, -0.88, -0.03, -0.36, 0.001 +20160721, -0.38, -0.08, -0.01, -0.01, 0.03, 0.001 +20160722, 0.48, 0.28, -0.08, 0.41, -0.25, 0.001 +20160725, -0.27, -0.01, -0.24, 0.52, -0.39, 0.001 +20160726, 0.13, 0.61, 0.53, -0.44, 0.74, 0.001 +20160727, -0.14, 0.52, -0.42, -0.13, -0.56, 0.001 +20160728, 0.18, -0.45, -0.35, -0.05, -0.14, 0.001 +20160729, 0.17, -0.03, 0.04, 0.00, 0.31, 0.001 +20160801, -0.16, 0.07, -0.86, 0.69, -0.73, 0.001 +20160802, -0.70, -0.63, 0.17, -0.54, 0.16, 0.001 +20160803, 0.45, 0.57, 0.84, -0.71, 0.16, 0.001 +20160804, 0.05, 0.06, -0.34, 0.15, 0.07, 0.001 +20160805, 0.93, 0.57, 0.88, -0.49, -0.35, 0.001 +20160808, -0.06, 0.10, 0.58, 0.00, 0.44, 0.001 +20160809, 0.05, -0.06, -0.32, -0.12, -0.22, 0.001 +20160810, -0.29, -0.45, -0.12, 0.71, 0.00, 0.001 +20160811, 0.54, 0.15, 0.04, -0.30, 0.16, 0.001 +20160812, -0.06, 0.12, -0.18, -0.19, -0.28, 0.001 +20160815, 0.39, 0.80, 0.40, -0.27, 0.36, 0.001 +20160816, -0.57, -0.19, 0.62, -0.10, 0.31, 0.001 +20160817, 0.12, -0.50, 0.25, 0.08, 0.07, 0.001 +20160818, 0.32, 0.47, 0.37, -0.53, 0.34, 0.001 +20160819, -0.11, 0.10, -0.12, 0.29, -0.15, 0.001 +20160822, -0.02, 0.22, -0.41, 0.02, -0.36, 0.001 +20160823, 0.27, 0.55, -0.01, 0.04, 0.06, 0.001 +20160824, -0.56, -0.44, 0.40, 0.38, -0.07, 0.001 +20160825, -0.08, 0.22, 0.48, -0.18, 0.28, 0.001 +20160826, -0.15, 0.12, -0.13, -0.36, -0.19, 0.001 +20160829, 0.53, 0.01, 0.35, -0.10, 0.21, 0.001 +20160830, -0.14, 0.21, 0.31, -0.05, -0.30, 0.001 +20160831, -0.24, -0.34, 0.13, 0.27, -0.36, 0.001 +20160901, 0.03, 0.06, -0.49, 0.15, -0.13, 0.001 +20160902, 0.53, 0.42, 0.36, -0.16, 0.18, 0.001 +20160906, 0.26, 0.00, -0.53, -0.71, -0.03, 0.001 +20160907, 0.09, 0.60, 0.03, -0.10, -0.24, 0.001 +20160908, -0.18, 0.02, 0.57, -0.90, 0.41, 0.001 +20160909, -2.47, -0.55, 0.31, 0.09, -0.43, 0.001 +20160912, 1.44, -0.04, -0.46, -0.08, -0.19, 0.001 +20160913, -1.48, -0.32, -0.47, 0.64, -0.77, 0.001 +20160914, -0.08, 0.06, -0.82, 0.14, -0.49, 0.001 +20160915, 1.07, 0.30, -0.33, 0.07, -0.21, 0.001 +20160916, -0.36, 0.30, -0.45, 0.18, -0.20, 0.001 +20160919, 0.05, 0.49, 0.17, -0.04, 0.35, 0.001 +20160920, -0.02, -0.31, -0.51, -0.44, -0.11, 0.001 +20160921, 1.12, 0.20, 0.33, -0.38, 0.51, 0.001 +20160922, 0.70, 0.80, -0.06, 0.04, 0.13, 0.001 +20160923, -0.60, -0.06, -0.20, 0.51, -0.49, 0.001 +20160926, -0.88, -0.29, -0.35, -0.19, 0.19, 0.001 +20160927, 0.64, -0.13, -0.53, 0.04, -0.40, 0.001 +20160928, 0.56, 0.21, 1.10, -1.20, 1.13, 0.001 +20160929, -0.98, -0.40, 0.54, 0.25, 0.67, 0.001 +20160930, 0.88, 0.42, 0.35, -0.21, 0.10, 0.001 +20161003, -0.26, -0.04, -0.13, -0.02, 0.14, 0.001 +20161004, -0.46, 0.05, 0.09, 0.17, -0.31, 0.001 +20161005, 0.58, 0.40, 0.78, -0.46, 0.45, 0.001 +20161006, -0.06, -0.23, 0.36, 0.43, 0.23, 0.001 +20161007, -0.38, -0.53, 0.16, -0.21, -0.37, 0.001 +20161010, 0.52, 0.56, 0.01, -0.63, -0.22, 0.001 +20161011, -1.30, -0.57, 0.48, 0.35, 0.09, 0.001 +20161012, 0.06, -0.19, 0.37, 0.73, 0.15, 0.001 +20161013, -0.42, -0.73, -0.62, 0.28, -0.13, 0.001 +20161014, 0.01, -0.34, 0.56, 0.12, 0.10, 0.001 +20161017, -0.29, -0.03, 0.15, 0.09, 0.14, 0.001 +20161018, 0.60, -0.16, 0.02, -0.33, -0.29, 0.001 +20161019, 0.25, 0.12, 0.92, -0.14, 0.46, 0.001 +20161020, -0.16, -0.04, -0.11, -0.48, -0.04, 0.001 +20161021, 0.02, -0.19, -0.32, 0.19, -0.18, 0.001 +20161024, 0.54, 0.06, -0.17, 0.60, -0.49, 0.001 +20161025, -0.46, -0.60, 0.23, 0.05, -0.01, 0.001 +20161026, -0.23, -0.74, 0.74, 0.09, 0.54, 0.001 +20161027, -0.33, -0.94, 0.62, -0.10, -0.04, 0.001 +20161028, -0.29, -0.12, 0.10, -0.04, 0.32, 0.001 +20161031, 0.02, 0.08, 0.13, 0.60, -0.32, 0.001 +20161101, -0.68, -0.36, 0.17, -0.53, -0.07, 0.001 +20161102, -0.73, -0.58, 0.36, 0.95, 0.15, 0.001 +20161103, -0.40, -0.38, 1.02, 0.13, 0.79, 0.001 +20161104, -0.12, 0.83, -0.43, -0.09, -0.07, 0.001 +20161107, 2.23, 0.17, -0.16, -0.27, -0.17, 0.001 +20161108, 0.40, -0.11, -0.20, -0.05, 0.30, 0.001 +20161109, 1.46, 2.07, 1.01, -0.72, 0.75, 0.001 +20161110, 0.32, 1.45, 1.82, -0.13, 0.40, 0.001 +20161111, 0.18, 2.52, -0.03, 0.16, -0.33, 0.001 +20161114, 0.21, 0.87, 1.42, -0.12, 0.36, 0.001 +20161115, 0.80, -0.56, 0.13, -0.64, 0.18, 0.001 +20161116, -0.12, 0.23, -0.56, 0.84, -0.17, 0.001 +20161117, 0.56, 0.17, -0.12, 0.26, -0.47, 0.001 +20161118, -0.16, 0.56, 0.38, -0.21, 0.09, 0.001 +20161121, 0.77, -0.27, 0.08, -0.14, 0.30, 0.001 +20161122, 0.31, 0.62, 0.58, 0.82, 0.32, 0.001 +20161123, 0.16, 0.56, 0.17, -0.31, 0.16, 0.001 +20161125, 0.40, -0.07, -0.24, 0.23, -0.15, 0.001 +20161128, -0.64, -0.77, 0.07, 0.65, -0.35, 0.001 +20161129, 0.11, -0.38, -0.06, 0.54, -0.48, 0.001 +20161130, -0.25, -0.19, 2.25, -1.62, 1.97, 0.001 +20161201, -0.36, -0.40, 2.05, 0.29, 0.63, 0.001 +20161202, 0.00, 0.00, -0.31, -0.10, 0.07, 0.001 +20161205, 0.75, 1.11, 0.28, -0.25, -0.17, 0.001 +20161206, 0.48, 0.65, 0.23, -0.15, -0.11, 0.001 +20161207, 1.26, -0.50, 0.53, 0.88, -0.01, 0.001 +20161208, 0.36, 1.24, 0.58, -0.25, -0.09, 0.001 +20161209, 0.46, -0.35, 0.13, -0.07, -0.05, 0.001 +20161212, -0.30, -0.96, -0.10, -0.01, 0.04, 0.001 +20161213, 0.60, -0.57, -0.29, 0.00, -0.17, 0.001 +20161214, -0.82, -0.37, -0.28, 0.53, -0.51, 0.001 +20161215, 0.46, 0.44, 0.28, 0.03, 0.05, 0.001 +20161216, -0.22, -0.03, -0.42, -0.27, 0.00, 0.001 +20161219, 0.22, 0.34, 0.08, 0.29, 0.02, 0.001 +20161220, 0.44, 0.50, 0.68, 0.12, 0.09, 0.001 +20161221, -0.24, -0.35, 0.24, 0.12, 0.06, 0.001 +20161222, -0.30, -0.77, 0.24, -0.24, 0.07, 0.001 +20161223, 0.19, 0.53, -0.51, -0.36, -0.14, 0.001 +20161227, 0.27, 0.23, 0.13, 0.16, 0.03, 0.001 +20161228, -0.87, -0.30, 0.09, 0.14, -0.16, 0.001 +20161229, -0.04, 0.09, -0.31, 0.25, 0.04, 0.001 +20161230, -0.52, -0.05, 0.20, -0.14, 0.05, 0.001 +20170103, 0.83, -0.09, 0.08, -0.26, 0.26, 0.002 +20170104, 0.79, 0.97, -0.15, -0.40, -0.02, 0.002 +20170105, -0.21, -1.00, -0.80, -0.16, -0.08, 0.002 +20170106, 0.29, -0.71, -0.31, -0.29, -0.29, 0.002 +20170109, -0.37, -0.31, -1.04, 0.20, -0.52, 0.002 +20170110, 0.16, 1.02, 0.57, -0.03, 0.08, 0.002 +20170111, 0.31, -0.23, 0.53, 0.16, 0.27, 0.002 +20170112, -0.30, -0.64, -0.88, 0.05, -0.28, 0.002 +20170113, 0.29, 0.62, -0.08, -0.27, -0.14, 0.002 +20170117, -0.49, -0.98, -0.60, 0.44, 0.40, 0.002 +20170118, 0.24, 0.21, 0.23, 0.01, -0.09, 0.002 +20170119, -0.38, -0.54, -0.03, -0.04, -0.03, 0.002 +20170120, 0.33, 0.07, 0.18, 0.12, -0.01, 0.002 +20170123, -0.29, -0.06, -0.31, 0.44, -0.37, 0.002 +20170124, 0.83, 0.78, 0.81, -0.14, 0.52, 0.002 +20170125, 0.84, 0.20, 0.36, -0.15, -0.14, 0.002 +20170126, -0.10, -0.58, 0.38, -0.09, -0.16, 0.002 +20170127, -0.12, -0.03, -0.67, 0.10, 0.07, 0.002 +20170130, -0.68, -0.72, -0.42, 0.65, -0.15, 0.002 +20170131, 0.00, 0.83, -0.55, -0.40, -0.22, 0.002 +20170201, 0.04, -0.05, 0.03, 0.26, -0.25, 0.002 +20170202, -0.02, -0.33, -0.31, -0.36, 0.20, 0.002 +20170203, 0.82, 0.65, 0.64, -0.49, 0.36, 0.002 +20170206, -0.27, -0.61, -0.20, 0.04, -0.21, 0.002 +20170207, -0.01, -0.38, -0.52, 0.45, -0.24, 0.002 +20170208, 0.06, -0.28, -0.53, 0.34, -0.10, 0.002 +20170209, 0.72, 0.72, 0.03, -0.27, 0.05, 0.002 +20170210, 0.38, 0.39, 0.12, -0.02, 0.15, 0.002 +20170213, 0.49, -0.27, 0.33, 0.06, 0.05, 0.002 +20170214, 0.45, -0.16, 0.33, -0.41, -0.07, 0.002 +20170215, 0.54, 0.13, -0.44, 0.21, -0.08, 0.002 +20170216, -0.16, -0.21, -0.04, 0.37, -0.22, 0.002 +20170217, 0.20, -0.06, -0.57, 0.09, -0.39, 0.002 +20170221, 0.60, 0.04, 0.13, 0.32, 0.34, 0.002 +20170222, -0.15, -0.37, 0.12, 0.55, -0.34, 0.002 +20170223, -0.11, -0.72, 0.25, -0.29, -0.45, 0.002 +20170224, 0.15, -0.08, -0.92, 0.36, -0.21, 0.002 +20170227, 0.22, 0.84, -0.35, -0.38, -0.11, 0.002 +20170228, -0.42, -1.35, 0.19, -0.03, -0.17, 0.002 +20170301, 1.47, 0.53, 0.72, -0.41, 0.52, 0.001 +20170302, -0.70, -0.56, -0.89, 0.57, -0.46, 0.001 +20170303, 0.09, -0.18, 0.14, -0.02, -0.08, 0.001 +20170306, -0.38, -0.41, -0.10, -0.06, 0.00, 0.001 +20170307, -0.36, -0.35, -0.05, 0.12, -0.25, 0.001 +20170308, -0.19, -0.17, -0.82, 0.52, -0.73, 0.001 +20170309, 0.04, -0.51, -0.27, -0.60, -0.17, 0.001 +20170310, 0.34, 0.05, -0.39, 0.27, 0.02, 0.001 +20170313, 0.13, 0.33, -0.02, -0.11, 0.05, 0.001 +20170314, -0.36, -0.22, 0.03, 0.52, -0.24, 0.001 +20170315, 0.86, 0.72, -0.40, -0.17, 0.55, 0.001 +20170316, -0.06, 0.43, 0.24, -0.07, -0.38, 0.001 +20170317, -0.08, 0.56, -0.26, 0.19, -0.03, 0.001 +20170320, -0.25, -0.16, -0.75, -0.19, -0.04, 0.001 +20170321, -1.48, -1.41, -0.69, 0.76, 0.29, 0.001 +20170322, 0.16, -0.34, -0.54, 0.18, -0.13, 0.001 +20170323, -0.03, 0.74, 0.46, -0.01, 0.19, 0.001 +20170324, -0.05, 0.11, -0.24, -0.28, -0.33, 0.001 +20170327, -0.05, 0.47, -0.52, -0.24, -0.28, 0.001 +20170328, 0.72, -0.06, 0.71, 0.01, 0.39, 0.001 +20170329, 0.18, 0.32, -0.06, -0.34, 0.13, 0.001 +20170330, 0.36, 0.40, 0.93, -0.11, -0.13, 0.001 +20170331, -0.16, 0.55, -0.30, 0.10, 0.07, 0.001 +20170403, -0.28, -1.14, -0.11, -0.17, -0.08, 0.003 +20170404, 0.05, -0.24, 0.31, -0.12, 0.16, 0.003 +20170405, -0.44, -0.83, -0.31, 0.40, -0.09, 0.003 +20170406, 0.32, 0.75, 0.49, -0.13, 0.37, 0.003 +20170407, -0.08, 0.08, -0.26, 0.03, -0.02, 0.003 +20170410, 0.08, 0.14, 0.10, 0.17, 0.47, 0.003 +20170411, -0.05, 0.80, 0.25, 0.20, 0.19, 0.003 +20170412, -0.49, -0.94, -0.53, -0.09, -0.55, 0.003 +20170413, -0.75, -0.33, -0.80, 0.03, -0.36, 0.003 +20170417, 0.89, 0.28, 0.22, 0.09, -0.15, 0.003 +20170418, -0.25, 0.30, -0.16, 0.34, 0.11, 0.003 +20170419, -0.08, 0.56, -0.38, 0.45, -0.84, 0.003 +20170420, 0.83, 0.58, 0.27, 0.30, -0.18, 0.003 +20170421, -0.28, 0.05, -0.14, 0.35, -0.21, 0.003 +20170424, 1.18, 0.27, 0.52, -0.01, 0.15, 0.003 +20170425, 0.66, 0.39, -0.05, -0.39, 0.29, 0.003 +20170426, 0.04, 0.75, 0.33, 0.23, 0.01, 0.003 +20170427, 0.05, -0.21, -0.96, 0.23, -0.59, 0.003 +20170428, -0.30, -0.75, -0.59, 0.02, -0.21, 0.003 +20170501, 0.21, 0.25, -0.13, -0.16, -0.51, 0.003 +20170502, 0.03, -0.46, -0.21, 0.43, -0.34, 0.003 +20170503, -0.19, -0.52, 0.19, -0.03, 0.12, 0.003 +20170504, 0.02, -0.11, -0.36, 0.47, -0.72, 0.003 +20170505, 0.46, 0.08, 0.04, -0.28, 0.63, 0.003 +20170508, -0.04, -0.23, 0.28, 0.01, 0.02, 0.003 +20170509, -0.05, 0.39, -0.79, 0.37, -0.36, 0.003 +20170510, 0.21, 0.25, 0.02, -0.33, 0.35, 0.003 +20170511, -0.26, -0.40, -0.14, -0.33, -0.02, 0.003 +20170512, -0.18, -0.38, -0.61, -0.27, -0.32, 0.003 +20170515, 0.53, 0.26, 0.19, -0.33, 0.03, 0.003 +20170516, -0.03, 0.10, -0.09, -0.22, -0.14, 0.003 +20170517, -1.97, -0.98, -0.54, 0.51, 0.29, 0.003 +20170518, 0.40, -0.01, -0.40, -0.32, -0.61, 0.003 +20170519, 0.70, -0.33, 0.40, -0.09, 0.76, 0.003 +20170522, 0.56, 0.25, -0.31, 0.03, -0.33, 0.003 +20170523, 0.18, -0.02, 0.60, -0.24, 0.08, 0.003 +20170524, 0.24, -0.21, -0.49, 0.18, -0.30, 0.003 +20170525, 0.42, -0.35, -0.77, 0.67, -0.63, 0.003 +20170526, 0.06, -0.02, 0.10, 0.19, 0.15, 0.003 +20170530, -0.19, -0.54, -0.32, 0.67, -0.02, 0.003 +20170531, -0.02, -0.04, -0.56, 0.33, -0.08, 0.003 +20170601, 0.95, 1.00, 0.04, -0.22, 0.04, 0.003 +20170602, 0.35, 0.41, -0.80, 0.29, -0.49, 0.003 +20170605, -0.17, -0.46, 0.00, -0.19, 0.02, 0.003 +20170606, -0.28, 0.10, -0.07, -0.57, 0.36, 0.003 +20170607, 0.15, -0.13, 0.02, 0.56, -0.68, 0.003 +20170608, 0.18, 1.20, 0.92, -0.67, -0.03, 0.003 +20170609, -0.12, 0.28, 2.39, -0.21, 1.13, 0.003 +20170612, -0.11, -0.19, 0.35, 0.01, 0.61, 0.003 +20170613, 0.55, 0.06, -0.14, -0.28, -0.09, 0.003 +20170614, -0.17, -0.54, -0.56, 0.18, -0.52, 0.003 +20170615, -0.30, -0.31, -0.12, 0.04, -0.07, 0.003 +20170616, -0.03, -0.25, -0.17, -0.55, 0.14, 0.003 +20170619, 0.86, 0.10, -0.76, 0.00, -0.09, 0.003 +20170620, -0.73, -0.43, -0.50, -0.19, -0.25, 0.003 +20170621, -0.07, -0.22, -1.69, -0.13, -1.15, 0.003 +20170622, 0.02, 0.47, -0.42, -0.11, -0.05, 0.003 +20170623, 0.24, 0.74, -0.50, -0.40, 0.04, 0.003 +20170626, 0.04, 0.07, 0.69, 0.25, 0.19, 0.003 +20170627, -0.85, -0.22, 1.33, 0.35, 0.34, 0.003 +20170628, 1.02, 0.80, 0.22, -0.14, -0.08, 0.003 +20170629, -0.83, 0.08, 1.37, -0.23, 0.36, 0.003 +20170630, 0.14, -0.10, -0.24, 0.21, 0.29, 0.003 +20170703, 0.24, 0.44, 1.23, -0.57, 0.65, 0.004 +20170705, 0.12, -0.70, -0.60, 0.18, -0.68, 0.004 +20170706, -0.95, -0.45, 0.10, 0.23, -0.03, 0.004 +20170707, 0.70, 0.40, -0.42, 0.23, -0.52, 0.004 +20170710, 0.05, -0.43, -0.11, -0.10, -0.11, 0.004 +20170711, 0.00, 0.31, -0.53, -0.32, 0.15, 0.004 +20170712, 0.72, 0.06, -0.55, 0.12, -0.23, 0.004 +20170713, 0.17, -0.01, 0.37, 0.02, 0.20, 0.004 +20170714, 0.42, -0.22, -0.51, 0.20, 0.03, 0.004 +20170717, 0.00, 0.22, 0.13, 0.16, 0.07, 0.004 +20170718, 0.04, -0.37, -0.36, -0.09, -0.41, 0.004 +20170719, 0.59, 0.47, 0.04, -0.26, 0.12, 0.004 +20170720, -0.01, 0.04, -0.01, 0.09, -0.23, 0.004 +20170721, -0.08, -0.43, -0.28, 0.07, -0.28, 0.004 +20170724, -0.03, 0.12, -0.21, -0.22, -0.38, 0.004 +20170725, 0.38, 0.42, 0.99, -0.19, 0.70, 0.004 +20170726, -0.06, -0.46, -0.69, -0.17, 0.04, 0.004 +20170727, -0.14, -0.63, 0.47, 0.30, 0.42, 0.004 +20170728, -0.17, -0.07, 0.23, -0.21, 0.18, 0.004 +20170731, -0.11, -0.25, 0.47, -0.04, 0.15, 0.004 +20170801, 0.24, -0.19, 0.18, 0.22, -0.48, 0.004 +20170802, -0.08, -1.15, 0.15, 0.07, -0.35, 0.004 +20170803, -0.21, -0.35, -0.28, 0.30, -0.27, 0.004 +20170804, 0.25, 0.34, 0.34, -0.16, 0.02, 0.004 +20170807, 0.16, -0.10, -0.60, 0.29, -0.37, 0.004 +20170808, -0.24, -0.09, 0.22, -0.30, -0.14, 0.004 +20170809, -0.14, -0.79, -0.09, 0.13, 0.04, 0.004 +20170810, -1.49, -0.31, 0.26, 0.27, 0.13, 0.004 +20170811, 0.20, 0.18, -0.89, 0.38, -0.11, 0.004 +20170814, 1.03, 0.29, 0.08, 0.01, -0.45, 0.004 +20170815, -0.11, -0.86, -0.03, -0.16, -0.25, 0.004 +20170816, 0.18, -0.14, -0.45, 0.33, -0.13, 0.004 +20170817, -1.59, -0.16, -0.15, -0.04, 0.13, 0.004 +20170818, -0.15, 0.14, 0.20, -0.30, 0.00, 0.004 +20170821, 0.06, -0.29, -0.21, 0.19, -0.09, 0.004 +20170822, 1.06, -0.01, -0.27, -0.21, 0.11, 0.004 +20170823, -0.32, 0.13, 0.39, -0.51, 0.09, 0.004 +20170824, -0.14, 0.58, 0.18, -0.51, 0.09, 0.004 +20170825, 0.18, 0.17, 0.60, 0.14, 0.26, 0.004 +20170828, 0.08, 0.32, -0.72, 0.21, -0.19, 0.004 +20170829, 0.10, 0.10, -0.40, 0.04, 0.10, 0.004 +20170830, 0.53, 0.01, -0.32, 0.10, -0.45, 0.004 +20170831, 0.62, 0.40, -0.43, -0.29, -0.10, 0.004 +20170901, 0.27, 0.43, 0.45, -0.09, 0.35, 0.005 +20170905, -0.81, -0.01, -0.95, -0.07, 0.54, 0.005 +20170906, 0.28, -0.02, 0.14, -0.32, 0.09, 0.005 +20170907, -0.07, 0.03, -0.94, 0.01, 0.08, 0.005 +20170908, -0.16, 0.12, 0.37, 0.25, -0.14, 0.005 +20170911, 1.08, -0.09, 0.65, -0.38, -0.11, 0.005 +20170912, 0.43, 0.34, 0.70, 0.10, 0.18, 0.005 +20170913, 0.11, 0.31, 0.35, -0.33, 0.09, 0.005 +20170914, -0.12, -0.06, -0.04, -0.36, 0.23, 0.005 +20170915, 0.19, 0.24, 0.13, 0.28, 0.00, 0.005 +20170918, 0.24, 0.40, 0.22, -0.49, 0.21, 0.005 +20170919, 0.15, -0.21, 0.34, 0.01, 0.07, 0.005 +20170920, 0.16, 0.29, 0.50, -0.19, 0.30, 0.005 +20170921, -0.28, 0.16, 0.36, -0.03, -0.08, 0.005 +20170922, 0.12, 0.43, 0.13, 0.36, 0.28, 0.005 +20170925, -0.25, 0.34, 0.64, -0.25, 0.65, 0.005 +20170926, 0.05, 0.45, 0.11, 0.60, -0.12, 0.005 +20170927, 0.63, 1.42, 0.12, -0.25, -0.53, 0.005 +20170928, 0.13, 0.16, -0.08, -0.10, -0.19, 0.005 +20170929, 0.35, -0.11, -0.28, -0.06, -0.35, 0.005 +20171002, 0.50, 0.87, 0.19, -0.19, 0.26, 0.004 +20171003, 0.26, -0.03, -0.03, -0.03, -0.10, 0.004 +20171004, 0.05, -0.35, -0.42, -0.10, 0.00, 0.004 +20171005, 0.55, -0.31, 0.31, -0.29, -0.17, 0.004 +20171006, -0.08, -0.09, -0.27, 0.17, -0.36, 0.004 +20171009, -0.22, -0.30, -0.04, 0.09, -0.18, 0.004 +20171010, 0.24, 0.01, 0.43, 0.10, 0.08, 0.004 +20171011, 0.16, -0.25, -0.26, -0.08, -0.07, 0.004 +20171012, -0.18, -0.10, -0.50, 0.17, 0.11, 0.004 +20171013, 0.04, -0.27, 0.11, 0.18, 0.00, 0.004 +20171016, 0.17, -0.27, 0.37, 0.02, -0.08, 0.004 +20171017, 0.01, -0.34, -0.27, 0.32, -0.17, 0.004 +20171018, 0.14, 0.35, 0.22, 0.34, -0.14, 0.004 +20171019, 0.02, -0.34, 0.20, 0.11, 0.05, 0.004 +20171020, 0.57, 0.01, 0.28, 0.09, 0.04, 0.004 +20171023, -0.45, -0.38, 0.17, 0.26, -0.25, 0.004 +20171024, 0.20, -0.11, 0.45, -0.01, -0.15, 0.004 +20171025, -0.51, 0.02, 0.09, 0.26, -0.42, 0.004 +20171026, 0.20, 0.05, 0.24, 0.10, -0.16, 0.004 +20171027, 0.82, -0.06, -1.10, 0.14, -1.33, 0.004 +20171030, -0.46, -0.76, -0.06, -0.59, -0.43, 0.004 +20171031, 0.23, 0.76, -0.21, -0.11, 0.22, 0.004 +20171101, 0.05, -0.79, 0.13, -0.09, -0.07, 0.004 +20171102, 0.06, -0.02, 0.48, -0.23, 0.34, 0.004 +20171103, 0.31, -0.52, -0.70, -0.16, -0.17, 0.004 +20171106, 0.06, 0.16, 0.22, -0.61, 0.03, 0.004 +20171107, -0.20, -1.41, -0.39, 0.42, -0.02, 0.004 +20171108, 0.12, -0.03, -0.61, 0.59, -0.01, 0.004 +20171109, -0.41, 0.00, 0.21, -0.02, 0.09, 0.004 +20171110, 0.01, 0.05, -0.37, 0.21, 0.15, 0.004 +20171113, 0.09, -0.30, 0.03, 0.09, -0.74, 0.004 +20171114, -0.22, -0.08, -0.01, 0.97, -0.40, 0.004 +20171115, -0.52, 0.04, 0.22, -0.09, 0.15, 0.004 +20171116, 1.01, 0.78, -0.52, 0.55, 0.33, 0.004 +20171117, -0.14, 0.73, 0.32, -0.16, 0.35, 0.004 +20171120, 0.21, 0.61, 0.01, 0.26, -0.01, 0.004 +20171121, 0.67, 0.36, -0.37, 0.04, -0.62, 0.004 +20171122, -0.05, 0.09, -0.04, -0.28, 0.16, 0.004 +20171124, 0.21, 0.01, -0.45, 0.01, -0.09, 0.004 +20171127, -0.06, -0.31, -0.02, 0.59, -0.10, 0.004 +20171128, 1.06, 0.56, 0.89, 0.33, 0.03, 0.004 +20171129, 0.02, 0.28, 1.48, 0.84, 0.60, 0.004 +20171130, 0.82, -0.61, -0.51, -0.24, 0.02, 0.004 +20171201, -0.22, -0.33, 0.40, -0.40, 0.33, 0.004 +20171204, -0.10, -0.14, 1.24, 1.02, 0.57, 0.004 +20171205, -0.43, -0.45, -0.26, 0.19, -0.11, 0.004 +20171206, -0.09, -0.52, -0.55, 0.41, -0.50, 0.004 +20171207, 0.42, 0.28, -0.18, -0.29, 0.07, 0.004 +20171208, 0.51, -0.42, -0.11, -0.09, 0.08, 0.004 +20171211, 0.26, -0.41, -0.14, -0.07, 0.07, 0.004 +20171212, 0.07, -0.47, 0.52, 0.03, 0.10, 0.004 +20171213, 0.02, 0.62, -0.87, 0.26, -0.07, 0.004 +20171214, -0.47, -0.75, -0.23, -0.15, -0.12, 0.004 +20171215, 0.92, 0.68, 0.02, 0.38, -0.51, 0.004 +20171218, 0.67, 0.82, 0.24, 0.26, 0.16, 0.004 +20171219, -0.30, -0.34, -0.25, 0.25, 0.38, 0.004 +20171220, 0.01, 0.37, 0.07, -0.19, 0.26, 0.004 +20171221, 0.24, 0.32, 0.63, -0.72, 0.32, 0.004 +20171222, -0.07, -0.21, -0.22, -0.11, 0.20, 0.004 +20171226, -0.07, 0.31, -0.05, -0.17, 0.57, 0.004 +20171227, 0.05, -0.16, -0.17, 0.07, -0.12, 0.004 +20171228, 0.22, 0.09, 0.04, -0.14, -0.20, 0.004 +20171229, -0.57, -0.30, 0.00, 0.16, 0.15, 0.004 +20180102, 0.85, 0.31, -0.25, -0.45, 0.22, 0.005 +20180103, 0.59, -0.47, -0.23, -0.75, -0.08, 0.005 +20180104, 0.42, -0.22, 0.25, -0.05, 0.30, 0.005 +20180105, 0.66, -0.35, -0.28, 0.40, -0.36, 0.005 +20180108, 0.19, -0.20, 0.07, -0.08, 0.04, 0.005 +20180109, 0.15, -0.37, -0.01, -0.14, -0.06, 0.005 +20180110, -0.07, 0.14, 0.55, -0.37, 0.00, 0.005 +20180111, 0.87, 1.13, 0.31, -0.12, 0.47, 0.005 +20180112, 0.66, -0.32, 0.15, -0.11, 0.15, 0.005 +20180116, -0.49, -1.00, -0.04, 0.43, -0.33, 0.005 +20180117, 0.95, -0.06, -0.14, -0.05, -0.02, 0.005 +20180118, -0.18, -0.44, -0.25, 0.30, -0.29, 0.005 +20180119, 0.57, 0.94, -0.08, 0.12, 0.14, 0.005 +20180122, 0.77, -0.34, -0.16, -0.54, 0.19, 0.005 +20180123, 0.22, 0.07, -0.35, -0.30, -0.25, 0.005 +20180124, -0.13, -0.70, 0.39, 0.02, 0.14, 0.005 +20180125, 0.07, 0.13, -0.51, 0.11, -0.17, 0.005 +20180126, 1.11, -0.64, -0.48, 0.38, -0.18, 0.005 +20180129, -0.62, -0.02, -0.27, 0.17, -0.29, 0.005 +20180130, -1.06, 0.11, -0.17, 0.36, -0.33, 0.005 +20180131, -0.07, -0.65, 0.04, 0.22, -0.09, 0.005 +20180201, 0.03, 0.15, 0.51, -0.58, 0.03, 0.006 +20180202, -2.13, -0.01, -0.19, 0.65, -0.44, 0.006 +20180205, -4.03, 0.64, -0.54, 0.22, -0.16, 0.006 +20180206, 1.67, -0.46, -0.24, 0.08, -0.19, 0.006 +20180207, -0.37, 0.55, 0.32, 0.31, 0.32, 0.006 +20180208, -3.68, 0.81, 0.48, 0.37, 0.09, 0.006 +20180209, 1.36, -0.56, 0.08, 0.16, -0.47, 0.006 +20180212, 1.36, -0.44, -0.26, -0.23, -0.20, 0.006 +20180213, 0.31, 0.09, -0.23, 0.18, -0.03, 0.006 +20180214, 1.52, 0.30, 0.44, -0.67, -0.07, 0.006 +20180215, 1.21, -0.16, -0.66, 0.15, -0.29, 0.006 +20180216, 0.03, 0.35, 0.12, 0.01, 0.09, 0.006 +20180220, -0.62, -0.27, -0.28, -0.22, -0.52, 0.006 +20180221, -0.43, 0.81, 0.17, 0.12, -0.28, 0.006 +20180222, 0.01, -0.05, -0.37, 0.07, 0.45, 0.006 +20180223, 1.54, -0.36, -0.15, -0.13, -0.10, 0.006 +20180226, 1.12, -0.46, -0.08, -0.16, -0.23, 0.006 +20180227, -1.25, -0.20, 0.05, -0.06, -0.05, 0.006 +20180228, -1.10, -0.42, -0.31, 0.25, -0.27, 0.006 +20180301, -1.18, 0.95, 0.01, -0.28, 0.05, 0.006 +20180302, 0.70, 1.10, -0.51, -0.43, -0.39, 0.006 +20180305, 1.06, -0.41, 0.25, -0.57, 0.09, 0.006 +20180306, 0.36, 0.68, 0.10, 0.25, -0.02, 0.006 +20180307, 0.05, 0.78, -0.49, -0.11, -0.43, 0.006 +20180308, 0.37, -0.57, -0.34, -0.01, -0.18, 0.006 +20180309, 1.70, -0.19, 0.23, -0.23, -0.04, 0.006 +20180312, -0.09, 0.43, -0.07, -0.33, -0.23, 0.006 +20180313, -0.67, 0.09, 0.05, 0.43, 0.05, 0.006 +20180314, -0.53, 0.16, -0.58, -0.13, -0.42, 0.006 +20180315, -0.18, -0.41, 0.30, 0.06, -0.15, 0.006 +20180316, 0.25, 0.46, 0.24, 0.06, 0.32, 0.006 +20180319, -1.38, 0.39, 0.45, 0.35, 0.11, 0.006 +20180320, 0.15, -0.12, -0.36, -0.05, -0.11, 0.006 +20180321, -0.06, 0.69, 0.46, -1.11, 0.79, 0.006 +20180322, -2.54, 0.38, -0.43, 0.22, 0.04, 0.006 +20180323, -2.09, 0.09, -0.18, 0.05, 0.73, 0.006 +20180326, 2.67, -0.64, 0.02, 0.03, -0.60, 0.006 +20180327, -1.87, -0.25, 0.46, 0.74, 0.55, 0.006 +20180328, -0.35, 0.18, 0.64, 0.71, 0.07, 0.006 +20180329, 1.41, -0.27, -0.24, -0.31, -0.18, 0.006 +20180402, -2.29, -0.07, 0.40, 0.09, -0.09, 0.007 +20180403, 1.24, -0.04, 0.19, 0.26, 0.12, 0.007 +20180404, 1.17, 0.33, -0.30, 0.09, -0.14, 0.007 +20180405, 0.75, 0.06, 0.50, 0.11, 0.25, 0.007 +20180406, -2.19, 0.38, -0.06, 0.11, 0.04, 0.007 +20180409, 0.30, -0.24, -0.50, -0.74, -0.31, 0.007 +20180410, 1.77, 0.33, -0.11, -0.90, 0.37, 0.007 +20180411, -0.49, 0.79, -0.29, -0.63, 0.27, 0.007 +20180412, 0.84, -0.16, 0.19, -0.20, 0.00, 0.007 +20180413, -0.37, -0.11, -0.25, -0.14, 0.14, 0.007 +20180416, 0.82, 0.14, -0.05, 0.83, 0.03, 0.007 +20180417, 1.09, 0.02, -1.22, -0.24, -0.46, 0.007 +20180418, 0.13, 0.24, 0.01, -0.23, 0.42, 0.007 +20180419, -0.49, -0.29, 1.01, -0.50, 0.10, 0.007 +20180420, -0.81, 0.11, 0.62, -0.59, 0.28, 0.007 +20180423, -0.05, -0.07, 0.20, 0.31, 0.07, 0.007 +20180424, -1.30, 0.61, 1.05, 0.08, 0.23, 0.007 +20180425, 0.10, -0.28, 0.02, 0.40, 0.16, 0.007 +20180426, 0.96, -0.53, -0.89, -0.49, -0.48, 0.007 +20180427, 0.01, -0.28, 0.10, 0.53, 0.09, 0.007 +20180430, -0.80, -0.05, -0.06, -0.45, -0.02, 0.007 +20180501, 0.24, 0.26, -0.58, 0.02, -0.97, 0.006 +20180502, -0.63, 1.24, -0.25, -0.01, -0.03, 0.006 +20180503, -0.25, -0.58, -0.17, -0.01, -0.10, 0.006 +20180504, 1.30, -0.03, -0.25, -0.36, 0.06, 0.006 +20180507, 0.42, 0.39, -0.36, -0.53, -0.32, 0.006 +20180508, 0.07, 0.49, 0.28, -0.30, 0.14, 0.006 +20180509, 0.89, -0.23, 0.20, -0.90, -0.01, 0.006 +20180510, 0.84, -0.37, -0.06, 0.26, -0.33, 0.006 +20180511, 0.19, 0.11, -0.36, 0.21, 0.13, 0.006 +20180514, 0.05, -0.28, 0.08, -0.19, 0.51, 0.006 +20180515, -0.55, 0.70, 0.44, -0.09, 0.43, 0.006 +20180516, 0.49, 0.68, -0.23, 0.36, 0.10, 0.006 +20180517, 0.02, 0.87, 0.25, -0.34, 0.30, 0.006 +20180518, -0.23, 0.46, -0.55, 0.07, -0.20, 0.006 +20180521, 0.72, -0.20, 0.42, 0.17, 0.07, 0.006 +20180522, -0.42, -0.66, 0.60, -0.27, -0.39, 0.006 +20180523, 0.29, -0.06, -0.72, -0.03, -0.37, 0.006 +20180524, -0.16, 0.32, -0.31, 0.48, 0.09, 0.006 +20180525, -0.21, 0.22, -0.39, 0.63, -0.52, 0.006 +20180529, -1.03, 1.10, -1.01, 0.15, -0.03, 0.006 +20180530, 1.31, 0.04, 0.37, -0.73, 0.20, 0.006 +20180531, -0.70, 0.05, -0.45, -0.52, -0.16, 0.006 +20180601, 1.06, -0.20, -0.17, -0.02, -0.17, 0.006 +20180604, 0.48, 0.16, -0.49, 1.06, -0.29, 0.006 +20180605, 0.16, 0.79, -0.40, 0.19, 0.12, 0.006 +20180606, 0.86, -0.28, 0.19, 0.03, 0.15, 0.006 +20180607, -0.14, -0.25, 0.93, 0.13, 0.59, 0.006 +20180608, 0.31, 0.04, -0.38, 0.23, -0.19, 0.006 +20180611, 0.12, 0.16, -0.16, 0.24, 0.24, 0.006 +20180612, 0.23, 0.20, -0.62, 0.10, -0.17, 0.006 +20180613, -0.33, 0.05, -0.21, -0.53, -0.16, 0.006 +20180614, 0.27, 0.21, -1.01, 0.02, -0.59, 0.006 +20180615, -0.08, 0.11, -0.25, 0.67, -0.14, 0.006 +20180618, -0.09, 0.77, 0.03, -0.43, 0.04, 0.006 +20180619, -0.38, 0.51, -0.18, -0.26, -0.37, 0.006 +20180620, 0.23, 0.66, -0.51, -0.13, 0.08, 0.006 +20180621, -0.73, -0.56, 0.33, 0.46, 0.13, 0.006 +20180622, 0.11, -0.05, 0.44, -0.55, 0.86, 0.006 +20180625, -1.48, -0.49, 0.58, 0.59, 0.14, 0.006 +20180626, 0.27, 0.51, -0.18, -0.53, 0.10, 0.006 +20180627, -1.02, -1.00, 0.40, -0.14, 0.52, 0.006 +20180628, 0.58, -0.19, -0.52, -0.20, -0.56, 0.006 +20180629, 0.07, -0.24, -0.25, -0.22, 0.01, 0.006 +20180702, 0.36, 0.43, -0.32, -0.05, -0.56, 0.008 +20180703, -0.44, 0.74, 0.08, -0.32, 0.46, 0.008 +20180705, 0.87, 0.39, -0.40, 0.35, -0.17, 0.008 +20180706, 0.87, 0.00, -0.37, -0.23, -0.12, 0.008 +20180709, 0.93, -0.28, 0.77, 0.00, -0.19, 0.008 +20180710, 0.21, -0.84, -0.08, 0.10, 0.27, 0.008 +20180711, -0.69, -0.05, -0.52, -0.09, -0.32, 0.008 +20180712, 0.86, -0.41, -1.09, -0.02, -0.49, 0.008 +20180713, 0.08, -0.18, -0.28, 0.35, 0.19, 0.008 +20180716, -0.16, -0.61, 0.85, -0.20, -0.16, 0.008 +20180717, 0.48, 0.15, -0.69, 0.12, -0.23, 0.008 +20180718, 0.27, -0.14, 0.61, -0.16, -0.14, 0.008 +20180719, -0.34, 0.93, -0.37, 0.22, 0.05, 0.008 +20180720, -0.10, -0.15, 0.07, 0.10, -0.24, 0.008 +20180723, 0.15, -0.17, 0.36, -0.20, -0.19, 0.008 +20180724, 0.22, -1.33, 0.52, 0.46, 0.11, 0.008 +20180725, 0.83, -0.57, -1.22, 0.06, -0.31, 0.008 +20180726, -0.20, 0.76, 0.61, -0.02, 0.61, 0.008 +20180727, -0.82, -1.21, 1.17, 0.48, 0.51, 0.008 +20180730, -0.70, -0.02, 1.66, 0.26, 1.02, 0.008 +20180731, 0.51, 0.69, -0.96, 0.31, 0.27, 0.008 +20180801, -0.13, 0.01, -0.29, -0.18, -0.74, 0.007 +20180802, 0.67, 0.20, -0.75, -0.02, -0.56, 0.007 +20180803, 0.31, -0.92, 0.56, 0.62, 0.37, 0.007 +20180806, 0.46, 0.23, -0.33, -0.30, -0.22, 0.007 +20180807, 0.29, -0.04, -0.15, -0.33, -0.11, 0.007 +20180808, -0.04, -0.12, 0.22, -0.06, -0.06, 0.007 +20180809, -0.05, 0.34, -0.32, 0.06, -0.26, 0.007 +20180810, -0.60, 0.34, -0.23, -0.27, 0.25, 0.007 +20180813, -0.46, -0.22, -0.30, 0.31, -0.01, 0.007 +20180814, 0.69, 0.30, 0.23, 0.35, 0.19, 0.007 +20180815, -0.91, -0.53, -0.11, 0.66, -0.11, 0.007 +20180816, 0.86, -0.05, 0.27, -0.08, 0.40, 0.007 +20180817, 0.30, 0.12, 0.04, 0.20, 0.16, 0.007 +20180820, 0.25, 0.15, 0.18, 0.09, 0.15, 0.007 +20180821, 0.33, 0.91, 0.14, -0.21, -0.22, 0.007 +20180822, 0.05, 0.31, -0.47, -0.50, -0.29, 0.007 +20180823, -0.19, -0.10, -0.32, 0.00, -0.17, 0.007 +20180824, 0.62, -0.10, -0.52, -0.32, -0.19, 0.007 +20180827, 0.74, -0.62, -0.12, -0.20, -0.35, 0.007 +20180828, -0.01, -0.12, -0.29, 0.13, -0.05, 0.007 +20180829, 0.56, -0.13, -0.59, -0.15, -0.29, 0.007 +20180830, -0.41, 0.23, -0.43, -0.25, -0.12, 0.007 +20180831, 0.08, 0.45, -0.44, 0.18, -0.14, 0.007 +20180904, -0.11, -0.32, -0.08, -0.02, -0.16, 0.008 +20180905, -0.41, -0.04, 0.70, 0.45, 0.57, 0.008 +20180906, -0.44, -0.39, -0.12, 0.42, 0.33, 0.008 +20180907, -0.18, 0.07, -0.21, 0.02, 0.02, 0.008 +20180910, 0.23, 0.07, -0.33, 0.03, -0.25, 0.008 +20180911, 0.37, -0.33, -0.21, -0.11, -0.38, 0.008 +20180912, 0.03, -0.13, -0.06, 0.02, 0.54, 0.008 +20180913, 0.45, -0.49, -0.36, 0.07, -0.03, 0.008 +20180914, 0.12, 0.31, 0.25, -0.12, -0.03, 0.008 +20180917, -0.71, -0.35, 0.92, 0.29, 0.74, 0.008 +20180918, 0.57, 0.03, -0.54, -0.24, -0.23, 0.008 +20180919, 0.06, -0.49, 1.17, -0.48, -0.03, 0.008 +20180920, 0.77, 0.28, -0.19, 0.03, -0.07, 0.008 +20180921, -0.13, -0.43, 0.39, 0.22, 0.66, 0.008 +20180924, -0.31, -0.07, -0.88, -0.43, -0.29, 0.008 +20180925, -0.05, 0.21, -0.44, -0.33, -0.07, 0.008 +20180926, -0.40, -0.48, -0.58, 0.51, 0.10, 0.008 +20180927, 0.27, -0.34, -0.57, 0.11, -0.34, 0.008 +20180928, -0.03, 0.35, -0.20, 0.13, 0.19, 0.008 +20181001, 0.16, -1.62, 0.38, -0.17, 0.06, 0.008 +20181002, -0.21, -0.95, 0.67, 0.11, 0.36, 0.008 +20181003, 0.20, 0.91, 0.43, -0.36, -0.21, 0.008 +20181004, -0.93, -0.82, 1.55, 0.11, 0.76, 0.008 +20181005, -0.64, -0.39, 0.41, -0.39, 0.41, 0.008 +20181008, -0.17, -0.23, 1.20, 0.49, 0.63, 0.008 +20181009, -0.18, -0.38, 0.16, -0.48, 0.20, 0.008 +20181010, -3.33, 0.40, 1.16, 0.22, 0.78, 0.008 +20181011, -1.96, 0.35, -0.89, 0.42, -0.57, 0.008 +20181012, 1.38, -1.11, -1.70, 0.08, -0.48, 0.008 +20181015, -0.48, 0.99, 0.47, 0.38, 0.50, 0.008 +20181016, 2.24, 0.56, -1.46, -0.19, -0.68, 0.008 +20181017, -0.08, -0.60, 0.18, -0.25, 0.14, 0.008 +20181018, -1.54, -0.54, 0.53, -0.40, 0.35, 0.008 +20181019, -0.25, -1.25, 0.79, 0.39, 0.55, 0.008 +20181022, -0.38, 0.33, -1.19, 1.08, -0.19, 0.008 +20181023, -0.62, -0.21, -0.33, 0.14, -0.11, 0.008 +20181024, -3.33, -0.81, 0.64, 0.30, 1.25, 0.008 +20181025, 1.93, 0.32, -0.73, -0.16, -1.08, 0.008 +20181026, -1.65, 0.57, 0.37, -0.35, 0.52, 0.008 +20181029, -0.77, -0.09, 1.64, -0.06, 0.98, 0.008 +20181030, 1.66, 0.44, 0.10, 0.36, 0.37, 0.008 +20181031, 1.22, -0.72, -0.69, -0.33, -0.94, 0.008 +20181101, 1.29, 1.19, -1.11, -0.20, -0.51, 0.008 +20181102, -0.53, 0.85, 0.65, -0.43, 0.23, 0.008 +20181105, 0.40, -0.88, 1.56, -0.52, 0.77, 0.008 +20181106, 0.58, -0.16, 0.04, 0.29, 0.18, 0.008 +20181107, 2.11, -0.52, -0.98, -0.42, -0.81, 0.008 +20181108, -0.28, -0.14, 0.23, 0.42, 0.30, 0.008 +20181109, -1.04, -0.84, 0.38, 0.58, 0.72, 0.008 +20181112, -2.06, 0.07, 0.98, 0.50, 0.89, 0.008 +20181113, -0.13, -0.08, 0.08, 0.20, -0.31, 0.008 +20181114, -0.77, 0.02, -0.20, 0.56, 0.13, 0.008 +20181115, 1.18, 0.32, -0.56, -0.80, -0.69, 0.008 +20181116, 0.15, -0.03, -0.01, -0.78, 0.18, 0.008 +20181119, -1.88, -0.35, 2.34, 0.13, 1.24, 0.008 +20181120, -1.85, 0.00, -0.63, -0.32, -0.28, 0.008 +20181121, 0.51, 0.96, -0.29, -0.35, 0.00, 0.008 +20181123, -0.55, 0.74, -0.58, 0.31, -0.05, 0.008 +20181126, 1.62, -0.71, -0.18, -0.46, -0.74, 0.008 +20181127, 0.11, -1.05, 0.29, 0.60, 0.10, 0.008 +20181128, 2.42, 0.32, -1.27, 0.12, -0.94, 0.008 +20181129, -0.22, -0.21, -0.17, -0.41, 0.03, 0.008 +20181130, 0.78, -0.38, -0.38, 0.25, -0.24, 0.008 +20181203, 1.13, -0.12, -0.70, -0.30, -0.58, 0.010 +20181204, -3.45, -1.04, -0.10, -0.16, 0.91, 0.010 +20181206, -0.16, -0.07, -1.00, 0.14, -0.30, 0.010 +20181207, -2.36, 0.27, 1.29, -0.49, 0.61, 0.010 +20181210, 0.10, -0.42, -1.57, 0.34, -0.30, 0.010 +20181211, -0.08, -0.16, -0.35, 0.14, -0.07, 0.010 +20181212, 0.68, 0.49, -0.14, -0.23, -0.12, 0.010 +20181213, -0.26, -1.54, -0.17, 0.18, 0.03, 0.010 +20181214, -1.89, 0.07, 0.60, -0.24, 0.60, 0.010 +20181217, -2.13, -0.13, 0.99, 0.28, 0.22, 0.010 +20181218, -0.03, -0.07, -0.55, 0.91, -0.47, 0.010 +20181219, -1.58, -0.61, 0.18, -0.38, 0.42, 0.010 +20181220, -1.62, -0.11, 0.77, 0.57, -0.06, 0.010 +20181221, -2.17, -0.54, 0.84, 0.10, 0.66, 0.010 +20181224, -2.55, 0.91, -0.46, -0.37, -0.36, 0.010 +20181226, 5.06, -0.16, -1.06, -0.18, -1.07, 0.010 +20181227, 0.78, -0.71, -0.09, -0.12, 0.10, 0.010 +20181228, -0.03, 0.74, 0.24, -0.34, -0.07, 0.010 +20181231, 0.90, -0.13, -0.47, -0.08, -0.12, 0.010 +20190102, 0.23, 0.72, 1.16, -0.13, 0.26, 0.010 +20190103, -2.45, 0.52, 1.23, -0.25, 0.91, 0.010 +20190104, 3.55, 0.38, -0.74, -0.10, -0.58, 0.010 +20190107, 0.94, 0.83, -0.67, -0.69, -0.41, 0.010 +20190108, 1.01, 0.43, -0.53, 0.35, -0.09, 0.010 +20190109, 0.56, 0.52, -0.04, 0.09, -0.18, 0.010 +20190110, 0.42, -0.02, -0.41, -0.06, -0.04, 0.010 +20190111, -0.01, 0.20, 0.29, 0.24, 0.25, 0.010 +20190114, -0.60, -0.46, 0.88, 0.19, 0.00, 0.010 +20190115, 1.06, -0.13, -0.89, -0.29, -0.57, 0.010 +20190116, 0.28, 0.28, 0.83, -0.11, -0.24, 0.010 +20190117, 0.75, 0.08, -0.19, 0.08, -0.01, 0.010 +20190118, 1.29, -0.27, 0.11, 0.18, -0.25, 0.010 +20190122, -1.53, -0.36, 0.31, 0.23, 0.33, 0.010 +20190123, 0.15, -0.42, -0.13, 0.36, 0.28, 0.010 +20190124, 0.23, 0.48, -0.10, -0.09, -0.20, 0.010 +20190125, 0.90, 0.41, -0.36, -0.37, -0.56, 0.010 +20190128, -0.80, -0.08, 0.66, 0.28, 0.18, 0.010 +20190129, -0.19, 0.02, 0.17, 0.02, 0.49, 0.010 +20190130, 1.51, -0.31, -1.07, -0.19, -0.88, 0.010 +20190131, 0.92, -0.04, -1.08, -0.36, -0.02, 0.010 +20190201, 0.14, -0.16, 0.34, -0.75, 0.30, 0.010 +20190204, 0.72, 0.43, -0.58, 0.21, -0.21, 0.010 +20190205, 0.43, -0.13, -0.57, 0.60, -0.34, 0.010 +20190206, -0.22, -0.02, 0.01, -0.06, 0.06, 0.010 +20190207, -0.93, -0.14, 0.41, 0.55, 0.30, 0.010 +20190208, 0.09, -0.08, -0.67, -0.33, -0.11, 0.010 +20190211, 0.14, 0.66, 0.20, -0.08, -0.02, 0.010 +20190212, 1.36, 0.04, -0.24, -0.08, -0.24, 0.010 +20190213, 0.28, 0.07, 0.05, 0.11, 0.20, 0.010 +20190214, -0.21, 0.52, -0.56, 0.38, -0.16, 0.010 +20190215, 1.13, 0.37, 0.53, -0.21, 0.02, 0.010 +20190219, 0.19, 0.30, 0.32, 0.00, 0.22, 0.010 +20190220, 0.19, 0.30, 0.59, 0.02, -0.25, 0.010 +20190221, -0.37, -0.04, -0.25, 0.58, 0.10, 0.010 +20190222, 0.65, 0.38, -1.37, 0.31, -0.62, 0.010 +20190225, 0.15, -0.24, -0.20, -0.77, -0.51, 0.010 +20190226, -0.16, -0.68, -0.30, 0.07, -0.15, 0.010 +20190227, 0.09, 0.16, -0.15, -0.65, -0.11, 0.010 +20190228, -0.31, -0.02, -0.27, 0.31, 0.14, 0.010 +20190301, 0.72, 0.26, -0.48, -0.35, -0.19, 0.009 +20190304, -0.52, -0.40, 0.34, 0.11, -0.08, 0.009 +20190305, -0.17, -0.32, -0.22, 0.28, -0.03, 0.009 +20190306, -0.84, -1.24, 0.09, 0.54, 0.12, 0.009 +20190307, -0.82, -0.05, -0.27, -0.36, 0.14, 0.009 +20190308, -0.22, 0.06, -0.13, -0.09, -0.29, 0.009 +20190311, 1.49, 0.26, -0.49, -0.28, -0.46, 0.009 +20190312, 0.25, -0.30, -0.04, -0.43, 0.01, 0.009 +20190313, 0.68, -0.32, 0.01, -0.17, 0.16, 0.009 +20190314, -0.10, -0.36, 0.23, -0.15, -0.12, 0.009 +20190315, 0.48, -0.25, -0.28, -0.04, -0.21, 0.009 +20190318, 0.46, 0.22, 0.35, -0.09, -0.09, 0.009 +20190319, -0.09, -0.46, -0.88, 0.03, -0.08, 0.009 +20190320, -0.39, -0.23, -0.99, -0.16, -0.27, 0.009 +20190321, 1.11, 0.16, -1.12, 0.36, -0.34, 0.009 +20190322, -2.17, -1.59, 0.07, 0.54, 0.58, 0.009 +20190325, -0.05, 0.60, -0.30, 0.21, 0.04, 0.009 +20190326, 0.76, 0.23, 0.42, 0.03, 0.19, 0.009 +20190327, -0.50, 0.16, 0.52, 0.75, 0.10, 0.009 +20190328, 0.40, 0.37, -0.09, -0.14, -0.08, 0.009 +20190329, 0.66, -0.28, -0.84, 0.24, -0.16, 0.009 +20190401, 1.19, -0.20, 0.96, -0.09, -0.29, 0.010 +20190402, -0.05, -0.18, -0.41, -0.39, -0.49, 0.010 +20190403, 0.27, 0.22, -0.37, 0.14, -0.40, 0.010 +20190404, 0.19, 0.36, 0.96, 0.62, 0.27, 0.010 +20190405, 0.52, 0.48, -0.02, -0.28, 0.11, 0.010 +20190408, 0.08, -0.31, 0.13, 0.28, -0.03, 0.010 +20190409, -0.65, -0.61, -0.07, 0.15, -0.03, 0.010 +20190410, 0.48, 0.93, -0.06, 0.09, -0.13, 0.010 +20190411, 0.00, -0.28, 0.43, 0.03, 0.13, 0.010 +20190412, 0.65, -0.36, 0.69, 0.52, -0.23, 0.010 +20190415, -0.09, -0.26, -0.58, 0.35, 0.08, 0.010 +20190416, 0.13, 0.24, 0.64, -0.13, -0.14, 0.010 +20190417, -0.32, -0.53, 0.78, 1.11, -0.26, 0.010 +20190418, 0.11, -0.27, -0.46, 0.17, -0.19, 0.010 +20190422, 0.11, -0.47, -0.56, -0.54, -0.18, 0.010 +20190423, 0.97, 0.65, -0.58, -0.06, -0.44, 0.010 +20190424, -0.23, 0.33, -0.22, 0.64, 0.06, 0.010 +20190425, -0.14, -0.78, -0.26, -0.62, -0.31, 0.010 +20190426, 0.53, 0.49, 0.05, -0.03, -0.19, 0.010 +20190429, 0.18, 0.18, 0.61, -0.36, -0.17, 0.010 +20190430, -0.04, -0.67, 0.25, 0.09, 0.70, 0.010 +20190501, -0.83, -0.08, -0.06, 0.37, -0.03, 0.009 +20190502, -0.16, 0.48, -0.48, 0.07, 0.06, 0.009 +20190503, 1.13, 0.94, -0.27, 0.01, -0.36, 0.009 +20190506, -0.39, 0.59, -0.46, 0.02, 0.05, 0.009 +20190507, -1.69, -0.28, 0.54, 0.00, 0.31, 0.009 +20190508, -0.21, -0.20, -0.31, -0.02, 0.17, 0.009 +20190509, -0.28, 0.07, 0.10, -0.37, 0.01, 0.009 +20190510, 0.35, -0.32, 0.11, -0.14, 0.26, 0.009 +20190513, -2.67, -0.67, 0.36, 0.23, 0.82, 0.009 +20190514, 0.93, 0.34, -0.03, -0.53, -0.02, 0.009 +20190515, 0.58, -0.09, -0.94, 0.13, -0.27, 0.009 +20190516, 0.91, -0.44, -0.24, -0.14, -0.23, 0.009 +20190517, -0.73, -0.76, 0.36, 0.08, 0.31, 0.009 +20190520, -0.65, -0.09, 0.79, 0.08, 0.44, 0.009 +20190521, 0.90, 0.42, -0.34, -0.15, -0.16, 0.009 +20190522, -0.40, -0.62, -0.63, -0.14, 0.19, 0.009 +20190523, -1.37, -0.73, -0.23, 0.31, 0.23, 0.009 +20190524, 0.23, 0.51, 0.29, -0.48, -0.03, 0.009 +20190528, -0.78, 0.20, -0.60, -0.02, -0.27, 0.009 +20190529, -0.71, -0.22, 0.44, -0.19, 0.03, 0.009 +20190530, 0.14, -0.39, -0.77, 0.33, -0.05, 0.009 +20190531, -1.37, -0.20, -0.21, 0.02, 0.39, 0.009 +20190603, -0.40, 0.59, 1.46, 0.27, 1.45, 0.009 +20190604, 2.33, 0.49, -0.16, 0.29, -0.47, 0.009 +20190605, 0.70, -1.08, -0.92, 0.10, -0.23, 0.009 +20190606, 0.55, -1.08, 0.00, 0.03, -0.07, 0.009 +20190607, 1.04, -0.16, -1.15, 0.39, -0.65, 0.009 +20190610, 0.53, 0.02, -0.07, 0.42, -0.36, 0.009 +20190611, -0.12, -0.21, 0.59, 0.44, 0.19, 0.009 +20190612, -0.20, 0.28, -0.90, 0.09, 0.09, 0.009 +20190613, 0.52, 0.69, -0.01, -0.12, -0.05, 0.009 +20190614, -0.27, -0.71, 0.30, 0.24, 0.15, 0.009 +20190617, 0.15, 0.48, -1.09, -0.65, -0.44, 0.009 +20190618, 1.04, 0.20, 0.20, -0.29, -0.19, 0.009 +20190619, 0.32, 0.02, -0.60, -0.19, 0.14, 0.009 +20190620, 0.89, -0.39, -0.23, -0.13, -0.09, 0.009 +20190621, -0.21, -0.45, -0.07, -0.12, 0.03, 0.009 +20190624, -0.34, -0.91, 0.15, 0.60, -0.02, 0.009 +20190625, -0.98, 0.42, 0.74, -0.09, 0.62, 0.009 +20190626, -0.06, 0.00, 0.22, 0.37, -0.39, 0.009 +20190627, 0.60, 1.43, -0.09, -0.31, -0.24, 0.009 +20190628, 0.68, 0.77, 0.60, -0.47, 0.12, 0.009 +20190701, 0.75, -0.59, -0.17, -0.14, 0.02, 0.009 +20190702, 0.14, -0.97, -0.80, -0.01, 0.04, 0.009 +20190703, 0.78, -0.15, -0.31, -0.33, -0.06, 0.009 +20190705, -0.10, 0.33, 0.91, 0.10, -0.06, 0.009 +20190708, -0.58, -0.43, 0.03, 0.03, -0.25, 0.009 +20190709, 0.18, -0.25, -0.52, -0.65, -0.26, 0.009 +20190710, 0.40, -0.27, -0.41, 0.10, -0.04, 0.009 +20190711, 0.19, -0.78, 0.04, -0.23, -0.54, 0.009 +20190712, 0.53, 0.33, 0.43, 0.58, -0.07, 0.009 +20190715, -0.04, -0.51, -1.00, 0.15, 0.25, 0.009 +20190716, -0.32, 0.39, 0.14, 0.49, -0.03, 0.009 +20190717, -0.64, -0.27, -0.65, -0.48, -0.23, 0.009 +20190718, 0.35, -0.29, -0.02, -0.31, 0.39, 0.009 +20190719, -0.56, 0.29, 0.88, 0.36, 0.16, 0.009 +20190722, 0.25, -0.54, -0.49, -0.20, 0.00, 0.009 +20190723, 0.65, -0.04, 0.80, 0.66, 0.34, 0.009 +20190724, 0.66, 0.93, 0.81, -0.08, -0.07, 0.009 +20190725, -0.63, -0.70, -0.21, 0.22, 0.13, 0.009 +20190726, 0.82, 0.33, -0.19, -0.62, -0.32, 0.009 +20190729, -0.32, -0.32, -0.46, 0.35, 0.41, 0.009 +20190730, -0.17, 1.38, 0.84, -0.23, 0.08, 0.009 +20190731, -1.09, 0.25, 0.55, 0.14, 0.47, 0.009 +20190801, -1.04, -0.80, -1.95, -0.41, -0.21, 0.007 +20190802, -0.87, -0.26, 0.04, 0.12, 0.21, 0.007 +20190805, -3.07, 0.04, -0.03, -0.11, 0.27, 0.007 +20190806, 1.29, -0.57, -0.57, -0.31, -0.23, 0.007 +20190807, 0.07, -0.11, -0.91, 0.20, -0.17, 0.007 +20190808, 1.97, 0.00, -0.29, 0.20, -0.36, 0.007 +20190809, -0.78, -0.48, -0.35, -0.53, -0.06, 0.007 +20190812, -1.32, 0.20, -0.29, 0.08, 0.22, 0.007 +20190813, 1.47, -0.34, -0.53, 0.33, -0.02, 0.007 +20190814, -2.95, 0.02, -0.54, -0.38, 0.00, 0.007 +20190815, 0.16, -0.70, -0.56, -0.11, -0.48, 0.007 +20190816, 1.55, 0.66, 0.65, 0.19, -0.05, 0.007 +20190819, 1.14, 0.02, 0.28, 0.42, 0.05, 0.007 +20190820, -0.75, 0.18, -0.52, 0.10, -0.23, 0.007 +20190821, 0.85, -0.03, -0.33, -0.04, -0.05, 0.007 +20190822, -0.10, -0.36, 0.52, 0.21, 0.27, 0.007 +20190823, -2.66, -0.61, -0.21, -0.67, -0.28, 0.007 +20190826, 1.08, -0.04, -0.20, 0.18, -0.13, 0.007 +20190827, -0.46, -1.00, -0.68, 0.25, 0.09, 0.007 +20190828, 0.68, 0.64, 0.64, 0.41, 0.19, 0.007 +20190829, 1.35, 0.41, 0.33, 0.18, -0.12, 0.007 +20190830, 0.03, -0.25, 0.25, 0.11, 0.11, 0.007 +20190903, -0.86, -0.93, 0.07, -0.18, 0.46, 0.009 +20190904, 1.08, -0.15, 0.42, 0.25, -0.04, 0.009 +20190905, 1.42, 0.55, 0.71, 0.50, -0.02, 0.009 +20190906, -0.02, -0.34, 0.06, 0.18, 0.42, 0.009 +20190909, 0.07, 1.35, 3.11, 0.86, 0.44, 0.009 +20190910, 0.17, 1.37, 1.24, -0.10, 0.60, 0.009 +20190911, 0.88, 1.37, -0.03, -0.19, 0.33, 0.009 +20190912, 0.22, -0.39, -0.21, -0.23, -0.12, 0.009 +20190913, -0.01, 0.17, 0.77, -0.07, -0.09, 0.009 +20190916, -0.23, 0.91, 0.52, -0.30, 0.03, 0.009 +20190917, 0.17, -0.80, -1.24, -0.20, -0.35, 0.009 +20190918, -0.05, -0.75, 0.04, -0.10, 0.10, 0.009 +20190919, -0.05, -0.48, -0.45, 0.06, -0.12, 0.009 +20190920, -0.48, 0.31, 0.14, -0.56, 0.03, 0.009 +20190923, -0.02, -0.12, 0.52, 0.25, 0.31, 0.009 +20190924, -1.01, -0.75, -0.01, 0.20, 0.50, 0.009 +20190925, 0.69, 0.41, 0.54, 0.42, 0.05, 0.009 +20190926, -0.41, -0.98, 0.11, 0.33, 0.34, 0.009 +20190927, -0.62, -0.18, 0.91, 0.24, 0.60, 0.009 +20190930, 0.50, -0.24, -0.49, 0.65, 0.00, 0.009 +20191001, -1.31, -0.66, -0.62, 0.11, -0.17, 0.007 +20191002, -1.73, 0.74, -0.39, -0.49, -0.24, 0.007 +20191003, 0.80, -0.38, -0.91, -0.21, -0.22, 0.007 +20191004, 1.39, -0.52, -0.08, 0.00, 0.06, 0.007 +20191007, -0.41, 0.13, -0.05, -0.09, -0.31, 0.007 +20191008, -1.61, -0.16, -0.11, 0.42, 0.09, 0.007 +20191009, 0.92, -0.56, -0.12, 0.12, -0.15, 0.007 +20191010, 0.59, -0.25, 0.29, 0.14, -0.08, 0.007 +20191011, 1.23, 0.60, 0.21, 0.43, 0.22, 0.007 +20191014, -0.18, -0.34, -0.06, -0.21, -0.12, 0.007 +20191015, 1.03, 0.26, -0.23, -0.22, -0.71, 0.007 +20191016, -0.24, 0.47, 0.22, 0.38, 0.25, 0.007 +20191017, 0.37, 0.79, -0.28, 0.14, -0.09, 0.007 +20191018, -0.49, -0.14, 0.88, -0.01, 0.41, 0.007 +20191021, 0.71, 0.32, 0.35, 0.04, 0.03, 0.007 +20191022, -0.34, 0.50, 0.91, 0.44, 0.35, 0.007 +20191023, 0.26, -0.11, 0.23, -0.05, 0.07, 0.007 +20191024, 0.25, -0.52, -0.91, -0.12, -0.62, 0.007 +20191025, 0.50, 0.40, 0.13, 0.35, -0.01, 0.007 +20191028, 0.62, 0.26, -0.23, -0.06, 0.00, 0.007 +20191029, -0.13, 0.40, 0.42, 0.03, 0.11, 0.007 +20191030, 0.27, -0.66, -1.20, -0.51, 0.03, 0.007 +20191031, -0.38, -0.33, -0.42, -0.22, 0.14, 0.007 +20191101, 1.08, 0.61, 0.84, -0.22, 0.11, 0.006 +20191104, 0.40, 0.34, 1.43, 0.61, 0.11, 0.006 +20191105, -0.03, 0.39, 0.51, 0.00, -0.01, 0.006 +20191106, -0.05, -0.79, 0.16, -0.15, 0.28, 0.006 +20191107, 0.38, 0.03, 0.56, 0.19, -0.11, 0.006 +20191108, 0.31, 0.02, -0.36, -0.11, 0.06, 0.006 +20191111, -0.19, -0.09, -0.21, -0.09, -0.05, 0.006 +20191112, 0.16, -0.18, -0.14, -0.13, -0.18, 0.006 +20191113, 0.01, -0.41, -0.81, -0.26, -0.02, 0.006 +20191114, 0.07, -0.16, -0.26, 0.11, -0.36, 0.006 +20191115, 0.74, -0.25, -0.34, 0.01, 0.03, 0.006 +20191118, 0.02, -0.37, -0.52, -0.06, -0.32, 0.006 +20191119, 0.02, 0.36, -0.99, -0.86, -0.24, 0.006 +20191120, -0.33, -0.14, -0.42, -0.60, -0.32, 0.006 +20191121, -0.14, -0.29, 0.13, 0.08, -0.10, 0.006 +20191122, 0.24, 0.15, 0.24, 0.16, 0.05, 0.006 +20191125, 0.92, 1.25, -0.39, 0.12, 0.04, 0.006 +20191126, 0.19, -0.09, -0.82, 0.23, -0.15, 0.006 +20191127, 0.44, 0.21, -0.05, 0.01, -0.02, 0.006 +20191129, -0.42, -0.12, -0.32, -0.48, 0.02, 0.006 +20191202, -0.87, -0.12, 0.51, 0.15, 0.18, 0.007 +20191203, -0.66, 0.41, -0.83, -0.51, -0.53, 0.007 +20191204, 0.60, 0.21, 0.27, 0.17, 0.04, 0.007 +20191205, 0.13, -0.15, 0.47, 0.28, 0.36, 0.007 +20191206, 0.91, 0.38, 0.43, 0.34, 0.25, 0.007 +20191209, -0.33, 0.30, 0.14, -0.14, -0.25, 0.007 +20191210, -0.08, 0.28, -0.09, -0.20, 0.08, 0.007 +20191211, 0.28, -0.10, 0.08, 0.33, 0.13, 0.007 +20191212, 0.90, 0.15, 1.18, 0.12, 0.23, 0.007 +20191213, -0.03, -0.49, -0.53, -0.29, -0.21, 0.007 +20191216, 0.74, 0.00, -0.07, -0.33, 0.15, 0.007 +20191217, 0.10, 0.49, 0.70, 0.14, -0.05, 0.007 +20191218, -0.05, 0.27, 0.09, 0.28, -0.02, 0.007 +20191219, 0.43, -0.13, -0.44, -0.22, -0.03, 0.007 +20191220, 0.48, -0.27, -0.30, 0.03, -0.06, 0.007 +20191223, 0.10, 0.16, -0.29, -0.13, 0.31, 0.007 +20191224, 0.01, 0.36, -0.03, -0.28, 0.03, 0.007 +20191226, 0.49, -0.56, 0.00, 0.22, -0.20, 0.007 +20191227, -0.09, -0.54, -0.08, 0.24, 0.15, 0.007 +20191230, -0.57, 0.28, 0.57, 0.15, 0.45, 0.007 +20191231, 0.28, 0.02, 0.12, -0.11, 0.20, 0.007 +20200102, 0.86, -0.95, -0.37, 0.17, -0.22, 0.006 +20200103, -0.67, 0.28, 0.01, -0.18, -0.15, 0.006 +20200106, 0.36, -0.22, -0.51, -0.18, -0.32, 0.006 +20200107, -0.19, -0.03, -0.20, -0.10, -0.31, 0.006 +20200108, 0.47, -0.17, -0.64, -0.16, -0.12, 0.006 +20200109, 0.65, -0.71, -0.49, -0.14, 0.06, 0.006 +20200110, -0.34, -0.25, -0.36, 0.05, -0.08, 0.006 +20200113, 0.73, -0.08, -0.12, 0.31, 0.28, 0.006 +20200114, -0.06, 0.47, -0.13, -0.28, -0.07, 0.006 +20200115, 0.16, 0.26, -0.84, -0.07, -0.23, 0.006 +20200116, 0.88, 0.50, -0.12, 0.03, -0.08, 0.006 +20200117, 0.28, -0.62, -0.12, 0.26, 0.02, 0.006 +20200121, -0.32, -0.67, -0.63, -0.09, -0.33, 0.006 +20200122, 0.08, -0.25, 0.00, -0.24, 0.00, 0.006 +20200123, 0.08, -0.07, -0.15, 0.26, -0.04, 0.006 +20200124, -0.97, -0.48, -0.35, 0.17, -0.04, 0.006 +20200127, -1.56, 0.26, -0.45, -0.58, 0.05, 0.006 +20200128, 1.02, -0.15, -0.43, 0.17, -0.10, 0.006 +20200129, -0.10, -0.45, -0.97, 0.24, 0.19, 0.006 +20200130, 0.34, -0.63, 0.64, -0.37, -0.12, 0.006 +20200131, -1.74, -0.53, -0.34, -0.55, -0.69, 0.006 +20200203, 0.84, 0.36, -0.69, -0.74, -0.35, 0.006 +20200204, 1.57, -0.13, -0.68, 0.32, -0.15, 0.006 +20200205, 0.97, 0.73, 1.52, 0.98, 0.65, 0.006 +20200206, 0.27, -0.60, -0.85, -0.07, -0.36, 0.006 +20200207, -0.55, -0.82, -0.06, -0.19, -0.52, 0.006 +20200210, 0.73, -0.18, -0.91, -0.14, -0.41, 0.006 +20200211, 0.28, 0.34, 1.07, 0.31, 0.23, 0.006 +20200212, 0.66, 0.16, -0.33, 0.24, 0.00, 0.006 +20200213, -0.09, 0.13, -0.04, -0.15, -0.41, 0.006 +20200214, 0.15, -0.57, -0.71, -0.25, -0.27, 0.006 +20200218, -0.19, -0.02, -0.70, -0.49, -0.67, 0.006 +20200219, 0.60, 0.22, -0.06, 0.11, -0.33, 0.006 +20200220, -0.35, 0.59, 0.66, 0.07, -0.15, 0.006 +20200221, -1.12, -0.03, 0.05, -0.18, 0.36, 0.006 +20200224, -3.38, 0.15, -0.01, -0.36, 0.23, 0.006 +20200225, -3.09, -0.34, -0.74, -0.62, 0.02, 0.006 +20200226, -0.52, -0.79, -1.24, -0.53, -0.11, 0.006 +20200227, -4.22, 0.69, 0.09, -0.35, -0.09, 0.006 +20200228, -0.78, 0.06, -0.79, 0.32, -0.40, 0.006 +20200302, 4.31, -1.96, -0.42, -0.55, 0.55, 0.006 +20200303, -2.79, 0.64, -0.64, -0.51, 0.23, 0.006 +20200304, 4.02, -1.20, -1.10, 0.13, 0.24, 0.006 +20200305, -3.38, -0.18, -1.37, -0.91, 0.15, 0.006 +20200306, -1.78, -0.21, -1.39, 0.76, 0.37, 0.006 +20200309, -7.79, -1.41, -4.73, 0.12, 0.48, 0.006 +20200310, 4.74, -2.37, 0.75, 0.46, 0.06, 0.006 +20200311, -5.05, -1.05, -0.89, 0.06, 0.10, 0.006 +20200312, -9.63, -1.14, -1.24, -0.31, -0.26, 0.006 +20200313, 8.96, -2.01, 3.07, 1.23, 0.80, 0.006 +20200316, -12.00, -0.89, -0.88, 0.58, 1.19, 0.006 +20200317, 5.87, 0.36, -0.97, -0.49, -0.07, 0.006 +20200318, -5.56, -4.61, -4.68, 0.25, 0.21, 0.006 +20200319, 1.31, 5.72, 0.99, -1.65, -1.57, 0.006 +20200320, -4.15, 0.30, -0.86, -0.74, -1.20, 0.006 +20200323, -2.56, 1.63, -3.50, 0.29, -1.22, 0.006 +20200324, 9.34, -0.16, 2.44, 0.44, 0.22, 0.006 +20200325, 1.18, -0.12, 1.89, -0.12, 0.13, 0.006 +20200326, 6.02, -0.45, 1.23, -0.57, 0.04, 0.006 +20200327, -3.47, -1.06, -0.70, -1.12, 0.82, 0.006 +20200330, 3.16, -0.80, -2.20, -0.19, 0.17, 0.006 +20200331, -1.44, 1.51, -0.48, 0.41, -0.14, 0.006 +20200401, -4.51, -2.04, -1.49, 0.15, 0.29, 0.000 +20200402, 2.09, -0.93, -0.27, -0.11, 0.95, 0.000 +20200403, -1.64, -1.37, -1.17, -0.19, 0.40, 0.000 +20200406, 7.06, 1.14, 0.30, 1.27, -0.77, 0.000 +20200407, -0.11, 0.16, 2.15, 0.87, -0.33, 0.000 +20200408, 3.40, 0.89, 1.34, 0.42, -0.21, 0.000 +20200409, 1.60, 2.45, 3.19, -0.90, -0.09, 0.000 +20200413, -0.92, -1.39, -2.44, -0.55, -0.09, 0.000 +20200414, 3.02, -0.70, -3.15, 0.19, -0.36, 0.000 +20200415, -2.15, -1.94, -2.49, -0.34, -0.33, 0.000 +20200416, 0.62, -0.85, -3.01, -0.34, -0.28, 0.000 +20200417, 2.72, 1.54, 2.71, -0.19, 0.02, 0.000 +20200420, -1.56, 0.38, -0.92, -1.75, -0.56, 0.000 +20200421, -3.08, 0.97, 0.06, 0.24, 0.35, 0.000 +20200422, 2.31, -0.89, -1.64, 0.15, 0.07, 0.000 +20200423, 0.13, 1.30, 0.56, 0.58, -0.34, 0.000 +20200424, 1.44, 0.29, -0.07, -0.14, 0.17, 0.000 +20200427, 1.73, 2.19, 2.75, -0.10, 0.20, 0.000 +20200428, -0.45, 1.65, 2.85, 1.35, 0.73, 0.000 +20200429, 2.92, 2.27, 2.07, 1.23, -0.83, 0.000 +20200430, -1.18, -2.06, -1.64, 0.71, -0.09, 0.000 +20200501, -2.91, -0.90, -1.02, -0.39, 0.36, 0.000 +20200504, 0.53, -0.16, -1.40, -0.79, -0.44, 0.000 +20200505, 0.95, -0.26, -1.97, -0.55, -0.51, 0.000 +20200506, -0.52, 0.11, -2.77, 0.12, -0.64, 0.000 +20200507, 1.33, 0.16, 0.41, -0.17, -0.69, 0.000 +20200508, 1.90, 1.93, 2.49, 0.86, 0.39, 0.000 +20200511, 0.07, -0.25, -3.72, -0.82, -0.06, 0.000 +20200512, -2.06, -1.16, -1.35, -0.68, -0.06, 0.000 +20200513, -1.89, -1.47, -2.18, -0.06, -0.26, 0.000 +20200514, 1.14, -1.06, 0.95, 0.57, 0.10, 0.000 +20200515, 0.57, 1.32, -1.23, 0.01, -0.80, 0.000 +20200518, 3.24, 2.64, 4.61, 1.67, 0.36, 0.000 +20200519, -1.01, -0.80, -1.42, 0.49, -0.68, 0.000 +20200520, 1.80, 1.21, 1.28, -0.29, -0.33, 0.000 +20200521, -0.70, 0.76, 0.45, 0.10, 0.00, 0.000 +20200522, 0.27, 0.25, -0.86, -0.58, -0.38, 0.000 +20200526, 1.23, 1.23, 4.62, 1.06, 0.62, 0.000 +20200527, 1.54, 1.42, 3.67, 0.75, 0.40, 0.000 +20200528, -0.41, -2.02, -2.41, -0.17, 0.08, 0.000 +20200529, 0.60, -0.79, -2.00, -0.30, -0.46, 0.000 +20200601, 0.52, 0.26, 0.49, -0.04, -0.24, 0.000 +20200602, 0.81, 0.11, 0.46, 0.12, 0.23, 0.000 +20200603, 1.41, 0.74, 2.67, 0.74, 0.24, 0.000 +20200604, -0.34, 0.50, 3.02, 1.00, 0.63, 0.000 +20200605, 2.50, 1.15, 2.70, 0.71, 0.06, 0.000 +20200608, 1.39, 0.68, 2.18, -0.45, 0.58, 0.000 +20200609, -0.85, -0.86, -1.98, -0.08, -0.52, 0.000 +20200610, -0.57, -1.79, -4.19, -0.35, -0.35, 0.000 +20200611, -5.91, -1.50, -3.09, -0.24, -0.26, 0.000 +20200612, 1.29, 0.83, 1.95, 0.19, 0.02, 0.000 +20200615, 1.09, 1.40, -0.40, -0.77, -0.27, 0.000 +20200616, 1.86, 0.64, 0.47, 0.68, 0.22, 0.000 +20200617, -0.40, -1.35, -2.00, -0.53, -0.27, 0.000 +20200618, 0.19, 0.02, -0.53, -0.37, -0.24, 0.000 +20200619, -0.45, -0.16, -0.65, -0.78, -0.29, 0.000 +20200622, 0.71, 0.46, -1.42, -0.40, -0.40, 0.000 +20200623, 0.42, 0.19, -0.55, 0.58, -0.11, 0.000 +20200624, -2.61, -0.75, -1.32, -0.09, 0.35, 0.000 +20200625, 1.12, 0.35, 0.50, -0.85, 0.14, 0.000 +20200626, -2.44, -0.15, -1.42, 0.01, 0.70, 0.000 +20200629, 1.51, 1.47, 1.81, 1.48, 0.38, 0.000 +20200630, 1.58, -0.02, -0.02, -0.39, -0.27, 0.000 +20200701, 0.41, -1.67, -2.54, -0.44, -1.24, 0.000 +20200702, 0.50, 0.01, -0.09, 0.37, 0.19, 0.000 +20200706, 1.65, -0.64, 0.33, 0.21, -0.04, 0.000 +20200707, -1.03, -0.99, -1.51, -1.00, -0.02, 0.000 +20200708, 0.91, 0.07, -0.47, -0.43, -0.34, 0.000 +20200709, -0.53, -1.55, -2.58, -0.28, -0.59, 0.000 +20200710, 1.11, 0.62, 3.05, 0.75, 0.18, 0.000 +20200713, -1.20, -0.31, 2.00, 1.17, 1.19, 0.000 +20200714, 1.35, 0.33, -0.33, -0.03, 0.45, 0.000 +20200715, 1.14, 2.70, 1.29, 0.15, 0.12, 0.000 +20200716, -0.37, -0.16, 0.81, 0.30, 0.34, 0.000 +20200717, 0.30, -0.16, -1.40, -1.07, 0.00, 0.000 +20200720, 1.01, -1.11, -2.38, -0.81, -1.31, 0.000 +20200721, 0.16, 1.46, 3.24, 0.53, 0.91, 0.000 +20200722, 0.49, -0.61, -0.34, 0.50, 0.03, 0.000 +20200723, -1.20, 1.21, 1.96, -0.16, 0.21, 0.000 +20200724, -0.75, -0.78, 0.47, 0.29, 0.06, 0.000 +20200727, 0.88, 0.29, -1.93, -0.22, 0.07, 0.000 +20200728, -0.81, -0.45, 1.01, 0.29, 0.12, 0.000 +20200729, 1.35, 0.66, 0.84, 0.19, 0.15, 0.000 +20200730, -0.29, 0.01, -1.81, -0.46, -0.17, 0.000 +20200731, 0.61, -1.77, -0.65, 0.76, 0.73, 0.000 diff --git a/Data/F-F_Research_Data_Factors.CSV b/Data/F-F_Research_Data_Factors.CSV new file mode 100644 index 0000000..c1069e4 --- /dev/null +++ b/Data/F-F_Research_Data_Factors.CSV @@ -0,0 +1,1231 @@ +This file was created by CMPT_ME_BEME_RETS using the 202007 CRSP database. +The 1-month TBill return is from Ibbotson and Associates, Inc. + +,Mkt-RF,SMB,HML,RF +192607, 2.96, -2.30, -2.87, 0.22 +192608, 2.64, -1.40, 4.19, 0.25 +192609, 0.36, -1.32, 0.01, 0.23 +192610, -3.24, 0.04, 0.51, 0.32 +192611, 2.53, -0.20, -0.35, 0.31 +192612, 2.62, -0.04, -0.02, 0.28 +192701, -0.06, -0.56, 4.83, 0.25 +192702, 4.18, -0.10, 3.17, 0.26 +192703, 0.13, -1.60, -2.67, 0.30 +192704, 0.46, 0.43, 0.60, 0.25 +192705, 5.44, 1.41, 4.93, 0.30 +192706, -2.34, 0.47, -1.53, 0.26 +192707, 7.26, -3.23, -1.16, 0.30 +192708, 1.97, -0.72, -3.69, 0.28 +192709, 4.76, -3.57, -0.71, 0.21 +192710, -4.31, 2.13, -4.33, 0.25 +192711, 6.58, 2.76, -0.31, 0.21 +192712, 2.09, 0.93, -1.06, 0.22 +192801, -0.68, 4.25, -0.72, 0.25 +192802, -1.70, -2.03, -0.69, 0.33 +192803, 8.81, -0.26, -1.20, 0.29 +192804, 4.23, 3.82, 3.67, 0.22 +192805, 1.52, 2.98, -3.46, 0.32 +192806, -4.85, -3.50, -0.06, 0.31 +192807, 0.62, -1.35, -0.47, 0.32 +192808, 6.68, -2.07, -2.11, 0.32 +192809, 2.88, 2.33, 0.99, 0.27 +192810, 1.33, 2.27, -2.26, 0.41 +192811, 11.81, -1.81, 2.80, 0.38 +192812, 0.36, -0.85, -0.60, 0.06 +192901, 4.66, -3.54, -1.21, 0.34 +192902, -0.34, -0.39, 1.68, 0.36 +192903, -0.89, -4.74, 1.61, 0.34 +192904, 1.43, -1.00, 0.60, 0.36 +192905, -6.39, -5.35, -1.40, 0.44 +192906, 9.70, -2.17, -2.76, 0.52 +192907, 4.46, -3.88, 2.66, 0.33 +192908, 8.18, -9.52, 0.06, 0.40 +192909, -5.47, 1.17, -0.63, 0.35 +192910, -20.12, -4.08, 7.85, 0.46 +192911, -12.74, -1.90, 5.33, 0.37 +192912, 1.33, -4.33, -0.59, 0.37 +193001, 5.61, 3.54, -1.01, 0.14 +193002, 2.50, 0.13, 0.39, 0.30 +193003, 7.10, 3.43, 0.15, 0.35 +193004, -2.06, -0.20, -0.84, 0.21 +193005, -1.66, -2.04, -0.63, 0.26 +193006, -16.27, -3.24, 2.00, 0.27 +193007, 4.12, -0.37, -1.56, 0.20 +193008, 0.30, -2.22, -0.78, 0.09 +193009, -12.75, -2.22, -5.27, 0.22 +193010, -8.78, -0.10, -1.35, 0.09 +193011, -3.04, 2.21, -3.53, 0.13 +193012, -7.83, -4.67, -5.40, 0.14 +193101, 6.24, 3.77, 7.16, 0.15 +193102, 10.88, 3.38, 1.61, 0.04 +193103, -6.43, 3.07, -3.66, 0.13 +193104, -9.98, -4.62, -3.94, 0.08 +193105, -13.24, 5.17, -6.58, 0.09 +193106, 13.90, -5.38, 11.31, 0.08 +193107, -6.62, 1.43, -2.10, 0.06 +193108, 0.41, -1.97, -1.49, 0.03 +193109, -29.13, 0.56, -6.75, 0.03 +193110, 8.04, -1.87, 1.70, 0.10 +193111, -9.08, 4.30, -5.05, 0.17 +193112, -13.53, -0.56, -8.86, 0.12 +193201, -1.58, 3.94, 9.04, 0.23 +193202, 5.46, -2.77, -1.45, 0.23 +193203, -11.21, 2.27, -2.32, 0.16 +193204, -17.96, 1.44, 1.42, 0.11 +193205, -20.51, 3.91, -2.99, 0.06 +193206, -0.70, 0.34, 5.30, 0.02 +193207, 33.84, -4.44, 35.46, 0.03 +193208, 37.06, 14.29, 33.03, 0.03 +193209, -2.94, -2.44, -6.82, 0.03 +193210, -13.17, -2.76, -10.05, 0.02 +193211, -5.88, 2.08, -13.28, 0.02 +193212, 4.40, -8.27, -8.17, 0.01 +193301, 1.25, 0.69, 6.23, 0.01 +193302, -15.24, -2.75, -2.73, -0.03 +193303, 3.29, 3.90, 7.38, 0.04 +193304, 38.85, 4.56, 17.43, 0.10 +193305, 21.43, 36.70, 19.03, 0.04 +193306, 13.11, 8.56, -2.05, 0.02 +193307, -9.63, -1.01, 3.27, 0.02 +193308, 12.05, -5.45, 2.96, 0.03 +193309, -10.65, -0.32, -11.77, 0.02 +193310, -8.36, -0.08, -8.46, 0.01 +193311, 9.97, -6.48, 2.33, 0.02 +193312, 1.83, 0.66, -1.53, 0.02 +193401, 12.60, 12.53, 15.54, 0.05 +193402, -2.50, 5.19, 2.12, 0.02 +193403, 0.09, 2.51, -2.73, 0.02 +193404, -1.79, 2.80, -3.75, 0.01 +193405, -7.25, -0.26, -5.91, 0.01 +193406, 2.64, -2.14, -2.92, 0.01 +193407, -10.96, -6.92, -10.64, 0.01 +193408, 5.58, 5.39, 0.45, 0.01 +193409, -0.23, -1.50, -1.22, 0.01 +193410, -1.66, 1.25, -5.11, 0.01 +193411, 8.33, 6.50, -2.24, 0.01 +193412, 0.36, 3.06, -3.20, 0.01 +193501, -3.45, 1.10, -1.86, 0.01 +193502, -1.94, 0.41, -7.27, 0.02 +193503, -3.68, -3.57, -5.10, 0.01 +193504, 9.06, -1.51, 4.35, 0.01 +193505, 3.47, -3.38, 2.56, 0.01 +193506, 5.93, -2.51, -1.65, 0.01 +193507, 7.51, 1.47, 6.86, 0.01 +193508, 2.65, 6.28, 5.70, 0.01 +193509, 2.63, 1.57, -4.05, 0.01 +193510, 7.03, 2.64, -2.33, 0.01 +193511, 4.88, 4.28, 11.91, 0.02 +193512, 4.56, 0.23, 1.07, 0.01 +193601, 6.89, 5.14, 10.51, 0.01 +193602, 2.49, 1.14, 5.04, 0.01 +193603, 0.99, 0.65, -1.66, 0.02 +193604, -8.14, -6.04, -2.08, 0.02 +193605, 5.19, 0.83, 2.63, 0.02 +193606, 2.40, -3.26, -1.20, 0.03 +193607, 6.67, 1.14, 2.56, 0.01 +193608, 0.99, 0.72, 3.99, 0.02 +193609, 0.98, 3.07, 0.88, 0.01 +193610, 7.12, -2.39, 2.52, 0.02 +193611, 3.27, 9.01, -0.92, 0.01 +193612, 0.21, 3.61, 3.96, 0.00 +193701, 3.35, 4.31, 2.61, 0.01 +193702, 1.09, 1.23, 5.05, 0.02 +193703, -0.27, -1.78, 6.39, 0.01 +193704, -7.36, -3.77, -3.61, 0.03 +193705, -0.83, -0.66, -3.49, 0.06 +193706, -4.21, -3.65, -3.21, 0.03 +193707, 8.91, 0.85, 0.82, 0.03 +193708, -4.86, 0.42, -2.25, 0.02 +193709, -13.61, -6.89, -4.57, 0.04 +193710, -9.61, 0.45, -1.62, 0.02 +193711, -8.31, -3.65, 0.20, 0.02 +193712, -4.24, -7.76, -0.39, 0.00 +193801, 0.49, 4.97, -1.60, 0.00 +193802, 5.84, 0.35, -2.02, 0.00 +193803, -23.82, -4.24, -3.52, -0.01 +193804, 14.51, 6.37, 0.18, 0.01 +193805, -3.83, -2.47, -0.28, 0.00 +193806, 23.87, 4.05, 0.30, 0.00 +193807, 7.34, 6.66, 2.18, -0.01 +193808, -2.67, -2.44, -4.72, 0.00 +193809, 0.81, -2.72, -1.62, 0.02 +193810, 7.80, 5.83, 5.01, 0.01 +193811, -1.72, -2.56, -1.23, -0.06 +193812, 4.19, -1.80, 0.50, 0.00 +193901, -5.96, -1.56, -3.92, -0.01 +193902, 3.51, 0.63, 2.95, 0.01 +193903, -11.99, -4.76, -8.29, -0.01 +193904, -0.18, 1.66, -0.30, 0.00 +193905, 6.80, 2.81, 0.47, 0.01 +193906, -5.31, -1.02, -5.41, 0.01 +193907, 10.24, 4.32, -0.03, 0.00 +193908, -6.68, -4.61, -2.42, -0.01 +193909, 16.88, 20.23, 22.22, 0.01 +193910, -0.53, -0.01, -4.89, 0.00 +193911, -3.62, -5.07, -6.46, 0.00 +193912, 3.03, 0.79, -4.06, 0.00 +194001, -2.41, 0.24, -0.77, 0.00 +194002, 1.44, 2.51, -0.32, 0.00 +194003, 2.05, 1.25, -1.27, 0.00 +194004, 0.22, 3.92, -0.13, 0.00 +194005, -21.95, -6.66, -3.69, -0.02 +194006, 6.67, -2.13, 4.63, 0.00 +194007, 3.16, 1.01, -0.74, 0.01 +194008, 2.19, -0.11, 0.56, -0.01 +194009, 2.39, 3.22, -1.13, 0.00 +194010, 3.02, 0.28, 4.64, 0.00 +194011, -1.61, 1.94, 0.12, 0.00 +194012, 0.69, -2.15, -0.89, 0.00 +194101, -4.17, 1.00, 3.83, -0.01 +194102, -1.43, -1.57, 0.89, -0.01 +194103, 0.84, 0.10, 3.04, 0.01 +194104, -5.46, -1.69, 3.41, -0.01 +194105, 1.39, -0.66, 0.60, 0.00 +194106, 5.83, 1.32, 0.59, 0.00 +194107, 5.87, 5.70, 7.25, 0.03 +194108, -0.17, -0.41, -1.10, 0.01 +194109, -0.87, -0.99, -0.28, 0.01 +194110, -5.25, -2.02, 1.63, 0.00 +194111, -1.92, -1.21, -0.64, 0.00 +194112, -4.87, -2.98, -5.94, 0.01 +194201, 0.79, 7.52, 10.10, 0.02 +194202, -2.46, 1.72, -1.13, 0.01 +194203, -6.58, 1.78, -0.62, 0.01 +194204, -4.37, -0.60, 2.09, 0.01 +194205, 5.94, -3.05, -2.65, 0.03 +194206, 2.69, -1.22, 0.54, 0.02 +194207, 3.51, -0.16, 2.40, 0.03 +194208, 1.80, -0.09, 1.33, 0.03 +194209, 2.61, 0.66, 2.39, 0.03 +194210, 6.82, 1.82, 6.47, 0.03 +194211, 0.15, -1.54, -4.24, 0.03 +194212, 5.12, -2.49, 0.56, 0.03 +194301, 7.13, 8.78, 8.23, 0.03 +194302, 6.15, 4.84, 6.51, 0.03 +194303, 6.01, 5.03, 5.48, 0.03 +194304, 0.81, 2.06, 5.86, 0.03 +194305, 5.74, 4.41, 3.28, 0.03 +194306, 1.82, -1.06, -0.74, 0.03 +194307, -4.77, -2.41, -2.27, 0.03 +194308, 1.30, -0.62, -0.47, 0.03 +194309, 2.40, 1.28, 1.43, 0.03 +194310, -1.15, 0.58, 1.65, 0.03 +194311, -5.91, -1.64, -4.04, 0.03 +194312, 6.36, 3.34, 3.22, 0.03 +194401, 1.74, 2.56, 2.17, 0.03 +194402, 0.37, -0.10, 0.83, 0.03 +194403, 2.46, 1.71, 3.43, 0.02 +194404, -1.69, -1.35, -1.13, 0.03 +194405, 5.07, 1.67, 1.02, 0.03 +194406, 5.49, 4.04, 1.82, 0.03 +194407, -1.49, 0.55, -0.43, 0.03 +194408, 1.57, 2.41, -1.63, 0.03 +194409, 0.01, 0.47, -1.21, 0.02 +194410, 0.16, -0.14, -0.34, 0.03 +194411, 1.71, 0.37, 2.31, 0.03 +194412, 4.03, 2.24, 5.91, 0.02 +194501, 2.01, 2.44, 0.71, 0.03 +194502, 6.23, 1.56, 4.40, 0.02 +194503, -3.89, -1.61, -1.78, 0.02 +194504, 7.80, 0.32, 3.21, 0.03 +194505, 1.73, 1.51, 0.35, 0.03 +194506, 0.39, 3.10, 4.32, 0.02 +194507, -2.17, -1.46, -2.71, 0.03 +194508, 6.20, 1.61, -4.40, 0.03 +194509, 4.77, 1.71, 0.48, 0.03 +194510, 3.89, 2.46, 2.25, 0.03 +194511, 5.39, 4.16, 4.34, 0.02 +194512, 1.20, 2.12, -2.32, 0.03 +194601, 6.24, 4.02, 2.21, 0.03 +194602, -5.83, -0.73, -1.27, 0.03 +194603, 5.87, 0.31, -0.36, 0.03 +194604, 4.23, 2.37, 0.45, 0.03 +194605, 3.93, 1.46, 1.09, 0.03 +194606, -3.89, -1.53, -0.59, 0.03 +194607, -2.69, -2.06, 0.04, 0.03 +194608, -6.44, -1.78, 0.60, 0.03 +194609, -10.17, -4.41, -1.96, 0.03 +194610, -1.44, 0.09, 3.44, 0.03 +194611, -0.01, -0.40, 1.52, 0.03 +194612, 4.96, 0.06, -1.38, 0.03 +194701, 1.25, 2.18, -0.73, 0.03 +194702, -1.08, 0.68, 0.14, 0.03 +194703, -1.67, -1.61, 0.61, 0.03 +194704, -4.80, -3.97, 0.85, 0.03 +194705, -0.97, -3.26, 0.34, 0.03 +194706, 5.29, -0.31, -0.60, 0.03 +194707, 4.14, 1.43, 2.82, 0.03 +194708, -1.74, 0.30, 0.16, 0.03 +194709, -0.54, 1.64, 1.36, 0.06 +194710, 2.47, 0.51, 0.08, 0.06 +194711, -1.97, -1.74, 1.06, 0.06 +194712, 3.00, -2.48, 3.69, 0.08 +194801, -3.93, 2.49, 1.38, 0.07 +194802, -4.38, -1.71, 0.07, 0.07 +194803, 8.07, 0.13, 4.49, 0.09 +194804, 3.65, -1.66, 4.10, 0.08 +194805, 7.30, 0.93, -1.23, 0.08 +194806, -0.10, -1.86, 2.75, 0.09 +194807, -5.09, -0.32, 0.07, 0.08 +194808, 0.25, -1.10, 0.27, 0.09 +194809, -2.97, -1.23, -1.79, 0.04 +194810, 5.96, -1.50, 0.56, 0.04 +194811, -9.30, -0.62, -4.14, 0.04 +194812, 3.26, -2.80, -1.94, 0.04 +194901, 0.23, 1.81, 1.17, 0.10 +194902, -2.93, -1.89, -0.91, 0.09 +194903, 4.04, 2.48, 1.34, 0.10 +194904, -1.87, -0.89, -1.18, 0.09 +194905, -2.94, -0.77, -2.42, 0.10 +194906, 0.10, -0.88, -1.76, 0.10 +194907, 5.54, 0.57, 0.38, 0.09 +194908, 2.60, 0.13, -0.57, 0.09 +194909, 3.09, 1.05, 0.23, 0.09 +194910, 3.14, 1.03, -0.49, 0.09 +194911, 1.82, -0.93, -0.91, 0.08 +194912, 5.13, 2.07, 1.75, 0.09 +195001, 1.70, 3.36, 0.14, 0.09 +195002, 1.48, 0.04, -0.81, 0.09 +195003, 1.26, -1.41, -2.77, 0.10 +195004, 3.94, 1.99, 1.34, 0.09 +195005, 4.31, -2.12, 0.46, 0.10 +195006, -5.94, -2.38, -0.78, 0.10 +195007, 1.36, 0.51, 13.66, 0.10 +195008, 4.85, 0.73, -1.41, 0.10 +195009, 4.81, 0.57, -1.11, 0.10 +195010, -0.18, -0.58, 1.44, 0.12 +195011, 2.76, -0.84, 3.17, 0.11 +195012, 5.54, 1.49, 7.23, 0.11 +195101, 5.70, 1.73, 3.72, 0.13 +195102, 1.41, 0.09, -2.83, 0.10 +195103, -2.15, -0.64, -4.22, 0.11 +195104, 4.86, -1.49, 3.28, 0.13 +195105, -2.34, -0.01, -1.33, 0.12 +195106, -2.62, -1.95, -3.96, 0.12 +195107, 6.94, -1.99, 2.01, 0.13 +195108, 4.27, 0.99, -0.16, 0.13 +195109, 0.70, 1.90, 0.61, 0.12 +195110, -2.53, -0.22, 0.25, 0.16 +195111, 0.57, -0.29, -0.05, 0.11 +195112, 3.33, -2.25, -1.56, 0.12 +195201, 1.45, -0.61, 1.54, 0.15 +195202, -2.62, 0.79, -0.61, 0.12 +195203, 4.44, -2.99, 2.16, 0.11 +195204, -4.97, 0.48, -0.10, 0.12 +195205, 3.20, -1.01, 0.08, 0.13 +195206, 3.83, -1.61, 1.23, 0.15 +195207, 0.91, -0.40, -0.35, 0.15 +195208, -0.76, 1.18, 0.03, 0.15 +195209, -2.03, 1.15, -1.51, 0.16 +195210, -0.66, -1.06, -0.45, 0.14 +195211, 5.94, -0.71, 0.95, 0.10 +195212, 2.93, -1.48, 0.18, 0.16 +195301, -0.34, 3.58, 1.32, 0.16 +195302, -0.27, 2.15, -0.08, 0.14 +195303, -1.43, -0.19, -0.80, 0.18 +195304, -2.83, 0.28, 1.53, 0.16 +195305, 0.52, -0.07, 0.23, 0.17 +195306, -1.89, -1.86, -0.47, 0.18 +195307, 2.40, -1.05, -0.24, 0.15 +195308, -4.52, 0.36, -3.54, 0.17 +195309, 0.20, -0.85, -2.42, 0.16 +195310, 4.60, -1.37, -0.19, 0.13 +195311, 2.83, -1.29, -0.17, 0.08 +195312, 0.03, -0.84, -2.84, 0.13 +195401, 5.13, 0.46, 3.51, 0.11 +195402, 1.67, -0.17, -0.28, 0.07 +195403, 3.65, -0.49, -1.46, 0.08 +195404, 4.27, -3.48, -0.37, 0.09 +195405, 3.09, 0.39, 2.46, 0.05 +195406, 1.07, 0.41, -0.03, 0.06 +195407, 4.99, 1.07, 4.11, 0.05 +195408, -2.34, 2.66, -1.36, 0.05 +195409, 6.39, -2.54, 0.66, 0.09 +195410, -1.67, 0.59, 0.72, 0.07 +195411, 9.38, -2.62, 4.36, 0.06 +195412, 5.48, 2.14, 5.71, 0.08 +195501, 0.60, 0.25, 2.18, 0.08 +195502, 3.02, 1.54, 0.62, 0.09 +195503, -0.16, -0.66, 1.95, 0.10 +195504, 3.11, -1.79, 0.81, 0.10 +195505, 0.93, -0.29, -0.86, 0.14 +195506, 6.55, -4.65, 1.92, 0.10 +195507, 1.90, -1.36, 0.63, 0.10 +195508, 0.21, -0.38, 0.58, 0.16 +195509, -0.36, 0.30, -1.06, 0.16 +195510, -2.68, 1.50, -0.03, 0.18 +195511, 7.03, -2.46, 0.50, 0.17 +195512, 1.49, 2.08, -2.24, 0.18 +195601, -3.03, 0.44, 1.12, 0.22 +195602, 3.77, -1.04, -0.53, 0.19 +195603, 6.64, -2.42, -0.14, 0.15 +195604, 0.28, 0.07, -0.18, 0.19 +195605, -5.20, 1.50, -1.33, 0.23 +195606, 3.48, -1.46, -1.32, 0.20 +195607, 4.84, -1.68, -0.01, 0.22 +195608, -3.18, 1.90, -0.71, 0.17 +195609, -5.14, 1.56, 1.79, 0.18 +195610, 0.52, -0.09, -0.06, 0.25 +195611, 0.36, -0.22, 1.78, 0.20 +195612, 3.16, -0.03, -2.10, 0.24 +195701, -3.58, 3.40, 2.78, 0.27 +195702, -2.06, -0.72, -0.73, 0.24 +195703, 2.13, 0.27, -0.47, 0.23 +195704, 4.26, -1.60, -1.51, 0.25 +195705, 3.45, -1.07, -2.05, 0.26 +195706, -0.74, 0.55, 0.01, 0.24 +195707, 0.66, -0.76, 0.38, 0.30 +195708, -5.11, 0.06, -0.45, 0.25 +195709, -5.98, 0.08, 0.88, 0.26 +195710, -4.32, -2.52, -1.83, 0.29 +195711, 2.30, 0.40, -2.90, 0.28 +195712, -3.91, -0.93, -1.71, 0.24 +195801, 4.66, 4.36, 4.23, 0.28 +195802, -1.52, 0.70, 0.28, 0.12 +195803, 3.27, 0.63, -0.92, 0.09 +195804, 3.09, -0.59, 1.46, 0.08 +195805, 2.31, 2.24, -0.35, 0.11 +195806, 2.93, -0.24, 0.50, 0.03 +195807, 4.39, 0.47, 3.12, 0.07 +195808, 1.91, 1.19, 0.29, 0.04 +195809, 4.66, 0.15, 2.96, 0.19 +195810, 2.53, 1.13, -1.18, 0.18 +195811, 3.01, 2.06, -1.29, 0.11 +195812, 5.15, -2.07, -0.05, 0.22 +195901, 0.71, 3.02, 2.98, 0.21 +195902, 0.95, 1.49, 1.05, 0.19 +195903, 0.28, 1.48, -0.35, 0.22 +195904, 3.66, -0.58, -1.22, 0.20 +195905, 1.73, -2.15, 1.87, 0.22 +195906, -0.25, 0.68, 1.33, 0.25 +195907, 3.17, -0.32, 0.26, 0.25 +195908, -1.39, -0.78, 0.44, 0.19 +195909, -4.80, -0.09, 0.57, 0.31 +195910, 1.28, 1.43, -2.05, 0.30 +195911, 1.60, 1.24, -3.27, 0.26 +195912, 2.45, -0.60, -0.03, 0.34 +196001, -6.98, 2.09, 2.73, 0.33 +196002, 1.17, 0.51, -1.99, 0.29 +196003, -1.63, -0.51, -2.85, 0.35 +196004, -1.71, 0.31, -2.23, 0.19 +196005, 3.12, 1.21, -3.76, 0.27 +196006, 2.08, -0.22, -0.34, 0.24 +196007, -2.37, -0.51, 2.01, 0.13 +196008, 3.01, 0.88, -0.17, 0.17 +196009, -5.99, -1.10, 1.55, 0.16 +196010, -0.71, -4.00, 2.66, 0.22 +196011, 4.69, 0.39, -2.52, 0.13 +196012, 4.71, -1.58, -0.76, 0.16 +196101, 6.20, 0.66, 3.70, 0.19 +196102, 3.57, 3.98, -0.74, 0.14 +196103, 2.89, 3.31, -0.83, 0.20 +196104, 0.29, 0.07, 2.10, 0.17 +196105, 2.40, 2.00, 0.40, 0.18 +196106, -3.08, -2.45, -0.21, 0.20 +196107, 2.83, -1.88, -0.11, 0.18 +196108, 2.57, -1.75, -0.28, 0.14 +196109, -2.15, -1.05, -0.58, 0.17 +196110, 2.57, -1.61, 0.12, 0.19 +196111, 4.45, 1.24, -1.19, 0.15 +196112, -0.18, -0.83, 1.83, 0.19 +196201, -3.87, 1.78, 5.09, 0.24 +196202, 1.81, -1.16, 0.85, 0.20 +196203, -0.68, 0.53, -1.43, 0.20 +196204, -6.59, -0.68, 0.03, 0.22 +196205, -8.65, -3.33, 2.78, 0.24 +196206, -8.47, -0.57, 2.54, 0.20 +196207, 6.28, 1.49, -3.44, 0.27 +196208, 2.13, 1.23, -1.19, 0.23 +196209, -5.22, -2.43, 1.23, 0.21 +196210, -0.05, -3.97, 1.29, 0.25 +196211, 10.87, 2.61, 1.01, 0.20 +196212, 1.01, -3.80, 0.33, 0.23 +196301, 4.93, 3.06, 2.26, 0.25 +196302, -2.38, 0.50, 2.21, 0.23 +196303, 3.08, -2.62, 2.10, 0.23 +196304, 4.51, -1.31, 1.01, 0.25 +196305, 1.76, 1.12, 2.50, 0.24 +196306, -2.00, -0.25, 0.70, 0.23 +196307, -0.39, -0.56, -0.83, 0.27 +196308, 5.07, -0.94, 1.67, 0.25 +196309, -1.57, -0.30, 0.18, 0.27 +196310, 2.53, -0.54, -0.10, 0.29 +196311, -0.85, -1.13, 1.71, 0.27 +196312, 1.83, -1.97, -0.12, 0.29 +196401, 2.24, -0.19, 1.59, 0.30 +196402, 1.54, 0.10, 2.83, 0.26 +196403, 1.41, 0.99, 3.32, 0.31 +196404, 0.10, -1.37, -0.55, 0.29 +196405, 1.42, -0.90, 1.98, 0.26 +196406, 1.27, -0.26, 0.68, 0.30 +196407, 1.74, 0.28, 0.68, 0.30 +196408, -1.44, 0.09, 0.09, 0.28 +196409, 2.69, -0.51, 1.65, 0.28 +196410, 0.59, 0.43, 1.14, 0.29 +196411, 0.00, 0.61, -1.98, 0.29 +196412, 0.03, -0.26, -2.55, 0.31 +196501, 3.54, 2.70, 0.18, 0.28 +196502, 0.44, 3.48, 0.22, 0.30 +196503, -1.34, 1.79, 1.09, 0.36 +196504, 3.11, 1.20, 0.71, 0.31 +196505, -0.77, 0.04, -1.63, 0.31 +196506, -5.51, -4.35, 0.55, 0.35 +196507, 1.43, 0.87, 2.18, 0.31 +196508, 2.73, 2.81, -0.96, 0.33 +196509, 2.86, 0.61, -0.10, 0.31 +196510, 2.60, 2.48, 1.52, 0.31 +196511, -0.03, 4.68, 0.21, 0.35 +196512, 1.01, 2.08, 1.95, 0.33 +196601, 0.72, 3.89, 3.49, 0.38 +196602, -1.21, 4.54, 0.27, 0.35 +196603, -2.51, 0.94, -2.07, 0.38 +196604, 2.14, 3.45, -0.54, 0.34 +196605, -5.66, -4.70, -1.55, 0.41 +196606, -1.44, 1.02, 0.50, 0.38 +196607, -1.63, -0.44, 0.96, 0.35 +196608, -7.91, -3.23, 0.47, 0.41 +196609, -1.06, -1.07, 0.53, 0.40 +196610, 3.86, -6.64, 2.87, 0.45 +196611, 1.40, 4.22, -4.46, 0.40 +196612, 0.13, 1.86, -1.22, 0.40 +196701, 8.15, 8.32, 2.22, 0.43 +196702, 0.78, 3.34, -2.17, 0.36 +196703, 3.99, 1.63, 0.31, 0.39 +196704, 3.89, 0.62, -2.64, 0.32 +196705, -4.33, 1.98, 0.80, 0.33 +196706, 2.41, 5.96, 0.96, 0.27 +196707, 4.58, 3.08, 2.65, 0.31 +196708, -0.89, 0.47, 1.46, 0.31 +196709, 3.11, 3.10, -2.47, 0.32 +196710, -3.09, 1.42, -3.39, 0.39 +196711, 0.37, 0.20, -1.71, 0.36 +196712, 3.05, 5.73, -0.39, 0.33 +196801, -4.06, 3.91, 4.75, 0.40 +196802, -3.75, -2.95, 1.17, 0.39 +196803, 0.20, -1.28, -0.59, 0.38 +196804, 9.05, 5.73, -1.03, 0.43 +196805, 2.28, 6.43, 0.84, 0.45 +196806, 0.69, -0.17, 0.67, 0.43 +196807, -2.72, -1.30, 5.48, 0.48 +196808, 1.34, 2.34, 1.00, 0.42 +196809, 4.03, 2.76, 0.23, 0.43 +196810, 0.42, -0.47, 2.89, 0.44 +196811, 5.43, 2.35, -0.90, 0.42 +196812, -3.94, 3.44, 0.02, 0.43 +196901, -1.25, -0.78, 1.69, 0.53 +196902, -5.84, -3.89, 0.91, 0.46 +196903, 2.64, -0.25, -0.46, 0.46 +196904, 1.46, -0.88, 0.03, 0.53 +196905, -0.10, -0.27, 0.73, 0.48 +196906, -7.18, -5.39, -1.09, 0.51 +196907, -7.00, -3.21, 1.42, 0.53 +196908, 4.68, 0.94, -3.87, 0.50 +196909, -2.98, 1.20, -3.19, 0.62 +196910, 5.06, 3.81, -3.19, 0.60 +196911, -3.79, -2.53, -1.12, 0.52 +196912, -2.63, -3.67, -3.02, 0.64 +197001, -8.10, 2.90, 3.04, 0.60 +197002, 5.13, -2.40, 4.04, 0.62 +197003, -1.06, -2.32, 4.25, 0.57 +197004, -11.00, -6.11, 6.40, 0.50 +197005, -6.92, -4.52, 3.60, 0.53 +197006, -5.79, -2.16, 0.87, 0.58 +197007, 6.93, -0.54, 0.96, 0.52 +197008, 4.49, 1.52, 1.03, 0.53 +197009, 4.18, 8.62, -5.58, 0.54 +197010, -2.28, -4.28, 0.27, 0.46 +197011, 4.60, -4.07, 1.63, 0.46 +197012, 5.72, 2.97, 1.01, 0.42 +197101, 4.84, 7.37, 1.38, 0.38 +197102, 1.41, 1.88, -1.29, 0.33 +197103, 4.13, 2.54, -4.04, 0.30 +197104, 3.15, -0.49, 0.72, 0.28 +197105, -3.98, -1.10, -1.38, 0.29 +197106, -0.10, -1.42, -2.06, 0.37 +197107, -4.50, -1.50, 0.17, 0.40 +197108, 3.79, -0.16, 2.67, 0.47 +197109, -0.85, 0.41, -2.96, 0.37 +197110, -4.42, -1.80, -0.43, 0.37 +197111, -0.46, -2.85, -1.70, 0.37 +197112, 8.71, 3.32, -0.35, 0.37 +197201, 2.49, 6.12, 1.99, 0.29 +197202, 2.87, 1.37, -2.76, 0.25 +197203, 0.63, -0.27, -1.73, 0.27 +197204, 0.29, 0.01, 0.23, 0.29 +197205, 1.25, -2.79, -2.69, 0.30 +197206, -2.43, 0.33, -2.51, 0.29 +197207, -0.80, -2.89, 0.78, 0.31 +197208, 3.26, -4.09, 4.69, 0.29 +197209, -1.14, -2.67, 0.47, 0.34 +197210, 0.52, -2.74, 1.37, 0.40 +197211, 4.60, -1.11, 4.76, 0.37 +197212, 0.62, -1.86, -2.27, 0.37 +197301, -3.29, -3.48, 2.68, 0.44 +197302, -4.85, -3.99, 1.70, 0.41 +197303, -1.30, -2.82, 2.78, 0.46 +197304, -5.68, -3.99, 5.69, 0.52 +197305, -2.94, -6.12, 0.21, 0.51 +197306, -1.56, -2.95, 1.44, 0.51 +197307, 5.05, 7.92, -5.35, 0.64 +197308, -3.82, -2.02, 1.13, 0.70 +197309, 4.75, 2.94, 2.19, 0.68 +197310, -0.83, -0.23, 1.75, 0.65 +197311, -12.75, -7.71, 4.09, 0.56 +197312, 0.61, -5.29, 4.10, 0.64 +197401, -0.17, 9.76, 5.98, 0.63 +197402, -0.47, 0.04, 2.56, 0.58 +197403, -2.81, 2.51, -0.11, 0.56 +197404, -5.29, -0.70, 1.03, 0.75 +197405, -4.68, -3.00, -2.07, 0.75 +197406, -2.83, -0.20, 0.77, 0.60 +197407, -8.05, 0.92, 5.14, 0.70 +197408, -9.35, -0.68, 2.50, 0.60 +197409, -11.77, 0.27, 5.49, 0.81 +197410, 16.10, -3.51, -9.99, 0.51 +197411, -4.51, -1.17, -0.16, 0.54 +197412, -3.45, -4.84, 0.00, 0.70 +197501, 13.66, 11.01, 8.44, 0.58 +197502, 5.56, 0.16, -4.56, 0.43 +197503, 2.66, 3.75, 2.49, 0.41 +197504, 4.23, -0.54, -1.11, 0.44 +197505, 5.19, 3.83, -4.02, 0.44 +197506, 4.83, 0.76, 1.32, 0.41 +197507, -6.59, 2.69, 1.70, 0.48 +197508, -2.85, -3.20, -0.90, 0.48 +197509, -4.26, -0.13, 0.34, 0.53 +197510, 5.31, -4.02, 0.30, 0.56 +197511, 2.64, -1.19, 1.99, 0.41 +197512, -1.60, -0.76, 1.75, 0.48 +197601, 12.16, 4.80, 8.58, 0.47 +197602, 0.32, 7.03, 5.78, 0.34 +197603, 2.32, -1.17, -0.04, 0.40 +197604, -1.49, -0.03, -0.06, 0.42 +197605, -1.34, -1.24, -1.32, 0.37 +197606, 4.05, -1.35, 0.68, 0.43 +197607, -1.07, 0.30, 1.74, 0.47 +197608, -0.56, -2.01, 0.79, 0.42 +197609, 2.07, 0.00, -0.29, 0.44 +197610, -2.42, 0.25, -0.12, 0.41 +197611, 0.36, 2.32, 1.52, 0.40 +197612, 5.65, 3.00, 2.21, 0.40 +197701, -4.05, 4.78, 4.26, 0.36 +197702, -1.94, 1.08, 0.50, 0.35 +197703, -1.37, 0.99, 1.02, 0.38 +197704, 0.15, -0.10, 3.47, 0.38 +197705, -1.45, 1.18, 0.84, 0.37 +197706, 4.71, 2.13, -0.64, 0.40 +197707, -1.69, 2.12, -0.59, 0.42 +197708, -1.75, 1.52, -2.79, 0.44 +197709, -0.27, 1.45, -0.49, 0.43 +197710, -4.38, 1.27, 1.72, 0.49 +197711, 4.00, 3.72, 0.31, 0.50 +197712, 0.27, 1.35, -0.37, 0.49 +197801, -6.01, 2.22, 3.31, 0.49 +197802, -1.38, 3.59, 0.76, 0.46 +197803, 2.85, 3.48, 1.20, 0.53 +197804, 7.88, 0.40, -3.54, 0.54 +197805, 1.76, 4.56, -0.62, 0.51 +197806, -1.69, 1.69, 0.59, 0.54 +197807, 5.11, 0.26, -1.11, 0.56 +197808, 3.75, 5.06, -0.46, 0.56 +197809, -1.43, -0.39, 1.87, 0.62 +197810, -11.91, -9.88, 1.36, 0.68 +197811, 2.71, 3.01, -2.22, 0.70 +197812, 0.88, 1.24, -2.19, 0.78 +197901, 4.23, 3.66, 2.27, 0.77 +197902, -3.56, 0.45, 1.20, 0.73 +197903, 5.68, 3.19, -0.67, 0.81 +197904, -0.06, 2.18, 1.05, 0.80 +197905, -2.21, 0.16, 1.32, 0.82 +197906, 3.85, 1.17, 1.48, 0.81 +197907, 0.82, 1.26, 1.70, 0.77 +197908, 5.53, 2.08, -1.55, 0.77 +197909, -0.82, -0.25, -0.87, 0.83 +197910, -8.10, -3.34, -1.86, 0.87 +197911, 5.21, 2.74, -3.25, 0.99 +197912, 1.79, 4.17, -1.98, 0.95 +198001, 5.51, 1.65, 1.80, 0.80 +198002, -1.22, -1.82, 0.62, 0.89 +198003, -12.90, -6.64, -1.06, 1.21 +198004, 3.97, 0.97, 1.06, 1.26 +198005, 5.26, 2.16, 0.39, 0.81 +198006, 3.06, 1.67, -0.89, 0.61 +198007, 6.49, 4.25, -6.30, 0.53 +198008, 1.80, 3.92, -2.64, 0.64 +198009, 2.19, 0.89, -4.79, 0.75 +198010, 1.06, 2.47, -2.74, 0.95 +198011, 9.59, -3.45, -8.35, 0.96 +198012, -4.52, -0.28, 2.68, 1.31 +198101, -5.04, 3.00, 6.84, 1.04 +198102, 0.57, -0.31, 0.97, 1.07 +198103, 3.56, 3.58, 0.67, 1.21 +198104, -2.11, 4.42, 2.26, 1.08 +198105, 0.11, 2.00, -0.43, 1.15 +198106, -2.36, -0.85, 5.13, 1.35 +198107, -1.54, -2.18, -0.66, 1.24 +198108, -7.04, -1.95, 4.84, 1.28 +198109, -7.17, -2.66, 5.20, 1.24 +198110, 4.92, 2.13, -4.21, 1.21 +198111, 3.36, -0.96, 1.90, 1.07 +198112, -3.65, 1.17, 0.74, 0.87 +198201, -3.24, -1.29, 3.17, 0.80 +198202, -5.86, 0.49, 6.10, 0.92 +198203, -1.87, -0.19, 3.78, 0.98 +198204, 3.27, 1.51, -2.78, 1.13 +198205, -3.99, 0.47, 1.81, 1.06 +198206, -3.09, -0.40, 1.54, 0.96 +198207, -3.19, 0.84, 0.15, 1.05 +198208, 11.14, -4.11, 1.16, 0.76 +198209, 1.29, 2.88, 0.34, 0.51 +198210, 11.30, 2.35, -3.68, 0.59 +198211, 4.67, 4.77, -1.96, 0.63 +198212, 0.55, -0.18, 0.01, 0.67 +198301, 3.60, 2.70, -0.86, 0.69 +198302, 2.59, 3.23, 0.67, 0.62 +198303, 2.82, 1.77, 2.07, 0.63 +198304, 6.67, 0.53, 0.60, 0.71 +198305, 0.52, 6.16, -1.40, 0.69 +198306, 3.07, 0.91, -3.87, 0.67 +198307, -4.07, 1.46, 5.62, 0.74 +198308, -0.50, -4.30, 5.55, 0.76 +198309, 0.91, 0.56, 1.09, 0.76 +198310, -3.44, -3.60, 5.06, 0.76 +198311, 2.16, 2.04, -0.62, 0.70 +198312, -1.78, -0.29, 1.67, 0.73 +198401, -1.92, -0.43, 7.63, 0.76 +198402, -4.82, -1.71, 3.36, 0.71 +198403, 0.63, 0.07, 0.48, 0.73 +198404, -0.51, -1.20, 1.29, 0.81 +198405, -5.97, 0.03, 0.26, 0.78 +198406, 1.82, -0.32, -2.60, 0.75 +198407, -2.74, -2.21, 0.49, 0.82 +198408, 10.28, -0.25, -1.85, 0.83 +198409, -0.80, 0.20, 5.32, 0.86 +198410, -0.84, -1.20, 0.51, 1.00 +198411, -1.76, -0.62, 4.08, 0.73 +198412, 1.84, -0.60, -0.17, 0.64 +198501, 7.99, 3.27, -5.43, 0.65 +198502, 1.22, 0.76, -0.12, 0.58 +198503, -0.84, -1.15, 4.10, 0.62 +198504, -0.96, 0.14, 3.73, 0.72 +198505, 5.09, -2.25, -0.86, 0.66 +198506, 1.27, 0.46, 0.40, 0.55 +198507, -0.74, 2.85, -1.63, 0.62 +198508, -1.02, -0.34, 2.28, 0.55 +198509, -4.54, -1.58, 1.32, 0.60 +198510, 4.02, -1.57, 0.78, 0.65 +198511, 6.48, 0.23, -2.87, 0.61 +198512, 3.88, -0.49, -1.53, 0.65 +198601, 0.65, 1.22, 0.53, 0.56 +198602, 7.13, -0.65, -0.94, 0.53 +198603, 4.88, -0.52, -0.44, 0.60 +198604, -1.31, 2.84, -2.85, 0.52 +198605, 4.62, -1.32, -0.11, 0.49 +198606, 1.03, -0.91, 1.40, 0.52 +198607, -6.45, -3.38, 4.78, 0.52 +198608, 6.07, -4.17, 3.52, 0.46 +198609, -8.60, 2.28, 3.19, 0.45 +198610, 4.66, -2.48, -1.32, 0.46 +198611, 1.17, -1.92, -0.06, 0.39 +198612, -3.27, 0.08, 0.37, 0.49 +198701, 12.47, -1.81, -3.18, 0.42 +198702, 4.39, 3.49, -5.99, 0.43 +198703, 1.64, 0.37, 1.66, 0.47 +198704, -2.11, -1.69, -0.33, 0.44 +198705, 0.11, -0.53, 0.13, 0.38 +198706, 3.94, -2.18, 1.07, 0.48 +198707, 3.85, -0.67, 0.66, 0.46 +198708, 3.52, -0.72, -0.90, 0.47 +198709, -2.59, 0.52, 0.28, 0.45 +198710, -23.24, -8.43, 4.23, 0.60 +198711, -7.77, 2.77, 3.14, 0.35 +198712, 6.81, 0.13, -4.49, 0.39 +198801, 4.21, -0.77, 5.08, 0.29 +198802, 4.75, 3.36, -1.65, 0.46 +198803, -2.27, 6.16, 0.74, 0.44 +198804, 0.56, 0.96, 1.69, 0.46 +198805, -0.29, -2.64, 2.30, 0.51 +198806, 4.79, 2.16, -1.07, 0.49 +198807, -1.25, -0.21, 2.27, 0.51 +198808, -3.31, 0.04, 2.03, 0.59 +198809, 3.30, -1.25, -0.68, 0.62 +198810, 1.15, -2.90, 1.71, 0.61 +198811, -2.29, -1.74, 1.24, 0.57 +198812, 1.49, 1.95, -1.55, 0.63 +198901, 6.10, -2.14, 0.51, 0.55 +198902, -2.25, 2.76, 0.87, 0.61 +198903, 1.57, 0.74, 0.46, 0.67 +198904, 4.33, -0.59, -1.45, 0.67 +198905, 3.35, -0.04, -0.82, 0.79 +198906, -1.35, -1.01, 2.19, 0.71 +198907, 7.20, -4.02, -2.84, 0.70 +198908, 1.44, 0.50, 0.72, 0.74 +198909, -0.76, 0.28, -1.34, 0.65 +198910, -3.67, -3.30, -1.03, 0.68 +198911, 1.03, -1.24, -1.12, 0.69 +198912, 1.16, -2.41, 0.28, 0.61 +199001, -7.85, -1.29, 0.87, 0.57 +199002, 1.11, 1.03, 0.61, 0.57 +199003, 1.83, 1.52, -2.90, 0.64 +199004, -3.36, -0.50, -2.55, 0.69 +199005, 8.42, -2.57, -3.74, 0.68 +199006, -1.09, 1.43, -1.94, 0.63 +199007, -1.90, -3.21, -0.01, 0.68 +199008, -10.15, -3.58, 1.58, 0.66 +199009, -6.12, -3.67, 0.73, 0.60 +199010, -1.92, -5.50, 0.22, 0.68 +199011, 6.35, 0.33, -3.16, 0.57 +199012, 2.46, 0.79, -1.54, 0.60 +199101, 4.69, 3.79, -1.84, 0.52 +199102, 7.19, 3.96, -0.54, 0.48 +199103, 2.65, 3.89, -1.23, 0.44 +199104, -0.28, 0.50, 1.42, 0.53 +199105, 3.65, -0.34, -0.57, 0.47 +199106, -4.94, 0.07, 1.21, 0.42 +199107, 4.24, -0.93, -1.25, 0.49 +199108, 2.32, 1.59, -0.78, 0.46 +199109, -1.59, 1.63, -1.00, 0.46 +199110, 1.29, 0.90, -0.43, 0.42 +199111, -4.19, -0.48, -1.93, 0.39 +199112, 10.84, -2.24, -4.03, 0.38 +199201, -0.59, 8.47, 4.51, 0.34 +199202, 1.09, 0.88, 6.37, 0.28 +199203, -2.66, -1.03, 3.65, 0.34 +199204, 1.07, -6.12, 4.31, 0.32 +199205, 0.30, 0.39, 1.28, 0.28 +199206, -2.34, -3.09, 3.40, 0.32 +199207, 3.77, -0.44, -0.53, 0.31 +199208, -2.38, -0.12, -1.03, 0.26 +199209, 1.19, 0.56, -0.21, 0.26 +199210, 1.02, 2.05, -2.10, 0.23 +199211, 4.13, 3.70, -1.48, 0.23 +199212, 1.53, 1.64, 2.52, 0.28 +199301, 0.93, 2.03, 5.87, 0.23 +199302, 0.12, -3.43, 6.42, 0.22 +199303, 2.30, 0.23, 1.22, 0.25 +199304, -3.05, -0.70, 2.61, 0.24 +199305, 2.89, 1.96, -3.41, 0.22 +199306, 0.31, -0.31, 2.62, 0.25 +199307, -0.34, 0.93, 3.25, 0.24 +199308, 3.71, 0.31, -0.45, 0.25 +199309, -0.12, 3.11, -0.44, 0.26 +199310, 1.41, 1.46, -1.54, 0.22 +199311, -1.89, -1.42, -0.27, 0.25 +199312, 1.65, 1.23, 0.56, 0.23 +199401, 2.87, 0.14, 2.10, 0.25 +199402, -2.55, 2.74, -1.46, 0.21 +199403, -4.78, -0.98, 1.29, 0.27 +199404, 0.68, -0.92, 1.67, 0.27 +199405, 0.58, -2.01, 0.20, 0.31 +199406, -3.03, -0.45, 1.69, 0.31 +199407, 2.82, -1.72, 0.62, 0.28 +199408, 4.01, 1.34, -2.80, 0.37 +199409, -2.31, 2.83, -1.91, 0.37 +199410, 1.34, -2.35, -1.74, 0.38 +199411, -4.04, 0.26, -0.94, 0.37 +199412, 0.86, 0.04, 0.54, 0.44 +199501, 1.80, -2.64, 0.81, 0.42 +199502, 3.63, -0.67, 1.09, 0.40 +199503, 2.19, -0.69, -1.09, 0.46 +199504, 2.11, -0.63, 2.27, 0.44 +199505, 2.90, -2.21, 1.72, 0.54 +199506, 2.72, 2.93, -2.28, 0.47 +199507, 3.72, 2.09, -1.67, 0.45 +199508, 0.55, 1.59, 2.71, 0.47 +199509, 3.35, -2.11, -0.75, 0.43 +199510, -1.52, -3.75, -0.73, 0.47 +199511, 3.96, -1.16, 0.94, 0.42 +199512, 1.03, 0.58, 0.87, 0.49 +199601, 2.26, -2.62, 0.31, 0.43 +199602, 1.33, 1.89, -1.42, 0.39 +199603, 0.73, 1.31, 1.01, 0.39 +199604, 2.06, 4.91, -3.91, 0.46 +199605, 2.36, 3.05, -1.20, 0.42 +199606, -1.14, -3.58, 1.56, 0.40 +199607, -5.97, -3.83, 4.45, 0.45 +199608, 2.77, 2.30, -0.46, 0.41 +199609, 5.01, -0.88, -3.15, 0.44 +199610, 0.86, -4.44, 5.13, 0.42 +199611, 6.25, -3.89, 1.17, 0.41 +199612, -1.70, 3.19, 0.88, 0.46 +199701, 4.98, -1.84, -1.64, 0.45 +199702, -0.49, -2.91, 5.20, 0.39 +199703, -5.02, -0.38, 3.81, 0.43 +199704, 4.04, -5.65, -0.06, 0.43 +199705, 6.74, 4.90, -3.89, 0.49 +199706, 4.10, 1.32, 1.23, 0.37 +199707, 7.33, -2.80, 0.82, 0.43 +199708, -4.15, 7.31, 1.38, 0.41 +199709, 5.35, 2.61, 0.01, 0.44 +199710, -3.80, -0.68, 1.95, 0.42 +199711, 2.98, -4.95, 0.78, 0.39 +199712, 1.32, -2.35, 3.45, 0.48 +199801, 0.15, -1.16, -1.45, 0.43 +199802, 7.04, 0.01, -0.13, 0.39 +199803, 4.76, -0.93, 1.05, 0.39 +199804, 0.73, 0.21, 0.73, 0.43 +199805, -3.07, -3.75, 4.16, 0.40 +199806, 3.18, -3.16, -2.33, 0.41 +199807, -2.46, -5.12, -0.96, 0.40 +199808, -16.08, -5.31, 3.40, 0.43 +199809, 6.15, -0.14, -3.31, 0.46 +199810, 7.13, -3.29, -2.21, 0.32 +199811, 6.10, 1.07, -3.15, 0.31 +199812, 6.16, -0.35, -4.46, 0.38 +199901, 3.50, 0.37, -4.03, 0.35 +199902, -4.08, -5.67, 1.40, 0.35 +199903, 3.45, -3.92, -2.65, 0.43 +199904, 4.33, 4.00, 2.53, 0.37 +199905, -2.46, 3.42, 2.40, 0.34 +199906, 4.77, 3.05, -3.60, 0.40 +199907, -3.49, 2.67, -0.76, 0.38 +199908, -1.38, -1.27, -1.31, 0.39 +199909, -2.79, 3.34, -3.39, 0.39 +199910, 6.12, -6.95, -2.89, 0.39 +199911, 3.37, 7.37, -6.51, 0.36 +199912, 7.72, 7.12, -8.73, 0.44 +200001, -4.74, 4.95, -0.28, 0.41 +200002, 2.45, 21.70, -9.93, 0.43 +200003, 5.20, -16.87, 7.37, 0.47 +200004, -6.40, -7.72, 8.61, 0.46 +200005, -4.42, -5.11, 2.57, 0.50 +200006, 4.64, 13.85, -9.86, 0.40 +200007, -2.51, -2.76, 8.06, 0.48 +200008, 7.03, -1.15, -0.66, 0.50 +200009, -5.45, -1.32, 6.13, 0.51 +200010, -2.76, -3.81, 5.64, 0.56 +200011, -10.72, -2.77, 11.26, 0.51 +200012, 1.19, 0.96, 7.38, 0.50 +200101, 3.13, 6.54, -4.86, 0.54 +200102, -10.05, -0.72, 12.87, 0.38 +200103, -7.26, 0.35, 6.46, 0.42 +200104, 7.94, 0.54, -4.72, 0.39 +200105, 0.72, 2.58, 3.17, 0.32 +200106, -1.94, 6.03, -1.03, 0.28 +200107, -2.13, -4.35, 5.57, 0.30 +200108, -6.46, 2.50, 2.50, 0.31 +200109, -9.25, -6.12, 1.60, 0.28 +200110, 2.46, 7.63, -8.10, 0.22 +200111, 7.54, -0.41, 2.01, 0.17 +200112, 1.61, 4.57, 1.10, 0.15 +200201, -1.44, 1.19, 3.33, 0.14 +200202, -2.29, -1.10, 2.50, 0.13 +200203, 4.24, 4.23, 1.10, 0.13 +200204, -5.20, 5.94, 3.93, 0.15 +200205, -1.38, -3.21, 1.68, 0.14 +200206, -7.21, 4.27, 0.12, 0.13 +200207, -8.18, -5.30, -3.44, 0.15 +200208, 0.50, -2.44, 2.53, 0.14 +200209, -10.35, 2.57, 1.32, 0.14 +200210, 7.84, -2.90, -5.45, 0.14 +200211, 5.96, 2.84, -1.12, 0.12 +200212, -5.76, 0.01, 2.23, 0.11 +200301, -2.57, 1.38, -0.94, 0.10 +200302, -1.88, -0.34, -1.45, 0.09 +200303, 1.09, 0.89, -2.07, 0.10 +200304, 8.22, 0.56, 1.03, 0.10 +200305, 6.05, 4.69, -0.29, 0.09 +200306, 1.42, 1.67, 0.69, 0.10 +200307, 2.35, 5.24, -1.14, 0.07 +200308, 2.34, 2.60, 2.03, 0.07 +200309, -1.24, 0.80, 0.01, 0.08 +200310, 6.08, 2.68, 1.77, 0.07 +200311, 1.35, 2.02, 1.85, 0.07 +200312, 4.29, -3.00, 2.41, 0.08 +200401, 2.15, 2.80, 1.97, 0.07 +200402, 1.40, -1.43, 0.50, 0.06 +200403, -1.32, 1.75, 0.22, 0.09 +200404, -1.83, -2.06, -2.62, 0.08 +200405, 1.17, -0.21, -0.39, 0.06 +200406, 1.86, 2.26, 1.39, 0.08 +200407, -4.06, -3.81, 4.11, 0.10 +200408, 0.08, -1.62, 1.03, 0.11 +200409, 1.60, 3.03, -0.25, 0.11 +200410, 1.43, 0.31, -0.63, 0.11 +200411, 4.54, 3.90, 1.79, 0.15 +200412, 3.43, 0.11, -0.08, 0.16 +200501, -2.76, -1.51, 1.96, 0.16 +200502, 1.89, -0.50, 1.65, 0.16 +200503, -1.97, -1.37, 1.61, 0.21 +200504, -2.61, -3.98, -0.35, 0.21 +200505, 3.65, 2.88, -0.81, 0.24 +200506, 0.57, 2.62, 2.63, 0.23 +200507, 3.92, 2.93, -0.52, 0.24 +200508, -1.22, -0.92, 1.27, 0.30 +200509, 0.49, -0.58, 0.77, 0.29 +200510, -2.02, -1.21, 0.22, 0.27 +200511, 3.61, 0.90, -1.19, 0.31 +200512, -0.25, -0.46, 0.44, 0.32 +200601, 3.04, 5.42, 1.13, 0.35 +200602, -0.30, -0.37, -0.25, 0.34 +200603, 1.46, 3.54, 0.60, 0.37 +200604, 0.73, -1.34, 2.61, 0.36 +200605, -3.57, -3.05, 2.54, 0.43 +200606, -0.35, -0.35, 0.87, 0.40 +200607, -0.78, -4.07, 2.94, 0.40 +200608, 2.03, 0.91, -1.71, 0.42 +200609, 1.84, -1.37, 0.04, 0.41 +200610, 3.23, 1.73, -0.03, 0.41 +200611, 1.71, 0.86, 0.07, 0.42 +200612, 0.87, -1.10, 3.16, 0.40 +200701, 1.40, 0.10, -0.11, 0.44 +200702, -1.96, 1.32, -0.09, 0.38 +200703, 0.68, -0.05, -0.22, 0.43 +200704, 3.49, -2.06, -1.15, 0.44 +200705, 3.24, 0.02, -0.04, 0.41 +200706, -1.96, 0.77, -1.12, 0.40 +200707, -3.73, -2.51, -3.33, 0.40 +200708, 0.92, -0.13, -2.24, 0.42 +200709, 3.22, -2.29, -1.86, 0.32 +200710, 1.80, 0.22, -2.59, 0.32 +200711, -4.83, -2.62, -1.18, 0.34 +200712, -0.87, 0.20, -0.51, 0.27 +200801, -6.36, -0.90, 3.65, 0.21 +200802, -3.09, -0.24, -0.94, 0.13 +200803, -0.93, 0.95, -0.14, 0.17 +200804, 4.60, -1.64, -0.95, 0.18 +200805, 1.86, 3.22, -1.38, 0.18 +200806, -8.44, 1.28, -2.41, 0.17 +200807, -0.77, 2.41, 5.93, 0.15 +200808, 1.53, 3.61, 1.55, 0.13 +200809, -9.24, -1.17, 6.32, 0.15 +200810, -17.23, -2.33, -2.88, 0.08 +200811, -7.86, -2.96, -6.03, 0.03 +200812, 1.74, 3.63, -0.28, 0.00 +200901, -8.12, 0.13, -11.23, 0.00 +200902, -10.10, 0.22, -7.30, 0.01 +200903, 8.95, -0.12, 3.64, 0.02 +200904, 10.19, 4.76, 5.53, 0.01 +200905, 5.21, -2.34, -0.21, 0.00 +200906, 0.43, 2.59, -2.66, 0.01 +200907, 7.72, 2.09, 5.31, 0.01 +200908, 3.33, -0.90, 7.76, 0.01 +200909, 4.08, 2.45, 0.91, 0.01 +200910, -2.59, -4.22, -4.17, 0.00 +200911, 5.56, -2.50, -0.19, 0.00 +200912, 2.75, 6.10, -0.01, 0.01 +201001, -3.36, 0.38, 0.31, 0.00 +201002, 3.40, 1.21, 3.13, 0.00 +201003, 6.31, 1.43, 2.13, 0.01 +201004, 2.00, 4.97, 2.82, 0.01 +201005, -7.89, 0.05, -2.39, 0.01 +201006, -5.56, -1.97, -4.48, 0.01 +201007, 6.93, 0.17, -0.26, 0.01 +201008, -4.77, -3.00, -1.96, 0.01 +201009, 9.54, 3.92, -3.13, 0.01 +201010, 3.88, 1.13, -2.61, 0.01 +201011, 0.60, 3.71, -0.90, 0.01 +201012, 6.82, 0.68, 3.81, 0.01 +201101, 1.99, -2.47, 0.81, 0.01 +201102, 3.49, 1.53, 1.09, 0.01 +201103, 0.45, 2.60, -1.58, 0.01 +201104, 2.90, -0.34, -2.52, 0.00 +201105, -1.27, -0.70, -2.07, 0.00 +201106, -1.75, -0.16, -0.31, 0.00 +201107, -2.36, -1.35, -1.21, 0.00 +201108, -5.99, -3.05, -2.45, 0.01 +201109, -7.59, -3.52, -1.39, 0.00 +201110, 11.35, 3.42, -0.18, 0.00 +201111, -0.28, -0.17, -0.34, 0.00 +201112, 0.74, -0.70, 1.78, 0.00 +201201, 5.05, 2.15, -1.14, 0.00 +201202, 4.42, -1.74, 0.09, 0.00 +201203, 3.11, -0.62, 0.91, 0.00 +201204, -0.85, -0.52, -0.49, 0.00 +201205, -6.19, 0.00, -0.58, 0.01 +201206, 3.89, 0.76, 0.44, 0.00 +201207, 0.79, -2.61, -0.26, 0.00 +201208, 2.55, 0.40, 1.28, 0.01 +201209, 2.73, 0.49, 1.52, 0.01 +201210, -1.76, -1.15, 3.79, 0.01 +201211, 0.78, 0.59, -0.98, 0.01 +201212, 1.18, 1.48, 3.58, 0.01 +201301, 5.57, 0.38, 0.91, 0.00 +201302, 1.29, -0.45, 0.01, 0.00 +201303, 4.03, 0.81, -0.28, 0.00 +201304, 1.55, -2.43, 0.59, 0.00 +201305, 2.80, 1.66, 2.56, 0.00 +201306, -1.20, 1.17, -0.17, 0.00 +201307, 5.65, 1.85, 0.55, 0.00 +201308, -2.71, 0.30, -2.76, 0.00 +201309, 3.77, 2.92, -1.20, 0.00 +201310, 4.18, -1.49, 1.10, 0.00 +201311, 3.12, 1.25, 0.27, 0.00 +201312, 2.81, -0.51, -0.30, 0.00 +201401, -3.32, 0.86, -2.10, 0.00 +201402, 4.65, 0.31, -0.46, 0.00 +201403, 0.43, -1.88, 5.06, 0.00 +201404, -0.19, -4.26, 1.07, 0.00 +201405, 2.06, -1.84, -0.19, 0.00 +201406, 2.61, 3.07, -0.76, 0.00 +201407, -2.04, -4.24, 0.01, 0.00 +201408, 4.24, 0.35, -0.58, 0.00 +201409, -1.97, -3.83, -1.23, 0.00 +201410, 2.52, 4.21, -1.68, 0.00 +201411, 2.55, -2.08, -2.99, 0.00 +201412, -0.06, 2.54, 2.06, 0.00 +201501, -3.11, -0.58, -3.47, 0.00 +201502, 6.13, 0.51, -1.83, 0.00 +201503, -1.12, 3.03, -0.46, 0.00 +201504, 0.59, -2.97, 1.85, 0.00 +201505, 1.36, 0.91, -1.36, 0.00 +201506, -1.53, 2.81, -0.79, 0.00 +201507, 1.54, -4.15, -4.14, 0.00 +201508, -6.04, 0.50, 2.66, 0.00 +201509, -3.08, -2.65, 0.53, 0.00 +201510, 7.75, -1.97, -0.06, 0.00 +201511, 0.56, 3.66, -0.50, 0.00 +201512, -2.17, -2.83, -2.60, 0.01 +201601, -5.77, -3.35, 2.08, 0.01 +201602, -0.07, 0.80, -0.49, 0.02 +201603, 6.96, 0.86, 1.15, 0.02 +201604, 0.92, 0.69, 3.26, 0.01 +201605, 1.78, -0.28, -1.82, 0.01 +201606, -0.05, 0.65, -1.46, 0.02 +201607, 3.95, 2.63, -1.09, 0.02 +201608, 0.50, 1.17, 3.37, 0.02 +201609, 0.25, 2.04, -1.47, 0.02 +201610, -2.02, -4.40, 4.14, 0.02 +201611, 4.86, 5.46, 8.32, 0.01 +201612, 1.81, 0.12, 3.60, 0.03 +201701, 1.94, -1.02, -2.77, 0.04 +201702, 3.57, -2.04, -1.82, 0.04 +201703, 0.17, 1.19, -3.17, 0.03 +201704, 1.09, 0.71, -1.87, 0.05 +201705, 1.06, -2.56, -3.81, 0.06 +201706, 0.78, 2.16, 1.35, 0.06 +201707, 1.87, -1.38, -0.26, 0.07 +201708, 0.16, -1.61, -2.22, 0.09 +201709, 2.51, 4.52, 3.02, 0.09 +201710, 2.25, -1.83, -0.08, 0.09 +201711, 3.12, -0.67, -0.04, 0.08 +201712, 1.06, -1.28, 0.11, 0.09 +201801, 5.58, -2.92, -1.55, 0.11 +201802, -3.65, 0.28, -1.09, 0.11 +201803, -2.35, 3.88, 0.00, 0.12 +201804, 0.29, 1.13, 0.56, 0.14 +201805, 2.65, 5.35, -3.21, 0.14 +201806, 0.48, 1.23, -2.40, 0.14 +201807, 3.19, -2.20, 0.47, 0.16 +201808, 3.44, 1.14, -4.13, 0.16 +201809, 0.06, -2.37, -1.32, 0.15 +201810, -7.68, -4.78, 3.47, 0.19 +201811, 1.69, -0.81, 0.27, 0.18 +201812, -9.55, -2.63, -1.49, 0.19 +201901, 8.41, 3.00, -0.60, 0.21 +201902, 3.40, 2.07, -2.83, 0.18 +201903, 1.10, -3.16, -4.04, 0.19 +201904, 3.96, -1.70, 1.96, 0.21 +201905, -6.94, -1.23, -2.35, 0.21 +201906, 6.93, 0.33, -1.08, 0.18 +201907, 1.19, -2.05, 0.17, 0.19 +201908, -2.58, -2.42, -5.05, 0.16 +201909, 1.43, -0.96, 6.81, 0.18 +201910, 2.06, 0.26, -2.04, 0.15 +201911, 3.87, 0.87, -1.80, 0.12 +201912, 2.77, 0.68, 1.93, 0.14 +202001, -0.11, -3.10, -6.37, 0.13 +202002, -8.13, 0.98, -4.05, 0.12 +202003, -13.39, -5.15, -14.17, 0.12 +202004, 13.65, 2.76, -1.18, 0.00 +202005, 5.58, 2.46, -4.92, 0.01 +202006, 2.45, 2.68, -2.19, 0.01 +202007, 5.77, -2.31, -1.27, 0.01 + + Annual Factors: January-December +,Mkt-RF,SMB,HML,RF + 1927, 29.47, -2.46, -3.75, 3.12 + 1928, 35.39, 4.41, -5.83, 3.56 + 1929, -19.54, -30.78, 11.96, 4.75 + 1930, -31.23, -5.19, -12.29, 2.41 + 1931, -45.11, 3.51, -14.32, 1.07 + 1932, -9.39, 4.91, 10.49, 0.96 + 1933, 57.05, 48.86, 28.15, 0.30 + 1934, 3.02, 25.43, -27.38, 0.16 + 1935, 44.96, 9.99, 9.78, 0.17 + 1936, 32.07, 17.89, 35.86, 0.18 + 1937, -34.96, -14.00, -3.97, 0.31 + 1938, 28.48, 9.35, -12.18, -0.02 + 1939, 2.70, 5.85, -19.17, 0.02 + 1940, -7.14, 0.79, -0.82, 0.00 + 1941, -10.53, -4.04, 11.13, 0.06 + 1942, 16.20, 5.05, 19.87, 0.27 + 1943, 27.96, 33.35, 38.97, 0.35 + 1944, 20.97, 17.98, 15.61, 0.33 + 1945, 38.38, 25.56, 11.40, 0.33 + 1946, -6.73, -3.79, 2.98, 0.35 + 1947, 2.95, -7.08, 9.76, 0.50 + 1948, 1.07, -9.14, 3.52, 0.81 + 1949, 19.12, 3.93, -4.55, 1.10 + 1950, 28.82, 0.93, 27.01, 1.20 + 1951, 19.22, -4.93, -5.93, 1.49 + 1952, 11.80, -6.66, 3.34, 1.66 + 1953, -1.05, -1.16, -7.71, 1.82 + 1954, 49.35, -2.18, 26.21, 0.86 + 1955, 23.75, -6.71, 5.77, 1.57 + 1956, 5.90, -1.17, -1.60, 2.46 + 1957, -13.16, -2.72, -6.39, 3.14 + 1958, 43.45, 14.81, 13.16, 1.54 + 1959, 9.76, 5.43, 1.86, 2.95 + 1960, -1.46, -2.76, -4.87, 2.66 + 1961, 24.81, 1.49, 5.19, 2.13 + 1962, -12.90, -8.25, 8.80, 2.73 + 1963, 17.84, -5.88, 15.66, 3.12 + 1964, 12.54, -0.99, 9.86, 3.54 + 1965, 10.52, 21.80, 7.36, 3.93 + 1966, -13.51, 2.59, -0.68, 4.76 + 1967, 24.49, 50.69, -8.58, 4.21 + 1968, 8.79, 24.50, 18.49, 5.21 + 1969, -17.54, -13.98, -9.81, 6.58 + 1970, -6.49, -11.79, 22.34, 6.52 + 1971, 11.78, 5.62, -11.29, 4.39 + 1972, 13.05, -11.95, 1.75, 3.84 + 1973, -26.19, -23.44, 18.08, 6.93 + 1974, -35.75, -0.60, 9.67, 8.00 + 1975, 32.44, 15.28, 9.49, 5.80 + 1976, 21.91, 14.69, 24.50, 5.08 + 1977, -8.26, 22.95, 7.51, 5.12 + 1978, 1.03, 14.38, 0.37, 7.18 + 1979, 13.09, 21.12, -2.12, 10.38 + 1980, 22.13, 5.57, -25.06, 11.24 + 1981, -18.13, 7.23, 25.01, 14.71 + 1982, 10.66, 8.89, 13.59, 10.54 + 1983, 13.74, 13.67, 20.85, 8.80 + 1984, -6.05, -8.31, 19.63, 9.85 + 1985, 24.91, 0.12, 1.35, 7.72 + 1986, 10.12, -9.60, 9.58, 6.16 + 1987, -3.87, -11.00, -1.64, 5.47 + 1988, 11.55, 5.90, 14.77, 6.35 + 1989, 20.49, -12.72, -4.29, 8.37 + 1990, -13.95, -14.18, -9.72, 7.81 + 1991, 29.18, 16.13, -14.41, 5.60 + 1992, 6.23, 7.58, 24.28, 3.51 + 1993, 8.21, 5.80, 18.91, 2.90 + 1994, -4.10, -1.06, -0.69, 3.90 + 1995, 31.22, -9.09, 5.30, 5.60 + 1996, 15.96, -3.71, 6.16, 5.21 + 1997, 25.96, -6.76, 17.46, 5.26 + 1998, 19.46, -26.02, -8.89, 4.86 + 1999, 20.57, 14.85, -31.77, 4.68 + 2000, -17.60, -1.51, 39.69, 5.89 + 2001, -15.20, 18.09, 19.52, 3.83 + 2002, -22.76, 4.72, 7.47, 1.65 + 2003, 30.75, 26.18, 5.40, 1.02 + 2004, 10.72, 4.85, 8.08, 1.20 + 2005, 3.09, -1.93, 8.33, 2.98 + 2006, 10.60, 0.24, 14.11, 4.80 + 2007, 1.04, -7.14, -14.65, 4.66 + 2008, -38.34, 3.18, 0.82, 1.60 + 2009, 28.26, 9.39, -9.17, 0.10 + 2010, 17.37, 13.77, -5.31, 0.12 + 2011, 0.44, -6.04, -8.35, 0.04 + 2012, 16.28, -1.28, 9.68, 0.06 + 2013, 35.20, 7.18, 1.33, 0.02 + 2014, 11.70, -8.11, -1.74, 0.02 + 2015, 0.07, -4.03, -9.65, 0.02 + 2016, 13.30, 6.65, 23.02, 0.20 + 2017, 21.50, -4.68, -13.98, 0.80 + 2018, -6.93, -3.40, -9.16, 1.81 + 2019, 28.28, -6.09, -11.67, 2.14 + +Copyright 2020 Kenneth R. French diff --git a/Data/F-F_Research_Data_Factors_daily.CSV b/Data/F-F_Research_Data_Factors_daily.CSV new file mode 100644 index 0000000..f502001 --- /dev/null +++ b/Data/F-F_Research_Data_Factors_daily.CSV @@ -0,0 +1,24797 @@ +This file was created by CMPT_ME_BEME_RETS_DAILY using the 202007 CRSP database. +The Tbill return is the simple daily rate that, over the number of trading days +in the month, compounds to 1-month TBill rate from Ibbotson and Associates Inc. + +,Mkt-RF,SMB,HML,RF +19260701, 0.10, -0.24, -0.28, 0.009 +19260702, 0.45, -0.32, -0.08, 0.009 +19260706, 0.17, 0.27, -0.35, 0.009 +19260707, 0.09, -0.59, 0.03, 0.009 +19260708, 0.21, -0.36, 0.15, 0.009 +19260709, -0.71, 0.44, 0.56, 0.009 +19260710, 0.62, -0.50, -0.15, 0.009 +19260712, 0.04, 0.03, 0.54, 0.009 +19260713, 0.48, -0.26, -0.23, 0.009 +19260714, 0.04, 0.09, -0.48, 0.009 +19260715, -0.43, 0.54, -0.30, 0.009 +19260716, 0.53, 0.01, -0.57, 0.009 +19260717, 0.34, 0.43, -0.63, 0.009 +19260719, -0.01, 0.01, -0.49, 0.009 +19260720, -0.57, -0.23, 0.16, 0.009 +19260721, -0.60, 0.21, 0.31, 0.009 +19260722, -0.73, -0.30, -0.17, 0.009 +19260723, -0.02, 0.08, 0.06, 0.009 +19260724, -0.14, 0.44, -0.06, 0.009 +19260726, 0.53, -0.38, -0.25, 0.009 +19260727, 0.43, -0.45, 0.26, 0.009 +19260728, 1.09, 0.04, -0.28, 0.009 +19260729, 0.36, -0.61, -1.01, 0.009 +19260730, 0.14, -0.47, 0.55, 0.009 +19260731, 0.46, -0.12, -0.17, 0.009 +19260802, 0.84, -0.22, -0.03, 0.010 +19260803, 0.47, -0.27, -0.60, 0.010 +19260804, -0.36, 0.16, 0.25, 0.010 +19260805, -0.09, 0.01, 0.73, 0.010 +19260806, 0.68, 0.08, 0.16, 0.010 +19260807, 0.46, 0.08, -0.24, 0.010 +19260809, 0.21, -0.04, -0.26, 0.010 +19260810, -1.40, 0.34, 0.21, 0.010 +19260811, -0.57, 0.21, 0.34, 0.010 +19260812, 0.84, -0.77, 0.42, 0.010 +19260813, 0.58, -0.85, 0.25, 0.010 +19260814, 0.69, 0.15, -0.36, 0.010 +19260816, 0.07, 0.23, 0.70, 0.010 +19260817, -0.95, 0.34, 0.16, 0.010 +19260818, 0.26, 0.08, 0.04, 0.010 +19260819, -0.60, 0.12, 0.10, 0.010 +19260820, -0.20, -0.36, 0.42, 0.010 +19260821, 0.32, -0.06, 0.49, 0.010 +19260823, 0.49, -0.48, 0.62, 0.010 +19260824, -0.84, 0.50, -0.09, 0.010 +19260825, -0.32, -0.43, 0.28, 0.010 +19260826, 0.53, 0.09, 0.50, 0.010 +19260827, 0.35, 0.13, -0.39, 0.010 +19260828, 0.34, 0.15, -0.06, 0.010 +19260830, 0.30, 0.00, 0.42, 0.010 +19260831, 0.58, -0.52, -0.04, 0.010 +19260901, 0.55, 0.52, -0.08, 0.009 +19260902, -0.06, -0.07, 0.21, 0.009 +19260903, 0.50, -0.30, 0.03, 0.009 +19260907, 0.59, -0.25, -0.24, 0.009 +19260908, -0.51, -0.10, 0.08, 0.009 +19260909, -0.07, 0.16, 0.26, 0.009 +19260910, -0.83, 0.09, -0.13, 0.009 +19260911, -0.44, 0.32, 0.13, 0.009 +19260913, -0.03, -0.11, 0.50, 0.009 +19260914, 0.90, -0.62, 0.09, 0.009 +19260915, -0.21, 0.40, -0.19, 0.009 +19260916, -0.18, -0.33, 0.10, 0.009 +19260917, -1.01, -0.16, -0.28, 0.009 +19260918, 0.70, -0.28, -0.11, 0.009 +19260920, -0.64, 0.03, -0.01, 0.009 +19260921, 0.30, -0.42, 0.19, 0.009 +19260922, -0.13, 0.05, -0.01, 0.009 +19260923, 0.26, -0.16, 0.06, 0.009 +19260924, 0.62, -0.19, -0.03, 0.009 +19260925, 0.21, 0.02, -0.56, 0.009 +19260927, -0.12, 0.14, 0.39, 0.009 +19260928, 0.00, -0.02, -0.35, 0.009 +19260929, -0.30, 0.22, -0.19, 0.009 +19260930, 0.30, -0.22, 0.06, 0.009 +19261001, 0.73, -0.27, -0.23, 0.013 +19261002, -0.10, -0.02, -0.08, 0.013 +19261004, -1.40, -0.10, -0.10, 0.013 +19261005, -1.10, 0.44, -0.72, 0.013 +19261006, -0.56, -0.69, -0.28, 0.013 +19261007, -0.77, 0.32, 0.30, 0.013 +19261008, 0.59, -0.36, 0.58, 0.013 +19261009, -0.96, 0.44, -0.05, 0.013 +19261011, -0.69, -0.08, -0.16, 0.013 +19261013, 0.69, -0.31, -0.04, 0.013 +19261014, 0.97, -0.47, 1.08, 0.013 +19261015, -1.83, 0.13, -0.29, 0.013 +19261016, -0.73, -0.34, 0.42, 0.013 +19261018, 0.70, -0.16, 0.46, 0.013 +19261019, -1.06, 0.40, -0.54, 0.013 +19261020, -0.25, -0.59, -1.17, 0.013 +19261021, 1.53, -0.12, 0.55, 0.013 +19261022, -0.40, 0.44, 0.20, 0.013 +19261023, 0.54, 0.50, 0.19, 0.013 +19261025, -0.10, 0.35, -0.03, 0.013 +19261026, 0.32, 0.02, 0.30, 0.013 +19261027, 1.00, -0.47, 0.19, 0.013 +19261028, -0.08, 0.69, 0.20, 0.013 +19261029, -0.06, 0.01, -0.33, 0.013 +19261030, -0.25, 0.20, 0.25, 0.013 +19261101, 0.46, -0.11, -0.43, 0.013 +19261103, 0.20, -0.24, -0.28, 0.013 +19261104, 0.59, -0.15, 0.69, 0.013 +19261105, 0.07, -0.09, 0.23, 0.013 +19261106, 0.16, -0.29, 0.05, 0.013 +19261108, 0.52, -0.07, 0.08, 0.013 +19261109, 0.13, 0.29, -0.49, 0.013 +19261110, -0.60, 0.15, 0.09, 0.013 +19261111, 0.67, 0.03, 0.09, 0.013 +19261112, 0.24, -0.03, -0.37, 0.013 +19261113, -0.24, 0.12, -0.16, 0.013 +19261115, 0.37, 0.28, -0.25, 0.013 +19261116, 0.15, -0.31, -0.06, 0.013 +19261117, -0.35, -0.35, 0.46, 0.013 +19261118, -0.48, 0.17, 0.20, 0.013 +19261119, -0.64, 0.56, 0.07, 0.013 +19261120, 0.40, 0.01, 0.12, 0.013 +19261122, 0.57, 0.16, -0.20, 0.013 +19261123, 0.33, 0.02, 0.20, 0.013 +19261124, 0.08, -0.22, 0.20, 0.013 +19261126, 0.20, -0.02, 0.03, 0.013 +19261127, -0.15, -0.04, -0.28, 0.013 +19261129, -0.37, -0.13, 0.06, 0.013 +19261130, 0.26, 0.03, -0.50, 0.013 +19261201, 0.36, 0.05, -0.34, 0.011 +19261202, 0.51, -0.01, 0.10, 0.011 +19261203, 0.32, -0.05, 0.06, 0.011 +19261204, -0.17, 0.20, 0.10, 0.011 +19261206, 0.04, 0.32, -0.37, 0.011 +19261207, -0.04, 0.34, -0.51, 0.011 +19261208, -0.08, 0.21, 0.25, 0.011 +19261209, 0.45, -0.15, 0.44, 0.011 +19261210, 0.35, -0.17, 0.50, 0.011 +19261211, 0.09, -0.10, -0.50, 0.011 +19261213, 0.42, 0.64, 0.00, 0.011 +19261214, 0.10, -0.09, 0.14, 0.011 +19261215, 0.17, -0.22, 0.22, 0.011 +19261216, -0.63, -0.20, 0.05, 0.011 +19261217, 0.91, -0.75, 0.68, 0.011 +19261218, 0.42, -0.22, 0.20, 0.011 +19261220, -0.31, 0.08, -0.13, 0.011 +19261221, -0.03, -0.38, -0.19, 0.011 +19261222, 0.02, -0.19, -0.53, 0.011 +19261223, 0.28, 0.01, -0.47, 0.011 +19261224, 0.31, 0.21, 0.26, 0.011 +19261227, -0.22, -0.14, -0.40, 0.011 +19261228, -1.07, -0.07, -0.16, 0.011 +19261229, 0.44, -0.16, -0.06, 0.011 +19261230, -0.35, 0.44, 0.10, 0.011 +19261231, 0.33, 0.30, 0.67, 0.011 +19270103, -0.79, 0.19, 0.09, 0.010 +19270104, 0.31, 0.15, -0.67, 0.010 +19270105, 0.14, 0.43, -0.31, 0.010 +19270106, -0.17, 0.00, 0.07, 0.010 +19270107, 0.30, -0.25, 0.44, 0.010 +19270108, 0.39, -0.18, 0.27, 0.010 +19270110, 0.14, 0.02, 0.16, 0.010 +19270111, -0.28, -0.36, 0.87, 0.010 +19270112, 0.07, -0.06, 0.02, 0.010 +19270113, -0.04, 0.20, -0.30, 0.010 +19270114, 0.05, -0.85, 0.92, 0.010 +19270115, 0.13, 0.10, 0.83, 0.010 +19270117, -0.04, -0.18, 0.77, 0.010 +19270118, -0.06, -0.22, 0.01, 0.010 +19270119, 0.61, -0.01, -0.77, 0.010 +19270120, -0.17, -0.30, 0.13, 0.010 +19270121, -0.01, 0.60, 1.29, 0.010 +19270122, -0.36, 0.26, 0.34, 0.010 +19270124, -0.48, 0.47, 1.44, 0.010 +19270125, -1.07, -0.47, -1.29, 0.010 +19270126, 0.19, 0.12, 0.48, 0.010 +19270127, -0.35, 0.00, -0.42, 0.010 +19270128, 0.16, 0.16, 0.76, 0.010 +19270129, 0.73, -0.41, -0.29, 0.010 +19270131, 0.61, 0.12, -0.04, 0.010 +19270201, -0.01, 0.53, 1.11, 0.012 +19270202, 0.70, -0.21, 0.10, 0.012 +19270203, 0.17, 0.21, -0.07, 0.012 +19270204, 0.37, 0.12, 1.38, 0.012 +19270205, -0.18, 0.31, 0.45, 0.012 +19270207, -0.13, 0.64, 0.47, 0.012 +19270208, 0.10, 0.19, 1.03, 0.012 +19270209, 0.04, -0.88, -0.57, 0.012 +19270210, 0.08, 0.28, -0.69, 0.012 +19270211, 0.31, -0.44, -0.63, 0.012 +19270214, 0.49, -0.14, -0.29, 0.012 +19270215, 0.10, -0.27, -0.16, 0.012 +19270216, -0.02, 0.01, 1.55, 0.012 +19270217, 0.24, 0.07, 0.86, 0.012 +19270218, 0.32, -0.73, -0.12, 0.012 +19270219, 0.01, 0.38, -0.48, 0.012 +19270221, -0.17, 0.19, -0.90, 0.012 +19270223, 0.72, -0.33, -0.13, 0.012 +19270224, 0.14, 0.35, 0.09, 0.012 +19270225, 0.21, 0.24, -0.33, 0.012 +19270226, 0.07, -0.19, -0.05, 0.012 +19270228, 0.55, -0.38, 0.24, 0.012 +19270301, -0.40, -0.03, -0.55, 0.011 +19270302, -1.14, -0.14, -0.33, 0.011 +19270303, 1.02, -0.05, 0.05, 0.011 +19270304, -0.45, 0.22, -0.16, 0.011 +19270305, -0.24, 0.60, -0.46, 0.011 +19270307, -0.37, -0.10, -0.58, 0.011 +19270308, 0.12, -0.53, -0.34, 0.011 +19270309, 0.49, 0.17, 0.34, 0.011 +19270310, 0.46, 0.10, 0.46, 0.011 +19270311, 0.17, -0.25, 0.24, 0.011 +19270312, -0.04, -0.06, -0.19, 0.011 +19270314, 0.18, 0.04, -0.78, 0.011 +19270315, -0.81, -0.10, -0.44, 0.011 +19270316, 1.02, -0.50, -0.06, 0.011 +19270317, 0.42, -0.31, -0.41, 0.011 +19270318, -0.79, 0.11, -0.42, 0.011 +19270319, 0.04, 0.01, -0.21, 0.011 +19270321, 0.17, -0.54, 0.05, 0.011 +19270322, -1.06, 0.17, -0.54, 0.011 +19270323, 0.19, 0.01, 0.51, 0.011 +19270324, 0.68, -0.04, 0.06, 0.011 +19270325, 0.16, 0.45, -0.33, 0.011 +19270326, 0.34, 0.14, 0.18, 0.011 +19270328, 0.52, -0.24, 0.07, 0.011 +19270329, -0.23, -0.09, -0.41, 0.011 +19270330, -0.62, 0.11, 1.25, 0.011 +19270331, 0.30, -0.85, 0.55, 0.011 +19270401, -0.05, -0.19, -0.31, 0.010 +19270402, -0.08, 0.19, 0.02, 0.010 +19270404, 0.53, -0.21, 1.12, 0.010 +19270405, 0.59, -0.30, 0.01, 0.010 +19270406, 0.11, -0.10, -0.04, 0.010 +19270407, 0.24, -0.35, 0.33, 0.010 +19270408, 0.31, 0.35, -0.05, 0.010 +19270409, 0.03, -0.13, 0.29, 0.010 +19270411, 0.19, 0.00, -0.15, 0.010 +19270412, -0.29, 0.57, -0.12, 0.010 +19270413, 0.21, 0.13, -1.14, 0.010 +19270414, 0.09, 0.37, -0.20, 0.010 +19270416, 0.18, 0.55, 0.18, 0.010 +19270418, -0.03, -0.17, 0.75, 0.010 +19270419, 0.18, -0.08, 0.32, 0.010 +19270420, 0.27, -0.37, 0.94, 0.010 +19270421, 0.36, -0.25, -0.76, 0.010 +19270422, 0.07, -0.34, 0.04, 0.010 +19270423, -0.37, 0.24, 0.00, 0.010 +19270425, -1.56, 0.08, 0.10, 0.010 +19270426, 0.58, 0.04, -0.43, 0.010 +19270427, -0.38, 0.07, 0.20, 0.010 +19270428, -1.11, 0.19, -0.35, 0.010 +19270429, 0.48, 0.00, -0.18, 0.010 +19270430, -0.01, 0.21, -0.07, 0.010 +19270502, 0.27, 0.22, 0.48, 0.012 +19270503, 0.74, 0.02, -0.64, 0.012 +19270504, 0.78, -0.16, 0.15, 0.012 +19270505, 0.30, 0.30, -0.28, 0.012 +19270506, 0.28, -0.13, 0.87, 0.012 +19270507, 0.28, 0.26, -0.45, 0.012 +19270509, 0.20, 0.08, 0.39, 0.012 +19270510, -0.07, -0.12, 0.13, 0.012 +19270511, -0.14, -0.03, 0.04, 0.012 +19270512, -0.11, -0.33, 0.37, 0.012 +19270513, 0.49, -0.11, -0.24, 0.012 +19270514, 0.02, 0.29, 0.04, 0.012 +19270516, -0.72, 0.54, -0.20, 0.012 +19270517, 0.47, 0.08, 0.21, 0.012 +19270518, 0.51, -0.60, 0.08, 0.012 +19270519, 0.19, -0.41, -0.15, 0.012 +19270520, 0.43, -0.53, 0.32, 0.012 +19270521, 0.22, 0.16, 0.12, 0.012 +19270523, 0.15, 0.48, 0.76, 0.012 +19270524, -0.14, 0.27, 0.82, 0.012 +19270525, 0.16, 0.69, 0.47, 0.012 +19270526, 0.11, -0.08, 0.56, 0.012 +19270527, 0.44, 0.36, -0.03, 0.012 +19270528, 0.12, 0.69, 0.42, 0.012 +19270531, 0.25, -0.63, 0.41, 0.012 +19270601, 0.32, -0.07, 0.24, 0.010 +19270602, 0.08, -0.09, 0.26, 0.010 +19270603, -0.88, 0.19, -0.66, 0.010 +19270604, 0.43, 0.12, 0.20, 0.010 +19270606, 0.51, 0.19, 1.20, 0.010 +19270607, -0.29, 0.57, -0.22, 0.010 +19270608, 0.28, -0.14, 0.44, 0.010 +19270609, 0.02, 0.17, -0.74, 0.010 +19270610, -0.38, 0.14, -0.37, 0.010 +19270611, -0.11, -0.28, -0.21, 0.010 +19270614, -1.51, 0.02, -0.68, 0.010 +19270615, 0.88, 0.10, 0.23, 0.010 +19270616, 0.62, -0.36, -0.19, 0.010 +19270617, 0.16, 0.63, 1.02, 0.010 +19270618, -0.12, 0.17, 0.58, 0.010 +19270620, -0.18, 0.45, -0.59, 0.010 +19270621, -0.35, -0.31, 0.45, 0.010 +19270622, -0.01, 0.02, -0.58, 0.010 +19270623, -0.86, -0.47, -0.78, 0.010 +19270624, 0.13, -0.05, 0.30, 0.010 +19270625, -0.10, -0.09, 0.09, 0.010 +19270627, -1.22, -0.55, -0.64, 0.010 +19270628, 0.26, -0.03, -0.17, 0.010 +19270629, 0.03, 0.12, -0.50, 0.010 +19270630, -0.09, -0.06, -0.18, 0.010 +19270701, 0.65, 0.03, -0.11, 0.012 +19270702, 0.55, 0.27, 0.17, 0.012 +19270705, 0.84, -0.41, 0.14, 0.012 +19270706, 0.60, 0.23, -0.07, 0.012 +19270707, -0.25, 0.14, -0.03, 0.012 +19270708, -0.18, -0.41, 0.13, 0.012 +19270709, 0.17, 0.19, -0.10, 0.012 +19270711, 0.40, -0.50, 0.28, 0.012 +19270712, 0.33, -0.42, 0.53, 0.012 +19270713, 0.27, 0.20, -0.16, 0.012 +19270714, 0.42, -0.05, -0.79, 0.012 +19270715, 0.26, 0.00, -0.35, 0.012 +19270716, 0.16, 0.12, 0.18, 0.012 +19270718, 0.18, -0.15, 0.04, 0.012 +19270719, 0.26, -0.17, 0.40, 0.012 +19270720, 0.44, 0.12, -0.75, 0.012 +19270721, -0.04, 0.12, -0.52, 0.012 +19270722, -0.05, -0.08, -0.26, 0.012 +19270723, 0.17, 0.17, 0.16, 0.012 +19270725, 0.41, -0.37, 0.07, 0.012 +19270726, 0.25, -0.25, -0.21, 0.012 +19270727, 0.07, -0.53, -0.04, 0.012 +19270728, 0.14, -0.25, -0.24, 0.012 +19270729, 0.47, -0.27, 0.23, 0.012 +19270730, 0.47, -0.78, 0.24, 0.012 +19270801, 0.54, -0.23, 0.10, 0.010 +19270802, 0.62, -0.40, -0.29, 0.010 +19270803, -0.65, 0.44, -0.46, 0.010 +19270804, 0.93, -0.31, 0.12, 0.010 +19270805, -0.59, 0.30, -0.39, 0.010 +19270806, -0.11, 0.10, -0.36, 0.010 +19270808, -1.08, 0.63, -0.55, 0.010 +19270809, 0.94, -0.14, 0.44, 0.010 +19270810, 0.24, -0.11, -0.25, 0.010 +19270811, -1.02, -0.39, -0.19, 0.010 +19270812, -1.57, -0.40, -0.94, 0.010 +19270813, 0.89, -0.24, 0.14, 0.010 +19270815, 1.26, -0.03, 0.88, 0.010 +19270816, 0.62, 0.03, 0.09, 0.010 +19270817, 0.31, 0.50, -0.13, 0.010 +19270818, 0.03, -0.25, 0.04, 0.010 +19270819, 0.15, 0.22, -0.31, 0.010 +19270820, 0.35, 0.03, -0.34, 0.010 +19270822, 0.35, -0.18, 0.14, 0.010 +19270823, 0.05, -0.02, 0.11, 0.010 +19270824, 0.20, 0.04, -0.26, 0.010 +19270825, 0.02, -0.16, -0.77, 0.010 +19270826, 0.22, -0.27, -0.06, 0.010 +19270827, -0.11, 0.31, -0.13, 0.010 +19270829, -0.03, 0.02, 0.33, 0.010 +19270830, -0.03, -0.29, -0.72, 0.010 +19270831, -0.49, 0.05, 0.17, 0.010 +19270901, 0.80, -0.12, -0.37, 0.008 +19270902, 0.58, 0.03, 0.20, 0.008 +19270903, 0.50, -0.14, -0.32, 0.008 +19270906, 0.91, -0.65, 0.26, 0.008 +19270907, 0.45, -0.35, 0.24, 0.008 +19270908, 0.01, -0.10, 0.17, 0.008 +19270909, -0.63, -0.01, -0.58, 0.008 +19270910, 0.43, -0.07, 0.22, 0.008 +19270912, -0.36, 0.40, -0.34, 0.008 +19270913, 1.29, -0.77, -0.21, 0.008 +19270914, 0.31, -0.19, -0.22, 0.008 +19270915, 0.24, -0.18, -0.02, 0.008 +19270916, 0.08, -0.35, 0.10, 0.008 +19270917, -0.29, 0.23, -0.21, 0.008 +19270919, -0.32, -0.32, -0.04, 0.008 +19270920, 0.55, 0.09, 0.40, 0.008 +19270921, -0.15, 0.21, -0.02, 0.008 +19270922, -1.16, 0.09, -0.44, 0.008 +19270923, 0.52, -0.06, 0.12, 0.008 +19270924, 0.65, -0.33, -0.17, 0.008 +19270926, -0.91, 0.12, 0.03, 0.008 +19270927, 0.22, -0.50, 0.05, 0.008 +19270928, -0.38, -0.05, 0.46, 0.008 +19270929, 0.17, -0.10, -0.01, 0.008 +19270930, 1.25, -0.32, 0.04, 0.008 +19271001, 0.49, -0.06, 0.24, 0.010 +19271003, 0.26, -0.22, 0.55, 0.010 +19271004, -0.40, 0.32, -1.30, 0.010 +19271005, -0.29, 0.01, -0.17, 0.010 +19271006, 0.24, -0.07, 0.56, 0.010 +19271007, -0.74, 0.50, -0.74, 0.010 +19271008, -0.32, -0.12, 0.20, 0.010 +19271010, -0.51, -0.29, -0.39, 0.010 +19271011, 0.04, 0.25, -0.08, 0.010 +19271013, 0.69, 0.02, -0.89, 0.010 +19271014, -0.01, 0.65, 0.04, 0.010 +19271015, 0.02, 0.40, 0.10, 0.010 +19271017, -1.26, 0.03, -0.28, 0.010 +19271018, 0.34, -0.55, -0.09, 0.010 +19271019, -0.81, 0.20, 0.44, 0.010 +19271020, -1.02, -0.10, 0.25, 0.010 +19271021, -0.76, 0.82, -0.80, 0.010 +19271022, -0.69, 0.00, 0.29, 0.010 +19271024, 0.37, -0.10, -0.43, 0.010 +19271025, 1.60, -0.19, -0.75, 0.010 +19271026, 0.05, 0.68, 0.08, 0.010 +19271027, -0.41, 0.35, -0.16, 0.010 +19271028, -1.45, 0.21, -0.98, 0.010 +19271029, -0.50, -0.56, 0.02, 0.010 +19271031, 0.76, -0.06, -0.32, 0.010 +19271101, -0.01, 0.10, 0.15, 0.009 +19271102, 1.00, -0.52, -0.18, 0.009 +19271103, 1.12, -0.38, 0.29, 0.009 +19271104, -0.03, 0.22, 0.10, 0.009 +19271105, 0.55, 0.03, -0.02, 0.009 +19271107, 0.69, 0.35, -0.29, 0.009 +19271109, -0.78, 0.37, -0.43, 0.009 +19271110, 0.24, 0.01, -0.40, 0.009 +19271111, 0.87, -0.34, -0.31, 0.009 +19271112, 0.34, 0.16, -0.17, 0.009 +19271114, 0.51, 0.34, 0.08, 0.009 +19271115, 0.11, -0.15, 0.70, 0.009 +19271116, -0.04, 0.41, 0.12, 0.009 +19271117, 0.16, 0.31, -0.06, 0.009 +19271118, 0.61, 0.13, -0.07, 0.009 +19271119, 0.27, 0.40, -0.01, 0.009 +19271121, -0.52, 0.13, 0.41, 0.009 +19271122, 0.37, -0.11, -0.14, 0.009 +19271123, 0.28, 0.18, 0.08, 0.009 +19271125, 0.24, 0.14, 0.44, 0.009 +19271126, -0.01, 0.54, -0.02, 0.009 +19271128, -0.76, 0.14, 0.06, 0.009 +19271129, 0.65, 0.35, -0.22, 0.009 +19271130, 0.48, -0.14, -0.24, 0.009 +19271201, -0.48, -0.22, 0.05, 0.009 +19271202, 0.26, -0.57, 0.96, 0.009 +19271203, 0.36, -0.24, 0.22, 0.009 +19271205, -0.40, 0.35, 0.14, 0.009 +19271206, -0.03, 0.32, -0.24, 0.009 +19271207, -0.50, -0.12, -0.52, 0.009 +19271208, -0.86, 0.27, -0.15, 0.009 +19271209, 1.13, 0.00, -0.05, 0.009 +19271210, 0.06, 0.48, -0.20, 0.009 +19271212, 0.58, 0.79, -0.58, 0.009 +19271213, 0.38, -0.27, -0.32, 0.009 +19271214, -0.37, 0.04, -0.03, 0.009 +19271215, 0.52, 0.20, 0.21, 0.009 +19271216, 0.66, -0.26, -0.38, 0.009 +19271217, 0.05, -0.15, 0.65, 0.009 +19271219, 0.32, 0.20, -0.33, 0.009 +19271220, 0.01, -0.27, 0.21, 0.009 +19271221, -0.07, -0.09, 0.25, 0.009 +19271222, -0.06, -0.49, 0.20, 0.009 +19271223, 0.20, -0.32, 0.09, 0.009 +19271224, 0.14, -0.02, 0.41, 0.009 +19271227, 0.01, 0.24, -0.28, 0.009 +19271228, -0.57, 0.25, -0.20, 0.009 +19271229, 0.15, -0.10, -1.09, 0.009 +19271230, 0.43, 0.71, -0.03, 0.009 +19271231, 0.32, 0.19, 0.00, 0.009 +19280103, 0.45, 0.84, -0.13, 0.010 +19280104, -0.14, 0.50, -0.02, 0.010 +19280105, -0.73, -0.10, 0.26, 0.010 +19280106, 0.62, 0.54, 0.05, 0.010 +19280107, 0.11, -0.01, 0.29, 0.010 +19280109, -0.89, 0.12, -0.04, 0.010 +19280110, -0.83, -0.47, 0.11, 0.010 +19280111, 0.12, 0.35, 0.33, 0.010 +19280112, 0.50, 0.20, -0.11, 0.010 +19280113, 0.61, 0.26, 0.14, 0.010 +19280114, -0.67, 0.04, -0.03, 0.010 +19280116, -0.89, -0.50, -0.37, 0.010 +19280117, 0.17, 0.31, 0.42, 0.010 +19280118, -0.31, -0.32, -0.16, 0.010 +19280119, 0.57, 0.24, -0.12, 0.010 +19280120, 0.57, 0.13, -0.05, 0.010 +19280121, 0.21, 0.42, -0.39, 0.010 +19280123, 0.61, 0.18, -0.10, 0.010 +19280124, 0.27, 0.46, -0.33, 0.010 +19280125, -1.04, -0.29, -0.37, 0.010 +19280126, 0.52, 0.76, -0.19, 0.010 +19280127, 0.27, -0.09, -0.13, 0.010 +19280128, -0.50, 0.46, 0.16, 0.010 +19280130, -0.42, -0.39, -0.29, 0.010 +19280131, 0.32, 0.59, 0.34, 0.010 +19280201, -0.25, 0.55, -0.68, 0.014 +19280202, 0.44, 0.13, 0.19, 0.014 +19280203, -1.14, -0.47, -0.43, 0.014 +19280204, 0.05, -0.44, 0.16, 0.014 +19280206, 0.20, 0.32, 0.07, 0.014 +19280207, -0.28, -0.24, -0.70, 0.014 +19280208, 0.08, -0.04, -0.17, 0.014 +19280209, 0.46, -0.10, -0.14, 0.014 +19280210, -0.09, -0.47, -0.15, 0.014 +19280211, -0.02, 0.11, 0.52, 0.014 +19280214, -0.38, 0.56, -0.40, 0.014 +19280215, -0.28, -0.52, -0.05, 0.014 +19280216, -0.32, -0.62, 0.07, 0.014 +19280217, -1.66, -0.69, -0.57, 0.014 +19280218, -0.47, -0.61, 0.14, 0.014 +19280220, -0.16, 0.17, 0.29, 0.014 +19280221, 1.06, 0.41, 0.23, 0.014 +19280223, 0.23, 0.06, -0.10, 0.014 +19280224, 0.34, -0.31, 0.46, 0.014 +19280225, 0.11, -0.16, 0.73, 0.014 +19280227, -0.49, 0.06, -0.28, 0.014 +19280228, 0.35, 0.03, 0.38, 0.014 +19280229, 0.57, 0.25, -0.22, 0.014 +19280301, 0.25, -0.11, -0.15, 0.011 +19280302, 0.07, 0.01, -0.67, 0.011 +19280303, 0.49, 0.01, -0.64, 0.011 +19280305, 0.66, -0.10, 0.12, 0.011 +19280306, 0.39, 0.27, -0.18, 0.011 +19280307, -0.43, 0.20, -0.06, 0.011 +19280308, 0.42, -0.02, 0.55, 0.011 +19280309, 1.23, -0.58, -0.36, 0.011 +19280310, -0.27, -0.37, -0.09, 0.011 +19280312, 0.41, -0.16, -0.07, 0.011 +19280313, -0.30, 0.03, -0.02, 0.011 +19280314, 0.13, 0.00, 0.45, 0.011 +19280315, 0.72, -0.43, 0.23, 0.011 +19280316, 0.93, -0.58, 0.23, 0.011 +19280317, 0.19, 0.02, 0.47, 0.011 +19280319, 0.14, 1.20, -0.74, 0.011 +19280320, 0.42, 0.37, -0.19, 0.011 +19280321, 0.86, 0.14, 0.50, 0.011 +19280322, -0.36, -0.30, -0.37, 0.011 +19280323, 0.75, -0.40, -0.65, 0.011 +19280324, 0.07, -0.45, -0.06, 0.011 +19280326, 0.95, 0.10, -0.28, 0.011 +19280327, -0.33, -0.24, 1.08, 0.011 +19280328, 0.03, 0.45, 0.05, 0.011 +19280329, 0.19, 0.27, 0.40, 0.011 +19280330, 1.49, -0.06, -0.72, 0.011 +19280331, -0.57, 0.45, 0.13, 0.011 +19280402, -0.87, 0.71, 0.52, 0.010 +19280403, 0.60, 0.27, -0.40, 0.010 +19280404, -0.07, 0.42, 0.13, 0.010 +19280405, 1.13, -0.25, 0.25, 0.010 +19280409, 0.34, 0.98, 0.13, 0.010 +19280410, -0.73, 0.32, -0.20, 0.010 +19280411, 1.41, 0.02, 0.96, 0.010 +19280412, -0.25, 0.53, -0.42, 0.010 +19280413, 1.40, 0.03, -0.51, 0.010 +19280414, -0.44, 0.10, -0.19, 0.010 +19280416, 0.52, -0.31, 0.25, 0.010 +19280417, -0.68, 0.16, -0.29, 0.010 +19280418, 0.02, 0.18, -0.11, 0.010 +19280419, 0.58, 0.63, 0.61, 0.010 +19280420, -1.33, 0.03, 0.13, 0.010 +19280423, -0.73, -0.06, 0.39, 0.010 +19280424, 0.36, 0.05, -0.03, 0.010 +19280425, 0.73, -0.07, 1.48, 0.010 +19280426, 0.63, 0.14, 0.60, 0.010 +19280427, 1.04, -0.13, 0.47, 0.010 +19280428, 0.50, -0.27, 0.09, 0.010 +19280430, 0.06, 0.25, -0.56, 0.010 +19280501, 0.26, 0.19, 0.45, 0.015 +19280502, 0.08, 0.43, -0.31, 0.015 +19280503, 0.39, 0.20, -0.68, 0.015 +19280504, 1.18, -0.67, -0.25, 0.015 +19280507, 0.69, 0.34, -0.26, 0.015 +19280508, -0.56, -0.12, -0.32, 0.015 +19280509, 0.04, -0.29, 0.63, 0.015 +19280510, -0.17, 0.39, -0.39, 0.015 +19280511, 0.77, 0.56, -0.56, 0.015 +19280514, 0.49, 0.57, 0.07, 0.015 +19280515, -0.04, 0.80, -0.58, 0.015 +19280516, -1.52, -0.15, -0.45, 0.015 +19280517, 0.47, -0.29, -0.67, 0.015 +19280518, -0.72, 0.14, 1.18, 0.015 +19280521, -1.16, 0.60, -0.17, 0.015 +19280522, -1.41, -0.50, -0.55, 0.015 +19280523, 1.72, -0.11, -0.27, 0.015 +19280524, 0.51, 0.62, 0.30, 0.015 +19280525, 0.20, 0.32, -0.03, 0.015 +19280528, -1.47, -0.45, -0.30, 0.015 +19280529, 0.88, -0.33, -0.08, 0.015 +19280531, 0.94, 0.52, 0.18, 0.015 +19280601, 0.31, -0.05, -0.32, 0.012 +19280602, 0.64, 0.33, -0.06, 0.012 +19280604, -1.85, 0.05, -0.20, 0.012 +19280605, 0.21, 0.36, -0.10, 0.012 +19280606, -0.84, 0.40, 0.11, 0.012 +19280607, -0.52, -0.76, -0.79, 0.012 +19280608, -1.38, -0.17, -0.76, 0.012 +19280609, -1.30, -0.24, -0.27, 0.012 +19280611, -2.31, -1.14, -0.37, 0.012 +19280612, -2.33, -3.27, 0.16, 0.012 +19280613, 3.14, 0.37, 0.68, 0.012 +19280614, 0.95, 1.51, 0.94, 0.012 +19280615, -1.24, -0.19, 0.52, 0.012 +19280616, -0.03, -0.58, -0.01, 0.012 +19280618, -2.01, 0.07, -0.16, 0.012 +19280619, -0.62, -1.27, -0.17, 0.012 +19280620, 1.38, 0.08, 0.42, 0.012 +19280621, 0.15, 0.49, 0.50, 0.012 +19280622, -0.03, 0.16, 0.42, 0.012 +19280623, -0.65, 0.13, -0.25, 0.012 +19280625, 0.09, -0.67, 0.51, 0.012 +19280626, 1.00, -0.16, -0.01, 0.012 +19280627, 1.01, 0.58, -0.22, 0.012 +19280628, 0.82, 0.24, -0.24, 0.012 +19280629, 0.49, -0.10, 0.32, 0.012 +19280630, 0.12, 0.08, -0.28, 0.012 +19280702, -1.20, -0.03, -0.28, 0.013 +19280703, 1.61, -0.29, 0.13, 0.013 +19280705, 0.94, -0.03, 0.04, 0.013 +19280706, -0.32, 0.18, 0.33, 0.013 +19280707, 0.26, 0.04, 0.39, 0.013 +19280709, 0.01, 0.06, -0.46, 0.013 +19280710, -0.27, 0.10, -0.75, 0.013 +19280711, -2.33, 0.16, -0.16, 0.013 +19280712, -0.64, -0.63, 0.66, 0.013 +19280713, 0.70, -0.12, -0.09, 0.013 +19280714, -0.04, 0.28, 0.33, 0.013 +19280716, -1.23, -0.13, -0.04, 0.013 +19280717, 0.45, -0.33, -0.47, 0.013 +19280718, 0.89, -0.11, -0.46, 0.013 +19280719, -0.16, 0.34, 0.60, 0.013 +19280720, 0.11, -0.06, 0.11, 0.013 +19280721, -0.24, 0.17, 0.19, 0.013 +19280723, 0.62, -0.24, -0.36, 0.013 +19280724, 0.04, 0.16, 0.61, 0.013 +19280725, 0.43, -0.09, -0.34, 0.013 +19280726, 0.22, -0.15, 0.29, 0.013 +19280727, 0.78, -0.35, -0.79, 0.013 +19280728, 0.25, -0.18, 0.03, 0.013 +19280730, -0.13, -0.11, 0.08, 0.013 +19280731, -0.11, -0.03, -0.11, 0.013 +19280801, 0.26, -0.08, 0.01, 0.012 +19280802, -0.45, 0.11, -0.01, 0.012 +19280803, 0.22, -0.05, 0.19, 0.012 +19280804, 0.22, 0.16, 0.18, 0.012 +19280806, 0.73, -0.24, -0.32, 0.012 +19280807, -0.35, 0.11, 0.51, 0.012 +19280808, -1.12, 0.15, 0.03, 0.012 +19280809, 0.12, -0.02, -0.31, 0.012 +19280810, -0.20, 0.06, -0.04, 0.012 +19280811, 0.12, 0.08, -0.14, 0.012 +19280813, -0.05, 0.05, 0.23, 0.012 +19280814, -0.66, 0.54, 0.04, 0.012 +19280815, 1.38, -0.67, -0.31, 0.012 +19280816, 0.79, -0.22, 0.23, 0.012 +19280817, 0.29, -0.31, -0.47, 0.012 +19280818, 0.28, 0.02, 0.52, 0.012 +19280820, 0.23, 0.08, -0.07, 0.012 +19280821, 0.98, -0.40, -0.47, 0.012 +19280822, 0.14, 0.00, -0.61, 0.012 +19280823, 0.00, 0.03, 0.03, 0.012 +19280824, 1.38, -0.37, -0.17, 0.012 +19280825, 0.28, -0.11, -0.06, 0.012 +19280827, -0.29, 0.14, -0.63, 0.012 +19280828, 0.58, -0.39, -0.23, 0.012 +19280829, 0.24, 0.03, 0.09, 0.012 +19280830, 0.27, 0.02, 0.10, 0.012 +19280831, 1.15, -0.67, -0.27, 0.012 +19280901, 0.25, 0.15, 0.07, 0.011 +19280904, 0.41, -0.04, -0.10, 0.011 +19280905, 0.41, 0.01, -0.09, 0.011 +19280906, -0.40, 0.17, 0.51, 0.011 +19280907, 0.65, 0.35, -0.20, 0.011 +19280908, -0.30, 0.19, 0.04, 0.011 +19280910, -0.37, 0.23, -0.02, 0.011 +19280911, 0.63, -0.19, 0.22, 0.011 +19280912, 0.34, -0.06, 0.19, 0.011 +19280913, -0.10, 0.07, -0.31, 0.011 +19280914, 0.13, 0.13, 0.43, 0.011 +19280915, 0.58, -0.30, 0.74, 0.011 +19280917, 0.54, 0.72, 0.12, 0.011 +19280918, -0.68, 0.62, -0.68, 0.011 +19280919, -0.07, 0.15, 0.46, 0.011 +19280920, 0.15, 0.54, -0.12, 0.011 +19280921, 0.67, -0.46, 0.17, 0.011 +19280922, -0.24, 0.19, 0.69, 0.011 +19280924, 0.63, -0.43, -0.08, 0.011 +19280925, -0.07, 0.23, 0.12, 0.011 +19280926, -0.15, 0.20, -0.54, 0.011 +19280927, -1.22, -0.15, -0.01, 0.011 +19280928, 0.01, -0.11, -0.46, 0.011 +19280929, 1.03, 0.01, -0.20, 0.011 +19281001, -0.11, 0.85, -0.31, 0.016 +19281002, -0.44, 0.10, -0.05, 0.016 +19281003, -0.28, 0.56, 0.16, 0.016 +19281004, 0.25, 0.17, 0.30, 0.016 +19281005, -0.29, 0.45, -0.05, 0.016 +19281006, -0.05, 0.00, 0.20, 0.016 +19281008, -0.33, -0.14, -0.28, 0.016 +19281009, 0.12, 0.10, -1.05, 0.016 +19281010, 0.92, -0.03, -0.06, 0.016 +19281011, 0.31, 0.50, -0.85, 0.016 +19281013, 0.55, 0.41, -0.47, 0.016 +19281015, 0.38, -0.45, 0.15, 0.016 +19281016, 0.30, -0.19, 0.56, 0.016 +19281017, 0.30, 0.81, 0.23, 0.016 +19281018, 0.29, -0.30, -0.37, 0.016 +19281019, 0.45, -0.20, -0.55, 0.016 +19281020, -0.44, 0.23, -0.02, 0.016 +19281022, -0.12, 0.29, -0.61, 0.016 +19281023, 0.66, -0.09, 0.39, 0.016 +19281024, 0.22, 0.10, 0.58, 0.016 +19281025, -0.26, -0.05, 0.25, 0.016 +19281026, -1.14, -0.39, -0.05, 0.016 +19281027, 0.86, 0.17, -0.07, 0.016 +19281029, 0.69, -0.05, 0.56, 0.016 +19281030, -1.05, -0.32, -0.17, 0.016 +19281031, -0.49, -0.31, -0.56, 0.016 +19281101, 1.29, -0.24, -0.25, 0.017 +19281102, -0.10, -0.21, 0.30, 0.017 +19281103, 0.04, -0.03, -0.32, 0.017 +19281105, 1.13, -0.29, 0.22, 0.017 +19281107, 1.19, 0.01, 0.86, 0.017 +19281108, -0.25, 0.01, -0.13, 0.017 +19281109, 0.72, -0.38, 0.46, 0.017 +19281110, 0.78, -0.01, 0.48, 0.017 +19281112, 0.34, -0.46, 0.00, 0.017 +19281113, 0.07, 0.18, -0.16, 0.017 +19281114, 0.14, 0.32, -0.30, 0.017 +19281115, 0.36, -0.01, -0.65, 0.017 +19281116, 1.77, -0.77, 0.24, 0.017 +19281117, 0.10, -0.02, -0.09, 0.017 +19281119, 0.17, -0.56, 1.03, 0.017 +19281120, 1.11, -0.64, 0.97, 0.017 +19281121, -1.51, 0.47, -0.25, 0.017 +19281122, 1.39, -0.43, 0.72, 0.017 +19281123, 0.26, 0.44, -0.31, 0.017 +19281126, 0.46, 0.07, 0.67, 0.017 +19281127, 0.28, 0.89, -0.19, 0.017 +19281128, 1.10, 0.38, -0.35, 0.017 +19281130, 0.39, -0.41, -0.45, 0.017 +19281201, -0.60, 0.05, 0.66, 0.002 +19281203, -0.70, 0.37, -0.42, 0.002 +19281204, 0.23, 0.50, -0.43, 0.002 +19281205, -0.70, 0.83, -0.37, 0.002 +19281206, -3.54, 0.01, -1.35, 0.002 +19281207, -2.35, -0.50, 0.85, 0.002 +19281208, -1.89, -0.60, 0.01, 0.002 +19281210, 1.63, -1.33, 0.71, 0.002 +19281211, 2.30, 1.35, 0.37, 0.002 +19281212, -0.78, -0.19, 0.21, 0.002 +19281213, -0.34, 0.44, 0.19, 0.002 +19281214, 0.19, -0.04, -0.15, 0.002 +19281215, -0.35, 0.19, 0.10, 0.002 +19281217, -0.37, -0.31, -0.52, 0.002 +19281218, 1.07, -0.08, -0.16, 0.002 +19281219, 1.20, -0.38, 0.35, 0.002 +19281220, 0.37, -0.02, -0.19, 0.002 +19281221, 1.07, -0.32, -0.17, 0.002 +19281222, 0.12, 0.31, -0.30, 0.002 +19281224, 0.87, 0.19, -0.88, 0.002 +19281226, -0.31, 0.02, 0.25, 0.002 +19281227, 0.66, -0.78, 0.00, 0.002 +19281228, 1.34, -0.53, 0.18, 0.002 +19281229, 0.20, 0.30, 0.17, 0.002 +19281231, 1.36, -0.33, 0.57, 0.002 +19290102, 1.48, 0.44, -0.19, 0.013 +19290103, 0.10, 0.11, -0.34, 0.013 +19290104, -0.03, -0.44, 0.65, 0.013 +19290105, -0.88, 0.44, -0.23, 0.013 +19290107, -1.30, -0.37, 0.26, 0.013 +19290108, -0.23, 0.20, 0.24, 0.013 +19290109, 1.20, 0.08, 0.12, 0.013 +19290110, 0.27, 0.31, -0.21, 0.013 +19290111, -0.04, 0.21, 0.00, 0.013 +19290112, -0.28, 0.04, 0.13, 0.013 +19290114, 0.25, 0.18, 0.29, 0.013 +19290115, -0.98, -0.10, -0.08, 0.013 +19290116, 0.91, -0.16, 0.39, 0.013 +19290117, 0.71, -0.36, 0.05, 0.013 +19290118, 0.04, 0.24, 0.11, 0.013 +19290119, 0.19, -0.26, 0.32, 0.013 +19290121, 0.16, -0.18, 0.00, 0.013 +19290122, 0.59, -0.48, -0.26, 0.013 +19290123, 0.53, -0.76, -0.56, 0.013 +19290124, -0.83, 0.15, -0.67, 0.013 +19290125, 1.18, -0.61, -1.32, 0.013 +19290126, 0.34, -0.19, -0.08, 0.013 +19290128, -0.27, 0.13, 0.03, 0.013 +19290129, -0.27, -0.21, -0.31, 0.013 +19290130, 0.34, -0.74, -0.32, 0.013 +19290131, 1.36, -0.90, 0.87, 0.013 +19290201, 0.56, -0.34, 0.76, 0.018 +19290202, 0.01, 0.31, 0.74, 0.018 +19290204, -0.44, 0.71, 0.10, 0.018 +19290205, 0.22, 0.18, -0.21, 0.018 +19290206, -0.82, -0.23, -0.69, 0.018 +19290207, -2.97, -0.02, 0.40, 0.018 +19290208, -0.96, -0.57, 0.64, 0.018 +19290211, 2.18, -0.81, 0.71, 0.018 +19290213, 0.10, 0.42, -0.93, 0.018 +19290214, -0.63, -0.44, 0.51, 0.018 +19290215, -1.62, 0.59, -0.58, 0.018 +19290216, -1.40, -0.52, 0.35, 0.018 +19290218, 1.12, -0.38, 0.35, 0.018 +19290219, 0.20, 0.95, -0.33, 0.018 +19290220, 0.84, 0.32, -0.15, 0.018 +19290221, 0.73, -0.45, 0.07, 0.018 +19290225, 0.28, 0.49, -0.23, 0.018 +19290226, 0.36, 0.16, -0.29, 0.018 +19290227, 1.06, -0.31, 0.59, 0.018 +19290228, 1.01, -0.38, -0.14, 0.018 +19290301, 1.01, -0.10, 0.39, 0.014 +19290302, -0.27, -0.19, 0.63, 0.014 +19290304, -0.89, -0.05, 0.39, 0.014 +19290305, -0.68, -0.55, 0.53, 0.014 +19290306, -1.57, -0.42, -0.28, 0.014 +19290307, 0.76, -0.59, 0.37, 0.014 +19290308, 0.58, 0.00, 0.03, 0.014 +19290309, -0.01, 0.40, -0.25, 0.014 +19290311, -1.30, 0.36, -0.27, 0.014 +19290312, 0.25, -0.45, 0.07, 0.014 +19290313, 0.98, -0.30, 0.18, 0.014 +19290314, 1.55, -0.17, -0.36, 0.014 +19290315, 1.07, -0.30, -0.05, 0.014 +19290316, 0.27, 0.07, 0.04, 0.014 +19290318, -0.43, -0.02, 0.10, 0.014 +19290319, 0.02, -0.57, 0.57, 0.014 +19290320, 0.02, -0.49, 0.55, 0.014 +19290321, -0.43, 0.27, -0.62, 0.014 +19290322, -1.15, 0.12, -0.76, 0.014 +19290323, -0.98, 0.09, -0.34, 0.014 +19290325, -3.14, -0.64, -0.28, 0.014 +19290326, -1.16, -2.67, 0.05, 0.014 +19290327, 3.28, 0.70, 0.34, 0.014 +19290328, 1.63, 0.62, 0.55, 0.014 +19290401, -2.26, -0.33, 0.00, 0.014 +19290402, 1.19, 0.21, 0.36, 0.014 +19290403, -1.08, 0.41, 0.06, 0.014 +19290404, 1.20, -0.44, 0.19, 0.014 +19290405, -0.75, 0.75, -0.75, 0.014 +19290406, 0.12, -0.51, 0.65, 0.014 +19290408, -0.95, 0.27, -0.66, 0.014 +19290409, -0.87, -0.77, -0.36, 0.014 +19290410, 0.49, -0.20, 0.06, 0.014 +19290411, 1.02, -0.45, 0.55, 0.014 +19290412, 0.63, 0.55, -0.59, 0.014 +19290413, -0.02, 0.21, 0.21, 0.014 +19290415, -0.58, 0.64, -0.20, 0.014 +19290416, 0.05, -0.03, -0.25, 0.014 +19290417, 1.02, -0.46, 0.11, 0.014 +19290418, 0.38, 0.48, -0.81, 0.014 +19290419, -0.03, 0.09, -0.20, 0.014 +19290420, 0.19, -0.11, -0.41, 0.014 +19290422, 0.83, -0.38, 0.06, 0.014 +19290423, 0.44, 0.25, -0.12, 0.014 +19290424, -0.24, 0.03, 0.36, 0.014 +19290425, -0.60, 0.08, 0.20, 0.014 +19290426, -0.08, -0.16, -0.37, 0.014 +19290427, 0.55, 0.16, 0.47, 0.014 +19290429, -0.53, 0.07, 0.58, 0.014 +19290430, 1.65, -1.27, 1.41, 0.014 +19290501, 0.11, 0.28, -0.23, 0.017 +19290502, 0.14, 0.05, -0.29, 0.017 +19290503, 0.75, -0.07, -0.61, 0.017 +19290504, 0.31, -0.44, 0.15, 0.017 +19290506, -0.52, -0.13, -0.30, 0.017 +19290507, -0.68, 0.10, -0.02, 0.017 +19290508, 0.10, -0.06, -0.06, 0.017 +19290509, -0.55, -0.04, 0.02, 0.017 +19290510, 1.18, -0.23, 0.12, 0.017 +19290511, -0.34, 0.28, 0.17, 0.017 +19290513, -2.13, -0.37, -0.22, 0.017 +19290514, 0.89, -0.48, -0.65, 0.017 +19290515, -0.32, 0.05, 0.07, 0.017 +19290516, 0.07, -0.43, -0.38, 0.017 +19290517, 0.51, 0.16, -0.07, 0.017 +19290518, -0.18, -0.10, -0.12, 0.017 +19290520, -1.97, 0.42, 0.80, 0.017 +19290521, 0.05, -1.29, -0.36, 0.017 +19290522, -3.17, 1.02, -0.67, 0.017 +19290523, 1.54, -1.33, -0.18, 0.017 +19290524, -0.47, 0.61, -0.02, 0.017 +19290525, -0.37, -0.50, -0.07, 0.017 +19290527, -3.20, -0.64, -0.12, 0.017 +19290528, 1.12, -1.20, 0.22, 0.017 +19290529, 0.10, -0.22, 0.94, 0.017 +19290531, 0.57, -1.20, 0.42, 0.017 +19290601, 0.61, 0.28, 0.10, 0.021 +19290603, 1.27, -0.13, 0.63, 0.021 +19290604, 1.40, 0.38, -0.79, 0.021 +19290605, -0.31, 0.29, -0.64, 0.021 +19290606, 0.27, -0.19, 0.39, 0.021 +19290607, -0.45, 0.00, -0.42, 0.021 +19290608, -0.36, -0.15, 0.95, 0.021 +19290610, -0.54, 0.14, 0.32, 0.021 +19290611, 0.40, -0.20, -0.43, 0.021 +19290612, 0.03, 0.25, -0.34, 0.021 +19290613, 1.24, -0.51, -0.03, 0.021 +19290614, 0.31, 0.33, 0.29, 0.021 +19290615, 0.29, -0.19, 0.76, 0.021 +19290617, 1.22, -0.70, -0.58, 0.021 +19290618, 0.17, -0.04, 0.01, 0.021 +19290619, -0.65, 0.38, -0.50, 0.021 +19290620, 0.43, -0.18, -0.32, 0.021 +19290621, 0.67, -0.39, 0.44, 0.021 +19290622, 0.31, 0.05, 0.64, 0.021 +19290624, -0.21, 0.23, -0.73, 0.021 +19290625, 0.77, -0.40, -0.92, 0.021 +19290626, 0.56, -0.02, 0.02, 0.021 +19290627, 0.04, -0.05, -0.50, 0.021 +19290628, 0.94, -0.93, -0.85, 0.021 +19290629, 0.86, -0.32, -0.08, 0.021 +19290701, 0.37, -0.23, 0.31, 0.013 +19290702, 1.11, -0.94, 0.24, 0.013 +19290703, 0.33, 0.19, -0.38, 0.013 +19290705, 0.47, 0.21, -0.45, 0.013 +19290706, 0.16, -0.13, -0.09, 0.013 +19290708, 0.04, 0.64, 0.96, 0.013 +19290709, 0.11, 0.28, 0.00, 0.013 +19290710, -0.30, 0.03, -0.19, 0.013 +19290711, 0.25, -0.22, -0.39, 0.013 +19290712, 0.92, -0.78, 0.23, 0.013 +19290713, 0.40, -0.49, 1.16, 0.013 +19290715, -0.46, -0.31, 1.01, 0.013 +19290716, 0.48, -0.26, 0.08, 0.013 +19290717, 0.27, 0.06, -0.25, 0.013 +19290718, -0.12, -0.13, -0.04, 0.013 +19290719, 0.33, -0.57, 0.78, 0.013 +19290720, 0.15, -0.09, 0.18, 0.013 +19290722, -1.11, 0.17, -0.28, 0.013 +19290723, 1.03, -0.83, 0.19, 0.013 +19290724, -0.49, -0.27, 0.13, 0.013 +19290725, 0.51, -0.56, -0.73, 0.013 +19290726, -0.40, 0.00, 0.12, 0.013 +19290727, -0.44, 0.45, -0.45, 0.013 +19290729, -1.16, 0.25, 0.43, 0.013 +19290730, 0.89, -0.05, -0.01, 0.013 +19290731, 1.08, -0.21, 0.01, 0.013 +19290801, 0.81, -0.66, -0.17, 0.015 +19290802, 0.93, -1.16, -0.05, 0.015 +19290803, 0.51, -0.52, -0.63, 0.015 +19290805, -0.61, -0.50, 0.79, 0.015 +19290806, -0.47, 0.22, 0.02, 0.015 +19290807, -1.02, 0.14, 0.38, 0.015 +19290808, 0.90, -0.75, 0.08, 0.015 +19290809, -3.61, 0.26, 0.40, 0.015 +19290810, 1.59, -0.78, 0.48, 0.015 +19290812, 1.47, -0.23, 0.17, 0.015 +19290813, 0.70, -0.57, -0.22, 0.015 +19290814, 0.14, -0.52, -0.12, 0.015 +19290815, 0.29, -0.05, 0.18, 0.015 +19290816, 1.80, -0.38, -0.35, 0.015 +19290817, 0.25, 0.15, 0.87, 0.015 +19290819, 0.50, -0.69, -0.64, 0.015 +19290820, 0.30, -0.01, 0.14, 0.015 +19290821, -0.37, -0.02, -0.12, 0.015 +19290822, 0.85, -0.54, -0.54, 0.015 +19290823, 0.94, -1.24, -0.39, 0.015 +19290824, 0.22, -0.59, 0.14, 0.015 +19290826, -0.05, -0.18, 0.33, 0.015 +19290827, -0.08, 0.02, 0.01, 0.015 +19290828, -0.03, -0.12, 0.15, 0.015 +19290829, 0.84, -0.10, 0.08, 0.015 +19290830, 1.09, -0.55, -0.76, 0.015 +19290903, 0.36, -0.29, -0.53, 0.015 +19290904, -0.53, 0.10, -0.77, 0.015 +19290905, -1.91, 0.75, 0.23, 0.015 +19290906, 2.06, -1.21, -0.22, 0.015 +19290907, 0.32, -0.25, 0.23, 0.015 +19290909, -0.59, 0.10, -0.14, 0.015 +19290910, -1.72, 1.36, -0.01, 0.015 +19290911, 1.19, -1.14, 0.29, 0.015 +19290912, -1.00, 1.15, -0.05, 0.015 +19290913, 0.25, 0.12, -0.22, 0.015 +19290914, 0.22, -0.04, 0.06, 0.015 +19290916, 1.03, -0.48, -0.14, 0.015 +19290917, -0.63, 0.90, -0.27, 0.015 +19290918, 0.44, -0.96, 0.51, 0.015 +19290919, 0.01, -0.01, -0.29, 0.015 +19290920, -0.87, 0.52, -0.09, 0.015 +19290921, -0.08, 0.20, -0.13, 0.015 +19290923, -0.28, -0.17, 0.09, 0.015 +19290924, -1.53, 0.51, 0.22, 0.015 +19290925, -0.16, -0.56, 0.03, 0.015 +19290926, 0.95, 0.08, -0.50, 0.015 +19290927, -2.42, 0.62, 0.47, 0.015 +19290928, 0.30, -0.64, 0.41, 0.015 +19290930, -0.81, 0.73, 0.07, 0.015 +19291001, -0.68, -0.52, -0.11, 0.018 +19291002, 0.75, -0.07, -0.14, 0.018 +19291003, -3.67, 1.28, 0.92, 0.018 +19291004, -1.21, -1.76, 0.18, 0.018 +19291005, 3.89, -0.55, -1.09, 0.018 +19291007, 1.75, 0.17, 0.55, 0.018 +19291008, -0.01, 0.37, 0.06, 0.018 +19291009, -0.20, -0.26, 0.27, 0.018 +19291010, 1.40, -0.60, -0.50, 0.018 +19291011, -0.16, 0.46, 0.23, 0.018 +19291014, -0.51, 0.27, -0.34, 0.018 +19291015, -0.68, 0.32, 0.16, 0.018 +19291016, -3.06, 1.09, 0.91, 0.018 +19291017, 1.03, -1.67, 0.00, 0.018 +19291018, -2.32, 1.31, 1.09, 0.018 +19291019, -2.80, 0.28, 0.92, 0.018 +19291021, -1.35, -1.06, 0.31, 0.018 +19291022, 1.97, -0.39, -0.38, 0.018 +19291023, -5.65, 0.68, 0.58, 0.018 +19291024, -3.84, -3.78, 1.45, 0.018 +19291025, 1.50, 0.10, 0.21, 0.018 +19291026, -0.35, 1.17, 0.74, 0.018 +19291028, -11.29, 1.26, 3.96, 0.018 +19291029, -12.01, 0.26, 2.12, 0.018 +19291030, 12.16, -7.25, -2.10, 0.018 +19291031, 6.10, 2.51, -1.80, 0.018 +19291104, -4.29, 1.96, 1.65, 0.022 +19291106, -9.75, 1.59, 2.40, 0.022 +19291107, 2.18, -4.68, -0.40, 0.022 +19291108, 0.01, 2.63, 0.30, 0.022 +19291111, -5.60, 1.52, 1.90, 0.022 +19291112, -6.00, -1.13, 0.45, 0.022 +19291113, -5.58, -1.90, 1.18, 0.022 +19291114, 7.85, -2.84, -1.76, 0.022 +19291115, 6.23, 1.38, -2.63, 0.022 +19291118, -1.17, 2.28, 0.20, 0.022 +19291119, 2.59, -1.59, 0.02, 0.022 +19291120, 2.45, -0.36, 0.24, 0.022 +19291121, 2.14, -1.13, -0.87, 0.022 +19291122, -0.46, 0.62, 1.03, 0.022 +19291125, -1.11, 0.44, 0.93, 0.022 +19291126, -2.29, 0.88, 0.93, 0.022 +19291127, 0.98, -1.06, -0.52, 0.022 +19291202, 0.04, -0.26, -0.23, 0.015 +19291203, 2.78, -0.50, -0.82, 0.015 +19291204, 1.83, 0.04, 0.32, 0.015 +19291205, -0.42, 0.91, -0.23, 0.015 +19291206, 2.01, -1.12, -0.59, 0.015 +19291207, 1.08, -0.14, -0.37, 0.015 +19291209, -0.93, 0.68, -0.03, 0.015 +19291210, 0.35, -1.04, -0.30, 0.015 +19291211, -0.50, 0.46, -0.05, 0.015 +19291212, -4.95, 1.25, 1.03, 0.015 +19291213, 1.92, -1.73, 0.35, 0.015 +19291214, 1.21, 0.24, 0.58, 0.015 +19291216, -2.37, 1.24, 0.88, 0.015 +19291217, 0.62, -0.69, -0.33, 0.015 +19291218, -0.56, 0.15, 0.52, 0.015 +19291219, -2.41, -0.30, 0.00, 0.015 +19291220, -3.25, -1.36, 1.30, 0.015 +19291221, 1.59, -0.44, -0.49, 0.015 +19291223, -1.37, -0.31, -0.13, 0.015 +19291224, 0.45, -0.02, -0.29, 0.015 +19291226, 2.09, -0.59, -0.59, 0.015 +19291227, -0.23, -0.58, -0.07, 0.015 +19291228, -0.75, -0.01, 0.76, 0.015 +19291230, 0.75, -1.02, -1.31, 0.015 +19291231, 2.68, 0.96, -0.33, 0.015 +19300102, -0.95, 1.83, -0.68, 0.005 +19300103, 0.63, -0.49, 0.63, 0.005 +19300104, 0.71, 0.32, -0.22, 0.005 +19300106, 0.02, 0.37, -0.38, 0.005 +19300107, -0.69, 0.78, 0.44, 0.005 +19300108, -0.12, 0.27, 0.60, 0.005 +19300109, 1.25, -0.08, -0.43, 0.005 +19300110, -0.22, 0.28, 0.24, 0.005 +19300111, -0.49, 0.39, 0.39, 0.005 +19300113, 0.30, -0.30, -0.09, 0.005 +19300114, 0.18, -0.16, 0.49, 0.005 +19300115, 0.20, -0.39, -0.26, 0.005 +19300116, -0.59, -0.06, 1.26, 0.005 +19300117, -0.78, -0.16, -0.14, 0.005 +19300118, 0.23, -0.41, -0.13, 0.005 +19300120, 0.25, 0.41, -0.51, 0.005 +19300121, 0.58, -0.26, 0.17, 0.005 +19300122, 0.11, 0.61, 0.08, 0.005 +19300123, 0.94, -0.21, -0.13, 0.005 +19300124, 0.69, 0.28, -0.58, 0.005 +19300125, 0.75, 0.07, 0.58, 0.005 +19300127, 0.33, -0.20, -0.40, 0.005 +19300128, -0.54, 0.57, 0.03, 0.005 +19300129, 1.01, -0.14, -0.10, 0.005 +19300130, 0.25, -0.03, -0.46, 0.005 +19300131, 1.39, 0.01, -1.51, 0.005 +19300201, 0.79, -0.29, -0.64, 0.013 +19300203, -0.61, 0.44, 0.26, 0.013 +19300204, 0.78, -0.27, -0.27, 0.013 +19300205, 1.03, -0.30, 0.15, 0.013 +19300206, -0.81, 0.27, 0.41, 0.013 +19300207, -0.26, 0.03, 0.61, 0.013 +19300208, 0.82, -0.51, -0.01, 0.013 +19300210, -0.07, 0.15, 0.20, 0.013 +19300211, 0.55, 0.07, 0.14, 0.013 +19300213, 0.16, 0.12, -0.09, 0.013 +19300214, 0.06, 0.18, 0.95, 0.013 +19300215, -0.80, 0.46, -0.23, 0.013 +19300217, 0.59, -0.21, -0.78, 0.013 +19300218, 0.21, 0.36, 0.15, 0.013 +19300219, -0.72, 0.27, -0.17, 0.013 +19300220, -1.90, 0.25, 0.48, 0.013 +19300221, 1.14, -0.91, 0.20, 0.013 +19300224, -0.89, 0.22, -0.30, 0.013 +19300225, 0.01, -0.08, -0.32, 0.013 +19300226, 1.61, -0.56, -0.20, 0.013 +19300227, 0.25, 0.45, 0.07, 0.013 +19300228, 0.55, 0.00, -0.22, 0.013 +19300301, 0.62, 0.37, -0.64, 0.013 +19300303, -0.10, 0.78, -0.18, 0.013 +19300304, 0.50, -0.34, -0.07, 0.013 +19300305, -0.70, 0.06, 0.36, 0.013 +19300306, 0.79, -0.10, -0.60, 0.013 +19300307, 0.09, 0.56, -0.10, 0.013 +19300308, 0.12, 0.30, -0.11, 0.013 +19300310, 0.45, -0.08, -0.39, 0.013 +19300311, 0.18, -0.30, 0.04, 0.013 +19300312, -0.81, 0.38, 1.10, 0.013 +19300313, 0.41, 0.19, -0.31, 0.013 +19300314, -0.68, 0.55, 0.69, 0.013 +19300315, -0.49, 0.65, 0.37, 0.013 +19300317, 1.30, -0.22, 0.02, 0.013 +19300318, 0.97, -0.21, 0.65, 0.013 +19300319, 0.30, 0.23, -0.12, 0.013 +19300320, 0.54, -0.55, -0.24, 0.013 +19300321, 0.54, 0.12, -0.07, 0.013 +19300322, -0.88, 0.64, 0.26, 0.013 +19300324, 0.95, 0.64, -0.03, 0.013 +19300325, 0.03, -0.05, 0.09, 0.013 +19300326, 0.99, -0.68, -0.45, 0.013 +19300327, -0.17, 0.24, -0.52, 0.013 +19300328, 0.87, -0.31, 0.73, 0.013 +19300329, 0.83, 0.03, -0.42, 0.013 +19300331, 0.28, 0.26, 0.05, 0.013 +19300401, 0.76, -0.06, -0.29, 0.009 +19300402, -0.97, 0.60, -0.74, 0.009 +19300403, 0.27, -0.38, -0.17, 0.009 +19300404, 1.05, -0.23, -0.04, 0.009 +19300405, 0.50, -0.27, -0.75, 0.009 +19300407, -0.03, 0.32, 0.43, 0.009 +19300408, -0.64, -0.39, 0.19, 0.009 +19300409, 1.29, -0.45, -1.12, 0.009 +19300410, 0.06, 0.43, -0.40, 0.009 +19300411, -0.37, 0.06, 0.54, 0.009 +19300412, 0.00, 0.12, -0.41, 0.009 +19300414, -0.24, 0.74, 0.18, 0.009 +19300415, -0.02, 0.11, -0.47, 0.009 +19300416, -0.73, 0.12, -0.46, 0.009 +19300417, 0.50, -0.09, -0.25, 0.009 +19300421, -1.50, 0.52, 0.31, 0.009 +19300422, 0.46, -0.68, 0.63, 0.009 +19300423, 0.39, 0.12, 0.74, 0.009 +19300424, -0.85, 0.29, 0.65, 0.009 +19300425, -0.20, -0.23, -0.06, 0.009 +19300426, 0.03, -0.62, 0.19, 0.009 +19300428, -2.10, 0.12, 0.04, 0.009 +19300429, -0.46, -0.90, -0.17, 0.009 +19300430, 0.78, 0.56, 0.52, 0.009 +19300501, -1.95, 0.90, -0.31, 0.010 +19300502, -2.46, -0.52, 0.59, 0.010 +19300503, -3.19, -0.86, 1.99, 0.010 +19300505, -0.19, -2.40, -0.14, 0.010 +19300506, 3.14, 1.45, -1.59, 0.010 +19300507, -0.91, 0.59, 0.39, 0.010 +19300508, 0.22, -0.44, -0.57, 0.010 +19300509, 0.98, -0.43, -0.02, 0.010 +19300510, 1.38, 0.16, -0.94, 0.010 +19300512, -0.01, 0.29, -0.20, 0.010 +19300513, 1.04, -0.44, 0.25, 0.010 +19300514, 0.57, 0.38, 0.18, 0.010 +19300515, -1.26, 0.35, 0.82, 0.010 +19300516, 0.51, 0.01, 0.03, 0.010 +19300517, 0.03, -0.03, 0.40, 0.010 +19300519, -1.84, 0.29, 0.13, 0.010 +19300520, 0.13, -0.58, 0.57, 0.010 +19300521, -0.35, -0.31, -0.47, 0.010 +19300522, 0.16, 0.03, 0.16, 0.010 +19300523, 0.99, 0.19, -1.10, 0.010 +19300524, 0.57, -0.51, 0.10, 0.010 +19300526, 0.12, 0.01, -0.04, 0.010 +19300527, 0.09, -0.10, -0.50, 0.010 +19300528, 0.34, -0.19, -0.39, 0.010 +19300529, 0.49, 0.11, -0.12, 0.010 +19300602, -0.17, 0.29, 0.37, 0.011 +19300603, -0.82, -0.02, 0.41, 0.011 +19300604, 0.29, -0.38, -0.05, 0.011 +19300605, -1.41, 0.17, 0.42, 0.011 +19300606, -1.47, 0.02, 0.36, 0.011 +19300607, -1.81, -0.26, 0.57, 0.011 +19300609, -2.97, -0.57, -0.56, 0.011 +19300610, 2.18, -1.56, 0.15, 0.011 +19300611, -3.20, 0.04, 0.69, 0.011 +19300612, -0.50, -0.41, -0.63, 0.011 +19300613, 0.70, -0.20, 0.75, 0.011 +19300614, -1.77, 1.18, -0.14, 0.011 +19300616, -5.38, -0.86, 0.85, 0.011 +19300617, -0.19, -1.62, 0.63, 0.011 +19300618, -3.42, -1.68, 1.09, 0.011 +19300619, 4.27, -0.29, -1.01, 0.011 +19300620, -1.75, 1.54, -0.71, 0.011 +19300621, -2.61, 0.08, 1.69, 0.011 +19300623, 1.30, -0.95, -0.93, 0.011 +19300624, -2.60, 2.28, -0.04, 0.011 +19300625, 0.13, -1.94, -0.87, 0.011 +19300626, 2.20, 0.37, 0.31, 0.011 +19300627, -0.87, 0.58, 0.13, 0.011 +19300628, 0.33, 0.08, -0.60, 0.011 +19300630, 2.50, 0.13, -0.66, 0.011 +19300701, -0.69, 1.10, 0.87, 0.008 +19300702, 0.87, -0.72, -0.02, 0.008 +19300703, -0.94, 0.58, 0.36, 0.008 +19300707, -1.72, 0.31, -0.33, 0.008 +19300708, 0.37, -1.67, 0.13, 0.008 +19300709, 1.34, 0.53, -0.13, 0.008 +19300710, 2.15, -1.46, 0.48, 0.008 +19300711, -0.90, 1.02, -0.34, 0.008 +19300712, 1.55, -1.04, -0.23, 0.008 +19300714, 1.91, 0.17, 0.07, 0.008 +19300715, 0.45, 0.96, 0.62, 0.008 +19300716, 0.69, -0.64, 0.33, 0.008 +19300717, 0.59, 0.77, -0.30, 0.008 +19300718, 0.71, 0.36, -0.73, 0.008 +19300719, -0.81, 0.48, 0.47, 0.008 +19300721, -2.56, -0.35, 0.54, 0.008 +19300722, 1.46, -0.67, -0.77, 0.008 +19300723, 1.40, 0.52, -0.71, 0.008 +19300724, -0.99, 0.15, -0.31, 0.008 +19300725, 0.49, -0.70, -0.48, 0.008 +19300726, 0.91, -0.28, 0.00, 0.008 +19300728, 0.34, 0.19, -0.47, 0.008 +19300729, -0.77, 0.19, -0.16, 0.008 +19300730, -2.30, 0.27, 0.23, 0.008 +19300731, 0.53, -0.43, -0.66, 0.008 +19300801, -0.46, 0.15, 0.21, 0.004 +19300802, 0.45, 0.11, 0.10, 0.004 +19300804, 1.31, -0.76, -0.54, 0.004 +19300805, -0.12, 0.09, 0.14, 0.004 +19300806, -1.37, 0.54, 0.02, 0.004 +19300807, -0.73, 0.10, -0.37, 0.004 +19300808, -3.77, 0.63, 0.35, 0.004 +19300809, -0.17, -0.46, -0.58, 0.004 +19300811, 0.84, -0.56, -0.02, 0.004 +19300812, -2.26, 0.75, 0.63, 0.004 +19300813, 0.87, -1.39, 0.00, 0.004 +19300814, 0.40, 0.38, -0.30, 0.004 +19300815, 2.15, -1.57, 0.46, 0.004 +19300816, 0.01, 0.80, 0.46, 0.004 +19300818, -0.38, 0.21, -0.72, 0.004 +19300819, 0.79, -0.15, -0.19, 0.004 +19300820, 0.52, -0.37, -0.25, 0.004 +19300821, -0.61, 0.46, -0.45, 0.004 +19300822, 0.12, 0.00, 0.10, 0.004 +19300823, 0.52, -0.06, -0.24, 0.004 +19300825, -0.78, 0.27, -0.06, 0.004 +19300826, 1.16, -1.28, 0.46, 0.004 +19300827, 0.54, 0.23, -0.20, 0.004 +19300828, -0.11, -0.02, 0.15, 0.004 +19300829, 1.38, -0.41, 0.19, 0.004 +19300902, 0.05, 0.26, 0.19, 0.009 +19300903, -0.95, 0.10, 0.00, 0.009 +19300904, -0.57, -0.22, 0.02, 0.009 +19300905, 1.31, 0.32, 0.39, 0.009 +19300906, 1.18, -0.63, 0.23, 0.009 +19300908, 0.11, 0.58, -0.37, 0.009 +19300909, 0.41, 0.34, -0.80, 0.009 +19300910, 0.38, 0.38, -0.16, 0.009 +19300911, -0.97, 0.25, 1.05, 0.009 +19300912, -0.41, 0.35, -0.53, 0.009 +19300913, -0.13, -0.41, -0.03, 0.009 +19300915, -1.22, 0.26, -0.02, 0.009 +19300916, 0.17, -0.89, -0.43, 0.009 +19300917, 0.25, 0.25, -0.14, 0.009 +19300918, -1.11, 0.22, -0.02, 0.009 +19300919, -1.61, -0.35, -0.36, 0.009 +19300920, 0.25, -0.03, 0.10, 0.009 +19300922, -2.52, 0.23, -0.11, 0.009 +19300923, 0.89, -1.22, -0.94, 0.009 +19300924, -1.47, -0.10, -0.64, 0.009 +19300925, -2.00, -0.14, 0.22, 0.009 +19300926, -1.50, -0.17, -0.92, 0.009 +19300927, -0.65, -0.56, -0.22, 0.009 +19300929, -2.02, 0.23, -0.98, 0.009 +19300930, -1.54, -1.67, -1.68, 0.009 +19301001, 3.78, -0.51, 1.60, 0.003 +19301002, -1.03, 1.15, -0.56, 0.003 +19301003, 1.31, -0.40, 0.43, 0.003 +19301004, -0.87, 1.07, -0.40, 0.003 +19301006, -2.90, 0.56, -0.45, 0.003 +19301007, -0.21, -1.85, -0.28, 0.003 +19301008, -0.97, 0.61, 0.81, 0.003 +19301009, -3.89, 0.62, -0.13, 0.003 +19301010, 1.89, -3.58, -1.14, 0.003 +19301011, -2.09, 3.09, 1.38, 0.003 +19301014, 0.93, -1.89, -1.20, 0.003 +19301015, 1.76, 0.42, 0.61, 0.003 +19301016, -1.42, 0.64, 0.17, 0.003 +19301017, -3.62, 0.79, -0.60, 0.003 +19301018, -1.14, -0.91, -1.41, 0.003 +19301020, 2.84, -1.54, 0.71, 0.003 +19301021, -2.39, 1.47, -0.96, 0.003 +19301022, -0.84, -0.96, 0.18, 0.003 +19301023, 0.94, 0.27, 0.09, 0.003 +19301024, 2.81, -0.74, -0.56, 0.003 +19301025, -0.16, 1.12, 0.52, 0.003 +19301027, 0.47, -0.31, -1.11, 0.003 +19301028, 0.62, -0.15, 0.64, 0.003 +19301029, -1.31, 0.83, -0.38, 0.003 +19301030, -1.14, -0.55, 1.02, 0.003 +19301031, -1.98, 0.49, 0.01, 0.003 +19301101, 0.27, -0.61, -0.74, 0.006 +19301103, 0.29, 0.07, -0.17, 0.006 +19301105, -2.62, 1.21, -0.29, 0.006 +19301106, -0.04, -0.67, -0.59, 0.006 +19301107, -3.26, 0.41, -1.12, 0.006 +19301108, -1.19, 0.46, -0.19, 0.006 +19301110, -1.96, -0.38, -0.66, 0.006 +19301111, 0.95, -0.54, -0.67, 0.006 +19301112, 1.64, -0.44, -1.64, 0.006 +19301113, 2.40, 1.14, 0.08, 0.006 +19301114, 2.43, -0.75, 0.08, 0.006 +19301115, 1.01, 1.43, 0.62, 0.006 +19301117, -2.81, 0.91, 0.85, 0.006 +19301118, 0.69, -0.81, 0.17, 0.006 +19301119, 1.93, -0.53, 0.18, 0.006 +19301120, -0.17, 1.10, 1.03, 0.006 +19301121, 1.29, -1.24, 1.30, 0.006 +19301122, -0.94, 1.12, -0.56, 0.006 +19301124, 0.16, 0.08, -0.14, 0.006 +19301125, -1.08, 0.66, -0.05, 0.006 +19301126, -1.39, -0.19, -0.96, 0.006 +19301128, -1.22, 0.49, -0.74, 0.006 +19301129, 0.96, -0.50, 0.45, 0.006 +19301201, 1.20, -1.18, -0.48, 0.005 +19301202, 0.77, 0.61, 0.03, 0.005 +19301203, -1.26, 0.71, -0.76, 0.005 +19301204, -1.61, -0.69, -0.06, 0.005 +19301205, 0.08, -0.59, -0.41, 0.005 +19301206, -1.06, 1.07, -0.26, 0.005 +19301208, -1.43, -0.06, -1.05, 0.005 +19301209, -0.13, -0.55, -0.92, 0.005 +19301210, -1.72, -0.60, -0.60, 0.005 +19301211, -0.97, -0.53, -0.67, 0.005 +19301212, -1.08, 0.46, 0.87, 0.005 +19301213, -2.52, -0.25, -0.83, 0.005 +19301215, -0.54, -0.80, -0.59, 0.005 +19301216, -3.19, -0.56, -2.23, 0.005 +19301217, 3.83, -2.86, 1.22, 0.005 +19301218, 1.18, 1.29, 0.47, 0.005 +19301219, 1.33, -0.51, 0.93, 0.005 +19301220, 0.11, 0.65, 0.75, 0.005 +19301222, -3.08, 1.72, -0.73, 0.005 +19301223, 0.32, -2.21, -0.51, 0.005 +19301224, 1.20, 0.26, -0.43, 0.005 +19301226, -1.82, 1.25, -1.74, 0.005 +19301227, -0.74, -0.36, -0.79, 0.005 +19301229, -0.26, -1.97, -0.41, 0.005 +19301230, 2.00, -1.04, 0.43, 0.005 +19301231, 1.64, 1.43, 2.51, 0.005 +19310102, 3.49, 0.07, 0.63, 0.006 +19310103, 1.82, -0.26, 2.96, 0.006 +19310105, -0.80, 0.28, 1.07, 0.006 +19310106, 1.51, -0.26, 0.95, 0.006 +19310107, 0.05, 1.07, 1.03, 0.006 +19310108, 0.65, 0.63, 1.13, 0.006 +19310109, -0.53, 1.50, 1.38, 0.006 +19310110, 0.42, -0.79, 0.43, 0.006 +19310112, -1.71, 0.93, -1.15, 0.006 +19310113, -1.10, -0.54, -0.73, 0.006 +19310114, 0.66, 0.52, 0.52, 0.006 +19310115, -1.98, 0.65, -0.06, 0.006 +19310116, 1.17, -0.89, -0.30, 0.006 +19310117, -0.43, 0.61, 0.41, 0.006 +19310119, -0.60, 0.21, -1.24, 0.006 +19310120, 1.93, -1.16, 0.19, 0.006 +19310121, 0.05, 0.35, 0.21, 0.006 +19310122, 1.70, -0.93, 0.96, 0.006 +19310123, 1.77, 0.40, -0.29, 0.006 +19310124, -0.76, 0.31, 0.35, 0.006 +19310126, 0.71, -0.72, -0.23, 0.006 +19310127, -0.44, 0.78, 0.54, 0.006 +19310128, -1.93, 0.99, -0.47, 0.006 +19310129, 1.06, -0.90, -0.87, 0.006 +19310130, 0.24, 0.27, 0.57, 0.006 +19310131, -0.60, 0.21, -0.41, 0.006 +19310202, 0.30, -0.06, 0.05, 0.002 +19310203, 0.39, 0.09, -0.45, 0.002 +19310204, 0.46, -0.21, 0.34, 0.002 +19310205, -0.57, 0.29, -0.50, 0.002 +19310206, 0.31, 0.95, -0.27, 0.002 +19310207, 1.31, -0.52, 0.10, 0.002 +19310209, 2.44, 0.24, 0.43, 0.002 +19310210, 1.45, -0.33, 0.70, 0.002 +19310211, 0.56, 0.18, -0.92, 0.002 +19310213, -0.23, 0.33, 0.45, 0.002 +19310214, -0.16, 0.10, -0.51, 0.002 +19310216, 1.24, 0.18, 0.20, 0.002 +19310217, -1.46, 0.64, 0.22, 0.002 +19310218, 0.71, 0.36, -0.22, 0.002 +19310219, 1.15, 0.70, -0.24, 0.002 +19310220, 1.43, 0.00, -0.30, 0.002 +19310221, 1.27, -0.19, 0.68, 0.002 +19310224, 1.22, -0.58, -0.43, 0.002 +19310225, -1.00, 0.26, 0.31, 0.002 +19310226, 0.82, -0.29, 1.40, 0.002 +19310227, -0.53, 0.83, 0.71, 0.002 +19310228, -0.61, 0.05, -0.45, 0.002 +19310302, -1.91, 1.51, -1.79, 0.005 +19310303, -0.27, -0.50, 0.13, 0.005 +19310304, -1.01, 0.08, 0.29, 0.005 +19310305, 1.63, -0.64, -0.03, 0.005 +19310306, -1.73, 1.05, -0.30, 0.005 +19310307, 1.60, -1.34, 0.32, 0.005 +19310309, 0.53, 0.78, -1.23, 0.005 +19310310, -0.09, 0.17, 0.73, 0.005 +19310311, -1.14, 0.29, -0.11, 0.005 +19310312, -0.54, 0.14, -0.45, 0.005 +19310313, -0.55, -0.65, -0.16, 0.005 +19310314, 1.21, -0.13, 0.03, 0.005 +19310316, 1.19, -0.41, 0.47, 0.005 +19310317, -0.97, 0.82, -0.55, 0.005 +19310318, 1.08, -0.27, 0.00, 0.005 +19310319, 1.04, 0.95, -0.32, 0.005 +19310320, 0.25, -0.04, -0.28, 0.005 +19310321, -0.74, 0.39, 0.74, 0.005 +19310323, -0.54, 0.04, 0.13, 0.005 +19310324, 0.79, -1.14, -0.08, 0.005 +19310325, -0.45, 0.38, 0.12, 0.005 +19310326, -1.23, 0.90, -0.45, 0.005 +19310327, -1.68, 0.46, -0.10, 0.005 +19310328, -1.95, 0.03, -0.48, 0.005 +19310330, -1.10, -0.25, 0.11, 0.005 +19310331, 0.19, 0.40, -0.45, 0.005 +19310401, -1.02, 0.16, -1.21, 0.003 +19310402, -0.97, -0.07, 0.73, 0.003 +19310404, 1.78, -0.52, 0.00, 0.003 +19310406, -0.81, 0.47, 0.42, 0.003 +19310407, -1.22, -0.03, -1.00, 0.003 +19310408, 1.05, -1.30, 0.63, 0.003 +19310409, -0.33, 1.29, -1.40, 0.003 +19310410, 0.15, -0.05, 0.59, 0.003 +19310411, 0.07, -0.01, 0.18, 0.003 +19310413, 1.12, -0.55, -0.59, 0.003 +19310414, -1.00, 0.69, -0.26, 0.003 +19310415, -1.84, 0.03, -0.64, 0.003 +19310416, -1.03, -0.17, -0.21, 0.003 +19310417, -1.53, -0.51, 0.74, 0.003 +19310418, 0.73, -0.49, -0.04, 0.003 +19310420, 0.33, 0.06, -0.45, 0.003 +19310421, -2.33, 0.80, -0.44, 0.003 +19310422, -1.95, -0.25, 0.49, 0.003 +19310423, 0.03, -1.05, -1.75, 0.003 +19310424, -0.17, 0.18, -0.43, 0.003 +19310425, -1.81, 0.75, -1.35, 0.003 +19310427, -1.43, -1.84, -1.19, 0.003 +19310428, -0.74, -0.65, 0.03, 0.003 +19310429, -1.90, -0.27, 0.29, 0.003 +19310430, 4.63, -1.70, 1.99, 0.003 +19310501, -2.28, 3.20, -1.17, 0.003 +19310502, 0.79, -1.40, 0.16, 0.003 +19310504, 1.73, -0.55, -0.33, 0.003 +19310505, -1.00, 0.00, 0.50, 0.003 +19310506, 0.43, 0.10, -0.59, 0.003 +19310507, -0.24, -0.03, -1.14, 0.003 +19310508, 2.73, -0.91, 0.03, 0.003 +19310509, -1.18, 1.83, -0.16, 0.003 +19310511, -0.06, -0.54, 0.46, 0.003 +19310512, -0.97, 0.79, -0.12, 0.003 +19310513, -0.30, 0.67, -0.87, 0.003 +19310514, -2.20, 1.36, -0.63, 0.003 +19310515, -1.14, -0.43, -0.84, 0.003 +19310516, -0.52, 0.75, -0.23, 0.003 +19310518, -3.25, 1.98, -1.84, 0.003 +19310519, -0.37, -1.91, -0.04, 0.003 +19310520, -0.53, 0.37, 0.91, 0.003 +19310521, 0.91, -2.19, 0.50, 0.003 +19310522, 0.39, -0.29, 0.78, 0.003 +19310523, -0.98, 1.36, 0.14, 0.003 +19310525, -2.92, 1.33, -0.85, 0.003 +19310526, -0.22, -0.60, -0.61, 0.003 +19310527, -1.34, 0.49, 0.01, 0.003 +19310528, 0.57, -0.68, -1.24, 0.003 +19310529, -2.04, 0.96, 0.00, 0.003 +19310601, -4.37, 0.94, -0.89, 0.003 +19310602, -1.36, -0.84, -0.28, 0.003 +19310603, 6.37, -4.53, 1.41, 0.003 +19310604, 3.49, 0.84, 3.22, 0.003 +19310605, -0.44, 1.06, 0.80, 0.003 +19310606, -2.26, 1.68, -0.09, 0.003 +19310608, 2.93, -2.52, 0.56, 0.003 +19310609, -1.32, 1.09, 0.21, 0.003 +19310610, 2.13, -2.95, -0.08, 0.003 +19310611, 0.48, -1.39, 2.39, 0.003 +19310612, 0.38, -0.18, 1.41, 0.003 +19310613, -0.14, 0.87, 0.51, 0.003 +19310615, -0.57, 1.18, -1.02, 0.003 +19310616, 0.13, -0.47, 0.61, 0.003 +19310617, -0.92, 0.36, -0.60, 0.003 +19310618, -1.66, 1.65, -1.05, 0.003 +19310619, -0.29, 0.03, 0.66, 0.003 +19310620, 5.07, -3.34, 0.82, 0.003 +19310622, 3.98, -0.81, 0.00, 0.003 +19310623, -0.94, 2.09, -0.09, 0.003 +19310624, 4.15, -0.93, 3.54, 0.003 +19310625, -0.51, 1.74, -1.54, 0.003 +19310626, 2.54, -1.82, 2.05, 0.003 +19310627, 0.99, -0.39, -0.09, 0.003 +19310629, -2.21, 0.86, -1.00, 0.003 +19310630, -1.63, 0.80, -0.74, 0.003 +19310701, 1.19, -1.37, 0.50, 0.002 +19310702, -0.59, 0.16, -0.21, 0.002 +19310703, 1.97, -0.24, 0.36, 0.002 +19310706, -1.01, 0.71, -0.43, 0.002 +19310707, -3.67, 1.79, -1.90, 0.002 +19310708, -0.91, -0.03, -0.83, 0.002 +19310709, 0.87, -0.75, 0.41, 0.002 +19310710, 1.05, -0.56, 1.14, 0.002 +19310711, -1.53, 1.62, -0.80, 0.002 +19310713, -1.06, -0.50, -1.13, 0.002 +19310714, -0.71, 0.46, -0.73, 0.002 +19310715, -2.13, 0.31, -1.70, 0.002 +19310716, 2.03, -0.40, 0.93, 0.002 +19310717, 1.04, -0.47, 1.94, 0.002 +19310718, 0.05, -0.48, 0.02, 0.002 +19310720, 1.18, -0.87, 1.38, 0.002 +19310721, 1.02, -0.92, 1.76, 0.002 +19310722, -2.05, 1.58, -0.89, 0.002 +19310723, -0.16, 0.30, -0.55, 0.002 +19310724, -1.68, 0.74, -1.14, 0.002 +19310725, -0.39, 0.56, 0.57, 0.002 +19310727, 0.54, -0.81, -0.58, 0.002 +19310728, 0.92, -1.24, 1.24, 0.002 +19310729, -2.71, 1.88, -1.04, 0.002 +19310730, 0.51, -0.45, 0.25, 0.002 +19310731, -0.37, 0.36, -0.54, 0.002 +19310801, 0.63, -0.34, 0.12, 0.001 +19310803, 0.50, -0.91, 0.13, 0.001 +19310804, -0.67, 0.25, -1.26, 0.001 +19310805, -1.43, 1.06, -0.67, 0.001 +19310806, -0.54, 0.03, -0.71, 0.001 +19310807, 0.23, -0.12, -0.62, 0.001 +19310808, 0.08, 0.50, -0.15, 0.001 +19310810, -0.40, -0.30, -0.71, 0.001 +19310811, 3.05, -1.37, -0.09, 0.001 +19310812, -1.18, 1.00, 0.80, 0.001 +19310813, 1.37, -1.20, 0.06, 0.001 +19310814, 1.81, -1.05, 0.99, 0.001 +19310815, 0.99, -0.42, 0.58, 0.001 +19310817, -2.26, 1.38, -0.34, 0.001 +19310818, 0.30, -1.03, 1.57, 0.001 +19310819, 0.26, -0.32, 1.36, 0.001 +19310820, 0.19, 0.34, -0.96, 0.001 +19310821, -2.49, 1.31, -0.18, 0.001 +19310822, -0.12, -0.26, -0.31, 0.001 +19310824, -0.49, -0.29, -0.46, 0.001 +19310825, -0.32, 0.55, -1.17, 0.001 +19310826, 1.50, -1.56, 0.98, 0.001 +19310827, -0.51, 0.46, -0.21, 0.001 +19310828, 0.77, -0.49, 0.00, 0.001 +19310829, 0.65, -0.52, 0.44, 0.001 +19310831, -1.36, 1.04, -0.81, 0.001 +19310901, 0.34, 0.28, -0.95, 0.001 +19310902, -1.70, 1.06, -1.50, 0.001 +19310903, -2.13, 0.70, -1.68, 0.001 +19310904, -0.57, 0.73, -0.52, 0.001 +19310908, -2.93, 1.23, -1.90, 0.001 +19310909, -0.80, -0.79, -0.55, 0.001 +19310910, -1.06, -0.14, 0.32, 0.001 +19310911, 0.51, -1.07, -0.57, 0.001 +19310912, -2.05, 2.23, 1.03, 0.001 +19310914, -2.61, -0.13, -3.93, 0.001 +19310915, -1.29, -0.68, -0.10, 0.001 +19310916, -0.97, -0.08, 0.74, 0.001 +19310917, 1.36, -1.95, 0.12, 0.001 +19310918, -4.47, 2.93, -2.02, 0.001 +19310919, -3.38, -0.15, -1.65, 0.001 +19310921, -1.58, -3.66, 1.12, 0.001 +19310922, -0.96, -1.19, 0.30, 0.001 +19310923, 6.49, -4.40, 7.50, 0.001 +19310924, -6.80, 5.57, -1.86, 0.001 +19310925, 1.60, -4.00, -1.12, 0.001 +19310926, -1.16, 3.51, 0.60, 0.001 +19310928, -2.10, -0.74, -0.71, 0.001 +19310929, -4.08, 0.13, -0.16, 0.001 +19310930, -3.11, -0.83, -1.12, 0.001 +19311001, -1.78, -2.29, -1.00, 0.004 +19311002, 1.40, 0.36, -0.38, 0.004 +19311003, -2.86, 3.34, 0.33, 0.004 +19311005, -5.84, 1.37, -3.52, 0.004 +19311006, 11.16, -6.05, 1.36, 0.004 +19311007, -0.88, 3.58, 1.46, 0.004 +19311008, 7.91, -3.97, 3.11, 0.004 +19311009, -0.04, 1.60, 2.20, 0.004 +19311010, 0.73, 0.24, 0.12, 0.004 +19311013, -4.81, 3.22, -1.48, 0.004 +19311014, -2.19, 0.39, -1.39, 0.004 +19311015, 1.87, -1.09, 1.60, 0.004 +19311016, 3.03, -3.21, 0.26, 0.004 +19311017, 0.07, 0.66, 0.31, 0.004 +19311019, 0.74, -0.21, 0.45, 0.004 +19311020, 4.25, -1.87, 1.43, 0.004 +19311021, -0.89, 2.86, -2.41, 0.004 +19311022, -3.24, 0.46, -0.21, 0.004 +19311023, 3.10, -2.02, -1.32, 0.004 +19311024, 0.74, 0.71, 1.20, 0.004 +19311026, -2.58, 2.09, -0.28, 0.004 +19311027, -1.89, 0.69, -1.18, 0.004 +19311028, -2.70, 1.63, 0.04, 0.004 +19311029, 0.22, -0.87, 0.02, 0.004 +19311030, 2.73, -2.49, 1.65, 0.004 +19311031, 1.12, -0.64, 1.54, 0.004 +19311102, -0.21, 0.92, 0.82, 0.007 +19311104, 2.61, -0.79, -0.53, 0.007 +19311105, -0.26, 0.85, 0.05, 0.007 +19311106, 2.74, -0.19, -0.66, 0.007 +19311107, 2.53, -0.77, 2.39, 0.007 +19311109, 1.23, -0.03, 1.51, 0.007 +19311110, -1.90, 0.07, -0.47, 0.007 +19311111, -1.30, 0.30, 0.62, 0.007 +19311112, -0.26, 1.20, -0.24, 0.007 +19311113, -3.00, 2.19, -2.23, 0.007 +19311114, -1.19, 0.49, -1.67, 0.007 +19311116, -1.23, 0.29, -0.61, 0.007 +19311117, 1.20, -0.87, -1.05, 0.007 +19311118, -3.03, 2.14, -0.01, 0.007 +19311119, -0.48, -2.07, 0.52, 0.007 +19311120, -2.97, 1.58, -1.35, 0.007 +19311121, -0.55, 0.70, 0.81, 0.007 +19311123, -0.94, 0.01, -0.80, 0.007 +19311124, 1.55, -1.27, 0.30, 0.007 +19311125, -3.17, 1.80, -0.85, 0.007 +19311127, -2.49, 0.71, -1.43, 0.007 +19311128, -1.30, 0.90, -0.36, 0.007 +19311130, 3.36, -3.47, -0.27, 0.007 +19311201, -0.91, -0.15, -0.39, 0.005 +19311202, -3.11, 2.24, -1.08, 0.005 +19311203, 1.48, -3.05, -0.90, 0.005 +19311204, -1.97, 0.77, 0.01, 0.005 +19311205, 3.06, -2.65, 1.25, 0.005 +19311207, -0.19, 0.66, -1.77, 0.005 +19311208, -3.00, 1.76, -0.21, 0.005 +19311209, -2.59, 0.27, -1.30, 0.005 +19311210, -2.06, -0.79, -2.01, 0.005 +19311211, -2.76, 1.12, -0.31, 0.005 +19311212, -1.13, -0.47, -0.90, 0.005 +19311214, -2.31, 0.49, -2.09, 0.005 +19311215, 0.97, -3.00, -1.02, 0.005 +19311216, -2.11, 2.64, 0.11, 0.005 +19311217, -3.16, 0.56, -3.95, 0.005 +19311218, 7.97, -6.23, 4.75, 0.005 +19311219, 0.75, 4.00, 1.48, 0.005 +19311221, -2.62, -0.30, 2.08, 0.005 +19311222, 1.39, -1.58, -2.93, 0.005 +19311223, -3.48, 2.82, -2.15, 0.005 +19311224, 0.02, 0.90, -0.88, 0.005 +19311228, -2.67, -0.75, -1.56, 0.005 +19311229, 2.09, -2.30, -0.13, 0.005 +19311230, 1.65, -1.93, -0.22, 0.005 +19311231, 0.99, 3.46, 3.92, 0.005 +19320102, -3.47, 3.73, 2.13, 0.009 +19320104, -2.99, 1.08, -0.76, 0.009 +19320105, -0.37, -1.04, 0.34, 0.009 +19320106, 6.44, -4.30, 2.95, 0.009 +19320107, 1.99, -0.82, 4.38, 0.009 +19320108, 3.80, -2.24, 1.66, 0.009 +19320109, -1.55, 2.78, 0.20, 0.009 +19320111, 1.11, -2.03, 2.92, 0.009 +19320112, -0.90, 0.30, -0.30, 0.009 +19320113, 4.52, -2.02, 0.57, 0.009 +19320114, 1.10, 0.72, 0.19, 0.009 +19320115, -0.09, 0.79, -0.63, 0.009 +19320116, -1.59, 1.12, -0.17, 0.009 +19320118, -2.36, 1.71, -0.73, 0.009 +19320119, -0.36, -0.38, 0.11, 0.009 +19320120, 1.66, -2.35, 1.93, 0.009 +19320121, -0.06, 0.90, -0.81, 0.009 +19320122, -3.75, 2.47, -0.09, 0.009 +19320123, -0.79, -0.56, -1.47, 0.009 +19320125, 0.39, -0.03, 0.61, 0.009 +19320126, 0.91, -0.11, -1.19, 0.009 +19320127, -1.67, -0.70, -0.31, 0.009 +19320128, -1.24, 1.71, 0.40, 0.009 +19320129, -1.22, 0.95, -1.15, 0.009 +19320130, -0.32, 1.99, -0.91, 0.009 +19320201, 3.73, -4.29, 2.23, 0.010 +19320202, -1.73, 1.89, -1.01, 0.010 +19320203, 0.01, -0.99, -0.43, 0.010 +19320204, -0.73, 1.30, -1.46, 0.010 +19320205, -2.67, 1.96, -0.23, 0.010 +19320206, -0.86, 0.29, 1.12, 0.010 +19320208, -0.92, 1.16, -2.00, 0.010 +19320209, -1.22, 0.28, 0.81, 0.010 +19320210, -0.30, -0.48, 0.86, 0.010 +19320211, 7.38, -5.33, 1.03, 0.010 +19320213, 8.23, -4.49, 0.35, 0.010 +19320215, -2.79, 2.39, 0.73, 0.010 +19320216, 3.84, -2.65, -0.61, 0.010 +19320217, -3.47, 3.89, -0.53, 0.010 +19320218, 2.29, -2.14, -1.17, 0.010 +19320219, 0.16, 0.70, 0.40, 0.010 +19320220, -2.20, 1.39, -0.77, 0.010 +19320223, -3.20, 1.11, 0.08, 0.010 +19320224, 2.04, -1.42, -0.40, 0.010 +19320225, -0.68, 1.01, -0.88, 0.010 +19320226, -0.04, -0.28, 0.17, 0.010 +19320227, -0.29, 0.41, 0.55, 0.010 +19320229, -0.26, 0.79, -0.06, 0.010 +19320301, 0.39, -1.08, 0.40, 0.006 +19320302, 3.92, -2.58, 0.17, 0.006 +19320303, -0.17, 1.02, -0.07, 0.006 +19320304, 0.12, -0.17, -0.14, 0.006 +19320305, 2.49, -0.50, 0.68, 0.006 +19320307, -1.26, 0.45, 1.44, 0.006 +19320308, 1.58, -1.18, 0.70, 0.006 +19320309, -1.45, 0.89, -0.12, 0.006 +19320310, -0.80, 0.36, -1.09, 0.006 +19320311, -2.22, 1.03, 0.00, 0.006 +19320312, 0.71, -0.09, 0.22, 0.006 +19320314, -3.16, 2.01, -0.80, 0.006 +19320315, -0.32, 0.74, -0.96, 0.006 +19320316, -2.00, 0.85, -1.19, 0.006 +19320317, 1.83, -3.25, 0.62, 0.006 +19320318, -2.45, 2.17, 1.06, 0.006 +19320319, -0.70, 0.22, -1.03, 0.006 +19320321, 1.28, -1.49, -0.82, 0.006 +19320322, -0.64, 0.59, -0.14, 0.006 +19320323, -1.46, 0.53, 0.33, 0.006 +19320324, -0.92, 0.31, 0.55, 0.006 +19320326, -2.67, 1.91, -0.57, 0.006 +19320328, -0.80, -0.08, -0.81, 0.006 +19320329, 0.34, -1.10, 0.24, 0.006 +19320330, 1.66, -2.63, 1.05, 0.006 +19320331, -4.76, 3.03, -2.01, 0.006 +19320401, -1.43, 1.37, -1.96, 0.004 +19320402, -1.03, 0.71, -0.53, 0.004 +19320404, -0.88, -0.88, -2.10, 0.004 +19320405, -3.69, 2.50, -1.56, 0.004 +19320406, -2.37, -0.22, 0.14, 0.004 +19320407, -0.80, -0.26, 0.65, 0.004 +19320408, -3.94, 1.00, 0.00, 0.004 +19320409, 1.82, -1.23, 0.63, 0.004 +19320411, -3.26, 0.51, 1.75, 0.004 +19320412, -0.36, -0.83, -1.08, 0.004 +19320413, -1.24, 0.85, 0.48, 0.004 +19320414, 3.22, -4.82, 1.09, 0.004 +19320415, 2.84, -0.97, 1.65, 0.004 +19320416, -1.10, 2.71, 0.17, 0.004 +19320418, -2.79, 0.46, 0.88, 0.004 +19320419, -1.25, 0.29, -0.44, 0.004 +19320420, -0.27, -2.14, 1.33, 0.004 +19320421, 2.96, -1.12, -0.22, 0.004 +19320422, -3.77, 4.04, -1.01, 0.004 +19320423, 0.89, -2.24, 1.60, 0.004 +19320425, 0.12, -0.54, 0.38, 0.004 +19320426, 1.34, -0.90, 1.18, 0.004 +19320427, 2.15, -0.92, 0.31, 0.004 +19320428, -3.41, 2.80, -2.11, 0.004 +19320429, -2.96, 0.71, 0.61, 0.004 +19320430, 0.06, -0.25, -0.32, 0.004 +19320502, -1.31, 0.42, -1.37, 0.002 +19320503, -1.22, 0.90, -0.97, 0.002 +19320504, 0.75, -1.86, 0.07, 0.002 +19320505, -0.71, 0.40, 1.86, 0.002 +19320506, 6.16, -4.87, 0.33, 0.002 +19320507, -0.96, 2.24, 1.22, 0.002 +19320509, -1.15, 0.85, -0.19, 0.002 +19320510, 0.98, -1.60, -0.51, 0.002 +19320511, -0.15, 0.88, 0.47, 0.002 +19320512, -2.91, 2.38, -1.63, 0.002 +19320513, -3.05, 1.03, 0.79, 0.002 +19320514, -1.35, 1.90, -1.45, 0.002 +19320516, 1.64, -2.63, -0.27, 0.002 +19320517, 0.01, 0.50, -0.42, 0.002 +19320518, -1.90, 1.04, 0.65, 0.002 +19320519, 0.13, -1.69, -0.09, 0.002 +19320520, 0.00, 0.92, -0.06, 0.002 +19320521, 0.08, -1.32, -0.85, 0.002 +19320523, -0.75, 0.69, -0.11, 0.002 +19320524, -3.45, 1.55, -0.67, 0.002 +19320525, -2.98, -0.88, -2.45, 0.002 +19320526, 0.72, -3.02, 0.02, 0.002 +19320527, -4.19, 3.78, -0.61, 0.002 +19320528, 0.20, -1.30, 1.10, 0.002 +19320531, -6.82, 4.47, 0.36, 0.002 +19320601, -1.18, -1.20, 1.82, 0.001 +19320602, 4.21, -3.57, -0.25, 0.001 +19320603, 4.14, -2.00, 1.96, 0.001 +19320604, 6.41, -4.00, 0.97, 0.001 +19320606, -2.14, 1.47, 0.87, 0.001 +19320607, -3.64, 4.27, -0.83, 0.001 +19320608, -4.78, 3.05, 0.79, 0.001 +19320609, -0.30, -0.82, -2.67, 0.001 +19320610, 6.32, -5.67, 2.08, 0.001 +19320611, -0.50, 3.40, -1.24, 0.001 +19320613, -0.93, 0.09, 0.49, 0.001 +19320614, 1.96, -1.73, 1.15, 0.001 +19320615, 3.25, -2.34, -0.31, 0.001 +19320616, 0.36, 0.24, 3.67, 0.001 +19320617, -4.70, 2.90, 0.07, 0.001 +19320618, 0.28, 0.70, -0.70, 0.001 +19320620, 0.47, -1.01, -0.43, 0.001 +19320621, -2.08, 1.02, -0.65, 0.001 +19320622, -0.27, 0.74, -0.80, 0.001 +19320623, 0.95, 0.18, 0.75, 0.001 +19320624, -3.55, 3.51, -1.10, 0.001 +19320625, -0.26, 0.61, -0.75, 0.001 +19320627, -2.90, 1.08, 1.62, 0.001 +19320628, 0.11, -0.24, -1.28, 0.001 +19320629, 0.68, 0.23, -1.16, 0.001 +19320630, -1.38, -1.44, 1.66, 0.001 +19320701, 2.65, -0.28, 0.02, 0.001 +19320705, -0.99, 0.24, 2.51, 0.001 +19320706, 1.86, -1.00, -1.46, 0.001 +19320707, -2.93, 2.77, 2.22, 0.001 +19320708, -1.24, 0.85, 0.38, 0.001 +19320709, 0.94, -0.27, -0.09, 0.001 +19320711, 2.58, -2.09, 2.19, 0.001 +19320712, 0.27, -0.94, 0.19, 0.001 +19320713, 4.14, -1.27, 1.16, 0.001 +19320714, -1.83, 1.41, 0.25, 0.001 +19320715, 4.24, -3.00, 2.36, 0.001 +19320716, 0.14, 1.45, 0.60, 0.001 +19320718, -2.60, 2.36, -0.93, 0.001 +19320719, -0.42, -0.03, -0.94, 0.001 +19320720, 3.01, -2.24, 2.77, 0.001 +19320721, 2.47, -1.59, 3.67, 0.001 +19320722, 2.84, -0.96, 2.77, 0.001 +19320723, 0.21, 1.53, -0.37, 0.001 +19320725, 4.40, -2.86, 5.68, 0.001 +19320726, -0.97, 2.05, 0.97, 0.001 +19320727, 4.34, -2.19, 0.45, 0.001 +19320728, 3.35, 2.51, -0.71, 0.001 +19320729, 2.72, -1.52, 1.45, 0.001 +19320730, 0.74, 1.90, -0.33, 0.001 +19320801, -0.35, 1.64, 0.21, 0.001 +19320802, -2.53, 2.29, -1.81, 0.001 +19320803, 7.89, -6.15, 1.75, 0.001 +19320804, 1.69, 1.15, -0.45, 0.001 +19320805, 3.70, -2.48, 0.50, 0.001 +19320806, 5.91, -3.40, 2.93, 0.001 +19320808, 2.94, 2.78, 2.77, 0.001 +19320809, 0.07, 1.55, 1.99, 0.001 +19320810, 4.11, 0.49, 4.19, 0.001 +19320811, -1.38, 2.65, -0.44, 0.001 +19320812, -6.31, 3.19, 0.37, 0.001 +19320813, -1.06, -1.43, -1.88, 0.001 +19320815, 6.01, -2.34, 2.39, 0.001 +19320816, 3.43, -0.34, 2.69, 0.001 +19320817, -2.02, 0.65, -3.55, 0.001 +19320818, 1.00, -1.83, 1.21, 0.001 +19320819, -0.95, 1.77, 1.05, 0.001 +19320820, 0.26, 1.49, -0.90, 0.001 +19320822, 5.76, -0.93, 3.48, 0.001 +19320823, 2.11, 0.98, 0.74, 0.001 +19320824, 2.24, -0.25, 2.38, 0.001 +19320825, -0.44, 3.33, 2.09, 0.001 +19320826, 1.30, -0.04, 0.33, 0.001 +19320827, 1.90, 1.88, 1.28, 0.001 +19320829, 0.28, 1.52, 0.29, 0.001 +19320830, -1.34, 2.44, 0.19, 0.001 +19320831, -0.91, -2.11, -0.90, 0.001 +19320901, 0.39, 1.06, 0.75, 0.001 +19320902, 4.56, -0.01, 0.48, 0.001 +19320903, 2.31, -0.13, 0.09, 0.001 +19320906, -2.08, 1.22, 0.12, 0.001 +19320907, 3.94, -1.80, 0.28, 0.001 +19320908, -2.86, 3.51, -0.70, 0.001 +19320909, -2.15, -0.66, -1.49, 0.001 +19320910, 0.07, -1.92, 0.37, 0.001 +19320912, -6.40, 0.64, -3.57, 0.001 +19320913, -4.09, -1.17, -4.66, 0.001 +19320914, -5.14, 2.71, -2.67, 0.001 +19320915, 4.02, -4.60, 1.50, 0.001 +19320916, -0.69, 2.36, 1.96, 0.001 +19320917, -0.89, -0.32, -0.30, 0.001 +19320919, -1.57, 0.47, -0.50, 0.001 +19320920, 2.90, -2.49, 0.17, 0.001 +19320921, 10.96, -1.26, 5.21, 0.001 +19320922, -2.52, 2.53, -0.75, 0.001 +19320923, 1.34, -1.52, -0.53, 0.001 +19320924, 1.33, 0.18, 0.00, 0.001 +19320926, -4.93, 1.84, -1.29, 0.001 +19320927, 0.71, -1.05, 0.68, 0.001 +19320928, 2.36, -1.94, -0.16, 0.001 +19320929, -2.66, 1.44, -1.70, 0.001 +19320930, -0.19, -2.70, 1.25, 0.001 +19321001, 0.70, 0.24, 0.49, 0.001 +19321003, -1.35, 0.11, -1.89, 0.001 +19321004, 0.11, -0.34, -0.89, 0.001 +19321005, -7.33, 2.29, -2.21, 0.001 +19321006, 0.05, -1.95, -1.84, 0.001 +19321007, -5.04, 1.21, -3.95, 0.001 +19321008, -2.95, 1.10, -3.10, 0.001 +19321010, -5.52, 1.54, -3.58, 0.001 +19321011, 6.87, -3.90, 2.96, 0.001 +19321013, -2.49, 1.50, 0.68, 0.001 +19321014, 6.46, -3.35, 2.89, 0.001 +19321015, 0.77, 0.91, 1.04, 0.001 +19321017, -2.52, 0.31, -0.86, 0.001 +19321018, 1.57, -1.55, -0.02, 0.001 +19321019, 3.57, -2.37, 0.49, 0.001 +19321020, -1.76, 1.01, 0.87, 0.001 +19321021, -5.47, 2.31, -2.32, 0.001 +19321022, -0.13, -0.34, 1.35, 0.001 +19321024, 0.43, -1.22, -1.78, 0.001 +19321025, -0.86, -0.19, 0.14, 0.001 +19321026, 1.38, -2.35, 1.68, 0.001 +19321027, 0.98, 0.00, 0.13, 0.001 +19321028, 1.61, -0.99, 1.13, 0.001 +19321029, -1.14, 2.06, -2.50, 0.001 +19321031, -0.72, -0.60, 0.28, 0.001 +19321101, -3.63, 1.78, -1.53, 0.001 +19321102, -3.15, 0.65, -1.74, 0.001 +19321103, -0.63, -0.78, -2.95, 0.001 +19321104, 5.42, -2.40, 0.52, 0.001 +19321105, 1.17, 0.33, 1.39, 0.001 +19321107, 3.53, -0.51, 1.52, 0.001 +19321109, -3.75, 3.63, -2.08, 0.001 +19321110, 6.47, -4.45, 2.26, 0.001 +19321111, 3.66, -0.10, 0.98, 0.001 +19321112, 0.04, 2.09, -0.13, 0.001 +19321114, -2.81, 0.56, -1.23, 0.001 +19321115, -0.17, -1.91, -0.78, 0.001 +19321116, -2.90, 3.05, -2.16, 0.001 +19321117, -0.74, 0.01, -2.49, 0.001 +19321118, -0.10, 0.10, 0.38, 0.001 +19321119, 1.43, -0.96, -0.19, 0.001 +19321121, -0.54, -0.42, -0.05, 0.001 +19321122, -0.30, 0.12, -0.67, 0.001 +19321123, -4.08, 1.03, -1.19, 0.001 +19321125, -1.20, -0.55, 0.08, 0.001 +19321126, 0.48, 0.06, 1.25, 0.001 +19321128, -0.38, -0.27, -1.42, 0.001 +19321129, -0.37, -0.03, -0.98, 0.001 +19321130, -2.68, 0.42, -2.48, 0.001 +19321201, 2.36, -1.13, 0.20, 0.000 +19321202, -3.14, 1.80, -1.81, 0.000 +19321203, -0.28, -0.77, -2.00, 0.000 +19321205, 0.91, -0.49, -0.33, 0.000 +19321206, 4.39, -4.51, 1.09, 0.000 +19321207, 0.50, 0.58, 0.62, 0.000 +19321208, -0.05, 0.23, -0.92, 0.000 +19321209, 2.23, -1.76, 0.20, 0.000 +19321210, -0.55, -0.23, -0.04, 0.000 +19321212, 0.52, -1.08, 1.81, 0.000 +19321213, -1.28, 0.64, -2.53, 0.000 +19321214, 1.72, -2.27, 0.55, 0.000 +19321215, -0.57, 1.71, -2.76, 0.000 +19321216, -0.65, 0.21, -1.19, 0.000 +19321217, -0.04, 0.11, -0.06, 0.000 +19321219, -0.33, -0.96, -1.65, 0.000 +19321220, -1.99, 0.06, -1.02, 0.000 +19321221, -0.40, -0.66, -1.15, 0.000 +19321222, -3.36, 1.93, -2.28, 0.000 +19321223, -0.19, -1.57, -0.42, 0.000 +19321224, 1.28, 0.15, 1.54, 0.000 +19321227, -0.65, -1.48, -1.21, 0.000 +19321228, 0.06, 0.40, -0.35, 0.000 +19321229, 1.52, -2.62, -1.30, 0.000 +19321230, 2.72, 0.03, 6.78, 0.000 +19321231, -0.04, 3.37, 1.07, 0.000 +19330103, -0.72, 1.73, -1.08, 0.000 +19330104, 4.33, -1.92, 3.60, 0.000 +19330105, -0.28, 2.47, 0.91, 0.000 +19330106, 1.42, -0.89, 2.39, 0.000 +19330109, -1.05, 0.64, -0.47, 0.000 +19330110, 2.57, -1.73, 2.52, 0.000 +19330111, -0.21, 1.51, 0.86, 0.000 +19330112, -0.99, 0.07, -0.44, 0.000 +19330113, -0.16, -0.82, -2.24, 0.000 +19330114, -0.23, -0.22, 0.21, 0.000 +19330116, -2.24, 2.00, -1.17, 0.000 +19330117, 0.15, -1.18, -0.70, 0.000 +19330118, -1.67, 1.36, -0.07, 0.000 +19330119, 0.54, -1.31, 0.61, 0.000 +19330120, 1.21, -1.07, 0.56, 0.000 +19330121, 0.45, -0.40, 0.54, 0.000 +19330123, -0.87, 0.76, -1.22, 0.000 +19330124, -0.43, 0.90, -0.07, 0.000 +19330125, 1.43, -2.14, 0.89, 0.000 +19330126, -0.51, 1.15, -0.95, 0.000 +19330127, -0.20, -1.06, 1.25, 0.000 +19330128, -0.81, 1.64, -1.00, 0.000 +19330130, -0.06, -1.41, 0.88, 0.000 +19330131, -0.21, 0.49, 0.73, 0.000 +19330201, -2.91, 1.14, 0.21, -0.001 +19330202, -1.73, -0.92, -0.40, -0.001 +19330203, -0.06, 0.32, 0.99, -0.001 +19330204, -0.98, 0.54, -0.45, -0.001 +19330206, 0.04, -0.70, 0.60, -0.001 +19330207, 0.94, -0.54, -0.08, -0.001 +19330208, 1.08, -0.48, 0.10, -0.001 +19330209, 2.04, -0.35, 2.09, -0.001 +19330210, -1.03, 0.42, -0.10, -0.001 +19330211, 0.34, -1.04, 0.93, -0.001 +19330214, -4.69, -0.47, -1.92, -0.001 +19330215, -0.10, 0.52, -0.22, -0.001 +19330216, -2.03, 0.34, -0.65, -0.001 +19330217, 1.49, -2.00, 1.26, -0.001 +19330218, -0.32, 2.25, -0.32, -0.001 +19330220, -2.70, 1.08, -1.44, -0.001 +19330221, -0.62, 0.15, -0.69, -0.001 +19330223, -4.01, 1.06, -1.52, -0.001 +19330224, 2.98, -3.11, 0.34, -0.001 +19330225, -4.73, 2.63, -1.80, -0.001 +19330227, -1.32, -2.56, -0.23, -0.001 +19330228, 2.16, -1.96, 0.51, -0.001 +19330301, 1.58, -0.56, 1.75, 0.002 +19330302, -1.80, 0.97, -1.09, 0.002 +19330303, 3.07, -1.68, 2.14, 0.002 +19330315, 15.76, 1.43, 8.17, 0.002 +19330316, 1.47, 3.38, 3.34, 0.002 +19330317, -3.48, 0.05, -0.96, 0.002 +19330318, -0.26, -0.07, -0.70, 0.002 +19330320, -1.37, 0.00, 0.95, 0.002 +19330321, -4.41, 1.62, -3.91, 0.002 +19330322, -1.21, -0.95, 0.05, 0.002 +19330323, 1.70, -1.58, 2.97, 0.002 +19330324, -0.38, 0.20, -0.35, 0.002 +19330325, -0.57, 0.16, -0.87, 0.002 +19330327, -2.02, -0.30, 0.44, 0.002 +19330328, 1.62, -2.22, 0.38, 0.002 +19330329, -1.85, 1.70, -0.71, 0.002 +19330330, -0.48, -0.87, -1.64, 0.002 +19330331, -2.73, 2.40, -1.48, 0.002 +19330401, 0.50, -0.74, -0.13, 0.004 +19330403, -0.09, -0.70, -0.68, 0.004 +19330404, 0.33, 0.09, -0.20, 0.004 +19330405, 1.00, 2.58, -2.74, 0.004 +19330406, 1.84, -1.19, 3.10, 0.004 +19330407, 0.97, 0.03, 0.60, 0.004 +19330408, 1.34, -1.42, 2.06, 0.004 +19330410, 4.85, -0.25, 0.07, 0.004 +19330411, -0.74, 1.56, -0.36, 0.004 +19330412, -1.49, -0.24, -2.10, 0.004 +19330413, 3.54, -1.47, 0.68, 0.004 +19330415, -0.25, 2.28, 0.55, 0.004 +19330417, -2.01, 1.82, -2.33, 0.004 +19330418, 1.90, 0.11, 2.50, 0.004 +19330419, 7.00, -1.61, 6.68, 0.004 +19330420, 8.22, -0.40, 1.55, 0.004 +19330421, -3.57, 0.60, 3.53, 0.004 +19330422, 3.63, -3.21, 1.28, 0.004 +19330424, 2.41, 3.08, 0.15, 0.004 +19330425, -2.24, 2.05, -2.94, 0.004 +19330426, 0.47, -0.47, 2.89, 0.004 +19330427, -0.79, 0.74, -1.19, 0.004 +19330428, 1.26, -0.84, -2.28, 0.004 +19330429, 5.96, 0.51, 2.69, 0.004 +19330501, 1.41, 1.77, 0.64, 0.002 +19330502, 0.04, 0.92, 1.47, 0.002 +19330503, -0.21, 1.82, -0.03, 0.002 +19330504, 3.08, -0.30, 3.09, 0.002 +19330505, 1.07, 2.82, -1.51, 0.002 +19330506, -2.78, 0.85, -0.96, 0.002 +19330508, -1.47, 0.70, -0.78, 0.002 +19330509, 0.61, 0.07, -3.24, 0.002 +19330510, 4.83, 0.01, 2.34, 0.002 +19330511, 3.17, 1.56, 1.87, 0.002 +19330512, 0.22, -0.50, 2.13, 0.002 +19330513, -1.80, 1.60, 0.36, 0.002 +19330515, -1.00, 2.59, -0.80, 0.002 +19330516, 1.94, 3.14, -1.77, 0.002 +19330517, 1.41, 1.86, 1.31, 0.002 +19330518, -0.38, 1.21, 1.56, 0.002 +19330519, -0.52, 0.51, 2.43, 0.002 +19330520, -1.70, -0.29, -0.94, 0.002 +19330522, -0.20, -0.71, -1.10, 0.002 +19330523, 3.57, 1.68, 0.44, 0.002 +19330524, 2.07, 1.47, 0.23, 0.002 +19330525, -0.54, 1.27, -1.23, 0.002 +19330526, 2.89, 1.42, -0.75, 0.002 +19330527, 3.64, -0.27, 2.02, 0.002 +19330529, 1.67, 0.60, 3.29, 0.002 +19330531, -0.99, -0.05, 3.63, 0.002 +19330601, 1.34, 1.25, 1.88, 0.001 +19330602, 3.87, 0.63, 0.66, 0.001 +19330603, -2.50, 1.90, -1.35, 0.001 +19330605, 1.98, 0.53, 0.71, 0.001 +19330606, -0.30, 0.98, -0.91, 0.001 +19330607, 1.63, 1.22, 1.09, 0.001 +19330608, 0.41, 0.93, -1.41, 0.001 +19330609, 1.04, -0.91, -0.66, 0.001 +19330610, 0.75, 0.28, -1.32, 0.001 +19330612, 3.50, -2.31, 3.44, 0.001 +19330613, -2.48, 0.87, -1.00, 0.001 +19330614, -1.49, -1.81, -2.03, 0.001 +19330615, -6.30, 0.67, -2.27, 0.001 +19330616, 0.20, -3.70, -1.26, 0.001 +19330617, 1.66, 1.97, 3.49, 0.001 +19330619, 7.26, 2.39, 4.99, 0.001 +19330620, -1.36, 0.80, -1.06, 0.001 +19330621, 0.85, -0.49, 0.76, 0.001 +19330622, -3.54, -0.21, -1.88, 0.001 +19330623, 2.94, 0.30, -1.25, 0.001 +19330624, 0.46, 1.11, -0.11, 0.001 +19330626, 2.63, -0.45, 1.83, 0.001 +19330627, 1.01, 0.72, -0.72, 0.001 +19330628, -1.14, 1.00, -2.95, 0.001 +19330629, -0.95, 0.42, -0.33, 0.001 +19330630, 1.61, -0.44, 1.62, 0.001 +19330701, 2.42, 0.27, 2.64, 0.001 +19330703, 3.53, -1.73, 3.40, 0.001 +19330705, -0.49, -0.75, 1.79, 0.001 +19330706, 2.55, -0.03, 3.05, 0.001 +19330707, 0.50, -0.51, 1.45, 0.001 +19330708, -0.16, 1.16, -0.47, 0.001 +19330710, -0.77, 0.16, -0.21, 0.001 +19330711, -0.98, 1.57, -1.00, 0.001 +19330712, 1.18, -1.03, 0.86, 0.001 +19330713, 1.38, 0.48, 0.28, 0.001 +19330714, -1.22, 0.85, -0.54, 0.001 +19330715, 0.59, -0.64, 0.11, 0.001 +19330717, 1.96, 1.31, 0.51, 0.001 +19330718, 0.38, 0.34, 0.70, 0.001 +19330719, -4.80, -0.58, -1.33, 0.001 +19330720, -8.49, 0.67, -3.28, 0.001 +19330721, -9.21, -3.08, -4.58, 0.001 +19330722, 0.25, -3.37, -1.59, 0.001 +19330724, 8.02, 1.18, 6.01, 0.001 +19330725, -1.34, 3.30, 0.80, 0.001 +19330726, 2.26, -0.61, 0.25, 0.001 +19330727, 0.80, 0.15, 1.38, 0.001 +19330728, -2.05, 1.46, -0.74, 0.001 +19330731, -4.70, -1.21, -3.48, 0.001 +19330801, 2.89, -1.12, 2.48, 0.001 +19330802, 2.35, -0.23, 1.11, 0.001 +19330803, -0.86, 1.52, -0.97, 0.001 +19330804, -2.09, 0.58, -0.53, 0.001 +19330807, -0.58, -0.76, -1.08, 0.001 +19330808, 2.93, -1.83, 0.72, 0.001 +19330809, 3.98, -0.08, 2.20, 0.001 +19330810, -1.19, 1.17, -0.70, 0.001 +19330811, -0.24, -0.65, -0.26, 0.001 +19330814, -1.21, -0.03, -1.13, 0.001 +19330815, 0.04, 0.66, 0.02, 0.001 +19330816, -2.55, -0.24, -1.52, 0.001 +19330817, 5.36, -1.95, 1.70, 0.001 +19330818, -1.47, 1.66, -1.18, 0.001 +19330821, 1.85, -0.78, 1.24, 0.001 +19330822, 1.40, -0.89, 0.57, 0.001 +19330823, -1.03, 0.79, -0.01, 0.001 +19330824, 0.63, -1.55, 0.33, 0.001 +19330825, 3.44, -1.68, 2.16, 0.001 +19330828, -0.16, 0.54, -0.56, 0.001 +19330829, -0.78, -0.89, -0.31, 0.001 +19330830, -0.85, 0.38, 0.06, 0.001 +19330831, -0.02, 0.46, -1.21, 0.001 +19330901, 1.29, -0.36, -0.11, 0.001 +19330905, -3.13, 1.55, -1.08, 0.001 +19330906, -0.15, -0.75, -1.94, 0.001 +19330907, -1.09, 0.93, -0.09, 0.001 +19330908, -0.03, -0.91, -0.45, 0.001 +19330909, -0.06, 0.55, -0.50, 0.001 +19330911, 4.00, -1.79, 2.19, 0.001 +19330912, -0.40, 1.16, -0.63, 0.001 +19330913, 0.42, -0.30, 0.15, 0.001 +19330914, 0.40, 0.14, 0.42, 0.001 +19330915, -2.68, 1.13, -2.36, 0.001 +19330916, 2.44, -1.70, 1.69, 0.001 +19330918, -0.89, 1.12, -0.64, 0.001 +19330919, 0.15, -1.58, 0.56, 0.001 +19330920, -2.76, 1.72, -2.45, 0.001 +19330921, -6.13, 0.28, -5.44, 0.001 +19330922, 1.97, -2.28, 0.72, 0.001 +19330923, 1.50, 0.77, 1.55, 0.001 +19330925, -1.98, 0.25, -1.59, 0.001 +19330926, -0.87, 1.01, 0.60, 0.001 +19330927, -4.16, 1.03, -2.95, 0.001 +19330928, 1.27, -2.54, 0.11, 0.001 +19330929, -0.50, 1.31, 0.42, 0.001 +19330930, 0.76, -1.78, -0.86, 0.001 +19331002, -1.79, 2.46, -0.74, 0.000 +19331003, 0.37, -1.35, 0.03, 0.000 +19331004, 5.70, -1.90, 3.87, 0.000 +19331005, -0.90, 1.04, -0.97, 0.000 +19331006, -1.02, 0.23, -1.41, 0.000 +19331007, 0.67, -0.42, 0.35, 0.000 +19331009, 1.65, -0.96, 1.29, 0.000 +19331010, -0.84, 1.15, -0.97, 0.000 +19331011, -0.08, 0.50, -1.25, 0.000 +19331013, -3.38, 1.38, -2.23, 0.000 +19331014, -0.06, -0.61, -0.83, 0.000 +19331016, -5.99, 1.88, -4.16, 0.000 +19331017, 2.61, -3.85, 0.30, 0.000 +19331018, -4.30, 1.87, -2.46, 0.000 +19331019, -4.58, 0.75, -5.98, 0.000 +19331020, 2.50, -3.17, 3.06, 0.000 +19331021, -3.03, 1.96, -1.97, 0.000 +19331023, 5.01, -0.27, 5.03, 0.000 +19331024, 3.69, -2.72, 3.98, 0.000 +19331025, 2.75, 0.92, 2.18, 0.000 +19331026, -2.01, 1.02, -1.27, 0.000 +19331027, 1.26, -1.20, 0.45, 0.000 +19331028, -1.29, 1.21, -0.97, 0.000 +19331030, -3.60, 1.42, -2.55, 0.000 +19331031, -0.96, -2.08, -0.13, 0.000 +19331101, 1.17, -1.33, 0.52, 0.001 +19331102, 1.56, -0.55, 0.87, 0.001 +19331103, 3.13, -1.59, 1.90, 0.001 +19331104, -0.17, 0.66, 1.16, 0.001 +19331106, -0.80, 0.45, -1.00, 0.001 +19331108, 3.53, -1.81, 1.50, 0.001 +19331109, 0.75, 2.12, 0.64, 0.001 +19331110, -1.34, -0.57, -1.49, 0.001 +19331111, 1.05, -1.06, 1.17, 0.001 +19331113, -0.16, 1.10, -0.08, 0.001 +19331114, -0.78, 0.27, 0.04, 0.001 +19331115, -0.86, -0.31, -2.70, 0.001 +19331116, 4.41, -2.62, 2.63, 0.001 +19331117, -0.95, 1.36, -1.22, 0.001 +19331118, 0.08, 0.33, -0.24, 0.001 +19331120, 2.63, -2.06, 0.99, 0.001 +19331121, -1.05, 1.01, 0.43, 0.001 +19331122, -0.60, -0.73, -0.89, 0.001 +19331123, -1.64, 0.18, -0.60, 0.001 +19331124, 1.16, 0.43, 0.87, 0.001 +19331125, 0.28, -0.22, -0.47, 0.001 +19331127, -3.22, 1.08, -2.14, 0.001 +19331128, -0.08, -0.90, -0.60, 0.001 +19331129, 1.79, -1.41, 1.34, 0.001 +19331201, 0.40, 0.10, -0.35, 0.001 +19331202, 0.01, -0.10, -0.26, 0.001 +19331204, -0.20, 0.13, -0.56, 0.001 +19331205, 2.85, -0.47, 1.83, 0.001 +19331206, -0.55, 0.36, 0.90, 0.001 +19331207, 0.74, 0.04, 0.49, 0.001 +19331208, -0.94, 0.62, -1.08, 0.001 +19331209, 1.91, -0.88, 2.25, 0.001 +19331211, 0.31, 0.64, 0.92, 0.001 +19331212, -0.42, 0.64, -1.05, 0.001 +19331213, -0.99, -0.22, -0.81, 0.001 +19331214, 0.29, 0.53, 0.19, 0.001 +19331215, -1.38, 0.28, -1.30, 0.001 +19331216, -1.72, 1.27, -2.02, 0.001 +19331218, -1.31, -1.78, 0.39, 0.001 +19331219, -0.28, -0.64, -1.19, 0.001 +19331220, -1.77, -0.87, -1.43, 0.001 +19331221, -0.05, -0.04, -0.66, 0.001 +19331222, 2.72, -0.69, 3.31, 0.001 +19331223, -0.35, 0.59, -0.99, 0.001 +19331226, -2.29, -0.43, -1.62, 0.001 +19331227, 0.75, -1.51, -0.72, 0.001 +19331228, 3.46, 1.58, 1.73, 0.001 +19331229, -0.30, 0.88, 0.36, 0.001 +19331230, 1.16, 0.42, 0.21, 0.001 +19340102, 0.13, 0.61, 1.16, 0.002 +19340103, -1.21, 0.55, 0.04, 0.002 +19340104, -0.33, -0.62, -0.16, 0.002 +19340105, -1.13, 1.31, -1.61, 0.002 +19340106, -0.30, 0.15, 0.24, 0.002 +19340108, -0.04, -0.56, -0.68, 0.002 +19340109, 1.15, -0.33, 1.47, 0.002 +19340110, 2.65, -0.49, 0.75, 0.002 +19340111, 0.56, 0.48, 0.47, 0.002 +19340112, -0.73, 2.12, 0.54, 0.002 +19340113, -0.08, -0.66, 0.44, 0.002 +19340115, 5.49, -0.79, 4.88, 0.002 +19340116, 0.52, 1.22, 1.04, 0.002 +19340117, -0.04, 0.85, 0.78, 0.002 +19340118, -0.13, -0.01, 0.59, 0.002 +19340119, 2.68, 0.74, 2.59, 0.002 +19340120, 0.21, 0.93, 0.67, 0.002 +19340122, -0.30, 0.63, -0.66, 0.002 +19340123, 1.38, 0.65, 0.52, 0.002 +19340124, 0.66, 0.44, 0.83, 0.002 +19340125, -0.23, 0.56, -1.11, 0.002 +19340126, -0.42, 0.56, 0.23, 0.002 +19340127, -0.18, -0.02, -0.21, 0.002 +19340129, 1.77, 0.59, 1.59, 0.002 +19340130, 1.38, 0.70, 1.21, 0.002 +19340131, -1.25, 0.89, -1.97, 0.002 +19340201, 2.34, -0.19, 2.28, 0.001 +19340202, -0.10, -0.40, 1.09, 0.001 +19340203, 1.23, -0.01, 1.53, 0.001 +19340205, 1.82, 0.50, 0.63, 0.001 +19340206, -0.09, 0.96, -0.26, 0.001 +19340207, -2.92, 0.00, -1.97, 0.001 +19340208, 0.57, 0.12, 1.13, 0.001 +19340209, -2.58, 0.72, -1.08, 0.001 +19340210, -0.56, -1.39, -0.82, 0.001 +19340213, 0.71, 0.72, 1.58, 0.001 +19340214, 0.84, 0.12, 0.50, 0.001 +19340215, 1.96, 1.14, 2.68, 0.001 +19340216, 0.32, 1.57, 0.06, 0.001 +19340217, 0.31, -0.24, 0.72, 0.001 +19340219, -1.58, 0.69, -0.89, 0.001 +19340220, 0.41, 0.32, 0.00, 0.001 +19340221, 0.35, 0.55, 0.31, 0.001 +19340223, -2.55, -0.16, -2.11, 0.001 +19340224, -1.49, -0.24, -1.67, 0.001 +19340226, -2.01, -0.80, -2.25, 0.001 +19340227, 0.79, 0.12, 1.04, 0.001 +19340228, -0.04, 1.15, -0.08, 0.001 +19340301, -0.25, -0.38, -0.29, 0.001 +19340302, 3.04, -0.03, 2.20, 0.001 +19340303, -0.10, 0.53, -0.15, 0.001 +19340305, -0.41, 0.40, -0.43, 0.001 +19340306, -0.95, 0.50, -0.31, 0.001 +19340307, -2.49, -0.01, -1.48, 0.001 +19340308, 1.57, -0.06, 0.20, 0.001 +19340309, -0.29, 0.80, 0.13, 0.001 +19340310, 0.10, 0.00, 0.01, 0.001 +19340312, 1.70, -0.39, 0.36, 0.001 +19340313, 0.17, 0.53, 0.30, 0.001 +19340314, 0.01, 0.52, -0.15, 0.001 +19340315, -1.45, 0.29, -1.74, 0.001 +19340316, 0.29, 0.38, -0.30, 0.001 +19340317, -0.92, 0.51, -0.40, 0.001 +19340319, -2.31, -0.48, -1.54, 0.001 +19340320, 1.49, -0.72, 0.33, 0.001 +19340321, -1.63, 0.35, -0.54, 0.001 +19340322, 1.64, -0.71, 0.37, 0.001 +19340323, -0.61, 0.89, -0.40, 0.001 +19340324, 1.47, -0.53, 0.26, 0.001 +19340326, 0.01, 0.12, 0.25, 0.001 +19340327, -2.77, -0.80, -1.72, 0.001 +19340328, 0.26, 0.72, 0.71, 0.001 +19340329, 1.54, -0.02, 1.15, 0.001 +19340331, 1.27, 0.00, 0.96, 0.001 +19340402, 0.27, 1.07, 0.15, 0.000 +19340403, 0.90, -0.20, 0.68, 0.000 +19340404, 0.43, 0.96, -0.13, 0.000 +19340405, 0.18, -0.14, -0.89, 0.000 +19340406, 0.29, -1.01, 0.37, 0.000 +19340407, -0.12, -0.05, 0.47, 0.000 +19340409, -0.36, 0.21, 0.26, 0.000 +19340410, 1.31, -0.31, 0.64, 0.000 +19340411, 0.06, 0.10, -0.10, 0.000 +19340412, -0.24, -0.11, -0.20, 0.000 +19340413, -0.26, 0.42, -0.59, 0.000 +19340414, -0.11, -0.03, 0.03, 0.000 +19340416, -1.57, -0.15, -1.65, 0.000 +19340417, 0.99, -0.13, -0.05, 0.000 +19340418, 1.47, 0.85, 0.20, 0.000 +19340419, 0.09, -0.06, 0.14, 0.000 +19340420, 1.29, 0.31, 0.73, 0.000 +19340421, -0.31, 1.03, -0.30, 0.000 +19340423, -0.43, 0.09, 0.04, 0.000 +19340424, -0.72, 0.01, 0.04, 0.000 +19340425, -0.47, 0.17, 0.01, 0.000 +19340426, -1.35, 0.12, -0.51, 0.000 +19340427, 0.14, -0.28, -0.05, 0.000 +19340428, -0.83, 0.31, -0.89, 0.000 +19340430, -2.35, -0.32, -2.15, 0.000 +19340501, -0.19, -0.79, 0.19, 0.000 +19340502, -1.98, 0.53, -0.67, 0.000 +19340503, 0.20, -0.31, -0.45, 0.000 +19340504, 0.28, 1.09, 1.02, 0.000 +19340505, -1.59, -0.22, -0.85, 0.000 +19340507, -3.47, -0.66, -3.72, 0.000 +19340508, 2.14, -1.50, 2.85, 0.000 +19340509, -1.30, 0.94, -0.71, 0.000 +19340510, -2.18, -0.35, -1.94, 0.000 +19340511, -0.98, 1.04, -0.58, 0.000 +19340512, -1.45, -0.91, -1.88, 0.000 +19340514, 0.24, -1.55, -0.06, 0.000 +19340515, 2.02, 0.57, 0.88, 0.000 +19340516, -0.36, 1.09, 0.56, 0.000 +19340517, 4.09, -0.88, 2.97, 0.000 +19340518, -0.96, 1.20, -0.41, 0.000 +19340519, -0.13, -0.05, 0.16, 0.000 +19340521, 0.27, 0.18, -0.65, 0.000 +19340522, -1.78, 0.49, -1.35, 0.000 +19340523, -1.12, -0.18, -0.34, 0.000 +19340524, 0.40, -0.31, 0.66, 0.000 +19340525, 1.03, 0.08, -0.07, 0.000 +19340526, 0.68, -0.09, -0.39, 0.000 +19340528, 0.70, -0.55, 0.94, 0.000 +19340529, -0.43, 0.22, -0.97, 0.000 +19340531, -1.40, 0.61, -1.11, 0.000 +19340601, -2.10, 0.47, -0.99, 0.000 +19340602, -0.34, -0.50, -0.09, 0.000 +19340604, 1.44, -0.70, 0.68, 0.000 +19340605, 2.14, -0.57, 1.36, 0.000 +19340606, 0.31, 0.17, 0.39, 0.000 +19340607, -0.20, 0.00, -1.24, 0.000 +19340608, 4.22, -1.47, 3.06, 0.000 +19340609, 0.56, 0.50, 1.02, 0.000 +19340611, -1.17, 0.02, -1.56, 0.000 +19340612, 1.23, -0.34, 1.04, 0.000 +19340613, 0.08, -0.20, -0.79, 0.000 +19340614, -1.61, 0.91, -0.91, 0.000 +19340615, 1.71, -1.74, 0.20, 0.000 +19340616, 1.42, -0.50, 1.05, 0.000 +19340618, -0.02, 0.16, -0.62, 0.000 +19340619, -1.57, 0.87, -1.07, 0.000 +19340620, -0.98, 0.33, -0.70, 0.000 +19340621, -0.80, 0.36, 0.01, 0.000 +19340622, -2.02, -0.29, -1.12, 0.000 +19340623, 0.70, 0.03, -0.22, 0.000 +19340625, -0.87, 0.58, -1.33, 0.000 +19340626, 1.83, -1.73, 0.18, 0.000 +19340627, -0.06, 0.67, 0.27, 0.000 +19340628, 0.52, -0.65, 0.21, 0.000 +19340629, -1.60, 1.12, -0.77, 0.000 +19340630, 0.07, 0.18, -0.45, 0.000 +19340702, -1.21, -0.18, -1.05, 0.000 +19340703, -0.12, -0.45, -0.08, 0.000 +19340705, 1.55, -1.04, 0.69, 0.000 +19340706, 0.76, -0.13, 0.28, 0.000 +19340707, -0.12, 0.26, -0.40, 0.000 +19340709, -0.07, 0.21, -0.62, 0.000 +19340710, 0.83, -0.49, 0.67, 0.000 +19340711, 0.43, 0.09, -0.27, 0.000 +19340712, -0.75, 0.90, -1.94, 0.000 +19340713, 0.01, -0.21, -0.06, 0.000 +19340714, 0.14, 0.72, -0.73, 0.000 +19340716, -2.03, -0.06, -1.33, 0.000 +19340717, -0.41, -1.50, 0.25, 0.000 +19340718, 1.39, -0.27, -0.23, 0.000 +19340719, -0.98, 0.23, 0.11, 0.000 +19340720, -2.59, -0.65, -1.83, 0.000 +19340721, -0.44, -1.57, -0.77, 0.000 +19340723, -3.39, -1.86, -2.65, 0.000 +19340724, -1.07, -0.70, -1.97, 0.000 +19340725, 0.63, -1.80, 1.44, 0.000 +19340726, -7.13, -1.79, -3.18, 0.000 +19340727, 2.29, -1.67, 1.42, 0.000 +19340728, 1.50, 3.73, 1.05, 0.000 +19340730, -0.53, -0.09, -0.26, 0.000 +19340731, 0.18, 0.25, -0.73, 0.000 +19340801, 3.02, 1.62, 0.46, 0.000 +19340802, 0.46, 0.68, 0.74, 0.000 +19340803, -0.96, 1.32, -0.93, 0.000 +19340804, -1.83, 0.75, -0.90, 0.000 +19340806, -0.46, -0.79, -0.01, 0.000 +19340807, -0.31, 0.67, -1.14, 0.000 +19340808, 1.75, -0.29, 1.28, 0.000 +19340809, 3.00, -0.31, 0.32, 0.000 +19340810, -1.65, 1.65, -0.53, 0.000 +19340811, -0.05, -0.52, -0.35, 0.000 +19340813, 2.44, -0.82, 1.31, 0.000 +19340814, -0.83, 1.05, -1.25, 0.000 +19340815, -0.14, 0.40, 0.06, 0.000 +19340816, 0.74, -0.17, 0.17, 0.000 +19340817, -0.74, 0.17, -0.18, 0.000 +19340818, -0.27, 0.11, 0.32, 0.000 +19340820, -0.41, 0.34, -1.19, 0.000 +19340821, 2.21, -1.72, 2.15, 0.000 +19340822, 2.25, 0.70, 1.07, 0.000 +19340823, -0.49, 0.38, 0.53, 0.000 +19340824, 1.51, -1.15, 1.16, 0.000 +19340825, 0.24, 0.44, 0.88, 0.000 +19340827, -1.42, 1.27, -0.56, 0.000 +19340828, -0.46, -0.38, -1.15, 0.000 +19340829, -0.60, 1.03, -0.43, 0.000 +19340830, -1.22, -0.72, -0.74, 0.000 +19340831, -0.03, -0.65, -0.27, 0.000 +19340901, 0.02, 0.36, 0.03, 0.000 +19340904, -0.65, -0.40, -0.33, 0.000 +19340905, 1.41, -0.71, 1.20, 0.000 +19340906, -1.40, 1.44, -0.94, 0.000 +19340907, -1.13, -0.78, -0.69, 0.000 +19340908, -0.18, 0.21, -0.05, 0.000 +19340910, -2.17, 0.93, -1.04, 0.000 +19340911, -0.05, -1.73, 0.84, 0.000 +19340912, 0.42, 0.19, -0.63, 0.000 +19340913, -0.26, -0.31, -0.30, 0.000 +19340914, -2.62, 0.23, -0.89, 0.000 +19340915, 0.39, -1.05, 0.22, 0.000 +19340917, -0.62, -0.41, -0.59, 0.000 +19340918, 0.69, 0.17, 0.00, 0.000 +19340919, 2.57, -0.77, 1.21, 0.000 +19340920, 0.01, 0.93, 0.65, 0.000 +19340921, 1.92, 0.07, 0.09, 0.000 +19340922, 0.24, 0.40, 0.16, 0.000 +19340924, -0.76, 0.30, -0.41, 0.000 +19340925, 2.47, -1.70, 1.19, 0.000 +19340926, -0.32, 1.47, -1.10, 0.000 +19340927, 0.94, -0.03, 0.30, 0.000 +19340928, -1.00, 0.57, 0.03, 0.000 +19340929, 0.04, -1.00, 0.06, 0.000 +19341001, -2.55, 0.98, -1.61, 0.000 +19341002, 0.49, -0.25, 0.46, 0.000 +19341003, -0.19, 0.50, 0.23, 0.000 +19341004, -0.24, -1.05, -0.38, 0.000 +19341005, 1.87, 0.98, -0.07, 0.000 +19341006, -0.21, 0.26, 0.18, 0.000 +19341008, -0.59, 0.20, -0.87, 0.000 +19341009, -0.84, 0.43, -0.74, 0.000 +19341010, 2.29, -0.58, 1.31, 0.000 +19341011, 1.56, 0.59, 0.95, 0.000 +19341013, -1.01, 0.63, -0.58, 0.000 +19341015, -0.70, 0.48, -0.73, 0.000 +19341016, 0.72, -0.28, 0.28, 0.000 +19341017, 0.22, -0.27, -0.79, 0.000 +19341018, -0.20, 0.00, -0.19, 0.000 +19341019, -0.54, -0.62, 0.62, 0.000 +19341020, 0.23, 0.32, -0.13, 0.000 +19341022, -0.20, 0.40, -0.83, 0.000 +19341023, -0.40, -0.53, -0.35, 0.000 +19341024, 1.58, -1.98, 2.91, 0.000 +19341025, -1.78, 1.91, -1.81, 0.000 +19341026, -1.47, -0.19, -1.51, 0.000 +19341027, 0.08, -0.35, 0.05, 0.000 +19341029, -0.47, -0.03, -0.57, 0.000 +19341030, 0.42, -0.71, -0.16, 0.000 +19341031, 0.40, -0.11, -0.49, 0.000 +19341101, -0.38, -0.21, -0.82, 0.000 +19341102, 1.16, 0.94, -0.59, 0.000 +19341103, 0.77, 0.90, 0.00, 0.000 +19341105, 0.83, 0.53, -0.16, 0.000 +19341107, 1.52, -0.81, 1.82, 0.000 +19341108, -0.39, 1.14, -0.48, 0.000 +19341109, 1.70, 0.09, -0.21, 0.000 +19341110, 0.34, 0.99, 0.55, 0.000 +19341113, -0.48, 0.73, -1.23, 0.000 +19341114, -0.06, 0.03, 0.16, 0.000 +19341115, 0.47, 1.61, -0.21, 0.000 +19341116, -0.84, 0.17, -2.00, 0.000 +19341117, -0.47, 0.86, 0.04, 0.000 +19341119, 0.18, 0.65, -0.11, 0.000 +19341120, 0.07, -1.02, -1.14, 0.000 +19341121, -0.09, 0.44, -0.75, 0.000 +19341122, 0.36, -0.13, 0.20, 0.000 +19341123, 1.32, 0.03, 0.75, 0.000 +19341124, 1.03, 0.17, 0.73, 0.000 +19341126, 0.91, -0.83, 1.62, 0.000 +19341127, -0.66, 0.54, 0.23, 0.000 +19341128, 0.89, -1.28, -0.36, 0.000 +19341130, -0.07, 0.36, 0.14, 0.000 +19341201, -0.07, 0.28, -0.20, 0.000 +19341203, -0.88, 0.28, -0.24, 0.000 +19341204, 0.86, -0.74, 0.72, 0.000 +19341205, 0.91, 0.94, -0.02, 0.000 +19341206, -0.02, 1.12, -0.54, 0.000 +19341207, -0.74, 0.07, 0.03, 0.000 +19341208, -0.53, -0.22, -0.36, 0.000 +19341210, -0.10, 0.11, -0.65, 0.000 +19341211, -1.77, -0.44, 0.17, 0.000 +19341212, 0.02, 0.08, -0.50, 0.000 +19341213, -0.40, 0.36, 0.25, 0.000 +19341214, -0.16, 0.74, -0.48, 0.000 +19341215, 0.17, -0.46, 0.53, 0.000 +19341217, 0.27, -0.44, 0.24, 0.000 +19341218, -0.02, 0.50, -0.65, 0.000 +19341219, -1.39, 0.41, -0.46, 0.000 +19341220, -0.18, -1.01, -0.08, 0.000 +19341221, 0.09, -0.29, -0.47, 0.000 +19341222, -0.03, 0.58, -1.28, 0.000 +19341224, 0.73, -0.22, -0.04, 0.000 +19341226, -0.60, 0.18, -0.43, 0.000 +19341227, -0.10, -0.04, -0.57, 0.000 +19341228, 3.37, 0.23, 1.68, 0.000 +19341229, 0.46, 0.85, 0.71, 0.000 +19341231, 0.64, 0.35, -0.44, 0.000 +19350102, 0.26, 0.48, -0.33, 0.001 +19350103, 0.58, 1.14, 0.61, 0.001 +19350104, -0.49, -0.03, 0.50, 0.001 +19350105, 0.66, 0.13, 0.84, 0.001 +19350107, 0.33, 0.11, 1.06, 0.001 +19350108, -0.91, 0.41, 0.35, 0.001 +19350109, -0.24, -0.52, -0.44, 0.001 +19350110, -0.10, 0.02, -0.47, 0.001 +19350111, -2.10, -0.67, -1.15, 0.001 +19350112, -0.92, 0.28, -0.45, 0.001 +19350114, 0.31, 0.35, -0.16, 0.001 +19350115, -2.22, -0.70, -1.29, 0.001 +19350116, 1.38, -0.40, 0.03, 0.001 +19350117, 0.51, 0.89, 0.23, 0.001 +19350118, 0.55, 0.72, 0.07, 0.001 +19350119, 0.55, -0.12, 1.31, 0.001 +19350121, 0.23, 0.28, -0.51, 0.001 +19350122, -0.67, -0.14, -0.55, 0.001 +19350123, 0.05, -0.21, -0.24, 0.001 +19350124, -0.44, 0.00, 0.17, 0.001 +19350125, 0.40, 0.18, -0.37, 0.001 +19350126, -0.25, 0.29, -0.44, 0.001 +19350128, -1.36, -0.82, -0.78, 0.001 +19350129, -0.77, -0.33, -0.61, 0.001 +19350130, 0.47, -0.15, 0.48, 0.001 +19350131, 0.78, -0.08, 0.46, 0.001 +19350201, -0.32, 0.56, -0.43, 0.001 +19350202, 0.27, -0.73, 0.29, 0.001 +19350204, -0.83, 0.79, -0.87, 0.001 +19350205, -0.96, -0.65, -1.07, 0.001 +19350206, -1.08, -0.33, -0.61, 0.001 +19350207, 0.94, -0.65, 0.96, 0.001 +19350208, 1.64, 0.73, -0.27, 0.001 +19350209, 0.41, 0.68, 0.87, 0.001 +19350211, -0.41, 0.04, -0.86, 0.001 +19350213, 0.12, -0.01, -0.31, 0.001 +19350214, 0.04, 0.18, 0.00, 0.001 +19350215, 0.65, 0.63, -0.53, 0.001 +19350216, -0.18, 0.07, -0.86, 0.001 +19350218, 2.90, -1.31, 2.91, 0.001 +19350219, -1.31, 1.47, -1.04, 0.001 +19350220, -1.28, 0.39, -1.01, 0.001 +19350221, -0.02, -0.38, -0.73, 0.001 +19350223, -1.50, 0.75, -1.96, 0.001 +19350225, -0.16, -0.64, -0.55, 0.001 +19350226, -0.94, -0.99, -2.42, 0.001 +19350227, 0.28, -1.42, 1.25, 0.001 +19350228, -0.13, 1.38, -0.27, 0.001 +19350301, 0.49, -0.08, 0.50, 0.000 +19350302, 0.20, 0.55, -0.47, 0.000 +19350304, -0.55, 0.20, -0.87, 0.000 +19350305, -2.52, 0.21, -1.87, 0.000 +19350306, -0.65, -1.21, -0.62, 0.000 +19350307, 1.07, -0.61, 0.29, 0.000 +19350308, -0.14, 0.63, -0.34, 0.000 +19350309, -0.62, 0.55, 0.48, 0.000 +19350311, -1.64, -0.60, -1.74, 0.000 +19350312, -1.78, -0.63, -1.47, 0.000 +19350313, 0.08, -1.98, 0.28, 0.000 +19350314, -1.18, -0.43, -1.05, 0.000 +19350315, 1.70, -0.70, -0.42, 0.000 +19350316, -0.16, 1.25, 0.76, 0.000 +19350318, -1.03, 0.16, -0.84, 0.000 +19350319, 1.35, -0.12, 0.56, 0.000 +19350320, -0.04, 0.67, -0.55, 0.000 +19350321, 1.70, -1.12, 1.78, 0.000 +19350322, 1.14, -0.51, 1.83, 0.000 +19350323, -0.72, 1.44, -0.67, 0.000 +19350325, -0.40, -0.26, -0.51, 0.000 +19350326, -0.83, 0.49, -0.82, 0.000 +19350327, 0.77, -1.26, 1.22, 0.000 +19350328, -0.11, 0.27, -1.01, 0.000 +19350329, 0.07, -0.58, -0.28, 0.000 +19350330, 0.21, -0.01, 0.81, 0.000 +19350401, 0.63, -0.71, 1.49, 0.001 +19350402, -0.36, 0.65, -1.18, 0.001 +19350403, -0.45, -0.44, -0.39, 0.001 +19350404, 1.14, -1.76, 2.27, 0.001 +19350405, 2.06, -0.71, 1.71, 0.001 +19350406, 0.53, 0.33, 1.19, 0.001 +19350408, -0.24, 1.25, -1.07, 0.001 +19350409, 1.68, -0.70, 1.57, 0.001 +19350410, -0.18, 1.75, -1.09, 0.001 +19350411, -0.62, 0.13, -0.71, 0.001 +19350412, 0.97, -1.47, 1.65, 0.001 +19350413, 1.09, 0.03, 0.76, 0.001 +19350415, 0.61, 0.66, -1.04, 0.001 +19350416, 0.21, 0.19, -0.31, 0.001 +19350417, -1.17, 0.64, -0.73, 0.001 +19350418, 1.28, -0.68, -0.09, 0.001 +19350420, 1.98, 0.03, 0.45, 0.001 +19350422, 0.50, 0.81, 0.07, 0.001 +19350423, 0.24, -0.99, 0.62, 0.001 +19350424, -0.75, 0.39, 0.06, 0.001 +19350425, 1.23, -0.99, 0.24, 0.001 +19350426, -0.35, -0.08, 0.16, 0.001 +19350427, -0.71, -0.37, -0.44, 0.001 +19350429, 0.41, -0.06, -0.64, 0.001 +19350430, -0.95, 0.42, -0.36, 0.001 +19350501, -0.37, 0.25, 0.52, 0.001 +19350502, 0.35, -0.36, 0.05, 0.001 +19350503, 1.32, -0.63, -0.06, 0.001 +19350504, 0.73, -0.52, -0.02, 0.001 +19350506, -0.64, 0.41, -0.06, 0.001 +19350507, -0.48, 0.34, -1.91, 0.001 +19350508, 2.48, -1.07, 0.83, 0.001 +19350509, 0.88, 0.34, 0.95, 0.001 +19350510, 0.50, -0.58, 0.22, 0.001 +19350511, 0.40, -0.78, 0.86, 0.001 +19350513, 0.01, 0.40, 0.44, 0.001 +19350514, 0.00, 0.50, -0.44, 0.001 +19350515, 0.49, -0.49, 0.13, 0.001 +19350516, 1.84, 0.62, 1.43, 0.001 +19350517, -0.33, -0.33, 0.23, 0.001 +19350518, -1.05, 0.69, -0.45, 0.001 +19350520, 0.07, 0.00, -0.35, 0.001 +19350521, 0.79, 0.09, -0.29, 0.001 +19350522, 0.56, -0.93, -0.01, 0.001 +19350523, 0.32, 0.68, 0.33, 0.001 +19350524, -0.28, -0.26, 0.89, 0.001 +19350525, -0.42, -0.89, 1.30, 0.001 +19350527, 0.61, -0.79, 0.56, 0.001 +19350528, -2.12, -0.39, -1.02, 0.001 +19350529, -1.33, -0.54, -0.21, 0.001 +19350531, -0.87, 0.15, -0.11, 0.001 +19350601, -0.76, -1.19, -0.03, 0.000 +19350603, 1.40, -0.17, -0.38, 0.000 +19350604, 2.25, -0.82, 0.63, 0.000 +19350605, 0.35, 0.41, -0.41, 0.000 +19350606, -0.58, -0.10, -0.58, 0.000 +19350607, 0.48, -0.62, 0.31, 0.000 +19350608, 0.75, -0.02, 0.21, 0.000 +19350610, 0.46, 0.43, -1.10, 0.000 +19350611, 1.18, -0.58, 1.36, 0.000 +19350612, -0.67, 1.60, -0.60, 0.000 +19350613, 0.47, -0.46, -0.22, 0.000 +19350614, 0.98, -0.39, 0.46, 0.000 +19350615, 0.42, -0.32, 0.75, 0.000 +19350617, -0.26, 0.28, -0.79, 0.000 +19350618, 0.29, -0.10, 0.73, 0.000 +19350619, -0.59, -0.19, -0.62, 0.000 +19350620, -0.75, -0.14, -0.48, 0.000 +19350621, 1.94, -0.29, 0.49, 0.000 +19350622, 1.03, -0.39, 0.00, 0.000 +19350624, -0.47, 0.32, -0.53, 0.000 +19350625, -1.31, 0.14, -0.24, 0.000 +19350626, -1.08, 0.43, -0.32, 0.000 +19350627, -0.29, -0.18, -0.47, 0.000 +19350628, 0.79, -0.36, 0.44, 0.000 +19350629, -0.16, 0.24, 0.08, 0.000 +19350701, 0.45, -0.30, 0.26, 0.001 +19350702, 0.06, -0.18, -0.93, 0.001 +19350703, 0.48, -0.44, 0.61, 0.001 +19350705, 1.01, -0.35, 0.58, 0.001 +19350706, 0.18, 0.46, -0.41, 0.001 +19350708, 1.02, 0.04, -0.61, 0.001 +19350709, -0.19, 0.15, 0.74, 0.001 +19350710, 0.58, 0.07, 0.12, 0.001 +19350711, -1.00, 0.69, -1.09, 0.001 +19350712, 0.69, -0.14, 0.09, 0.001 +19350713, -0.04, 0.36, 0.16, 0.001 +19350715, -0.16, 0.15, 2.04, 0.001 +19350716, 0.10, -0.42, -1.31, 0.001 +19350717, 0.74, 0.50, -0.19, 0.001 +19350718, 0.07, 0.59, 0.04, 0.001 +19350719, -0.82, 0.69, -0.74, 0.001 +19350720, 0.23, -0.24, 0.24, 0.001 +19350722, 1.36, -0.61, 1.42, 0.001 +19350723, 0.02, 0.12, 0.71, 0.001 +19350724, 0.47, -0.01, 0.14, 0.001 +19350725, -0.81, 0.48, -0.25, 0.001 +19350726, 0.55, -0.09, 0.59, 0.001 +19350727, 0.92, -0.31, 1.18, 0.001 +19350729, 1.08, -0.20, 2.40, 0.001 +19350730, -0.57, 0.70, -0.89, 0.001 +19350731, 0.94, -0.34, 1.40, 0.001 +19350801, -0.29, 0.90, -0.03, 0.000 +19350802, -0.60, -0.01, -0.03, 0.000 +19350803, 1.28, -0.93, 1.60, 0.000 +19350805, 0.63, 0.92, 0.91, 0.000 +19350806, -0.17, 0.69, 0.53, 0.000 +19350807, -0.27, -0.29, -0.69, 0.000 +19350808, 0.33, 0.56, -0.20, 0.000 +19350809, 1.80, -0.67, 1.55, 0.000 +19350810, 0.82, -0.11, 1.01, 0.000 +19350812, 0.21, 0.14, 2.62, 0.000 +19350813, 0.60, 0.38, 2.21, 0.000 +19350814, 0.21, 0.52, -0.42, 0.000 +19350815, -0.65, 0.99, -1.29, 0.000 +19350816, 0.80, -0.35, 1.94, 0.000 +19350817, 0.39, 0.40, 1.44, 0.000 +19350819, -1.87, 0.96, -2.29, 0.000 +19350820, -0.02, -0.92, 0.80, 0.000 +19350821, 0.76, 1.37, 0.41, 0.000 +19350822, 0.48, -0.16, 0.58, 0.000 +19350823, -0.01, 1.30, -0.79, 0.000 +19350824, -1.78, -0.60, -2.57, 0.000 +19350826, 1.06, -0.25, 0.66, 0.000 +19350827, -2.40, 0.08, -3.21, 0.000 +19350828, -0.22, -0.32, 0.10, 0.000 +19350829, 0.47, 0.93, 0.71, 0.000 +19350830, 0.29, -0.21, 0.39, 0.000 +19350831, 0.79, 0.38, 0.02, 0.000 +19350903, -0.75, -0.17, -0.41, 0.001 +19350904, 1.12, -0.77, 0.21, 0.001 +19350905, 1.06, 0.71, 1.90, 0.001 +19350906, 1.08, -0.05, 0.47, 0.001 +19350907, 0.71, -0.25, 0.42, 0.001 +19350909, 0.18, -0.11, -0.81, 0.001 +19350910, 0.58, 0.28, -1.12, 0.001 +19350911, 0.44, 0.17, 0.31, 0.001 +19350912, -0.84, -0.05, -0.26, 0.001 +19350913, 0.08, 0.17, 0.32, 0.001 +19350914, -0.16, -0.18, -0.38, 0.001 +19350916, -0.42, -0.31, -0.17, 0.001 +19350917, 0.28, -0.07, -0.35, 0.001 +19350918, 0.72, 0.44, 0.47, 0.001 +19350919, -1.64, 0.06, -0.56, 0.001 +19350920, -2.40, 0.20, -1.65, 0.001 +19350921, 0.21, -0.11, 0.07, 0.001 +19350923, 0.76, 0.18, 0.79, 0.001 +19350924, 1.03, 0.45, 0.23, 0.001 +19350925, 0.39, 0.14, 0.00, 0.001 +19350926, 0.05, -0.07, -0.73, 0.001 +19350927, -0.09, 0.60, -0.42, 0.001 +19350928, 0.13, 0.64, -0.85, 0.001 +19350930, 0.17, -0.33, -1.31, 0.001 +19351001, -0.92, 0.21, -0.60, 0.000 +19351002, -3.05, -0.96, -2.12, 0.000 +19351003, 1.19, 0.10, -0.26, 0.000 +19351004, 0.76, 1.21, 0.77, 0.000 +19351005, 0.71, 0.32, 0.63, 0.000 +19351007, 0.62, -0.32, 1.23, 0.000 +19351008, -0.49, 0.25, -1.03, 0.000 +19351009, 0.29, -0.09, 0.17, 0.000 +19351010, 1.86, 0.98, 0.44, 0.000 +19351011, 0.27, -0.38, -0.27, 0.000 +19351014, 1.06, -0.48, -0.56, 0.000 +19351015, 0.70, -0.39, 0.75, 0.000 +19351016, -0.25, 0.25, -1.33, 0.000 +19351017, -0.35, 0.43, -0.70, 0.000 +19351018, -0.25, 0.57, -0.80, 0.000 +19351019, 1.40, -0.06, -0.33, 0.000 +19351021, 1.19, 0.65, -0.88, 0.000 +19351022, 0.15, -0.78, 2.52, 0.000 +19351023, 0.75, 0.02, -0.21, 0.000 +19351024, 0.19, 0.09, -0.86, 0.000 +19351025, 0.90, 0.89, 0.10, 0.000 +19351026, 0.70, 0.11, 0.23, 0.000 +19351028, -0.45, -0.01, 0.58, 0.000 +19351029, -0.15, -0.18, 0.43, 0.000 +19351030, -0.69, -0.33, -0.30, 0.000 +19351031, 0.78, 0.36, 0.44, 0.000 +19351101, 1.02, 0.67, 0.19, 0.001 +19351102, 0.02, 0.06, 0.27, 0.001 +19351104, 0.28, -0.18, 0.50, 0.001 +19351106, 1.62, -0.66, 0.37, 0.001 +19351107, -0.30, -0.11, -0.55, 0.001 +19351108, 0.60, -0.23, 0.47, 0.001 +19351109, 0.01, -0.13, -0.47, 0.001 +19351112, -0.99, -0.35, -1.01, 0.001 +19351113, 1.20, 0.09, 2.00, 0.001 +19351114, 1.57, 0.02, 1.97, 0.001 +19351115, 0.45, 0.44, 0.16, 0.001 +19351116, 0.63, 0.18, 0.68, 0.001 +19351118, -0.38, 0.71, 0.19, 0.001 +19351119, 1.26, 0.21, 0.70, 0.001 +19351120, -0.91, -0.41, -0.08, 0.001 +19351121, 1.07, 0.98, 2.17, 0.001 +19351122, -1.69, 0.12, -0.82, 0.001 +19351123, 1.64, 1.28, 2.25, 0.001 +19351125, -0.83, 0.79, 0.25, 0.001 +19351126, -1.41, -0.38, 0.00, 0.001 +19351127, 0.89, 0.53, 2.23, 0.001 +19351129, -0.93, 0.16, -0.46, 0.001 +19351130, 0.01, 0.22, 0.19, 0.001 +19351202, -1.24, 0.39, 0.40, 0.001 +19351203, 2.14, -0.62, 1.07, 0.001 +19351204, 0.97, 0.15, 1.94, 0.001 +19351205, 0.05, 0.32, -0.30, 0.001 +19351206, -0.05, 0.05, -0.25, 0.001 +19351207, 0.84, -0.21, 0.81, 0.001 +19351209, 0.29, -0.15, 0.12, 0.001 +19351210, -1.20, 0.07, -1.37, 0.001 +19351211, 0.34, 0.47, -0.13, 0.001 +19351212, -0.93, -0.06, -0.91, 0.001 +19351213, -0.95, 0.04, -0.98, 0.001 +19351214, 0.28, 0.21, 0.09, 0.001 +19351216, -0.87, -0.19, -0.75, 0.001 +19351217, 0.76, -0.19, 0.00, 0.001 +19351218, -0.07, 0.15, 0.37, 0.001 +19351219, -0.55, 0.33, -1.41, 0.001 +19351220, 0.48, -0.93, 0.08, 0.001 +19351221, 0.58, 0.57, 0.43, 0.001 +19351223, 0.24, -0.42, -0.10, 0.001 +19351224, 0.63, -0.68, 0.78, 0.001 +19351226, 0.38, 0.54, 0.22, 0.001 +19351227, -0.09, 0.07, -1.05, 0.001 +19351228, -0.54, -0.68, 0.07, 0.001 +19351230, 1.87, 0.34, 1.17, 0.001 +19351231, 1.21, 0.52, 0.77, 0.001 +19360102, 0.32, 1.37, 0.19, 0.001 +19360103, 0.89, 0.32, 1.45, 0.001 +19360104, -0.28, 0.39, 0.50, 0.001 +19360106, -0.59, -0.51, -0.61, 0.001 +19360107, 1.37, -0.27, 2.13, 0.001 +19360108, 0.78, -0.07, -0.08, 0.001 +19360109, -0.36, 0.51, -0.53, 0.001 +19360110, 0.89, 1.90, 0.49, 0.001 +19360111, -0.21, 0.50, 0.13, 0.001 +19360113, 0.28, -0.73, 1.61, 0.001 +19360114, 0.51, 0.46, 0.55, 0.001 +19360115, -0.55, 0.25, -0.26, 0.001 +19360116, 0.36, 0.74, 1.23, 0.001 +19360117, -0.12, 0.48, -0.84, 0.001 +19360118, -0.77, -0.45, -0.99, 0.001 +19360120, -0.59, 0.11, -0.91, 0.001 +19360121, -0.47, -0.52, -0.28, 0.001 +19360122, 2.00, 0.53, 2.37, 0.001 +19360123, 0.95, 0.02, 1.79, 0.001 +19360124, -0.16, 0.05, -0.91, 0.001 +19360125, 0.36, -0.83, 0.14, 0.001 +19360127, 0.51, 0.34, 0.80, 0.001 +19360128, 0.08, -0.10, 0.27, 0.001 +19360129, 0.75, 0.21, 0.16, 0.001 +19360130, -0.49, 0.06, 0.68, 0.001 +19360131, 1.29, 0.16, 1.03, 0.001 +19360201, -0.18, -0.19, -0.45, 0.001 +19360203, 0.95, -0.10, 0.62, 0.001 +19360204, 0.38, 0.46, -0.11, 0.001 +19360205, -0.20, 0.13, 0.29, 0.001 +19360206, 0.38, 0.57, 0.19, 0.001 +19360207, -0.13, 0.00, 0.37, 0.001 +19360208, 0.11, 0.20, -0.03, 0.001 +19360210, 0.61, -0.28, 1.18, 0.001 +19360211, 0.91, -1.15, 1.42, 0.001 +19360213, 0.47, -0.80, 0.22, 0.001 +19360214, -0.21, 0.20, -0.27, 0.001 +19360215, 0.39, -0.05, 0.68, 0.001 +19360217, -1.15, -0.56, -0.55, 0.001 +19360218, 0.94, 0.98, 1.08, 0.001 +19360219, -0.35, 0.18, -1.25, 0.001 +19360220, 1.17, -0.37, 1.64, 0.001 +19360221, -0.09, 0.60, -0.16, 0.001 +19360224, -0.76, 0.27, -0.20, 0.001 +19360225, -1.83, -0.15, -0.80, 0.001 +19360226, -0.39, 0.50, -0.44, 0.001 +19360227, 2.19, 0.01, 2.33, 0.001 +19360228, -0.28, 0.19, -0.51, 0.001 +19360229, -0.39, 0.27, -0.46, 0.001 +19360302, 0.92, 0.00, 0.92, 0.001 +19360303, 1.30, 0.20, -0.80, 0.001 +19360304, 0.14, -0.03, 0.44, 0.001 +19360305, 0.34, 0.21, 0.01, 0.001 +19360306, 0.36, 0.10, -0.78, 0.001 +19360307, -0.65, 0.33, -0.57, 0.001 +19360309, -2.62, 0.00, -1.53, 0.001 +19360310, 0.99, -0.65, 0.81, 0.001 +19360311, 1.12, 1.33, -0.46, 0.001 +19360312, -2.44, -0.60, -1.16, 0.001 +19360313, -1.89, -1.00, -0.34, 0.001 +19360314, 2.47, 0.77, 1.23, 0.001 +19360316, -0.28, -0.10, 0.62, 0.001 +19360317, 1.73, -0.03, 0.63, 0.001 +19360318, -0.33, -0.22, -0.54, 0.001 +19360319, 0.82, -0.07, -0.48, 0.001 +19360320, -0.25, -0.03, -0.15, 0.001 +19360321, -0.49, 0.55, -0.30, 0.001 +19360323, 0.68, 0.19, 0.76, 0.001 +19360324, -0.49, -0.15, -0.34, 0.001 +19360325, 0.71, -0.06, -0.46, 0.001 +19360326, -0.29, -0.45, 0.83, 0.001 +19360327, -1.34, -0.72, 0.20, 0.001 +19360328, 0.09, 0.72, -0.04, 0.001 +19360330, -0.08, 0.43, -0.08, 0.001 +19360331, 0.59, 0.03, -0.05, 0.001 +19360401, 1.42, -0.06, 0.74, 0.001 +19360402, 0.88, -0.70, 1.03, 0.001 +19360403, -0.26, 0.15, -0.70, 0.001 +19360404, 0.75, -0.64, 0.89, 0.001 +19360406, 0.43, -0.58, 0.86, 0.001 +19360407, -0.42, -0.99, -0.58, 0.001 +19360408, -0.04, -0.80, 0.79, 0.001 +19360409, -0.37, -0.65, 0.72, 0.001 +19360411, 0.29, 0.25, 0.48, 0.001 +19360413, -0.19, 0.22, 0.66, 0.001 +19360414, -1.74, -0.35, -0.98, 0.001 +19360415, 0.82, 0.33, -0.19, 0.001 +19360416, -0.40, -0.56, 0.43, 0.001 +19360417, -0.56, -0.04, -0.83, 0.001 +19360418, -0.85, -0.66, -0.16, 0.001 +19360420, -2.17, -0.65, -1.18, 0.001 +19360421, -0.22, -0.49, -0.59, 0.001 +19360422, 1.35, 0.61, 1.12, 0.001 +19360423, -2.70, -0.32, -1.39, 0.001 +19360424, 0.06, 0.00, -0.40, 0.001 +19360425, 0.61, 0.34, -0.17, 0.001 +19360427, -3.69, -1.54, -2.57, 0.001 +19360428, -0.21, 0.44, 1.02, 0.001 +19360429, -2.40, 0.89, -2.39, 0.001 +19360430, 1.37, -0.89, 1.41, 0.001 +19360501, 0.74, 1.05, -0.42, 0.001 +19360502, -0.43, 0.07, 0.00, 0.001 +19360504, 0.26, 0.14, -0.05, 0.001 +19360505, 1.22, 0.39, 0.32, 0.001 +19360506, 1.16, -0.33, 1.26, 0.001 +19360507, -1.75, 0.13, -0.89, 0.001 +19360508, -0.07, 0.07, -0.90, 0.001 +19360509, 0.64, 0.01, 0.37, 0.001 +19360511, -0.80, 0.27, -0.81, 0.001 +19360512, -0.04, -0.29, -0.03, 0.001 +19360513, 0.86, -0.45, 0.77, 0.001 +19360514, 2.40, 0.45, 1.02, 0.001 +19360515, 0.08, 0.14, -0.09, 0.001 +19360516, -0.02, -0.27, 0.32, 0.001 +19360518, -0.40, 0.17, -0.65, 0.001 +19360519, -2.18, -0.41, -1.13, 0.001 +19360520, 0.68, -0.28, -0.10, 0.001 +19360521, -0.21, 0.23, 0.36, 0.001 +19360522, 0.81, -0.27, 0.86, 0.001 +19360523, 0.77, 0.15, 0.71, 0.001 +19360525, 0.12, -0.51, 0.00, 0.001 +19360526, 1.26, -0.10, 0.88, 0.001 +19360527, 0.01, 0.39, 0.86, 0.001 +19360528, -0.54, 0.09, -0.95, 0.001 +19360529, 0.64, -0.08, 0.88, 0.001 +19360601, -0.04, -0.15, -0.21, 0.001 +19360602, -0.19, -0.39, -0.24, 0.001 +19360603, -0.20, 0.36, -0.77, 0.001 +19360604, -1.21, 0.18, -0.47, 0.001 +19360605, -0.11, -0.48, -0.38, 0.001 +19360606, 0.45, -0.05, 0.75, 0.001 +19360608, 0.91, -0.16, 0.17, 0.001 +19360609, 0.91, -0.21, 0.44, 0.001 +19360610, 0.45, 0.05, 0.16, 0.001 +19360611, 1.14, -0.63, 0.18, 0.001 +19360612, -0.90, 0.42, -0.33, 0.001 +19360613, 0.58, -0.79, 0.11, 0.001 +19360615, 0.07, 0.35, -0.48, 0.001 +19360616, 0.98, -0.84, 1.23, 0.001 +19360617, -0.18, 0.33, -0.02, 0.001 +19360618, 0.26, -0.44, 0.20, 0.001 +19360619, -0.60, 0.11, -1.03, 0.001 +19360620, 0.35, -0.18, 0.12, 0.001 +19360622, 0.94, -0.16, 0.64, 0.001 +19360623, -0.35, -0.10, -0.26, 0.001 +19360624, 0.78, 0.13, 0.31, 0.001 +19360625, -0.86, -0.04, -0.49, 0.001 +19360626, -0.41, -0.09, -0.10, 0.001 +19360627, 0.11, -0.22, 0.09, 0.001 +19360629, -0.34, 0.09, -0.64, 0.001 +19360630, -0.11, -0.40, 0.02, 0.001 +19360701, 0.26, -0.67, -0.10, 0.001 +19360702, -0.15, -0.18, -0.04, 0.001 +19360703, 0.69, 0.06, -0.13, 0.001 +19360706, -0.49, 0.27, -0.47, 0.001 +19360707, -0.81, -0.15, -0.19, 0.001 +19360708, 0.60, -0.26, 0.66, 0.001 +19360709, 1.17, 0.34, 0.33, 0.001 +19360710, 1.73, -0.07, 0.77, 0.001 +19360711, 0.53, 0.58, 0.29, 0.001 +19360713, 0.27, 0.25, 0.24, 0.001 +19360714, 1.05, 0.04, 0.20, 0.001 +19360715, -0.03, -0.21, 0.80, 0.001 +19360716, 0.08, 0.31, -0.03, 0.001 +19360717, 0.31, 0.00, -0.12, 0.001 +19360718, 0.54, -0.10, 0.22, 0.001 +19360720, 0.36, -0.30, 0.09, 0.001 +19360721, 0.50, 0.09, -0.44, 0.001 +19360722, -0.43, -0.23, -0.14, 0.001 +19360723, 0.33, 0.64, 0.75, 0.001 +19360724, -0.21, 0.49, 0.27, 0.001 +19360725, 0.62, -0.20, -0.17, 0.001 +19360727, 0.77, -0.66, 0.62, 0.001 +19360728, -0.09, -0.33, -0.08, 0.001 +19360729, -0.70, 0.61, -0.39, 0.001 +19360730, 0.41, 0.27, -0.26, 0.001 +19360731, -0.76, 0.58, -0.11, 0.001 +19360801, 0.03, -0.12, 0.13, 0.001 +19360803, 0.23, -0.19, -0.58, 0.001 +19360804, -0.01, -0.12, -0.08, 0.001 +19360805, -0.46, 0.28, -0.06, 0.001 +19360806, 0.36, 0.11, 0.25, 0.001 +19360807, 1.17, 0.03, 0.88, 0.001 +19360808, 0.70, -0.55, 0.75, 0.001 +19360810, -0.21, -0.53, 0.10, 0.001 +19360811, -0.56, 0.22, -0.50, 0.001 +19360812, 0.46, 0.02, 0.90, 0.001 +19360813, -0.30, 0.30, 0.48, 0.001 +19360814, -1.12, 0.29, -0.05, 0.001 +19360815, 0.15, 0.07, 0.08, 0.001 +19360817, -0.58, 0.45, -0.38, 0.001 +19360818, 0.22, -0.11, -0.12, 0.001 +19360819, 0.48, 0.20, 0.77, 0.001 +19360820, -0.50, 0.57, -0.80, 0.001 +19360821, -2.67, -0.09, -1.14, 0.001 +19360822, 0.87, -0.09, 0.76, 0.001 +19360824, 0.76, -0.43, 0.42, 0.001 +19360825, 0.35, 0.31, 0.11, 0.001 +19360826, -0.64, -0.08, -0.20, 0.001 +19360827, 1.68, -0.31, 0.89, 0.001 +19360828, 0.35, -0.03, 0.82, 0.001 +19360829, 0.16, 0.35, 1.08, 0.001 +19360831, 0.18, 0.10, -0.56, 0.001 +19360901, -0.17, 0.31, 0.42, 0.000 +19360902, 0.35, 0.38, 0.10, 0.000 +19360903, -0.21, 0.28, -0.24, 0.000 +19360904, 0.61, 0.05, 0.40, 0.000 +19360905, 0.57, 0.32, 0.39, 0.000 +19360908, 0.89, -0.63, 0.48, 0.000 +19360909, -0.51, 0.56, -0.34, 0.000 +19360910, 0.08, 0.40, -0.08, 0.000 +19360911, -0.12, -0.03, -0.04, 0.000 +19360912, -0.27, 0.16, -0.18, 0.000 +19360914, -0.55, 0.07, -0.44, 0.000 +19360915, -0.21, -0.15, 0.21, 0.000 +19360916, -0.98, 0.50, -0.37, 0.000 +19360917, 0.70, -0.43, 0.22, 0.000 +19360918, 0.90, 0.39, 0.45, 0.000 +19360919, 0.64, 0.07, 0.65, 0.000 +19360921, 0.16, 0.32, -0.28, 0.000 +19360922, 0.22, -0.23, -0.24, 0.000 +19360923, -0.31, -0.05, -0.55, 0.000 +19360924, 0.06, -0.20, 0.38, 0.000 +19360925, -1.44, -0.05, -0.30, 0.000 +19360926, 0.93, 0.32, 0.53, 0.000 +19360928, 0.32, 0.33, -0.01, 0.000 +19360929, -0.18, 0.16, -0.36, 0.000 +19360930, -0.44, 0.19, 0.12, 0.000 +19361001, 0.13, 0.55, -0.16, 0.001 +19361002, 1.75, 0.24, 1.27, 0.001 +19361003, 0.93, -0.18, 0.37, 0.001 +19361005, 0.12, 0.06, 0.12, 0.001 +19361006, 0.67, -0.29, -0.22, 0.001 +19361007, 0.29, -0.76, 0.38, 0.001 +19361008, 0.49, -0.11, 0.44, 0.001 +19361009, 0.38, 0.46, -0.43, 0.001 +19361010, 0.51, 0.02, -0.05, 0.001 +19361013, -0.16, -0.60, 0.34, 0.001 +19361014, -0.27, 0.02, -0.12, 0.001 +19361015, -0.11, 0.16, 0.40, 0.001 +19361016, 1.00, 0.24, 0.62, 0.001 +19361017, 0.45, 0.20, -0.04, 0.001 +19361019, 0.13, -0.27, 0.04, 0.001 +19361020, -0.13, -0.87, -0.33, 0.001 +19361021, 0.36, 0.00, 0.43, 0.001 +19361022, -0.68, -0.21, -0.61, 0.001 +19361023, 0.36, 0.14, -0.42, 0.001 +19361024, 0.11, 0.14, 0.04, 0.001 +19361026, -2.26, -0.03, -0.49, 0.001 +19361027, 1.45, -0.05, 0.30, 0.001 +19361028, 0.15, 0.20, -0.03, 0.001 +19361029, 1.20, -0.47, 0.71, 0.001 +19361030, 0.15, -0.58, 0.01, 0.001 +19361031, 0.04, -0.20, -0.14, 0.001 +19361102, -0.30, 0.04, 0.21, 0.000 +19361104, 1.66, 1.07, -0.43, 0.000 +19361105, 1.11, 0.38, 0.10, 0.000 +19361106, -0.54, 1.04, -0.71, 0.000 +19361107, 1.26, 0.13, 0.26, 0.000 +19361109, 0.40, 0.87, 0.15, 0.000 +19361110, -0.24, 0.50, -0.23, 0.000 +19361112, -0.83, 0.44, -1.66, 0.000 +19361113, -0.81, 0.31, -1.04, 0.000 +19361114, -0.45, 0.88, -0.04, 0.000 +19361116, 1.38, 0.16, 0.85, 0.000 +19361117, 1.36, 0.59, 0.67, 0.000 +19361118, -0.39, -0.08, -0.33, 0.000 +19361119, -0.71, 0.06, -0.47, 0.000 +19361120, -0.90, -0.26, -0.35, 0.000 +19361121, 0.75, 0.20, 0.54, 0.000 +19361123, -2.08, -0.14, -0.46, 0.000 +19361124, 1.55, 0.09, 0.37, 0.000 +19361125, -0.21, 0.64, 0.22, 0.000 +19361127, 1.54, 0.54, 1.60, 0.000 +19361128, 0.20, 0.55, -0.01, 0.000 +19361130, -0.37, 0.44, -0.15, 0.000 +19361201, -0.60, 0.65, -0.51, 0.000 +19361202, -0.88, 0.17, 0.30, 0.000 +19361203, 0.51, -0.13, 0.63, 0.000 +19361204, 0.06, -0.27, -0.43, 0.000 +19361205, 0.13, 0.42, 0.08, 0.000 +19361207, -0.66, 0.35, -0.27, 0.000 +19361208, 0.16, 0.20, 0.47, 0.000 +19361209, 0.41, 0.30, 0.89, 0.000 +19361210, 0.77, 0.60, 0.77, 0.000 +19361211, -0.24, 1.05, -0.31, 0.000 +19361212, 0.13, 0.15, 0.44, 0.000 +19361214, 0.77, -0.26, 0.34, 0.000 +19361215, -0.10, -0.30, 0.09, 0.000 +19361216, -0.19, -0.52, -0.16, 0.000 +19361217, -0.45, 0.43, -0.18, 0.000 +19361218, -0.96, -0.49, -0.14, 0.000 +19361219, -0.92, -0.43, -0.15, 0.000 +19361221, -1.17, 0.77, -0.12, 0.000 +19361222, 1.13, 0.10, 0.56, 0.000 +19361223, 1.01, 0.31, -0.26, 0.000 +19361224, 0.29, 0.35, 0.23, 0.000 +19361228, -0.67, -0.61, 0.38, 0.000 +19361229, 0.22, -0.44, 0.84, 0.000 +19361230, 1.82, 0.33, 0.65, 0.000 +19361231, -0.29, 0.71, -0.38, 0.000 +19370102, -0.83, 0.19, -0.06, 0.000 +19370104, -0.49, 0.20, 0.49, 0.000 +19370105, 0.78, 0.03, 0.41, 0.000 +19370106, 0.15, -0.11, 0.26, 0.000 +19370107, 1.82, 0.40, 0.50, 0.000 +19370108, 0.38, 0.69, 0.56, 0.000 +19370109, -0.05, 0.54, 0.14, 0.000 +19370111, 0.49, 0.39, 0.98, 0.000 +19370112, 0.02, -0.04, -0.25, 0.000 +19370113, 0.17, 0.31, 0.25, 0.000 +19370114, 0.10, 0.43, -1.14, 0.000 +19370115, 0.30, 0.30, 0.27, 0.000 +19370116, 0.64, 0.41, 0.13, 0.000 +19370118, -0.37, -0.05, -0.28, 0.000 +19370119, -0.73, -0.37, -0.23, 0.000 +19370120, 1.06, 0.60, 0.73, 0.000 +19370121, 0.59, 0.05, 0.09, 0.000 +19370122, -0.48, 0.44, 0.35, 0.000 +19370123, 0.23, -0.10, -0.15, 0.000 +19370125, -0.64, -0.30, -1.02, 0.000 +19370126, -1.39, -0.62, -0.53, 0.000 +19370127, 0.60, 0.49, 0.24, 0.000 +19370128, 0.03, 0.23, 0.24, 0.000 +19370129, 0.57, 0.10, 0.34, 0.000 +19370130, 0.41, 0.04, 0.34, 0.000 +19370201, 0.27, 0.14, 0.08, 0.001 +19370202, 0.68, -0.59, 0.31, 0.001 +19370203, 0.59, -0.04, 1.13, 0.001 +19370204, 0.09, 0.21, -0.30, 0.001 +19370205, -1.37, -0.38, -0.50, 0.001 +19370206, 0.87, 0.86, 0.84, 0.001 +19370208, 0.48, 0.54, 0.65, 0.001 +19370209, -0.32, 0.04, -0.57, 0.001 +19370210, 0.72, -0.02, 1.19, 0.001 +19370211, 0.45, -0.70, -0.40, 0.001 +19370213, -0.17, 0.37, -0.51, 0.001 +19370215, -0.71, 0.23, -0.35, 0.001 +19370216, 0.10, -0.11, 0.47, 0.001 +19370217, -0.13, 0.08, 0.57, 0.001 +19370218, 0.29, -0.09, 0.66, 0.001 +19370219, 0.50, -0.19, 1.03, 0.001 +19370220, -0.13, -0.09, 0.50, 0.001 +19370223, -1.79, -0.34, -0.62, 0.001 +19370224, 0.31, 0.33, 0.10, 0.001 +19370225, -0.15, 0.65, -0.15, 0.001 +19370226, 0.27, 0.21, 0.25, 0.001 +19370227, 0.31, -0.27, 0.08, 0.001 +19370301, 0.16, 0.02, 0.55, 0.001 +19370302, 0.95, -0.11, 0.21, 0.001 +19370303, 1.11, -0.63, 1.56, 0.001 +19370304, -0.60, -0.17, -0.31, 0.001 +19370305, 0.91, -0.26, 1.21, 0.001 +19370306, 0.33, -0.06, 0.67, 0.001 +19370308, -0.42, -0.14, 0.35, 0.001 +19370309, 0.12, -0.36, 0.34, 0.001 +19370310, 0.54, -0.11, 0.54, 0.001 +19370311, -1.00, -0.36, -0.45, 0.001 +19370312, -0.35, 0.59, 0.35, 0.001 +19370313, -0.14, 0.38, -0.19, 0.001 +19370315, -0.61, 1.51, 1.61, 0.001 +19370316, 0.43, 0.33, 1.10, 0.001 +19370317, -0.36, -0.01, 1.56, 0.001 +19370318, -1.91, -0.42, -1.23, 0.001 +19370319, -0.06, 0.33, -0.01, 0.001 +19370320, -0.20, 0.01, 0.11, 0.001 +19370322, -2.66, -0.65, -1.75, 0.001 +19370323, 1.30, -0.05, 1.41, 0.001 +19370324, 0.89, 0.17, 0.17, 0.001 +19370325, -0.07, 0.19, -0.42, 0.001 +19370327, 0.35, 0.05, 0.53, 0.001 +19370329, -0.44, 0.17, 0.00, 0.001 +19370330, 1.34, -0.82, 1.24, 0.001 +19370331, 0.21, 0.20, -0.43, 0.001 +19370401, -0.88, -0.01, -0.66, 0.001 +19370402, -1.20, -0.70, -0.93, 0.001 +19370403, 0.39, 0.26, 0.45, 0.001 +19370405, 0.40, -0.10, 0.10, 0.001 +19370406, -0.65, 0.11, -0.52, 0.001 +19370407, -2.97, -0.70, -1.14, 0.001 +19370408, 0.23, -0.32, 0.39, 0.001 +19370409, 0.41, 0.53, -0.01, 0.001 +19370410, -0.13, 0.47, -0.19, 0.001 +19370412, 0.50, -0.44, 0.33, 0.001 +19370413, 1.11, 0.63, 0.05, 0.001 +19370414, 0.15, 0.11, 0.05, 0.001 +19370415, -0.35, -0.09, 0.04, 0.001 +19370416, -0.43, -0.26, -0.29, 0.001 +19370417, -0.27, 0.40, -0.63, 0.001 +19370419, 0.41, -0.39, 0.57, 0.001 +19370420, 0.28, -0.20, 0.21, 0.001 +19370421, 1.07, -0.55, -0.44, 0.001 +19370422, -1.18, 0.32, -0.28, 0.001 +19370423, -1.49, 0.09, -0.03, 0.001 +19370424, -0.88, -0.72, -0.12, 0.001 +19370426, -3.18, -1.04, -1.47, 0.001 +19370427, 1.28, -0.81, 0.42, 0.001 +19370428, -2.91, -1.48, -1.20, 0.001 +19370429, 0.30, 0.51, -0.32, 0.001 +19370430, 2.62, 0.39, 1.90, 0.001 +19370501, 0.18, 0.62, -0.22, 0.003 +19370503, 0.27, -0.20, -0.21, 0.003 +19370504, 1.26, -0.13, -0.08, 0.003 +19370505, -0.74, 0.20, -0.10, 0.003 +19370506, 0.48, -0.65, 1.06, 0.003 +19370507, -0.14, 0.70, 0.00, 0.003 +19370508, -0.26, 0.00, -0.41, 0.003 +19370510, -1.83, 0.21, -1.20, 0.003 +19370511, -0.09, -0.29, -0.29, 0.003 +19370512, -0.29, -0.04, 0.12, 0.003 +19370513, -2.97, -1.89, -1.11, 0.003 +19370514, 0.97, 0.10, 0.47, 0.003 +19370515, 0.26, 0.16, 0.03, 0.003 +19370517, -1.14, 0.37, -0.74, 0.003 +19370518, 1.01, -0.66, 0.71, 0.003 +19370519, -0.05, 0.51, -0.58, 0.003 +19370520, 2.17, 0.01, 0.41, 0.003 +19370521, 0.27, 0.33, -0.44, 0.003 +19370522, 1.02, -0.01, 0.65, 0.003 +19370524, 0.03, -0.13, -0.03, 0.003 +19370525, -1.08, 0.42, -0.98, 0.003 +19370526, -0.20, -0.09, -0.06, 0.003 +19370527, 0.05, -0.17, -0.40, 0.003 +19370528, 0.12, -0.03, -0.01, 0.003 +19370601, -1.35, -1.10, 0.04, 0.001 +19370602, 0.64, -0.22, 0.09, 0.001 +19370603, 0.14, -0.31, -0.44, 0.001 +19370604, 1.02, 0.44, 0.12, 0.001 +19370605, 0.15, 0.15, 0.08, 0.001 +19370607, -0.50, 0.00, -0.36, 0.001 +19370608, 0.33, -0.10, 0.30, 0.001 +19370609, -0.55, 0.35, 0.06, 0.001 +19370610, -0.39, -0.23, -0.02, 0.001 +19370611, -1.29, -0.28, -0.47, 0.001 +19370612, -0.80, -0.31, -0.24, 0.001 +19370614, -2.42, -0.74, -0.93, 0.001 +19370615, 1.01, 0.26, -0.09, 0.001 +19370616, -0.93, -0.31, -0.36, 0.001 +19370617, 0.89, -1.18, -0.20, 0.001 +19370618, 0.75, 0.32, 0.12, 0.001 +19370619, -0.18, 0.22, -0.20, 0.001 +19370621, -0.72, -0.06, -0.74, 0.001 +19370622, -0.18, 0.53, -0.67, 0.001 +19370623, 0.64, -0.33, 0.51, 0.001 +19370624, 0.43, -0.12, 0.28, 0.001 +19370625, -0.47, 0.12, -0.26, 0.001 +19370626, -0.90, 0.14, -0.55, 0.001 +19370628, -1.52, -0.65, -0.29, 0.001 +19370629, 0.22, -0.18, 0.35, 0.001 +19370630, 1.75, -0.42, 0.73, 0.001 +19370701, 0.64, 0.34, 0.28, 0.001 +19370702, 1.18, 0.45, 0.73, 0.001 +19370706, 2.96, 0.26, 1.04, 0.001 +19370707, 0.87, 1.33, 0.18, 0.001 +19370708, 0.23, 0.38, 0.98, 0.001 +19370709, -0.20, 0.41, -0.01, 0.001 +19370710, -0.26, 0.14, -0.26, 0.001 +19370712, 1.32, 0.02, 0.41, 0.001 +19370713, -0.49, -0.19, -0.45, 0.001 +19370714, 0.14, -0.32, -0.71, 0.001 +19370715, 0.42, -0.56, -0.08, 0.001 +19370716, -0.25, -0.20, -0.27, 0.001 +19370717, 0.09, -0.04, -0.14, 0.001 +19370719, 1.27, -0.37, 0.08, 0.001 +19370720, 0.91, -0.58, 0.70, 0.001 +19370721, -0.57, 0.45, -0.75, 0.001 +19370722, 0.31, 0.14, 0.19, 0.001 +19370723, 0.22, -0.17, -0.48, 0.001 +19370724, 0.65, -0.56, 0.29, 0.001 +19370726, -0.18, 0.42, -0.04, 0.001 +19370727, -0.20, -0.10, -0.19, 0.001 +19370728, -1.20, 0.26, -0.39, 0.001 +19370729, -0.27, 0.00, -0.23, 0.001 +19370730, 0.27, -0.87, -0.40, 0.001 +19370731, 0.79, 0.16, 0.37, 0.001 +19370802, 0.18, 0.26, 0.23, 0.001 +19370803, -0.55, 0.33, -0.49, 0.001 +19370804, 0.40, -0.10, 0.91, 0.001 +19370805, -0.41, 0.37, -0.07, 0.001 +19370806, -0.34, -0.10, -0.58, 0.001 +19370807, 0.68, -0.40, 0.35, 0.001 +19370809, 0.31, 0.04, 0.08, 0.001 +19370810, -0.18, -0.20, -0.29, 0.001 +19370811, -0.05, -0.06, -0.57, 0.001 +19370812, 0.49, -0.42, 0.58, 0.001 +19370813, 0.80, -0.01, -0.32, 0.001 +19370814, 0.27, 0.26, -0.07, 0.001 +19370816, -0.64, 0.21, -0.68, 0.001 +19370817, -0.34, 0.19, -0.16, 0.001 +19370818, -0.82, 0.48, -0.15, 0.001 +19370819, -1.21, -0.24, -0.05, 0.001 +19370820, -1.09, -0.13, -0.35, 0.001 +19370821, 0.48, 0.08, 0.44, 0.001 +19370823, -0.78, 0.57, -0.15, 0.001 +19370824, 0.61, -0.69, 0.19, 0.001 +19370825, -0.46, 0.14, -0.56, 0.001 +19370826, -1.73, -0.05, -0.34, 0.001 +19370827, -1.42, -0.20, 0.18, 0.001 +19370828, 0.25, 0.18, -0.14, 0.001 +19370830, 0.83, -0.72, 0.25, 0.001 +19370831, -0.23, 0.66, -0.59, 0.001 +19370901, -2.35, 0.10, -0.67, 0.001 +19370902, -1.25, -0.44, 0.05, 0.001 +19370903, 0.61, -0.22, 0.47, 0.001 +19370904, 0.44, -0.42, 0.15, 0.001 +19370907, -5.49, -1.70, -1.78, 0.001 +19370908, -0.98, -2.76, -0.84, 0.001 +19370909, 2.16, -0.19, 1.35, 0.001 +19370910, -4.98, -0.97, -1.01, 0.001 +19370911, 0.94, -1.69, 0.28, 0.001 +19370913, -1.51, -1.12, -0.60, 0.001 +19370914, 3.56, 2.03, 0.66, 0.001 +19370915, 0.12, 1.57, -0.09, 0.001 +19370916, 1.53, -0.53, 1.04, 0.001 +19370917, -1.90, 0.46, -1.56, 0.001 +19370918, -2.66, 0.96, -0.04, 0.001 +19370920, -0.98, -1.37, -0.22, 0.001 +19370921, 0.75, -0.24, -0.12, 0.001 +19370922, 0.31, -0.05, 0.41, 0.001 +19370923, -2.11, 0.30, -0.92, 0.001 +19370924, -4.41, -1.94, -0.41, 0.001 +19370925, -0.89, -2.09, -0.71, 0.001 +19370927, 3.34, -1.45, 1.08, 0.001 +19370928, 1.42, 1.95, -0.57, 0.001 +19370929, 0.42, 0.29, -1.24, 0.001 +19370930, 0.07, 1.59, 0.30, 0.001 +19371001, -0.36, 0.11, -0.06, 0.001 +19371002, 0.39, 0.19, 0.62, 0.001 +19371004, -1.01, 0.56, -0.93, 0.001 +19371005, -5.24, -0.57, 0.44, 0.001 +19371006, 2.01, -1.95, -0.56, 0.001 +19371007, -0.20, 1.90, -0.78, 0.001 +19371008, -2.20, 0.05, -0.69, 0.001 +19371009, -0.05, -1.01, -0.04, 0.001 +19371011, -3.87, -0.69, -2.40, 0.001 +19371013, -0.91, -3.73, 0.26, 0.001 +19371014, -1.47, -0.01, -0.55, 0.001 +19371015, -1.43, -2.08, 0.41, 0.001 +19371016, -0.02, -1.99, 0.32, 0.001 +19371018, -8.20, -0.63, 0.28, 0.001 +19371019, 0.47, -7.04, -2.43, 0.001 +19371020, 8.67, 8.21, 3.10, 0.001 +19371021, 2.66, 4.60, 2.56, 0.001 +19371022, -2.17, 2.16, -0.21, 0.001 +19371023, -4.32, -0.02, -2.18, 0.001 +19371025, 5.26, -0.04, -0.50, 0.001 +19371026, -1.29, 1.44, -0.30, 0.001 +19371027, -0.30, -0.72, 0.26, 0.001 +19371028, 2.50, 2.10, 1.27, 0.001 +19371029, 2.59, 0.94, 1.11, 0.001 +19371030, -0.01, 0.51, 0.21, 0.001 +19371101, -1.96, 0.12, -0.13, 0.001 +19371103, -4.18, -0.32, -1.57, 0.001 +19371104, -0.78, -0.29, 0.23, 0.001 +19371105, 0.20, 0.57, -0.03, 0.001 +19371106, -2.55, -0.18, -0.59, 0.001 +19371108, -0.44, -1.38, 0.50, 0.001 +19371109, 1.64, -0.02, 1.45, 0.001 +19371110, 5.00, -0.93, 0.60, 0.001 +19371112, 0.23, 1.45, -0.31, 0.001 +19371113, 0.12, -0.30, 0.42, 0.001 +19371115, -2.42, 0.79, -0.41, 0.001 +19371116, -0.88, -1.29, 0.30, 0.001 +19371117, -0.47, 0.59, -0.51, 0.001 +19371118, -1.83, -0.37, -0.46, 0.001 +19371119, -5.15, -1.05, -0.10, 0.001 +19371120, 1.98, -1.31, 0.72, 0.001 +19371122, -4.08, 1.98, -0.24, 0.001 +19371123, 0.57, -2.20, 0.83, 0.001 +19371124, -1.70, 1.13, -0.90, 0.001 +19371126, 3.96, -1.15, 1.67, 0.001 +19371127, 4.60, 0.09, -0.28, 0.001 +19371129, -1.41, 0.10, -0.83, 0.001 +19371130, 1.65, -0.19, 0.21, 0.001 +19371201, -1.13, -0.37, -1.18, 0.000 +19371202, 1.62, -1.61, 0.98, 0.000 +19371203, 1.64, 0.50, -0.03, 0.000 +19371204, 0.16, 0.05, -0.27, 0.000 +19371206, -1.40, 0.10, -0.80, 0.000 +19371207, 1.15, -1.28, 0.02, 0.000 +19371208, 1.02, 0.44, 0.97, 0.000 +19371209, -1.43, 0.27, -0.54, 0.000 +19371210, -0.93, -0.16, -0.11, 0.000 +19371211, 0.02, -0.28, 0.46, 0.000 +19371213, -2.74, 0.50, -0.63, 0.000 +19371214, 0.26, -0.93, 0.19, 0.000 +19371215, 0.58, -0.82, 0.19, 0.000 +19371216, 1.20, -0.92, -0.09, 0.000 +19371217, -0.56, -0.50, -0.29, 0.000 +19371218, 1.10, -0.98, 0.57, 0.000 +19371220, 1.39, -0.61, 0.38, 0.000 +19371221, 0.31, -0.74, 0.04, 0.000 +19371222, -1.26, 0.18, -0.60, 0.000 +19371223, -0.72, -1.02, -0.23, 0.000 +19371224, -0.26, 0.26, 0.21, 0.000 +19371227, -2.88, -0.65, -0.27, 0.000 +19371228, -3.28, -0.75, -0.03, 0.000 +19371229, 0.53, -2.09, 0.29, 0.000 +19371230, 1.70, 1.78, 0.18, 0.000 +19371231, -0.24, 1.03, 0.34, 0.000 +19380103, 0.17, 2.08, -0.15, 0.000 +19380104, 3.19, -1.28, -0.04, 0.000 +19380105, -0.06, 1.91, -0.69, 0.000 +19380106, 3.83, 0.05, 0.31, 0.000 +19380107, -0.47, 1.89, 0.20, 0.000 +19380108, 2.26, 0.63, 0.50, 0.000 +19380110, 1.88, 1.63, 0.06, 0.000 +19380111, 0.70, 0.52, -0.19, 0.000 +19380112, -0.66, 0.97, 0.04, 0.000 +19380113, -1.13, -0.12, -0.32, 0.000 +19380114, 0.04, -0.71, 0.03, 0.000 +19380115, 1.71, -0.02, 0.08, 0.000 +19380117, -1.79, 0.36, -0.77, 0.000 +19380118, -0.83, -0.22, -0.41, 0.000 +19380119, -1.09, -0.66, -0.40, 0.000 +19380120, 1.49, -0.07, 0.37, 0.000 +19380121, -1.37, 0.66, -0.24, 0.000 +19380122, -0.55, -0.29, -0.44, 0.000 +19380124, -0.16, -0.06, 0.97, 0.000 +19380125, -1.17, -0.12, -0.67, 0.000 +19380126, -3.60, -1.37, 0.17, 0.000 +19380127, -1.42, -0.13, -0.61, 0.000 +19380128, -1.11, -0.37, -0.11, 0.000 +19380129, -0.14, 1.02, 0.30, 0.000 +19380131, 1.06, -1.34, 0.64, 0.000 +19380201, 1.57, -0.06, 0.15, 0.000 +19380202, -1.10, 0.86, -0.68, 0.000 +19380203, -3.76, -0.20, 0.73, 0.000 +19380204, 1.63, -1.11, -0.57, 0.000 +19380205, 1.73, 0.63, 0.28, 0.000 +19380207, -1.16, 1.30, -0.43, 0.000 +19380208, 3.11, -1.70, 0.34, 0.000 +19380209, -0.16, 0.84, -0.34, 0.000 +19380210, 0.67, -0.09, 0.00, 0.000 +19380211, -0.38, -0.26, 0.17, 0.000 +19380214, 0.80, -0.69, 0.03, 0.000 +19380215, -0.76, 0.98, -0.79, 0.000 +19380216, -0.32, 0.09, 0.12, 0.000 +19380217, 2.36, -0.26, -0.10, 0.000 +19380218, -1.10, 0.59, -0.30, 0.000 +19380219, 1.14, -0.88, -0.36, 0.000 +19380221, 1.47, -0.57, 0.36, 0.000 +19380223, 2.44, -0.26, 0.43, 0.000 +19380224, -1.05, 0.41, -0.37, 0.000 +19380225, 0.56, 0.33, 0.35, 0.000 +19380226, -0.40, -0.14, -0.35, 0.000 +19380228, -1.31, 0.43, -0.49, 0.000 +19380301, 0.79, -0.62, 0.08, 0.000 +19380302, -0.82, 0.43, -0.64, 0.000 +19380303, -0.78, 0.09, -0.17, 0.000 +19380304, -0.71, 0.30, -0.70, 0.000 +19380305, -0.25, -0.46, 0.26, 0.000 +19380307, -1.73, 0.47, -0.47, 0.000 +19380308, -0.52, -1.23, -0.14, 0.000 +19380309, 0.02, 0.27, -0.14, 0.000 +19380310, -0.91, 0.56, -0.46, 0.000 +19380311, -1.72, 0.01, -0.09, 0.000 +19380312, 0.26, -0.87, 0.07, 0.000 +19380314, 1.28, -0.25, -0.26, 0.000 +19380315, 2.46, -0.11, -0.49, 0.000 +19380316, -3.63, 0.62, -0.45, 0.000 +19380317, -0.80, -0.22, -0.11, 0.000 +19380318, -3.36, -1.54, -0.63, 0.000 +19380319, 1.94, -0.57, 0.38, 0.000 +19380321, -0.11, 0.70, -0.12, 0.000 +19380322, -2.69, -0.40, -0.12, 0.000 +19380323, -2.29, -1.76, -0.34, 0.000 +19380324, 0.31, -0.29, 0.42, 0.000 +19380325, -5.11, -0.42, -0.81, 0.000 +19380326, -2.01, -0.87, -0.41, 0.000 +19380328, 0.77, -0.45, 0.43, 0.000 +19380329, -5.11, 1.12, -1.40, 0.000 +19380330, -0.72, 0.02, 1.47, 0.000 +19380331, -1.22, -0.19, 0.49, 0.000 +19380401, 4.16, 0.11, 1.20, 0.000 +19380402, 3.78, 1.42, -0.33, 0.000 +19380404, 0.65, 1.25, 0.67, 0.000 +19380405, 1.91, -0.35, 0.24, 0.000 +19380406, -1.62, 0.76, -0.82, 0.000 +19380407, -0.61, 0.43, -0.14, 0.000 +19380408, 4.12, -0.82, -0.52, 0.000 +19380409, 5.73, 0.20, 0.55, 0.000 +19380411, -2.41, 1.26, 0.40, 0.000 +19380412, 0.41, -1.62, 0.28, 0.000 +19380413, 0.43, 0.92, -1.13, 0.000 +19380414, 1.23, -0.12, -0.35, 0.000 +19380416, 3.74, 0.64, 0.24, 0.000 +19380418, -1.70, 0.64, -0.67, 0.000 +19380419, -2.33, 0.53, -0.20, 0.000 +19380420, -0.50, -0.71, 0.26, 0.000 +19380421, 0.55, 0.32, -0.13, 0.000 +19380422, 2.65, -0.39, 0.53, 0.000 +19380423, -0.62, 0.73, -0.07, 0.000 +19380425, -1.46, 0.08, 0.04, 0.000 +19380426, -1.65, 0.48, 0.36, 0.000 +19380427, 0.72, -0.51, 0.17, 0.000 +19380428, -2.50, 0.30, -0.28, 0.000 +19380429, -0.31, -1.21, -0.25, 0.000 +19380430, -0.16, 0.93, 0.52, 0.000 +19380502, -1.24, -0.18, 0.09, 0.000 +19380503, 2.20, -1.04, -0.23, 0.000 +19380504, 1.21, -0.58, 0.54, 0.000 +19380505, -0.02, 0.06, -0.50, 0.000 +19380506, 3.58, -2.36, 1.49, 0.000 +19380507, 0.12, 1.06, -0.39, 0.000 +19380509, 1.48, -0.65, 0.02, 0.000 +19380510, -1.10, 1.59, -0.12, 0.000 +19380511, 0.50, -0.11, 0.35, 0.000 +19380512, -0.56, -0.09, -0.07, 0.000 +19380513, -1.16, 0.52, -0.26, 0.000 +19380514, -0.03, 0.13, -0.01, 0.000 +19380516, -1.36, 0.73, -0.78, 0.000 +19380517, 0.38, -1.06, -0.09, 0.000 +19380518, 0.41, 0.16, -0.24, 0.000 +19380519, -1.52, 0.35, -0.82, 0.000 +19380520, -0.45, -0.30, 0.50, 0.000 +19380521, -1.19, 0.48, -0.70, 0.000 +19380523, 0.40, -0.89, 0.54, 0.000 +19380524, -1.20, 0.56, -0.52, 0.000 +19380525, -1.50, 0.20, 0.42, 0.000 +19380526, -2.47, -0.27, -0.51, 0.000 +19380527, -0.21, -0.97, 1.12, 0.000 +19380528, 1.18, 0.24, -0.06, 0.000 +19380531, -1.15, -0.29, 0.08, 0.000 +19380601, 2.44, -0.61, -0.02, 0.000 +19380602, -0.05, 0.56, 0.18, 0.000 +19380603, -0.97, 0.27, -0.29, 0.000 +19380604, 1.94, -0.72, -0.35, 0.000 +19380606, 0.79, -0.12, -0.25, 0.000 +19380607, -0.33, 1.01, -0.60, 0.000 +19380608, 0.31, -0.89, -0.44, 0.000 +19380609, 2.01, -0.54, 0.44, 0.000 +19380610, -0.87, 0.51, -0.58, 0.000 +19380611, -0.31, 0.04, 0.75, 0.000 +19380613, -1.81, 1.29, -0.44, 0.000 +19380614, 0.72, -1.06, -0.15, 0.000 +19380615, 0.42, 0.77, -1.24, 0.000 +19380616, 0.77, -0.66, 0.27, 0.000 +19380617, -0.65, 0.08, 0.32, 0.000 +19380618, 0.07, 0.14, -0.24, 0.000 +19380620, 4.69, -1.43, 0.70, 0.000 +19380621, 2.38, 0.76, 0.36, 0.000 +19380622, 2.77, 0.57, 0.08, 0.000 +19380623, 2.78, 1.08, 0.76, 0.000 +19380624, 1.03, 0.19, -0.51, 0.000 +19380625, 1.91, -0.49, 0.80, 0.000 +19380627, -0.63, 1.89, -0.58, 0.000 +19380628, -0.28, -0.64, -0.19, 0.000 +19380629, 4.27, -0.20, 0.61, 0.000 +19380630, -1.48, 1.25, 1.04, 0.000 +19380701, 2.53, -0.92, 1.45, 0.000 +19380702, 1.72, 0.83, 0.97, 0.000 +19380705, -1.45, 0.23, -0.27, 0.000 +19380706, 1.38, 0.74, 0.05, 0.000 +19380707, -0.08, 1.49, 1.30, 0.000 +19380708, -1.34, 0.38, -0.45, 0.000 +19380709, 0.41, -0.43, -0.16, 0.000 +19380711, -1.53, 0.48, -1.13, 0.000 +19380712, 2.34, -0.26, 0.92, 0.000 +19380713, -0.04, 2.00, -0.14, 0.000 +19380714, -1.12, -0.45, -0.47, 0.000 +19380715, 1.19, -0.76, 0.51, 0.000 +19380716, 0.88, 0.61, 0.29, 0.000 +19380718, 1.72, 0.62, 0.18, 0.000 +19380719, 2.22, -0.29, 0.65, 0.000 +19380720, -0.66, 0.25, 0.58, 0.000 +19380721, -0.09, 0.35, 0.55, 0.000 +19380722, 0.23, 0.84, 0.30, 0.000 +19380723, 1.37, 0.00, 0.32, 0.000 +19380725, 0.51, 0.82, -1.31, 0.000 +19380726, -0.98, 0.20, -0.66, 0.000 +19380727, -2.98, -1.60, -1.16, 0.000 +19380728, 1.59, 0.24, 0.08, 0.000 +19380729, -0.80, 1.02, -0.41, 0.000 +19380730, 0.32, -0.27, 0.30, 0.000 +19380801, -0.75, -0.72, -0.30, 0.000 +19380802, 0.71, 0.17, 0.30, 0.000 +19380803, -0.73, -0.01, -1.24, 0.000 +19380804, 0.51, -0.66, -0.40, 0.000 +19380805, 1.94, 0.00, 0.97, 0.000 +19380806, 1.06, 0.59, 0.36, 0.000 +19380808, -0.73, -0.31, -0.32, 0.000 +19380809, -0.66, -0.76, -0.10, 0.000 +19380810, -0.80, 0.21, -0.55, 0.000 +19380811, -2.27, -0.53, -0.72, 0.000 +19380812, -1.90, -1.32, -1.43, 0.000 +19380813, -0.44, -0.28, 0.27, 0.000 +19380815, 0.56, 0.46, -0.04, 0.000 +19380816, 1.18, -0.17, 0.17, 0.000 +19380817, 0.16, 0.27, -0.37, 0.000 +19380818, -0.23, -0.22, -0.32, 0.000 +19380819, 1.37, -0.28, 0.59, 0.000 +19380820, 0.14, 0.24, 0.27, 0.000 +19380822, -0.44, 0.10, -0.44, 0.000 +19380823, 2.13, 0.37, 0.20, 0.000 +19380824, 0.18, 1.18, 0.00, 0.000 +19380825, 0.48, -0.30, 0.53, 0.000 +19380826, -0.73, 0.47, -0.21, 0.000 +19380827, -0.99, -0.31, -0.45, 0.000 +19380829, -3.54, -0.73, -1.22, 0.000 +19380830, 1.15, -0.12, 0.37, 0.000 +19380831, 0.11, 0.18, -0.73, 0.000 +19380901, -0.91, -0.62, -0.66, 0.001 +19380902, 2.03, -0.51, 0.59, 0.001 +19380903, 0.90, 0.67, 0.14, 0.001 +19380906, -1.00, -0.21, -0.15, 0.001 +19380907, 1.26, 0.12, 0.41, 0.001 +19380908, -0.70, 0.33, -0.61, 0.001 +19380909, -1.91, -0.62, -0.43, 0.001 +19380910, -1.06, -0.13, -0.11, 0.001 +19380912, 1.05, -0.90, -0.04, 0.001 +19380913, -4.54, 0.85, -3.06, 0.001 +19380914, -2.06, -4.96, -1.42, 0.001 +19380915, 3.47, 0.67, 1.45, 0.001 +19380916, -1.87, 0.06, -0.72, 0.001 +19380917, -2.24, -0.82, -1.17, 0.001 +19380919, 2.71, 1.82, 1.46, 0.001 +19380920, 3.49, 0.77, 1.04, 0.001 +19380921, 0.53, 0.57, 1.17, 0.001 +19380922, -1.47, 0.05, -0.63, 0.001 +19380923, -2.83, -0.93, -1.04, 0.001 +19380924, -0.67, -1.33, 0.23, 0.001 +19380926, -2.68, 0.13, -1.22, 0.001 +19380927, -0.13, 0.49, -0.43, 0.001 +19380928, 3.86, 0.23, 1.70, 0.001 +19380929, 3.49, 0.67, 1.33, 0.001 +19380930, 2.75, 1.34, 1.32, 0.001 +19381001, 1.66, 0.35, 1.32, 0.000 +19381003, 0.81, 1.41, -0.74, 0.000 +19381004, 0.01, 0.31, -0.52, 0.000 +19381005, 2.82, 0.33, 2.40, 0.000 +19381006, -0.26, 0.71, -0.13, 0.000 +19381007, 0.04, -0.26, 0.58, 0.000 +19381008, 1.01, 0.27, 1.33, 0.000 +19381010, -0.22, 0.68, -0.56, 0.000 +19381011, -0.58, -0.07, -0.07, 0.000 +19381013, 2.41, -0.15, 0.82, 0.000 +19381014, -0.55, -0.04, -0.47, 0.000 +19381015, 0.83, -0.40, 0.22, 0.000 +19381017, -1.17, -0.03, -0.58, 0.000 +19381018, 0.97, 0.48, 0.52, 0.000 +19381019, -1.18, 0.67, -0.01, 0.000 +19381020, 1.22, -1.13, 0.64, 0.000 +19381021, 0.23, 1.04, 0.01, 0.000 +19381022, 1.07, -0.01, 0.68, 0.000 +19381024, 0.19, 0.27, -0.20, 0.000 +19381025, 0.10, 0.44, 0.35, 0.000 +19381026, -0.94, 0.16, -0.23, 0.000 +19381027, 0.25, -0.55, 0.29, 0.000 +19381028, -1.00, -0.06, 0.06, 0.000 +19381029, -0.33, 0.25, -0.44, 0.000 +19381031, 0.26, 0.53, -0.55, 0.000 +19381101, -0.26, 0.57, 0.32, -0.003 +19381102, 0.17, -0.56, 0.16, -0.003 +19381103, 0.25, -0.30, 1.24, -0.003 +19381104, -0.20, 0.17, -0.58, -0.003 +19381105, 0.29, -0.01, 0.04, -0.003 +19381107, 1.57, 0.57, 0.08, -0.003 +19381109, 2.42, -0.63, 0.91, -0.003 +19381110, -0.37, 0.28, -0.43, -0.003 +19381112, 0.49, 0.16, 0.91, -0.003 +19381114, -1.73, 1.01, -1.04, -0.003 +19381115, -0.53, -0.57, 0.01, -0.003 +19381116, -2.25, -0.43, -1.01, -0.003 +19381117, 0.87, -0.26, 0.28, -0.003 +19381118, -1.82, -0.80, -0.89, -0.003 +19381119, 0.26, 0.15, 0.42, -0.003 +19381121, -0.07, -0.16, -0.60, -0.003 +19381122, -0.59, 0.29, -0.88, -0.003 +19381123, 0.35, -0.34, 0.68, -0.003 +19381125, 0.23, 0.07, 0.17, -0.003 +19381126, -1.32, -0.15, -1.06, -0.003 +19381128, -1.66, -1.13, -1.15, -0.003 +19381129, 0.32, 0.21, 0.00, -0.003 +19381130, 1.98, -0.78, 1.37, -0.003 +19381201, -0.34, 0.72, -0.25, 0.000 +19381202, -0.95, -0.31, -1.29, 0.000 +19381203, -0.02, 0.10, -0.47, 0.000 +19381205, -0.39, -0.43, -0.49, 0.000 +19381206, 0.63, -0.03, 0.66, 0.000 +19381207, 0.26, 0.26, -0.44, 0.000 +19381208, -0.92, -0.57, -1.00, 0.000 +19381209, -0.54, -0.20, -0.95, 0.000 +19381210, 0.65, -0.42, 0.37, 0.000 +19381212, 0.42, -0.09, -0.25, 0.000 +19381213, 0.75, -0.76, 0.53, 0.000 +19381214, 2.00, 0.07, 0.64, 0.000 +19381215, 0.28, 0.48, 0.14, 0.000 +19381216, -0.47, -0.54, -0.90, 0.000 +19381217, -0.33, -0.35, -0.40, 0.000 +19381219, -0.58, 0.04, -0.15, 0.000 +19381220, -0.29, -0.82, -0.52, 0.000 +19381221, -0.79, -0.44, -0.22, 0.000 +19381222, 0.55, -0.76, 0.75, 0.000 +19381223, 0.83, 0.23, 1.11, 0.000 +19381224, 0.41, -0.02, 1.11, 0.000 +19381227, -0.93, -0.34, -0.79, 0.000 +19381228, 0.76, -0.32, 0.37, 0.000 +19381229, 2.31, 1.15, 2.25, 0.000 +19381230, 0.53, 0.92, 0.26, 0.000 +19381231, 0.41, 0.83, 0.58, 0.000 +19390103, -0.70, 0.54, -0.41, 0.000 +19390104, 0.93, 0.77, 1.23, 0.000 +19390105, -1.06, -0.05, -1.25, 0.000 +19390106, 0.06, -0.14, 0.53, 0.000 +19390107, -0.99, 0.11, -0.31, 0.000 +19390109, -0.91, -0.27, -0.74, 0.000 +19390110, 0.18, 0.43, -0.10, 0.000 +19390111, -1.67, -0.38, -0.91, 0.000 +19390112, -0.77, -1.03, -0.37, 0.000 +19390113, -0.57, 0.45, -0.47, 0.000 +19390114, 1.99, -0.30, 1.72, 0.000 +19390116, -0.07, 0.31, 0.04, 0.000 +19390117, 0.53, -0.22, 0.07, 0.000 +19390118, 0.03, 0.29, 0.10, 0.000 +19390119, 0.75, -0.15, 0.44, 0.000 +19390120, -0.15, 0.22, -0.29, 0.000 +19390121, -1.95, -0.05, -1.42, 0.000 +19390123, -4.02, -0.67, -2.17, 0.000 +19390124, -0.04, -1.66, 0.50, 0.000 +19390125, -0.22, 0.89, -0.44, 0.000 +19390126, -2.74, -0.60, -1.68, 0.000 +19390127, 2.08, -1.28, 0.71, 0.000 +19390128, -0.26, 0.17, -0.41, 0.000 +19390130, 2.38, -0.66, 1.07, 0.000 +19390131, 1.34, 1.69, 0.74, 0.000 +19390201, -1.00, 0.52, 0.15, 0.000 +19390202, 1.84, -0.87, 0.64, 0.000 +19390203, -0.59, 0.72, -0.47, 0.000 +19390204, 0.78, 0.31, 0.25, 0.000 +19390206, 0.34, -0.07, -0.46, 0.000 +19390207, -0.93, -0.38, -0.57, 0.000 +19390208, 0.95, -0.38, 0.85, 0.000 +19390209, -1.04, 0.39, -0.61, 0.000 +19390210, 0.08, -0.62, -0.21, 0.000 +19390211, 0.64, 0.13, 0.23, 0.000 +19390214, -0.31, 0.00, -0.67, 0.000 +19390215, 0.21, -0.26, 0.22, 0.000 +19390216, 0.96, 0.35, 0.46, 0.000 +19390217, -0.55, 0.35, -0.81, 0.000 +19390218, 0.67, -0.25, 0.87, 0.000 +19390220, -2.24, 0.08, -0.59, 0.000 +19390221, 0.15, -0.37, 0.17, 0.000 +19390223, 0.28, 0.18, 0.23, 0.000 +19390224, 2.07, 0.35, 1.22, 0.000 +19390225, 0.76, 0.48, 0.47, 0.000 +19390227, -0.06, -0.05, 0.29, 0.000 +19390228, 0.55, -0.02, 1.27, 0.000 +19390301, -0.08, -0.31, -0.14, 0.000 +19390302, -0.01, -0.06, -0.22, 0.000 +19390303, 1.25, -0.29, 0.47, 0.000 +19390304, 0.21, 0.62, -0.17, 0.000 +19390306, -0.69, 0.03, -1.15, 0.000 +19390307, 0.45, -0.11, 0.05, 0.000 +19390308, 1.61, -0.10, 1.12, 0.000 +19390309, -0.06, 0.65, -0.60, 0.000 +19390310, 0.64, 0.22, -0.62, 0.000 +19390311, -0.37, 0.02, -0.97, 0.000 +19390313, -0.68, -0.11, -0.48, 0.000 +19390314, 0.36, -0.28, 0.11, 0.000 +19390315, -2.34, -0.05, -1.11, 0.000 +19390316, 0.06, 0.17, 0.28, 0.000 +19390317, -2.85, -0.86, -1.61, 0.000 +19390318, -1.70, -0.34, -0.57, 0.000 +19390320, -0.55, 0.12, -0.09, 0.000 +19390321, 1.58, 0.03, 0.51, 0.000 +19390322, -2.94, -1.11, -1.26, 0.000 +19390323, 1.08, 0.36, 0.94, 0.000 +19390324, 1.37, 0.50, 0.99, 0.000 +19390325, -0.30, 0.18, -0.65, 0.000 +19390327, -0.16, 0.00, -0.59, 0.000 +19390328, -1.35, -0.69, -0.41, 0.000 +19390329, 0.57, 0.05, 0.54, 0.000 +19390330, -2.86, -0.16, -1.65, 0.000 +19390331, -4.71, -3.72, -2.17, 0.000 +19390401, 1.80, -0.56, 2.24, 0.000 +19390403, 0.08, 1.02, -0.14, 0.000 +19390404, -2.02, -0.43, -0.90, 0.000 +19390405, 0.78, 0.89, 0.00, 0.000 +19390406, -3.28, -1.31, -1.14, 0.000 +19390408, -4.13, -1.47, -2.19, 0.000 +19390410, 1.74, -0.08, 1.58, 0.000 +19390411, -0.19, 0.52, 1.01, 0.000 +19390412, 2.81, 1.86, 0.73, 0.000 +19390413, 1.11, 0.67, -0.59, 0.000 +19390414, -1.20, -0.69, -0.84, 0.000 +19390415, 3.07, 0.34, 2.16, 0.000 +19390417, -1.81, -0.45, -1.32, 0.000 +19390418, -1.15, 0.66, -0.54, 0.000 +19390419, 1.12, -0.04, -0.18, 0.000 +19390420, 1.18, 0.24, 0.85, 0.000 +19390421, 0.28, 0.67, -0.28, 0.000 +19390422, -0.05, -0.07, -0.30, 0.000 +19390424, -0.88, 0.05, -0.75, 0.000 +19390425, 0.06, -0.10, 0.87, 0.000 +19390426, 0.64, -0.35, -0.25, 0.000 +19390427, 0.90, -0.14, 0.14, 0.000 +19390428, -0.78, 0.48, -0.19, 0.000 +19390429, 0.02, 0.25, 0.19, 0.000 +19390501, -0.37, 0.54, -0.08, 0.000 +19390502, 1.12, 0.15, 0.29, 0.000 +19390503, 2.04, 0.31, 0.64, 0.000 +19390504, -0.11, 0.49, -0.25, 0.000 +19390505, -0.32, -0.12, -0.52, 0.000 +19390506, 0.25, 0.22, 0.38, 0.000 +19390508, -0.25, -0.14, -0.11, 0.000 +19390509, 1.65, -0.14, 0.81, 0.000 +19390510, -0.57, 0.94, -0.58, 0.000 +19390511, 0.03, -0.30, -0.32, 0.000 +19390512, -0.49, 0.22, 0.04, 0.000 +19390513, 0.17, -0.09, -0.48, 0.000 +19390515, 0.18, -0.10, -0.20, 0.000 +19390516, -2.16, 0.10, -0.97, 0.000 +19390517, -0.69, -0.31, -0.32, 0.000 +19390518, 0.25, 0.02, -0.42, 0.000 +19390519, 0.79, 0.01, 0.36, 0.000 +19390520, 0.66, -0.06, 0.65, 0.000 +19390522, 0.81, -0.79, 0.02, 0.000 +19390523, -0.40, 0.76, -0.63, 0.000 +19390524, 2.39, -0.25, 1.29, 0.000 +19390525, 0.29, 0.68, -0.19, 0.000 +19390526, 0.40, -0.03, 0.06, 0.000 +19390527, 0.52, 0.10, 1.14, 0.000 +19390529, 0.72, 0.06, 0.05, 0.000 +19390531, -0.24, 0.29, -0.04, 0.000 +19390601, -1.32, -0.25, -0.85, 0.000 +19390602, 0.48, 0.10, -0.26, 0.000 +19390603, 0.23, 0.35, 0.00, 0.000 +19390605, -0.04, -0.12, -0.11, 0.000 +19390606, 1.08, -0.26, 0.49, 0.000 +19390607, 0.27, 0.23, -0.78, 0.000 +19390608, -0.19, 0.05, -0.10, 0.000 +19390609, 1.15, 0.12, -0.22, 0.000 +19390610, -0.04, 0.18, -0.15, 0.000 +19390612, -0.85, -0.08, -0.50, 0.000 +19390613, -0.58, -0.68, -0.07, 0.000 +19390614, -0.49, 0.15, -0.47, 0.000 +19390615, -1.92, 0.58, -0.86, 0.000 +19390616, 0.04, 0.00, -0.22, 0.000 +19390617, 0.53, 0.10, 0.31, 0.000 +19390619, 0.72, -0.25, -0.05, 0.000 +19390620, 0.84, -0.13, 0.29, 0.000 +19390621, 0.03, 0.37, -0.23, 0.000 +19390622, -0.39, 0.10, -0.59, 0.000 +19390623, 0.23, 0.24, 0.40, 0.000 +19390624, -0.11, 0.42, 0.20, 0.000 +19390626, -1.77, -0.48, -0.82, 0.000 +19390627, 0.24, -0.48, 0.49, 0.000 +19390628, -1.62, 0.16, -0.91, 0.000 +19390629, -2.36, -0.61, -0.91, 0.000 +19390630, 0.43, -0.85, 0.18, 0.000 +19390701, 0.96, -0.02, 0.38, 0.000 +19390703, 0.37, 0.34, 0.10, 0.000 +19390705, 1.42, -0.68, 0.05, 0.000 +19390706, 0.21, 0.31, -0.14, 0.000 +19390707, -0.30, 0.04, -0.02, 0.000 +19390708, -0.01, -0.01, -0.29, 0.000 +19390710, 0.33, -0.25, -0.25, 0.000 +19390711, 0.97, -0.13, 0.71, 0.000 +19390712, 1.74, 0.70, -0.47, 0.000 +19390713, 0.69, 1.40, -0.23, 0.000 +19390714, -0.49, -0.18, -0.19, 0.000 +19390715, 0.23, -0.33, 0.21, 0.000 +19390717, 3.57, 0.68, 0.48, 0.000 +19390718, 0.73, 1.57, 0.24, 0.000 +19390719, -0.95, 0.37, -0.64, 0.000 +19390720, -1.08, -0.30, -0.09, 0.000 +19390721, 1.71, 0.40, 0.73, 0.000 +19390722, 1.07, 0.03, 0.69, 0.000 +19390724, -0.63, 0.39, -0.07, 0.000 +19390725, -0.41, 0.24, -0.14, 0.000 +19390726, 0.57, -0.87, -0.30, 0.000 +19390727, 0.15, 0.21, 0.60, 0.000 +19390728, -0.30, 0.47, -0.96, 0.000 +19390729, -0.24, -0.45, -0.02, 0.000 +19390731, -0.43, -0.03, -0.27, 0.000 +19390801, 0.06, -0.37, -0.02, 0.000 +19390802, 0.86, 0.01, 0.45, 0.000 +19390803, -0.18, 0.59, 0.03, 0.000 +19390804, -1.75, -1.05, -0.45, 0.000 +19390805, 0.45, 0.21, 0.15, 0.000 +19390807, -1.00, -0.42, -0.38, 0.000 +19390808, 0.22, 0.01, 0.07, 0.000 +19390809, -0.69, -0.37, -0.15, 0.000 +19390810, -1.68, -0.36, -0.75, 0.000 +19390811, 0.03, 0.05, 0.11, 0.000 +19390812, 0.89, 0.07, 0.62, 0.000 +19390814, 0.89, 0.24, -0.60, 0.000 +19390815, 0.93, 0.15, -0.12, 0.000 +19390816, -2.11, -1.08, -0.04, 0.000 +19390817, -0.26, -0.43, 0.10, 0.000 +19390818, -1.80, -0.77, -0.41, 0.000 +19390819, -0.37, 0.02, 0.05, 0.000 +19390821, -2.04, -1.66, -0.15, 0.000 +19390822, 1.55, 0.54, -0.58, 0.000 +19390823, -2.69, -0.92, 0.23, 0.000 +19390824, -0.51, -1.61, -0.17, 0.000 +19390825, 1.98, 0.39, -0.14, 0.000 +19390826, 2.18, 0.87, 0.59, 0.000 +19390828, -1.76, 0.32, -1.10, 0.000 +19390829, 2.14, 0.83, 0.44, 0.000 +19390830, -0.48, 0.40, 0.06, 0.000 +19390831, -1.50, -0.51, -0.43, 0.000 +19390901, 0.44, -0.02, 0.38, 0.000 +19390902, 2.14, 4.52, 0.85, 0.000 +19390905, 8.79, 8.07, 8.43, 0.000 +19390906, -0.62, -0.71, 0.79, 0.000 +19390907, 0.29, 0.38, -0.46, 0.000 +19390908, 1.97, 0.97, 1.73, 0.000 +19390909, 0.41, 1.17, 0.39, 0.000 +19390911, 2.27, 2.36, 1.85, 0.000 +19390912, 0.62, -1.02, 1.43, 0.000 +19390913, -0.78, 0.57, 0.01, 0.000 +19390914, 0.21, 0.22, -0.68, 0.000 +19390915, -0.09, -0.32, -0.06, 0.000 +19390916, -1.10, -0.79, -0.08, 0.000 +19390918, -3.11, -1.28, -2.39, 0.000 +19390919, 3.35, 1.53, 1.75, 0.000 +19390920, 0.10, 0.69, 0.65, 0.000 +19390921, 0.82, 0.53, 0.88, 0.000 +19390922, -0.46, 0.10, 0.35, 0.000 +19390923, 0.42, -0.15, 0.15, 0.000 +19390925, -0.09, 0.64, 0.38, 0.000 +19390926, 0.89, -0.17, 1.80, 0.000 +19390927, -0.03, -0.06, 0.39, 0.000 +19390928, -1.35, -0.28, -0.37, 0.000 +19390929, -0.83, -1.25, -1.06, 0.000 +19390930, 1.94, 1.27, 1.14, 0.000 +19391002, -0.88, -0.22, -0.21, 0.000 +19391003, -0.96, -0.66, -1.32, 0.000 +19391004, -0.04, -0.91, -0.25, 0.000 +19391005, 0.35, 0.81, -0.46, 0.000 +19391006, -0.09, 0.27, 0.53, 0.000 +19391007, -0.82, -0.96, -0.68, 0.000 +19391009, 0.20, -0.30, -0.68, 0.000 +19391010, 0.46, 0.80, 0.17, 0.000 +19391011, 0.50, -0.60, 0.31, 0.000 +19391013, -0.50, 0.47, -0.47, 0.000 +19391014, -0.20, -0.53, 0.16, 0.000 +19391016, 0.23, -0.12, -0.37, 0.000 +19391017, 2.61, 1.88, 1.16, 0.000 +19391018, -0.40, 0.16, -0.52, 0.000 +19391019, -0.06, -0.09, -0.71, 0.000 +19391020, -0.41, -0.51, -0.31, 0.000 +19391021, 0.67, 0.30, 0.06, 0.000 +19391023, -0.19, 0.10, -0.08, 0.000 +19391024, 0.29, 0.35, -0.82, 0.000 +19391025, 1.06, 0.91, 0.63, 0.000 +19391026, -0.66, 0.05, -0.27, 0.000 +19391027, -0.38, -0.56, 0.03, 0.000 +19391028, -0.25, 0.31, -0.43, 0.000 +19391030, -0.13, -0.26, -0.11, 0.000 +19391031, -0.88, -0.60, -0.28, 0.000 +19391101, -0.08, -0.55, -0.26, 0.000 +19391102, 0.11, 0.46, -0.46, 0.000 +19391103, 0.86, 0.64, -0.13, 0.000 +19391104, -0.16, 1.47, -0.46, 0.000 +19391106, -0.60, -0.85, -0.50, 0.000 +19391108, -0.71, -0.86, -0.43, 0.000 +19391109, -1.12, -1.08, -0.41, 0.000 +19391110, 0.28, -0.16, -0.84, 0.000 +19391113, 0.02, 0.27, -0.14, 0.000 +19391114, 0.61, -0.41, 0.41, 0.000 +19391115, -0.21, 0.05, -0.36, 0.000 +19391116, 1.10, 0.04, 0.07, 0.000 +19391117, -0.29, 0.00, 0.12, 0.000 +19391118, 0.34, -0.35, -0.44, 0.000 +19391120, 0.05, -0.03, 0.06, 0.000 +19391121, -0.63, -0.28, -0.46, 0.000 +19391122, -0.13, -0.38, -0.60, 0.000 +19391124, -1.11, -0.57, -0.39, 0.000 +19391125, 0.04, -0.53, -0.04, 0.000 +19391127, 0.08, 0.13, -0.80, 0.000 +19391128, -0.16, -0.24, -0.23, 0.000 +19391129, -1.08, -0.67, -0.56, 0.000 +19391130, -0.90, -1.47, -0.21, 0.000 +19391201, 0.73, 0.67, 0.03, 0.000 +19391202, 0.11, 0.62, 0.03, 0.000 +19391204, -0.11, -0.29, -0.68, 0.000 +19391205, 0.10, -0.21, -0.23, 0.000 +19391206, 1.41, 0.84, -0.01, 0.000 +19391207, 0.29, 0.74, -0.44, 0.000 +19391208, -0.65, -0.20, -0.10, 0.000 +19391209, -0.06, 0.17, -0.37, 0.000 +19391211, -0.83, -0.43, -0.83, 0.000 +19391212, -0.23, -0.58, -0.22, 0.000 +19391213, 1.32, 0.61, 1.17, 0.000 +19391214, -0.07, 0.14, -0.99, 0.000 +19391215, 0.09, -0.48, -0.35, 0.000 +19391216, -0.07, -0.10, 0.41, 0.000 +19391218, -0.17, 0.09, -0.43, 0.000 +19391219, -0.26, -0.26, -1.04, 0.000 +19391220, 0.31, -0.37, -0.01, 0.000 +19391221, 0.03, 0.05, -0.38, 0.000 +19391222, 0.34, -0.60, 0.15, 0.000 +19391223, 0.10, 0.26, 0.15, 0.000 +19391226, -0.39, -0.22, -0.85, 0.000 +19391227, -0.63, -0.71, -0.01, 0.000 +19391228, 0.87, 0.74, 0.85, 0.000 +19391229, 0.58, 0.18, -0.24, 0.000 +19391230, 0.22, 0.24, 0.47, 0.000 +19400102, 1.07, 0.99, 0.80, 0.000 +19400103, 1.15, 0.87, 1.07, 0.000 +19400104, -0.28, 0.18, -0.15, 0.000 +19400105, -0.52, -0.13, -0.46, 0.000 +19400106, -0.08, 0.30, 0.19, 0.000 +19400108, 0.11, 0.25, -0.06, 0.000 +19400109, -0.87, -0.40, -0.66, 0.000 +19400110, 0.15, 0.19, 0.47, 0.000 +19400111, -1.34, -0.81, -0.09, 0.000 +19400112, -1.62, -0.74, -0.32, 0.000 +19400113, -0.36, -0.20, -0.28, 0.000 +19400115, -0.39, -0.70, 0.27, 0.000 +19400116, 0.65, 0.28, -0.20, 0.000 +19400117, 0.21, 0.18, -0.03, 0.000 +19400118, -0.24, -0.44, -0.37, 0.000 +19400119, 0.21, -0.20, -0.70, 0.000 +19400120, -0.08, 0.12, 0.36, 0.000 +19400122, -0.30, -0.07, -0.13, 0.000 +19400123, 0.19, -0.12, -0.54, 0.000 +19400124, 1.17, 0.29, 0.48, 0.000 +19400125, -0.42, 0.71, -0.22, 0.000 +19400126, 0.01, 0.29, -0.78, 0.000 +19400127, -0.10, 0.15, 0.83, 0.000 +19400129, -0.09, -0.05, -0.02, 0.000 +19400130, -0.41, -0.34, 0.00, 0.000 +19400131, -0.22, -0.28, -0.19, 0.000 +19400201, -0.05, 0.13, 0.03, 0.000 +19400202, 0.15, 0.49, -0.43, 0.000 +19400203, 0.24, -0.10, 0.12, 0.000 +19400205, -0.38, -0.05, -0.10, 0.000 +19400206, 0.64, -0.18, 0.23, 0.000 +19400207, 0.44, 0.06, -0.13, 0.000 +19400208, 1.13, 0.84, 0.82, 0.000 +19400209, 0.25, 0.61, 0.09, 0.000 +19400210, -0.18, -0.62, -0.22, 0.000 +19400213, -0.10, -0.18, -0.56, 0.000 +19400214, -0.14, -0.07, -0.24, 0.000 +19400215, 0.11, 0.53, -0.18, 0.000 +19400216, 0.04, 0.31, 0.39, 0.000 +19400217, 0.29, 0.56, 0.35, 0.000 +19400219, -0.16, -0.04, 0.00, 0.000 +19400220, 0.32, -0.14, -0.24, 0.000 +19400221, -0.08, 0.75, 0.15, 0.000 +19400223, -0.48, -0.10, -0.15, 0.000 +19400224, -0.49, -0.31, -0.37, 0.000 +19400226, -0.06, -0.59, -0.06, 0.000 +19400227, -0.15, -0.12, 0.44, 0.000 +19400228, 0.13, 0.39, -0.43, 0.000 +19400229, -0.02, 0.29, 0.21, 0.000 +19400301, -0.30, -0.10, -0.08, 0.000 +19400302, 0.01, 0.13, -0.06, 0.000 +19400304, 0.23, -0.03, 0.08, 0.000 +19400305, 0.36, 0.31, -0.28, 0.000 +19400306, 0.70, 0.63, 0.22, 0.000 +19400307, 0.26, 0.24, -0.42, 0.000 +19400308, -0.19, 0.27, -0.26, 0.000 +19400309, 0.03, -0.24, 0.26, 0.000 +19400311, 0.16, 0.00, -0.16, 0.000 +19400312, 0.03, -0.51, 0.21, 0.000 +19400313, -0.14, -0.23, -0.30, 0.000 +19400314, -0.07, -0.09, -0.55, 0.000 +19400315, -1.19, -0.82, 0.01, 0.000 +19400316, -0.48, -0.93, 0.02, 0.000 +19400318, -0.06, -0.15, -0.32, 0.000 +19400319, 0.68, 0.53, -0.18, 0.000 +19400320, 0.58, 1.17, 0.02, 0.000 +19400321, -0.03, 0.33, 0.11, 0.000 +19400323, -0.01, 0.31, -0.08, 0.000 +19400325, -0.20, -0.60, -0.09, 0.000 +19400326, -0.22, -0.03, -0.08, 0.000 +19400327, 1.27, 1.11, 0.25, 0.000 +19400328, -0.15, 0.30, -0.23, 0.000 +19400329, 0.37, -0.67, 0.14, 0.000 +19400330, 0.44, 0.38, 0.52, 0.000 +19400401, -0.16, 0.13, -0.35, 0.000 +19400402, 0.25, -0.06, -0.03, 0.000 +19400403, 1.36, 0.83, 1.36, 0.000 +19400404, 0.71, 0.22, 0.83, 0.000 +19400405, -0.28, -0.08, 0.04, 0.000 +19400406, 0.60, 0.19, 0.32, 0.000 +19400408, 0.11, 0.36, 0.15, 0.000 +19400409, -0.75, 0.70, -0.70, 0.000 +19400410, -0.60, -0.30, 0.16, 0.000 +19400411, 0.24, 0.23, 0.23, 0.000 +19400412, -0.62, -0.01, -0.64, 0.000 +19400413, 0.18, 0.25, -0.59, 0.000 +19400415, 0.09, 1.03, 0.02, 0.000 +19400416, -1.20, -0.78, -0.34, 0.000 +19400417, 0.26, 0.61, 0.01, 0.000 +19400418, -0.74, -0.29, 0.23, 0.000 +19400419, -0.10, -0.14, -0.37, 0.000 +19400420, 0.63, 1.02, 0.34, 0.000 +19400422, 0.24, 0.25, 0.03, 0.000 +19400423, 0.52, 0.39, -0.03, 0.000 +19400424, -0.33, -0.11, -0.03, 0.000 +19400425, 0.08, 0.14, 0.10, 0.000 +19400426, -0.69, -0.81, -0.25, 0.000 +19400427, 0.14, 0.41, -0.30, 0.000 +19400429, 0.23, 0.19, 0.10, 0.000 +19400430, 0.10, -0.42, -0.34, 0.000 +19400501, -1.05, -0.56, -0.51, -0.001 +19400502, 0.47, 0.44, 0.16, -0.001 +19400503, 0.10, 0.05, -0.38, -0.001 +19400504, -0.18, -0.33, 0.30, -0.001 +19400506, -0.11, -0.17, -0.16, -0.001 +19400507, 0.14, -0.18, -0.08, -0.001 +19400508, 0.09, -0.05, 0.26, -0.001 +19400509, 0.23, 0.04, 0.44, -0.001 +19400510, -2.55, -1.17, -0.54, -0.001 +19400511, 0.11, 0.14, 0.18, -0.001 +19400513, -5.58, -3.97, -1.37, -0.001 +19400514, -7.21, -3.36, -0.28, -0.001 +19400515, 0.46, -1.87, -3.21, -0.001 +19400516, 1.49, 3.76, 0.47, -0.001 +19400517, -4.40, -1.62, 0.03, -0.001 +19400518, -1.94, -0.40, -2.19, -0.001 +19400520, 0.48, 1.79, 1.22, -0.001 +19400521, -6.99, -5.14, -1.03, -0.001 +19400522, 0.17, 2.05, 0.00, -0.001 +19400523, 0.32, -0.34, 1.30, -0.001 +19400524, -0.20, 0.87, 0.70, -0.001 +19400525, 1.17, 1.45, 0.21, -0.001 +19400527, 1.72, 1.35, 0.45, -0.001 +19400528, -2.40, -2.08, -0.58, -0.001 +19400529, 1.35, 1.60, 1.07, -0.001 +19400531, 0.42, 0.50, -1.12, -0.001 +19400601, -0.29, 0.03, 0.25, 0.000 +19400603, -1.06, -0.06, 0.42, 0.000 +19400604, 0.96, 0.11, -0.04, 0.000 +19400605, -1.67, -0.91, -0.41, 0.000 +19400606, 1.10, 0.16, -0.45, 0.000 +19400607, 1.06, 0.40, 1.06, 0.000 +19400608, -0.17, 0.02, -0.35, 0.000 +19400610, -2.94, -0.97, 1.09, 0.000 +19400611, 3.80, 1.17, -1.30, 0.000 +19400612, 4.81, 1.33, 1.66, 0.000 +19400613, -1.63, -0.34, -1.12, 0.000 +19400614, 1.87, 0.54, 0.27, 0.000 +19400615, 0.84, 0.06, 0.70, 0.000 +19400617, -0.66, -1.77, -0.98, 0.000 +19400618, 0.58, 1.00, 1.34, 0.000 +19400619, 0.35, -0.79, -0.33, 0.000 +19400620, -0.70, 0.10, 0.47, 0.000 +19400621, 0.02, -0.03, 0.24, 0.000 +19400622, 0.44, -0.31, 0.52, 0.000 +19400624, 0.82, -0.70, 0.16, 0.000 +19400625, -2.36, -0.39, 0.44, 0.000 +19400626, -0.66, -1.09, -0.10, 0.000 +19400627, 1.06, 0.24, 0.75, 0.000 +19400628, 1.29, 0.63, 0.46, 0.000 +19400629, -0.07, -0.06, -0.28, 0.000 +19400701, -0.59, 0.20, 0.09, 0.000 +19400702, -0.15, 0.17, -0.24, 0.000 +19400703, 0.20, 0.06, -0.03, 0.000 +19400705, 0.48, 0.27, -0.12, 0.000 +19400706, 0.22, -0.36, 0.83, 0.000 +19400708, -0.20, -0.12, -0.47, 0.000 +19400709, -0.17, -0.24, 0.52, 0.000 +19400710, 0.05, -0.01, 0.03, 0.000 +19400711, 0.07, 0.22, -0.01, 0.000 +19400712, -0.08, 0.06, -0.47, 0.000 +19400713, 0.06, 0.06, 0.19, 0.000 +19400715, 0.33, 0.13, -0.25, 0.000 +19400716, 0.99, 0.35, 0.10, 0.000 +19400717, -0.22, 0.32, -0.65, 0.000 +19400718, 0.13, -0.31, -0.22, 0.000 +19400719, -0.64, 0.43, 0.01, 0.000 +19400720, -0.21, 0.07, -0.14, 0.000 +19400722, -0.05, -0.17, 0.30, 0.000 +19400723, 0.07, -0.42, 0.04, 0.000 +19400724, -0.44, 0.07, 0.01, 0.000 +19400725, 0.06, -0.21, -0.14, 0.000 +19400726, 0.37, -0.08, 0.14, 0.000 +19400727, 0.19, 0.24, -0.15, 0.000 +19400729, 0.53, -0.59, 0.18, 0.000 +19400730, 2.20, 0.18, 0.39, 0.000 +19400731, -0.05, 0.66, -0.63, 0.000 +19400801, -0.10, 0.16, -0.51, 0.000 +19400802, 0.02, -0.06, -0.10, 0.000 +19400803, 0.08, 0.08, 0.23, 0.000 +19400805, -0.12, -0.21, -0.44, 0.000 +19400806, -0.75, 0.00, 0.25, 0.000 +19400807, -0.16, -0.26, 0.03, 0.000 +19400808, 0.13, -0.02, -0.46, 0.000 +19400809, 0.64, -0.25, 0.26, 0.000 +19400810, 0.58, -0.13, 0.00, 0.000 +19400812, 0.20, -0.67, 0.02, 0.000 +19400813, -3.16, 0.40, -0.70, 0.000 +19400814, -0.37, -0.01, 0.12, 0.000 +19400815, 0.60, 0.23, -0.17, 0.000 +19400816, -1.41, -0.03, 0.23, 0.000 +19400817, 0.71, -0.15, 0.15, 0.000 +19400819, 0.02, -0.01, -0.17, 0.000 +19400820, 0.97, -0.67, 0.29, 0.000 +19400821, 1.37, 0.15, -0.27, 0.000 +19400822, 0.83, 0.41, 0.04, 0.000 +19400823, -1.07, 0.07, -0.46, 0.000 +19400824, 0.19, -0.11, 0.17, 0.000 +19400826, 0.06, -0.12, -0.13, 0.000 +19400827, -0.12, 0.00, 0.27, 0.000 +19400828, 1.21, 0.10, 0.76, 0.000 +19400829, -0.18, -0.06, -0.19, 0.000 +19400830, 1.60, 0.33, 0.79, 0.000 +19400831, 0.56, 0.68, 0.61, 0.000 +19400903, 0.32, 0.55, 0.20, 0.000 +19400904, 1.65, -0.31, 0.19, 0.000 +19400905, 1.70, 1.14, 0.95, 0.000 +19400906, -0.41, 0.28, -0.67, 0.000 +19400907, -0.16, -0.01, 0.18, 0.000 +19400909, -2.36, -0.97, -0.75, 0.000 +19400910, -0.10, 0.20, -0.49, 0.000 +19400911, -0.53, 0.40, -0.18, 0.000 +19400912, -1.12, -0.12, -0.86, 0.000 +19400913, 0.09, -0.20, 0.34, 0.000 +19400914, 0.56, -0.05, 0.35, 0.000 +19400916, 0.65, 0.06, 0.13, 0.000 +19400917, 0.77, -0.28, 0.06, 0.000 +19400918, 0.67, 0.23, -0.04, 0.000 +19400919, -0.07, 0.20, 0.05, 0.000 +19400920, 0.00, -0.01, -0.39, 0.000 +19400921, 0.61, 0.60, 0.62, 0.000 +19400923, 1.95, 0.80, 0.86, 0.000 +19400924, -0.25, 0.24, -0.59, 0.000 +19400925, -0.15, 0.01, -0.12, 0.000 +19400926, -0.54, -0.17, -0.59, 0.000 +19400927, -1.57, -0.10, -1.53, 0.000 +19400928, 0.63, 0.33, 0.54, 0.000 +19400930, 0.15, 0.34, 0.79, 0.000 +19401001, 1.23, 0.26, 0.47, 0.000 +19401002, 0.42, 0.30, 1.24, 0.000 +19401003, 0.11, 0.40, -0.38, 0.000 +19401004, -0.63, -0.42, -0.24, 0.000 +19401005, 0.09, -0.01, 0.16, 0.000 +19401007, -0.45, 0.21, 0.06, 0.000 +19401008, -1.39, -0.37, -0.64, 0.000 +19401009, -0.54, -0.23, 0.05, 0.000 +19401010, -0.05, 0.35, 0.24, 0.000 +19401011, 0.52, -0.15, -0.01, 0.000 +19401014, -0.28, 0.76, 0.06, 0.000 +19401015, 0.45, -1.30, -0.06, 0.000 +19401016, 0.53, 0.76, 0.01, 0.000 +19401017, 0.50, -0.23, 0.42, 0.000 +19401018, 0.04, 0.10, 0.79, 0.000 +19401019, -0.11, 0.23, -0.15, 0.000 +19401021, -0.53, 0.28, 0.16, 0.000 +19401022, 0.45, -0.34, 0.42, 0.000 +19401023, 0.61, 0.29, 0.35, 0.000 +19401024, -0.54, -0.08, 0.02, 0.000 +19401025, -0.04, -0.17, 0.48, 0.000 +19401026, 0.81, -0.12, 0.05, 0.000 +19401028, -0.28, -0.23, -0.18, 0.000 +19401029, 0.25, 0.06, 0.09, 0.000 +19401030, 0.64, -0.41, 0.34, 0.000 +19401031, 1.24, 0.40, 0.77, 0.000 +19401101, 0.10, 0.39, -0.13, 0.000 +19401102, 0.34, -0.58, 0.28, 0.000 +19401104, 0.28, -0.16, -0.16, 0.000 +19401106, -2.85, 0.85, -1.84, 0.000 +19401107, 4.78, 1.40, 3.09, 0.000 +19401108, -0.58, 0.46, 0.03, 0.000 +19401109, 1.37, 0.71, 0.61, 0.000 +19401112, -0.45, -0.20, 0.21, 0.000 +19401113, -0.41, -0.05, 0.20, 0.000 +19401114, 0.48, -0.08, 0.79, 0.000 +19401115, -1.00, -0.03, -0.50, 0.000 +19401116, -0.74, -0.34, -0.32, 0.000 +19401118, -0.03, 0.19, -0.11, 0.000 +19401119, -0.08, -0.19, -0.13, 0.000 +19401120, -1.78, -0.16, -1.03, 0.000 +19401122, 0.17, 0.18, 0.82, 0.000 +19401123, -0.02, -0.04, 0.24, 0.000 +19401125, -0.01, -0.07, 0.03, 0.000 +19401126, -0.28, 0.12, -0.48, 0.000 +19401127, -1.62, -0.41, -1.48, 0.000 +19401128, 0.23, 0.24, 0.71, 0.000 +19401129, 0.12, -0.44, 0.12, 0.000 +19401130, 0.56, 0.24, -0.45, 0.000 +19401202, -0.04, 0.27, -0.22, 0.000 +19401203, -0.28, -0.19, -0.53, 0.000 +19401204, 0.02, -0.12, -0.62, 0.000 +19401205, -0.29, -0.36, 0.10, 0.000 +19401206, 0.24, -0.20, -0.03, 0.000 +19401207, 0.73, 0.32, 0.03, 0.000 +19401209, 0.13, 0.04, -0.31, 0.000 +19401210, -0.06, -0.22, -0.20, 0.000 +19401211, 0.29, 0.21, 0.36, 0.000 +19401212, 0.26, -0.23, 0.16, 0.000 +19401213, 0.21, 0.06, 0.92, 0.000 +19401214, 0.01, -0.30, -0.27, 0.000 +19401216, -0.79, -0.27, -0.58, 0.000 +19401217, -0.42, -0.36, -0.23, 0.000 +19401218, -0.70, -0.14, -0.41, 0.000 +19401219, -0.36, -0.42, 0.06, 0.000 +19401220, 0.06, 0.08, -0.18, 0.000 +19401221, 0.10, 0.05, 0.29, 0.000 +19401223, -0.38, 0.45, -0.29, 0.000 +19401224, 0.42, -0.71, 0.41, 0.000 +19401226, -0.10, 0.26, -0.40, 0.000 +19401227, 0.37, -0.65, 0.37, 0.000 +19401228, 0.36, -0.02, -0.04, 0.000 +19401230, 0.62, 0.07, 0.23, 0.000 +19401231, 0.30, 0.19, 0.47, 0.000 +19410102, -0.34, 0.89, 0.35, 0.000 +19410103, 1.25, -0.47, 0.88, 0.000 +19410104, 0.24, 0.86, 0.30, 0.000 +19410106, 0.31, 0.75, 0.02, 0.000 +19410107, -0.14, -0.16, -0.30, 0.000 +19410108, 0.28, 0.00, 1.21, 0.000 +19410109, 0.49, -0.24, 1.78, 0.000 +19410110, 0.21, 0.61, -0.09, 0.000 +19410111, -0.20, 0.10, -0.27, 0.000 +19410113, -0.12, 0.08, 0.09, 0.000 +19410114, -0.46, -0.38, 0.00, 0.000 +19410115, -0.57, 0.45, -0.25, 0.000 +19410116, -1.26, -0.07, -0.65, 0.000 +19410117, -0.16, -0.68, 0.52, 0.000 +19410118, 0.02, 0.48, 0.04, 0.000 +19410120, -0.27, 0.50, -0.41, 0.000 +19410121, -0.79, -0.51, 0.56, 0.000 +19410122, 0.47, -0.18, 0.86, 0.000 +19410123, -0.01, 0.29, 0.07, 0.000 +19410124, 0.19, -0.15, 0.00, 0.000 +19410125, 0.25, -0.15, 0.12, 0.000 +19410127, 0.02, 0.17, 0.24, 0.000 +19410128, -0.45, -0.01, -0.20, 0.000 +19410129, -1.73, -0.04, -0.76, 0.000 +19410130, -1.53, -0.95, -0.89, 0.000 +19410131, 0.06, -0.13, 0.81, 0.000 +19410201, -0.57, -0.19, -0.68, 0.000 +19410203, -0.55, -0.26, -0.51, 0.000 +19410204, -0.10, -0.13, 1.07, 0.000 +19410205, 1.46, 0.12, 0.95, 0.000 +19410206, 0.38, 0.23, -0.12, 0.000 +19410207, -0.16, -0.11, -0.16, 0.000 +19410208, 0.20, 0.16, -0.31, 0.000 +19410210, -0.21, 0.22, 0.39, 0.000 +19410211, -1.11, 0.18, -0.97, 0.000 +19410213, -1.38, -1.29, 0.08, 0.000 +19410214, -2.71, -0.65, -0.58, 0.000 +19410215, 0.45, -0.28, 0.26, 0.000 +19410217, 0.52, 0.43, 0.33, 0.000 +19410218, -0.30, -0.15, -0.11, 0.000 +19410219, -1.00, -0.66, -0.40, 0.000 +19410220, 1.63, 0.53, 0.71, 0.000 +19410221, 0.50, -0.03, 0.24, 0.000 +19410224, 0.85, -0.34, 0.06, 0.000 +19410225, 0.63, 0.08, -0.52, 0.000 +19410226, 0.06, 0.61, 0.28, 0.000 +19410227, -0.34, -0.29, 0.35, 0.000 +19410228, 0.38, 0.29, 0.64, 0.000 +19410301, -0.22, 0.53, -0.32, 0.000 +19410303, -0.83, -0.27, -0.55, 0.000 +19410304, 0.39, -0.38, 0.67, 0.000 +19410305, -0.34, 0.76, 0.05, 0.000 +19410306, 1.34, -0.55, 0.43, 0.000 +19410307, -0.23, 0.64, -0.41, 0.000 +19410308, 0.04, -0.21, 0.47, 0.000 +19410310, 1.65, 0.60, 0.24, 0.000 +19410311, -0.42, 0.45, -0.34, 0.000 +19410312, -0.10, -0.20, -0.09, 0.000 +19410313, -0.38, 0.16, -0.17, 0.000 +19410314, 0.10, -0.13, 0.18, 0.000 +19410315, 0.59, 0.25, 0.63, 0.000 +19410317, 0.01, -0.04, 0.14, 0.000 +19410318, 0.18, -0.07, 0.23, 0.000 +19410319, -0.21, 0.25, 0.01, 0.000 +19410320, -0.01, -0.43, 0.38, 0.000 +19410321, -0.76, -0.01, -0.63, 0.000 +19410322, -0.45, -0.12, -0.05, 0.000 +19410324, 0.32, -0.59, 0.66, 0.000 +19410325, 0.22, -0.33, 0.32, 0.000 +19410326, -0.18, 0.10, 0.28, 0.000 +19410327, 0.61, -0.31, 0.35, 0.000 +19410328, -0.59, 0.46, -0.66, 0.000 +19410329, -0.08, -0.23, 0.60, 0.000 +19410331, 0.24, -0.25, 0.60, 0.000 +19410401, 0.18, 0.02, 0.37, 0.000 +19410402, 0.22, -0.21, -0.02, 0.000 +19410403, 1.37, -0.07, 2.03, 0.000 +19410404, -0.03, 0.43, -0.02, 0.000 +19410405, -0.31, 0.03, -0.34, 0.000 +19410407, -0.47, -0.36, -0.19, 0.000 +19410408, -1.96, -0.43, -1.78, 0.000 +19410409, -1.10, -0.25, -0.13, 0.000 +19410410, -0.16, 0.12, -0.12, 0.000 +19410412, -0.94, -0.15, 0.24, 0.000 +19410414, 0.21, -0.21, 0.50, 0.000 +19410415, -0.33, 0.25, -0.47, 0.000 +19410416, 0.05, -0.60, 0.45, 0.000 +19410417, -0.17, 0.28, 0.10, 0.000 +19410418, -1.37, -0.13, -0.61, 0.000 +19410419, -0.28, -0.46, 0.38, 0.000 +19410421, -0.24, -0.61, 0.47, 0.000 +19410422, -0.25, 0.16, 0.06, 0.000 +19410423, 0.61, -0.57, 1.04, 0.000 +19410424, 0.72, 0.45, 0.84, 0.000 +19410425, -0.62, 0.04, -0.15, 0.000 +19410426, -0.02, 0.27, 0.36, 0.000 +19410428, 0.15, -0.12, 0.22, 0.000 +19410429, 0.31, 0.02, 0.87, 0.000 +19410430, -1.09, 0.34, -0.39, 0.000 +19410501, -0.10, -0.12, -0.07, 0.000 +19410502, 0.43, -0.07, 0.87, 0.000 +19410503, 0.22, -0.18, 0.76, 0.000 +19410505, -0.05, -0.05, 0.33, 0.000 +19410506, 1.49, 0.19, 1.35, 0.000 +19410507, -0.34, 0.35, -0.89, 0.000 +19410508, -0.05, -0.56, 0.25, 0.000 +19410509, 0.11, 0.25, -0.06, 0.000 +19410510, 0.98, -0.26, 1.11, 0.000 +19410512, -0.26, -0.09, -0.42, 0.000 +19410513, -0.06, -0.19, -0.54, 0.000 +19410514, -0.24, -0.14, -0.67, 0.000 +19410515, -1.24, 0.75, -1.04, 0.000 +19410516, 0.21, -1.02, 0.25, 0.000 +19410517, 0.28, 0.06, 0.44, 0.000 +19410519, 0.05, -0.21, -0.25, 0.000 +19410520, 1.20, -0.85, 0.42, 0.000 +19410521, 0.22, 0.54, -0.06, 0.000 +19410522, -0.96, 0.13, -0.33, 0.000 +19410523, 0.02, -0.21, 0.23, 0.000 +19410524, 0.09, 0.00, 0.01, 0.000 +19410526, -0.94, 0.39, -0.33, 0.000 +19410527, 0.41, -0.18, -0.23, 0.000 +19410528, 0.11, 0.02, 0.08, 0.000 +19410529, 0.09, 0.16, -0.01, 0.000 +19410531, -0.29, 0.62, -0.52, 0.000 +19410602, 0.33, -0.27, -0.14, 0.000 +19410603, 0.95, -0.64, 0.38, 0.000 +19410604, 0.35, 0.04, 0.15, 0.000 +19410605, 0.49, 0.42, -0.20, 0.000 +19410606, -0.16, -0.18, -0.11, 0.000 +19410607, 0.61, 0.13, -0.12, 0.000 +19410609, 0.86, 0.08, -0.29, 0.000 +19410610, 1.43, 0.50, 0.16, 0.000 +19410611, 0.09, 0.45, -0.23, 0.000 +19410612, 0.53, -0.21, 0.31, 0.000 +19410613, -0.26, 0.21, -0.40, 0.000 +19410614, -0.16, 0.40, 0.20, 0.000 +19410616, -0.19, 0.17, -0.32, 0.000 +19410617, 0.64, 0.08, -0.14, 0.000 +19410618, 0.29, 0.16, 0.07, 0.000 +19410619, -0.19, -0.17, 0.14, 0.000 +19410620, -0.87, 0.36, -0.18, 0.000 +19410621, 0.18, -0.11, 0.22, 0.000 +19410623, 1.29, 0.18, 0.33, 0.000 +19410624, -0.46, -0.23, 0.40, 0.000 +19410625, 0.19, -0.26, 0.28, 0.000 +19410626, 0.48, 0.04, 0.30, 0.000 +19410627, -0.37, -0.06, -0.04, 0.000 +19410628, -0.06, 0.05, -0.21, 0.000 +19410630, -0.28, 0.12, 0.03, 0.000 +19410701, -0.23, -0.07, -0.23, 0.001 +19410702, 0.70, -0.63, 0.22, 0.001 +19410703, 0.44, -0.22, 0.84, 0.001 +19410705, 0.19, 0.42, 0.27, 0.001 +19410707, 1.40, 0.17, 0.37, 0.001 +19410708, 1.52, 1.06, 0.41, 0.001 +19410709, 0.03, 0.90, -0.66, 0.001 +19410710, 0.06, 0.16, 0.32, 0.001 +19410711, 0.13, 0.38, 0.38, 0.001 +19410712, 0.04, 0.12, -0.08, 0.001 +19410714, 0.17, -0.18, 1.00, 0.001 +19410715, 0.20, 0.25, -0.02, 0.001 +19410716, -0.41, -0.24, -0.35, 0.001 +19410717, -0.61, 0.22, -0.41, 0.001 +19410718, 0.25, -0.23, -0.26, 0.001 +19410719, 0.34, 0.20, 0.05, 0.001 +19410721, 1.34, 0.08, 1.96, 0.001 +19410722, -0.01, 0.09, 0.37, 0.001 +19410723, -0.13, 0.23, 0.22, 0.001 +19410724, -0.27, 0.53, 0.13, 0.001 +19410725, -0.16, 0.41, -0.04, 0.001 +19410726, 0.48, 0.34, 0.93, 0.001 +19410728, 0.83, 0.95, 1.01, 0.001 +19410729, -0.32, -0.15, -0.42, 0.001 +19410730, -0.19, 0.02, 0.61, 0.001 +19410731, -0.07, 0.38, -0.01, 0.001 +19410801, -0.27, -0.10, 0.53, 0.000 +19410802, -0.05, 0.53, -0.84, 0.000 +19410804, 0.15, -0.37, 0.22, 0.000 +19410805, -0.10, -0.46, -0.24, 0.000 +19410806, -0.01, 0.19, -0.35, 0.000 +19410807, 0.02, -0.11, -0.05, 0.000 +19410808, -0.65, 0.10, -0.34, 0.000 +19410809, -0.70, -0.27, -0.51, 0.000 +19410811, -0.38, -0.87, -0.54, 0.000 +19410812, -0.13, 0.03, 0.38, 0.000 +19410813, -0.09, 0.33, -0.27, 0.000 +19410814, 0.20, -0.17, 1.08, 0.000 +19410815, -0.76, 0.10, -0.47, 0.000 +19410816, 0.21, -0.36, 0.34, 0.000 +19410818, 0.40, 0.34, 0.08, 0.000 +19410819, 0.04, 0.05, -0.09, 0.000 +19410820, 0.45, -0.12, 0.62, 0.000 +19410821, 0.01, 0.31, 0.11, 0.000 +19410822, -0.04, -0.04, -0.47, 0.000 +19410823, 0.06, 0.02, 0.00, 0.000 +19410825, 0.08, -0.19, -0.17, 0.000 +19410826, 0.57, 0.29, -0.15, 0.000 +19410827, 0.19, -0.13, 0.23, 0.000 +19410828, 0.33, 0.19, -0.41, 0.000 +19410829, 0.07, 0.15, 0.03, 0.000 +19410830, 0.24, 0.17, 0.20, 0.000 +19410902, 0.30, -0.22, -0.27, 0.000 +19410903, -0.34, -0.04, -0.03, 0.000 +19410904, -0.12, 0.04, -0.40, 0.000 +19410905, -0.12, 0.35, 0.15, 0.000 +19410906, 0.10, 0.13, -0.12, 0.000 +19410908, 0.18, 0.17, 0.17, 0.000 +19410909, -0.28, -0.28, -0.33, 0.000 +19410910, -0.58, 0.22, -0.17, 0.000 +19410911, 0.60, -0.26, 1.24, 0.000 +19410912, 0.12, 0.21, 0.01, 0.000 +19410913, 0.11, 0.04, -0.02, 0.000 +19410915, 0.05, 0.04, 0.01, 0.000 +19410916, 0.22, -0.03, 0.06, 0.000 +19410917, 1.36, -0.02, 0.05, 0.000 +19410918, -0.39, 0.45, 0.19, 0.000 +19410919, -0.82, -0.15, -0.99, 0.000 +19410920, -0.35, 0.04, -0.52, 0.000 +19410922, 0.22, -0.52, 0.42, 0.000 +19410923, 0.32, -0.35, 0.13, 0.000 +19410924, -0.48, 0.26, -0.57, 0.000 +19410925, -1.49, -1.43, -0.49, 0.000 +19410926, -0.38, -0.09, 0.33, 0.000 +19410927, 0.35, 0.16, 0.58, 0.000 +19410929, 0.08, 0.21, 0.20, 0.000 +19410930, 0.50, 0.09, 0.14, 0.000 +19411001, -0.01, -0.09, -0.14, 0.000 +19411002, -0.26, 0.34, 0.30, 0.000 +19411003, -0.16, -0.30, 0.38, 0.000 +19411004, 0.15, -0.14, 0.26, 0.000 +19411006, -0.17, 0.04, -0.17, 0.000 +19411007, -1.10, -0.37, -0.46, 0.000 +19411008, -0.05, -0.15, -0.04, 0.000 +19411009, -1.26, -0.53, -0.84, 0.000 +19411010, -0.01, -0.03, 0.41, 0.000 +19411011, 0.08, 0.14, 0.79, 0.000 +19411014, -0.46, -0.30, -0.56, 0.000 +19411015, -0.52, 0.02, 0.02, 0.000 +19411016, -1.67, -0.72, -0.77, 0.000 +19411017, 0.33, -0.51, 0.26, 0.000 +19411018, 0.95, 0.49, 0.81, 0.000 +19411020, 0.06, -0.07, 0.23, 0.000 +19411021, 0.76, -0.03, 0.25, 0.000 +19411022, -0.44, 0.28, -0.38, 0.000 +19411023, 0.33, -0.36, 0.97, 0.000 +19411024, 0.53, 0.33, 0.09, 0.000 +19411025, -0.29, 0.43, -0.37, 0.000 +19411027, -0.88, -0.26, -0.19, 0.000 +19411028, 0.03, 0.09, 0.52, 0.000 +19411029, -0.24, -0.24, 0.13, 0.000 +19411030, -0.10, 0.13, 0.61, 0.000 +19411031, -0.95, -0.27, -0.31, 0.000 +19411101, 0.31, 0.09, 0.37, 0.000 +19411103, 0.47, -0.59, 0.26, 0.000 +19411105, 0.70, -0.36, 0.62, 0.000 +19411106, -0.76, -0.08, -0.36, 0.000 +19411107, -0.19, 0.52, -0.45, 0.000 +19411108, 0.08, -0.17, 0.03, 0.000 +19411110, -0.59, 0.07, -0.83, 0.000 +19411112, -1.67, -0.31, -0.66, 0.000 +19411113, 0.08, -0.73, 0.44, 0.000 +19411114, 0.78, -0.24, 0.07, 0.000 +19411115, 0.14, 0.29, 0.42, 0.000 +19411117, -0.21, -0.23, -0.20, 0.000 +19411118, -0.13, -0.11, 0.03, 0.000 +19411119, 0.46, 0.10, 0.21, 0.000 +19411121, 0.56, 0.22, 0.81, 0.000 +19411122, 0.16, 0.05, -0.27, 0.000 +19411124, 0.19, 0.03, 0.24, 0.000 +19411125, -0.52, -0.27, -0.42, 0.000 +19411126, -0.77, 0.17, -0.72, 0.000 +19411127, -0.23, 0.16, -0.17, 0.000 +19411128, -0.58, -0.12, -0.26, 0.000 +19411129, -0.23, 0.38, 0.29, 0.000 +19411201, -0.35, -0.14, 0.13, 0.000 +19411202, 1.53, -0.79, 0.27, 0.000 +19411203, 0.81, -0.55, -0.29, 0.000 +19411204, 0.29, 0.32, 0.12, 0.000 +19411205, -0.37, -0.13, -0.37, 0.000 +19411206, 0.58, -0.06, -0.29, 0.000 +19411208, -4.15, -1.80, -2.84, 0.000 +19411209, -3.49, -2.30, -3.78, 0.000 +19411210, -0.70, -0.11, -0.09, 0.000 +19411211, 1.95, 1.53, 1.63, 0.000 +19411212, -0.36, 1.13, -0.68, 0.000 +19411213, 0.30, 0.31, -0.23, 0.000 +19411215, 0.51, -0.35, 0.52, 0.000 +19411216, -0.07, -0.13, 0.86, 0.000 +19411217, -1.81, -0.38, -0.52, 0.000 +19411218, -0.83, -0.60, 0.73, 0.000 +19411219, -0.02, 0.42, 0.77, 0.000 +19411220, -0.19, 0.12, -0.15, 0.000 +19411222, -0.95, 0.38, -0.52, 0.000 +19411223, -0.41, -0.09, 0.10, 0.000 +19411224, 0.29, 0.22, -0.15, 0.000 +19411226, -0.44, -0.24, -0.29, 0.000 +19411227, 0.44, 0.16, 0.31, 0.000 +19411229, -0.48, -0.89, -0.88, 0.000 +19411230, 3.65, -0.27, 0.81, 0.000 +19411231, -0.47, 1.45, -1.20, 0.000 +19420102, 1.87, 1.89, 2.52, 0.001 +19420103, 1.19, 1.57, 1.10, 0.001 +19420105, 1.00, 0.31, -0.54, 0.001 +19420106, -0.40, 0.37, -1.01, 0.001 +19420107, -0.66, 0.35, 0.94, 0.001 +19420108, -1.36, 1.05, 0.54, 0.001 +19420109, -0.24, 0.95, 1.13, 0.001 +19420110, -0.47, 0.14, -0.01, 0.001 +19420112, 0.42, 0.08, 0.62, 0.001 +19420113, 1.71, -0.60, 0.46, 0.001 +19420114, 0.24, 0.31, 0.00, 0.001 +19420115, -0.13, 0.06, 0.11, 0.001 +19420116, -0.90, 0.44, -0.01, 0.001 +19420117, -0.32, -0.07, 0.58, 0.001 +19420119, 0.27, 0.00, 0.96, 0.001 +19420120, -0.11, 0.14, 0.91, 0.001 +19420121, -1.30, -0.37, -0.58, 0.001 +19420122, 0.01, 0.04, 0.02, 0.001 +19420123, 0.16, 0.02, 0.66, 0.001 +19420124, 0.34, 0.07, 0.60, 0.001 +19420126, 0.98, 0.04, 0.93, 0.001 +19420127, 0.12, 0.42, -0.21, 0.001 +19420128, -0.46, -0.03, -0.05, 0.001 +19420129, -0.11, 0.02, 0.22, 0.001 +19420130, -0.55, 0.22, 0.05, 0.001 +19420131, -0.45, -0.22, -0.31, 0.001 +19420202, 0.33, -0.16, -0.10, 0.001 +19420203, 0.31, -0.27, 0.05, 0.001 +19420204, 0.63, 0.20, 0.61, 0.001 +19420205, -0.17, 0.40, 0.39, 0.001 +19420206, -0.83, 0.44, -0.28, 0.001 +19420207, 0.02, -0.10, 0.11, 0.001 +19420209, -1.11, 0.02, -0.85, 0.001 +19420210, -1.42, -0.68, -1.33, 0.001 +19420211, -0.21, -0.07, 0.30, 0.001 +19420213, 0.09, 0.44, -0.07, 0.001 +19420214, 0.52, -0.04, 0.51, 0.001 +19420216, -0.23, 0.04, 0.20, 0.001 +19420217, -1.64, 0.54, -0.65, 0.001 +19420218, -0.02, 0.07, 0.07, 0.001 +19420219, 0.28, 0.17, 0.27, 0.001 +19420220, -0.27, 0.46, 0.17, 0.001 +19420221, 0.23, 0.08, -0.22, 0.001 +19420224, 0.26, 0.11, 0.14, 0.001 +19420225, -0.55, 0.33, 0.02, 0.001 +19420226, 0.44, -0.27, 0.07, 0.001 +19420227, 0.78, -0.18, -0.18, 0.001 +19420228, 0.15, 0.23, -0.29, 0.001 +19420302, -0.97, 0.33, -0.43, 0.000 +19420303, 1.17, -0.81, 0.02, 0.000 +19420304, -0.89, 0.48, -0.09, 0.000 +19420305, -1.50, 0.36, -0.59, 0.000 +19420306, -2.50, 0.45, -0.46, 0.000 +19420307, 0.53, -0.25, 0.79, 0.000 +19420309, -0.12, 0.18, -0.09, 0.000 +19420310, -0.75, 0.38, -0.11, 0.000 +19420311, -1.65, 0.70, -0.54, 0.000 +19420312, -0.01, -0.31, 0.68, 0.000 +19420313, 0.47, 0.15, -0.40, 0.000 +19420314, 0.02, 0.42, -0.20, 0.000 +19420316, 0.87, -0.87, 0.13, 0.000 +19420317, 1.60, -0.71, 1.17, 0.000 +19420318, -0.63, 0.56, -0.29, 0.000 +19420319, -0.18, -0.04, 0.45, 0.000 +19420320, -0.77, 0.48, -0.28, 0.000 +19420321, 0.09, -0.09, -0.04, 0.000 +19420323, 0.18, -0.07, 0.34, 0.000 +19420324, 0.61, -0.16, -0.20, 0.000 +19420325, -0.58, 0.07, -0.29, 0.000 +19420326, -0.40, -0.08, 0.29, 0.000 +19420327, -0.98, 0.24, 0.01, 0.000 +19420328, -0.01, 0.04, 0.13, 0.000 +19420330, 0.12, 0.07, -0.03, 0.000 +19420331, -0.43, 0.34, -0.55, 0.000 +19420401, 0.40, -0.46, 0.25, 0.000 +19420402, 0.78, -0.03, 0.31, 0.000 +19420404, 0.13, 0.32, -0.34, 0.000 +19420406, 1.16, -0.82, 0.36, 0.000 +19420407, -0.25, 0.21, 0.30, 0.000 +19420408, -0.58, 0.02, -0.21, 0.000 +19420409, -1.36, 0.09, -0.58, 0.000 +19420410, -0.03, -0.08, -0.10, 0.000 +19420411, -0.28, 0.23, 0.23, 0.000 +19420413, -0.04, -0.20, 0.30, 0.000 +19420414, -1.64, -0.40, -1.78, 0.000 +19420415, 0.17, -0.39, 0.29, 0.000 +19420416, -0.11, 0.33, -0.01, 0.000 +19420417, -1.55, 0.34, 0.43, 0.000 +19420418, 0.67, -0.17, 0.62, 0.000 +19420420, 0.36, -0.17, -0.28, 0.000 +19420421, 0.22, 0.48, 0.39, 0.000 +19420422, -0.28, 0.23, 0.25, 0.000 +19420423, -2.20, 0.43, -0.30, 0.000 +19420424, -0.84, 0.28, 0.02, 0.000 +19420425, 0.20, 0.40, 0.01, 0.000 +19420427, -0.66, -0.19, 0.91, 0.000 +19420428, -0.96, -0.05, 0.44, 0.000 +19420429, 1.52, -0.92, 0.68, 0.000 +19420430, 0.81, 0.04, 0.07, 0.000 +19420501, 0.70, -0.55, -0.24, 0.001 +19420502, 0.68, -0.23, 0.55, 0.001 +19420504, 0.20, -0.37, 0.11, 0.001 +19420505, 0.33, -0.32, -0.21, 0.001 +19420506, -0.25, -0.34, 0.43, 0.001 +19420507, 0.81, -0.35, -0.28, 0.001 +19420508, 0.21, 0.28, 0.14, 0.001 +19420509, 0.56, 0.17, -0.35, 0.001 +19420511, 0.59, -0.47, -0.14, 0.001 +19420512, -0.65, 0.43, -0.47, 0.001 +19420513, -1.23, 0.26, -0.15, 0.001 +19420514, 0.20, -0.59, -0.25, 0.001 +19420515, 0.76, -0.53, 0.13, 0.001 +19420516, 0.70, -0.13, 0.11, 0.001 +19420518, -0.11, 0.07, -0.17, 0.001 +19420519, -0.59, 0.50, -0.11, 0.001 +19420520, 0.14, -0.40, -1.20, 0.001 +19420521, 1.63, -0.98, 0.39, 0.001 +19420522, -0.20, 0.19, 0.30, 0.001 +19420523, 0.06, 0.41, -0.75, 0.001 +19420525, -0.20, 0.10, -0.25, 0.001 +19420526, 0.08, 0.07, -0.04, 0.001 +19420527, 1.49, -0.88, 0.17, 0.001 +19420528, 0.13, 0.04, -0.29, 0.001 +19420529, -0.20, 0.50, 0.03, 0.001 +19420601, 0.40, 0.00, 0.01, 0.001 +19420602, -0.12, 0.21, -0.60, 0.001 +19420603, 0.66, -0.19, 0.09, 0.001 +19420604, 1.58, -0.32, -0.72, 0.001 +19420605, 0.53, 0.11, 0.59, 0.001 +19420606, 0.43, -0.07, 0.16, 0.001 +19420608, 0.81, -0.52, -0.30, 0.001 +19420609, -0.27, 0.16, -0.35, 0.001 +19420610, -0.92, 0.13, 0.11, 0.001 +19420611, 0.20, -0.05, -0.09, 0.001 +19420612, -0.46, 0.18, 0.01, 0.001 +19420613, 0.40, -0.10, 0.11, 0.001 +19420615, 0.21, -0.21, -0.25, 0.001 +19420616, 0.08, 0.11, 0.33, 0.001 +19420617, 1.32, -0.99, 0.36, 0.001 +19420618, -0.16, 0.77, -0.07, 0.001 +19420619, -0.92, 0.20, -0.50, 0.001 +19420620, -0.33, 0.21, 0.52, 0.001 +19420622, -1.32, -0.50, -0.14, 0.001 +19420623, 0.13, 0.07, 0.23, 0.001 +19420624, -0.26, 0.24, -0.27, 0.001 +19420625, 0.08, -0.05, 0.11, 0.001 +19420626, -0.10, 0.02, 0.43, 0.001 +19420627, 0.32, -0.03, 0.42, 0.001 +19420629, 0.26, -0.38, 0.14, 0.001 +19420630, 0.13, -0.31, 0.11, 0.001 +19420701, -0.38, 0.42, -0.19, 0.001 +19420702, 1.02, -0.58, 0.32, 0.001 +19420703, 0.92, -0.04, 0.47, 0.001 +19420706, 1.33, -0.63, 0.04, 0.001 +19420707, -0.21, 0.50, 0.06, 0.001 +19420708, 1.95, -0.85, 0.58, 0.001 +19420709, 1.10, 0.84, 0.13, 0.001 +19420710, -0.21, 0.02, 0.03, 0.001 +19420711, -0.05, 0.06, 0.09, 0.001 +19420713, -0.55, 0.05, 0.04, 0.001 +19420714, 0.57, -0.53, -0.18, 0.001 +19420715, 0.25, 0.51, -0.15, 0.001 +19420716, -0.03, -0.18, -0.04, 0.001 +19420717, -0.83, 0.40, -0.16, 0.001 +19420718, -0.25, 0.06, 0.12, 0.001 +19420720, 0.49, -0.60, 0.03, 0.001 +19420721, 0.23, -0.16, -0.15, 0.001 +19420722, -0.12, 0.16, 0.34, 0.001 +19420723, -1.20, 0.34, -0.36, 0.001 +19420724, -0.02, -0.20, 0.59, 0.001 +19420725, 0.11, 0.03, 0.39, 0.001 +19420727, 0.08, 0.05, 0.17, 0.001 +19420728, -0.16, -0.01, 0.28, 0.001 +19420729, -1.10, 0.67, -0.53, 0.001 +19420730, 0.10, -0.12, 0.22, 0.001 +19420731, 0.44, -0.38, 0.24, 0.001 +19420801, 0.08, 0.39, 0.52, 0.001 +19420803, 0.28, -0.62, 0.09, 0.001 +19420804, -0.17, 0.23, 0.18, 0.001 +19420805, -0.71, 0.26, -0.86, 0.001 +19420806, -0.09, -0.10, -0.20, 0.001 +19420807, 0.26, -0.22, -0.01, 0.001 +19420808, -0.11, 0.22, -0.31, 0.001 +19420810, -0.08, -0.14, 0.14, 0.001 +19420811, 0.33, -0.33, 0.09, 0.001 +19420812, 0.12, -0.27, 0.61, 0.001 +19420813, 0.44, -0.26, 0.21, 0.001 +19420814, 0.50, 0.20, 0.25, 0.001 +19420815, 0.25, -0.07, -0.13, 0.001 +19420817, 0.35, 0.04, 0.69, 0.001 +19420818, 0.73, -0.42, 0.36, 0.001 +19420819, 0.09, 0.44, 0.23, 0.001 +19420820, -0.21, 0.29, 0.47, 0.001 +19420821, 0.31, -0.03, 0.32, 0.001 +19420822, 0.14, 0.08, 0.30, 0.001 +19420824, 0.00, -0.25, -0.42, 0.001 +19420825, -0.57, 0.09, -0.39, 0.001 +19420826, -1.07, 0.20, -0.85, 0.001 +19420827, 0.40, 0.11, 0.29, 0.001 +19420828, 0.34, 0.00, -0.14, 0.001 +19420829, 0.08, 0.22, -0.21, 0.001 +19420831, 0.10, -0.10, 0.08, 0.001 +19420901, -0.08, 0.01, -0.32, 0.001 +19420902, 0.02, 0.30, -0.07, 0.001 +19420903, 0.07, -0.02, 0.16, 0.001 +19420904, 0.01, -0.15, 0.60, 0.001 +19420905, 0.16, 0.02, 0.29, 0.001 +19420908, 0.56, -0.47, 0.04, 0.001 +19420909, -0.14, 0.17, -0.14, 0.001 +19420910, -0.55, 0.34, -0.12, 0.001 +19420911, -0.46, 0.03, -0.06, 0.001 +19420912, 0.03, 0.17, -0.01, 0.001 +19420914, 0.00, 0.07, 0.43, 0.001 +19420915, 0.40, -0.14, 0.05, 0.001 +19420916, 0.16, 0.04, 0.14, 0.001 +19420917, -0.04, 0.08, 0.89, 0.001 +19420918, 0.58, -0.13, -0.23, 0.001 +19420919, -0.03, 0.31, 0.58, 0.001 +19420921, 0.08, 0.12, -0.16, 0.001 +19420922, 0.33, -0.21, 0.46, 0.001 +19420923, 0.54, 0.17, 0.00, 0.001 +19420924, 1.12, 0.27, 0.77, 0.001 +19420925, 0.30, 0.38, -0.32, 0.001 +19420926, -0.13, -0.17, -0.46, 0.001 +19420928, -0.01, -0.17, 0.12, 0.001 +19420929, -0.20, -0.25, 0.00, 0.001 +19420930, -0.11, -0.14, -0.32, 0.001 +19421001, 0.65, -0.12, 1.18, 0.001 +19421002, 1.20, 0.11, 0.88, 0.001 +19421003, 0.46, 0.11, 0.67, 0.001 +19421005, 0.69, -0.07, -0.01, 0.001 +19421006, 0.04, -0.32, 0.68, 0.001 +19421007, 0.19, 0.54, -0.29, 0.001 +19421008, 1.56, 0.27, 0.73, 0.001 +19421009, 0.38, 0.25, 0.60, 0.001 +19421010, 0.88, -0.63, 0.48, 0.001 +19421013, 0.53, 0.07, 0.43, 0.001 +19421014, -0.31, 0.25, -0.14, 0.001 +19421015, -1.21, 0.49, -0.43, 0.001 +19421016, 0.41, 0.33, 0.15, 0.001 +19421017, -0.13, 0.40, -0.45, 0.001 +19421019, 0.19, -0.28, 0.07, 0.001 +19421020, 1.05, -0.27, 0.04, 0.001 +19421021, 0.01, 0.55, -0.25, 0.001 +19421022, 0.17, -0.01, -0.05, 0.001 +19421023, -0.07, 0.30, 0.18, 0.001 +19421024, 0.31, -0.05, 0.43, 0.001 +19421026, 0.30, -0.02, 0.67, 0.001 +19421027, -1.01, -0.24, -0.99, 0.001 +19421028, -0.60, -0.08, -0.08, 0.001 +19421029, 0.06, 0.01, 0.26, 0.001 +19421030, 0.35, -0.21, 0.42, 0.001 +19421031, 0.56, 0.12, 0.78, 0.001 +19421102, 0.65, 0.14, 0.44, 0.001 +19421104, -0.26, 0.09, -0.64, 0.001 +19421105, 0.12, -0.11, -0.11, 0.001 +19421106, 1.06, 0.26, -0.29, 0.001 +19421107, 0.68, -0.16, 0.28, 0.001 +19421109, 0.31, 0.22, -0.35, 0.001 +19421110, -0.52, -0.05, 0.00, 0.001 +19421112, 0.04, -0.36, -0.25, 0.001 +19421113, -0.34, 0.21, -0.44, 0.001 +19421114, 0.02, 0.00, -0.10, 0.001 +19421116, -0.86, -0.09, -0.61, 0.001 +19421117, -0.90, -0.27, -0.32, 0.001 +19421118, 0.19, -0.25, -0.37, 0.001 +19421119, 0.13, -0.08, -0.15, 0.001 +19421120, 0.84, -0.24, 0.27, 0.001 +19421121, 0.16, 0.27, -0.08, 0.001 +19421123, -1.11, 0.31, -0.38, 0.001 +19421124, -0.21, -0.57, -0.57, 0.001 +19421125, -0.08, -0.43, 0.37, 0.001 +19421127, 0.39, -0.13, -0.12, 0.001 +19421128, 0.08, 0.23, -0.20, 0.001 +19421130, -0.21, -0.53, -0.71, 0.001 +19421201, 0.13, -0.09, -0.19, 0.001 +19421202, 0.36, -0.19, 0.04, 0.001 +19421203, 0.28, -0.08, 0.25, 0.001 +19421204, -0.13, -0.14, -0.11, 0.001 +19421205, 0.12, -0.05, 0.24, 0.001 +19421207, -0.35, -0.08, -1.01, 0.001 +19421208, 0.52, -0.31, 0.29, 0.001 +19421209, -0.05, -0.34, -0.32, 0.001 +19421210, 0.11, 0.01, -0.35, 0.001 +19421211, 0.09, -0.04, -0.07, 0.001 +19421212, 0.23, 0.17, 0.55, 0.001 +19421214, 0.09, 0.11, -0.86, 0.001 +19421215, 0.37, -0.32, 0.32, 0.001 +19421216, 0.55, -0.19, 0.59, 0.001 +19421217, 1.81, -0.15, 2.05, 0.001 +19421218, -0.02, 0.72, -0.52, 0.001 +19421219, -0.05, -0.22, 0.00, 0.001 +19421221, -0.08, -0.10, -0.29, 0.001 +19421222, -0.03, -0.12, -0.43, 0.001 +19421223, 0.21, -0.31, -0.61, 0.001 +19421224, 0.46, -0.54, 0.38, 0.001 +19421226, 0.24, 0.12, 0.23, 0.001 +19421228, -0.85, -0.08, -0.90, 0.001 +19421229, -0.20, -0.55, -0.21, 0.001 +19421230, 1.02, 0.01, 0.04, 0.001 +19421231, 0.22, 0.34, 1.54, 0.001 +19430102, 0.78, 0.99, 0.60, 0.001 +19430104, 0.85, 0.62, 1.30, 0.001 +19430105, -0.36, 0.56, -0.36, 0.001 +19430106, 0.04, 0.18, -0.05, 0.001 +19430107, -0.04, 0.41, 0.35, 0.001 +19430108, 0.21, 0.22, 0.56, 0.001 +19430109, 0.24, 0.53, -0.13, 0.001 +19430111, 0.30, 0.19, 0.04, 0.001 +19430112, -0.24, 0.15, 0.01, 0.001 +19430113, 0.27, 0.19, 0.47, 0.001 +19430114, 0.51, 0.53, 1.11, 0.001 +19430115, 0.93, 0.44, 0.72, 0.001 +19430116, 0.19, 0.58, 0.31, 0.001 +19430118, -0.06, 0.40, 0.36, 0.001 +19430119, -0.87, -0.54, -1.20, 0.001 +19430120, 0.00, 0.29, 0.35, 0.001 +19430121, 1.17, 0.88, 0.24, 0.001 +19430122, 0.15, -0.02, -0.18, 0.001 +19430123, 0.28, 0.06, 0.03, 0.001 +19430125, 0.91, 0.01, 0.13, 0.001 +19430126, 0.48, -0.07, 0.20, 0.001 +19430127, -0.21, 0.32, 0.80, 0.001 +19430128, 0.24, 0.35, 1.15, 0.001 +19430129, 0.83, 0.46, 0.38, 0.001 +19430130, 0.33, 0.14, 0.10, 0.001 +19430201, 0.36, -0.03, 0.38, 0.001 +19430202, 0.04, 0.47, -0.28, 0.001 +19430203, -0.45, -0.57, -0.24, 0.001 +19430204, -0.08, 0.55, 0.18, 0.001 +19430205, 0.58, 0.27, 0.09, 0.001 +19430206, 0.08, 0.01, -0.02, 0.001 +19430208, -0.23, -0.44, -0.13, 0.001 +19430209, 0.70, 0.34, 0.17, 0.001 +19430210, 0.99, 0.81, 1.15, 0.001 +19430211, 0.26, 0.97, 0.79, 0.001 +19430213, 0.47, 0.59, 0.71, 0.001 +19430215, 0.83, 0.87, 1.05, 0.001 +19430216, -0.18, -0.20, 0.02, 0.001 +19430217, 0.17, 0.03, 0.20, 0.001 +19430218, -1.08, -0.48, -1.82, 0.001 +19430219, -0.10, -0.28, 0.56, 0.001 +19430220, 1.14, 0.50, 0.69, 0.001 +19430223, 0.79, 0.14, 0.89, 0.001 +19430224, 0.68, 0.03, 0.52, 0.001 +19430225, 0.61, 0.34, 0.98, 0.001 +19430226, 0.07, 0.28, 0.19, 0.001 +19430227, 0.36, 0.24, -0.06, 0.001 +19430301, -0.55, 0.26, -0.26, 0.001 +19430302, -0.61, 0.05, 0.16, 0.001 +19430303, 1.26, 0.49, 2.11, 0.001 +19430304, 0.32, 0.22, -0.35, 0.001 +19430305, 0.33, 0.34, -0.19, 0.001 +19430306, 0.21, 0.17, -0.07, 0.001 +19430308, -0.16, 0.34, -0.04, 0.001 +19430309, -0.66, -0.16, -0.43, 0.001 +19430310, -0.40, 0.21, -0.40, 0.001 +19430311, 1.12, 0.75, 1.73, 0.001 +19430312, 0.61, 0.58, 1.16, 0.001 +19430313, 0.09, 0.16, -0.06, 0.001 +19430315, -0.01, -0.22, -0.35, 0.001 +19430316, -0.37, -0.18, -0.37, 0.001 +19430317, -0.69, -0.69, -0.97, 0.001 +19430318, 0.11, 0.67, 0.59, 0.001 +19430319, -0.29, 0.73, -0.99, 0.001 +19430320, -0.09, -0.08, 0.04, 0.001 +19430322, 0.29, 0.21, 1.16, 0.001 +19430323, 0.47, 0.59, 0.08, 0.001 +19430324, 0.46, 0.43, -0.14, 0.001 +19430325, 1.83, 0.19, 0.82, 0.001 +19430326, 0.72, -0.19, 0.29, 0.001 +19430327, 0.15, -0.39, -0.30, 0.001 +19430329, 1.27, 0.43, 1.46, 0.001 +19430330, 0.71, -0.54, 0.25, 0.001 +19430331, -0.16, 0.33, 0.26, 0.001 +19430401, 0.11, 0.43, 1.24, 0.001 +19430402, -0.42, 0.02, 0.61, 0.001 +19430403, 0.14, 0.66, 1.13, 0.001 +19430405, 1.39, 0.79, 2.12, 0.001 +19430406, 0.34, -0.06, -0.23, 0.001 +19430407, -0.52, -0.58, -0.21, 0.001 +19430408, -0.40, 0.72, -0.19, 0.001 +19430409, -3.65, -1.67, -3.57, 0.001 +19430410, -0.08, -0.48, 0.72, 0.001 +19430412, -0.06, 0.53, 0.03, 0.001 +19430413, -0.15, -0.20, -0.45, 0.001 +19430414, 1.35, 1.06, 1.94, 0.001 +19430415, 0.83, 0.27, 0.90, 0.001 +19430416, -0.19, 0.09, -0.37, 0.001 +19430417, 0.40, -0.06, 0.45, 0.001 +19430419, 0.00, 0.35, 0.19, 0.001 +19430420, -0.44, 0.15, -0.22, 0.001 +19430421, 0.89, 0.19, 0.94, 0.001 +19430422, 0.33, 0.05, 0.46, 0.001 +19430424, 0.16, -0.11, 0.64, 0.001 +19430426, 0.01, 0.06, -0.25, 0.001 +19430427, -0.11, -0.39, -0.86, 0.001 +19430428, -0.12, -0.05, -0.16, 0.001 +19430429, 1.02, 0.18, 1.52, 0.001 +19430430, 0.08, 0.18, -0.31, 0.001 +19430501, 0.58, 0.35, 0.99, 0.001 +19430503, 1.32, 0.56, 1.36, 0.001 +19430504, 0.52, 0.94, -0.57, 0.001 +19430505, 0.54, 0.02, 1.23, 0.001 +19430506, 0.33, 0.48, 0.05, 0.001 +19430507, -1.25, -0.27, -1.69, 0.001 +19430508, 1.01, 0.56, 1.48, 0.001 +19430510, 0.38, 1.19, 0.28, 0.001 +19430511, -0.34, -0.01, -0.33, 0.001 +19430512, -0.35, -0.55, -0.36, 0.001 +19430513, -0.33, -0.21, 0.00, 0.001 +19430514, -0.96, -0.73, -0.83, 0.001 +19430515, 0.34, 0.85, 0.62, 0.001 +19430517, -0.01, 0.30, -0.36, 0.001 +19430518, 0.66, -0.17, 0.02, 0.001 +19430519, 1.06, 0.77, 1.15, 0.001 +19430520, -0.08, 0.23, -0.18, 0.001 +19430521, -0.04, -0.57, -0.14, 0.001 +19430522, 0.02, 0.65, 0.05, 0.001 +19430524, -0.07, -0.29, -0.61, 0.001 +19430525, 0.25, -0.52, 0.98, 0.001 +19430526, 0.88, -0.16, 0.02, 0.001 +19430527, 0.35, 0.55, -0.25, 0.001 +19430528, 0.27, 0.00, 0.12, 0.001 +19430529, 0.56, 0.16, 0.13, 0.001 +19430601, 0.37, -0.08, 0.09, 0.001 +19430602, -0.08, -0.24, -0.75, 0.001 +19430603, 0.55, -0.02, 0.53, 0.001 +19430604, -0.30, 0.22, -0.23, 0.001 +19430605, 0.66, 0.61, 0.18, 0.001 +19430607, -0.75, -0.06, -0.75, 0.001 +19430608, -0.57, -0.11, -0.74, 0.001 +19430609, 0.20, -0.07, 0.25, 0.001 +19430610, 0.21, 0.25, -0.50, 0.001 +19430611, -0.30, 0.17, -0.31, 0.001 +19430612, -0.15, -0.25, -0.38, 0.001 +19430614, -1.61, -1.12, -1.50, 0.001 +19430615, 0.23, -0.16, 0.68, 0.001 +19430616, 0.41, 0.16, 0.63, 0.001 +19430617, 0.16, 0.23, 0.23, 0.001 +19430618, -0.17, 0.12, -0.34, 0.001 +19430619, -0.02, -0.29, -0.01, 0.001 +19430621, -0.72, -0.63, -0.80, 0.001 +19430622, 0.21, 0.02, 0.45, 0.001 +19430623, 0.78, 0.42, 0.75, 0.001 +19430624, 0.54, -0.08, -0.02, 0.001 +19430625, 1.12, 0.24, 0.99, 0.001 +19430626, 0.42, 0.02, 0.32, 0.001 +19430628, 0.44, -0.07, 0.30, 0.001 +19430629, -0.33, -0.26, -0.16, 0.001 +19430630, 0.55, 0.01, 0.47, 0.001 +19430701, 0.17, 0.11, 0.96, 0.001 +19430702, 0.02, 0.21, -0.37, 0.001 +19430703, 0.15, 0.01, 0.13, 0.001 +19430706, 0.00, 0.00, -0.54, 0.001 +19430707, -0.23, -0.33, -0.38, 0.001 +19430708, 0.20, -0.11, 0.45, 0.001 +19430709, 0.37, -0.16, 0.62, 0.001 +19430710, 0.13, 0.01, 0.08, 0.001 +19430712, 0.51, -0.44, 0.58, 0.001 +19430713, 0.75, 0.09, 0.44, 0.001 +19430714, 0.56, -0.25, 0.61, 0.001 +19430715, -0.67, 0.14, -0.99, 0.001 +19430716, -0.09, -0.33, 0.41, 0.001 +19430717, 0.09, 0.04, 0.10, 0.001 +19430719, -0.06, -0.16, -0.55, 0.001 +19430720, -0.71, -0.25, -1.27, 0.001 +19430721, 0.11, -0.21, 0.65, 0.001 +19430722, 0.18, 0.33, 0.73, 0.001 +19430723, 0.02, 0.05, 0.02, 0.001 +19430724, 0.09, 0.03, 0.09, 0.001 +19430726, -1.50, -0.51, -2.09, 0.001 +19430727, -2.75, 0.11, -1.60, 0.001 +19430728, -0.57, -1.26, 0.79, 0.001 +19430729, 1.61, 0.99, 1.48, 0.001 +19430730, -1.83, -0.38, -1.56, 0.001 +19430731, -1.31, -0.27, -0.97, 0.001 +19430802, -1.77, 0.26, -1.13, 0.001 +19430803, 1.48, -1.13, 0.56, 0.001 +19430804, 0.85, 0.41, 0.34, 0.001 +19430805, -0.26, 0.01, -0.32, 0.001 +19430806, -0.86, 0.13, -0.75, 0.001 +19430807, -0.11, -0.14, -0.34, 0.001 +19430809, 0.02, -0.19, 0.46, 0.001 +19430810, 1.08, 0.09, 0.83, 0.001 +19430811, 0.67, 0.32, 0.17, 0.001 +19430812, -0.45, 0.05, 0.10, 0.001 +19430813, 0.55, -0.16, -0.37, 0.001 +19430814, 0.12, 0.24, 0.60, 0.001 +19430816, -0.05, 0.41, 0.08, 0.001 +19430817, 0.40, -0.32, -0.06, 0.001 +19430818, 0.43, -0.21, -0.32, 0.001 +19430819, -0.03, 0.02, -0.47, 0.001 +19430820, -0.91, 0.21, -0.68, 0.001 +19430821, -0.82, -0.03, -0.56, 0.001 +19430823, -0.86, -0.59, -1.11, 0.001 +19430824, 0.59, -0.33, 0.99, 0.001 +19430825, 0.41, 0.17, 0.58, 0.001 +19430826, 0.21, 0.06, 0.26, 0.001 +19430827, -0.38, 0.18, -0.58, 0.001 +19430828, 0.10, -0.07, 0.35, 0.001 +19430830, 0.04, -0.04, 0.07, 0.001 +19430831, 0.92, 0.03, 0.95, 0.001 +19430901, 0.39, 0.27, 0.47, 0.001 +19430902, 0.04, -0.08, -0.65, 0.001 +19430903, -0.15, 0.02, -0.21, 0.001 +19430904, 0.22, 0.14, 0.07, 0.001 +19430907, 0.07, -0.43, 0.11, 0.001 +19430908, -0.48, -0.07, -0.95, 0.001 +19430909, 0.99, 0.62, 1.08, 0.001 +19430910, 0.13, 0.45, 0.39, 0.001 +19430911, 0.02, 0.01, 0.19, 0.001 +19430913, -0.13, 0.08, -0.50, 0.001 +19430914, -0.23, -0.33, -0.11, 0.001 +19430915, 0.21, 0.22, 0.49, 0.001 +19430916, 0.37, -0.05, 0.35, 0.001 +19430917, 1.00, 0.00, 1.04, 0.001 +19430918, 0.82, 0.36, 0.65, 0.001 +19430920, 0.41, 0.45, -0.19, 0.001 +19430921, 0.02, -0.60, 0.11, 0.001 +19430922, -0.33, 0.04, -0.31, 0.001 +19430923, -0.60, 0.02, -0.26, 0.001 +19430924, 0.04, -0.03, 0.35, 0.001 +19430925, 0.01, 0.34, -0.08, 0.001 +19430927, -0.75, -0.08, -1.22, 0.001 +19430928, -0.13, 0.23, 0.21, 0.001 +19430929, 0.18, -0.12, 0.10, 0.001 +19430930, 0.29, -0.19, 0.30, 0.001 +19431001, 0.15, 0.16, 0.29, 0.001 +19431002, -0.05, 0.25, -0.04, 0.001 +19431004, -0.50, -0.29, -0.64, 0.001 +19431005, -0.41, 0.06, -0.23, 0.001 +19431006, -1.02, -0.27, -0.42, 0.001 +19431007, -1.21, 0.05, -0.55, 0.001 +19431008, 0.29, -0.08, 0.68, 0.001 +19431009, 0.53, -0.16, 0.75, 0.001 +19431011, -0.63, -0.13, -0.58, 0.001 +19431013, -0.17, -0.48, -0.22, 0.001 +19431014, 0.54, 0.04, 0.59, 0.001 +19431015, 0.54, 0.40, 0.41, 0.001 +19431016, 0.36, -0.07, 0.22, 0.001 +19431018, -0.08, 0.09, -0.20, 0.001 +19431019, 0.36, 0.18, 0.67, 0.001 +19431020, 0.24, 0.05, 0.06, 0.001 +19431021, -0.68, 0.57, -0.51, 0.001 +19431022, 0.39, -0.30, 0.41, 0.001 +19431023, 0.02, 0.09, 0.28, 0.001 +19431025, -0.11, -0.10, -0.38, 0.001 +19431026, 0.29, 0.35, 0.62, 0.001 +19431027, 0.60, 0.24, 1.05, 0.001 +19431028, -0.13, 0.00, -0.44, 0.001 +19431029, -0.47, 0.04, -0.51, 0.001 +19431030, 0.04, -0.08, 0.47, 0.001 +19431101, -0.07, -0.14, -0.60, 0.001 +19431103, -1.00, -0.60, -1.34, 0.001 +19431104, -1.03, -0.35, -1.08, 0.001 +19431105, -0.43, 0.31, 0.04, 0.001 +19431106, -0.02, 0.04, -0.09, 0.001 +19431108, -3.23, -1.73, -3.58, 0.001 +19431109, 0.53, -0.12, 1.68, 0.001 +19431110, 1.12, 0.71, 0.93, 0.001 +19431112, -0.55, -0.14, 0.16, 0.001 +19431113, -0.20, 0.06, -0.08, 0.001 +19431115, 0.10, 0.26, 0.68, 0.001 +19431116, -0.32, 0.23, 0.35, 0.001 +19431117, -0.58, -0.36, -0.53, 0.001 +19431118, 0.38, -0.04, 0.22, 0.001 +19431119, 1.26, 0.19, 1.47, 0.001 +19431120, 0.57, 0.43, 0.15, 0.001 +19431122, -0.27, 0.18, -0.06, 0.001 +19431123, -0.12, 0.13, -0.14, 0.001 +19431124, -0.25, 0.03, -1.07, 0.001 +19431126, -0.71, -0.39, -0.98, 0.001 +19431127, -0.31, -0.02, -0.19, 0.001 +19431129, -1.00, -0.07, 0.02, 0.001 +19431130, 0.11, -0.18, 0.00, 0.001 +19431201, 0.95, 0.31, 0.82, 0.001 +19431202, 0.79, 0.03, 0.44, 0.001 +19431203, 0.18, 0.09, 0.20, 0.001 +19431204, 0.17, 0.14, 0.07, 0.001 +19431206, 0.47, -0.10, 0.39, 0.001 +19431207, 0.78, 0.30, -0.06, 0.001 +19431208, 1.06, 0.72, 1.00, 0.001 +19431209, -0.25, 0.18, -0.33, 0.001 +19431210, 0.64, -0.14, -0.20, 0.001 +19431211, 0.23, 0.13, 0.07, 0.001 +19431213, -0.33, -0.24, -0.55, 0.001 +19431214, -0.28, -0.08, -0.03, 0.001 +19431215, 0.08, 0.19, 0.27, 0.001 +19431216, 0.41, -0.27, -0.23, 0.001 +19431217, 0.40, 0.04, 1.19, 0.001 +19431218, 0.38, 0.29, 0.13, 0.001 +19431220, 0.22, 0.26, -0.11, 0.001 +19431221, -0.30, 0.22, -0.60, 0.001 +19431222, -0.08, 0.13, -0.19, 0.001 +19431223, -0.04, -0.03, 0.17, 0.001 +19431224, 0.15, 0.15, 0.32, 0.001 +19431227, -0.09, 0.34, -0.34, 0.001 +19431228, -0.84, 0.03, -1.12, 0.001 +19431229, -0.20, -0.38, 0.46, 0.001 +19431230, 1.64, 0.00, 1.53, 0.001 +19431231, 0.08, 0.74, -0.34, 0.001 +19440103, -0.12, 0.09, 0.03, 0.001 +19440104, 1.04, -0.29, 1.15, 0.001 +19440105, 0.96, 0.63, 0.32, 0.001 +19440106, -0.23, 0.25, -0.01, 0.001 +19440107, -0.12, 0.53, 0.00, 0.001 +19440108, 0.03, -0.02, 0.06, 0.001 +19440110, -0.19, 0.20, 0.05, 0.001 +19440111, 0.54, 0.05, 0.30, 0.001 +19440112, -0.60, 0.13, -0.35, 0.001 +19440113, -0.26, 0.04, 0.11, 0.001 +19440114, 0.63, 0.56, 0.48, 0.001 +19440115, 0.47, 0.16, 0.41, 0.001 +19440117, -0.29, -0.04, -0.50, 0.001 +19440118, -0.22, -0.41, 0.10, 0.001 +19440119, -0.02, -0.13, -0.52, 0.001 +19440120, 0.11, 0.39, 0.36, 0.001 +19440121, 0.22, 0.18, 0.42, 0.001 +19440122, 0.23, -0.04, 0.09, 0.001 +19440124, -0.16, 0.28, -0.39, 0.001 +19440125, -0.11, -0.23, -0.28, 0.001 +19440126, -0.87, 0.11, -1.01, 0.001 +19440127, -0.11, -0.01, 0.04, 0.001 +19440128, 0.49, -0.13, 0.90, 0.001 +19440129, 0.11, 0.18, 0.23, 0.001 +19440131, 0.23, 0.05, 0.26, 0.001 +19440201, 0.09, 0.25, -0.11, 0.001 +19440202, -0.17, 0.07, 0.16, 0.001 +19440203, -0.79, 0.27, -0.45, 0.001 +19440204, -0.64, 0.00, -0.60, 0.001 +19440205, 0.20, 0.09, 0.74, 0.001 +19440207, -0.34, -0.03, 0.30, 0.001 +19440208, 0.55, -0.29, 0.16, 0.001 +19440209, -0.01, -0.06, 0.10, 0.001 +19440210, 0.61, -0.27, 1.08, 0.001 +19440211, -0.10, 0.27, 0.04, 0.001 +19440214, 0.08, 0.20, -0.27, 0.001 +19440215, 0.53, -0.17, 0.77, 0.001 +19440216, -0.08, 0.15, -0.49, 0.001 +19440217, 0.39, -0.27, 0.83, 0.001 +19440218, -0.36, 0.29, -0.48, 0.001 +19440219, -0.03, -0.01, 0.06, 0.001 +19440221, 0.03, 0.09, -0.15, 0.001 +19440223, 0.61, -0.26, 1.13, 0.001 +19440224, 0.20, 0.18, -0.03, 0.001 +19440225, 0.04, 0.11, -0.19, 0.001 +19440226, 0.00, -0.06, 0.14, 0.001 +19440228, 0.16, -0.51, -0.46, 0.001 +19440229, -0.60, -0.11, -1.43, 0.001 +19440301, 0.35, -0.15, 0.57, 0.001 +19440302, 0.21, 0.35, 0.24, 0.001 +19440303, 0.11, -0.06, -0.49, 0.001 +19440304, 0.03, 0.00, -0.12, 0.001 +19440306, 0.32, -0.13, 0.56, 0.001 +19440307, 0.67, 0.34, 0.41, 0.001 +19440308, 0.74, 0.04, -0.28, 0.001 +19440309, -0.13, 0.16, 0.17, 0.001 +19440310, 0.45, 0.32, 0.01, 0.001 +19440311, 0.27, 0.09, 0.42, 0.001 +19440313, 0.70, -0.08, 0.55, 0.001 +19440314, -0.23, -0.29, -0.07, 0.001 +19440315, 0.40, 0.08, 0.61, 0.001 +19440316, 0.24, 0.38, 0.58, 0.001 +19440317, 0.16, -0.07, 0.52, 0.001 +19440318, -0.29, 0.21, 0.24, 0.001 +19440320, -0.41, 0.08, -0.41, 0.001 +19440321, 0.32, 0.02, 1.03, 0.001 +19440322, -0.08, 0.29, -0.32, 0.001 +19440323, -0.83, 0.37, -0.42, 0.001 +19440324, 0.24, -0.22, 0.29, 0.001 +19440325, 0.00, 0.17, -0.11, 0.001 +19440327, -0.17, 0.08, -0.38, 0.001 +19440328, -1.24, -0.74, -1.55, 0.001 +19440329, -0.21, -0.27, 0.09, 0.001 +19440330, 0.67, 0.56, 0.77, 0.001 +19440331, 0.18, 0.13, 0.45, 0.001 +19440401, 0.04, -0.05, -0.17, 0.001 +19440403, -0.61, -0.08, -0.75, 0.001 +19440404, 0.05, -0.23, 0.16, 0.001 +19440405, 0.24, 0.15, 0.35, 0.001 +19440406, 0.31, -0.01, 0.06, 0.001 +19440408, 0.20, 0.06, 0.22, 0.001 +19440410, -0.07, -0.26, 0.19, 0.001 +19440411, 0.02, -0.14, 0.64, 0.001 +19440412, -0.52, -0.04, -0.46, 0.001 +19440413, -0.31, -0.25, -0.33, 0.001 +19440414, 0.01, 0.18, -0.05, 0.001 +19440415, 0.18, -0.12, 0.07, 0.001 +19440417, -0.28, 0.15, -0.30, 0.001 +19440418, -1.60, -0.79, -2.03, 0.001 +19440419, -0.40, -0.09, 0.08, 0.001 +19440420, 0.77, 0.25, 0.99, 0.001 +19440421, 0.16, -0.01, 0.20, 0.001 +19440422, -0.06, 0.05, 0.00, 0.001 +19440424, -0.95, -0.35, -1.15, 0.001 +19440425, 0.01, -0.35, 0.14, 0.001 +19440426, 0.52, -0.03, 0.63, 0.001 +19440427, 0.29, 0.15, 0.37, 0.001 +19440428, 0.31, 0.39, 0.15, 0.001 +19440429, 0.03, 0.14, -0.02, 0.001 +19440501, 0.68, -0.19, 0.17, 0.001 +19440502, -0.14, 0.38, -0.51, 0.001 +19440503, 0.47, -0.06, 0.25, 0.001 +19440504, -0.05, 0.19, -0.48, 0.001 +19440505, 0.52, 0.06, 0.59, 0.001 +19440506, 0.17, 0.00, -0.21, 0.001 +19440508, -0.18, 0.19, -0.02, 0.001 +19440509, 0.17, -0.11, 0.07, 0.001 +19440510, 0.16, -0.03, -0.20, 0.001 +19440511, 0.14, 0.03, 0.04, 0.001 +19440512, -0.64, -0.27, -1.09, 0.001 +19440513, 0.03, -0.23, 0.28, 0.001 +19440515, 0.17, 0.01, 0.22, 0.001 +19440516, 0.17, 0.23, 0.54, 0.001 +19440517, 0.67, 0.15, 0.66, 0.001 +19440518, 0.25, 0.17, 0.33, 0.001 +19440519, 0.19, 0.09, -0.21, 0.001 +19440520, 0.09, 0.18, 0.20, 0.001 +19440522, 0.04, 0.16, -0.39, 0.001 +19440523, 0.32, -0.01, 0.31, 0.001 +19440524, 0.38, 0.14, 0.29, 0.001 +19440525, -0.06, 0.05, -0.40, 0.001 +19440526, 0.29, 0.13, 0.12, 0.001 +19440527, 0.23, 0.07, 0.28, 0.001 +19440529, 0.22, 0.25, -0.01, 0.001 +19440531, 0.68, -0.02, 0.13, 0.001 +19440601, -0.03, 0.06, -0.10, 0.001 +19440602, -0.06, -0.07, -0.42, 0.001 +19440603, 0.03, -0.06, 0.01, 0.001 +19440605, -0.53, 0.11, -0.68, 0.001 +19440606, 0.45, -0.22, -0.05, 0.001 +19440607, -0.15, -0.10, -0.70, 0.001 +19440608, -0.24, 0.41, -0.34, 0.001 +19440609, 0.09, 0.16, 0.49, 0.001 +19440610, 0.48, 0.01, 0.37, 0.001 +19440612, 1.43, 0.33, 1.13, 0.001 +19440613, 0.77, 0.12, 0.29, 0.001 +19440614, 0.14, -0.02, -0.54, 0.001 +19440615, 0.54, 0.45, -0.39, 0.001 +19440616, 0.82, 0.18, 0.94, 0.001 +19440617, 0.34, -0.03, 0.35, 0.001 +19440619, 0.54, 0.08, 0.19, 0.001 +19440620, -0.07, -0.05, 0.20, 0.001 +19440621, -0.33, 0.09, -0.01, 0.001 +19440622, 0.01, 0.24, -0.03, 0.001 +19440623, 0.09, 0.65, 0.21, 0.001 +19440624, 0.07, 0.14, 0.17, 0.001 +19440626, 0.58, 0.45, 0.24, 0.001 +19440627, 0.46, 0.33, 0.02, 0.001 +19440628, -0.31, 0.33, 0.14, 0.001 +19440629, -0.03, 0.22, -0.01, 0.001 +19440630, 0.28, -0.04, 0.27, 0.001 +19440701, 0.10, 0.31, 0.04, 0.001 +19440703, 0.77, 0.17, 0.75, 0.001 +19440705, 0.43, 0.44, 0.52, 0.001 +19440706, -0.28, -0.45, -0.33, 0.001 +19440707, 0.22, 0.03, 0.09, 0.001 +19440708, 0.55, 0.15, 0.57, 0.001 +19440710, 0.36, 0.46, -0.39, 0.001 +19440711, -0.17, -0.34, -0.39, 0.001 +19440712, 0.12, 0.30, 0.24, 0.001 +19440713, -0.19, -0.41, 0.14, 0.001 +19440714, 0.00, 0.07, -0.04, 0.001 +19440715, 0.02, 0.57, 0.35, 0.001 +19440717, -1.00, -0.80, -0.47, 0.001 +19440718, -0.81, -0.15, -0.49, 0.001 +19440719, 0.82, 0.72, 0.84, 0.001 +19440720, -0.64, -0.28, -0.84, 0.001 +19440721, -1.33, -0.88, -1.08, 0.001 +19440722, -0.92, -0.39, -0.84, 0.001 +19440724, 0.14, 0.13, 0.39, 0.001 +19440725, 0.89, 0.69, 0.93, 0.001 +19440726, -0.15, 0.57, -0.16, 0.001 +19440727, 0.09, -0.38, 0.08, 0.001 +19440728, -0.46, 0.05, -0.23, 0.001 +19440729, 0.05, -0.14, 0.14, 0.001 +19440731, -0.06, 0.18, -0.16, 0.001 +19440801, 0.45, 0.17, 0.42, 0.001 +19440802, 0.24, 0.23, -0.01, 0.001 +19440803, -0.57, -0.16, -0.66, 0.001 +19440804, -0.75, 0.03, -0.60, 0.001 +19440805, 0.05, 0.11, -0.50, 0.001 +19440807, 0.13, 0.47, -0.86, 0.001 +19440808, -0.35, -0.13, 0.05, 0.001 +19440809, 0.31, -0.27, 0.35, 0.001 +19440810, 0.60, 0.10, 0.66, 0.001 +19440811, 0.52, 0.44, 0.21, 0.001 +19440812, 0.25, 0.18, 0.16, 0.001 +19440814, 0.18, 0.04, -0.04, 0.001 +19440815, -0.10, 0.33, -0.61, 0.001 +19440816, 0.66, -0.01, 0.41, 0.001 +19440817, 0.75, 0.35, 0.29, 0.001 +19440818, 0.36, 0.09, 0.01, 0.001 +19440821, -0.27, -0.09, -0.35, 0.001 +19440822, -0.70, -0.44, -0.41, 0.001 +19440823, 0.12, 0.27, -0.07, 0.001 +19440824, -0.55, -0.58, -0.34, 0.001 +19440825, -0.05, 0.25, 0.06, 0.001 +19440828, -0.09, 0.14, -0.10, 0.001 +19440829, 0.14, 0.45, -0.46, 0.001 +19440830, 0.35, 0.32, 0.75, 0.001 +19440831, -0.11, 0.04, 0.08, 0.001 +19440901, 0.28, 0.18, -0.16, 0.001 +19440905, -0.64, -0.13, -0.80, 0.001 +19440906, -2.19, -0.51, -1.62, 0.001 +19440907, -0.32, -0.41, 0.31, 0.001 +19440908, 0.04, 0.84, 0.17, 0.001 +19440909, -0.21, -0.03, -0.01, 0.001 +19440911, 0.55, -0.25, -0.03, 0.001 +19440912, 0.32, 0.21, -0.44, 0.001 +19440913, -0.94, -0.53, -0.63, 0.001 +19440914, -0.58, -0.32, -0.19, 0.001 +19440915, 0.87, 0.41, 0.21, 0.001 +19440916, 0.44, 0.08, 0.65, 0.001 +19440918, 0.12, -0.11, -0.36, 0.001 +19440919, 0.79, 0.00, 0.72, 0.001 +19440920, 0.20, 0.44, 0.00, 0.001 +19440921, -0.24, -0.06, -0.32, 0.001 +19440922, 0.19, 0.19, -0.06, 0.001 +19440923, 0.27, -0.08, 0.24, 0.001 +19440925, 0.53, 0.30, 0.35, 0.001 +19440926, -0.09, 0.05, -0.31, 0.001 +19440927, 0.05, 0.05, 0.37, 0.001 +19440928, -0.10, 0.19, 0.02, 0.001 +19440929, 0.34, -0.15, 0.62, 0.001 +19440930, 0.39, 0.15, 0.17, 0.001 +19441002, 0.23, 0.38, 0.27, 0.001 +19441003, -0.08, -0.18, -0.11, 0.001 +19441004, 0.45, 0.03, 0.07, 0.001 +19441005, 0.64, -0.24, 0.65, 0.001 +19441006, 0.17, 0.00, -0.02, 0.001 +19441007, 0.20, -0.01, 0.16, 0.001 +19441009, -0.73, 0.01, -0.56, 0.001 +19441010, 0.12, -0.20, 0.03, 0.001 +19441011, 0.51, 0.15, -0.15, 0.001 +19441013, -0.02, 0.16, 0.03, 0.001 +19441014, 0.03, 0.08, -0.14, 0.001 +19441016, -0.39, -0.22, -0.32, 0.001 +19441017, 0.27, -0.08, -0.09, 0.001 +19441018, 0.56, 0.19, 0.23, 0.001 +19441019, -0.16, 0.33, -0.20, 0.001 +19441020, -0.22, 0.04, 0.14, 0.001 +19441021, 0.11, 0.02, 0.13, 0.001 +19441023, -1.37, -0.46, -0.64, 0.001 +19441024, 0.11, -0.20, 0.20, 0.001 +19441025, 0.00, 0.13, -0.10, 0.001 +19441026, -0.65, -0.25, -0.30, 0.001 +19441027, 0.16, 0.04, 0.30, 0.001 +19441028, 0.32, 0.09, -0.04, 0.001 +19441030, -0.28, -0.28, -0.01, 0.001 +19441031, 0.22, 0.32, 0.18, 0.001 +19441101, 0.23, -0.01, 0.15, 0.001 +19441102, 0.52, -0.11, 0.32, 0.001 +19441103, 0.05, 0.23, 0.36, 0.001 +19441104, 0.10, -0.06, 0.00, 0.001 +19441106, 0.27, -0.17, -0.14, 0.001 +19441108, -0.20, 0.13, -0.08, 0.001 +19441109, 0.44, 0.06, 0.35, 0.001 +19441110, 0.30, 0.17, 0.68, 0.001 +19441113, -0.75, -0.26, -0.31, 0.001 +19441114, -1.04, -0.48, -0.71, 0.001 +19441115, -0.13, 0.03, 0.25, 0.001 +19441116, 0.28, -0.05, 0.47, 0.001 +19441117, -0.06, -0.33, 0.06, 0.001 +19441118, 0.10, 0.19, -0.08, 0.001 +19441120, 0.19, 0.02, -0.07, 0.001 +19441121, 0.55, 0.35, 0.41, 0.001 +19441122, 0.14, -0.05, 0.06, 0.001 +19441124, -0.26, 0.14, -0.26, 0.001 +19441125, 0.10, 0.00, 0.10, 0.001 +19441127, 0.14, -0.19, 0.38, 0.001 +19441128, 0.13, 0.22, 0.16, 0.001 +19441129, 0.57, 0.37, -0.01, 0.001 +19441130, 0.04, 0.19, 0.21, 0.001 +19441201, 0.03, 0.16, 0.03, 0.001 +19441202, 0.20, 0.33, 0.56, 0.001 +19441204, 0.60, 0.12, 0.95, 0.001 +19441205, 0.32, -0.02, 0.08, 0.001 +19441206, 0.08, 0.15, 0.19, 0.001 +19441207, 0.33, 0.37, 0.35, 0.001 +19441208, 0.67, 0.04, 0.53, 0.001 +19441209, 0.47, 0.05, 0.02, 0.001 +19441211, 0.23, 0.01, 0.30, 0.001 +19441212, -0.12, -0.02, -0.16, 0.001 +19441213, -0.18, 0.11, -0.33, 0.001 +19441214, 0.28, 0.14, 0.49, 0.001 +19441215, 0.81, -0.07, 1.05, 0.001 +19441216, 0.02, 0.15, -0.09, 0.001 +19441218, -0.50, -0.03, -0.12, 0.001 +19441219, 0.11, -0.26, 0.90, 0.001 +19441220, -0.66, -0.08, -0.53, 0.001 +19441221, -0.23, 0.13, -0.18, 0.001 +19441222, 0.34, 0.05, 1.19, 0.001 +19441223, 0.09, 0.19, -0.10, 0.001 +19441226, -0.56, 0.18, -0.14, 0.001 +19441227, -0.79, -0.46, -0.67, 0.001 +19441228, 1.09, 0.03, 0.98, 0.001 +19441229, 1.31, 0.39, 0.39, 0.001 +19441230, 0.09, 0.51, -0.09, 0.001 +19450102, 0.29, -0.09, 0.22, 0.001 +19450103, 0.94, 0.14, 0.56, 0.001 +19450104, 0.28, -0.11, 0.54, 0.001 +19450105, -0.14, 0.09, -0.29, 0.001 +19450106, -0.14, 0.03, -0.09, 0.001 +19450108, 1.15, 0.21, 1.54, 0.001 +19450109, 0.03, -0.13, 0.35, 0.001 +19450110, 0.60, 0.01, 0.81, 0.001 +19450111, -0.01, -0.04, 0.07, 0.001 +19450112, -0.22, -0.15, -0.27, 0.001 +19450113, 0.07, 0.31, -0.07, 0.001 +19450115, -0.58, 0.30, -1.48, 0.001 +19450116, 0.00, 0.11, -0.05, 0.001 +19450117, 0.75, 0.70, 0.27, 0.001 +19450118, -0.46, 0.13, -0.35, 0.001 +19450119, -0.86, -0.22, -0.54, 0.001 +19450120, -0.65, -0.18, -0.94, 0.001 +19450122, -0.33, 0.16, 0.03, 0.001 +19450123, -0.42, -0.06, -0.37, 0.001 +19450124, 0.06, 0.03, 0.32, 0.001 +19450125, 0.74, 0.32, 0.26, 0.001 +19450126, 0.79, 0.19, 0.81, 0.001 +19450127, 0.41, 0.04, 0.14, 0.001 +19450129, 0.13, 0.10, 0.10, 0.001 +19450130, -0.59, 0.08, -0.83, 0.001 +19450131, 0.18, 0.39, 0.09, 0.001 +19450201, 0.33, 0.19, 0.68, 0.001 +19450202, 0.81, 0.12, 0.43, 0.001 +19450203, 0.32, 0.22, 0.38, 0.001 +19450205, 0.42, 0.46, -0.01, 0.001 +19450206, 0.18, 0.04, 0.17, 0.001 +19450207, 0.25, 0.12, 0.13, 0.001 +19450208, 0.05, -0.12, 0.25, 0.001 +19450209, -0.46, -0.28, -0.56, 0.001 +19450210, 0.19, 0.33, 0.30, 0.001 +19450213, 1.21, -0.19, 0.87, 0.001 +19450214, 0.55, 0.06, 0.27, 0.001 +19450215, 0.65, -0.07, 0.78, 0.001 +19450216, -0.05, 0.07, -0.27, 0.001 +19450217, 0.08, 0.06, -0.14, 0.001 +19450219, 0.60, 0.38, 0.74, 0.001 +19450220, 0.22, -0.01, -0.02, 0.001 +19450221, -0.08, -0.34, 0.10, 0.001 +19450223, -0.15, 0.11, -0.27, 0.001 +19450224, -0.25, -0.11, -0.53, 0.001 +19450226, -0.21, -0.23, -0.09, 0.001 +19450227, 0.69, 0.38, 0.27, 0.001 +19450228, 0.71, 0.28, 0.64, 0.001 +19450301, 0.31, 0.47, 0.72, 0.001 +19450302, -0.52, -0.31, -0.76, 0.001 +19450303, -0.06, 0.00, 0.13, 0.001 +19450305, 0.49, -0.16, 0.10, 0.001 +19450306, 0.47, -0.14, 0.41, 0.001 +19450307, -0.05, -0.23, -0.25, 0.001 +19450308, -1.77, -1.24, -1.35, 0.001 +19450309, -1.88, -0.43, -0.71, 0.001 +19450310, 0.64, 0.33, 0.58, 0.001 +19450312, 0.61, 0.52, 0.60, 0.001 +19450313, -0.03, -0.30, -0.07, 0.001 +19450314, 0.24, 0.31, 0.13, 0.001 +19450315, 0.46, -0.30, 0.35, 0.001 +19450316, 0.16, 0.18, 0.03, 0.001 +19450317, 0.07, -0.07, 0.11, 0.001 +19450319, -0.62, -0.18, -0.48, 0.001 +19450320, -1.12, -0.16, -0.88, 0.001 +19450321, -1.04, -0.57, 0.07, 0.001 +19450322, 0.01, 0.36, 0.10, 0.001 +19450323, 0.34, 0.04, 0.17, 0.001 +19450324, -0.71, 0.20, -0.64, 0.001 +19450326, -1.76, -0.66, -1.53, 0.001 +19450327, 0.46, 0.06, 0.85, 0.001 +19450328, 0.86, 0.31, 0.43, 0.001 +19450329, 0.27, 0.28, 0.22, 0.001 +19450331, 0.26, -0.03, 0.09, 0.001 +19450402, 0.78, 0.02, 0.21, 0.001 +19450403, 0.27, -0.29, 0.22, 0.001 +19450404, -0.12, -0.16, 0.03, 0.001 +19450405, -0.78, -0.05, -1.03, 0.001 +19450406, 0.49, -0.26, 0.47, 0.001 +19450407, 0.47, 0.08, 0.41, 0.001 +19450409, -0.15, 0.13, -0.25, 0.001 +19450410, 0.51, 0.02, 0.51, 0.001 +19450411, 1.08, 0.22, 0.51, 0.001 +19450412, 0.25, 0.32, 0.06, 0.001 +19450413, 0.71, -0.45, 0.30, 0.001 +19450416, 1.79, 0.18, 0.66, 0.001 +19450417, 0.16, 0.18, -0.01, 0.001 +19450418, 0.83, -0.07, 0.39, 0.001 +19450419, -0.58, 0.14, -0.12, 0.001 +19450420, -0.06, -0.03, 0.09, 0.001 +19450421, 0.30, 0.23, 0.35, 0.001 +19450423, 0.48, 0.05, 0.18, 0.001 +19450424, 0.47, -0.18, 0.43, 0.001 +19450425, -0.16, -0.07, -0.11, 0.001 +19450426, -0.30, -0.10, -0.56, 0.001 +19450427, 0.42, 0.20, 0.63, 0.001 +19450428, 0.47, 0.05, 0.16, 0.001 +19450430, 0.24, 0.27, -0.65, 0.001 +19450501, -0.42, -0.41, -0.80, 0.001 +19450502, -0.10, -0.16, -0.19, 0.001 +19450503, 0.68, 0.33, 0.26, 0.001 +19450504, 0.41, 0.11, -0.03, 0.001 +19450505, 0.23, 0.41, -0.33, 0.001 +19450507, 0.00, 0.35, -0.27, 0.001 +19450508, -0.08, 0.25, 0.51, 0.001 +19450509, -0.86, -0.37, -0.60, 0.001 +19450510, -1.12, -0.08, -0.53, 0.001 +19450511, 0.15, 0.41, 0.39, 0.001 +19450512, 0.57, -0.02, 0.48, 0.001 +19450514, -0.35, -0.02, -0.22, 0.001 +19450515, 0.27, 0.14, 0.08, 0.001 +19450516, 0.36, 0.34, 0.31, 0.001 +19450517, 0.49, -0.05, 0.47, 0.001 +19450518, 0.52, 0.08, 0.04, 0.001 +19450519, 0.15, 0.17, 0.08, 0.001 +19450521, -0.39, -0.17, -0.15, 0.001 +19450522, -0.10, 0.24, -0.13, 0.001 +19450523, -0.81, -0.27, -0.01, 0.001 +19450524, 0.07, -0.07, 0.42, 0.001 +19450525, 0.67, 0.40, 0.39, 0.001 +19450526, 0.47, 0.01, 0.08, 0.001 +19450528, 0.78, 0.01, 0.26, 0.001 +19450529, 0.56, -0.17, 0.21, 0.001 +19450531, -0.42, 0.03, -0.35, 0.001 +19450601, 0.15, 0.00, 0.82, 0.001 +19450602, 0.09, 0.10, 0.44, 0.001 +19450604, 0.02, 0.35, 0.04, 0.001 +19450605, 0.09, 0.06, -0.11, 0.001 +19450606, -0.46, 0.14, -0.17, 0.001 +19450607, 0.12, 0.36, 0.38, 0.001 +19450608, -0.04, 0.64, 0.24, 0.001 +19450609, 0.02, 0.16, 0.10, 0.001 +19450611, -0.27, 0.06, -0.33, 0.001 +19450612, 0.13, 0.15, 0.29, 0.001 +19450613, 0.42, 0.28, 0.14, 0.001 +19450614, 0.49, 0.27, 0.76, 0.001 +19450615, 0.24, 0.29, 0.52, 0.001 +19450616, 0.11, -0.25, 1.02, 0.001 +19450618, -0.27, 0.13, 0.28, 0.001 +19450619, 0.11, -0.13, 0.37, 0.001 +19450620, 0.55, 0.08, 0.31, 0.001 +19450621, 0.46, 0.15, 0.51, 0.001 +19450622, -0.06, 0.03, -0.28, 0.001 +19450623, 0.16, 0.17, -0.08, 0.001 +19450625, 0.42, 0.02, 0.37, 0.001 +19450626, 0.19, 0.09, 0.06, 0.001 +19450627, -0.03, 0.12, -0.33, 0.001 +19450628, -2.00, -0.85, -1.61, 0.001 +19450629, -0.85, -0.01, -0.06, 0.001 +19450630, 0.60, 0.67, 0.60, 0.001 +19450702, 0.41, 0.04, -0.03, 0.001 +19450703, 0.05, 0.10, 0.19, 0.001 +19450705, -1.28, -0.32, -0.76, 0.001 +19450706, 0.30, -0.55, 0.11, 0.001 +19450709, 0.91, -0.15, 0.46, 0.001 +19450710, 0.35, 0.39, 0.00, 0.001 +19450711, -0.39, -0.03, -0.46, 0.001 +19450712, 0.19, -0.14, 0.32, 0.001 +19450713, -0.34, -0.24, -0.45, 0.001 +19450716, -0.73, -0.04, -0.55, 0.001 +19450717, -2.05, -0.65, -1.17, 0.001 +19450718, -0.35, -0.18, 0.15, 0.001 +19450719, 0.65, 0.44, 0.18, 0.001 +19450720, 0.01, 0.03, -0.13, 0.001 +19450723, -0.81, -0.21, -0.53, 0.001 +19450724, 0.11, -0.26, 0.04, 0.001 +19450725, 0.92, 0.14, 0.32, 0.001 +19450726, -1.80, -0.04, -1.33, 0.001 +19450727, 0.33, -0.04, 0.66, 0.001 +19450730, 0.91, 0.23, 0.36, 0.001 +19450731, 0.44, -0.01, -0.06, 0.001 +19450801, 0.06, -0.12, -0.06, 0.001 +19450802, -0.34, -0.11, 0.00, 0.001 +19450803, 0.50, -0.03, 0.13, 0.001 +19450806, 0.11, 0.06, -0.59, 0.001 +19450807, -1.32, -0.30, -0.77, 0.001 +19450808, 0.30, 0.12, 0.04, 0.001 +19450809, 1.70, 0.45, 0.30, 0.001 +19450810, -0.01, 0.55, -1.37, 0.001 +19450813, -0.90, 0.13, -1.15, 0.001 +19450814, 0.69, 0.46, -0.18, 0.001 +19450817, -0.35, 0.00, -1.14, 0.001 +19450820, -1.34, -0.39, -0.87, 0.001 +19450821, 0.29, -0.16, 0.03, 0.001 +19450822, 0.68, 0.16, 0.16, 0.001 +19450823, 1.77, 0.08, 0.62, 0.001 +19450824, 1.20, 0.23, -0.01, 0.001 +19450827, 1.49, 0.06, 0.59, 0.001 +19450828, 0.23, -0.01, -0.09, 0.001 +19450829, 0.00, 0.02, -0.09, 0.001 +19450830, 0.34, 0.11, 0.34, 0.001 +19450831, 1.01, 0.25, 0.04, 0.001 +19450904, 0.07, 0.17, -0.20, 0.001 +19450905, 0.08, -0.23, -0.23, 0.001 +19450906, 1.16, -0.06, -0.04, 0.001 +19450907, 0.15, 0.44, -0.73, 0.001 +19450908, 0.08, -0.17, -0.18, 0.001 +19450910, 0.23, 0.12, 0.19, 0.001 +19450911, 0.36, -0.06, 0.26, 0.001 +19450912, 0.56, 0.13, 0.15, 0.001 +19450913, 0.06, 0.12, 0.26, 0.001 +19450914, -0.44, -0.11, -0.07, 0.001 +19450915, -1.39, -0.16, -0.32, 0.001 +19450917, -0.44, 0.13, 0.09, 0.001 +19450918, 1.82, 0.44, 0.37, 0.001 +19450919, 0.99, 0.53, 0.12, 0.001 +19450920, 0.47, 0.00, 0.09, 0.001 +19450921, -0.32, 0.18, 0.20, 0.001 +19450922, -0.12, -0.11, 0.00, 0.001 +19450924, 0.06, 0.06, 0.28, 0.001 +19450925, 0.15, 0.19, 0.43, 0.001 +19450926, -0.10, -0.02, -0.09, 0.001 +19450927, -0.20, -0.19, 0.00, 0.001 +19450928, 0.86, 0.30, 0.12, 0.001 +19450929, 0.62, -0.02, -0.28, 0.001 +19451001, 0.84, -0.03, 0.48, 0.001 +19451002, 0.14, -0.06, -0.30, 0.001 +19451003, 0.00, 0.10, -0.31, 0.001 +19451004, 0.06, 0.26, -0.27, 0.001 +19451005, 0.43, 0.04, -0.04, 0.001 +19451006, 0.51, -0.09, 0.22, 0.001 +19451008, 0.50, 0.36, 0.40, 0.001 +19451009, 0.23, -0.05, 0.16, 0.001 +19451010, 0.43, 0.28, 0.30, 0.001 +19451011, 0.01, 0.25, 0.14, 0.001 +19451015, 0.35, 0.01, 0.06, 0.001 +19451016, 0.00, 0.18, 0.34, 0.001 +19451017, 0.36, 0.07, 0.29, 0.001 +19451018, 0.24, 0.16, 0.20, 0.001 +19451019, -0.84, -0.27, -0.92, 0.001 +19451020, 0.26, -0.12, 0.64, 0.001 +19451022, 0.49, 0.10, 0.00, 0.001 +19451023, -0.75, -0.07, -0.35, 0.001 +19451024, -1.21, -0.17, -0.25, 0.001 +19451025, 0.58, 0.43, 0.22, 0.001 +19451026, 0.54, 0.52, 0.12, 0.001 +19451029, -0.71, -0.04, 0.04, 0.001 +19451030, -0.06, 0.00, 0.42, 0.001 +19451031, 1.44, 0.43, 0.52, 0.001 +19451101, 1.26, 0.15, 0.14, 0.001 +19451102, 0.15, 0.38, -0.50, 0.001 +19451103, 0.15, 0.32, 0.19, 0.001 +19451105, 0.60, 0.36, 0.43, 0.001 +19451107, 1.18, 0.16, 0.11, 0.001 +19451108, -0.11, 0.24, -0.36, 0.001 +19451109, 0.03, 0.12, 0.40, 0.001 +19451110, 0.04, -0.06, 0.29, 0.001 +19451113, -0.33, -0.23, -0.01, 0.001 +19451114, -0.30, -0.01, 0.45, 0.001 +19451115, 0.74, 0.27, 0.64, 0.001 +19451116, 0.73, 0.21, -0.04, 0.001 +19451117, 0.09, 0.16, 0.48, 0.001 +19451119, -0.14, 0.02, 0.59, 0.001 +19451120, 0.49, 0.08, 0.85, 0.001 +19451121, -1.15, 0.16, -0.33, 0.001 +19451123, -0.96, 0.20, -0.28, 0.001 +19451124, -0.68, -0.03, -0.10, 0.001 +19451126, 1.28, 0.05, 0.68, 0.001 +19451127, 1.28, -0.06, 0.43, 0.001 +19451128, -0.18, 0.54, -0.16, 0.001 +19451129, 0.11, 0.52, -0.19, 0.001 +19451130, 1.05, 0.38, 0.45, 0.001 +19451201, 0.59, 0.53, -0.12, 0.001 +19451203, 0.88, 0.35, -0.32, 0.001 +19451204, -0.10, 0.46, 0.04, 0.001 +19451205, 0.11, 0.29, -0.10, 0.001 +19451206, 0.72, 0.45, -0.39, 0.001 +19451207, 0.31, 0.18, 0.04, 0.001 +19451208, 0.45, 0.20, 0.07, 0.001 +19451210, 0.28, 0.47, 0.22, 0.001 +19451211, -0.19, 0.01, -0.34, 0.001 +19451212, -1.46, -0.42, -0.69, 0.001 +19451213, -0.39, -0.33, 0.03, 0.001 +19451214, 0.22, 0.22, 0.06, 0.001 +19451215, 0.35, 0.20, 0.27, 0.001 +19451217, -2.56, -1.15, -1.30, 0.001 +19451218, 0.72, -0.10, 0.54, 0.001 +19451219, 0.15, 0.64, -0.15, 0.001 +19451220, -0.57, -0.11, -0.11, 0.001 +19451221, -0.09, 0.08, -0.07, 0.001 +19451222, 1.04, 0.33, 0.26, 0.001 +19451226, 1.20, 0.23, 0.26, 0.001 +19451227, -0.64, 0.06, 0.21, 0.001 +19451228, 0.07, -0.15, -0.05, 0.001 +19451229, 0.27, -0.13, -0.19, 0.001 +19451231, -0.03, -0.13, -0.45, 0.001 +19460102, -0.51, -0.07, -0.29, 0.001 +19460103, -0.27, -0.45, -0.39, 0.001 +19460104, -0.17, 0.41, 0.33, 0.001 +19460105, 0.35, 0.04, 0.11, 0.001 +19460107, 0.13, 0.22, 0.10, 0.001 +19460108, 2.10, 0.67, 0.85, 0.001 +19460109, 1.46, 0.31, 0.12, 0.001 +19460110, 0.62, 0.06, -0.08, 0.001 +19460111, 0.31, 0.13, 0.21, 0.001 +19460112, -0.50, -0.33, -0.04, 0.001 +19460114, 1.45, 0.61, 0.48, 0.001 +19460115, 0.22, 0.03, -0.36, 0.001 +19460116, 0.15, 0.06, 0.45, 0.001 +19460117, -0.26, 0.30, -0.25, 0.001 +19460118, -0.18, 0.17, -0.16, 0.001 +19460119, -0.83, 0.22, 0.31, 0.001 +19460121, -1.76, -0.27, -0.22, 0.001 +19460122, 0.62, 0.58, 0.72, 0.001 +19460123, 1.12, 0.88, 0.15, 0.001 +19460124, 0.41, 0.60, -0.36, 0.001 +19460125, -0.14, -0.05, 0.13, 0.001 +19460126, 0.11, 0.38, 0.26, 0.001 +19460128, 2.29, -0.01, 0.18, 0.001 +19460129, 0.23, -0.01, 0.18, 0.001 +19460130, -0.48, -0.37, -0.41, 0.001 +19460131, -0.25, -0.37, 0.12, 0.001 +19460201, 0.57, -0.12, 0.72, 0.001 +19460202, 0.54, 0.37, -0.15, 0.001 +19460204, -0.54, 0.12, -0.07, 0.001 +19460205, 0.36, -0.06, 0.64, 0.001 +19460206, -0.63, 0.06, -0.28, 0.001 +19460207, -0.05, -0.19, 0.35, 0.001 +19460208, -0.31, 0.01, -0.35, 0.001 +19460209, -0.83, -0.23, -0.50, 0.001 +19460211, -0.59, 0.21, -0.81, 0.001 +19460213, -1.16, -0.50, 0.09, 0.001 +19460214, 0.76, 0.90, 0.17, 0.001 +19460215, 1.87, 0.44, 0.18, 0.001 +19460216, 0.99, 0.12, -0.23, 0.001 +19460218, -1.45, -0.22, -0.59, 0.001 +19460219, -3.30, -1.08, -0.63, 0.001 +19460220, -1.68, -0.17, 0.09, 0.001 +19460221, 2.03, 0.71, 0.33, 0.001 +19460225, -4.47, -1.06, -0.77, 0.001 +19460226, -0.48, -0.44, 0.40, 0.001 +19460227, 2.06, 0.73, 0.41, 0.001 +19460228, 0.55, -0.22, -0.27, 0.001 +19460301, -0.20, 0.40, -0.15, 0.001 +19460302, -0.60, -0.49, -0.31, 0.001 +19460304, -0.10, -0.25, 0.17, 0.001 +19460305, 1.21, 0.08, -0.31, 0.001 +19460306, -0.33, -0.16, 0.03, 0.001 +19460307, 0.77, 0.11, -0.20, 0.001 +19460308, 0.77, 0.15, -0.07, 0.001 +19460309, 0.27, 0.07, 0.00, 0.001 +19460311, -0.89, -0.05, -0.21, 0.001 +19460312, 0.32, -0.29, 0.18, 0.001 +19460313, -1.64, -0.87, -0.38, 0.001 +19460314, -0.06, 0.22, -0.09, 0.001 +19460315, 1.07, 0.15, 0.44, 0.001 +19460316, 1.08, 0.12, 0.01, 0.001 +19460318, 0.73, 0.45, -0.02, 0.001 +19460319, -0.39, 0.37, -0.35, 0.001 +19460320, 0.79, -0.44, 0.33, 0.001 +19460321, 0.59, 0.52, 0.17, 0.001 +19460322, 0.26, 0.16, -0.19, 0.001 +19460323, 0.38, -0.03, 0.10, 0.001 +19460325, 1.50, 0.19, 0.12, 0.001 +19460326, 0.01, 0.19, -0.26, 0.001 +19460327, -0.64, -0.39, 0.08, 0.001 +19460328, -0.12, -0.02, 0.18, 0.001 +19460329, 0.75, 0.25, 0.35, 0.001 +19460330, 0.28, -0.11, 0.03, 0.001 +19460401, -0.11, -0.12, -0.20, 0.001 +19460402, 0.11, 0.31, -0.03, 0.001 +19460403, 1.46, 0.32, 0.27, 0.001 +19460404, 1.07, 0.70, 0.03, 0.001 +19460405, -0.06, 0.12, -0.10, 0.001 +19460406, 0.22, -0.10, -0.09, 0.001 +19460408, 0.05, -0.06, -0.33, 0.001 +19460409, 1.09, -0.09, -0.15, 0.001 +19460410, -0.19, 0.18, 0.13, 0.001 +19460411, -0.26, -0.34, -0.08, 0.001 +19460412, -0.03, 0.15, -0.10, 0.001 +19460413, -0.49, 0.10, -0.17, 0.001 +19460415, 0.00, 0.11, -0.14, 0.001 +19460416, 1.23, 0.02, 0.19, 0.001 +19460417, 0.04, 0.24, 0.10, 0.001 +19460418, 0.38, 0.28, 0.51, 0.001 +19460420, 0.06, 0.23, 0.14, 0.001 +19460422, -0.08, -0.07, -0.21, 0.001 +19460423, -0.25, -0.32, 0.10, 0.001 +19460424, -0.75, -0.19, -0.28, 0.001 +19460425, -0.55, 0.13, -0.11, 0.001 +19460426, 0.23, 0.21, 0.51, 0.001 +19460427, 0.65, 0.17, 0.40, 0.001 +19460429, 0.10, 0.18, 0.01, 0.001 +19460430, 0.28, 0.13, 0.05, 0.001 +19460501, -0.23, -0.11, 0.17, 0.001 +19460502, -0.38, 0.22, -0.22, 0.001 +19460503, -0.78, -0.10, -0.22, 0.001 +19460504, -0.39, -0.25, -0.07, 0.001 +19460506, -0.69, -0.33, 0.39, 0.001 +19460507, 1.50, 0.56, 0.53, 0.001 +19460508, 0.12, 0.31, -0.27, 0.001 +19460509, 0.13, 0.53, 0.32, 0.001 +19460510, 1.52, 0.74, 0.64, 0.001 +19460511, 0.50, -0.08, -0.32, 0.001 +19460513, -0.12, 0.15, -0.37, 0.001 +19460514, -0.24, -0.10, -0.04, 0.001 +19460515, -0.61, -0.32, 0.23, 0.001 +19460516, 0.54, 0.06, -0.03, 0.001 +19460517, -0.06, 0.29, -0.62, 0.001 +19460518, -0.43, -0.15, -0.23, 0.001 +19460520, 0.71, -0.12, 0.31, 0.001 +19460521, 0.29, 0.18, 0.47, 0.001 +19460522, 0.48, 0.02, 0.48, 0.001 +19460523, -0.07, 0.03, -0.03, 0.001 +19460524, -0.02, 0.00, -0.07, 0.001 +19460527, 0.88, 0.20, 0.05, 0.001 +19460528, 1.14, 0.04, 0.29, 0.001 +19460529, 0.18, -0.12, -0.29, 0.001 +19460531, -0.06, -0.23, -0.01, 0.001 +19460603, -0.57, -0.04, -0.15, 0.001 +19460604, -0.57, -0.29, -0.20, 0.001 +19460605, -0.61, -0.14, -0.16, 0.001 +19460606, -0.02, -0.26, 0.08, 0.001 +19460607, 0.13, 0.08, -0.11, 0.001 +19460610, 0.18, 0.31, 0.15, 0.001 +19460611, -0.91, 0.14, -0.11, 0.001 +19460612, 0.08, -0.41, 0.21, 0.001 +19460613, 0.57, -0.09, 0.13, 0.001 +19460614, -0.14, 0.15, -0.06, 0.001 +19460617, 0.08, 0.00, 0.32, 0.001 +19460618, -1.57, -0.32, -0.46, 0.001 +19460619, -0.62, -0.30, 0.26, 0.001 +19460620, -2.06, -0.16, -0.47, 0.001 +19460621, 0.79, -0.08, -0.21, 0.001 +19460624, 0.34, -0.11, 0.18, 0.001 +19460625, -0.64, -0.12, -0.57, 0.001 +19460626, -0.36, -0.71, -0.03, 0.001 +19460627, 1.77, 0.54, 0.52, 0.001 +19460628, 0.24, 0.21, 0.09, 0.001 +19460701, 0.68, 0.08, -0.05, 0.001 +19460702, -0.23, -0.50, 0.09, 0.001 +19460703, -0.11, -0.04, 0.24, 0.001 +19460705, -0.17, -0.03, -0.27, 0.001 +19460708, -0.25, -0.14, 0.17, 0.001 +19460709, 0.37, -0.14, 0.01, 0.001 +19460710, 0.27, -0.01, 0.10, 0.001 +19460711, -0.48, -0.09, -0.23, 0.001 +19460712, -0.85, -0.43, -0.22, 0.001 +19460715, -1.75, -0.66, 0.07, 0.001 +19460716, -0.20, -0.35, 0.47, 0.001 +19460717, 0.50, 0.31, 0.14, 0.001 +19460718, -0.05, 0.38, -0.28, 0.001 +19460719, -0.40, -0.25, -0.13, 0.001 +19460722, -0.39, -0.36, -0.46, 0.001 +19460723, -2.99, -0.93, -0.28, 0.001 +19460724, 0.02, -0.12, 0.30, 0.001 +19460725, 0.71, 0.46, 0.26, 0.001 +19460726, 0.59, 0.32, 0.34, 0.001 +19460729, 0.40, 0.03, 0.22, 0.001 +19460730, 0.60, 0.05, -0.32, 0.001 +19460731, 1.09, 0.48, -0.11, 0.001 +19460801, 0.50, 0.02, 0.08, 0.001 +19460802, 0.09, -0.04, -0.12, 0.001 +19460805, -0.50, 0.23, 0.22, 0.001 +19460806, -0.35, -0.14, 0.05, 0.001 +19460807, 0.84, -0.03, 0.26, 0.001 +19460808, 0.50, -0.17, 0.08, 0.001 +19460809, -0.25, 0.03, -0.03, 0.001 +19460812, 0.13, -0.11, -0.08, 0.001 +19460813, 0.62, -0.30, 0.09, 0.001 +19460814, -0.05, -0.13, -0.07, 0.001 +19460815, -0.96, -0.01, -0.24, 0.001 +19460816, -0.81, -0.27, 0.44, 0.001 +19460819, -0.27, -0.07, 0.29, 0.001 +19460820, 0.61, 0.11, -0.02, 0.001 +19460821, -0.78, 0.06, -0.19, 0.001 +19460822, -1.60, -0.90, -0.39, 0.001 +19460823, 0.58, 0.36, 0.07, 0.001 +19460826, -0.57, 0.02, -0.32, 0.001 +19460827, -3.30, -1.35, 0.10, 0.001 +19460828, -0.95, -0.03, 0.10, 0.001 +19460829, 0.37, 0.83, 0.05, 0.001 +19460830, -0.48, -0.01, 0.30, 0.001 +19460903, -6.90, -1.74, -0.91, 0.001 +19460904, -0.76, -1.05, -0.27, 0.001 +19460905, 3.49, 0.89, 0.20, 0.001 +19460906, -1.09, 0.18, -0.19, 0.001 +19460909, -5.29, -1.78, -0.67, 0.001 +19460910, -2.52, -0.58, -0.31, 0.001 +19460911, 2.95, -0.05, 0.37, 0.001 +19460912, 0.12, 0.45, 0.49, 0.001 +19460913, 1.85, 0.38, -0.12, 0.001 +19460916, 0.75, 0.55, 0.35, 0.001 +19460917, -0.68, -0.31, -0.06, 0.001 +19460918, -3.19, -1.43, -0.56, 0.001 +19460919, -2.91, -0.68, -0.87, 0.001 +19460920, 2.37, -0.02, 0.31, 0.001 +19460923, -1.60, 0.86, 0.13, 0.001 +19460924, 1.72, -0.98, 0.36, 0.001 +19460925, 2.38, 0.94, -0.12, 0.001 +19460926, 1.09, -0.05, 0.32, 0.001 +19460927, -0.69, 0.13, -0.03, 0.001 +19460930, -1.08, -0.34, -0.40, 0.001 +19461001, -0.32, 0.05, 0.07, 0.001 +19461002, 0.95, -0.14, -0.02, 0.001 +19461003, -0.44, -0.35, -0.15, 0.001 +19461004, -1.12, 0.08, 0.19, 0.001 +19461005, -0.66, 0.31, -0.03, 0.001 +19461007, -0.10, -0.46, 0.48, 0.001 +19461008, -1.09, 0.36, -0.16, 0.001 +19461009, -2.86, -1.02, -0.11, 0.001 +19461010, 1.23, -0.57, 0.71, 0.001 +19461011, 2.07, 0.65, 0.36, 0.001 +19461014, 0.95, 0.24, -0.24, 0.001 +19461015, 3.84, 0.63, 0.47, 0.001 +19461016, -0.22, 1.10, -0.21, 0.001 +19461017, -1.75, -0.69, -0.30, 0.001 +19461018, -0.25, -0.08, 0.30, 0.001 +19461019, -0.16, -0.02, 0.22, 0.001 +19461021, 0.25, -0.08, 0.37, 0.001 +19461022, -0.60, -0.04, 0.15, 0.001 +19461023, -0.91, -0.23, -0.18, 0.001 +19461024, 0.11, 0.22, 0.60, 0.001 +19461025, -0.50, -0.15, 0.34, 0.001 +19461026, -0.08, 0.29, -0.18, 0.001 +19461028, -1.75, 0.12, -0.43, 0.001 +19461029, -0.91, -0.26, 0.11, 0.001 +19461030, -0.06, -0.56, 0.60, 0.001 +19461031, 3.23, 0.79, 0.58, 0.001 +19461101, 1.85, 1.00, 0.10, 0.001 +19461102, 0.62, 0.02, 0.17, 0.001 +19461104, 0.76, 0.01, -0.20, 0.001 +19461106, -3.71, 0.24, -0.73, 0.001 +19461107, 0.44, -0.57, 0.54, 0.001 +19461108, 0.58, -0.08, 0.62, 0.001 +19461109, 0.98, 0.29, 0.56, 0.001 +19461112, -0.45, 0.23, -0.80, 0.001 +19461113, -0.79, -0.61, 0.57, 0.001 +19461114, 0.55, 0.10, 0.04, 0.001 +19461115, -0.93, -0.07, -0.09, 0.001 +19461116, -0.08, -0.07, 0.05, 0.001 +19461118, -0.92, -0.23, -0.23, 0.001 +19461119, -0.42, -0.40, 0.09, 0.001 +19461120, -0.67, -0.21, 0.09, 0.001 +19461121, -1.74, -0.46, -0.32, 0.001 +19461122, -0.51, -0.01, 0.39, 0.001 +19461123, 1.61, 0.37, 0.21, 0.001 +19461125, -0.29, -0.14, 0.27, 0.001 +19461126, 1.28, -0.14, 0.31, 0.001 +19461127, 0.89, 0.18, -0.20, 0.001 +19461129, 1.02, -0.18, 0.27, 0.001 +19461130, 0.07, 0.37, -0.13, 0.001 +19461202, -1.54, -0.20, -0.25, 0.001 +19461203, 0.38, -0.27, 0.31, 0.001 +19461204, 1.76, 0.17, -0.21, 0.001 +19461205, -0.55, -0.28, -0.03, 0.001 +19461206, 0.44, 0.12, -0.11, 0.001 +19461207, 0.81, 0.99, 0.35, 0.001 +19461209, 3.11, -0.29, -0.31, 0.001 +19461210, -0.05, 0.15, -0.28, 0.001 +19461211, 0.15, -0.44, -0.03, 0.001 +19461212, -1.15, -0.02, -0.28, 0.001 +19461213, 0.16, -0.45, 0.31, 0.001 +19461214, 0.58, 0.18, -0.09, 0.001 +19461216, -0.08, 0.30, -0.15, 0.001 +19461217, -0.41, 0.10, -0.06, 0.001 +19461218, 0.23, -0.53, -0.02, 0.001 +19461219, 1.47, 0.68, -0.20, 0.001 +19461220, 0.30, 0.55, -0.24, 0.001 +19461221, 0.21, 0.13, 0.18, 0.001 +19461223, -0.75, 0.04, -0.08, 0.001 +19461224, -0.16, -0.05, 0.19, 0.001 +19461226, -0.79, -0.09, -0.14, 0.001 +19461227, -0.15, -0.55, -0.12, 0.001 +19461228, 0.38, 0.22, 0.05, 0.001 +19461230, -0.14, -0.26, -0.10, 0.001 +19461231, 0.75, -0.12, -0.03, 0.001 +19470102, -0.58, 0.59, 0.07, 0.001 +19470103, 0.14, -0.45, -0.63, 0.001 +19470104, 0.28, 0.58, 0.06, 0.001 +19470106, 0.84, 0.23, -0.07, 0.001 +19470107, -0.72, -0.35, 0.02, 0.001 +19470108, 0.17, -0.24, -0.21, 0.001 +19470109, 0.21, 0.31, -0.16, 0.001 +19470110, -1.21, -0.50, 0.01, 0.001 +19470111, -1.30, -0.11, -0.10, 0.001 +19470113, -1.62, -0.78, -0.03, 0.001 +19470114, 0.32, 0.07, 0.07, 0.001 +19470115, -0.52, 0.13, 0.00, 0.001 +19470116, -0.09, -0.52, 0.15, 0.001 +19470117, 1.70, 0.53, 0.16, 0.001 +19470118, 1.07, 0.99, -0.36, 0.001 +19470120, -1.10, -0.02, 0.24, 0.001 +19470121, -0.33, -0.21, -0.04, 0.001 +19470122, 0.29, 0.16, 0.21, 0.001 +19470123, 0.81, 0.33, -0.07, 0.001 +19470124, 0.28, 0.42, 0.07, 0.001 +19470125, -0.04, 0.14, -0.42, 0.001 +19470127, 0.70, -0.40, -0.06, 0.001 +19470128, 0.66, 0.34, 0.02, 0.001 +19470129, 1.16, 0.29, 0.33, 0.001 +19470130, -0.17, 0.35, -0.05, 0.001 +19470131, 0.37, 0.32, 0.08, 0.001 +19470201, 0.59, 0.38, 0.69, 0.001 +19470203, 0.31, 0.04, 0.24, 0.001 +19470204, 0.09, -0.23, -0.62, 0.001 +19470205, 0.24, -0.20, -0.35, 0.001 +19470206, -0.18, -0.06, -0.14, 0.001 +19470207, 1.42, 0.35, 0.95, 0.001 +19470208, 0.37, 0.26, -0.26, 0.001 +19470210, -0.70, 0.05, -0.65, 0.001 +19470211, 0.45, 0.23, -0.02, 0.001 +19470213, -1.03, 0.06, 0.13, 0.001 +19470214, -0.19, 0.05, 0.14, 0.001 +19470215, -0.01, 0.24, -0.20, 0.001 +19470217, 0.15, -0.10, 0.04, 0.001 +19470218, -0.14, -0.03, 0.20, 0.001 +19470219, -0.78, -0.27, -0.15, 0.001 +19470220, 0.21, -0.10, 0.15, 0.001 +19470221, 0.37, 0.27, 0.01, 0.001 +19470224, -0.68, -0.06, 0.10, 0.001 +19470225, -1.34, -0.83, -0.10, 0.001 +19470226, -1.13, -0.22, -0.10, 0.001 +19470227, 1.23, 0.61, 0.07, 0.001 +19470228, -0.37, 0.29, 0.03, 0.001 +19470301, 0.04, -0.04, -0.02, 0.001 +19470303, -0.36, -0.22, 0.00, 0.001 +19470304, -0.05, 0.03, 0.36, 0.001 +19470305, 1.11, 0.07, 0.11, 0.001 +19470306, 0.41, -0.11, 0.03, 0.001 +19470307, -2.95, -0.26, -0.25, 0.001 +19470308, -0.51, -0.43, 0.00, 0.001 +19470310, -0.44, 0.05, -0.06, 0.001 +19470311, -0.92, -0.50, 0.21, 0.001 +19470312, 0.73, 0.11, 0.33, 0.001 +19470313, -0.04, 0.22, -0.05, 0.001 +19470314, -1.18, -0.55, 0.11, 0.001 +19470315, -0.12, 0.00, -0.14, 0.001 +19470317, 0.34, -0.07, -0.15, 0.001 +19470318, 0.94, -0.24, 0.16, 0.001 +19470319, 0.54, 0.20, -0.10, 0.001 +19470320, -0.22, -0.26, -0.08, 0.001 +19470321, 0.92, -0.43, 0.10, 0.001 +19470322, 0.24, 0.24, 0.02, 0.001 +19470324, -0.65, 0.16, -0.13, 0.001 +19470325, -0.66, -0.13, 0.02, 0.001 +19470326, 1.11, -0.28, 0.15, 0.001 +19470327, 1.32, 0.54, 0.07, 0.001 +19470328, -0.27, 0.32, -0.02, 0.001 +19470329, -0.21, 0.07, -0.06, 0.001 +19470331, -0.71, -0.08, 0.01, 0.001 +19470401, 0.11, -0.32, 0.28, 0.001 +19470402, 0.04, 0.05, -0.05, 0.001 +19470403, -0.33, -0.19, -0.06, 0.001 +19470405, -0.03, 0.00, 0.35, 0.001 +19470407, -0.90, -0.31, -0.16, 0.001 +19470408, -1.23, -0.32, -0.42, 0.001 +19470409, -0.10, -0.08, 0.01, 0.001 +19470410, 0.14, 0.15, 0.14, 0.001 +19470411, -0.67, -0.44, -0.47, 0.001 +19470412, -1.07, -0.37, 0.12, 0.001 +19470414, -2.95, -1.33, -0.15, 0.001 +19470415, -0.03, -0.42, 0.11, 0.001 +19470416, 0.96, 0.40, -0.03, 0.001 +19470417, 0.11, 0.26, -0.05, 0.001 +19470418, -1.20, -0.62, -0.15, 0.001 +19470419, 1.11, -0.50, 0.38, 0.001 +19470421, 0.79, 0.93, 0.46, 0.001 +19470422, 0.58, -0.25, -0.14, 0.001 +19470423, 0.09, 0.26, 0.20, 0.001 +19470424, -0.55, -0.36, 0.16, 0.001 +19470425, -0.83, -0.24, 0.21, 0.001 +19470426, 0.10, -0.13, -0.15, 0.001 +19470428, -0.05, 0.12, 0.08, 0.001 +19470429, -0.15, -0.55, 0.24, 0.001 +19470430, 1.24, 0.11, 0.02, 0.001 +19470501, 0.85, 0.06, 0.13, 0.001 +19470502, 0.48, 0.09, -0.53, 0.001 +19470503, 0.21, -0.20, -0.11, 0.001 +19470505, 0.02, -0.05, 0.05, 0.001 +19470506, -1.00, -0.46, 0.03, 0.001 +19470507, -0.06, -0.67, 0.13, 0.001 +19470508, -0.49, 0.02, -0.05, 0.001 +19470509, -0.19, -0.62, 0.09, 0.001 +19470510, 0.20, 0.08, 0.13, 0.001 +19470512, -1.09, -0.16, -0.08, 0.001 +19470513, -1.71, -0.59, -0.33, 0.001 +19470514, -0.47, -0.38, 0.12, 0.001 +19470515, 0.75, 0.19, -0.25, 0.001 +19470516, -1.98, -0.90, -0.04, 0.001 +19470517, -1.47, -0.39, -0.60, 0.001 +19470519, 0.05, -0.74, 0.25, 0.001 +19470520, 0.52, 0.51, -0.34, 0.001 +19470521, 1.44, -0.31, 0.42, 0.001 +19470522, 0.96, 1.04, 0.44, 0.001 +19470523, 0.39, 0.19, 0.06, 0.001 +19470524, 0.00, -0.14, 0.32, 0.001 +19470526, -0.55, 0.11, -0.33, 0.001 +19470527, -0.11, -0.44, 0.41, 0.001 +19470528, 1.61, 0.23, 0.50, 0.001 +19470529, 0.79, 0.28, -0.01, 0.001 +19470602, -0.98, -0.30, 0.20, 0.001 +19470603, 1.03, -0.22, -0.32, 0.001 +19470604, -0.34, 0.06, 0.05, 0.001 +19470605, -0.02, -0.27, -0.08, 0.001 +19470606, 0.52, -0.08, 0.07, 0.001 +19470609, -0.36, -0.04, -0.21, 0.001 +19470610, 0.68, -0.52, 0.01, 0.001 +19470611, 2.29, 0.68, 0.49, 0.001 +19470612, -0.15, 0.49, -0.45, 0.001 +19470613, 1.02, 0.06, -0.21, 0.001 +19470616, 0.00, -0.02, -0.15, 0.001 +19470617, -0.27, -0.09, -0.18, 0.001 +19470618, -0.06, 0.08, -0.04, 0.001 +19470619, 1.00, 0.07, 0.09, 0.001 +19470620, 0.50, 0.48, 0.39, 0.001 +19470623, 0.54, 0.22, -0.32, 0.001 +19470624, -1.76, 0.11, -0.19, 0.001 +19470625, 0.71, -0.82, 0.13, 0.001 +19470626, 0.44, -0.07, 0.41, 0.001 +19470627, 0.05, 0.06, 0.05, 0.001 +19470630, 0.39, -0.15, -0.30, 0.001 +19470701, 1.47, -0.09, 1.00, 0.001 +19470702, 0.17, 0.83, 0.20, 0.001 +19470703, 1.08, 0.23, 0.63, 0.001 +19470707, 0.26, 0.28, -0.18, 0.001 +19470708, 0.41, 0.63, 0.14, 0.001 +19470709, -0.68, 0.08, -0.27, 0.001 +19470710, 0.78, -0.06, 0.48, 0.001 +19470711, 1.14, 0.45, 0.34, 0.001 +19470714, 0.78, 0.63, 0.21, 0.001 +19470715, -0.16, -0.12, -0.18, 0.001 +19470716, -0.12, 0.00, -0.16, 0.001 +19470717, -0.67, 0.02, 0.07, 0.001 +19470718, 0.21, -0.48, -0.05, 0.001 +19470721, -0.16, 0.00, 0.47, 0.001 +19470722, 0.09, -0.14, 0.18, 0.001 +19470723, 0.69, 0.14, 0.33, 0.001 +19470724, 1.05, 0.14, 0.70, 0.001 +19470725, -0.08, 0.29, -0.16, 0.001 +19470728, -0.76, -0.12, -0.51, 0.001 +19470729, -2.03, -0.78, -0.87, 0.001 +19470730, -0.65, -0.60, -0.25, 0.001 +19470731, 1.32, 0.13, 0.63, 0.001 +19470801, 0.24, -0.16, -0.13, 0.001 +19470804, -1.04, -0.18, -0.47, 0.001 +19470805, 0.26, -0.03, 0.19, 0.001 +19470806, -0.38, -0.12, -0.20, 0.001 +19470807, 0.12, -0.43, 0.25, 0.001 +19470808, -1.07, 0.04, -0.53, 0.001 +19470811, -0.51, 0.03, 0.24, 0.001 +19470812, 0.85, 0.50, 0.63, 0.001 +19470813, -0.07, 0.23, -0.33, 0.001 +19470814, 0.20, -0.01, 0.55, 0.001 +19470815, 0.82, 0.06, 0.58, 0.001 +19470818, -0.26, 0.19, -0.01, 0.001 +19470819, -0.30, -0.17, -0.29, 0.001 +19470820, -0.43, -0.06, -0.27, 0.001 +19470821, 0.29, -0.06, 0.02, 0.001 +19470822, 0.22, -0.02, 0.16, 0.001 +19470825, -1.49, -0.07, -0.54, 0.001 +19470826, 0.03, -0.01, 0.38, 0.001 +19470827, 0.17, 0.31, -0.23, 0.001 +19470828, -0.07, 0.38, 0.10, 0.001 +19470829, 0.70, -0.10, 0.12, 0.001 +19470902, 0.50, 0.03, 0.05, 0.003 +19470903, -0.10, 0.44, 0.11, 0.003 +19470904, -1.30, -0.18, -0.93, 0.003 +19470905, -0.21, -0.10, 0.42, 0.003 +19470908, -1.34, 0.26, -0.70, 0.003 +19470909, 0.16, -0.15, 0.69, 0.003 +19470910, 0.90, -0.02, 0.44, 0.003 +19470911, 0.37, 0.42, -0.06, 0.003 +19470912, -0.28, 0.11, -0.36, 0.003 +19470915, -0.40, 0.00, 0.10, 0.003 +19470916, 0.82, -0.01, 0.78, 0.003 +19470917, 1.43, 0.62, 0.48, 0.003 +19470918, -0.30, 0.24, -0.53, 0.003 +19470919, -0.20, -0.11, -0.24, 0.003 +19470922, -0.13, -0.07, 0.24, 0.003 +19470923, -1.27, 0.24, -0.45, 0.003 +19470924, 0.26, 0.04, 0.61, 0.003 +19470925, -0.56, 0.14, -0.13, 0.003 +19470926, -0.14, -0.01, 0.00, 0.003 +19470929, 0.44, -0.31, 0.46, 0.003 +19470930, 0.86, 0.04, 0.42, 0.003 +19471001, 0.49, 0.49, 0.42, 0.002 +19471002, 0.00, -0.03, -0.07, 0.002 +19471003, 0.67, 0.37, 0.40, 0.002 +19471004, 0.18, 0.20, 0.20, 0.002 +19471006, 0.07, 0.03, -0.28, 0.002 +19471007, -0.02, 0.10, -0.04, 0.002 +19471008, -0.55, 0.33, -0.39, 0.002 +19471009, 0.47, -0.20, 0.37, 0.002 +19471010, 0.32, 0.61, 0.05, 0.002 +19471011, 0.14, 0.54, 0.37, 0.002 +19471014, 1.38, 0.15, 0.63, 0.002 +19471015, 0.36, 0.31, -0.35, 0.002 +19471016, 0.08, -0.02, -0.20, 0.002 +19471017, 0.11, -0.38, -0.07, 0.002 +19471018, 0.44, -0.38, 0.34, 0.002 +19471020, 0.70, 0.16, 0.51, 0.002 +19471021, -0.14, -0.20, -0.12, 0.002 +19471022, -0.26, 0.18, -0.08, 0.002 +19471023, 0.12, -0.08, -0.01, 0.002 +19471024, -1.30, -0.41, -0.80, 0.002 +19471025, 0.14, 0.00, 0.18, 0.002 +19471027, 0.02, -0.30, 0.10, 0.002 +19471028, 0.07, -0.08, -0.08, 0.002 +19471029, -0.41, -0.28, -0.48, 0.002 +19471030, -1.24, -0.79, -0.50, 0.002 +19471031, 0.64, 0.23, 0.05, 0.002 +19471101, 0.22, 0.01, 0.03, 0.003 +19471103, -0.14, -0.20, 0.03, 0.003 +19471105, -0.57, -0.23, -0.39, 0.003 +19471106, 0.05, -0.35, -0.08, 0.003 +19471107, -0.20, 0.18, 0.04, 0.003 +19471108, 0.03, -0.01, -0.01, 0.003 +19471110, 0.35, -0.27, 0.21, 0.003 +19471112, -0.21, -0.12, 0.07, 0.003 +19471113, -0.64, -0.07, -0.36, 0.003 +19471114, 0.04, -0.11, 0.36, 0.003 +19471115, 0.14, -0.07, 0.14, 0.003 +19471117, -0.07, -0.34, 0.32, 0.003 +19471118, 0.76, 0.45, 0.68, 0.003 +19471119, 0.31, 0.39, 0.04, 0.003 +19471120, 0.34, -0.49, 0.26, 0.003 +19471121, -0.34, 0.31, 0.03, 0.003 +19471122, -0.10, 0.08, -0.30, 0.003 +19471124, -0.51, -0.08, -0.17, 0.003 +19471125, -0.30, -0.34, 0.21, 0.003 +19471126, -0.15, -0.05, 0.20, 0.003 +19471128, -0.87, -0.28, -0.06, 0.003 +19471129, -0.15, -0.19, -0.11, 0.003 +19471201, 0.55, -0.23, 0.23, 0.003 +19471202, 0.22, -0.21, 0.36, 0.003 +19471203, -0.74, -0.14, -0.22, 0.003 +19471204, -0.58, -0.16, 0.00, 0.003 +19471205, -1.40, -0.06, -0.30, 0.003 +19471206, 0.02, 0.15, 0.28, 0.003 +19471208, 0.79, -0.09, 0.59, 0.003 +19471209, 0.45, 0.13, 0.49, 0.003 +19471210, 0.23, 0.22, 0.04, 0.003 +19471211, 0.14, -0.48, -0.07, 0.003 +19471212, 0.65, 0.14, 0.44, 0.003 +19471213, 0.64, 0.16, 0.63, 0.003 +19471215, 0.57, 0.21, 0.55, 0.003 +19471216, -0.11, -0.46, 0.03, 0.003 +19471217, 0.33, 0.05, 0.61, 0.003 +19471218, -0.08, -0.14, 0.04, 0.003 +19471219, 0.39, 0.01, 0.03, 0.003 +19471220, 0.83, -0.02, 0.66, 0.003 +19471222, -0.22, 0.00, -0.07, 0.003 +19471223, 0.33, -0.48, 0.47, 0.003 +19471224, -0.07, 0.08, -0.20, 0.003 +19471226, -0.75, -0.55, -0.35, 0.003 +19471227, -0.16, -0.05, -0.24, 0.003 +19471229, -0.41, -0.40, -0.29, 0.003 +19471230, 0.88, -0.12, 0.21, 0.003 +19471231, 0.51, 0.05, -0.27, 0.003 +19480102, 0.41, 0.63, 0.83, 0.003 +19480105, -0.90, 0.74, -0.79, 0.003 +19480106, -0.60, 0.04, -0.28, 0.003 +19480107, 0.60, -0.08, 0.67, 0.003 +19480108, 0.58, 0.26, 0.50, 0.003 +19480109, -0.36, 0.30, 0.08, 0.003 +19480110, 0.06, -0.18, 0.07, 0.003 +19480112, -0.61, 0.07, -0.08, 0.003 +19480113, -1.36, 0.11, -0.89, 0.003 +19480114, -0.12, 0.28, 0.22, 0.003 +19480115, -0.30, 0.29, 0.07, 0.003 +19480116, 0.01, 0.14, 0.51, 0.003 +19480117, -0.05, 0.00, -0.28, 0.003 +19480119, -1.30, -0.34, -0.60, 0.003 +19480120, 0.05, 0.11, 0.46, 0.003 +19480121, -0.98, 0.12, -0.62, 0.003 +19480122, -0.77, -0.01, 0.45, 0.003 +19480123, -0.26, 0.24, 0.11, 0.003 +19480124, 0.03, 0.07, 0.25, 0.003 +19480126, -0.16, -0.07, 0.13, 0.003 +19480127, 0.16, 0.16, 0.40, 0.003 +19480128, 0.80, -0.02, 0.35, 0.003 +19480129, 0.98, -0.19, 0.11, 0.003 +19480130, 0.03, -0.11, -0.23, 0.003 +19480131, 0.10, 0.03, 0.00, 0.003 +19480202, 0.00, 0.05, -0.12, 0.003 +19480203, -0.58, -0.13, -0.26, 0.003 +19480204, -1.82, -0.55, -0.57, 0.003 +19480205, -1.09, -0.09, -0.06, 0.003 +19480206, 0.17, 0.04, 0.24, 0.003 +19480207, 0.62, 0.02, 0.39, 0.003 +19480209, 0.00, -0.05, -0.31, 0.003 +19480210, -2.76, -0.62, -1.18, 0.003 +19480211, -0.27, -0.66, -0.01, 0.003 +19480213, -0.03, 0.17, 0.34, 0.003 +19480214, 0.18, 0.32, 0.22, 0.003 +19480216, 1.29, -0.23, 0.22, 0.003 +19480217, 0.22, 0.11, -0.13, 0.003 +19480218, -0.14, -0.24, 0.09, 0.003 +19480219, -0.22, 0.16, -0.04, 0.003 +19480220, -0.42, -0.28, -0.07, 0.003 +19480221, 0.16, 0.34, 0.24, 0.003 +19480224, 0.14, -0.30, 0.19, 0.003 +19480225, 0.59, 0.11, 0.46, 0.003 +19480226, -0.51, 0.00, -0.12, 0.003 +19480227, -0.44, -0.26, 0.12, 0.003 +19480228, 0.52, 0.34, 0.52, 0.003 +19480301, 0.50, 0.12, 0.42, 0.003 +19480302, 0.58, -0.39, 0.64, 0.003 +19480303, 0.27, 0.02, 0.27, 0.003 +19480304, -0.29, -0.03, -0.53, 0.003 +19480305, 0.12, 0.02, 0.00, 0.003 +19480306, 0.43, 0.18, 0.09, 0.003 +19480308, -0.67, -0.01, 0.07, 0.003 +19480309, -0.61, -0.41, -0.16, 0.003 +19480310, 0.43, 0.27, 0.69, 0.003 +19480311, -0.02, 0.19, -0.02, 0.003 +19480312, 0.01, -0.20, 0.26, 0.003 +19480313, 0.45, 0.02, 0.21, 0.003 +19480315, -0.03, -0.04, -0.07, 0.003 +19480316, -1.66, -0.39, -0.95, 0.003 +19480317, 0.69, -0.16, 0.97, 0.003 +19480318, 0.77, 0.62, 0.59, 0.003 +19480319, 1.61, -0.17, 0.71, 0.003 +19480320, 2.22, 0.36, 0.64, 0.003 +19480322, 0.51, 0.73, -1.23, 0.003 +19480323, 0.06, -0.02, -0.03, 0.003 +19480324, 0.02, -0.04, 0.42, 0.003 +19480325, 0.37, -0.29, 0.41, 0.003 +19480327, -0.19, 0.16, 0.01, 0.003 +19480329, -0.11, -0.31, 0.00, 0.003 +19480330, 0.95, -0.23, 0.36, 0.003 +19480331, 1.46, 0.16, 0.44, 0.003 +19480401, 0.22, -0.31, 0.01, 0.003 +19480402, 0.12, -0.15, -0.53, 0.003 +19480403, 0.12, -0.02, -0.18, 0.003 +19480405, 0.25, 0.06, -0.08, 0.003 +19480406, 0.49, -0.42, 0.24, 0.003 +19480407, -0.21, -0.12, 0.16, 0.003 +19480408, 0.29, -0.23, 0.54, 0.003 +19480409, 0.10, 0.34, 0.49, 0.003 +19480410, 0.09, -0.11, 0.09, 0.003 +19480412, -0.19, 0.17, -0.29, 0.003 +19480413, 0.01, -0.12, 0.08, 0.003 +19480414, 0.01, -0.17, 0.47, 0.003 +19480415, 0.82, 0.13, 0.89, 0.003 +19480416, 0.40, 0.31, -0.10, 0.003 +19480417, -0.07, 0.04, -0.32, 0.003 +19480419, 0.53, -0.09, 1.01, 0.003 +19480420, -0.13, -0.30, -0.28, 0.003 +19480421, 0.45, -0.60, 1.01, 0.003 +19480422, 0.83, -0.24, 0.44, 0.003 +19480423, 0.47, 0.45, 0.45, 0.003 +19480424, -0.11, 0.37, -0.21, 0.003 +19480426, -1.13, 0.05, -1.02, 0.003 +19480427, 0.16, 0.00, 0.57, 0.003 +19480428, 0.25, -0.07, 0.23, 0.003 +19480429, 0.02, -0.19, 0.38, 0.003 +19480430, -0.18, -0.35, -0.05, 0.003 +19480501, -0.24, 0.09, -0.33, 0.003 +19480503, 0.72, -0.35, 0.78, 0.003 +19480504, 0.09, 0.09, 0.05, 0.003 +19480505, -0.57, -0.05, -0.94, 0.003 +19480506, 0.64, 0.01, 0.70, 0.003 +19480507, 0.50, 0.17, -0.37, 0.003 +19480508, 0.26, 0.01, 0.07, 0.003 +19480510, 0.25, -0.58, 0.77, 0.003 +19480511, 0.45, 0.11, -0.34, 0.003 +19480512, 0.19, 0.01, 0.07, 0.003 +19480513, 0.57, 0.31, 0.00, 0.003 +19480514, 2.02, 0.79, 0.22, 0.003 +19480515, 0.95, 0.72, -0.89, 0.003 +19480517, 0.37, 0.44, -0.41, 0.003 +19480518, -0.97, -0.27, -0.25, 0.003 +19480519, 0.18, -0.04, 0.24, 0.003 +19480520, 0.79, 0.46, 0.59, 0.003 +19480521, 0.32, 0.12, 0.08, 0.003 +19480522, 0.18, 0.02, 0.11, 0.003 +19480524, -0.13, -0.14, -0.46, 0.003 +19480525, -0.35, -0.56, -0.55, 0.003 +19480526, 0.85, -0.07, 0.05, 0.003 +19480527, -0.11, -0.22, -0.52, 0.003 +19480528, 0.16, -0.18, 0.18, 0.003 +19480601, 0.17, -0.53, 0.11, 0.004 +19480602, 0.22, -0.38, 0.27, 0.004 +19480603, -0.32, -0.19, -0.40, 0.004 +19480604, -0.75, 0.06, -0.44, 0.004 +19480607, -0.27, -0.39, 0.11, 0.004 +19480608, 1.52, 0.14, 1.43, 0.004 +19480609, 0.52, 0.24, 0.09, 0.004 +19480610, 0.11, -0.21, 0.49, 0.004 +19480611, 0.17, -0.19, 0.11, 0.004 +19480614, 0.02, 0.01, 0.26, 0.004 +19480615, 0.30, -0.52, 0.08, 0.004 +19480616, -0.50, -0.11, -0.07, 0.004 +19480617, -0.11, 0.01, 0.58, 0.004 +19480618, -0.20, -0.18, 0.11, 0.004 +19480621, -0.89, -0.47, -0.35, 0.004 +19480622, -0.07, -0.05, 0.80, 0.004 +19480623, 0.79, 0.64, 0.32, 0.004 +19480624, -0.13, 0.60, -0.13, 0.004 +19480625, -0.36, 0.05, -0.19, 0.004 +19480628, -1.15, -0.32, -0.98, 0.004 +19480629, 0.36, -0.04, 0.26, 0.004 +19480630, 0.50, -0.02, 0.38, 0.004 +19480701, -0.21, 0.03, -0.17, 0.004 +19480702, 0.68, -0.40, 0.61, 0.004 +19480706, 0.12, 0.12, 0.21, 0.004 +19480707, -0.28, 0.01, 0.04, 0.004 +19480708, 0.05, -0.12, 0.22, 0.004 +19480709, 0.57, 0.08, 0.22, 0.004 +19480712, -0.03, 0.26, 0.41, 0.004 +19480713, -0.46, 0.04, 0.05, 0.004 +19480714, 0.13, -0.22, 0.27, 0.004 +19480715, -1.62, 0.23, -1.17, 0.004 +19480716, -1.40, 0.08, -0.38, 0.004 +19480719, -3.17, -0.07, -0.77, 0.004 +19480720, 1.43, -0.20, 0.54, 0.004 +19480721, 0.52, 0.10, -0.18, 0.004 +19480722, 0.63, -0.22, 0.17, 0.004 +19480723, 0.34, -0.02, -0.05, 0.004 +19480726, -0.71, 0.20, -0.46, 0.004 +19480727, 0.86, -0.86, 0.60, 0.004 +19480728, -0.41, 0.42, 0.19, 0.004 +19480729, -0.73, 0.21, -0.12, 0.004 +19480730, -1.44, -0.03, -0.07, 0.004 +19480802, -0.02, -0.27, -0.05, 0.004 +19480803, 0.10, 0.02, 0.19, 0.004 +19480804, 1.29, -0.60, 0.60, 0.004 +19480805, -0.16, 0.17, -0.33, 0.004 +19480806, 0.09, -0.28, 0.37, 0.004 +19480809, -0.81, 0.23, -0.43, 0.004 +19480810, -0.94, 0.17, -0.49, 0.004 +19480811, -0.74, -0.77, -0.35, 0.004 +19480812, 0.36, 0.23, -0.10, 0.004 +19480813, -0.01, 0.08, -0.23, 0.004 +19480816, 0.11, -0.19, -0.10, 0.004 +19480817, 1.02, -0.13, 0.46, 0.004 +19480818, 0.01, 0.30, -0.31, 0.004 +19480819, 0.18, -0.47, 0.30, 0.004 +19480820, 0.67, -0.25, 0.22, 0.004 +19480823, -1.02, 0.32, -0.42, 0.004 +19480824, 0.32, -0.12, 0.45, 0.004 +19480825, -0.17, 0.13, -0.30, 0.004 +19480826, 0.11, -0.18, 0.12, 0.004 +19480827, 0.50, -0.06, 0.30, 0.004 +19480830, -0.45, 0.39, 0.00, 0.004 +19480831, -0.15, 0.15, 0.41, 0.004 +19480901, 1.24, -0.15, 0.57, 0.002 +19480902, 0.68, -0.02, 0.23, 0.002 +19480903, -0.06, -0.13, -0.21, 0.002 +19480907, 0.41, -0.18, 0.39, 0.002 +19480908, -1.45, 0.20, -1.10, 0.002 +19480909, -1.63, 0.04, -0.68, 0.002 +19480910, -0.06, -0.33, -0.01, 0.002 +19480913, -0.74, 0.29, -0.08, 0.002 +19480914, 0.79, -0.38, 0.37, 0.002 +19480915, -0.07, 0.37, -0.17, 0.002 +19480916, 0.04, -0.11, 0.20, 0.002 +19480917, -0.49, -0.02, -0.35, 0.002 +19480920, -1.81, -0.09, -1.11, 0.002 +19480921, 0.61, -0.63, 0.36, 0.002 +19480922, 0.50, 0.12, 0.51, 0.002 +19480923, -0.33, 0.32, -0.34, 0.002 +19480924, 0.17, -0.25, 0.04, 0.002 +19480927, -2.30, 0.22, -1.21, 0.002 +19480928, 0.92, -0.67, 0.42, 0.002 +19480929, 0.96, -0.08, 0.36, 0.002 +19480930, -0.33, 0.20, 0.07, 0.002 +19481001, 1.00, -0.58, 0.21, 0.002 +19481002, 0.52, 0.11, 0.44, 0.002 +19481004, 0.54, -0.03, 0.00, 0.002 +19481005, -0.36, -0.03, -0.38, 0.002 +19481006, 0.33, 0.06, 0.21, 0.002 +19481007, 0.56, -0.08, 0.17, 0.002 +19481008, -0.17, 0.01, -0.17, 0.002 +19481009, 0.06, 0.07, 0.11, 0.002 +19481011, -0.04, -0.18, -0.56, 0.002 +19481013, 0.95, -0.27, 0.63, 0.002 +19481014, 0.32, 0.10, 0.00, 0.002 +19481015, -0.06, 0.02, 0.04, 0.002 +19481016, 0.22, -0.08, 0.24, 0.002 +19481018, 0.27, -0.03, 0.16, 0.002 +19481019, 0.40, -0.10, 0.15, 0.002 +19481020, 0.47, 0.26, 0.20, 0.002 +19481021, 0.13, 0.11, 0.41, 0.002 +19481022, 1.37, -0.12, 0.45, 0.002 +19481023, 0.31, 0.20, 0.13, 0.002 +19481025, -0.54, -0.02, -0.61, 0.002 +19481026, -0.06, -0.15, -0.23, 0.002 +19481027, -0.15, -0.21, -0.57, 0.002 +19481028, -0.67, -0.02, -0.41, 0.002 +19481029, 0.21, -0.35, -0.17, 0.002 +19481030, 0.23, -0.11, 0.12, 0.002 +19481101, 0.78, 0.18, 0.38, 0.002 +19481103, -4.43, -0.77, -1.63, 0.002 +19481104, 1.51, 0.68, 0.14, 0.002 +19481105, -3.94, 0.10, -1.79, 0.002 +19481106, 0.36, 0.03, 0.47, 0.002 +19481108, 0.20, -0.11, 0.29, 0.002 +19481109, -3.01, 0.00, -1.66, 0.002 +19481110, -0.19, -0.36, 0.13, 0.002 +19481112, 0.39, 0.30, 0.08, 0.002 +19481113, 0.24, -0.02, -0.14, 0.002 +19481115, 1.14, -0.20, 0.53, 0.002 +19481116, 0.31, 0.05, 0.02, 0.002 +19481117, -0.31, -0.06, -0.11, 0.002 +19481118, 0.27, 0.11, -0.25, 0.002 +19481119, 0.41, -0.04, 0.34, 0.002 +19481120, 0.17, 0.05, 0.16, 0.002 +19481122, -0.63, 0.00, -0.65, 0.002 +19481123, -0.23, -0.40, -0.05, 0.002 +19481124, -1.48, -0.11, -0.42, 0.002 +19481126, -0.03, -0.07, -0.12, 0.002 +19481127, -0.05, 0.20, -0.08, 0.002 +19481129, -0.70, -0.02, -0.26, 0.002 +19481130, -0.31, -0.12, 0.21, 0.002 +19481201, 1.57, -0.45, 0.73, 0.002 +19481202, 0.36, 0.33, 0.19, 0.002 +19481203, 0.55, -0.23, 0.10, 0.002 +19481204, 0.80, -0.20, 0.41, 0.002 +19481206, 0.13, -0.10, 0.08, 0.002 +19481207, 0.05, -0.03, -0.47, 0.002 +19481208, -0.16, 0.02, -0.27, 0.002 +19481209, -0.27, -0.13, -0.35, 0.002 +19481210, 0.17, -0.25, -0.23, 0.002 +19481211, 0.74, -0.08, 0.60, 0.002 +19481213, -0.05, 0.00, 0.06, 0.002 +19481214, -0.50, -0.24, -0.61, 0.002 +19481215, -0.35, 0.02, -0.35, 0.002 +19481216, -0.24, -0.16, -0.42, 0.002 +19481217, 0.20, -0.08, -0.09, 0.002 +19481218, -0.05, 0.29, -0.16, 0.002 +19481220, 0.10, -0.39, -0.32, 0.002 +19481221, -0.22, -0.02, 0.04, 0.002 +19481222, 0.02, -0.11, 0.12, 0.002 +19481223, 0.09, 0.05, -0.01, 0.002 +19481224, 0.66, -0.09, 0.54, 0.002 +19481227, -0.38, -0.08, -0.76, 0.002 +19481228, -0.71, -0.76, 0.18, 0.002 +19481229, 1.12, -0.20, -0.14, 0.002 +19481230, 0.07, 0.13, -0.49, 0.002 +19481231, -0.47, 0.00, -0.26, 0.002 +19490103, -1.38, 0.77, -0.14, 0.004 +19490104, 0.42, 0.29, 0.81, 0.004 +19490105, 1.01, 0.18, 0.25, 0.004 +19490106, 1.99, 0.14, 0.36, 0.004 +19490107, 0.80, 0.75, 0.15, 0.004 +19490108, 0.05, 0.00, -0.23, 0.004 +19490110, -0.69, 0.12, -0.61, 0.004 +19490111, 0.04, -0.05, 0.02, 0.004 +19490112, -0.07, 0.17, -0.06, 0.004 +19490113, -0.53, 0.01, -0.12, 0.004 +19490114, -0.83, -0.26, -0.22, 0.004 +19490115, 0.20, 0.01, 0.30, 0.004 +19490117, 0.28, -0.20, -0.06, 0.004 +19490118, 0.27, 0.24, -0.02, 0.004 +19490119, 0.29, -0.12, 0.34, 0.004 +19490120, 0.45, -0.03, 0.10, 0.004 +19490121, -0.14, 0.22, -0.04, 0.004 +19490122, 0.15, 0.08, -0.07, 0.004 +19490124, -0.32, 0.04, 0.32, 0.004 +19490125, -0.65, 0.06, -0.17, 0.004 +19490126, -0.30, -0.16, 0.27, 0.004 +19490127, -0.39, 0.00, 0.14, 0.004 +19490128, -0.40, -0.25, -0.39, 0.004 +19490129, 0.17, -0.08, 0.18, 0.004 +19490131, -0.14, -0.12, 0.08, 0.004 +19490201, 0.50, -0.33, -0.10, 0.004 +19490202, 0.18, 0.13, 0.07, 0.004 +19490203, -0.24, 0.02, -0.22, 0.004 +19490204, -1.32, 0.14, -0.58, 0.004 +19490205, -1.48, 0.10, -0.81, 0.004 +19490207, -0.71, -0.08, -0.26, 0.004 +19490208, -0.14, -0.27, 0.43, 0.004 +19490209, 0.59, -0.19, 0.20, 0.004 +19490210, -1.18, 0.18, -0.24, 0.004 +19490211, 0.00, -0.40, 0.16, 0.004 +19490214, 0.16, -0.04, 0.15, 0.004 +19490215, 0.40, -0.12, -0.01, 0.004 +19490216, 0.57, -0.33, 0.06, 0.004 +19490217, 0.85, -0.13, 0.28, 0.004 +19490218, -0.21, 0.23, -0.11, 0.004 +19490219, -0.13, -0.04, -0.09, 0.004 +19490221, -0.25, -0.16, -0.27, 0.004 +19490223, -0.71, -0.03, -0.52, 0.004 +19490224, -0.91, 0.03, -0.31, 0.004 +19490225, -0.18, -0.08, 0.38, 0.004 +19490226, 0.42, 0.00, 0.21, 0.004 +19490228, 0.87, -0.58, 0.68, 0.004 +19490301, 0.52, 0.15, 0.33, 0.004 +19490302, -0.01, 0.05, -0.18, 0.004 +19490303, -0.06, 0.28, -0.34, 0.004 +19490304, 0.22, -0.35, -0.05, 0.004 +19490305, 0.89, -0.07, 0.34, 0.004 +19490307, 0.49, 0.12, 0.24, 0.004 +19490308, 0.35, 0.21, 0.08, 0.004 +19490309, -0.16, 0.00, -0.22, 0.004 +19490310, 0.11, -0.11, -0.04, 0.004 +19490311, 0.92, -0.20, 0.27, 0.004 +19490312, 0.34, 0.26, 0.32, 0.004 +19490314, 0.00, -0.16, -0.05, 0.004 +19490315, -0.63, 0.22, -0.39, 0.004 +19490316, -0.38, -0.05, -0.08, 0.004 +19490317, 0.38, -0.20, 0.29, 0.004 +19490318, -0.22, 0.26, -0.09, 0.004 +19490319, -0.03, 0.14, 0.00, 0.004 +19490321, -0.21, 0.11, 0.32, 0.004 +19490322, -0.75, -0.14, -1.03, 0.004 +19490323, 0.95, -0.63, 0.67, 0.004 +19490324, 0.36, 0.46, 0.33, 0.004 +19490325, -0.50, -0.01, -0.34, 0.004 +19490326, 0.07, 0.14, 0.05, 0.004 +19490328, 0.10, 0.03, -0.16, 0.004 +19490329, 1.76, 0.51, 1.12, 0.004 +19490330, 0.27, 1.07, 0.26, 0.004 +19490331, -0.79, 0.27, -0.33, 0.004 +19490401, -0.64, 0.01, -0.22, 0.004 +19490402, 0.30, 0.12, 0.06, 0.004 +19490404, 0.12, -0.28, 0.01, 0.004 +19490405, 0.05, 0.05, -0.02, 0.004 +19490406, -0.20, 0.01, 0.12, 0.004 +19490407, -0.26, -0.25, -0.13, 0.004 +19490408, 0.15, -0.32, 0.30, 0.004 +19490409, 0.28, 0.20, 0.30, 0.004 +19490411, -0.21, 0.19, -0.35, 0.004 +19490412, 0.10, 0.06, 0.04, 0.004 +19490413, -0.05, -0.11, -0.27, 0.004 +19490414, -0.18, 0.00, -0.10, 0.004 +19490416, 0.30, -0.07, 0.02, 0.004 +19490418, 0.11, -0.41, -0.43, 0.004 +19490419, -0.32, 0.11, -0.21, 0.004 +19490420, -0.19, -0.07, 0.00, 0.004 +19490421, -1.47, 0.00, -0.66, 0.004 +19490422, 0.05, -0.11, 0.22, 0.004 +19490423, 0.40, 0.08, 0.22, 0.004 +19490425, -0.27, 0.20, 0.18, 0.004 +19490426, 0.35, -0.02, 0.28, 0.004 +19490427, 0.06, -0.05, -0.38, 0.004 +19490428, -0.52, 0.16, -0.36, 0.004 +19490429, -0.02, -0.34, -0.07, 0.004 +19490430, 0.20, -0.04, 0.27, 0.004 +19490502, 0.15, -0.19, -0.08, 0.004 +19490503, 0.37, -0.58, -0.16, 0.004 +19490504, 0.95, 0.02, 0.20, 0.004 +19490505, 0.04, 0.25, -0.19, 0.004 +19490506, -0.37, -0.10, -0.19, 0.004 +19490507, -0.03, 0.15, -0.05, 0.004 +19490509, -0.24, -0.17, -0.38, 0.004 +19490510, -0.17, -0.12, -0.21, 0.004 +19490511, 0.15, 0.10, 0.10, 0.004 +19490512, 0.26, 0.01, 0.18, 0.004 +19490513, 0.11, -0.01, 0.37, 0.004 +19490514, 0.26, 0.24, 0.60, 0.004 +19490516, 0.24, 0.07, -0.07, 0.004 +19490517, -0.26, 0.24, -0.44, 0.004 +19490518, -0.20, -0.04, 0.00, 0.004 +19490519, -0.59, -0.20, -0.50, 0.004 +19490520, -0.39, -0.03, -0.26, 0.004 +19490521, 0.02, 0.28, 0.11, 0.004 +19490523, -0.85, 0.02, -0.17, 0.004 +19490524, -0.58, -0.17, -0.45, 0.004 +19490525, 0.26, -0.42, 0.43, 0.004 +19490526, 0.09, 0.28, -0.04, 0.004 +19490527, -0.18, -0.13, -0.07, 0.004 +19490531, -2.01, -0.28, -1.22, 0.004 +19490601, -0.24, -0.11, 0.52, 0.004 +19490602, 0.11, 0.39, -0.29, 0.004 +19490603, -0.55, -0.17, 0.11, 0.004 +19490606, -1.53, -0.08, -0.85, 0.004 +19490607, 0.17, -0.01, 0.40, 0.004 +19490608, 0.67, 0.14, 0.49, 0.004 +19490609, -0.03, -0.07, -0.09, 0.004 +19490610, -0.72, -0.01, -0.70, 0.004 +19490613, -1.84, -0.57, -1.29, 0.004 +19490614, 0.34, -0.31, 0.18, 0.004 +19490615, 1.68, -0.09, 0.80, 0.004 +19490616, -0.15, 0.43, -0.11, 0.004 +19490617, 0.11, -0.17, -0.20, 0.004 +19490620, 1.20, -0.57, 0.55, 0.004 +19490621, 0.17, 0.28, -0.44, 0.004 +19490622, -0.11, 0.03, -0.06, 0.004 +19490623, 0.61, 0.05, 0.20, 0.004 +19490624, 0.12, 0.03, 0.07, 0.004 +19490627, -0.04, 0.04, -0.47, 0.004 +19490628, -0.85, -0.15, -0.11, 0.004 +19490629, 0.58, -0.05, -0.18, 0.004 +19490630, 0.49, 0.11, -0.25, 0.004 +19490701, 0.71, 0.07, 0.67, 0.004 +19490705, 0.45, -0.04, -0.12, 0.004 +19490706, 0.87, -0.06, 0.46, 0.004 +19490707, -0.03, 0.16, -0.35, 0.004 +19490708, 0.02, 0.28, -0.17, 0.004 +19490711, 0.11, 0.11, -0.24, 0.004 +19490712, 0.50, -0.12, -0.02, 0.004 +19490713, 0.97, -0.07, 0.78, 0.004 +19490714, 0.27, 0.11, -0.06, 0.004 +19490715, -0.25, 0.00, 0.04, 0.004 +19490718, 0.30, -0.10, -0.01, 0.004 +19490719, 0.72, -0.26, 0.49, 0.004 +19490720, 0.41, 0.20, 0.06, 0.004 +19490721, -0.38, 0.18, -0.30, 0.004 +19490722, 0.02, -0.02, -0.15, 0.004 +19490725, 0.27, 0.21, 0.14, 0.004 +19490726, 0.58, -0.09, 0.28, 0.004 +19490727, 0.14, 0.00, -0.25, 0.004 +19490728, -0.18, -0.10, -0.66, 0.004 +19490729, -0.09, 0.07, -0.22, 0.004 +19490801, 0.52, -0.40, -0.01, 0.004 +19490802, 0.31, 0.02, 0.25, 0.004 +19490803, -0.01, -0.03, -0.06, 0.004 +19490804, -0.03, -0.05, -0.15, 0.004 +19490805, 1.15, -0.47, 0.70, 0.004 +19490808, 1.07, 0.59, 0.26, 0.004 +19490809, -0.37, 0.45, -0.04, 0.004 +19490810, 0.61, 0.31, 0.35, 0.004 +19490811, -0.25, 0.33, -0.38, 0.004 +19490812, -0.27, -0.08, -0.24, 0.004 +19490815, -0.27, -0.03, -0.25, 0.004 +19490816, 0.37, -0.33, 0.03, 0.004 +19490817, 1.04, -0.14, 0.51, 0.004 +19490818, 0.39, 0.12, 0.14, 0.004 +19490819, -0.45, 0.29, -0.68, 0.004 +19490822, -0.35, -0.11, -0.04, 0.004 +19490823, -1.22, 0.16, -0.40, 0.004 +19490824, 0.09, 0.01, -0.08, 0.004 +19490825, 0.26, 0.05, 0.01, 0.004 +19490826, 0.18, -0.22, -0.15, 0.004 +19490829, -0.69, 0.09, -0.52, 0.004 +19490830, 0.38, -0.31, 0.06, 0.004 +19490831, 0.14, -0.13, 0.16, 0.004 +19490901, 0.69, -0.09, 0.16, 0.004 +19490902, 0.05, -0.14, 0.10, 0.004 +19490906, -0.14, -0.08, -0.46, 0.004 +19490907, 0.63, -0.28, 0.07, 0.004 +19490908, 0.23, -0.02, 0.04, 0.004 +19490909, -0.11, 0.14, -0.30, 0.004 +19490912, 0.83, -0.47, 0.52, 0.004 +19490913, 1.46, 0.34, 1.02, 0.004 +19490914, -0.10, 0.36, -0.15, 0.004 +19490915, -0.51, 0.21, -0.70, 0.004 +19490916, 0.29, 0.23, 0.38, 0.004 +19490919, -0.64, 0.16, -0.30, 0.004 +19490920, -2.20, 0.14, -0.56, 0.004 +19490921, 1.43, -0.20, 0.74, 0.004 +19490922, 0.61, 0.33, 0.65, 0.004 +19490923, 0.44, -0.24, 0.11, 0.004 +19490926, -0.25, 0.09, -0.52, 0.004 +19490927, -0.70, 0.25, -0.72, 0.004 +19490928, 0.92, 0.21, 0.42, 0.004 +19490929, 0.26, 0.21, -0.22, 0.004 +19490930, -0.09, -0.13, 0.02, 0.004 +19491001, -0.42, 0.10, -0.09, 0.004 +19491003, 0.49, -0.18, -0.15, 0.004 +19491004, 0.83, 0.32, -0.20, 0.004 +19491005, 0.40, 0.33, 0.22, 0.004 +19491006, 0.30, 0.13, 0.18, 0.004 +19491007, 0.13, 0.13, -0.17, 0.004 +19491008, 0.10, 0.43, 0.15, 0.004 +19491010, -0.11, 0.18, 0.10, 0.004 +19491011, 0.83, -0.19, 0.67, 0.004 +19491013, 0.04, 0.04, 0.12, 0.004 +19491014, -0.25, -0.03, -0.24, 0.004 +19491015, -0.08, 0.39, -0.17, 0.004 +19491017, -0.99, -0.34, -0.46, 0.004 +19491018, 0.78, 0.17, 0.37, 0.004 +19491019, 0.43, 0.06, 0.12, 0.004 +19491020, -0.13, -0.20, -0.13, 0.004 +19491021, -0.09, 0.14, 0.00, 0.004 +19491022, 0.03, 0.04, 0.04, 0.004 +19491024, 0.00, 0.16, -0.15, 0.004 +19491025, 0.44, -0.11, 0.11, 0.004 +19491026, 0.84, -0.10, 0.15, 0.004 +19491027, 0.44, 0.18, 0.33, 0.004 +19491028, -0.52, -0.24, -0.73, 0.004 +19491029, 0.03, -0.34, -0.13, 0.004 +19491031, -0.39, -0.06, -0.39, 0.004 +19491101, 0.74, -0.30, 0.07, 0.004 +19491102, 0.92, -0.52, 0.35, 0.004 +19491103, -0.17, 0.07, -0.04, 0.004 +19491104, 0.01, -0.08, 0.22, 0.004 +19491105, 0.14, 0.06, 0.02, 0.004 +19491107, -0.21, 0.08, -0.19, 0.004 +19491109, -0.07, -0.13, -1.01, 0.004 +19491110, -0.10, -0.26, -0.13, 0.004 +19491112, 0.00, 0.07, -0.16, 0.004 +19491114, -0.67, -0.06, -0.38, 0.004 +19491115, -0.62, -0.22, -0.33, 0.004 +19491116, 0.54, 0.01, 0.13, 0.004 +19491117, 0.77, 0.08, -0.08, 0.004 +19491118, 1.04, -0.27, 0.31, 0.004 +19491119, 0.22, 0.45, 0.13, 0.004 +19491121, -0.57, 0.08, -0.10, 0.004 +19491122, 0.32, -0.12, 0.22, 0.004 +19491123, 0.19, -0.11, 0.08, 0.004 +19491125, -0.55, 0.19, -0.26, 0.004 +19491126, 0.11, -0.16, 0.14, 0.004 +19491128, -0.37, 0.44, -0.17, 0.004 +19491129, -0.10, -0.34, 0.30, 0.004 +19491130, 0.30, 0.13, 0.00, 0.004 +19491201, 0.60, -0.04, 0.47, 0.004 +19491202, 0.94, 0.13, 0.79, 0.004 +19491203, 0.67, 0.23, 0.47, 0.004 +19491205, 0.20, 0.22, -0.71, 0.004 +19491206, -0.09, 0.09, -0.26, 0.004 +19491207, 0.12, 0.26, 0.30, 0.004 +19491208, 0.12, 0.27, 0.10, 0.004 +19491209, -0.01, 0.05, -0.15, 0.004 +19491210, 0.15, 0.08, -0.19, 0.004 +19491212, 0.57, -0.22, 0.32, 0.004 +19491213, 0.60, 0.18, 0.27, 0.004 +19491214, 0.36, 0.24, 0.35, 0.004 +19491215, 0.22, -0.22, -0.10, 0.004 +19491216, -0.08, 0.35, 0.04, 0.004 +19491217, -0.05, 0.14, 0.11, 0.004 +19491219, -0.20, -0.09, -0.04, 0.004 +19491220, -0.54, -0.01, -0.74, 0.004 +19491221, -0.14, -0.24, -0.23, 0.004 +19491222, 0.78, -0.11, 0.38, 0.004 +19491223, 0.19, 0.27, 0.05, 0.004 +19491227, -0.51, -0.46, -0.33, 0.004 +19491228, 0.49, -0.02, 0.32, 0.004 +19491229, 0.21, 0.20, 0.14, 0.004 +19491230, 0.47, 0.29, 0.37, 0.004 +19491231, -0.07, 0.38, -0.06, 0.004 +19500103, -0.59, 0.41, 0.29, 0.004 +19500104, 1.09, 0.41, 1.18, 0.004 +19500105, 0.40, 0.69, -0.12, 0.004 +19500106, 0.24, 0.42, 0.08, 0.004 +19500107, 0.64, 0.59, 0.45, 0.004 +19500109, 0.13, 0.64, 0.45, 0.004 +19500110, -0.35, 0.00, 0.20, 0.004 +19500111, 0.42, 0.48, 0.29, 0.004 +19500112, -1.82, -0.68, -1.77, 0.004 +19500113, -0.50, -0.20, 0.44, 0.004 +19500114, 0.15, 0.83, -0.07, 0.004 +19500116, 0.18, -0.16, -0.08, 0.004 +19500117, 0.76, 0.18, -0.08, 0.004 +19500118, -0.07, -0.10, 0.16, 0.004 +19500119, 0.18, -0.34, 0.06, 0.004 +19500120, 0.23, 0.08, -0.44, 0.004 +19500121, 0.11, -0.17, 0.02, 0.004 +19500123, -0.19, -0.13, 0.05, 0.004 +19500124, -0.32, -0.03, -0.60, 0.004 +19500125, -0.60, -0.22, -0.35, 0.004 +19500126, 0.14, 0.37, 0.31, 0.004 +19500127, 0.37, 0.14, -0.14, 0.004 +19500128, 0.33, 0.23, -0.16, 0.004 +19500130, 0.68, -0.08, 0.30, 0.004 +19500131, 0.14, -0.09, -0.20, 0.004 +19500201, 0.01, -0.04, 0.00, 0.004 +19500202, 0.98, -0.09, -0.20, 0.004 +19500203, 0.33, -0.37, 0.29, 0.004 +19500204, 0.24, 0.06, -0.22, 0.004 +19500206, -0.24, -0.04, -0.01, 0.004 +19500207, -0.41, -0.38, -0.19, 0.004 +19500208, 0.11, 0.07, 0.00, 0.004 +19500209, 0.43, 0.21, -0.07, 0.004 +19500210, -0.21, -0.05, -0.64, 0.004 +19500211, -0.07, 0.44, -0.28, 0.004 +19500214, -0.62, 0.32, -0.69, 0.004 +19500215, 0.08, 0.21, 0.76, 0.004 +19500216, -0.16, -0.09, -0.31, 0.004 +19500217, 0.64, 0.11, 0.49, 0.004 +19500218, 0.42, 0.22, 0.44, 0.004 +19500220, -0.13, -0.07, 0.05, 0.004 +19500221, -0.15, -0.13, -0.05, 0.004 +19500223, 0.15, -0.12, -0.21, 0.004 +19500224, 0.35, 0.02, 0.03, 0.004 +19500225, -0.08, 0.04, 0.11, 0.004 +19500227, 0.14, -0.15, -0.05, 0.004 +19500228, -0.34, -0.15, -0.03, 0.004 +19500301, 0.34, -0.05, 0.24, 0.004 +19500302, 0.04, -0.05, -0.18, 0.004 +19500303, 0.37, 0.07, 0.50, 0.004 +19500304, 0.27, 0.22, 0.11, 0.004 +19500306, 0.06, -0.11, -0.22, 0.004 +19500307, -0.67, -0.61, -0.18, 0.004 +19500308, 0.19, -0.17, 0.12, 0.004 +19500309, -0.61, 0.01, -0.32, 0.004 +19500310, -0.06, -0.22, -0.34, 0.004 +19500311, 0.26, 0.22, 0.23, 0.004 +19500313, -0.05, 0.02, -0.29, 0.004 +19500314, 0.53, -0.29, 0.11, 0.004 +19500315, 1.31, 0.07, 0.70, 0.004 +19500316, 0.29, 0.09, 0.02, 0.004 +19500317, -0.18, -0.38, -0.47, 0.004 +19500318, 0.20, -0.06, 0.21, 0.004 +19500320, -0.14, 0.05, -0.01, 0.004 +19500321, 0.04, -0.23, -0.29, 0.004 +19500322, 0.55, -0.34, 0.11, 0.004 +19500323, 0.07, -0.23, -0.33, 0.004 +19500324, -0.03, -0.35, -0.47, 0.004 +19500325, 0.27, 0.38, -0.34, 0.004 +19500327, -0.83, -0.09, -0.86, 0.004 +19500328, 0.30, 0.10, -0.10, 0.004 +19500329, -0.35, 0.01, -0.03, 0.004 +19500330, -0.92, 0.31, -0.79, 0.004 +19500331, 0.04, 0.20, 0.11, 0.004 +19500401, 0.27, 0.27, 0.62, 0.004 +19500403, 0.87, -0.21, 0.33, 0.004 +19500404, 0.17, -0.17, -0.01, 0.004 +19500405, 0.33, -0.10, -0.37, 0.004 +19500406, 0.93, 0.10, 0.14, 0.004 +19500408, 0.24, 0.07, 0.04, 0.004 +19500410, 0.06, -0.03, 0.10, 0.004 +19500411, -0.56, -0.16, -0.74, 0.004 +19500412, 0.95, 0.39, 0.36, 0.004 +19500413, 0.12, 0.20, -0.14, 0.004 +19500414, -0.14, 0.23, -0.92, 0.004 +19500415, -0.43, 0.07, -0.19, 0.004 +19500417, -0.07, 0.21, 0.35, 0.004 +19500418, 0.40, -0.41, 0.88, 0.004 +19500419, 0.13, 0.39, 0.03, 0.004 +19500420, -0.69, 0.15, -0.42, 0.004 +19500421, 0.34, 0.56, 0.07, 0.004 +19500422, 0.10, 0.20, 0.25, 0.004 +19500424, -0.77, -0.02, -0.03, 0.004 +19500425, 0.02, -0.05, 0.21, 0.004 +19500426, -0.17, -0.27, 0.06, 0.004 +19500427, 0.58, 0.03, 0.45, 0.004 +19500428, 0.62, 0.27, -0.11, 0.004 +19500429, 0.59, 0.19, 0.35, 0.004 +19500501, 0.59, -0.02, 0.27, 0.004 +19500502, -0.44, -0.42, -0.17, 0.004 +19500503, 0.70, -0.05, 0.45, 0.004 +19500504, -0.56, -0.52, 0.05, 0.004 +19500505, 0.43, 0.03, 0.36, 0.004 +19500506, 0.55, -0.24, 0.36, 0.004 +19500508, -0.03, 0.02, -0.06, 0.004 +19500509, 0.36, 0.02, 0.17, 0.004 +19500510, 0.01, -0.37, -0.25, 0.004 +19500511, 0.23, -0.24, 0.31, 0.004 +19500512, -0.41, 0.19, -0.50, 0.004 +19500513, 0.16, 0.28, -0.11, 0.004 +19500515, 0.18, -0.05, 0.16, 0.004 +19500516, 0.73, -0.19, 0.35, 0.004 +19500517, 0.40, -0.09, -0.12, 0.004 +19500518, 0.33, -0.23, -0.20, 0.004 +19500519, 0.62, -0.16, 0.53, 0.004 +19500520, 0.20, 0.09, 0.08, 0.004 +19500522, -0.45, 0.03, -0.59, 0.004 +19500523, 0.33, -0.12, -0.05, 0.004 +19500524, -0.11, -0.11, -0.57, 0.004 +19500525, -0.03, -0.24, 0.24, 0.004 +19500526, -0.01, -0.04, 0.23, 0.004 +19500527, -0.05, 0.04, 0.14, 0.004 +19500529, 0.33, 0.03, -0.20, 0.004 +19500531, 0.21, 0.31, -0.42, 0.004 +19500601, -0.11, -0.15, -0.25, 0.004 +19500602, 0.05, -0.04, -0.17, 0.004 +19500605, -0.86, -0.47, -0.55, 0.004 +19500606, 0.71, -0.52, -0.15, 0.004 +19500607, 0.43, 0.54, -0.01, 0.004 +19500608, 0.80, -0.18, 0.14, 0.004 +19500609, 0.56, -0.39, 0.41, 0.004 +19500612, 0.46, -0.50, 0.01, 0.004 +19500613, -0.51, -0.14, 0.11, 0.004 +19500614, -1.13, 0.19, -0.35, 0.004 +19500615, -0.03, -0.04, 0.28, 0.004 +19500616, 0.02, 0.14, 0.04, 0.004 +19500619, -0.38, 0.19, -0.45, 0.004 +19500620, -0.28, -0.12, -0.23, 0.004 +19500621, 0.87, 0.18, 0.38, 0.004 +19500622, 0.75, -0.14, 0.19, 0.004 +19500623, 0.08, -0.13, 0.22, 0.004 +19500626, -5.27, -0.15, -1.34, 0.004 +19500627, -1.04, -1.69, 0.26, 0.004 +19500628, 1.26, 1.02, 0.69, 0.004 +19500629, -3.54, 0.35, -0.71, 0.004 +19500630, 1.31, -0.47, 0.77, 0.004 +19500703, -0.55, 0.13, -0.30, 0.005 +19500705, 0.84, -0.68, 1.01, 0.005 +19500706, 0.69, 0.44, 0.40, 0.005 +19500707, -1.13, 0.26, -0.09, 0.005 +19500710, -0.49, -0.22, 1.59, 0.005 +19500711, -1.44, 0.63, 2.41, 0.005 +19500712, -2.40, 0.09, 0.47, 0.005 +19500713, -0.98, -0.18, 0.63, 0.005 +19500714, 1.29, 0.11, 0.17, 0.005 +19500717, -0.84, 0.09, 0.39, 0.005 +19500718, 2.27, -0.94, 0.75, 0.005 +19500719, 1.72, 0.02, 0.59, 0.005 +19500720, 1.47, 0.17, 1.66, 0.005 +19500721, 0.19, 0.40, 1.03, 0.005 +19500724, -0.58, 0.48, 0.91, 0.005 +19500725, -1.33, 0.24, 1.33, 0.005 +19500726, 0.32, -0.20, 0.58, 0.005 +19500727, 1.20, 0.04, 0.81, 0.005 +19500728, 0.83, -0.02, -1.37, 0.005 +19500731, 0.41, -0.29, 0.07, 0.005 +19500801, 0.79, -0.08, -0.12, 0.004 +19500802, -0.03, 0.12, -0.80, 0.004 +19500803, 0.28, 0.44, 0.19, 0.004 +19500804, 0.52, -0.05, -0.11, 0.004 +19500807, 1.16, -0.40, 0.24, 0.004 +19500808, 0.20, -0.21, -1.02, 0.004 +19500809, 0.56, -0.36, 0.05, 0.004 +19500810, 0.21, 0.05, -0.06, 0.004 +19500811, -0.58, 0.21, -0.31, 0.004 +19500814, 0.12, 0.12, 0.25, 0.004 +19500815, 0.26, 0.21, 0.20, 0.004 +19500816, 0.31, 0.13, 0.55, 0.004 +19500817, 1.00, -0.15, 0.45, 0.004 +19500818, 0.58, -0.13, 0.04, 0.004 +19500821, 0.15, 0.32, -0.67, 0.004 +19500822, -0.18, -0.18, -0.26, 0.004 +19500823, 0.72, -0.01, 0.56, 0.004 +19500824, 0.01, 0.30, -0.29, 0.004 +19500825, -1.17, 0.21, -0.28, 0.004 +19500828, 0.02, 0.21, 0.30, 0.004 +19500829, 0.23, -0.02, 0.03, 0.004 +19500830, -0.29, -0.08, -0.32, 0.004 +19500831, -0.10, 0.04, 0.06, 0.004 +19500901, 0.50, -0.27, 0.15, 0.005 +19500905, 0.47, -0.26, -0.15, 0.005 +19500906, -0.56, 0.03, -0.13, 0.005 +19500907, 0.36, -0.06, 0.34, 0.005 +19500908, 0.80, 0.19, 0.29, 0.005 +19500911, -0.66, 0.04, -0.22, 0.005 +19500912, 1.13, -0.34, 1.11, 0.005 +19500913, 1.05, 0.17, 0.20, 0.005 +19500914, 0.44, 0.02, 0.41, 0.005 +19500915, 0.39, -0.08, -0.48, 0.005 +19500918, 0.27, -0.31, -0.45, 0.005 +19500919, -0.33, -0.05, -0.27, 0.005 +19500920, -0.50, 0.14, -0.10, 0.005 +19500921, 0.81, 0.06, 0.51, 0.005 +19500922, 0.54, 0.29, 0.16, 0.005 +19500925, -0.20, 0.42, -0.49, 0.005 +19500926, -1.22, 0.30, -1.48, 0.005 +19500927, 1.26, -0.19, -0.24, 0.005 +19500928, 0.12, 0.20, -0.09, 0.005 +19500929, 0.09, 0.24, -0.08, 0.005 +19501002, 0.95, -0.10, 0.87, 0.005 +19501003, -0.21, -0.01, -0.04, 0.005 +19501004, 1.21, -0.39, 0.20, 0.005 +19501005, -0.35, 0.28, -0.36, 0.005 +19501006, 0.80, -0.47, 0.59, 0.005 +19501007, 0.29, 0.09, 0.24, 0.005 +19501009, -0.83, -0.11, -0.57, 0.005 +19501010, -0.72, 0.50, -0.01, 0.005 +19501011, 0.53, 0.01, 0.78, 0.005 +19501013, 0.10, 0.18, 0.19, 0.005 +19501014, -0.46, -0.10, 0.01, 0.005 +19501016, -0.05, 0.07, 0.03, 0.005 +19501017, 0.77, 0.13, 0.58, 0.005 +19501018, 0.64, 0.11, 0.38, 0.005 +19501019, -0.02, 0.17, -0.03, 0.005 +19501020, -0.17, -0.06, -0.39, 0.005 +19501021, 0.24, 0.06, 0.08, 0.005 +19501023, -0.07, 0.13, 0.21, 0.005 +19501024, 0.21, -0.03, -0.35, 0.005 +19501025, -0.13, 0.03, 0.02, 0.005 +19501026, -2.07, -0.28, -0.96, 0.005 +19501027, 0.57, -0.13, 0.44, 0.005 +19501028, 0.19, 0.02, 0.68, 0.005 +19501030, -0.91, 0.01, -1.03, 0.005 +19501031, -0.63, -0.69, -0.06, 0.005 +19501101, 0.41, -0.02, 0.44, 0.005 +19501102, 0.93, 0.02, 0.17, 0.005 +19501103, 0.33, -0.33, -0.30, 0.005 +19501104, -0.34, 0.03, -0.32, 0.005 +19501106, -2.17, -0.48, -0.76, 0.005 +19501108, 1.47, 0.30, 0.65, 0.005 +19501109, 1.33, -0.20, 0.94, 0.005 +19501110, 0.73, -0.34, 0.13, 0.005 +19501113, 0.43, -0.07, 0.29, 0.005 +19501114, 0.24, -0.24, 0.27, 0.005 +19501115, -0.16, 0.22, -0.06, 0.005 +19501116, -0.20, -0.02, 0.32, 0.005 +19501117, 0.83, -0.18, 1.30, 0.005 +19501118, 0.50, 0.05, 0.23, 0.005 +19501120, 0.02, 0.13, 0.02, 0.005 +19501121, -0.01, 0.14, 0.02, 0.005 +19501122, 1.06, -0.24, 0.33, 0.005 +19501124, 0.74, -0.01, -0.14, 0.005 +19501125, -0.09, 0.19, -0.29, 0.005 +19501127, -0.30, 0.17, 0.03, 0.005 +19501128, -2.81, -0.16, -1.10, 0.005 +19501129, -0.86, 0.27, 0.82, 0.005 +19501130, 0.75, -0.08, 0.24, 0.005 +19501201, 0.76, -0.18, 0.73, 0.005 +19501202, -0.61, 0.27, -0.31, 0.005 +19501204, -2.78, -0.13, -1.18, 0.005 +19501205, 1.54, -0.26, 1.58, 0.005 +19501206, 0.86, -0.04, 0.87, 0.005 +19501207, -0.17, -0.12, 0.05, 0.005 +19501208, 0.27, 0.14, 1.20, 0.005 +19501209, 0.37, 0.19, 0.51, 0.005 +19501211, 0.93, -0.31, 0.27, 0.005 +19501212, 0.06, -0.04, -0.16, 0.005 +19501213, 0.02, -0.40, 0.08, 0.005 +19501214, -1.04, 0.35, -0.41, 0.005 +19501215, -0.40, 0.24, 0.84, 0.005 +19501216, 1.58, -0.25, 1.78, 0.005 +19501218, 1.03, 0.13, 0.80, 0.005 +19501219, 0.53, 0.08, 0.65, 0.005 +19501220, 0.27, 0.70, 0.17, 0.005 +19501221, 0.14, 0.52, -0.38, 0.005 +19501222, 0.34, 0.32, -0.27, 0.005 +19501226, -0.79, -0.34, -0.52, 0.005 +19501227, 1.98, 0.11, 0.79, 0.005 +19501228, 0.53, 0.19, 0.60, 0.005 +19501229, -0.05, 0.15, -0.56, 0.005 +19501230, 0.14, 0.15, -0.22, 0.005 +19510102, 1.57, 0.03, 0.77, 0.005 +19510103, -0.28, 0.08, -0.17, 0.005 +19510104, 0.69, 0.24, 1.04, 0.005 +19510105, 0.04, 0.03, -0.02, 0.005 +19510106, -0.08, 0.23, -0.44, 0.005 +19510108, 0.48, 0.19, 0.37, 0.005 +19510109, 0.56, 0.35, 0.16, 0.005 +19510110, -1.32, -0.50, -1.22, 0.005 +19510111, 1.60, 0.35, 1.29, 0.005 +19510112, -0.30, -0.17, -0.44, 0.005 +19510113, 0.09, -0.04, 0.09, 0.005 +19510115, 0.53, 0.10, 0.42, 0.005 +19510116, 0.70, -0.03, 0.54, 0.005 +19510117, 0.55, -0.18, 0.33, 0.005 +19510118, -0.28, 0.44, -0.06, 0.005 +19510119, -0.13, 0.24, -0.36, 0.005 +19510120, 0.15, 0.21, -0.08, 0.005 +19510122, -1.00, -0.10, -0.44, 0.005 +19510123, 0.32, 0.08, -0.25, 0.005 +19510124, -0.31, 0.07, -0.27, 0.005 +19510125, -0.68, -0.30, -0.32, 0.005 +19510126, 1.00, 0.50, 1.14, 0.005 +19510127, 1.05, 0.23, 0.81, 0.005 +19510129, 0.69, -0.25, 0.56, 0.005 +19510130, 0.25, -0.49, 0.25, 0.005 +19510131, -0.25, 0.35, -0.11, 0.005 +19510201, 0.60, 0.08, 0.17, 0.005 +19510202, 0.75, 0.09, -0.30, 0.005 +19510203, 0.37, 0.02, -0.07, 0.005 +19510205, 0.34, -0.37, -0.01, 0.005 +19510206, -0.34, 0.04, -0.42, 0.005 +19510207, -0.27, 0.09, 0.03, 0.005 +19510208, 0.53, 0.08, 0.12, 0.005 +19510209, 0.46, 0.09, 0.07, 0.005 +19510210, 0.14, 0.02, 0.19, 0.005 +19510213, 0.10, -0.34, -0.29, 0.005 +19510214, -0.30, -0.16, -0.18, 0.005 +19510215, -0.22, 0.26, -0.50, 0.005 +19510216, 0.39, 0.09, 0.09, 0.005 +19510217, 0.07, 0.06, -0.02, 0.005 +19510219, -1.16, 0.19, -0.87, 0.005 +19510220, -0.21, -0.04, 0.31, 0.005 +19510221, 0.44, 0.14, 0.02, 0.005 +19510223, 0.25, 0.13, -0.16, 0.005 +19510224, 0.20, -0.02, 0.05, 0.005 +19510226, -0.03, 0.11, -0.36, 0.005 +19510227, -0.84, -0.28, -0.83, 0.005 +19510228, 0.15, -0.19, 0.15, 0.005 +19510301, 0.33, -0.03, 0.45, 0.004 +19510302, 0.42, 0.14, 0.03, 0.004 +19510303, -0.03, 0.18, -0.22, 0.004 +19510305, -0.55, 0.04, -0.44, 0.004 +19510306, -0.19, -0.17, -0.32, 0.004 +19510307, 0.40, -0.02, 0.07, 0.004 +19510308, 0.34, 0.17, -0.32, 0.004 +19510309, 0.07, 0.19, -0.13, 0.004 +19510310, -0.20, 0.15, 0.05, 0.004 +19510312, -0.95, -0.32, -0.48, 0.004 +19510313, -1.57, -0.22, -1.38, 0.004 +19510314, -0.87, 0.21, -0.07, 0.004 +19510315, 0.13, -0.33, -0.26, 0.004 +19510316, 1.61, 0.25, 0.82, 0.004 +19510317, 0.21, 0.18, -0.12, 0.004 +19510319, -0.55, -0.01, -0.27, 0.004 +19510320, -0.16, -0.10, -0.48, 0.004 +19510321, 0.57, 0.05, 0.29, 0.004 +19510322, 0.33, -0.27, -0.20, 0.004 +19510324, -1.08, -0.01, -0.98, 0.004 +19510326, 0.09, -0.35, 0.04, 0.004 +19510327, 0.06, 0.08, -0.17, 0.004 +19510328, -1.13, -0.52, -0.68, 0.004 +19510329, 0.26, -0.04, 0.15, 0.004 +19510330, 0.62, -0.09, 0.30, 0.004 +19510331, -0.27, 0.19, 0.06, 0.004 +19510402, -0.53, -0.31, -0.39, 0.005 +19510403, -0.21, 0.17, 0.07, 0.005 +19510404, 0.45, -0.45, 0.80, 0.005 +19510405, 1.40, 0.00, 1.09, 0.005 +19510406, 0.35, 0.17, 0.16, 0.005 +19510407, -0.09, 0.18, -0.41, 0.005 +19510409, 0.04, 0.06, -0.03, 0.005 +19510410, -0.18, 0.08, -0.33, 0.005 +19510411, -0.18, -0.20, -0.53, 0.005 +19510412, 0.98, -0.10, 0.71, 0.005 +19510413, 1.30, -0.26, 0.93, 0.005 +19510414, 0.39, 0.04, 0.42, 0.005 +19510416, -0.50, -0.12, -0.03, 0.005 +19510417, 0.15, 0.04, 0.02, 0.005 +19510418, 0.37, 0.01, 0.02, 0.005 +19510419, -0.46, -0.04, 0.00, 0.005 +19510420, -0.05, 0.04, -0.24, 0.005 +19510421, 0.02, -0.01, 0.25, 0.005 +19510423, -0.03, -0.16, -0.08, 0.005 +19510424, -0.45, 0.02, -0.39, 0.005 +19510425, 0.14, -0.20, 0.37, 0.005 +19510426, 0.87, -0.06, 0.66, 0.005 +19510427, 0.91, -0.31, 0.53, 0.005 +19510428, 0.16, 0.10, 0.00, 0.005 +19510430, -0.04, -0.15, -0.41, 0.005 +19510501, 0.32, -0.18, 0.12, 0.005 +19510502, 0.28, -0.06, 0.11, 0.005 +19510503, 0.73, -0.42, 0.90, 0.005 +19510504, 0.05, 0.00, -0.20, 0.005 +19510505, -0.29, 0.20, -0.03, 0.005 +19510507, -0.20, -0.07, -0.40, 0.005 +19510508, 0.35, -0.09, -0.17, 0.005 +19510509, 0.22, -0.03, 0.39, 0.005 +19510510, -0.51, 0.22, -0.31, 0.005 +19510511, -0.52, 0.26, -0.19, 0.005 +19510512, -0.56, 0.16, -0.15, 0.005 +19510514, -0.08, -0.03, -0.01, 0.005 +19510515, -1.53, 0.08, -0.41, 0.005 +19510516, -0.31, 0.17, 0.24, 0.005 +19510517, 0.96, -0.24, 0.34, 0.005 +19510518, -1.59, 0.21, -1.37, 0.005 +19510519, 0.07, -0.16, -0.05, 0.005 +19510521, -0.42, -0.05, -0.52, 0.005 +19510522, -0.32, 0.07, -0.13, 0.005 +19510523, -0.65, 0.23, -0.46, 0.005 +19510524, -0.41, -0.10, -0.02, 0.005 +19510525, 0.09, 0.52, 0.12, 0.005 +19510526, 0.18, -0.04, -0.02, 0.005 +19510528, 0.51, -0.06, 0.24, 0.005 +19510529, 0.73, -0.34, 0.31, 0.005 +19510531, 0.55, -0.26, 0.35, 0.005 +19510601, -0.15, -0.24, -0.04, 0.006 +19510604, -0.96, 0.10, -0.92, 0.006 +19510605, 0.17, -0.11, 0.13, 0.006 +19510606, 0.89, -0.06, 0.63, 0.006 +19510607, 0.50, 0.05, 0.47, 0.006 +19510608, -0.19, -0.09, -0.19, 0.006 +19510611, 0.50, -0.26, 0.41, 0.006 +19510612, -0.41, 0.17, -0.63, 0.006 +19510613, 0.08, -0.24, -0.29, 0.006 +19510614, 0.96, -0.44, 0.35, 0.006 +19510615, 0.65, -0.43, 0.35, 0.006 +19510618, -0.05, -0.23, -0.33, 0.006 +19510619, -0.11, -0.22, 0.04, 0.006 +19510620, -0.45, 0.32, -0.43, 0.006 +19510621, -0.57, 0.01, -0.28, 0.006 +19510622, -0.79, 0.16, -0.31, 0.006 +19510625, -1.54, -0.42, -1.50, 0.006 +19510626, 0.24, 0.20, -0.23, 0.006 +19510627, 0.45, -0.08, 0.23, 0.006 +19510628, -1.09, -0.23, -0.70, 0.006 +19510629, -0.74, 0.03, -0.84, 0.006 +19510702, 0.60, -0.29, 0.35, 0.006 +19510703, 0.70, 0.12, 0.31, 0.006 +19510705, 1.55, -0.31, 0.60, 0.006 +19510706, 0.00, 0.13, -0.32, 0.006 +19510709, 0.23, -0.25, -0.18, 0.006 +19510710, -0.37, -0.02, -0.19, 0.006 +19510711, 0.21, -0.03, 0.46, 0.006 +19510712, 0.44, -0.14, -0.07, 0.006 +19510713, 0.69, -0.15, -0.02, 0.006 +19510716, -0.74, 0.23, -0.66, 0.006 +19510717, 0.65, -0.66, 0.18, 0.006 +19510718, -0.04, 0.08, -0.18, 0.006 +19510719, 0.08, 0.10, -0.08, 0.006 +19510720, 0.16, 0.15, 0.36, 0.006 +19510723, 0.83, -0.57, 0.37, 0.006 +19510724, 1.20, -0.66, 0.65, 0.006 +19510725, -0.18, 0.34, 0.16, 0.006 +19510726, 0.50, 0.07, 0.22, 0.006 +19510727, 0.28, -0.03, 0.18, 0.006 +19510730, 0.59, -0.43, -0.23, 0.006 +19510731, -0.64, 0.40, 0.03, 0.006 +19510801, 0.67, 0.01, 0.82, 0.006 +19510802, 1.03, -0.09, 0.04, 0.006 +19510803, 0.16, -0.01, -0.33, 0.006 +19510806, 0.66, -0.41, 0.36, 0.006 +19510807, -0.03, 0.20, -0.22, 0.006 +19510808, -0.17, 0.15, -0.22, 0.006 +19510809, -0.36, 0.30, -0.17, 0.006 +19510810, -0.17, 0.00, -0.33, 0.006 +19510813, 0.12, 0.26, -0.34, 0.006 +19510814, -0.08, -0.10, -0.04, 0.006 +19510815, 0.39, -0.14, 0.57, 0.006 +19510816, 0.52, 0.11, 0.04, 0.006 +19510817, 0.27, 0.10, 0.18, 0.006 +19510820, -0.07, 0.05, -0.34, 0.006 +19510821, -0.38, 0.08, -0.31, 0.006 +19510822, -0.46, 0.16, -0.43, 0.006 +19510823, 0.62, -0.09, 0.28, 0.006 +19510824, 0.02, 0.14, 0.07, 0.006 +19510827, -0.15, 0.02, -0.32, 0.006 +19510828, 0.09, 0.21, 0.14, 0.006 +19510829, 0.77, -0.08, 0.14, 0.006 +19510830, 0.67, -0.06, 0.13, 0.006 +19510831, 0.10, 0.14, 0.17, 0.006 +19510904, 0.10, 0.12, 0.16, 0.006 +19510905, 0.77, -0.11, -0.07, 0.006 +19510906, 0.32, -0.22, 0.34, 0.006 +19510907, 0.42, -0.17, 0.15, 0.006 +19510910, 0.43, 0.10, 0.21, 0.006 +19510911, -0.46, 0.20, -0.37, 0.006 +19510912, 0.62, -0.04, 0.35, 0.006 +19510913, 0.28, -0.03, 0.14, 0.006 +19510914, -0.05, 0.22, -0.07, 0.006 +19510917, -0.31, 0.36, -0.29, 0.006 +19510918, -0.08, 0.11, -0.40, 0.006 +19510919, 0.07, 0.51, 0.09, 0.006 +19510920, -0.15, 0.25, 0.34, 0.006 +19510921, -0.75, 0.31, -0.02, 0.006 +19510924, -0.48, 0.22, 0.33, 0.006 +19510925, 0.35, -0.09, 0.13, 0.006 +19510926, 0.15, 0.04, 0.00, 0.006 +19510927, -0.48, -0.07, -0.25, 0.006 +19510928, -0.05, 0.16, -0.16, 0.006 +19511001, 0.61, -0.06, 0.17, 0.006 +19511002, 0.66, -0.19, 0.31, 0.006 +19511003, 0.60, 0.26, 0.43, 0.006 +19511004, -0.14, 0.27, -0.08, 0.006 +19511005, 0.13, 0.32, 0.26, 0.006 +19511006, 0.02, 0.10, 0.09, 0.006 +19511008, -0.10, 0.31, -0.36, 0.006 +19511009, -0.48, 0.10, -0.04, 0.006 +19511010, -0.23, 0.17, -0.12, 0.006 +19511011, 0.45, -0.36, 0.22, 0.006 +19511013, 0.28, 0.04, 0.24, 0.006 +19511015, 0.19, -0.34, -0.09, 0.006 +19511016, -0.39, -0.23, -0.31, 0.006 +19511017, -0.26, 0.03, -0.29, 0.006 +19511018, -0.13, 0.07, 0.11, 0.006 +19511019, -1.40, -0.04, -0.27, 0.006 +19511020, -0.91, 0.28, -0.02, 0.006 +19511022, -1.82, -0.01, 0.19, 0.006 +19511023, 0.64, -0.09, 0.55, 0.006 +19511024, 0.72, -0.07, 0.39, 0.006 +19511025, -0.49, -0.04, -0.23, 0.006 +19511026, -0.75, 0.13, -0.26, 0.006 +19511027, -1.59, 0.19, -0.63, 0.006 +19511029, 0.85, -0.63, 0.58, 0.006 +19511030, 0.01, 0.02, -0.23, 0.006 +19511031, 1.03, -0.45, -0.32, 0.006 +19511101, 0.66, -0.13, 0.14, 0.005 +19511102, -0.72, 0.13, -0.35, 0.005 +19511103, -0.86, 0.28, -0.43, 0.005 +19511105, 0.08, -0.18, 0.09, 0.005 +19511107, -0.86, 0.01, -0.04, 0.005 +19511108, 0.19, -0.14, 0.15, 0.005 +19511109, 1.11, -0.05, 0.25, 0.005 +19511110, 0.49, 0.02, 0.07, 0.005 +19511113, -0.18, 0.10, -0.23, 0.005 +19511114, 0.27, -0.13, 0.16, 0.005 +19511115, -0.05, 0.14, 0.10, 0.005 +19511116, -0.11, -0.13, 0.38, 0.005 +19511117, 0.03, 0.10, 0.01, 0.005 +19511119, -0.37, 0.16, -0.17, 0.005 +19511120, -0.19, -0.09, -0.30, 0.005 +19511121, -0.08, 0.09, 0.13, 0.005 +19511123, -1.03, 0.10, -0.18, 0.005 +19511124, -0.37, 0.14, -0.18, 0.005 +19511126, 0.59, -0.26, 0.24, 0.005 +19511127, 0.78, -0.34, -0.08, 0.005 +19511128, -0.14, 0.32, -0.11, 0.005 +19511129, 0.43, -0.26, 0.14, 0.005 +19511130, 0.94, -0.18, 0.14, 0.005 +19511201, 0.25, 0.01, 0.10, 0.005 +19511203, 0.34, -0.06, -0.50, 0.005 +19511204, 0.41, -0.37, -0.02, 0.005 +19511205, 0.04, 0.17, -0.29, 0.005 +19511206, 0.90, -0.43, 0.46, 0.005 +19511207, 0.20, -0.14, 0.25, 0.005 +19511208, 0.10, -0.05, 0.00, 0.005 +19511210, 0.01, -0.06, -0.11, 0.005 +19511211, -0.47, 0.11, -0.37, 0.005 +19511212, 0.12, -0.11, -0.18, 0.005 +19511213, 0.30, 0.04, -0.23, 0.005 +19511214, -0.02, 0.01, -0.16, 0.005 +19511215, -0.06, 0.10, -0.14, 0.005 +19511217, 0.14, -0.21, -0.04, 0.005 +19511218, 0.12, -0.24, -0.27, 0.005 +19511219, 0.28, -0.35, 0.36, 0.005 +19511220, 0.01, -0.04, 0.04, 0.005 +19511221, -0.22, 0.01, 0.04, 0.005 +19511222, 0.00, 0.06, 0.10, 0.005 +19511224, -0.04, 0.11, -0.30, 0.005 +19511226, -0.62, 0.08, -0.18, 0.005 +19511227, 0.85, -0.40, 0.36, 0.005 +19511228, 0.44, -0.13, -0.25, 0.005 +19511229, -0.04, 0.02, -0.02, 0.005 +19511231, 0.27, -0.34, -0.19, 0.005 +19520102, 0.16, 0.40, 0.26, 0.006 +19520103, 0.15, 0.07, 0.27, 0.006 +19520104, 0.18, 0.22, 0.08, 0.006 +19520105, 0.07, 0.12, -0.01, 0.006 +19520107, -0.15, -0.06, -0.04, 0.006 +19520108, -0.43, -0.28, -0.21, 0.006 +19520109, -0.28, 0.09, -0.17, 0.006 +19520110, 0.60, -0.23, 0.18, 0.006 +19520111, 0.42, -0.39, 0.25, 0.006 +19520112, 0.40, -0.23, 0.10, 0.006 +19520114, 0.20, -0.35, 0.18, 0.006 +19520115, -0.44, -0.01, -0.16, 0.006 +19520116, 0.29, 0.02, 0.38, 0.006 +19520117, 0.40, -0.01, 0.06, 0.006 +19520118, 0.15, -0.07, 0.47, 0.006 +19520119, 0.27, -0.13, 0.36, 0.006 +19520121, 0.41, -0.43, -0.08, 0.006 +19520122, 0.50, -0.29, -0.30, 0.006 +19520123, -0.35, 0.11, -0.18, 0.006 +19520124, 0.13, -0.01, -0.06, 0.006 +19520125, 0.11, 0.23, 0.02, 0.006 +19520126, 0.09, 0.05, -0.11, 0.006 +19520128, 0.09, 0.06, 0.35, 0.006 +19520129, -0.01, 0.34, 0.11, 0.006 +19520130, -1.07, 0.23, -0.03, 0.006 +19520131, -0.42, -0.03, -0.21, 0.006 +19520201, 0.59, -0.05, -0.18, 0.005 +19520202, 0.36, -0.24, 0.13, 0.005 +19520204, -1.12, 0.40, -0.37, 0.005 +19520205, -0.26, 0.13, -0.19, 0.005 +19520206, 0.32, 0.11, -0.25, 0.005 +19520207, 0.17, 0.01, 0.10, 0.005 +19520208, 0.51, -0.13, 0.08, 0.005 +19520209, 0.04, 0.23, 0.06, 0.005 +19520211, -0.32, -0.13, 0.23, 0.005 +19520213, -0.67, 0.24, -0.17, 0.005 +19520214, -0.25, -0.08, 0.16, 0.005 +19520215, -0.01, 0.00, -0.13, 0.005 +19520216, -0.06, 0.10, 0.06, 0.005 +19520218, -0.40, -0.07, 0.04, 0.005 +19520219, -1.46, 0.24, -0.13, 0.005 +19520220, -1.12, 0.15, -0.06, 0.005 +19520221, 0.32, 0.24, 0.22, 0.005 +19520223, 0.65, -0.39, 0.51, 0.005 +19520225, -0.29, 0.19, -0.21, 0.005 +19520226, -0.50, 0.24, -0.35, 0.005 +19520227, 0.20, -0.19, 0.28, 0.005 +19520228, 0.71, -0.24, -0.27, 0.005 +19520229, -0.06, 0.05, -0.19, 0.005 +19520301, 0.08, 0.04, -0.14, 0.004 +19520303, 0.26, -0.14, 0.12, 0.004 +19520304, 1.31, -0.55, 0.18, 0.004 +19520305, 0.23, 0.05, 0.33, 0.004 +19520306, -0.01, -0.03, 0.05, 0.004 +19520307, 0.21, -0.21, 0.46, 0.004 +19520308, 0.29, -0.19, 0.24, 0.004 +19520310, -0.49, 0.27, -0.68, 0.004 +19520311, 0.22, -0.25, 0.10, 0.004 +19520312, 0.26, -0.09, 0.17, 0.004 +19520313, 0.05, 0.03, 0.16, 0.004 +19520314, 0.24, -0.36, 0.10, 0.004 +19520315, 0.20, -0.27, 0.00, 0.004 +19520317, 0.10, -0.23, -0.09, 0.004 +19520318, -0.14, -0.05, -0.02, 0.004 +19520319, -0.24, 0.19, -0.07, 0.004 +19520320, 0.35, -0.32, 0.65, 0.004 +19520321, 0.07, 0.09, 0.20, 0.004 +19520322, -0.01, 0.03, -0.17, 0.004 +19520324, -0.11, 0.03, -0.18, 0.004 +19520325, -0.42, 0.40, -0.16, 0.004 +19520326, -0.07, -0.11, 0.35, 0.004 +19520327, 0.77, -0.50, 0.21, 0.004 +19520328, 0.59, -0.33, -0.06, 0.004 +19520329, 0.56, -0.33, 0.44, 0.004 +19520331, 0.07, -0.09, -0.04, 0.004 +19520401, -0.77, 0.14, -0.20, 0.005 +19520402, -0.08, 0.16, 0.01, 0.005 +19520403, 0.09, -0.15, 0.02, 0.005 +19520404, -0.51, 0.11, -0.26, 0.005 +19520405, -0.15, 0.12, 0.09, 0.005 +19520407, -0.93, 0.19, -0.13, 0.005 +19520408, 0.56, -0.34, 0.25, 0.005 +19520409, -0.01, 0.14, -0.13, 0.005 +19520410, 0.35, -0.17, 0.22, 0.005 +19520412, 0.05, 0.16, 0.05, 0.005 +19520414, -0.74, -0.14, -0.23, 0.005 +19520415, -1.08, 0.09, -0.54, 0.005 +19520416, -0.14, 0.44, -0.17, 0.005 +19520417, -0.86, 0.11, -0.18, 0.005 +19520418, 0.40, 0.02, 0.51, 0.005 +19520419, 0.06, 0.13, 0.12, 0.005 +19520421, 0.70, -0.57, 0.47, 0.005 +19520422, -0.44, 0.21, -0.27, 0.005 +19520423, -0.45, 0.20, -0.07, 0.005 +19520424, -0.42, -0.07, 0.15, 0.005 +19520425, 0.42, -0.18, 0.48, 0.005 +19520426, 0.14, 0.10, 0.18, 0.005 +19520428, -0.22, -0.24, -0.03, 0.005 +19520429, -0.34, -0.22, 0.18, 0.005 +19520430, -0.69, 0.25, -0.56, 0.005 +19520501, -0.69, -0.18, -0.53, 0.005 +19520502, 1.42, -0.24, 0.67, 0.005 +19520503, 0.30, -0.01, -0.14, 0.005 +19520505, 0.28, -0.31, 0.00, 0.005 +19520506, 0.25, -0.09, -0.06, 0.005 +19520507, 0.63, -0.35, 0.09, 0.005 +19520508, 0.28, 0.17, -0.04, 0.005 +19520509, 0.03, -0.07, -0.10, 0.005 +19520510, -0.09, 0.29, -0.06, 0.005 +19520512, -0.14, -0.05, -0.09, 0.005 +19520513, 0.17, -0.16, -0.16, 0.005 +19520514, -0.34, 0.20, -0.21, 0.005 +19520515, -0.35, -0.15, 0.12, 0.005 +19520516, 0.05, 0.15, -0.26, 0.005 +19520517, 0.02, 0.19, -0.08, 0.005 +19520519, 0.14, -0.32, -0.01, 0.005 +19520520, 0.51, -0.04, 0.09, 0.005 +19520521, 0.27, 0.04, 0.17, 0.005 +19520522, 0.63, -0.15, 0.29, 0.005 +19520523, -0.08, 0.08, 0.07, 0.005 +19520524, -0.01, 0.15, -0.06, 0.005 +19520526, 0.21, -0.13, 0.12, 0.005 +19520527, -0.19, 0.03, 0.09, 0.005 +19520528, -0.14, 0.14, 0.08, 0.005 +19520529, 0.01, -0.19, 0.10, 0.005 +19520602, -0.13, -0.06, -0.20, 0.007 +19520603, -0.08, -0.18, 0.14, 0.007 +19520604, 0.56, -0.13, 0.37, 0.007 +19520605, 0.63, -0.29, 0.47, 0.007 +19520606, 0.55, 0.03, -0.07, 0.007 +19520609, 0.38, -0.16, 0.10, 0.007 +19520610, -0.33, 0.27, -0.59, 0.007 +19520611, 0.25, -0.16, 0.35, 0.007 +19520612, 0.04, 0.00, -0.03, 0.007 +19520613, 0.20, -0.08, -0.16, 0.007 +19520616, -0.15, 0.18, -0.25, 0.007 +19520617, 0.07, -0.16, -0.01, 0.007 +19520618, 0.23, -0.02, 0.08, 0.007 +19520619, 0.31, -0.17, 0.23, 0.007 +19520620, 0.14, 0.03, -0.07, 0.007 +19520623, -0.11, -0.04, 0.17, 0.007 +19520624, 0.07, -0.29, -0.10, 0.007 +19520625, 0.35, -0.20, 0.50, 0.007 +19520626, 0.21, -0.02, 0.12, 0.007 +19520627, 0.23, -0.03, 0.06, 0.007 +19520630, 0.36, -0.10, 0.11, 0.007 +19520701, 0.53, -0.20, -0.18, 0.007 +19520702, -0.18, 0.20, -0.29, 0.007 +19520703, 0.00, 0.12, -0.07, 0.007 +19520707, -0.36, 0.17, -0.14, 0.007 +19520708, 0.05, -0.13, -0.19, 0.007 +19520709, -0.28, 0.27, -0.04, 0.007 +19520710, -0.20, -0.04, -0.12, 0.007 +19520711, 0.50, -0.22, 0.40, 0.007 +19520714, 0.07, 0.11, -0.11, 0.007 +19520715, 0.48, -0.31, 0.19, 0.007 +19520716, -0.11, -0.03, 0.15, 0.007 +19520717, -0.35, 0.05, -0.06, 0.007 +19520718, -0.65, 0.15, 0.16, 0.007 +19520721, 0.22, -0.11, -0.24, 0.007 +19520722, 0.21, 0.05, -0.12, 0.007 +19520723, 0.42, -0.21, -0.02, 0.007 +19520724, 0.33, -0.16, 0.45, 0.007 +19520725, -0.24, 0.36, -0.43, 0.007 +19520728, -0.03, 0.00, -0.04, 0.007 +19520729, 0.20, -0.11, -0.04, 0.007 +19520730, 0.21, -0.22, 0.23, 0.007 +19520731, 0.11, -0.13, 0.19, 0.007 +19520801, 0.06, 0.08, -0.12, 0.007 +19520804, -0.13, 0.07, -0.25, 0.007 +19520805, 0.04, -0.07, 0.00, 0.007 +19520806, 0.15, 0.11, -0.02, 0.007 +19520807, 0.25, -0.13, 0.25, 0.007 +19520808, -0.01, 0.20, -0.11, 0.007 +19520811, 0.03, 0.12, -0.22, 0.007 +19520812, -0.70, 0.26, -0.09, 0.007 +19520813, -0.02, -0.04, 0.11, 0.007 +19520814, -0.02, 0.08, 0.01, 0.007 +19520815, -0.20, 0.14, 0.07, 0.007 +19520818, -1.02, 0.30, -0.17, 0.007 +19520819, 0.01, -0.04, -0.03, 0.007 +19520820, 0.22, -0.06, 0.00, 0.007 +19520821, 0.14, 0.05, -0.05, 0.007 +19520822, 0.00, 0.08, 0.06, 0.007 +19520825, -0.37, 0.19, -0.02, 0.007 +19520826, -0.07, -0.02, 0.18, 0.007 +19520827, 0.36, -0.01, -0.09, 0.007 +19520828, 0.24, -0.08, 0.32, 0.007 +19520829, 0.29, -0.06, 0.20, 0.007 +19520902, 0.34, -0.14, 0.11, 0.008 +19520903, 0.21, 0.06, -0.35, 0.008 +19520904, -0.09, 0.09, -0.27, 0.008 +19520905, -0.12, 0.08, -0.28, 0.008 +19520908, -0.43, 0.20, -0.38, 0.008 +19520909, -1.06, 0.28, -0.10, 0.008 +19520910, -0.44, -0.12, 0.08, 0.008 +19520911, 0.14, 0.21, 0.04, 0.008 +19520912, -0.21, 0.20, -0.10, 0.008 +19520915, -0.95, 0.39, -0.19, 0.008 +19520916, 0.41, -0.23, 0.00, 0.008 +19520917, 0.26, 0.01, 0.15, 0.008 +19520918, -0.18, 0.17, -0.08, 0.008 +19520919, 0.21, -0.08, 0.18, 0.008 +19520922, 0.10, 0.03, 0.00, 0.008 +19520923, 0.34, -0.31, 0.32, 0.008 +19520924, 0.32, 0.06, -0.32, 0.008 +19520925, -0.01, -0.05, -0.03, 0.008 +19520926, -0.27, 0.25, -0.01, 0.008 +19520929, -0.06, -0.05, -0.14, 0.008 +19520930, -0.55, 0.10, -0.14, 0.008 +19521001, -0.25, -0.04, 0.03, 0.006 +19521002, -0.01, 0.00, 0.00, 0.006 +19521003, -0.18, 0.12, 0.11, 0.006 +19521006, -0.27, 0.11, -0.05, 0.006 +19521007, 0.04, -0.05, -0.02, 0.006 +19521008, 0.49, -0.19, 0.04, 0.006 +19521009, 0.02, 0.05, -0.02, 0.006 +19521010, -0.01, 0.18, -0.26, 0.006 +19521014, -0.35, 0.00, -0.26, 0.006 +19521015, -1.45, 0.11, -0.26, 0.006 +19521016, -0.63, -0.15, 0.07, 0.006 +19521017, 1.14, -0.18, 0.35, 0.006 +19521020, -0.32, 0.23, -0.35, 0.006 +19521021, -0.16, -0.08, -0.01, 0.006 +19521022, -0.97, 0.27, -0.05, 0.006 +19521023, 0.32, -0.36, 0.00, 0.006 +19521024, 0.41, -0.13, 0.08, 0.006 +19521027, 0.12, -0.23, -0.04, 0.006 +19521028, 0.04, -0.03, -0.11, 0.006 +19521029, 0.05, -0.22, -0.13, 0.006 +19521030, -0.02, 0.03, 0.03, 0.006 +19521031, 1.36, -0.55, 0.40, 0.006 +19521103, 0.56, -0.24, -0.16, 0.006 +19521105, 0.52, 0.02, -0.28, 0.006 +19521106, 0.38, -0.55, -0.37, 0.006 +19521107, 0.40, 0.05, 0.07, 0.006 +19521110, 0.00, 0.07, 0.04, 0.006 +19521112, -0.16, 0.32, -0.17, 0.006 +19521113, 0.09, 0.11, -0.20, 0.006 +19521114, 0.01, 0.04, -0.07, 0.006 +19521117, 0.19, -0.14, 0.25, 0.006 +19521118, 1.42, -0.36, 0.11, 0.006 +19521119, 0.71, -0.05, 0.33, 0.006 +19521120, -0.15, 0.22, 0.41, 0.006 +19521121, 0.00, 0.24, 0.09, 0.006 +19521124, 0.63, -0.15, 0.55, 0.006 +19521125, 0.12, -0.02, -0.23, 0.006 +19521126, 0.61, -0.24, 0.20, 0.006 +19521128, 0.49, -0.02, 0.35, 0.006 +19521201, 0.13, -0.04, 0.18, 0.007 +19521202, 0.27, -0.27, -0.19, 0.007 +19521203, -0.04, 0.08, -0.22, 0.007 +19521204, -0.32, 0.21, 0.00, 0.007 +19521205, 0.15, -0.18, 0.18, 0.007 +19521208, 0.41, -0.19, 0.00, 0.007 +19521209, 0.42, -0.23, -0.05, 0.007 +19521210, 0.03, -0.09, -0.40, 0.007 +19521211, 0.00, 0.05, -0.13, 0.007 +19521212, 0.31, -0.18, 0.43, 0.007 +19521215, 0.09, -0.05, 0.19, 0.007 +19521216, -0.04, -0.18, -0.02, 0.007 +19521217, -0.12, 0.13, -0.10, 0.007 +19521218, 0.00, 0.14, 0.21, 0.007 +19521219, 0.40, -0.53, 0.42, 0.007 +19521222, 0.42, -0.40, 0.25, 0.007 +19521223, -0.35, 0.10, 0.24, 0.007 +19521224, 0.06, 0.19, 0.12, 0.007 +19521226, 0.14, 0.27, -0.25, 0.007 +19521229, 0.34, -0.24, -0.29, 0.007 +19521230, 0.48, -0.25, -0.06, 0.007 +19521231, 0.10, 0.21, -0.33, 0.007 +19530102, 0.06, 0.48, 0.62, 0.008 +19530105, 0.45, 0.46, 0.10, 0.008 +19530106, -0.52, 0.36, 0.17, 0.008 +19530107, -0.33, 0.27, -0.12, 0.008 +19530108, -0.04, 0.43, 0.51, 0.008 +19530109, -0.86, 0.22, -0.10, 0.008 +19530112, -0.64, 0.44, 0.08, 0.008 +19530113, 0.57, 0.10, 0.04, 0.008 +19530114, 0.09, 0.19, -0.10, 0.008 +19530115, 0.16, 0.05, 0.14, 0.008 +19530116, -0.43, 0.05, -0.12, 0.008 +19530119, -0.07, 0.23, 0.19, 0.008 +19530120, 0.42, 0.06, 0.01, 0.008 +19530121, -0.14, 0.07, -0.01, 0.008 +19530122, 0.05, 0.20, -0.05, 0.008 +19530123, -0.13, 0.08, 0.14, 0.008 +19530126, -0.15, -0.01, 0.06, 0.008 +19530127, 0.19, -0.10, 0.10, 0.008 +19530128, 0.20, 0.03, -0.15, 0.008 +19530129, 0.32, 0.14, -0.06, 0.008 +19530130, 0.49, -0.26, -0.20, 0.008 +19530202, 0.20, 0.00, -0.34, 0.008 +19530203, 0.06, -0.03, -0.21, 0.008 +19530204, -0.10, 0.38, -0.03, 0.008 +19530205, -0.80, 0.02, -0.01, 0.008 +19530206, -0.83, 0.16, -0.64, 0.008 +19530209, -0.37, 0.15, 0.21, 0.008 +19530210, -0.14, 0.33, -0.13, 0.008 +19530211, 0.10, 0.04, 0.34, 0.008 +19530213, 0.43, -0.02, -0.02, 0.008 +19530216, -0.16, 0.27, 0.08, 0.008 +19530217, -0.48, 0.11, -0.18, 0.008 +19530218, 0.01, 0.04, 0.34, 0.008 +19530219, 0.28, 0.00, 0.26, 0.008 +19530220, 0.16, 0.00, -0.07, 0.008 +19530224, 0.62, 0.29, 0.49, 0.008 +19530225, 0.59, 0.38, -0.14, 0.008 +19530226, 0.21, -0.01, 0.04, 0.008 +19530227, -0.01, 0.07, -0.02, 0.008 +19530302, 0.06, 0.05, 0.17, 0.008 +19530303, 0.36, 0.03, -0.05, 0.008 +19530304, -0.84, 0.11, -0.13, 0.008 +19530305, 0.09, 0.06, 0.15, 0.008 +19530306, 0.36, -0.07, -0.12, 0.008 +19530309, 0.06, 0.16, -0.02, 0.008 +19530310, 0.19, -0.10, 0.07, 0.008 +19530311, 0.69, -0.22, 0.11, 0.008 +19530312, 0.00, -0.20, 0.04, 0.008 +19530313, 0.22, -0.10, 0.24, 0.008 +19530316, 0.15, -0.03, 0.29, 0.008 +19530317, 0.30, -0.14, -0.01, 0.008 +19530318, -0.03, 0.41, -0.17, 0.008 +19530319, 0.06, 0.08, -0.15, 0.008 +19530320, -0.08, 0.17, -0.11, 0.008 +19530323, -0.60, -0.09, 0.00, 0.008 +19530324, 0.54, -0.14, 0.17, 0.008 +19530325, -0.15, 0.29, -0.36, 0.008 +19530326, -0.45, -0.02, -0.19, 0.008 +19530327, 0.27, -0.02, -0.03, 0.008 +19530330, -1.53, -0.25, -0.74, 0.008 +19530331, -1.11, -0.16, 0.03, 0.008 +19530401, 0.07, 0.11, 0.17, 0.008 +19530402, -0.03, 0.19, -0.10, 0.008 +19530406, -2.13, 0.12, -0.49, 0.008 +19530407, 0.28, -0.22, 0.57, 0.008 +19530408, 0.72, 0.27, 0.18, 0.008 +19530409, -0.40, 0.12, 0.09, 0.008 +19530410, -0.17, 0.04, 0.10, 0.008 +19530413, -0.19, 0.06, 0.20, 0.008 +19530414, 0.28, -0.30, 0.37, 0.008 +19530415, 0.49, -0.01, 0.24, 0.008 +19530416, -0.23, -0.04, -0.21, 0.008 +19530417, -0.94, 0.07, -0.21, 0.008 +19530420, 0.19, -0.46, 0.37, 0.008 +19530421, -0.14, 0.39, -0.08, 0.008 +19530422, -0.75, 0.25, -0.19, 0.008 +19530423, -1.19, 0.04, 0.27, 0.008 +19530424, 0.01, -0.17, -0.02, 0.008 +19530427, 0.47, -0.03, 0.44, 0.008 +19530428, 0.47, -0.47, 0.16, 0.008 +19530429, 0.53, 0.15, -0.27, 0.008 +19530430, -0.14, 0.15, -0.01, 0.008 +19530501, 0.40, -0.17, -0.26, 0.008 +19530504, 0.91, -0.31, 0.16, 0.008 +19530505, 0.10, 0.15, -0.41, 0.008 +19530506, 0.16, -0.12, -0.08, 0.008 +19530507, -0.40, 0.03, -0.22, 0.008 +19530508, 0.23, -0.13, 0.22, 0.008 +19530511, 0.06, 0.07, -0.07, 0.008 +19530512, -0.47, 0.17, 0.13, 0.008 +19530513, -0.07, -0.03, -0.10, 0.008 +19530514, 0.47, -0.13, 0.34, 0.008 +19530515, 0.07, 0.08, 0.06, 0.008 +19530518, -0.19, 0.09, -0.03, 0.008 +19530519, -0.20, 0.03, 0.03, 0.008 +19530520, 0.94, -0.24, 0.54, 0.008 +19530521, 0.29, 0.00, -0.04, 0.008 +19530522, -0.01, 0.07, 0.09, 0.008 +19530525, -0.11, -0.07, 0.06, 0.008 +19530526, -0.30, -0.09, 0.11, 0.008 +19530527, -0.79, 0.34, -0.38, 0.008 +19530528, -0.72, 0.13, -0.16, 0.008 +19530529, 0.16, 0.05, 0.25, 0.008 +19530601, -1.40, 0.26, -0.35, 0.008 +19530602, 0.14, -0.58, 0.16, 0.008 +19530603, -0.04, 0.29, -0.02, 0.008 +19530604, -0.82, -0.11, -0.26, 0.008 +19530605, 0.18, -0.07, 0.07, 0.008 +19530608, -0.20, 0.01, 0.00, 0.008 +19530609, -1.93, -0.18, -0.30, 0.008 +19530610, -0.09, -0.50, 0.52, 0.008 +19530611, 0.85, 0.06, 0.02, 0.008 +19530612, 0.32, 0.05, -0.19, 0.008 +19530615, -0.82, 0.02, -0.36, 0.008 +19530616, -0.30, -0.23, 0.06, 0.008 +19530617, 1.23, -0.39, 0.29, 0.008 +19530618, 0.01, 0.15, 0.00, 0.008 +19530619, 0.00, -0.08, 0.06, 0.008 +19530622, 0.52, -0.06, 0.05, 0.008 +19530623, 0.56, -0.36, 0.14, 0.008 +19530624, -0.11, 0.07, -0.25, 0.008 +19530625, 0.40, -0.16, 0.00, 0.008 +19530626, -0.06, -0.11, 0.03, 0.008 +19530629, -0.16, 0.10, -0.05, 0.008 +19530630, -0.12, -0.16, -0.05, 0.008 +19530701, 0.39, -0.22, 0.20, 0.006 +19530702, 0.35, 0.05, -0.07, 0.006 +19530703, 0.26, -0.12, 0.20, 0.006 +19530706, 0.12, -0.03, -0.37, 0.006 +19530707, 0.36, -0.26, 0.26, 0.006 +19530708, 0.04, -0.04, 0.11, 0.006 +19530709, -0.33, 0.15, -0.16, 0.006 +19530710, -0.11, 0.05, -0.24, 0.006 +19530713, -0.97, 0.08, -0.14, 0.006 +19530714, -0.13, -0.23, 0.08, 0.006 +19530715, 0.29, -0.02, 0.01, 0.006 +19530716, 0.22, 0.12, -0.24, 0.006 +19530717, 0.49, -0.26, 0.40, 0.006 +19530720, -0.47, -0.02, 0.05, 0.006 +19530721, -0.23, 0.10, 0.03, 0.006 +19530722, 0.10, -0.16, -0.09, 0.006 +19530723, 0.20, 0.04, 0.12, 0.006 +19530724, 0.04, 0.24, -0.20, 0.006 +19530727, -0.58, 0.28, -0.38, 0.006 +19530728, 0.05, -0.40, 0.05, 0.006 +19530729, 0.54, -0.13, 0.25, 0.006 +19530730, 0.92, -0.21, 0.02, 0.006 +19530731, 0.84, -0.09, -0.08, 0.006 +19530803, 0.38, 0.07, -0.27, 0.008 +19530804, -0.02, 0.07, -0.13, 0.008 +19530805, 0.18, 0.06, -0.06, 0.008 +19530806, 0.40, -0.13, -0.17, 0.008 +19530807, -0.04, 0.09, -0.24, 0.008 +19530810, -0.08, 0.19, -0.46, 0.008 +19530811, -0.06, -0.07, -0.18, 0.008 +19530812, 0.43, -0.29, 0.08, 0.008 +19530813, -0.02, 0.25, -0.23, 0.008 +19530814, -0.33, 0.04, -0.23, 0.008 +19530817, -0.24, 0.00, -0.28, 0.008 +19530818, -0.48, 0.18, -0.27, 0.008 +19530819, -0.63, -0.31, -0.11, 0.008 +19530820, 0.04, 0.07, 0.25, 0.008 +19530821, 0.15, 0.01, -0.03, 0.008 +19530824, -1.11, 0.12, -0.53, 0.008 +19530825, -0.54, -0.14, 0.25, 0.008 +19530826, -0.27, 0.43, -0.22, 0.008 +19530827, -0.41, -0.21, -0.23, 0.008 +19530828, -0.23, -0.04, -0.04, 0.008 +19530831, -1.75, 0.00, -0.63, 0.008 +19530901, 0.42, -0.48, 0.15, 0.008 +19530902, 0.65, 0.18, 0.05, 0.008 +19530903, -0.24, -0.06, -0.27, 0.008 +19530904, 0.27, -0.03, 0.13, 0.008 +19530908, 0.21, -0.14, -0.15, 0.008 +19530909, 0.03, 0.06, -0.06, 0.008 +19530910, -0.86, 0.11, -0.66, 0.008 +19530911, -1.41, -0.22, -0.68, 0.008 +19530914, -1.82, -0.46, -0.49, 0.008 +19530915, 0.71, -1.32, 0.32, 0.008 +19530916, 0.73, 0.74, 0.39, 0.008 +19530917, 0.07, 0.16, -0.21, 0.008 +19530918, -0.58, 0.13, -0.24, 0.008 +19530921, -0.25, -0.07, 0.05, 0.008 +19530922, 1.32, -0.41, 0.35, 0.008 +19530923, 0.36, 0.26, 0.24, 0.008 +19530924, 0.01, 0.28, -0.13, 0.008 +19530925, 0.28, 0.20, -0.36, 0.008 +19530928, 0.60, -0.20, 0.36, 0.008 +19530929, 0.12, 0.28, -0.75, 0.008 +19530930, -0.35, 0.15, -0.42, 0.008 +19531001, 0.60, -0.18, -0.26, 0.006 +19531002, 0.39, -0.18, -0.22, 0.006 +19531005, -0.40, -0.04, -0.16, 0.006 +19531006, -0.50, -0.15, 0.16, 0.006 +19531007, 0.73, -0.17, 0.01, 0.006 +19531008, 0.22, 0.14, -0.13, 0.006 +19531009, 0.06, 0.10, -0.03, 0.006 +19531013, -0.20, 0.10, 0.10, 0.006 +19531014, 0.45, -0.17, -0.26, 0.006 +19531015, 1.18, -0.19, 0.63, 0.006 +19531016, 0.59, 0.07, 0.42, 0.006 +19531019, 0.16, -0.34, 0.20, 0.006 +19531020, 0.07, 0.16, -0.39, 0.006 +19531021, 0.02, -0.14, -0.01, 0.006 +19531022, 0.33, -0.01, -0.38, 0.006 +19531023, 0.10, 0.11, -0.20, 0.006 +19531026, -0.24, 0.16, -0.20, 0.006 +19531027, -0.30, -0.07, -0.07, 0.006 +19531028, 0.21, -0.17, 0.22, 0.006 +19531029, 0.99, -0.36, 0.40, 0.006 +19531030, 0.05, 0.00, -0.01, 0.006 +19531102, 0.43, -0.23, -0.32, 0.004 +19531104, 0.11, -0.29, -0.30, 0.004 +19531105, 0.70, -0.16, 0.33, 0.004 +19531106, 0.06, 0.09, 0.40, 0.004 +19531109, -0.09, -0.07, 0.15, 0.004 +19531110, -0.54, 0.14, -0.06, 0.004 +19531112, 0.30, -0.32, 0.10, 0.004 +19531113, 0.24, 0.25, -0.13, 0.004 +19531116, -0.55, 0.36, -0.20, 0.004 +19531117, -0.41, 0.11, -0.21, 0.004 +19531118, 0.22, -0.09, 0.18, 0.004 +19531119, 0.46, 0.01, -0.22, 0.004 +19531120, 0.06, 0.05, -0.17, 0.004 +19531123, -0.14, -0.39, -0.13, 0.004 +19531124, 0.52, -0.56, -0.03, 0.004 +19531125, 0.26, -0.01, 0.20, 0.004 +19531127, 0.63, -0.05, 0.12, 0.004 +19531130, 0.55, -0.14, 0.15, 0.004 +19531201, 0.11, -0.10, 0.11, 0.006 +19531202, 0.63, -0.08, -0.14, 0.006 +19531203, 0.20, -0.33, 0.08, 0.006 +19531204, -0.11, 0.26, -0.25, 0.006 +19531207, -0.18, 0.14, -0.26, 0.006 +19531208, -0.36, -0.14, -0.14, 0.006 +19531209, -0.01, 0.11, -0.22, 0.006 +19531210, -0.14, 0.15, -0.01, 0.006 +19531211, -0.02, -0.12, -0.01, 0.006 +19531214, -0.23, -0.13, 0.15, 0.006 +19531215, 0.00, -0.21, -0.34, 0.006 +19531216, 0.89, -0.43, 0.09, 0.006 +19531217, -0.07, 0.13, 0.09, 0.006 +19531218, 0.27, -0.11, -0.17, 0.006 +19531221, -0.17, 0.08, -0.36, 0.006 +19531222, -0.80, 0.11, -0.24, 0.006 +19531223, -0.08, 0.13, 0.20, 0.006 +19531224, 0.39, -0.01, 0.28, 0.006 +19531228, -0.44, -0.13, -0.50, 0.006 +19531229, -0.66, -0.16, -0.34, 0.006 +19531230, 0.68, -0.23, -0.31, 0.006 +19531231, 0.13, 0.20, -0.58, 0.006 +19540104, 0.73, 0.50, 1.28, 0.005 +19540105, 0.65, 0.37, 0.61, 0.005 +19540106, 0.19, 0.20, -0.08, 0.005 +19540107, -0.33, 0.41, -0.30, 0.005 +19540108, -0.40, 0.14, -0.08, 0.005 +19540111, -0.50, 0.09, -0.13, 0.005 +19540112, 0.51, -0.19, 0.30, 0.005 +19540113, 0.52, -0.03, 0.09, 0.005 +19540114, 0.46, 0.01, 0.24, 0.005 +19540115, 0.89, -0.26, 0.35, 0.005 +19540118, 0.08, 0.11, 0.15, 0.005 +19540119, 0.72, -0.44, 0.55, 0.005 +19540120, 0.27, 0.12, -0.03, 0.005 +19540121, -0.01, 0.05, -0.07, 0.005 +19540122, 0.23, -0.08, 0.06, 0.005 +19540125, 0.35, -0.27, 0.14, 0.005 +19540126, 0.74, -0.14, -0.27, 0.005 +19540127, -0.28, 0.08, 0.08, 0.005 +19540128, 0.03, -0.07, -0.02, 0.005 +19540129, 0.18, -0.17, 0.47, 0.005 +19540201, -0.22, 0.04, -0.23, 0.004 +19540202, -0.14, -0.09, 0.08, 0.004 +19540203, 0.56, -0.23, 0.10, 0.004 +19540204, 0.66, -0.23, -0.04, 0.004 +19540205, 0.34, -0.15, 0.00, 0.004 +19540208, -0.02, 0.18, 0.09, 0.004 +19540209, 0.03, 0.03, -0.07, 0.004 +19540210, -0.15, 0.31, 0.17, 0.004 +19540211, -0.13, 0.02, 0.00, 0.004 +19540212, 0.32, -0.04, 0.09, 0.004 +19540215, -0.33, 0.20, 0.10, 0.004 +19540216, -0.78, 0.19, -0.34, 0.004 +19540217, 0.27, -0.27, 0.23, 0.004 +19540218, 0.49, 0.04, -0.21, 0.004 +19540219, -0.12, 0.13, 0.13, 0.004 +19540223, -0.33, -0.04, -0.13, 0.004 +19540224, -0.06, -0.11, -0.01, 0.004 +19540225, 0.42, 0.01, -0.02, 0.004 +19540226, 0.87, -0.17, -0.21, 0.004 +19540301, 0.52, -0.28, -0.10, 0.003 +19540302, 0.25, -0.09, -0.31, 0.003 +19540303, 0.03, -0.08, 0.24, 0.003 +19540304, 0.25, -0.36, 0.17, 0.003 +19540305, 0.43, -0.13, 0.15, 0.003 +19540308, -0.21, 0.07, -0.19, 0.003 +19540309, 0.21, -0.05, -0.21, 0.003 +19540310, 0.30, 0.19, -0.10, 0.003 +19540311, 0.46, 0.01, -0.21, 0.003 +19540312, -0.09, 0.07, -0.19, 0.003 +19540315, -0.33, 0.12, -0.21, 0.003 +19540316, 0.03, 0.09, 0.06, 0.003 +19540317, 0.11, -0.19, 0.59, 0.003 +19540318, 0.52, 0.00, 0.10, 0.003 +19540319, 0.38, -0.01, -0.02, 0.003 +19540322, -0.05, 0.06, -0.23, 0.003 +19540323, -0.69, -0.02, -0.34, 0.003 +19540324, -0.47, 0.16, -0.18, 0.003 +19540325, -0.09, 0.14, -0.11, 0.003 +19540326, 0.62, 0.07, -0.13, 0.003 +19540329, 0.40, -0.06, -0.28, 0.003 +19540330, 0.30, 0.19, -0.05, 0.003 +19540331, 0.77, -0.36, 0.14, 0.003 +19540401, 0.72, -0.46, 0.27, 0.004 +19540402, 0.09, 0.07, -0.34, 0.004 +19540405, 0.06, 0.12, -0.42, 0.004 +19540406, -0.91, 0.13, 0.00, 0.004 +19540407, 0.55, -0.09, -0.01, 0.004 +19540408, 0.72, -0.24, 0.54, 0.004 +19540409, 0.44, -0.02, 0.14, 0.004 +19540412, -0.07, -0.19, -0.14, 0.004 +19540413, 0.18, -0.20, 0.27, 0.004 +19540414, 0.71, -0.46, -0.21, 0.004 +19540415, 0.40, -0.27, -0.26, 0.004 +19540419, -0.53, 0.00, -0.29, 0.004 +19540420, 0.04, -0.03, -0.31, 0.004 +19540421, -0.09, 0.06, 0.03, 0.004 +19540422, 0.21, -0.05, -0.30, 0.004 +19540423, 0.40, -0.25, 0.43, 0.004 +19540426, 0.11, -0.29, 0.18, 0.004 +19540427, -0.41, -0.09, -0.03, 0.004 +19540428, 0.23, -0.13, -0.15, 0.004 +19540429, 1.22, -0.65, 0.58, 0.004 +19540430, 0.13, -0.37, -0.29, 0.004 +19540503, -0.12, -0.12, -0.16, 0.003 +19540504, 0.12, -0.32, 0.17, 0.003 +19540505, -0.04, 0.16, -0.03, 0.003 +19540506, 0.52, -0.18, 0.02, 0.003 +19540507, 0.40, 0.02, -0.01, 0.003 +19540510, 0.09, 0.06, 0.19, 0.003 +19540511, -0.35, 0.11, -0.13, 0.003 +19540512, 0.76, -0.06, 0.39, 0.003 +19540513, -0.26, 0.31, 0.45, 0.003 +19540514, 0.49, -0.11, 0.33, 0.003 +19540517, 0.22, -0.22, 0.28, 0.003 +19540518, 0.16, 0.14, 0.14, 0.003 +19540519, -0.20, 0.11, 0.25, 0.003 +19540520, 0.35, -0.05, 0.38, 0.003 +19540521, 0.51, 0.28, -0.02, 0.003 +19540524, 0.04, 0.10, -0.20, 0.003 +19540525, -0.23, 0.05, -0.13, 0.003 +19540526, 0.54, -0.07, 0.47, 0.003 +19540527, -0.20, 0.16, -0.21, 0.003 +19540528, 0.26, 0.00, 0.20, 0.003 +19540601, 0.18, 0.25, -0.10, 0.003 +19540602, -0.18, 0.27, -0.43, 0.003 +19540603, 0.06, 0.16, 0.13, 0.003 +19540604, -0.19, 0.16, -0.15, 0.003 +19540607, -0.13, 0.00, -0.06, 0.003 +19540608, -2.04, 0.56, -0.26, 0.003 +19540609, -0.45, 0.13, 0.31, 0.003 +19540610, 0.56, 0.45, 0.02, 0.003 +19540611, 0.66, -0.29, 0.75, 0.003 +19540614, 0.06, -0.06, -0.09, 0.003 +19540615, 0.75, -0.63, 0.39, 0.003 +19540616, 0.74, -0.06, -0.06, 0.003 +19540617, -0.10, 0.06, -0.05, 0.003 +19540618, 0.04, 0.02, 0.15, 0.003 +19540621, 0.17, -0.06, -0.22, 0.003 +19540622, 0.10, -0.25, -0.14, 0.003 +19540623, 0.17, -0.29, -0.04, 0.003 +19540624, 0.58, -0.26, 0.25, 0.003 +19540625, 0.08, 0.10, -0.03, 0.003 +19540628, 0.62, -0.31, -0.59, 0.003 +19540629, 0.00, -0.01, 0.03, 0.003 +19540630, -0.54, 0.47, 0.19, 0.003 +19540701, 0.02, 0.23, -0.20, 0.002 +19540702, 0.99, -0.36, 0.07, 0.002 +19540706, 0.86, -0.19, -0.18, 0.002 +19540707, 0.02, -0.07, 0.10, 0.002 +19540708, -0.15, 0.06, 0.02, 0.002 +19540709, 0.47, -0.09, 0.36, 0.002 +19540712, 0.10, 0.12, 0.70, 0.002 +19540713, -0.27, 0.08, 0.46, 0.002 +19540714, 0.26, 0.17, 0.35, 0.002 +19540715, 0.30, 0.25, 0.23, 0.002 +19540716, -0.38, 0.47, 0.00, 0.002 +19540719, -0.30, 0.36, -0.21, 0.002 +19540720, -0.25, 0.43, 0.13, 0.002 +19540721, 0.75, -0.30, 0.48, 0.002 +19540722, 0.80, -0.40, 0.79, 0.002 +19540723, 0.18, -0.12, 0.39, 0.002 +19540726, 0.02, 0.34, -0.39, 0.002 +19540727, 0.43, -0.11, 0.63, 0.002 +19540728, 0.23, 0.03, 0.03, 0.002 +19540729, 0.37, 0.05, -0.11, 0.002 +19540730, 0.42, 0.07, 0.23, 0.002 +19540802, 0.28, 0.12, 0.28, 0.002 +19540803, 0.25, -0.22, 0.15, 0.002 +19540804, 0.01, 0.46, -0.24, 0.002 +19540805, -0.19, 0.73, -0.21, 0.002 +19540806, -1.21, 0.17, -0.62, 0.002 +19540809, -0.42, 0.49, 0.30, 0.002 +19540810, 0.85, 0.06, 0.61, 0.002 +19540811, 0.86, -0.01, 0.53, 0.002 +19540812, -0.16, 0.30, -0.35, 0.002 +19540813, 0.28, -0.06, 0.29, 0.002 +19540816, 0.73, -0.41, 0.46, 0.002 +19540817, -0.01, 0.01, -0.55, 0.002 +19540818, 0.10, 0.13, -0.23, 0.002 +19540819, 0.27, -0.20, -0.42, 0.002 +19540820, 0.12, -0.01, 0.17, 0.002 +19540823, -0.66, 0.53, -0.13, 0.002 +19540824, -0.36, 0.20, -0.40, 0.002 +19540825, -0.60, 0.03, -0.32, 0.002 +19540826, -0.30, 0.09, 0.05, 0.002 +19540827, 0.24, 0.09, -0.05, 0.002 +19540830, -0.94, 0.11, -0.47, 0.002 +19540831, -1.48, 0.12, -0.23, 0.002 +19540901, 0.82, 0.02, 0.35, 0.004 +19540902, 0.64, -0.12, -0.14, 0.004 +19540903, 0.64, 0.01, 0.55, 0.004 +19540907, 0.47, -0.32, 0.55, 0.004 +19540908, 0.12, -0.20, -0.11, 0.004 +19540909, 0.23, -0.22, 0.42, 0.004 +19540910, 0.34, 0.01, 0.40, 0.004 +19540913, 0.65, -0.28, 0.60, 0.004 +19540914, 0.32, -0.20, -0.31, 0.004 +19540915, -0.16, -0.06, -0.30, 0.004 +19540916, 0.35, 0.02, 0.26, 0.004 +19540917, 0.62, -0.09, -0.14, 0.004 +19540920, -0.37, 0.08, -0.46, 0.004 +19540921, 0.55, -0.33, 0.21, 0.004 +19540922, 0.59, -0.29, 0.13, 0.004 +19540923, 0.41, -0.42, -0.25, 0.004 +19540924, 0.50, -0.29, 0.02, 0.004 +19540927, 0.20, -0.19, -0.57, 0.004 +19540928, 0.12, -0.34, -0.41, 0.004 +19540929, -0.41, 0.38, -0.10, 0.004 +19540930, -0.41, 0.40, -0.05, 0.004 +19541001, 0.12, -0.03, 0.29, 0.003 +19541004, 0.50, -0.18, 0.00, 0.003 +19541005, 0.34, -0.14, 0.02, 0.003 +19541006, 0.24, -0.22, 0.14, 0.003 +19541007, -0.21, -0.05, 0.56, 0.003 +19541008, -0.02, 0.07, 0.04, 0.003 +19541011, -0.64, 0.40, 0.19, 0.003 +19541012, -0.37, 0.12, -0.32, 0.003 +19541013, -0.06, 0.15, 0.04, 0.003 +19541014, -1.15, 0.37, -0.50, 0.003 +19541015, -0.32, 0.29, 0.52, 0.003 +19541018, 0.32, -0.35, 0.17, 0.003 +19541019, 0.30, -0.18, 0.39, 0.003 +19541020, 0.61, -0.04, 0.38, 0.003 +19541021, 0.13, -0.09, 0.07, 0.003 +19541022, 0.12, 0.27, -0.22, 0.003 +19541025, -0.57, -0.14, -0.47, 0.003 +19541026, -0.07, 0.06, 0.03, 0.003 +19541027, 0.00, 0.07, -0.08, 0.003 +19541028, -0.23, 0.15, -0.38, 0.003 +19541029, -0.70, 0.06, -0.15, 0.003 +19541101, 0.45, -0.52, 0.13, 0.003 +19541103, 1.98, -0.47, 0.28, 0.003 +19541104, 1.01, -0.19, 0.07, 0.003 +19541105, -0.03, -0.09, 0.15, 0.003 +19541108, 0.87, -0.23, 0.70, 0.003 +19541109, 0.38, -0.10, 0.12, 0.003 +19541110, 0.35, 0.07, -0.04, 0.003 +19541111, 0.74, -0.22, 0.58, 0.003 +19541112, 0.30, -0.11, 0.47, 0.003 +19541115, -0.07, 0.00, -0.08, 0.003 +19541116, 0.51, -0.34, 0.47, 0.003 +19541117, 0.34, -0.22, 0.68, 0.003 +19541118, -0.47, 0.41, -0.66, 0.003 +19541119, 0.32, 0.58, 0.30, 0.003 +19541122, 0.56, -0.04, 0.52, 0.003 +19541123, 1.18, -0.38, 0.17, 0.003 +19541124, 0.25, -0.20, 0.26, 0.003 +19541126, 0.73, -0.34, 0.15, 0.003 +19541129, 0.25, -0.25, -0.03, 0.003 +19541130, -0.59, 0.21, -0.26, 0.003 +19541201, -0.47, 0.22, -0.27, 0.004 +19541202, 0.68, 0.42, 0.30, 0.004 +19541203, 0.93, 0.33, 0.15, 0.004 +19541206, 0.70, 0.18, 0.20, 0.004 +19541207, 0.24, -0.03, 0.40, 0.004 +19541208, 0.00, 0.10, 0.16, 0.004 +19541209, -0.34, 0.10, -0.09, 0.004 +19541210, -0.18, 0.61, 0.32, 0.004 +19541213, -0.14, 0.04, 0.40, 0.004 +19541214, -0.70, 0.24, -0.24, 0.004 +19541215, 0.42, -0.66, 0.86, 0.004 +19541216, 0.95, -0.27, 0.54, 0.004 +19541217, 0.61, -0.09, 0.51, 0.004 +19541220, 0.72, -0.12, 0.10, 0.004 +19541221, 0.15, 0.21, 0.00, 0.004 +19541222, -0.03, 0.33, 0.12, 0.004 +19541223, 0.10, 0.14, 0.39, 0.004 +19541227, -0.66, -0.05, 0.05, 0.004 +19541228, 0.91, -0.09, 1.10, 0.004 +19541229, 0.81, -0.02, 0.41, 0.004 +19541230, 0.08, 0.27, -0.06, 0.004 +19541231, 0.61, 0.14, -0.01, 0.004 +19550103, 1.08, -0.43, -0.18, 0.004 +19550104, -0.42, 0.24, -0.16, 0.004 +19550105, -2.12, 0.21, -1.27, 0.004 +19550106, -1.37, 0.20, -0.24, 0.004 +19550107, 1.11, 0.32, 1.28, 0.004 +19550110, 1.43, 0.01, 0.62, 0.004 +19550111, -0.18, 0.18, -0.35, 0.004 +19550112, -0.22, -0.04, 0.25, 0.004 +19550113, -0.49, 0.27, -0.15, 0.004 +19550114, -0.38, 0.45, -0.05, 0.004 +19550117, -1.90, 0.63, -0.73, 0.004 +19550118, 0.67, -0.33, 0.53, 0.004 +19550119, 0.49, 0.43, -0.10, 0.004 +19550120, 0.26, 0.12, -0.49, 0.004 +19550121, 0.66, -0.17, 0.57, 0.004 +19550124, 0.13, -0.25, 0.16, 0.004 +19550125, -0.11, -0.34, 0.42, 0.004 +19550126, 0.71, -0.90, 1.25, 0.004 +19550127, 0.16, 0.26, -0.01, 0.004 +19550128, 0.42, -0.13, 0.38, 0.004 +19550131, 0.75, -0.54, 0.49, 0.004 +19550201, 0.42, -0.33, -0.51, 0.004 +19550202, -0.10, 0.09, -0.32, 0.004 +19550203, -0.11, 0.56, 0.30, 0.004 +19550204, 1.03, -0.44, -0.42, 0.004 +19550207, 0.28, 0.30, -0.50, 0.004 +19550208, -0.80, 0.12, -0.54, 0.004 +19550209, 1.07, -0.17, 1.09, 0.004 +19550210, 0.78, 0.04, 0.08, 0.004 +19550211, 0.17, -0.17, -0.12, 0.004 +19550214, -0.25, 0.50, 0.14, 0.004 +19550215, 0.31, 0.33, -0.07, 0.004 +19550216, -0.26, 0.39, -0.04, 0.004 +19550217, 0.13, 0.29, 0.12, 0.004 +19550218, 0.27, 0.00, 0.24, 0.004 +19550221, 0.06, 0.35, 0.17, 0.004 +19550223, 0.07, -0.19, 0.33, 0.004 +19550224, -0.49, -0.22, -0.03, 0.004 +19550225, -0.10, 0.38, -0.14, 0.004 +19550228, 0.51, -0.35, 0.88, 0.004 +19550301, 0.32, -0.36, 0.51, 0.004 +19550302, 0.80, -0.05, 0.65, 0.004 +19550303, 0.27, 0.01, -0.63, 0.004 +19550304, 0.39, -0.25, -0.01, 0.004 +19550307, -0.39, 0.11, -0.26, 0.004 +19550308, -1.83, 0.08, -0.79, 0.004 +19550309, -1.22, -0.71, 0.18, 0.004 +19550310, 0.79, 0.66, 0.42, 0.004 +19550311, -1.54, 0.06, -0.43, 0.004 +19550314, -2.43, -0.20, -0.31, 0.004 +19550315, 1.91, -0.13, 1.03, 0.004 +19550316, 0.94, 0.34, 0.18, 0.004 +19550317, 0.42, -0.03, 0.08, 0.004 +19550318, 0.15, 0.22, -0.41, 0.004 +19550321, -0.54, 0.16, -0.13, 0.004 +19550322, 0.53, -0.43, 0.86, 0.004 +19550323, 1.19, 0.08, 0.31, 0.004 +19550324, 0.84, -0.38, 0.14, 0.004 +19550325, 0.27, -0.17, 0.04, 0.004 +19550328, -0.34, 0.01, 0.05, 0.004 +19550329, 0.09, 0.09, 0.67, 0.004 +19550330, -0.88, 0.17, -0.74, 0.004 +19550331, 0.22, 0.12, 0.58, 0.004 +19550401, 0.83, -0.44, 0.66, 0.005 +19550404, -0.15, 0.24, -0.36, 0.005 +19550405, 0.38, -0.30, 0.25, 0.005 +19550406, 0.18, -0.11, 0.19, 0.005 +19550407, 0.40, -0.25, 0.11, 0.005 +19550411, 0.22, -0.27, -0.32, 0.005 +19550412, 0.44, -0.26, 0.36, 0.005 +19550413, 0.28, -0.07, -0.13, 0.005 +19550414, 0.08, 0.14, -0.33, 0.005 +19550415, 0.40, 0.13, 0.49, 0.005 +19550418, 0.60, -0.52, -0.12, 0.005 +19550419, -0.16, -0.13, 0.26, 0.005 +19550420, 0.18, 0.01, 0.18, 0.005 +19550421, -0.08, -0.04, 0.04, 0.005 +19550422, -0.75, 0.04, -0.26, 0.005 +19550425, 0.26, -0.14, 0.84, 0.005 +19550426, 0.57, -0.40, -0.01, 0.005 +19550427, -0.40, 0.10, -0.63, 0.005 +19550428, -0.81, 0.47, -0.52, 0.005 +19550429, 0.60, 0.03, 0.17, 0.005 +19550502, 0.13, -0.41, -0.02, 0.007 +19550503, -0.85, -0.24, -0.76, 0.007 +19550504, 0.12, 0.01, 0.38, 0.007 +19550505, 0.47, 0.09, 0.04, 0.007 +19550506, 0.30, 0.03, 0.40, 0.007 +19550509, 0.11, -0.13, 0.00, 0.007 +19550510, -0.20, -0.20, -0.46, 0.007 +19550511, -0.93, 0.27, -0.33, 0.007 +19550512, -0.58, 0.32, -0.49, 0.007 +19550513, 0.57, 0.07, 0.42, 0.007 +19550516, -1.02, 0.12, -0.68, 0.007 +19550517, -0.05, 0.12, 0.07, 0.007 +19550518, 0.77, -0.02, 0.64, 0.007 +19550519, 0.67, 0.10, 0.09, 0.007 +19550520, 0.66, -0.10, 0.19, 0.007 +19550523, -0.64, 0.34, -0.55, 0.007 +19550524, 0.11, -0.12, 0.19, 0.007 +19550525, 0.48, -0.12, 0.23, 0.007 +19550526, 0.70, -0.50, 0.38, 0.007 +19550527, 0.14, 0.03, -0.40, 0.007 +19550531, 0.03, 0.02, -0.15, 0.007 +19550601, 0.18, -0.21, -0.34, 0.005 +19550602, 0.29, -0.24, 0.15, 0.005 +19550603, 0.64, -0.46, 0.58, 0.005 +19550606, 0.53, -0.71, 0.87, 0.005 +19550607, 0.69, -0.54, 0.56, 0.005 +19550608, 0.52, -0.38, 0.17, 0.005 +19550609, -0.51, 0.17, -0.72, 0.005 +19550610, 0.51, -0.33, 0.48, 0.005 +19550613, 0.89, -0.79, 0.19, 0.005 +19550614, -0.02, -0.02, -0.14, 0.005 +19550615, 0.68, -0.18, -0.04, 0.005 +19550616, 0.15, 0.10, -0.08, 0.005 +19550617, 0.28, -0.09, 0.27, 0.005 +19550620, 0.23, -0.10, -0.31, 0.005 +19550621, 0.45, -0.14, -0.14, 0.005 +19550622, 0.19, -0.12, 0.47, 0.005 +19550623, 0.11, -0.06, -0.36, 0.005 +19550624, 0.11, 0.08, -0.24, 0.005 +19550627, 0.08, -0.34, 0.50, 0.005 +19550628, -0.35, 0.28, -0.46, 0.005 +19550629, 0.13, -0.17, 0.28, 0.005 +19550630, 0.56, -0.19, 0.16, 0.005 +19550701, 0.39, -0.12, 0.12, 0.005 +19550705, 0.91, -0.54, -0.23, 0.005 +19550706, 1.20, -1.44, -1.03, 0.005 +19550707, -1.39, 0.07, 0.16, 0.005 +19550708, -0.10, 0.08, 0.01, 0.005 +19550711, 0.47, -0.07, 0.37, 0.005 +19550712, -0.13, 0.20, -0.06, 0.005 +19550713, -0.95, 0.32, 0.38, 0.005 +19550714, 0.21, 0.00, 0.38, 0.005 +19550715, 0.42, 0.02, 0.33, 0.005 +19550718, -0.15, -0.17, 0.08, 0.005 +19550719, -0.58, 0.48, -0.02, 0.005 +19550720, 0.23, 0.20, 0.34, 0.005 +19550721, 0.76, 0.13, -0.20, 0.005 +19550722, 0.71, -0.29, 0.35, 0.005 +19550725, 0.48, -0.10, -0.23, 0.005 +19550726, -0.01, -0.38, 0.14, 0.005 +19550727, 0.05, -0.11, 0.00, 0.005 +19550728, -0.48, 0.27, -0.15, 0.005 +19550729, -0.13, 0.10, -0.12, 0.005 +19550801, -1.14, 0.28, 0.01, 0.007 +19550802, 0.11, 0.18, 0.08, 0.007 +19550803, 0.21, 0.10, -0.16, 0.007 +19550804, -1.24, 0.31, -0.12, 0.007 +19550805, 0.53, 0.02, -0.06, 0.007 +19550808, -0.49, -0.09, 0.05, 0.007 +19550809, -1.04, 0.15, -0.12, 0.007 +19550810, 0.14, 0.04, -0.19, 0.007 +19550811, 0.84, -0.39, 0.57, 0.007 +19550812, 0.28, 0.00, -0.17, 0.007 +19550815, -0.15, 0.00, 0.11, 0.007 +19550816, -0.53, 0.10, 0.29, 0.007 +19550817, -0.04, -0.24, 0.24, 0.007 +19550818, -0.01, 0.05, 0.15, 0.007 +19550819, 0.14, -0.01, 0.07, 0.007 +19550822, -0.11, -0.19, 0.12, 0.007 +19550823, 0.94, -0.64, 0.27, 0.007 +19550824, 0.38, 0.00, 0.15, 0.007 +19550825, 0.45, -0.03, -0.07, 0.007 +19550826, 0.39, 0.00, -0.20, 0.007 +19550829, 0.08, 0.06, -0.16, 0.007 +19550830, 0.02, 0.00, -0.17, 0.007 +19550831, 0.50, -0.09, -0.12, 0.007 +19550901, 0.28, -0.01, -0.22, 0.008 +19550902, 0.43, -0.09, 0.09, 0.008 +19550906, 0.56, -0.24, 0.01, 0.008 +19550907, 0.03, -0.22, 0.43, 0.008 +19550908, 0.19, 0.20, 0.04, 0.008 +19550909, 0.13, 0.08, 0.16, 0.008 +19550912, 0.45, -0.12, -0.35, 0.008 +19550913, 0.63, -0.46, -0.48, 0.008 +19550914, 0.23, -0.09, 0.35, 0.008 +19550915, -0.13, 0.26, 0.01, 0.008 +19550916, 0.44, -0.03, -0.12, 0.008 +19550919, 0.02, 0.00, -0.23, 0.008 +19550920, -0.04, 0.14, 0.03, 0.008 +19550921, 0.43, -0.15, -0.17, 0.008 +19550922, 0.04, 0.03, 0.10, 0.008 +19550923, 0.39, -0.29, 0.22, 0.008 +19550926, -6.52, 0.40, -0.48, 0.008 +19550927, 2.17, -0.36, -0.56, 0.008 +19550928, 1.27, 0.45, -0.20, 0.008 +19550929, -0.61, 0.52, 0.32, 0.008 +19550930, -0.50, 0.32, -0.11, 0.008 +19551003, -2.24, 0.57, 0.02, 0.009 +19551004, 0.48, 0.08, -0.07, 0.009 +19551005, 0.51, 0.04, 0.20, 0.009 +19551006, -0.41, 0.36, -0.21, 0.009 +19551007, -0.77, -0.01, -0.13, 0.009 +19551010, -2.56, 0.53, -0.24, 0.009 +19551011, -0.73, 0.04, 0.34, 0.009 +19551012, 1.37, -0.26, 0.04, 0.009 +19551013, -0.14, -0.03, 0.01, 0.009 +19551014, -0.16, -0.05, 0.33, 0.009 +19551017, 0.31, -0.09, 0.27, 0.009 +19551018, 0.42, -0.07, -0.01, 0.009 +19551019, 0.82, -0.17, -0.01, 0.009 +19551020, 0.93, -0.10, -0.28, 0.009 +19551021, 0.10, -0.04, 0.27, 0.009 +19551024, 0.57, -0.31, 0.02, 0.009 +19551025, -0.48, 0.17, 0.11, 0.009 +19551026, -0.62, 0.39, -0.09, 0.009 +19551027, -0.21, 0.20, -0.30, 0.009 +19551028, 0.27, -0.02, -0.08, 0.009 +19551031, -0.08, 0.19, -0.12, 0.009 +19551101, 0.02, -0.10, -0.11, 0.008 +19551102, 0.18, -0.05, 0.15, 0.008 +19551103, 1.40, -0.63, -0.14, 0.008 +19551104, 1.34, -0.71, -0.17, 0.008 +19551107, 0.58, -0.15, -0.04, 0.008 +19551109, 0.85, -0.52, -0.31, 0.008 +19551110, -0.12, 0.09, 0.31, 0.008 +19551111, 0.78, -0.04, 0.07, 0.008 +19551114, 1.45, -0.71, -0.57, 0.008 +19551115, 0.14, -0.21, -0.12, 0.008 +19551116, -0.24, 0.14, 0.37, 0.008 +19551117, -0.40, 0.40, -0.10, 0.008 +19551118, -0.16, 0.16, -0.19, 0.008 +19551121, -0.59, 0.28, 0.47, 0.008 +19551122, 0.84, -0.42, 0.20, 0.008 +19551123, 0.28, -0.29, -0.02, 0.008 +19551125, 0.35, -0.25, 0.61, 0.008 +19551128, -0.41, 0.26, 0.33, 0.008 +19551129, 0.34, 0.06, -0.10, 0.008 +19551130, 0.23, 0.34, -0.20, 0.008 +19551201, -0.15, 0.38, -0.13, 0.009 +19551202, 0.27, 0.17, -0.19, 0.009 +19551205, 0.51, 0.00, -0.30, 0.009 +19551206, 0.10, 0.28, -0.11, 0.009 +19551207, -0.13, 0.55, -0.62, 0.009 +19551208, 0.45, 0.04, -0.19, 0.009 +19551209, 0.05, 0.16, 0.22, 0.009 +19551212, -0.67, 0.12, 0.14, 0.009 +19551213, 0.01, 0.05, 0.19, 0.009 +19551214, -0.63, 0.54, -0.18, 0.009 +19551215, 0.02, 0.02, -0.14, 0.009 +19551216, 0.32, 0.10, -0.18, 0.009 +19551219, -0.09, 0.25, -0.07, 0.009 +19551220, -0.09, 0.09, -0.25, 0.009 +19551221, 0.82, -0.35, -0.08, 0.009 +19551222, 0.22, 0.16, -0.06, 0.009 +19551223, 0.16, -0.12, 0.16, 0.009 +19551227, -0.27, -0.02, 0.31, 0.009 +19551228, -0.24, -0.01, -0.05, 0.009 +19551229, 0.05, -0.25, -0.18, 0.009 +19551230, 0.81, -0.13, -0.52, 0.009 +19560103, -0.65, 0.13, 0.09, 0.010 +19560104, -0.53, 0.33, -0.17, 0.010 +19560105, 0.12, 0.42, -0.04, 0.010 +19560106, 0.45, -0.11, 0.35, 0.010 +19560109, -1.27, 0.24, 0.02, 0.010 +19560110, -0.75, 0.00, 0.07, 0.010 +19560111, 0.62, 0.21, -0.11, 0.010 +19560112, 0.61, -0.01, -0.02, 0.010 +19560113, -0.04, -0.07, 0.10, 0.010 +19560116, -1.02, 0.31, -0.24, 0.010 +19560117, 0.47, -0.22, 0.00, 0.010 +19560118, -0.81, 0.27, -0.16, 0.010 +19560119, -1.02, 0.23, -0.01, 0.010 +19560120, -0.72, 0.10, -0.02, 0.010 +19560123, -0.37, -0.18, 0.05, 0.010 +19560124, 1.28, -0.25, 0.20, 0.010 +19560125, 0.36, -0.15, 0.13, 0.010 +19560126, -0.54, 0.05, 0.42, 0.010 +19560127, -0.24, -0.11, 0.01, 0.010 +19560130, 0.21, -0.02, -0.06, 0.010 +19560131, 0.82, -0.73, 0.53, 0.010 +19560201, 0.58, -0.25, -0.22, 0.010 +19560202, 0.20, -0.10, -0.32, 0.010 +19560203, 0.91, -0.47, -0.55, 0.010 +19560206, -0.01, 0.15, -0.26, 0.010 +19560207, -0.21, -0.01, 0.15, 0.010 +19560208, -1.02, 0.22, -0.20, 0.010 +19560209, -1.00, 0.34, 0.22, 0.010 +19560210, 0.27, -0.08, 0.13, 0.010 +19560213, -0.10, 0.02, 0.08, 0.010 +19560214, -0.38, 0.12, 0.06, 0.010 +19560215, 1.17, -0.06, 0.07, 0.010 +19560216, -0.16, 0.22, 0.10, 0.010 +19560217, 1.43, -0.65, 0.37, 0.010 +19560220, 0.08, 0.09, 0.49, 0.010 +19560221, 0.18, 0.05, -0.01, 0.010 +19560223, 1.07, -0.24, -0.20, 0.010 +19560224, 0.68, -0.44, -0.01, 0.010 +19560227, -0.06, 0.14, -0.12, 0.010 +19560228, 0.39, -0.12, -0.21, 0.010 +19560229, -0.26, 0.04, -0.09, 0.010 +19560301, 0.59, -0.22, -0.08, 0.007 +19560302, 0.72, -0.31, 0.29, 0.007 +19560305, 0.61, -0.02, 0.13, 0.007 +19560306, -0.08, 0.17, -0.42, 0.007 +19560307, 0.00, 0.28, 0.03, 0.007 +19560308, 0.35, -0.10, 0.19, 0.007 +19560309, 1.13, -0.22, -0.11, 0.007 +19560312, 0.73, -0.38, -0.16, 0.007 +19560313, 0.00, 0.03, -0.18, 0.007 +19560314, 0.61, -0.39, 0.01, 0.007 +19560315, 0.60, -0.24, -0.29, 0.007 +19560316, 0.05, -0.13, 0.00, 0.007 +19560319, 0.58, -0.36, 0.00, 0.007 +19560320, 0.26, -0.47, 0.22, 0.007 +19560321, -0.88, 0.55, 0.08, 0.007 +19560322, 0.60, -0.31, 0.08, 0.007 +19560323, 0.44, -0.13, -0.13, 0.007 +19560326, 0.03, 0.15, -0.12, 0.007 +19560327, -0.55, 0.21, -0.36, 0.007 +19560328, 0.38, -0.18, 0.38, 0.007 +19560329, 0.25, -0.25, 0.32, 0.007 +19560402, 0.66, -0.54, -0.13, 0.009 +19560403, -0.26, 0.16, -0.37, 0.009 +19560404, 0.27, -0.08, -0.12, 0.009 +19560405, -0.43, 0.15, 0.08, 0.009 +19560406, 0.51, -0.18, 0.03, 0.009 +19560409, -0.50, 0.44, -0.11, 0.009 +19560410, -1.33, 0.55, -0.09, 0.009 +19560411, 0.78, -0.18, 0.02, 0.009 +19560412, -0.56, 0.51, 0.17, 0.009 +19560413, 0.05, 0.21, 0.35, 0.009 +19560416, -0.02, -0.03, 0.11, 0.009 +19560417, -0.06, 0.00, -0.16, 0.009 +19560418, -0.21, 0.15, -0.08, 0.009 +19560419, -0.36, 0.06, -0.08, 0.009 +19560420, 0.47, -0.37, 0.44, 0.009 +19560423, -0.04, -0.05, 0.32, 0.009 +19560424, -0.83, 0.34, -0.05, 0.009 +19560425, -0.26, 0.02, 0.53, 0.009 +19560426, 0.78, -0.28, -0.25, 0.009 +19560427, 0.96, -0.36, -0.28, 0.009 +19560430, 0.68, -0.49, -0.50, 0.009 +19560501, -0.31, 0.06, -0.32, 0.010 +19560502, 0.05, 0.26, -0.21, 0.010 +19560503, 0.43, -0.17, 0.29, 0.010 +19560504, 0.52, 0.03, -0.29, 0.010 +19560507, -0.30, 0.10, -0.15, 0.010 +19560508, -0.29, -0.08, 0.24, 0.010 +19560509, 0.02, -0.10, 0.57, 0.010 +19560510, -1.35, 0.44, -0.34, 0.010 +19560511, 0.19, 0.42, -0.22, 0.010 +19560514, -1.10, 0.36, -0.39, 0.010 +19560515, -0.54, -0.05, 0.24, 0.010 +19560516, -0.16, 0.18, 0.34, 0.010 +19560517, 0.73, -0.24, -0.08, 0.010 +19560518, -0.28, 0.24, 0.24, 0.010 +19560521, -1.04, 0.09, -0.27, 0.010 +19560522, -1.26, 0.37, -0.14, 0.010 +19560523, -0.39, 0.38, -0.10, 0.010 +19560524, -1.29, -0.10, -0.02, 0.010 +19560525, 0.02, -0.28, 0.13, 0.010 +19560528, -1.21, -0.25, -0.31, 0.010 +19560529, 2.24, -0.25, -0.54, 0.010 +19560531, 0.08, 0.13, -0.04, 0.010 +19560601, 0.49, -0.28, -0.23, 0.009 +19560604, 0.45, -0.35, 0.01, 0.009 +19560605, 0.08, 0.19, -0.05, 0.009 +19560606, -0.34, 0.10, -0.11, 0.009 +19560607, 0.60, -0.13, -0.08, 0.009 +19560608, -1.75, -0.41, 0.01, 0.009 +19560611, 1.19, -0.06, 0.00, 0.009 +19560612, 1.28, -0.55, -0.17, 0.009 +19560613, 0.25, 0.29, 0.08, 0.009 +19560614, -0.24, -0.03, 0.26, 0.009 +19560615, 0.19, -0.07, -0.14, 0.009 +19560618, -0.60, 0.48, -0.02, 0.009 +19560619, 0.34, -0.26, -0.32, 0.009 +19560620, 0.27, -0.07, -0.26, 0.009 +19560621, 0.48, -0.23, 0.20, 0.009 +19560622, -0.10, 0.15, -0.12, 0.009 +19560625, -0.42, 0.20, -0.20, 0.009 +19560626, 0.58, -0.16, -0.04, 0.009 +19560627, 0.60, -0.01, -0.24, 0.009 +19560628, 0.13, -0.30, 0.15, 0.009 +19560629, -0.01, 0.05, -0.01, 0.009 +19560702, 0.01, -0.16, -0.16, 0.010 +19560703, 0.61, -0.19, -0.32, 0.010 +19560705, 0.82, -0.23, -0.11, 0.010 +19560706, 0.45, -0.22, 0.07, 0.010 +19560709, 0.36, 0.05, 0.07, 0.010 +19560710, 0.41, 0.08, -0.06, 0.010 +19560711, 0.24, 0.12, 0.08, 0.010 +19560712, -0.25, 0.16, 0.20, 0.010 +19560713, 0.47, -0.15, 0.19, 0.010 +19560716, 0.68, -0.47, -0.12, 0.010 +19560717, 0.36, -0.15, -0.01, 0.010 +19560718, -0.07, -0.12, 0.17, 0.010 +19560719, 0.02, -0.02, -0.04, 0.010 +19560720, 0.21, 0.06, -0.05, 0.010 +19560723, 0.06, -0.28, 0.18, 0.010 +19560724, -0.10, 0.07, 0.22, 0.010 +19560725, 0.19, -0.18, 0.03, 0.010 +19560726, 0.21, 0.01, -0.27, 0.010 +19560727, -0.66, 0.18, -0.10, 0.010 +19560730, 0.00, -0.07, 0.11, 0.010 +19560731, 0.66, -0.17, -0.02, 0.010 +19560801, 0.13, -0.03, -0.05, 0.007 +19560802, 0.52, 0.07, -0.69, 0.007 +19560803, -0.16, 0.03, -0.12, 0.007 +19560806, -1.40, 0.39, 0.15, 0.007 +19560807, 0.74, -0.22, 0.05, 0.007 +19560808, 0.59, -0.07, -0.25, 0.007 +19560809, 0.11, 0.15, 0.05, 0.007 +19560810, -0.43, 0.06, -0.11, 0.007 +19560813, -0.76, 0.15, 0.08, 0.007 +19560814, 0.36, -0.13, -0.08, 0.007 +19560815, -0.02, 0.14, -0.08, 0.007 +19560816, -0.10, 0.09, -0.17, 0.007 +19560817, -0.01, 0.19, -0.03, 0.007 +19560820, -0.94, 0.28, 0.18, 0.007 +19560821, -1.08, -0.08, 0.17, 0.007 +19560822, -0.42, 0.40, 0.31, 0.007 +19560823, 0.83, -0.13, -0.30, 0.007 +19560824, 0.07, 0.28, -0.14, 0.007 +19560827, -0.56, 0.21, -0.05, 0.007 +19560828, -0.36, 0.21, 0.12, 0.007 +19560829, -0.40, 0.09, 0.35, 0.007 +19560830, -0.93, -0.03, 0.08, 0.007 +19560831, 1.05, -0.11, -0.18, 0.007 +19560904, 0.75, -0.17, -0.29, 0.010 +19560905, 0.36, 0.03, -0.42, 0.010 +19560906, 0.11, 0.02, -0.06, 0.010 +19560907, -0.53, 0.34, 0.07, 0.010 +19560910, -0.41, 0.16, 0.10, 0.010 +19560911, -0.64, 0.26, 0.00, 0.010 +19560912, -0.54, 0.03, 0.11, 0.010 +19560913, -0.17, 0.13, -0.10, 0.010 +19560914, 0.40, -0.64, 0.98, 0.010 +19560917, -0.21, 0.02, 0.05, 0.010 +19560918, -0.78, 0.29, 0.06, 0.010 +19560919, -0.93, 0.36, 0.39, 0.010 +19560920, -0.26, -0.05, 0.21, 0.010 +19560921, 0.69, 0.10, 0.17, 0.010 +19560924, -0.54, 0.24, -0.17, 0.010 +19560925, -1.38, 0.15, 0.33, 0.010 +19560926, -0.05, -0.27, 0.50, 0.010 +19560927, -0.43, 0.44, -0.28, 0.010 +19560928, -0.68, 0.19, 0.19, 0.010 +19561001, -1.52, 0.13, -0.04, 0.011 +19561002, 1.73, -0.33, -0.13, 0.011 +19561003, 1.49, -0.50, -0.31, 0.011 +19561004, -0.05, 0.19, -0.21, 0.011 +19561005, 0.36, 0.00, 0.34, 0.011 +19561008, 0.01, -0.03, 0.12, 0.011 +19561009, -0.47, 0.33, -0.20, 0.011 +19561010, 1.04, -0.53, -0.16, 0.011 +19561011, 0.14, 0.22, -0.19, 0.011 +19561012, 0.26, -0.04, 0.28, 0.011 +19561015, 0.02, -0.01, -0.03, 0.011 +19561016, -0.38, -0.02, 0.48, 0.011 +19561017, -0.70, 0.35, 0.24, 0.011 +19561018, 0.16, -0.19, 0.19, 0.011 +19561019, -0.03, 0.16, 0.45, 0.011 +19561022, -0.20, -0.13, -0.01, 0.011 +19561023, -0.07, 0.09, -0.22, 0.011 +19561024, -0.39, 0.18, -0.29, 0.011 +19561025, -0.30, 0.02, 0.03, 0.011 +19561026, 0.88, -0.21, 0.13, 0.011 +19561029, 0.17, 0.25, -0.59, 0.011 +19561030, -0.20, -0.12, 0.18, 0.011 +19561031, -1.37, 0.12, -0.13, 0.011 +19561101, 1.75, -0.63, 0.18, 0.010 +19561102, 0.83, -0.22, -0.27, 0.010 +19561105, 1.39, -0.64, -0.35, 0.010 +19561107, -0.62, 0.45, -0.02, 0.010 +19561108, -0.74, 0.11, 0.13, 0.010 +19561109, -0.49, 0.49, -0.23, 0.010 +19561112, 0.50, -0.11, 0.36, 0.010 +19561113, -0.03, 0.05, 0.53, 0.010 +19561114, -0.65, -0.04, 0.42, 0.010 +19561115, -0.50, 0.54, 0.42, 0.010 +19561116, -0.08, 0.03, 0.19, 0.010 +19561119, -1.02, 0.30, 0.22, 0.010 +19561120, -0.59, 0.04, 0.17, 0.010 +19561121, -0.23, -0.07, -0.16, 0.010 +19561123, 0.94, -0.46, -0.06, 0.010 +19561126, -0.32, 0.47, 0.34, 0.010 +19561127, 0.03, -0.15, 0.05, 0.010 +19561128, -0.99, 0.54, -0.08, 0.010 +19561129, -0.25, -0.32, 0.10, 0.010 +19561130, 1.51, -0.71, -0.25, 0.010 +19561203, 1.57, -0.69, -0.18, 0.012 +19561204, -0.07, 0.30, -0.85, 0.012 +19561205, 0.94, -0.25, -0.21, 0.012 +19561206, 0.52, -0.63, 0.58, 0.012 +19561207, 0.26, 0.13, -0.18, 0.012 +19561210, -0.30, 0.37, 0.04, 0.012 +19561211, -0.45, 0.37, -0.07, 0.012 +19561212, -0.63, 0.70, -0.33, 0.012 +19561213, 0.68, -0.19, 0.37, 0.012 +19561214, 0.19, 0.31, -0.47, 0.012 +19561217, -0.05, -0.03, -0.06, 0.012 +19561218, 0.01, -0.09, -0.22, 0.012 +19561219, -0.27, 0.15, -0.28, 0.012 +19561220, -0.62, 0.23, -0.02, 0.012 +19561221, 0.59, -0.30, 0.41, 0.012 +19561226, 0.24, -0.12, -0.34, 0.012 +19561227, -0.08, -0.09, -0.21, 0.012 +19561228, 0.24, -0.07, 0.06, 0.012 +19561231, 0.36, -0.17, -0.11, 0.012 +19570102, -0.73, 0.65, 0.84, 0.012 +19570103, 0.79, -0.02, 0.25, 0.012 +19570104, 0.17, 0.10, 0.43, 0.012 +19570107, -0.46, 0.32, 0.66, 0.012 +19570108, -0.13, 0.46, 0.05, 0.012 +19570109, -0.19, 0.37, 0.19, 0.012 +19570110, 0.37, 0.32, 0.27, 0.012 +19570111, -0.10, 0.45, 0.12, 0.012 +19570114, -0.72, 0.33, -0.19, 0.012 +19570115, -1.11, 0.37, 0.19, 0.012 +19570116, -0.06, 0.20, 0.09, 0.012 +19570117, -0.30, -0.21, -0.02, 0.012 +19570118, -1.22, 0.25, -0.04, 0.012 +19570121, -0.34, 0.01, -0.23, 0.012 +19570122, 0.32, 0.25, -0.09, 0.012 +19570123, 0.56, -0.23, 0.20, 0.012 +19570124, 0.24, 0.14, -0.15, 0.012 +19570125, -0.51, -0.15, -0.04, 0.012 +19570128, -0.69, -0.09, -0.06, 0.012 +19570129, 0.23, 0.03, 0.30, 0.012 +19570130, 0.53, -0.43, 0.08, 0.012 +19570131, -0.27, 0.34, -0.04, 0.012 +19570201, -0.39, -0.03, -0.16, 0.013 +19570204, -0.19, 0.22, -0.10, 0.013 +19570205, -1.26, -0.16, -0.16, 0.013 +19570206, 0.15, -0.09, 0.23, 0.013 +19570207, -0.36, 0.05, -0.13, 0.013 +19570208, -0.42, -0.03, -0.11, 0.013 +19570211, -1.73, 0.15, -0.60, 0.013 +19570212, -0.54, -0.30, 0.18, 0.013 +19570213, 1.55, -0.14, 0.13, 0.013 +19570214, 0.05, 0.06, 0.01, 0.013 +19570215, 1.23, -0.27, -0.17, 0.013 +19570218, -0.22, 0.46, -0.37, 0.013 +19570219, 0.20, -0.25, -0.08, 0.013 +19570220, 0.45, -0.37, -0.11, 0.013 +19570221, -0.39, 0.10, -0.02, 0.013 +19570225, 0.01, -0.14, 0.20, 0.013 +19570226, 0.19, -0.09, -0.02, 0.013 +19570227, -0.18, -0.03, 0.41, 0.013 +19570228, -0.19, 0.08, 0.18, 0.013 +19570301, 0.89, -0.39, -0.13, 0.011 +19570304, 0.68, -0.15, -0.15, 0.011 +19570305, 0.42, -0.24, -0.08, 0.011 +19570306, 0.31, 0.02, -0.44, 0.011 +19570307, -0.26, 0.44, -0.23, 0.011 +19570308, -0.35, -0.02, 0.08, 0.011 +19570311, -0.54, 0.43, -0.04, 0.011 +19570312, -0.02, -0.13, 0.11, 0.011 +19570313, 0.56, 0.21, 0.02, 0.011 +19570314, 0.09, -0.12, 0.10, 0.011 +19570315, 0.13, 0.18, 0.02, 0.011 +19570318, -0.40, 0.03, -0.04, 0.011 +19570319, 0.36, 0.02, -0.10, 0.011 +19570320, 0.13, 0.39, -0.04, 0.011 +19570321, 0.03, -0.17, 0.04, 0.011 +19570322, -0.16, 0.07, 0.36, 0.011 +19570325, -0.42, 0.09, 0.08, 0.011 +19570326, 0.15, -0.13, -0.12, 0.011 +19570327, 0.30, -0.13, -0.06, 0.011 +19570328, 0.34, -0.08, 0.12, 0.011 +19570329, -0.14, -0.02, -0.03, 0.011 +19570401, -0.01, -0.17, -0.12, 0.012 +19570402, 0.59, -0.23, -0.10, 0.012 +19570403, 0.35, 0.01, 0.07, 0.012 +19570404, -0.24, 0.12, -0.11, 0.012 +19570405, 0.07, 0.12, -0.36, 0.012 +19570408, 0.03, 0.04, -0.29, 0.012 +19570409, 0.84, -0.40, -0.21, 0.012 +19570410, 0.53, -0.28, 0.28, 0.012 +19570411, 0.08, 0.20, -0.20, 0.012 +19570412, 0.19, -0.01, 0.00, 0.012 +19570415, -0.12, -0.04, 0.18, 0.012 +19570416, 0.07, -0.06, -0.10, 0.012 +19570417, 0.22, -0.11, -0.26, 0.012 +19570418, 0.69, -0.18, -0.04, 0.012 +19570422, 0.10, 0.13, -0.04, 0.012 +19570423, 0.56, -0.46, 0.42, 0.012 +19570424, 0.16, -0.18, -0.09, 0.012 +19570425, -0.32, -0.07, 0.28, 0.012 +19570426, -0.12, -0.07, 0.03, 0.012 +19570429, 0.38, 0.07, -0.45, 0.012 +19570430, 0.11, 0.00, -0.34, 0.012 +19570501, 0.55, -0.29, -0.33, 0.012 +19570502, 0.73, -0.40, -0.14, 0.012 +19570503, -0.07, 0.32, -0.06, 0.012 +19570506, -0.13, -0.03, 0.01, 0.012 +19570507, -0.17, 0.03, -0.15, 0.012 +19570508, 0.40, 0.10, -0.34, 0.012 +19570509, 0.13, 0.24, -0.09, 0.012 +19570510, 0.43, -0.03, -0.29, 0.012 +19570513, 0.71, -0.33, -0.42, 0.012 +19570514, -0.43, 0.25, 0.02, 0.012 +19570515, 0.24, 0.08, -0.34, 0.012 +19570516, 0.42, -0.17, 0.46, 0.012 +19570517, 0.29, -0.14, 0.13, 0.012 +19570520, 0.27, -0.26, -0.25, 0.012 +19570521, 0.07, -0.11, -0.03, 0.012 +19570522, -0.34, -0.03, 0.17, 0.012 +19570523, -0.09, -0.01, 0.10, 0.012 +19570524, 0.13, -0.19, 0.17, 0.012 +19570527, -0.89, 0.18, -0.10, 0.012 +19570528, -0.14, 0.03, 0.21, 0.012 +19570529, 0.83, -0.27, -0.30, 0.012 +19570531, 0.45, -0.06, -0.39, 0.012 +19570603, -0.19, 0.04, -0.08, 0.012 +19570604, -0.13, 0.00, 0.06, 0.012 +19570605, 0.02, 0.00, -0.03, 0.012 +19570606, 0.63, -0.38, -0.33, 0.012 +19570607, 0.03, -0.01, 0.03, 0.012 +19570610, -0.65, 0.00, 0.29, 0.012 +19570611, 1.26, -0.01, -0.16, 0.012 +19570612, 0.16, -0.23, 0.28, 0.012 +19570613, 0.16, 0.06, -0.18, 0.012 +19570614, -0.02, 0.11, -0.18, 0.012 +19570617, 0.16, -0.10, -0.18, 0.012 +19570618, -0.44, 0.42, -0.47, 0.012 +19570619, -0.92, 0.60, -0.07, 0.012 +19570620, -0.57, 0.19, 0.15, 0.012 +19570621, -0.58, 0.13, 0.35, 0.012 +19570624, -0.74, -0.09, 0.46, 0.012 +19570625, 0.66, -0.02, -0.05, 0.012 +19570626, -0.16, 0.07, 0.19, 0.012 +19570627, 0.36, -0.24, -0.04, 0.012 +19570628, 0.23, 0.02, -0.11, 0.012 +19570701, 0.18, -0.40, 0.22, 0.013 +19570702, 0.86, -0.41, -0.33, 0.013 +19570703, 0.79, -0.10, -0.33, 0.013 +19570705, 0.77, -0.07, -0.41, 0.013 +19570708, 0.37, -0.15, -0.31, 0.013 +19570709, -0.26, -0.07, 0.44, 0.013 +19570710, 0.67, -0.47, 0.31, 0.013 +19570711, -0.39, 0.06, 0.36, 0.013 +19570712, 0.41, -0.16, 0.00, 0.013 +19570715, 0.07, -0.30, 0.28, 0.013 +19570716, -0.49, 0.13, 0.29, 0.013 +19570717, -0.59, 0.33, -0.16, 0.013 +19570718, -0.10, 0.33, -0.35, 0.013 +19570719, 0.02, 0.16, -0.23, 0.013 +19570722, -0.22, 0.18, -0.01, 0.013 +19570723, -0.12, -0.15, 0.49, 0.013 +19570724, 0.07, 0.01, 0.00, 0.013 +19570725, -0.01, -0.10, 0.34, 0.013 +19570726, -0.34, 0.03, -0.09, 0.013 +19570729, -1.12, 0.14, -0.07, 0.013 +19570730, 0.12, 0.11, -0.02, 0.013 +19570731, 0.00, 0.16, -0.04, 0.013 +19570801, -0.25, 0.11, -0.13, 0.011 +19570802, -0.09, -0.11, 0.51, 0.011 +19570805, -0.85, 0.25, 0.19, 0.011 +19570806, -1.10, 0.20, 0.23, 0.011 +19570807, 0.83, -0.47, -0.29, 0.011 +19570808, -0.32, 0.66, -0.49, 0.011 +19570809, 0.02, -0.30, 0.14, 0.011 +19570812, -1.10, 0.25, 0.16, 0.011 +19570813, -0.02, 0.00, -0.28, 0.011 +19570814, -1.25, 0.05, 0.29, 0.011 +19570815, 0.08, -0.28, 0.14, 0.011 +19570816, 0.15, 0.01, 0.06, 0.011 +19570819, -1.92, 0.32, 0.36, 0.011 +19570820, 0.75, -0.50, -0.18, 0.011 +19570821, 0.56, -0.02, -0.39, 0.011 +19570822, -0.67, 0.11, 0.46, 0.011 +19570823, -1.40, -0.03, 0.32, 0.011 +19570826, -1.42, 0.08, 0.12, 0.011 +19570827, 1.54, 0.00, -0.96, 0.011 +19570828, 0.12, 0.22, -0.47, 0.011 +19570829, -0.46, -0.04, -0.03, 0.011 +19570830, 1.65, -0.48, -0.32, 0.011 +19570903, 0.44, 0.21, -0.22, 0.013 +19570904, -0.85, 0.32, 0.01, 0.013 +19570905, -0.36, 0.00, -0.02, 0.013 +19570906, -0.27, 0.20, 0.35, 0.013 +19570909, -0.85, 0.09, 0.03, 0.013 +19570910, -0.88, 0.13, -0.05, 0.013 +19570911, 0.75, -0.61, -0.06, 0.013 +19570912, 1.23, -0.28, -0.44, 0.013 +19570913, -0.05, 0.35, 0.14, 0.013 +19570916, -0.47, 0.09, 0.07, 0.013 +19570917, 0.15, -0.03, -0.19, 0.013 +19570918, 0.13, -0.13, 0.22, 0.013 +19570919, -0.61, 0.33, 0.06, 0.013 +19570920, -1.58, -0.02, 0.45, 0.013 +19570923, -2.13, -0.18, 0.16, 0.013 +19570924, 0.64, -0.11, -0.27, 0.013 +19570925, -1.27, -0.44, 0.18, 0.013 +19570926, 0.22, -0.09, -0.03, 0.013 +19570927, -0.03, 0.62, 0.06, 0.013 +19570930, -0.33, -0.36, 0.44, 0.013 +19571001, 0.73, -0.47, -0.37, 0.013 +19571002, 0.84, -0.12, -0.02, 0.013 +19571003, 0.04, -0.29, 0.50, 0.013 +19571004, -0.71, 0.32, 0.28, 0.013 +19571007, -1.89, 0.10, 0.60, 0.013 +19571008, -0.80, -0.60, -0.18, 0.013 +19571009, 0.18, 0.25, -0.08, 0.013 +19571010, -2.51, -0.36, 0.47, 0.013 +19571011, -0.12, -0.27, -0.56, 0.013 +19571014, 0.71, 0.24, -1.12, 0.013 +19571015, 1.05, -0.07, 0.01, 0.013 +19571016, -0.77, 0.14, 0.10, 0.013 +19571017, -1.80, -0.48, 0.30, 0.013 +19571018, -0.87, -0.14, 0.07, 0.013 +19571021, -3.04, -0.53, 0.00, 0.013 +19571022, -0.56, -0.63, -0.67, 0.013 +19571023, 4.42, -0.27, -1.06, 0.013 +19571024, 0.10, 0.78, -0.01, 0.013 +19571025, -0.34, -0.07, -0.09, 0.013 +19571028, -0.43, -0.36, 0.32, 0.013 +19571029, 0.63, -0.15, -0.23, 0.013 +19571030, 0.86, 0.04, -0.01, 0.013 +19571031, 0.12, 0.30, -0.29, 0.013 +19571101, -1.42, 0.64, 0.07, 0.015 +19571104, -0.07, -0.10, -0.29, 0.015 +19571106, 0.20, 0.67, -0.66, 0.015 +19571107, 0.56, 0.13, -0.26, 0.015 +19571108, -1.01, 0.37, 0.00, 0.015 +19571111, -0.12, 0.16, 0.00, 0.015 +19571112, -1.18, 0.45, 0.40, 0.015 +19571113, -0.17, -0.13, -0.02, 0.015 +19571114, -0.62, -0.14, -0.12, 0.015 +19571115, 2.65, -0.49, -0.43, 0.015 +19571118, -0.80, 0.13, -0.24, 0.015 +19571119, -0.62, 0.04, -0.90, 0.015 +19571120, 0.41, -0.07, 0.22, 0.015 +19571121, 1.37, -0.68, 0.15, 0.015 +19571122, 1.01, 0.07, 0.01, 0.015 +19571125, 0.80, -0.47, -0.27, 0.015 +19571126, -2.59, 0.37, 0.59, 0.015 +19571127, 2.85, -0.61, -1.25, 0.015 +19571129, 1.20, -0.03, 0.10, 0.015 +19571202, -0.81, 0.47, -0.13, 0.011 +19571203, 0.05, -0.09, -0.33, 0.011 +19571204, 0.43, -0.13, -0.49, 0.011 +19571205, 0.05, 0.00, -0.17, 0.011 +19571206, -0.60, 0.38, 0.06, 0.011 +19571209, -0.75, 0.20, -0.36, 0.011 +19571210, -0.84, 0.06, 0.04, 0.011 +19571211, -0.16, -0.33, -0.28, 0.011 +19571212, 0.14, -0.54, 1.21, 0.011 +19571213, 0.45, -0.17, 0.03, 0.011 +19571216, -1.46, 0.32, -0.11, 0.011 +19571217, -1.71, 0.07, 0.41, 0.011 +19571218, -0.10, -0.52, 0.22, 0.011 +19571219, 1.01, -0.40, -0.41, 0.011 +19571220, -0.83, 0.39, -0.12, 0.011 +19571223, -0.07, -0.26, -0.73, 0.011 +19571224, 0.11, 0.19, 0.03, 0.011 +19571226, 1.03, -0.37, -0.18, 0.011 +19571227, -0.34, 0.08, -0.26, 0.011 +19571230, -0.55, -0.35, -0.33, 0.011 +19571231, 1.02, 0.01, 0.08, 0.011 +19580102, 0.97, 0.62, 1.19, 0.013 +19580103, 1.35, 0.39, 0.99, 0.013 +19580106, -0.43, 0.66, 0.29, 0.013 +19580107, 0.80, 0.19, -0.21, 0.013 +19580108, 0.00, 0.18, 0.24, 0.013 +19580109, -0.61, 0.73, -0.16, 0.013 +19580110, -0.89, 0.43, 0.05, 0.013 +19580113, 0.29, -0.03, -0.13, 0.013 +19580114, 0.45, 0.00, 0.12, 0.013 +19580115, 0.83, -0.26, -0.17, 0.013 +19580116, 0.20, 0.42, 0.51, 0.013 +19580117, 0.11, -0.11, 0.63, 0.013 +19580120, 0.55, 0.20, -0.37, 0.013 +19580121, -0.06, 0.62, -0.18, 0.013 +19580122, -0.22, 0.13, 0.13, 0.013 +19580123, 0.40, 0.11, 0.11, 0.013 +19580124, 0.87, -0.13, 0.31, 0.013 +19580127, -0.22, -0.09, 0.55, 0.013 +19580128, 0.03, -0.01, -0.27, 0.013 +19580129, 0.57, -0.32, 0.29, 0.013 +19580130, -0.44, 0.37, -0.01, 0.013 +19580131, 0.02, -0.06, 0.07, 0.013 +19580203, 0.77, 0.01, -0.09, 0.006 +19580204, 1.04, -0.24, -0.07, 0.006 +19580205, -0.48, 0.20, 0.14, 0.006 +19580206, -0.22, -0.03, 0.09, 0.006 +19580207, -0.76, 0.19, -0.25, 0.006 +19580210, -0.57, 0.16, 0.10, 0.006 +19580211, -0.81, 0.36, 0.02, 0.006 +19580212, -0.41, -0.17, 0.32, 0.006 +19580213, 0.03, 0.20, 0.10, 0.006 +19580214, 0.93, -0.49, 0.18, 0.006 +19580217, -0.53, 0.53, 0.15, 0.006 +19580218, 0.17, -0.19, 0.11, 0.006 +19580219, 0.02, 0.13, -0.25, 0.006 +19580220, -0.57, 0.31, 0.14, 0.006 +19580221, -0.09, -0.06, -0.18, 0.006 +19580224, -0.54, 0.10, -0.12, 0.006 +19580225, -0.10, -0.34, 0.06, 0.006 +19580226, 0.78, -0.09, -0.02, 0.006 +19580227, -0.52, 0.30, -0.25, 0.006 +19580228, 0.36, -0.20, 0.11, 0.006 +19580303, 0.68, -0.25, -0.46, 0.004 +19580304, 0.42, 0.17, -0.37, 0.004 +19580305, 0.44, -0.13, 0.14, 0.004 +19580306, 1.16, -0.50, 0.07, 0.004 +19580307, 0.18, 0.27, -0.34, 0.004 +19580310, 0.20, -0.21, 0.12, 0.004 +19580311, 0.81, -0.10, -0.13, 0.004 +19580312, -0.16, 0.13, 0.01, 0.004 +19580313, 0.08, 0.34, 0.43, 0.004 +19580314, -0.14, 0.07, -0.08, 0.004 +19580317, -0.81, 0.34, 0.22, 0.004 +19580318, -0.20, -0.09, -0.31, 0.004 +19580319, 0.49, 0.19, 0.01, 0.004 +19580320, -0.01, 0.30, -0.06, 0.004 +19580321, 0.73, -0.13, 0.08, 0.004 +19580324, 0.26, -0.25, 0.18, 0.004 +19580325, -0.21, 0.05, -0.16, 0.004 +19580326, -0.25, 0.19, 0.12, 0.004 +19580327, -0.28, 0.10, -0.03, 0.004 +19580328, 0.14, 0.12, -0.30, 0.004 +19580331, -0.30, 0.00, 0.00, 0.004 +19580401, -0.39, -0.25, 0.01, 0.004 +19580402, -0.77, 0.15, 0.28, 0.004 +19580403, -0.27, 0.14, 0.15, 0.004 +19580407, -0.39, -0.05, 0.18, 0.004 +19580408, 0.75, 0.03, -0.06, 0.004 +19580409, 0.06, 0.22, 0.23, 0.004 +19580410, 0.13, 0.11, 0.30, 0.004 +19580411, 0.17, -0.10, 0.45, 0.004 +19580414, 0.58, -0.15, -0.10, 0.004 +19580415, 0.96, -0.37, 0.01, 0.004 +19580416, -0.73, 0.30, 0.11, 0.004 +19580417, 0.33, -0.30, 0.95, 0.004 +19580418, 1.00, -0.28, -0.66, 0.004 +19580421, 0.47, -0.30, 0.38, 0.004 +19580422, -0.35, 0.33, -0.07, 0.004 +19580423, 0.13, 0.26, -0.33, 0.004 +19580424, 0.77, -0.06, -0.07, 0.004 +19580425, 0.49, -0.10, -0.38, 0.004 +19580428, -0.37, 0.26, -0.01, 0.004 +19580429, -0.44, -0.06, 0.12, 0.004 +19580430, 0.95, -0.38, -0.09, 0.004 +19580501, 0.15, 0.07, -0.21, 0.005 +19580502, 0.41, 0.07, -0.07, 0.005 +19580505, 0.24, -0.01, 0.29, 0.005 +19580506, 0.60, -0.23, 0.16, 0.005 +19580507, -0.12, 0.11, -0.10, 0.005 +19580508, 0.18, 0.01, 0.06, 0.005 +19580509, 0.09, 0.13, 0.24, 0.005 +19580512, -0.40, 0.45, -0.16, 0.005 +19580513, -0.21, 0.63, -0.34, 0.005 +19580514, -1.11, 0.19, 0.10, 0.005 +19580515, 0.54, -0.19, 0.36, 0.005 +19580516, 0.06, -0.01, 0.00, 0.005 +19580519, -0.25, 0.19, -0.02, 0.005 +19580520, 0.84, 0.02, -0.28, 0.005 +19580521, -0.07, 0.33, 0.06, 0.005 +19580522, 0.52, 0.21, -0.10, 0.005 +19580523, 0.27, 0.26, -0.20, 0.005 +19580526, 0.00, 0.01, 0.30, 0.005 +19580527, -0.12, 0.02, -0.16, 0.005 +19580528, 0.12, -0.03, 0.01, 0.005 +19580529, 0.57, -0.05, -0.24, 0.005 +19580602, 0.47, -0.05, -0.34, 0.001 +19580603, 0.34, -0.20, 0.21, 0.001 +19580604, 0.07, 0.00, -0.09, 0.001 +19580605, 0.17, -0.27, 0.36, 0.001 +19580606, 0.22, 0.17, -0.03, 0.001 +19580609, -0.09, -0.11, -0.33, 0.001 +19580610, -0.19, -0.03, 0.00, 0.001 +19580611, 0.07, -0.14, 0.37, 0.001 +19580612, 0.56, 0.02, -0.33, 0.001 +19580613, 0.60, 0.00, 0.25, 0.001 +19580616, 0.39, -0.06, 0.02, 0.001 +19580617, 0.30, -0.09, 0.09, 0.001 +19580618, -0.36, 0.10, 0.07, 0.001 +19580619, -1.14, 0.39, -0.12, 0.001 +19580620, 0.54, -0.23, 0.16, 0.001 +19580623, -0.35, 0.02, 0.15, 0.001 +19580624, -0.33, 0.25, 0.03, 0.001 +19580625, 0.24, -0.02, 0.26, 0.001 +19580626, 0.50, 0.09, -0.21, 0.001 +19580627, 0.28, 0.14, 0.27, 0.001 +19580630, 0.64, -0.22, -0.30, 0.001 +19580701, 0.09, -0.18, -0.05, 0.003 +19580702, 0.10, 0.12, -0.04, 0.003 +19580703, 0.35, 0.24, -0.02, 0.003 +19580707, 0.30, -0.19, 0.15, 0.003 +19580708, -0.52, -0.04, 0.20, 0.003 +19580709, -0.33, 0.04, -0.24, 0.003 +19580710, 0.46, -0.16, -0.17, 0.003 +19580711, 0.64, -0.21, 0.62, 0.003 +19580714, -1.25, 0.27, -0.12, 0.003 +19580715, 0.13, -0.31, 0.34, 0.003 +19580716, 0.22, 0.19, 0.03, 0.003 +19580717, 0.74, -0.25, 0.52, 0.003 +19580718, 0.40, -0.49, 0.30, 0.003 +19580721, 1.16, -0.28, -0.15, 0.003 +19580722, 0.16, 0.19, -0.30, 0.003 +19580723, 0.01, 0.48, 0.10, 0.003 +19580724, 0.53, 0.16, 0.35, 0.003 +19580725, 0.68, 0.05, 0.49, 0.003 +19580728, 0.34, 0.25, 0.25, 0.003 +19580729, -0.27, 0.43, -0.09, 0.003 +19580730, 0.39, 0.18, 0.63, 0.003 +19580731, -0.01, -0.01, 0.18, 0.003 +19580801, 0.76, -0.07, 0.29, 0.002 +19580804, 0.92, -0.35, 0.62, 0.002 +19580805, -0.49, -0.09, -0.46, 0.002 +19580806, -0.43, -0.21, -0.23, 0.002 +19580807, 0.71, 0.09, 0.64, 0.002 +19580808, 0.53, 0.04, -0.20, 0.002 +19580811, 0.35, -0.21, 0.02, 0.002 +19580812, -0.80, 0.14, -0.30, 0.002 +19580813, 0.22, 0.02, 0.40, 0.002 +19580814, 0.23, 0.23, 0.03, 0.002 +19580815, -0.88, 0.45, -0.61, 0.002 +19580818, -0.54, 0.06, -0.12, 0.002 +19580819, 0.18, -0.03, 0.37, 0.002 +19580820, 0.14, 0.14, 0.09, 0.002 +19580821, 0.60, 0.11, -0.18, 0.002 +19580822, 0.20, 0.21, 0.06, 0.002 +19580825, 0.08, 0.01, -0.02, 0.002 +19580826, 0.38, -0.08, 0.10, 0.002 +19580827, 0.04, 0.38, 0.03, 0.002 +19580828, -0.50, 0.16, -0.26, 0.002 +19580829, 0.23, 0.14, 0.02, 0.002 +19580902, 0.51, 0.34, -0.18, 0.009 +19580903, 0.39, -0.04, -0.19, 0.009 +19580904, -0.17, 0.15, -0.19, 0.009 +19580905, -0.11, 0.19, -0.11, 0.009 +19580908, 0.38, 0.20, -0.12, 0.009 +19580909, 0.53, -0.01, 0.06, 0.009 +19580910, -0.26, 0.03, 0.01, 0.009 +19580911, 0.65, -0.19, 0.09, 0.009 +19580912, -0.25, 0.10, 0.06, 0.009 +19580915, 0.85, -0.53, 0.60, 0.009 +19580916, 0.65, -0.54, 0.33, 0.009 +19580917, -0.08, -0.07, 0.16, 0.009 +19580918, -0.44, 0.19, 0.44, 0.009 +19580919, 0.66, 0.06, 0.91, 0.009 +19580922, -0.41, 0.41, -0.11, 0.009 +19580923, 0.65, -0.14, -0.05, 0.009 +19580924, 0.38, -0.25, 0.39, 0.009 +19580925, -0.39, -0.15, 0.30, 0.009 +19580926, 0.22, 0.39, -0.14, 0.009 +19580929, 0.42, 0.16, 0.47, 0.009 +19580930, 0.36, -0.17, 0.05, 0.009 +19581001, -0.21, -0.24, -0.28, 0.008 +19581002, 0.32, 0.09, 0.06, 0.008 +19581003, 0.41, -0.14, 0.40, 0.008 +19581006, 0.55, -0.19, 0.15, 0.008 +19581007, 0.51, -0.33, -0.36, 0.008 +19581008, 0.12, -0.14, -0.25, 0.008 +19581009, 0.04, 0.20, 0.29, 0.008 +19581010, 0.59, 0.10, -0.01, 0.008 +19581013, 0.36, 0.17, -0.37, 0.008 +19581014, -0.73, -0.03, -1.00, 0.008 +19581015, -1.18, 0.46, -0.74, 0.008 +19581016, 0.76, -0.30, 0.36, 0.008 +19581017, 0.92, 0.50, -0.19, 0.008 +19581020, -0.28, 0.52, -0.12, 0.008 +19581021, -0.04, -0.05, 0.02, 0.008 +19581022, -0.32, 0.22, 0.33, 0.008 +19581023, -0.17, 0.00, 0.74, 0.008 +19581024, -0.22, 0.01, 0.25, 0.008 +19581027, -0.76, -0.20, 0.05, 0.008 +19581028, 0.44, 0.02, 0.58, 0.008 +19581029, 1.11, 0.17, 0.12, 0.008 +19581030, 0.16, 0.15, -0.85, 0.008 +19581031, 0.16, 0.03, -0.25, 0.008 +19581103, 0.41, -0.56, -0.05, 0.006 +19581105, 1.04, -0.08, -0.29, 0.006 +19581106, 0.62, -0.20, -0.48, 0.006 +19581107, -0.14, -0.01, 0.13, 0.006 +19581110, 0.67, -0.28, 0.36, 0.006 +19581111, 0.78, -0.03, 0.08, 0.006 +19581112, 0.15, 0.28, -0.43, 0.006 +19581113, -0.37, 0.35, 0.01, 0.006 +19581114, 0.50, 0.31, -0.16, 0.006 +19581117, 0.26, 0.07, -0.12, 0.006 +19581118, -0.15, 0.17, -0.26, 0.006 +19581119, 0.17, 0.30, -0.20, 0.006 +19581120, 0.06, 0.32, -0.52, 0.006 +19581121, -0.91, 0.49, -0.05, 0.006 +19581124, -2.43, 0.07, -0.18, 0.006 +19581125, -0.61, 0.34, 0.24, 0.006 +19581126, 1.83, 0.25, 0.44, 0.006 +19581128, 1.15, 0.19, 0.28, 0.006 +19581201, 0.41, 0.08, -0.31, 0.011 +19581202, -0.39, 0.30, -0.61, 0.011 +19581203, 0.16, -0.02, -0.01, 0.011 +19581204, 0.07, 0.07, 0.29, 0.011 +19581205, -0.06, 0.12, -0.01, 0.011 +19581208, 0.21, -0.13, -0.02, 0.011 +19581209, 0.52, -0.27, -0.17, 0.011 +19581210, 1.15, -0.23, -0.19, 0.011 +19581211, -0.26, 0.10, 0.04, 0.011 +19581212, -0.15, 0.10, 0.11, 0.011 +19581215, 0.25, -0.30, -0.05, 0.011 +19581216, 0.32, -0.14, -0.09, 0.011 +19581217, 0.63, -0.68, 0.17, 0.011 +19581218, 0.34, -0.40, 0.04, 0.011 +19581219, -0.18, 0.03, -0.15, 0.011 +19581222, -0.64, -0.03, 0.00, 0.011 +19581223, -0.52, 0.18, 0.36, 0.011 +19581224, 1.37, -0.32, 0.36, 0.011 +19581229, 0.89, -0.21, -0.21, 0.011 +19581230, 0.42, -0.08, -0.02, 0.011 +19581231, 0.47, -0.19, 0.48, 0.011 +19590102, 0.40, -0.02, 0.70, 0.010 +19590105, 0.35, -0.27, 0.32, 0.010 +19590106, -0.09, 0.10, 0.06, 0.010 +19590107, -1.19, 0.27, -0.07, 0.010 +19590108, 0.96, -0.22, 0.75, 0.010 +19590109, 0.69, 0.12, 0.15, 0.010 +19590112, 0.09, 0.35, -0.10, 0.010 +19590113, -0.49, 0.40, 0.38, 0.010 +19590114, 0.28, 0.12, 0.40, 0.010 +19590115, 0.37, 0.01, 0.66, 0.010 +19590116, 0.01, 0.09, 0.23, 0.010 +19590119, -0.17, 0.56, -0.01, 0.010 +19590120, 0.12, 0.39, -0.30, 0.010 +19590121, 0.55, 0.09, -0.09, 0.010 +19590122, -0.20, -0.18, -0.21, 0.010 +19590123, 0.10, 0.13, 0.35, 0.010 +19590126, -0.47, 0.42, -0.57, 0.010 +19590127, 0.01, 0.03, -0.09, 0.010 +19590128, -1.10, -0.06, -0.19, 0.010 +19590129, 0.08, 0.40, 0.14, 0.010 +19590130, 0.43, 0.21, 0.42, 0.010 +19590202, -0.31, 0.18, -0.28, 0.010 +19590203, 0.14, -0.07, 0.41, 0.010 +19590204, -0.30, -0.11, 0.07, 0.010 +19590205, -0.38, -0.08, 0.15, 0.010 +19590206, -0.68, 0.10, 0.19, 0.010 +19590209, -1.36, 0.11, -0.30, 0.010 +19590210, 1.40, -0.03, 0.27, 0.010 +19590211, 0.07, 0.24, 0.36, 0.010 +19590212, -0.56, 0.41, 0.26, 0.010 +19590213, 0.79, 0.10, 0.02, 0.010 +19590216, 0.22, 0.25, 0.31, 0.010 +19590217, -0.30, 0.24, 0.26, 0.010 +19590218, 0.46, 0.16, 0.11, 0.010 +19590219, 0.91, -0.14, 0.11, 0.010 +19590220, 0.86, -0.35, -0.06, 0.010 +19590224, -0.03, 0.21, 0.13, 0.010 +19590225, -0.32, -0.03, -0.24, 0.010 +19590226, 0.25, 0.30, -0.54, 0.010 +19590227, 0.14, 0.00, -0.19, 0.010 +19590302, 0.52, -0.03, -0.47, 0.010 +19590303, 0.88, -0.51, 0.15, 0.010 +19590304, 0.13, -0.10, 0.21, 0.010 +19590305, 0.20, 0.10, 0.14, 0.010 +19590306, -0.35, 0.37, -0.38, 0.010 +19590309, -0.04, 0.34, -0.03, 0.010 +19590310, 0.32, 0.09, 0.18, 0.010 +19590311, 0.19, 0.11, 0.23, 0.010 +19590312, 0.44, -0.11, 0.51, 0.010 +19590313, 0.10, 0.23, 0.27, 0.010 +19590316, -1.07, 0.13, -0.26, 0.010 +19590317, 0.83, 0.33, -0.06, 0.010 +19590318, -0.14, 0.44, -0.08, 0.010 +19590319, -0.13, 0.07, 0.11, 0.010 +19590320, 0.09, 0.11, -0.42, 0.010 +19590323, -0.92, -0.11, -0.31, 0.010 +19590324, 0.18, -0.09, 0.21, 0.010 +19590325, -0.14, 0.39, -0.31, 0.010 +19590326, -0.13, 0.01, 0.00, 0.010 +19590330, -0.61, 0.01, 0.01, 0.010 +19590331, -0.04, -0.36, -0.09, 0.010 +19590401, 0.36, -0.37, -0.05, 0.009 +19590402, 0.57, -0.21, 0.81, 0.009 +19590403, 0.77, -0.06, -0.22, 0.009 +19590406, 0.20, -0.13, -0.15, 0.009 +19590407, -0.13, 0.03, 0.18, 0.009 +19590408, -0.49, 0.08, 0.16, 0.009 +19590409, -0.03, 0.01, 0.21, 0.009 +19590410, 0.15, 0.04, 0.38, 0.009 +19590413, 0.33, -0.13, -0.11, 0.009 +19590414, 0.54, -0.24, 0.11, 0.009 +19590415, 0.40, 0.11, -0.01, 0.009 +19590416, 0.65, -0.54, -0.02, 0.009 +19590417, 0.80, -0.48, -0.42, 0.009 +19590420, 0.35, -0.44, -0.23, 0.009 +19590421, -0.11, 0.21, -0.61, 0.009 +19590422, -0.62, 0.44, -0.38, 0.009 +19590423, -0.24, 0.29, -0.10, 0.009 +19590424, 0.55, 0.50, -0.58, 0.009 +19590427, 0.36, -0.14, -0.16, 0.009 +19590428, -0.33, 0.00, -0.21, 0.009 +19590429, -0.30, 0.42, 0.07, 0.009 +19590430, -0.19, 0.00, 0.15, 0.009 +19590501, 0.13, 0.30, 0.19, 0.010 +19590504, 0.03, -0.01, 0.00, 0.010 +19590505, 0.18, -0.05, -0.43, 0.010 +19590506, -0.15, 0.31, -0.61, 0.010 +19590507, -1.26, -0.25, -0.30, 0.010 +19590508, 0.80, 0.29, 0.53, 0.010 +19590511, 0.42, -0.35, 0.26, 0.010 +19590512, 0.11, -0.31, 0.31, 0.010 +19590513, 0.52, -0.36, 0.46, 0.010 +19590514, 0.66, -0.36, 0.40, 0.010 +19590515, -0.36, 0.32, -0.13, 0.010 +19590518, -0.07, -0.44, 0.32, 0.010 +19590519, 0.23, -0.19, -0.12, 0.010 +19590520, -0.33, 0.14, -0.10, 0.010 +19590521, 0.07, -0.19, 0.68, 0.010 +19590522, 0.35, -0.18, 0.39, 0.010 +19590525, -0.45, 0.03, -0.20, 0.010 +19590526, -0.08, -0.27, 0.05, 0.010 +19590527, 0.21, 0.01, 0.10, 0.010 +19590528, 0.30, -0.09, -0.16, 0.010 +19590529, 0.44, -0.47, 0.25, 0.010 +19590601, -0.12, 0.10, -0.44, 0.011 +19590602, -0.66, -0.13, 0.16, 0.011 +19590603, 0.00, 0.37, 0.04, 0.011 +19590604, -1.09, 0.20, -0.14, 0.011 +19590605, -0.13, -0.09, 0.29, 0.011 +19590608, -1.39, -0.15, 0.11, 0.011 +19590609, -0.64, -0.06, 0.08, 0.011 +19590610, 1.47, 0.21, 0.59, 0.011 +19590611, 0.17, 0.11, 0.30, 0.011 +19590612, 0.02, -0.06, 0.35, 0.011 +19590615, -0.49, 0.00, 0.46, 0.011 +19590616, -0.67, 0.25, -0.17, 0.011 +19590617, 0.93, -0.29, 0.12, 0.011 +19590618, -0.05, 0.47, 0.31, 0.011 +19590619, 0.18, 0.06, -0.49, 0.011 +19590622, -0.02, -0.14, 0.32, 0.011 +19590623, -0.07, -0.03, 0.07, 0.011 +19590624, 0.46, -0.27, 0.50, 0.011 +19590625, 0.54, -0.03, -0.60, 0.011 +19590626, 0.40, 0.13, -0.63, 0.011 +19590629, 0.68, 0.07, -0.08, 0.011 +19590630, 0.23, -0.02, 0.20, 0.011 +19590701, 0.79, -0.15, 0.19, 0.011 +19590702, 0.48, -0.15, 0.25, 0.011 +19590706, 0.55, -0.29, 0.04, 0.011 +19590707, 0.49, -0.63, -0.06, 0.011 +19590708, 0.12, 0.07, 0.26, 0.011 +19590709, -0.23, 0.07, 0.29, 0.011 +19590710, 0.04, 0.11, 0.45, 0.011 +19590713, -0.90, 0.52, -0.25, 0.011 +19590714, 0.29, 0.19, -0.16, 0.011 +19590715, 0.12, 0.29, -0.18, 0.011 +19590716, -0.37, 0.11, -0.21, 0.011 +19590717, -0.29, 0.40, -0.35, 0.011 +19590720, -0.49, 0.17, -0.05, 0.011 +19590721, 0.83, -0.12, -0.01, 0.011 +19590722, 0.35, 0.23, 0.07, 0.011 +19590723, 0.11, -0.09, 0.11, 0.011 +19590724, 0.01, 0.24, -0.15, 0.011 +19590727, 0.51, -0.32, -0.04, 0.011 +19590728, 0.51, -0.43, -0.06, 0.011 +19590729, 0.43, -0.50, 0.07, 0.011 +19590730, -0.24, 0.01, 0.02, 0.011 +19590731, 0.02, -0.08, 0.09, 0.011 +19590803, 0.29, -0.05, 0.13, 0.009 +19590804, -0.20, 0.00, -0.14, 0.009 +19590805, -0.42, -0.19, 0.17, 0.009 +19590806, -0.15, -0.32, 0.49, 0.009 +19590807, -0.62, 0.18, 0.25, 0.009 +19590810, -1.90, -0.37, -0.22, 0.009 +19590811, 1.20, 0.02, -0.28, 0.009 +19590812, -0.17, 0.42, -0.07, 0.009 +19590813, -0.21, 0.10, 0.16, 0.009 +19590814, 0.24, 0.03, -0.01, 0.009 +19590817, -0.21, 0.14, -0.02, 0.009 +19590818, -0.90, -0.11, 0.03, 0.009 +19590819, -0.58, -0.18, -0.25, 0.009 +19590820, 1.42, -0.20, 0.11, 0.009 +19590821, -0.07, 0.23, -0.17, 0.009 +19590824, -0.41, 0.15, -0.13, 0.009 +19590825, 0.24, 0.02, -0.14, 0.009 +19590826, 0.15, -0.04, 0.37, 0.009 +19590827, 0.93, -0.59, -0.21, 0.009 +19590828, -0.19, 0.22, 0.30, 0.009 +19590831, 0.20, -0.31, 0.17, 0.009 +19590901, -1.20, 0.13, 0.07, 0.015 +19590902, 0.04, -0.24, 0.21, 0.015 +19590903, -1.16, -0.01, -0.15, 0.015 +19590904, 0.56, -0.24, -0.35, 0.015 +19590908, -1.40, -0.18, 0.06, 0.015 +19590909, -0.79, -0.19, 0.02, 0.015 +19590910, -0.57, 0.33, -0.14, 0.015 +19590911, 0.75, 0.20, 0.38, 0.015 +19590914, -0.69, 0.22, -0.65, 0.015 +19590915, -0.64, -0.27, 0.33, 0.015 +19590916, 0.05, 0.15, -0.12, 0.015 +19590917, -0.49, -0.03, -0.19, 0.015 +19590918, -0.70, -0.14, -0.11, 0.015 +19590921, -1.52, -0.38, 0.38, 0.015 +19590922, -0.27, -0.02, 0.11, 0.015 +19590923, 1.37, 0.21, 0.01, 0.015 +19590924, 1.64, 0.17, 0.20, 0.015 +19590925, -0.03, 0.09, -0.44, 0.015 +19590928, 0.66, -0.02, 0.05, 0.015 +19590929, 0.57, -0.35, 0.42, 0.015 +19590930, -1.02, 0.44, 0.49, 0.015 +19591001, 0.14, 0.20, 0.32, 0.014 +19591002, 0.41, 0.09, -0.64, 0.014 +19591005, -0.13, 0.06, -0.39, 0.014 +19591006, -0.06, 0.13, 0.05, 0.014 +19591007, -0.19, 0.34, 0.01, 0.014 +19591008, -0.18, 0.44, -0.10, 0.014 +19591009, 0.35, -0.06, -0.08, 0.014 +19591012, 0.55, 0.01, -0.17, 0.014 +19591013, -0.30, -0.01, -0.13, 0.014 +19591014, -0.74, -0.06, 0.41, 0.014 +19591015, 0.27, -0.19, 0.23, 0.014 +19591016, 0.81, 0.14, 0.04, 0.014 +19591019, -0.55, 0.29, -0.13, 0.014 +19591020, -0.61, 0.00, 0.06, 0.014 +19591021, -0.18, 0.22, -0.08, 0.014 +19591022, -0.93, 0.42, -0.25, 0.014 +19591023, 1.07, -0.33, -0.11, 0.014 +19591026, 0.63, -0.13, -0.15, 0.014 +19591027, 0.79, -0.79, -0.54, 0.014 +19591028, 0.05, -0.05, -0.37, 0.014 +19591029, -0.10, 0.27, -0.01, 0.014 +19591030, 0.18, 0.28, -0.11, 0.014 +19591102, -0.15, 0.25, -0.30, 0.013 +19591104, -0.15, 0.02, 0.03, 0.013 +19591105, 0.10, -0.05, -0.35, 0.013 +19591106, 0.54, -0.23, 0.48, 0.013 +19591109, -0.15, 0.05, -0.04, 0.013 +19591110, 0.03, 0.45, -0.25, 0.013 +19591111, 0.06, 0.37, -0.25, 0.013 +19591112, -0.50, 0.30, -0.23, 0.013 +19591113, -0.55, 0.42, -0.16, 0.013 +19591116, -1.03, 0.54, -0.47, 0.013 +19591117, 0.25, -0.21, -0.48, 0.013 +19591118, 1.03, -0.50, 0.29, 0.013 +19591119, -0.09, -0.03, 0.03, 0.013 +19591120, 0.07, 0.23, -0.18, 0.013 +19591123, 0.17, 0.21, -1.01, 0.013 +19591124, 0.44, -0.07, -0.42, 0.013 +19591125, 0.16, -0.18, -0.13, 0.013 +19591127, 0.47, -0.18, 0.28, 0.013 +19591130, 0.93, -0.17, -0.05, 0.013 +19591201, 0.68, -0.26, -0.34, 0.015 +19591202, -0.21, 0.03, 0.05, 0.015 +19591203, 0.27, 0.17, 0.18, 0.015 +19591204, 0.22, 0.34, -0.10, 0.015 +19591207, 0.28, 0.07, 0.08, 0.015 +19591208, 0.54, -0.32, 0.18, 0.015 +19591209, -0.64, -0.05, 0.47, 0.015 +19591210, 0.09, -0.18, -0.02, 0.015 +19591211, -0.18, 0.47, -0.15, 0.015 +19591214, 0.25, -0.32, 0.34, 0.015 +19591215, -0.29, -0.15, 0.22, 0.015 +19591216, 0.13, 0.01, -0.05, 0.015 +19591217, -0.14, 0.34, -0.01, 0.015 +19591218, 0.45, -0.19, -0.07, 0.015 +19591221, 0.09, 0.07, -0.16, 0.015 +19591222, -0.17, 0.36, 0.03, 0.015 +19591223, -0.27, 0.23, -0.37, 0.015 +19591224, 0.09, 0.02, 0.17, 0.015 +19591228, -0.13, -0.35, -0.29, 0.015 +19591229, 0.40, -0.42, -0.19, 0.015 +19591230, 0.79, -0.36, 0.05, 0.015 +19591231, 0.19, -0.07, -0.05, 0.015 +19600104, -0.03, 0.60, 0.70, 0.017 +19600105, 0.78, -0.40, 0.54, 0.017 +19600106, -0.47, 0.13, 0.36, 0.017 +19600107, -0.65, 0.37, 0.08, 0.017 +19600108, -0.33, 0.18, 0.10, 0.017 +19600111, -1.15, 0.48, 0.32, 0.017 +19600112, -0.58, 0.01, 0.45, 0.017 +19600113, -0.53, 0.38, 0.04, 0.017 +19600114, 0.56, -0.20, 0.13, 0.017 +19600115, 0.01, 0.38, 0.15, 0.017 +19600118, -0.84, 0.22, -0.23, 0.017 +19600119, -1.00, 0.01, 0.25, 0.017 +19600120, -0.30, 0.18, 0.07, 0.017 +19600121, 0.22, 0.03, 0.22, 0.017 +19600122, 0.28, 0.04, -0.25, 0.017 +19600125, -1.05, -0.14, -0.10, 0.017 +19600126, 0.15, -0.18, 0.16, 0.017 +19600127, -0.28, -0.03, 0.13, 0.017 +19600128, -1.00, 0.42, -0.18, 0.017 +19600129, -0.97, -0.28, -0.07, 0.017 +19600201, 0.50, -0.50, -0.22, 0.014 +19600202, 1.54, -0.17, -0.43, 0.014 +19600203, -0.83, 0.31, -0.02, 0.014 +19600204, -0.08, -0.08, 0.19, 0.014 +19600205, -0.49, -0.30, -0.02, 0.014 +19600208, -1.01, 0.07, -0.05, 0.014 +19600209, 0.89, -0.10, -0.04, 0.014 +19600210, -0.57, 0.36, 0.09, 0.014 +19600211, -0.51, 0.25, 0.40, 0.014 +19600212, 0.45, -0.37, 0.17, 0.014 +19600215, -0.50, 0.24, 0.10, 0.014 +19600216, -0.88, -0.24, -0.23, 0.014 +19600217, 0.63, 0.04, -0.21, 0.014 +19600218, 1.37, 0.08, -0.49, 0.014 +19600219, 0.72, -0.09, 0.14, 0.014 +19600223, -0.50, 0.43, -0.21, 0.014 +19600224, -0.29, 0.27, -0.19, 0.014 +19600225, 0.45, 0.03, 0.09, 0.014 +19600226, 0.42, 0.20, -0.54, 0.014 +19600229, -0.08, 0.08, -0.51, 0.014 +19600301, -0.15, 0.12, -0.21, 0.015 +19600302, -0.71, -0.05, -0.14, 0.015 +19600303, -1.54, -0.06, -0.32, 0.015 +19600304, -0.39, -0.48, -0.59, 0.015 +19600307, -1.10, 0.17, -0.14, 0.015 +19600308, -0.94, -0.26, -0.15, 0.015 +19600309, 1.10, -0.16, 0.34, 0.015 +19600310, -0.34, 0.52, 0.31, 0.015 +19600311, 0.73, 0.10, -0.05, 0.015 +19600314, 0.18, 0.04, -0.12, 0.015 +19600315, 0.78, -0.30, 0.06, 0.015 +19600316, 0.52, 0.11, 0.04, 0.015 +19600317, -0.18, 0.21, -0.28, 0.015 +19600318, 0.06, 0.09, -0.25, 0.015 +19600321, 0.09, -0.30, -0.22, 0.015 +19600322, 0.36, -0.44, -0.04, 0.015 +19600323, 0.76, -0.32, -0.26, 0.015 +19600324, 0.41, -0.12, 0.42, 0.015 +19600325, 0.00, 0.12, -0.29, 0.015 +19600328, -0.24, -0.01, 0.00, 0.015 +19600329, -0.20, 0.25, -0.40, 0.015 +19600330, -0.16, 0.31, -0.41, 0.015 +19600331, -0.63, -0.02, -0.22, 0.015 +19600401, 0.20, -0.10, -0.17, 0.010 +19600404, 0.18, -0.13, -0.33, 0.010 +19600405, 0.54, -0.39, -0.20, 0.010 +19600406, 1.01, -0.41, -0.07, 0.010 +19600407, 0.07, 0.19, -0.05, 0.010 +19600408, -0.21, 0.09, 0.26, 0.010 +19600411, -0.39, -0.04, 0.10, 0.010 +19600412, 0.22, -0.15, -0.10, 0.010 +19600413, -0.03, 0.22, -0.44, 0.010 +19600414, 0.26, 0.09, -0.25, 0.010 +19600418, 0.23, -0.17, -0.30, 0.010 +19600419, -0.74, 0.06, 0.04, 0.010 +19600420, -1.17, 0.49, 0.15, 0.010 +19600421, 0.34, -0.03, -0.22, 0.010 +19600422, -0.27, 0.34, -0.10, 0.010 +19600425, -1.02, 0.17, -0.09, 0.010 +19600426, 0.36, -0.03, -0.44, 0.010 +19600427, -0.03, -0.07, -0.03, 0.010 +19600428, -0.86, -0.08, 0.03, 0.010 +19600429, -0.35, 0.23, -0.09, 0.010 +19600502, -0.51, -0.18, -0.40, 0.013 +19600503, 1.36, -0.53, -0.14, 0.013 +19600504, 0.41, -0.07, -0.06, 0.013 +19600505, -0.33, 0.15, -0.24, 0.013 +19600506, -0.12, 0.37, -0.15, 0.013 +19600509, 0.11, 0.17, -0.57, 0.013 +19600510, -0.58, 0.23, -0.48, 0.013 +19600511, 0.23, -0.33, 0.03, 0.013 +19600512, 0.54, 0.39, -0.01, 0.013 +19600513, 0.89, 0.15, 0.21, 0.013 +19600516, -0.08, 0.27, -0.38, 0.013 +19600517, 0.37, -0.17, 0.01, 0.013 +19600518, 0.02, -0.43, -0.11, 0.013 +19600519, 0.43, -0.06, 0.11, 0.013 +19600520, 0.20, -0.15, 0.69, 0.013 +19600523, -0.08, 0.02, 0.25, 0.013 +19600524, -0.06, 0.50, -0.46, 0.013 +19600525, -0.04, 0.55, -0.57, 0.013 +19600526, 0.08, 0.13, -0.61, 0.013 +19600527, 0.07, 0.09, 0.12, 0.013 +19600531, 0.16, 0.10, -0.91, 0.013 +19600601, 0.16, -0.19, -0.43, 0.011 +19600602, 0.36, -0.65, 0.47, 0.011 +19600603, 0.19, -0.25, 0.31, 0.011 +19600606, 1.12, -0.77, 0.63, 0.011 +19600607, 0.96, -0.29, -0.09, 0.011 +19600608, 0.75, 0.13, 0.14, 0.011 +19600609, 0.11, -0.09, -0.07, 0.011 +19600610, 0.06, -0.01, -0.08, 0.011 +19600613, 0.06, 0.03, 0.01, 0.011 +19600614, -0.01, 0.03, -0.56, 0.011 +19600615, -0.54, 0.48, -0.11, 0.011 +19600616, -0.10, 0.32, -0.32, 0.011 +19600617, -0.10, 0.20, -0.19, 0.011 +19600620, -0.38, 0.38, -0.14, 0.011 +19600621, -0.10, -0.33, 0.32, 0.011 +19600622, 0.21, -0.16, 0.72, 0.011 +19600623, 0.46, -0.21, 0.12, 0.011 +19600624, 0.15, -0.03, 0.02, 0.011 +19600627, -0.56, 0.52, -0.37, 0.011 +19600628, -0.70, 0.28, -0.38, 0.011 +19600629, 0.04, 0.10, -0.35, 0.011 +19600630, -0.06, 0.20, -0.06, 0.011 +19600701, 0.24, 0.27, -0.13, 0.007 +19600705, -0.11, -0.14, 0.03, 0.007 +19600706, -0.16, -0.37, 0.37, 0.007 +19600707, 0.53, 0.02, 0.01, 0.007 +19600708, 0.26, -0.12, 0.23, 0.007 +19600711, -0.89, 0.21, 0.11, 0.007 +19600712, -1.07, -0.07, 0.71, 0.007 +19600713, -0.26, 0.06, 0.44, 0.007 +19600714, 0.01, -0.06, -0.33, 0.007 +19600715, -0.05, 0.10, 0.27, 0.007 +19600718, -0.62, -0.24, 0.48, 0.007 +19600719, 0.02, -0.05, 0.12, 0.007 +19600720, -0.15, 0.43, -0.22, 0.007 +19600721, -0.87, 0.31, 0.09, 0.007 +19600722, -0.69, -0.23, 0.37, 0.007 +19600725, -1.11, -0.12, -0.18, 0.007 +19600726, 0.70, -0.16, -0.20, 0.007 +19600727, -0.66, -0.19, 0.15, 0.007 +19600728, 0.81, -0.07, 0.22, 0.007 +19600729, 1.74, -0.09, -0.43, 0.007 +19600801, -0.05, -0.04, -0.06, 0.007 +19600802, -0.82, 0.04, 0.18, 0.007 +19600803, -0.53, 0.29, -0.11, 0.007 +19600804, 0.31, -0.33, -0.05, 0.007 +19600805, 1.04, -0.11, 0.05, 0.007 +19600808, 0.19, 0.02, 0.16, 0.007 +19600809, 0.56, -0.42, 0.53, 0.007 +19600810, 0.42, 0.14, 0.10, 0.007 +19600811, 0.41, 0.29, -0.15, 0.007 +19600812, 0.68, 0.16, -0.07, 0.007 +19600815, -0.02, -0.06, 0.09, 0.007 +19600816, 0.24, 0.29, -0.23, 0.007 +19600817, 0.30, 0.14, -0.24, 0.007 +19600818, -0.01, 0.00, -0.08, 0.007 +19600819, 0.32, -0.28, 0.11, 0.007 +19600822, 0.28, -0.14, 0.01, 0.007 +19600823, 0.91, -0.41, 0.27, 0.007 +19600824, 0.50, -0.16, 0.03, 0.007 +19600825, -0.43, 0.27, 0.20, 0.007 +19600826, -0.29, 0.41, -0.10, 0.007 +19600829, -0.23, 0.06, -0.10, 0.007 +19600830, -1.02, 0.65, -0.54, 0.007 +19600831, 0.22, 0.04, -0.14, 0.007 +19600901, 0.22, 0.13, -0.23, 0.008 +19600902, -0.10, 0.09, 0.11, 0.008 +19600906, -0.90, -0.11, 0.09, 0.008 +19600907, -1.22, 0.08, 0.30, 0.008 +19600908, -0.04, 0.09, 0.17, 0.008 +19600909, 0.60, -0.13, 0.04, 0.008 +19600912, -0.65, -0.03, -0.07, 0.008 +19600913, 0.16, -0.28, 0.19, 0.008 +19600914, -0.75, 0.07, -0.18, 0.008 +19600915, -0.40, -0.21, 0.07, 0.008 +19600916, -0.18, -0.06, 0.39, 0.008 +19600919, -2.29, -0.21, 0.66, 0.008 +19600920, 0.28, -0.14, -0.23, 0.008 +19600921, 1.05, 0.02, -0.32, 0.008 +19600922, -0.38, 0.29, -0.02, 0.008 +19600923, -0.91, 0.10, -0.03, 0.008 +19600926, -1.48, -0.60, 0.74, 0.008 +19600927, -0.29, 0.04, -0.05, 0.008 +19600928, -0.87, -0.34, 0.23, 0.008 +19600929, 0.28, -0.15, 0.09, 0.008 +19600930, 1.78, 0.21, -0.31, 0.008 +19601003, -0.27, -0.18, 0.12, 0.010 +19601004, -0.75, -0.25, 0.25, 0.010 +19601005, 0.69, -0.59, 0.38, 0.010 +19601006, 0.59, 0.20, -0.09, 0.010 +19601007, 0.55, -0.27, -0.12, 0.010 +19601010, 0.13, -0.08, -0.17, 0.010 +19601011, 0.10, -0.27, 0.24, 0.010 +19601012, -0.13, -0.20, 0.46, 0.010 +19601013, 0.83, -0.40, 0.04, 0.010 +19601014, 0.53, -0.02, -0.03, 0.010 +19601017, -0.36, 0.13, 0.26, 0.010 +19601018, -0.52, 0.15, 0.05, 0.010 +19601019, -0.21, -0.09, 0.14, 0.010 +19601020, -0.80, -0.03, 0.29, 0.010 +19601021, -1.00, -0.29, 0.60, 0.010 +19601024, -1.29, -0.81, 0.47, 0.010 +19601025, -0.75, -0.25, 0.30, 0.010 +19601026, 1.43, -0.16, -0.53, 0.010 +19601027, 1.12, -0.29, -0.21, 0.010 +19601028, -0.46, 0.10, 0.12, 0.010 +19601031, -0.08, -0.50, 0.13, 0.010 +19601101, 0.99, -0.11, -0.59, 0.007 +19601102, 0.52, -0.21, 0.36, 0.007 +19601103, 0.42, -0.17, 0.46, 0.007 +19601104, 0.85, -0.18, -0.13, 0.007 +19601107, 0.40, -0.29, -0.13, 0.007 +19601109, 0.42, -0.42, -0.13, 0.007 +19601110, 1.42, 0.60, -0.75, 0.007 +19601111, -0.44, 0.78, -0.06, 0.007 +19601114, -0.39, 0.09, 0.03, 0.007 +19601115, 0.49, -0.24, -0.06, 0.007 +19601116, -0.17, 0.02, -0.23, 0.007 +19601117, -0.26, -0.07, 0.06, 0.007 +19601118, 0.52, -0.09, -0.34, 0.007 +19601121, 0.28, -0.23, -0.08, 0.007 +19601122, -0.34, 0.37, -0.57, 0.007 +19601123, 0.23, 0.18, -0.10, 0.007 +19601125, 0.66, 0.02, -0.50, 0.007 +19601128, -0.12, 0.30, -0.01, 0.007 +19601129, -0.33, -0.06, 0.14, 0.007 +19601130, -0.51, 0.06, 0.21, 0.007 +19601201, -0.39, -0.01, -0.02, 0.007 +19601202, 0.16, 0.50, -0.29, 0.007 +19601205, -0.19, -0.06, 0.06, 0.007 +19601206, 0.46, -0.27, -0.04, 0.007 +19601207, 0.94, -0.11, -0.16, 0.007 +19601208, 0.22, -0.04, 0.00, 0.007 +19601209, 0.89, -0.02, -0.15, 0.007 +19601212, 0.38, 0.03, -0.27, 0.007 +19601213, 0.13, -0.05, -0.29, 0.007 +19601214, -0.08, 0.23, -0.34, 0.007 +19601215, -0.20, 0.32, 0.22, 0.007 +19601216, 0.91, -0.60, -0.04, 0.007 +19601219, -0.13, 0.14, -0.42, 0.007 +19601220, -0.07, 0.10, -0.34, 0.007 +19601221, 0.72, -0.69, 0.05, 0.007 +19601222, -0.26, -0.14, 0.88, 0.007 +19601223, 0.06, 0.17, -0.07, 0.007 +19601227, 0.14, -0.42, 0.11, 0.007 +19601228, 0.40, -0.30, 0.12, 0.007 +19601229, 0.48, -0.26, 0.22, 0.007 +19601230, 0.06, -0.03, 0.02, 0.007 +19610103, -0.88, 0.45, 0.74, 0.009 +19610104, 1.31, -0.17, 0.41, 0.009 +19610105, 0.39, 0.49, 0.77, 0.009 +19610106, -0.11, 0.27, 0.13, 0.009 +19610109, 0.59, 0.35, 0.70, 0.009 +19610110, 0.25, 0.14, 0.06, 0.009 +19610111, 0.29, 0.03, 0.13, 0.009 +19610112, 0.29, 0.20, 0.26, 0.009 +19610113, 0.42, -0.17, -0.04, 0.009 +19610116, -0.04, 0.13, -0.08, 0.009 +19610117, -0.36, 0.18, 0.28, 0.009 +19610118, 0.65, 0.29, 0.30, 0.009 +19610119, 0.16, -0.16, 0.38, 0.009 +19610120, 0.36, 0.16, -0.11, 0.009 +19610123, 0.51, -0.05, 0.18, 0.009 +19610124, 0.23, -0.32, -0.36, 0.009 +19610125, 0.07, -0.26, 0.00, 0.009 +19610126, 0.11, -0.26, -0.31, 0.009 +19610127, 0.93, -0.20, 0.15, 0.009 +19610130, 1.17, -0.40, -0.36, 0.009 +19610131, -0.31, -0.09, 0.17, 0.009 +19610201, 0.31, 0.09, 0.12, 0.008 +19610202, 0.68, 0.28, -0.11, 0.008 +19610203, -0.16, 0.25, 0.11, 0.008 +19610206, -0.60, 0.40, 0.02, 0.008 +19610207, -0.03, 0.40, 0.02, 0.008 +19610208, 0.95, 0.22, 0.21, 0.008 +19610209, -0.22, 0.29, 0.26, 0.008 +19610210, -0.79, 0.25, -0.19, 0.008 +19610213, -0.54, 0.49, -0.08, 0.008 +19610214, 0.57, 0.39, -0.20, 0.008 +19610215, 0.75, -0.18, 0.67, 0.008 +19610216, 0.61, -0.20, 0.20, 0.008 +19610217, -0.25, 0.47, -0.08, 0.008 +19610220, 0.43, 0.06, -0.11, 0.008 +19610221, 0.10, 0.36, -0.35, 0.008 +19610223, 0.42, 0.09, -0.19, 0.008 +19610224, 0.36, 0.06, -0.20, 0.008 +19610227, 0.77, 0.14, -0.22, 0.008 +19610228, 0.19, -0.03, -0.52, 0.008 +19610301, -0.01, 0.01, -0.28, 0.009 +19610302, 0.65, 0.00, -0.08, 0.009 +19610303, 0.14, 0.16, -0.19, 0.009 +19610306, 0.16, 0.08, -0.28, 0.009 +19610307, -0.72, 0.40, 0.05, 0.009 +19610308, 0.06, 0.50, -0.77, 0.009 +19610309, 0.07, 0.38, 0.72, 0.009 +19610310, 0.07, 0.08, 0.00, 0.009 +19610313, 0.25, 0.01, -0.02, 0.009 +19610314, -0.40, 0.30, -0.15, 0.009 +19610315, 0.37, -0.05, 0.06, 0.009 +19610316, 0.99, -0.12, -0.02, 0.009 +19610317, 0.58, 0.05, -0.37, 0.009 +19610320, 0.42, 0.12, -0.02, 0.009 +19610321, -0.15, 0.19, 0.57, 0.009 +19610322, -0.10, 0.24, 0.50, 0.009 +19610323, -0.32, -0.29, -0.10, 0.009 +19610324, -0.13, -0.10, 0.04, 0.009 +19610327, -0.07, 0.49, 0.10, 0.009 +19610328, 0.06, 0.59, 0.10, 0.009 +19610329, 0.77, -0.10, -0.55, 0.009 +19610330, 0.23, 0.17, -0.19, 0.009 +19610403, 0.78, 0.15, -0.11, 0.009 +19610404, 0.02, -0.08, -0.31, 0.009 +19610405, -0.31, -0.43, 0.51, 0.009 +19610406, 0.27, -0.35, 0.27, 0.009 +19610407, 0.51, 0.04, 0.05, 0.009 +19610410, 0.82, -0.12, -0.01, 0.009 +19610411, 0.04, -0.28, -0.16, 0.009 +19610412, -0.46, 0.04, 0.12, 0.009 +19610413, 0.01, 0.08, -0.09, 0.009 +19610414, 0.22, 0.30, 0.06, 0.009 +19610417, 0.47, 0.20, 0.17, 0.009 +19610418, -0.74, 0.34, 0.02, 0.009 +19610419, -0.51, 0.02, 0.36, 0.009 +19610420, -0.02, 0.35, -0.05, 0.009 +19610421, -0.02, 0.21, 0.31, 0.009 +19610424, -2.21, -0.40, 0.14, 0.009 +19610425, 1.46, -0.10, -0.04, 0.009 +19610426, 0.43, 0.23, 0.37, 0.009 +19610427, -0.12, 0.18, 0.30, 0.009 +19610428, -0.30, -0.31, 0.18, 0.009 +19610501, -0.21, -0.04, 0.08, 0.008 +19610502, 0.76, -0.09, -0.13, 0.008 +19610503, 0.80, -0.02, 0.26, 0.008 +19610504, 0.39, 0.08, 0.24, 0.008 +19610505, 0.15, 0.31, -0.30, 0.008 +19610508, -0.06, 0.70, -0.17, 0.008 +19610509, 0.11, 0.23, -0.04, 0.008 +19610510, -0.03, 0.05, 0.07, 0.008 +19610511, 0.03, 0.40, -0.46, 0.008 +19610512, 0.12, 0.08, 0.15, 0.008 +19610515, 0.55, -0.04, 0.39, 0.008 +19610516, 0.44, -0.09, 0.36, 0.008 +19610517, 0.33, -0.40, 0.52, 0.008 +19610518, -0.63, -0.44, -0.14, 0.008 +19610519, 0.46, 0.07, -0.18, 0.008 +19610522, -0.65, 0.21, 0.28, 0.008 +19610523, -0.17, -0.01, 0.06, 0.008 +19610524, -0.52, 0.36, 0.04, 0.008 +19610525, -0.30, 0.53, 0.16, 0.008 +19610526, 0.68, 0.20, -0.58, 0.008 +19610531, 0.12, -0.14, -0.22, 0.008 +19610601, -0.02, -0.44, -0.27, 0.009 +19610602, 0.20, -0.17, -0.37, 0.009 +19610605, 0.51, -0.45, 0.01, 0.009 +19610606, -0.26, -0.23, 0.02, 0.009 +19610607, -0.42, -0.63, 0.46, 0.009 +19610608, 0.07, -0.09, -0.34, 0.009 +19610609, 0.01, 0.51, -0.08, 0.009 +19610612, -0.70, 0.09, -0.13, 0.009 +19610613, -0.54, -0.08, 0.12, 0.009 +19610614, 0.22, -0.03, -0.15, 0.009 +19610615, -0.44, -0.09, -0.10, 0.009 +19610616, -0.79, -0.13, -0.31, 0.009 +19610619, -0.93, -0.40, 0.06, 0.009 +19610620, 0.84, -0.25, 0.15, 0.009 +19610621, 0.04, -0.06, 0.21, 0.009 +19610622, -0.41, -0.04, -0.03, 0.009 +19610623, 0.34, -0.19, -0.05, 0.009 +19610626, -1.07, 0.25, 0.14, 0.009 +19610627, -0.01, -0.17, -0.31, 0.009 +19610628, 0.21, 0.03, 0.43, 0.009 +19610629, -0.12, 0.02, 0.20, 0.009 +19610630, 0.17, 0.02, 0.15, 0.009 +19610703, 0.84, -0.36, -0.08, 0.009 +19610705, 0.62, 0.32, -0.31, 0.009 +19610706, 0.29, 0.30, 0.08, 0.009 +19610707, -0.07, 0.02, -0.25, 0.009 +19610710, -0.07, -0.03, 0.03, 0.009 +19610711, -0.12, -0.26, 0.40, 0.009 +19610712, -0.60, -0.42, 0.33, 0.009 +19610713, -0.68, 0.03, -0.09, 0.009 +19610714, 0.62, -0.16, -0.03, 0.009 +19610717, -0.78, 0.15, -0.17, 0.009 +19610718, -0.60, -0.29, -0.04, 0.009 +19610719, 0.38, -0.24, -0.33, 0.009 +19610720, 0.04, -0.23, 0.11, 0.009 +19610721, 0.20, -0.07, 0.19, 0.009 +19610724, -0.06, -0.14, -0.01, 0.009 +19610725, 0.57, -0.02, 0.01, 0.009 +19610726, 0.87, -0.10, 0.50, 0.009 +19610727, 1.10, -0.18, 0.05, 0.009 +19610728, 0.15, -0.12, -0.41, 0.009 +19610731, 0.09, -0.08, -0.06, 0.009 +19610801, 0.87, -0.24, -0.28, 0.006 +19610802, -0.55, 0.01, 0.46, 0.006 +19610803, 0.53, -0.10, -0.17, 0.006 +19610804, 0.61, -0.31, 0.39, 0.006 +19610807, 0.11, -0.24, -0.10, 0.006 +19610808, 0.20, -0.21, 0.06, 0.006 +19610809, 0.00, -0.03, -0.07, 0.006 +19610810, 0.35, -0.11, -0.15, 0.006 +19610811, 0.20, 0.09, -0.46, 0.006 +19610814, -0.53, -0.01, 0.14, 0.006 +19610815, -0.20, -0.03, -0.13, 0.006 +19610816, 0.33, -0.08, 0.01, 0.006 +19610817, 0.52, -0.03, 0.04, 0.006 +19610818, 0.27, 0.01, 0.27, 0.006 +19610821, 0.16, -0.41, -0.05, 0.006 +19610822, 0.01, -0.03, 0.11, 0.006 +19610823, -0.61, -0.19, 0.40, 0.006 +19610824, -0.55, 0.15, -0.19, 0.006 +19610825, 0.13, 0.11, -0.03, 0.006 +19610828, 0.04, 0.15, -0.25, 0.006 +19610829, -0.08, -0.02, 0.03, 0.006 +19610830, 0.43, -0.01, -0.20, 0.006 +19610831, 0.33, -0.16, -0.13, 0.006 +19610901, 0.21, 0.17, -0.23, 0.008 +19610905, -0.34, 0.15, -0.12, 0.008 +19610906, 0.66, -0.44, -0.12, 0.008 +19610907, -0.22, -0.45, 0.25, 0.008 +19610908, -0.68, -0.26, 0.10, 0.008 +19610911, -0.83, 0.01, 0.22, 0.008 +19610912, 0.97, -0.06, -0.16, 0.008 +19610913, 0.02, 0.01, -0.23, 0.008 +19610914, -0.75, 0.25, -0.01, 0.008 +19610915, 0.10, 0.07, -0.12, 0.008 +19610918, -0.65, -0.23, -0.19, 0.008 +19610919, -0.80, 0.07, 0.06, 0.008 +19610920, 0.46, -0.28, 0.43, 0.008 +19610921, 0.04, -0.02, 0.09, 0.008 +19610922, -0.42, -0.14, 0.37, 0.008 +19610925, -1.42, -0.08, 0.33, 0.008 +19610926, 0.02, -0.19, -0.12, 0.008 +19610927, 1.02, -0.06, -0.66, 0.008 +19610928, 0.20, 0.09, -0.24, 0.008 +19610929, 0.28, 0.30, -0.28, 0.008 +19611002, 0.03, -0.05, -0.33, 0.008 +19611003, -0.08, -0.25, 0.17, 0.008 +19611004, 0.66, 0.13, 0.45, 0.008 +19611005, 0.85, -0.16, -0.21, 0.008 +19611006, 0.27, -0.04, 0.11, 0.008 +19611009, 0.01, -0.22, 0.07, 0.008 +19611010, 0.26, -0.11, -0.23, 0.008 +19611011, -0.01, -0.02, 0.53, 0.008 +19611012, -0.01, 0.18, -0.10, 0.008 +19611013, -0.14, 0.15, -0.04, 0.008 +19611016, -0.26, 0.13, -0.25, 0.008 +19611017, 0.10, 0.06, -0.04, 0.008 +19611018, 0.47, -0.22, 0.25, 0.008 +19611019, 0.21, -0.40, -0.01, 0.008 +19611020, 0.02, -0.10, -0.06, 0.008 +19611023, -0.61, -0.08, 0.06, 0.008 +19611024, -0.15, -0.24, -0.22, 0.008 +19611025, 0.48, -0.22, -0.22, 0.008 +19611026, 0.21, -0.09, -0.12, 0.008 +19611027, -0.14, 0.09, 0.09, 0.008 +19611030, 0.10, -0.02, 0.20, 0.008 +19611031, 0.30, -0.14, -0.02, 0.008 +19611101, 0.21, 0.07, -0.04, 0.008 +19611102, 0.50, -0.09, -0.18, 0.008 +19611103, 0.57, 0.07, -0.03, 0.008 +19611106, 0.79, -0.10, -0.36, 0.008 +19611108, 1.17, 0.07, -0.09, 0.008 +19611109, -0.02, 0.18, 0.07, 0.008 +19611110, 0.44, 0.24, -0.50, 0.008 +19611113, 0.33, 0.29, -0.60, 0.008 +19611114, 0.54, -0.08, -0.41, 0.008 +19611115, -0.03, -0.10, -0.10, 0.008 +19611116, -0.02, 0.04, -0.21, 0.008 +19611117, 0.02, 0.12, 0.13, 0.008 +19611120, 0.16, -0.12, 0.07, 0.008 +19611121, 0.08, 0.14, -0.04, 0.008 +19611122, -0.07, 0.20, 0.26, 0.008 +19611124, 0.25, 0.35, 0.05, 0.008 +19611127, -0.02, 0.09, 0.06, 0.008 +19611128, 0.00, 0.10, 0.07, 0.008 +19611129, -0.06, -0.27, 0.26, 0.008 +19611130, -0.48, -0.06, 0.47, 0.008 +19611201, 0.60, 0.06, 0.04, 0.009 +19611204, 0.22, -0.09, 0.38, 0.009 +19611205, -0.12, -0.33, -0.01, 0.009 +19611206, 0.12, -0.25, 0.17, 0.009 +19611207, -0.38, 0.14, 0.16, 0.009 +19611208, 0.46, -0.27, -0.08, 0.009 +19611211, 0.37, -0.29, 0.24, 0.009 +19611212, 0.30, -0.29, -0.21, 0.009 +19611213, -0.16, 0.10, -0.16, 0.009 +19611214, -0.72, -0.19, 0.43, 0.009 +19611215, -0.03, 0.08, -0.02, 0.009 +19611218, -0.38, -0.02, 0.39, 0.009 +19611219, -0.65, 0.26, -0.02, 0.009 +19611220, -0.19, 0.38, -0.08, 0.009 +19611221, -0.34, 0.20, 0.31, 0.009 +19611222, 0.04, -0.02, 0.16, 0.009 +19611226, 0.06, -0.29, 0.53, 0.009 +19611227, 0.79, -0.23, -0.40, 0.009 +19611228, 0.01, -0.10, -0.34, 0.009 +19611229, -0.16, 0.21, 0.20, 0.009 +19620102, -0.80, 0.88, 0.57, 0.011 +19620103, 0.24, 0.22, 0.97, 0.011 +19620104, -0.83, 0.01, 0.66, 0.011 +19620105, -1.34, 0.08, 0.32, 0.011 +19620108, -0.75, 0.22, 0.32, 0.011 +19620109, 0.02, -0.12, 0.35, 0.011 +19620110, -0.24, 0.01, -0.21, 0.011 +19620111, 0.61, -0.05, 0.08, 0.011 +19620112, 0.33, 0.18, 0.24, 0.011 +19620115, -0.24, 0.08, 0.07, 0.011 +19620116, -0.53, 0.18, 0.05, 0.011 +19620117, -1.01, 0.25, 0.39, 0.011 +19620118, 0.05, 0.14, -0.05, 0.011 +19620119, 0.56, 0.41, 0.24, 0.011 +19620122, -0.02, -0.09, -0.16, 0.011 +19620123, -0.69, 0.13, 0.09, 0.011 +19620124, 0.20, -0.39, 0.08, 0.011 +19620125, -0.13, 0.18, 0.29, 0.011 +19620126, -0.29, -0.03, 0.51, 0.011 +19620129, -0.33, -0.23, 0.36, 0.011 +19620130, 0.33, -0.10, 0.24, 0.011 +19620131, 0.94, -0.14, -0.26, 0.011 +19620201, 0.55, -0.54, 0.22, 0.011 +19620202, 0.77, -0.25, 0.01, 0.011 +19620205, 0.16, 0.02, 0.07, 0.011 +19620206, 0.22, 0.04, -0.23, 0.011 +19620207, 0.70, -0.23, 0.18, 0.011 +19620208, 0.18, 0.08, -0.15, 0.011 +19620209, -0.10, 0.05, -0.13, 0.011 +19620212, -0.04, -0.04, 0.30, 0.011 +19620213, 0.02, 0.20, 0.02, 0.011 +19620214, -0.05, -0.02, 0.13, 0.011 +19620215, 0.42, -0.32, 0.28, 0.011 +19620216, -0.23, 0.26, 0.12, 0.011 +19620219, -0.24, -0.18, 0.38, 0.011 +19620220, 0.33, -0.24, 0.11, 0.011 +19620221, -0.49, 0.15, -0.13, 0.011 +19620223, -0.21, -0.07, 0.03, 0.011 +19620226, -0.50, -0.10, 0.03, 0.011 +19620227, 0.14, -0.12, -0.08, 0.011 +19620228, 0.16, 0.16, -0.32, 0.011 +19620301, 0.32, 0.00, -0.05, 0.009 +19620302, -0.07, 0.30, 0.00, 0.009 +19620305, -0.22, 0.12, -0.21, 0.009 +19620306, -0.33, 0.35, -0.22, 0.009 +19620307, -0.12, 0.00, -0.21, 0.009 +19620308, 0.73, -0.08, -0.26, 0.009 +19620309, 0.29, 0.19, -0.10, 0.009 +19620312, -0.02, 0.23, -0.29, 0.009 +19620313, 0.28, -0.30, 0.18, 0.009 +19620314, 0.40, -0.27, -0.10, 0.009 +19620315, 0.17, -0.10, -0.12, 0.009 +19620316, -0.08, 0.15, -0.05, 0.009 +19620319, -0.19, 0.02, 0.14, 0.009 +19620320, -0.26, -0.08, 0.08, 0.009 +19620321, -0.21, 0.03, 0.08, 0.009 +19620322, -0.14, 0.40, -0.37, 0.009 +19620323, 0.08, -0.07, -0.21, 0.009 +19620326, -0.76, 0.23, -0.16, 0.009 +19620327, -0.27, -0.12, 0.31, 0.009 +19620328, 0.49, -0.11, 0.15, 0.009 +19620329, -0.09, 0.13, -0.21, 0.009 +19620330, -0.66, -0.35, -0.01, 0.009 +19620402, -0.31, -0.01, -0.13, 0.011 +19620403, -0.83, -0.11, -0.01, 0.011 +19620404, -0.54, -0.04, 0.07, 0.011 +19620405, 0.61, -0.12, -0.05, 0.011 +19620406, -0.09, 0.23, 0.05, 0.011 +19620409, -0.79, -0.35, -0.10, 0.011 +19620410, 0.32, -0.13, 0.03, 0.011 +19620411, -0.20, 0.22, 0.08, 0.011 +19620412, -1.07, -0.10, -0.01, 0.011 +19620413, 0.13, -0.19, 0.11, 0.011 +19620416, -0.38, -0.15, 0.13, 0.011 +19620417, 0.51, -0.39, 0.24, 0.011 +19620418, 0.54, 0.10, 0.23, 0.011 +19620419, 0.48, 0.11, -0.17, 0.011 +19620423, -0.13, 0.09, -0.52, 0.011 +19620424, -0.12, 0.13, -0.11, 0.011 +19620425, -1.14, 0.09, 0.06, 0.011 +19620426, -0.96, -0.18, -0.14, 0.011 +19620427, -1.09, 0.09, 0.38, 0.011 +19620430, -1.69, -0.17, 0.08, 0.011 +19620501, 0.81, -0.12, 0.22, 0.011 +19620502, 0.47, 0.29, 0.04, 0.011 +19620503, 0.82, -0.42, -0.20, 0.011 +19620504, -0.48, -0.06, -0.15, 0.011 +19620507, -0.31, -0.19, 0.30, 0.011 +19620508, -1.20, -0.15, 0.45, 0.011 +19620509, -1.32, 0.15, 0.15, 0.011 +19620510, -1.10, -0.28, 0.09, 0.011 +19620511, -1.47, -0.11, 0.37, 0.011 +19620514, 0.76, -0.01, 0.02, 0.011 +19620515, 1.76, 0.35, -0.27, 0.011 +19620516, -0.07, -0.32, 0.14, 0.011 +19620517, -0.63, -0.23, 0.32, 0.011 +19620518, -0.12, -0.19, 0.02, 0.011 +19620521, -0.39, 0.06, -0.06, 0.011 +19620522, -2.01, -0.07, 0.14, 0.011 +19620523, -2.00, -0.67, 0.70, 0.011 +19620524, -0.88, -0.41, 0.46, 0.011 +19620525, -1.89, -0.46, 0.17, 0.011 +19620528, -7.00, 0.75, 1.53, 0.011 +19620529, 4.95, -3.87, -1.53, 0.011 +19620531, 2.78, 2.37, -0.25, 0.011 +19620601, -0.33, 0.28, 0.16, 0.009 +19620604, -3.61, -0.44, 0.92, 0.009 +19620605, 0.48, -0.65, 0.17, 0.009 +19620606, 1.42, 0.45, -0.01, 0.009 +19620607, 0.01, 0.44, -0.23, 0.009 +19620608, 0.04, 0.06, -0.16, 0.009 +19620611, -1.09, -0.08, 0.62, 0.009 +19620612, -2.59, -0.32, 0.61, 0.009 +19620613, -1.58, -0.33, 0.27, 0.009 +19620614, -2.10, -0.38, 0.62, 0.009 +19620615, 2.99, -0.29, -0.55, 0.009 +19620618, -0.42, 0.48, 0.27, 0.009 +19620619, -0.26, -0.11, 0.21, 0.009 +19620620, -1.40, 0.37, 0.15, 0.009 +19620621, -2.24, 0.13, 0.58, 0.009 +19620622, -1.70, -0.19, -0.44, 0.009 +19620625, -0.34, -0.35, -0.75, 0.009 +19620626, -0.37, 0.65, 0.37, 0.009 +19620627, 0.54, -0.49, -0.27, 0.009 +19620628, 3.39, -0.22, -0.23, 0.009 +19620629, 0.61, 0.36, 0.27, 0.009 +19620702, 2.07, -0.59, -0.73, 0.013 +19620703, 1.14, 0.20, -0.42, 0.013 +19620705, 0.60, -0.13, 0.02, 0.013 +19620706, -1.08, -0.06, 0.66, 0.013 +19620709, 0.67, -0.08, -0.40, 0.013 +19620710, 1.25, 1.32, -0.06, 0.013 +19620711, 0.98, 0.20, -0.65, 0.013 +19620712, 0.53, 1.06, -0.29, 0.013 +19620713, -0.30, 0.35, -0.38, 0.013 +19620716, 0.01, 0.30, -0.72, 0.013 +19620717, -1.77, -0.16, 0.98, 0.013 +19620718, -1.03, -0.31, 0.35, 0.013 +19620719, 0.39, 0.06, -0.33, 0.013 +19620720, 0.61, -0.37, -0.01, 0.013 +19620723, -0.06, 0.20, -0.34, 0.013 +19620724, -0.84, 0.04, 0.45, 0.013 +19620725, 0.17, -0.42, -0.25, 0.013 +19620726, 0.45, 0.10, -0.21, 0.013 +19620727, 0.73, -0.27, -0.13, 0.013 +19620730, 1.01, -0.05, -0.52, 0.013 +19620731, 0.63, 0.04, -0.35, 0.013 +19620801, -0.74, 0.16, 0.49, 0.010 +19620802, 0.35, -0.03, -0.63, 0.010 +19620803, 0.21, -0.07, 0.26, 0.010 +19620806, -0.63, 0.11, 0.30, 0.010 +19620807, -0.61, -0.05, 0.20, 0.010 +19620808, 0.33, 0.03, -0.17, 0.010 +19620809, -0.12, 0.13, 0.09, 0.010 +19620810, 0.16, -0.13, 0.10, 0.010 +19620813, 0.21, 0.04, -0.25, 0.010 +19620814, 0.99, -0.30, -0.51, 0.010 +19620815, 0.71, 0.45, -0.09, 0.010 +19620816, 0.04, 0.52, -0.50, 0.010 +19620817, 0.61, -0.10, -0.32, 0.010 +19620820, 0.60, 0.30, -0.36, 0.010 +19620821, -0.36, -0.20, 0.37, 0.010 +19620822, 1.17, 0.01, -0.32, 0.010 +19620823, -0.12, -0.09, 0.08, 0.010 +19620824, -0.13, 0.30, -0.01, 0.010 +19620827, -0.05, 0.07, 0.03, 0.010 +19620828, -1.11, -0.26, 0.37, 0.010 +19620829, -0.18, -0.02, 0.07, 0.010 +19620830, -0.01, 0.14, -0.27, 0.010 +19620831, 0.81, 0.19, -0.15, 0.010 +19620904, -0.97, 0.05, 0.31, 0.011 +19620905, -0.71, -0.29, 0.48, 0.011 +19620906, 0.37, -0.02, -0.17, 0.011 +19620907, 0.01, -0.07, 0.12, 0.011 +19620910, 0.07, -0.36, -0.18, 0.011 +19620911, 0.25, -0.19, -0.19, 0.011 +19620912, 0.43, -0.03, -0.31, 0.011 +19620913, -0.25, -0.14, 0.17, 0.011 +19620914, 0.30, -0.19, 0.12, 0.011 +19620917, 0.26, 0.04, -0.76, 0.011 +19620918, -0.07, 0.04, -0.22, 0.011 +19620919, -0.19, -0.28, 0.05, 0.011 +19620920, -0.67, -0.06, 0.09, 0.011 +19620921, -1.44, -0.34, 0.54, 0.011 +19620924, -1.85, -0.16, 0.85, 0.011 +19620925, 0.54, -0.05, -0.40, 0.011 +19620926, -1.41, -0.25, 0.86, 0.011 +19620927, -0.65, -0.03, 0.39, 0.011 +19620928, 0.67, -0.24, -0.47, 0.011 +19621001, -1.28, -0.26, 0.44, 0.011 +19621002, 1.04, -0.20, -0.58, 0.011 +19621003, 0.14, -0.14, 0.43, 0.011 +19621004, 0.80, -0.45, -0.21, 0.011 +19621005, 0.61, -0.06, -0.18, 0.011 +19621008, 0.01, 0.15, 0.10, 0.011 +19621009, 0.30, -0.12, -0.30, 0.011 +19621010, -0.01, 0.12, -0.06, 0.011 +19621011, -0.30, -0.13, 0.08, 0.011 +19621012, -0.18, -0.18, 0.29, 0.011 +19621015, 0.46, -0.24, -0.35, 0.011 +19621016, -0.32, -0.13, 0.27, 0.011 +19621017, -0.46, -0.39, 0.29, 0.011 +19621018, -0.94, -0.19, 0.01, 0.011 +19621019, -1.35, -0.10, 0.45, 0.011 +19621022, -1.17, -0.55, 0.35, 0.011 +19621023, -2.68, -0.09, 1.01, 0.011 +19621024, 2.83, -1.44, -1.35, 0.011 +19621025, -0.77, 0.56, 1.06, 0.011 +19621026, -0.30, -0.27, 0.24, 0.011 +19621029, 2.19, 0.20, -0.56, 0.011 +19621030, 1.49, -0.09, -0.49, 0.011 +19621031, -0.01, -0.04, 0.27, 0.011 +19621101, 1.01, -0.24, -0.31, 0.010 +19621102, 1.07, 0.05, -0.27, 0.010 +19621105, 1.03, 0.16, -0.07, 0.010 +19621107, 0.69, 0.08, 0.25, 0.010 +19621108, -0.59, 0.19, 0.70, 0.010 +19621109, 0.98, 0.26, 0.22, 0.010 +19621112, 1.38, 0.72, 0.11, 0.010 +19621113, -0.19, -0.01, -0.13, 0.010 +19621114, 1.20, 0.22, -0.15, 0.010 +19621115, -0.27, 0.02, 0.10, 0.010 +19621116, 0.30, -0.11, 0.23, 0.010 +19621119, -0.47, -0.19, 0.26, 0.010 +19621120, 0.99, -0.38, 0.45, 0.010 +19621121, 0.69, 0.18, -0.14, 0.010 +19621123, 1.17, -0.08, 0.00, 0.010 +19621126, -0.28, 0.09, -0.12, 0.010 +19621127, 0.71, 0.53, -0.05, 0.010 +19621128, 0.74, 0.45, -0.38, 0.010 +19621129, 0.44, 0.14, -0.30, 0.010 +19621130, -0.22, 0.26, 0.49, 0.010 +19621203, -0.40, -0.01, 0.19, 0.012 +19621204, 1.08, -0.04, -0.19, 0.012 +19621205, 0.41, -0.09, -0.47, 0.012 +19621206, 0.08, -0.06, -0.36, 0.012 +19621207, 0.20, -0.53, -0.15, 0.012 +19621210, -1.30, -0.58, -0.04, 0.012 +19621211, 0.04, -0.33, 0.35, 0.012 +19621212, 0.46, 0.05, -0.03, 0.012 +19621213, -0.36, -0.17, 0.15, 0.012 +19621214, 0.20, -0.26, 0.02, 0.012 +19621217, -0.38, -0.13, -0.38, 0.012 +19621218, -0.48, -0.59, 0.43, 0.012 +19621219, 0.76, -0.46, -0.11, 0.012 +19621220, 0.31, -0.01, 0.08, 0.012 +19621221, -0.23, -0.22, 0.23, 0.012 +19621224, -0.06, -0.06, 0.12, 0.012 +19621226, 0.61, -0.10, 0.23, 0.012 +19621227, -0.16, -0.03, 0.08, 0.012 +19621228, 0.05, -0.06, -0.13, 0.012 +19621231, 0.23, -0.14, 0.32, 0.012 +19630102, -0.54, 0.94, 0.33, 0.011 +19630103, 1.66, 0.99, -0.24, 0.011 +19630104, 0.68, 0.64, 0.01, 0.011 +19630107, 0.06, 0.33, 0.28, 0.011 +19630108, 0.90, -0.03, 0.23, 0.011 +19630109, -0.16, 0.10, 0.08, 0.011 +19630110, 0.19, 0.21, -0.10, 0.011 +19630111, 0.25, -0.04, -0.16, 0.011 +19630114, 0.57, 0.07, 0.23, 0.011 +19630115, -0.10, -0.02, 0.33, 0.011 +19630116, -0.69, 0.10, 0.00, 0.011 +19630117, 0.66, 0.07, -0.21, 0.011 +19630118, 0.02, 0.07, -0.06, 0.011 +19630121, 0.14, -0.03, -0.17, 0.011 +19630122, 0.26, 0.41, -0.04, 0.011 +19630123, 0.22, 0.10, 0.29, 0.011 +19630124, 0.16, 0.24, 0.27, 0.011 +19630125, 0.25, -0.36, 0.32, 0.011 +19630128, 0.40, -0.39, 0.13, 0.011 +19630129, 0.02, -0.32, 0.36, 0.011 +19630130, -0.56, -0.12, 0.14, 0.011 +19630131, 0.44, -0.08, 0.06, 0.011 +19630201, 0.18, 0.08, 0.32, 0.012 +19630204, -0.20, 0.03, -0.21, 0.012 +19630205, -0.07, -0.35, 0.33, 0.012 +19630206, 0.48, 0.25, -0.18, 0.012 +19630207, -0.29, -0.02, 0.44, 0.012 +19630208, 0.04, -0.04, -0.09, 0.012 +19630211, -0.50, 0.08, 0.51, 0.012 +19630212, 0.04, -0.12, 0.05, 0.012 +19630213, 0.47, 0.29, 0.54, 0.012 +19630214, 0.30, 0.21, 0.16, 0.012 +19630215, 0.14, -0.11, -0.11, 0.012 +19630218, 0.15, -0.28, 0.23, 0.012 +19630219, -0.42, -0.04, 0.03, 0.012 +19630220, -0.51, 0.08, 0.10, 0.012 +19630221, 0.11, 0.11, -0.02, 0.012 +19630225, -0.60, 0.15, 0.15, 0.012 +19630226, 0.09, 0.24, -0.21, 0.012 +19630227, -0.65, 0.10, 0.11, 0.012 +19630228, -1.14, -0.18, 0.05, 0.012 +19630301, -0.34, -0.27, 0.17, 0.011 +19630304, 0.91, 0.01, 0.11, 0.011 +19630305, -0.03, -0.34, 0.11, 0.011 +19630306, 0.17, -0.25, 0.00, 0.011 +19630307, 0.58, -0.21, -0.03, 0.011 +19630308, 0.13, -0.09, 0.09, 0.011 +19630311, 0.21, -0.31, -0.06, 0.011 +19630312, 0.24, -0.12, 0.04, 0.011 +19630313, 0.31, -0.21, 0.38, 0.011 +19630314, -0.45, 0.09, -0.19, 0.011 +19630315, 0.39, -0.43, 0.27, 0.011 +19630318, -0.44, -0.05, -0.13, 0.011 +19630319, -0.23, -0.31, 0.14, 0.011 +19630320, 0.71, -0.08, 0.34, 0.011 +19630321, -0.13, 0.03, -0.01, 0.011 +19630322, 0.44, -0.06, 0.38, 0.011 +19630325, 0.03, -0.07, 0.16, 0.011 +19630326, 0.26, -0.19, 0.06, 0.011 +19630327, 0.40, 0.15, -0.17, 0.011 +19630328, -0.13, 0.09, 0.00, 0.011 +19630329, 0.00, 0.07, 0.42, 0.011 +19630401, 0.36, -0.20, 0.35, 0.012 +19630402, -0.03, -0.02, 0.04, 0.012 +19630403, 0.71, -0.44, -0.07, 0.012 +19630404, 0.62, -0.16, -0.28, 0.012 +19630405, 0.56, -0.12, 0.02, 0.012 +19630408, 0.33, 0.05, -0.22, 0.012 +19630409, -0.08, -0.01, -0.09, 0.012 +19630410, -0.26, -0.09, 0.34, 0.012 +19630411, 0.66, -0.11, 0.27, 0.012 +19630415, 0.38, -0.46, 0.20, 0.012 +19630416, 0.08, -0.03, 0.06, 0.012 +19630417, -0.23, 0.09, -0.14, 0.012 +19630418, 0.08, -0.10, 0.49, 0.012 +19630419, 0.47, 0.14, 0.17, 0.012 +19630422, 0.05, -0.04, 0.06, 0.012 +19630423, 0.36, -0.01, -0.05, 0.012 +19630424, 0.26, 0.08, 0.04, 0.012 +19630425, 0.06, -0.05, -0.10, 0.012 +19630426, -0.06, 0.25, -0.06, 0.012 +19630429, -0.08, -0.11, -0.18, 0.012 +19630430, 0.21, 0.08, 0.11, 0.012 +19630501, 0.25, -0.04, -0.03, 0.011 +19630502, 0.25, -0.08, 0.08, 0.011 +19630503, -0.18, 0.25, -0.07, 0.011 +19630506, -0.64, 0.36, -0.22, 0.011 +19630507, -0.04, 0.25, -0.17, 0.011 +19630508, 0.78, -0.03, -0.03, 0.011 +19630509, 0.43, -0.04, 0.20, 0.011 +19630510, 0.31, 0.18, -0.15, 0.011 +19630513, 0.03, 0.25, -0.04, 0.011 +19630514, -0.28, 0.59, 0.44, 0.011 +19630515, 0.25, 0.06, 0.27, 0.011 +19630516, -0.23, -0.12, 0.56, 0.011 +19630517, 0.08, 0.06, 0.09, 0.011 +19630520, -0.40, 0.25, 0.61, 0.011 +19630521, 0.23, -0.08, 0.38, 0.011 +19630522, 0.04, 0.09, 0.30, 0.011 +19630523, -0.08, 0.13, -0.16, 0.011 +19630524, -0.11, -0.08, -0.11, 0.011 +19630527, -0.11, -0.24, 0.03, 0.011 +19630528, 0.18, -0.21, 0.09, 0.011 +19630529, 0.43, -0.18, 0.39, 0.011 +19630531, 0.55, -0.34, -0.07, 0.011 +19630603, -0.08, 0.06, -0.09, 0.011 +19630604, -0.01, 0.02, -0.04, 0.011 +19630605, -0.25, 0.04, 0.29, 0.011 +19630606, 0.01, -0.26, 0.27, 0.011 +19630607, -0.19, 0.17, -0.14, 0.011 +19630610, -0.56, 0.05, -0.28, 0.011 +19630611, 0.10, 0.00, -0.24, 0.011 +19630612, 0.49, 0.06, -0.33, 0.011 +19630613, -0.26, 0.14, 0.12, 0.011 +19630614, 0.07, 0.15, -0.32, 0.011 +19630617, -0.39, 0.15, 0.22, 0.011 +19630618, 0.13, -0.14, 0.08, 0.011 +19630619, 0.07, 0.26, 0.16, 0.011 +19630620, -0.10, -0.14, 0.03, 0.011 +19630621, 0.31, 0.18, 0.34, 0.011 +19630624, -0.09, -0.05, 0.29, 0.011 +19630625, -0.24, -0.19, 0.14, 0.011 +19630626, -0.92, -0.30, 0.23, 0.011 +19630627, -0.49, -0.26, -0.11, 0.011 +19630628, 0.40, -0.20, 0.10, 0.011 +19630701, -0.67, 0.16, -0.32, 0.012 +19630702, 0.79, -0.28, 0.27, 0.012 +19630703, 0.63, -0.18, -0.09, 0.012 +19630705, 0.40, 0.10, -0.28, 0.012 +19630708, -0.63, 0.04, -0.18, 0.012 +19630709, 0.45, 0.01, 0.10, 0.012 +19630710, -0.18, 0.15, 0.01, 0.012 +19630711, -0.16, 0.19, -0.30, 0.012 +19630712, -0.12, 0.01, -0.11, 0.012 +19630715, -0.62, 0.02, -0.03, 0.012 +19630716, -0.07, -0.13, 0.14, 0.012 +19630717, -0.33, -0.15, 0.15, 0.012 +19630718, -0.54, 0.29, 0.05, 0.012 +19630719, -0.23, -0.02, -0.05, 0.012 +19630722, -0.70, -0.11, -0.31, 0.012 +19630723, 0.01, -0.07, -0.20, 0.012 +19630724, 0.46, -0.09, -0.01, 0.012 +19630725, -0.04, 0.04, 0.26, 0.012 +19630726, 0.35, -0.20, 0.07, 0.012 +19630729, 0.11, -0.29, 0.26, 0.012 +19630730, 0.84, -0.24, -0.27, 0.012 +19630731, -0.13, 0.18, -0.01, 0.012 +19630801, -0.08, -0.12, -0.12, 0.011 +19630802, 0.29, -0.23, 0.15, 0.011 +19630805, 0.57, -0.41, 0.16, 0.011 +19630806, 0.60, -0.40, 0.25, 0.011 +19630807, -0.19, 0.01, 0.17, 0.011 +19630808, 0.14, 0.03, -0.25, 0.011 +19630809, 0.60, -0.09, -0.06, 0.011 +19630812, 0.24, 0.10, 0.41, 0.011 +19630813, 0.27, -0.30, -0.03, 0.011 +19630814, 0.30, -0.05, 0.21, 0.011 +19630815, 0.43, -0.30, 0.37, 0.011 +19630816, 0.15, 0.11, 0.10, 0.011 +19630819, -0.05, 0.07, -0.10, 0.011 +19630820, -0.05, 0.06, -0.25, 0.011 +19630821, -0.11, 0.36, -0.12, 0.011 +19630822, 0.39, 0.12, 0.09, 0.011 +19630823, 0.34, -0.02, 0.10, 0.011 +19630826, 0.18, -0.21, 0.14, 0.011 +19630827, -0.44, 0.11, -0.05, 0.011 +19630828, 0.77, -0.04, 0.44, 0.011 +19630829, 0.18, 0.15, 0.02, 0.011 +19630830, 0.44, 0.12, -0.09, 0.011 +19630903, 0.23, 0.11, 0.06, 0.014 +19630904, -0.01, 0.10, -0.06, 0.014 +19630905, 0.47, -0.06, 0.11, 0.014 +19630906, -0.27, -0.17, -0.01, 0.014 +19630909, -0.36, -0.26, -0.01, 0.014 +19630910, 0.52, -0.21, 0.42, 0.014 +19630911, 0.24, -0.21, 0.20, 0.014 +19630912, -0.09, 0.10, -0.11, 0.014 +19630913, 0.02, 0.40, -0.15, 0.014 +19630916, -0.16, 0.10, 0.19, 0.014 +19630917, 0.03, -0.14, 0.17, 0.014 +19630918, -0.43, 0.10, -0.24, 0.014 +19630919, 0.52, -0.44, 0.17, 0.014 +19630920, 0.04, -0.05, -0.01, 0.014 +19630923, -0.50, -0.01, -0.21, 0.014 +19630924, 0.35, -0.40, 0.12, 0.014 +19630925, -0.58, -0.31, -0.08, 0.014 +19630926, -0.81, 0.52, -0.35, 0.014 +19630927, -0.18, 0.32, -0.22, 0.014 +19630930, -0.60, 0.25, 0.08, 0.014 +19631001, 0.65, -0.25, 0.25, 0.013 +19631002, 0.10, -0.05, 0.00, 0.013 +19631003, 0.67, -0.39, 0.85, 0.013 +19631004, 0.00, 0.01, 0.06, 0.013 +19631007, -0.23, 0.21, -0.02, 0.013 +19631008, -0.14, 0.05, 0.25, 0.013 +19631009, -0.61, 0.18, -0.05, 0.013 +19631010, 0.08, 0.00, 0.15, 0.013 +19631011, 0.13, 0.38, 0.08, 0.013 +19631014, 0.05, 0.03, 0.07, 0.013 +19631015, 0.17, -0.21, 0.14, 0.013 +19631016, 0.89, -0.31, 0.27, 0.013 +19631017, 0.14, 0.13, -0.25, 0.013 +19631018, 0.09, 0.17, -0.24, 0.013 +19631021, 0.03, -0.06, -0.30, 0.013 +19631022, -0.54, 0.43, -0.46, 0.013 +19631023, 0.03, -0.07, -0.05, 0.013 +19631024, 0.35, -0.17, 0.47, 0.013 +19631025, 0.85, -0.22, -0.89, 0.013 +19631028, 0.41, -0.68, -0.28, 0.013 +19631029, -0.04, -0.20, -0.07, 0.013 +19631030, -0.79, 0.46, -0.06, 0.013 +19631031, 0.21, -0.04, 0.11, 0.013 +19631101, -0.18, 0.18, 0.19, 0.015 +19631104, -0.43, -0.06, 0.36, 0.015 +19631106, -0.77, 0.05, 0.25, 0.015 +19631107, 0.33, -0.01, -0.04, 0.015 +19631108, 0.54, 0.03, 0.12, 0.015 +19631111, 0.20, 0.24, 0.15, 0.015 +19631112, -0.37, 0.33, -0.29, 0.015 +19631113, 0.05, 0.05, -0.08, 0.015 +19631114, -0.41, 0.20, -0.03, 0.015 +19631115, -0.75, 0.33, 0.00, 0.015 +19631118, -0.74, 0.16, -0.23, 0.015 +19631119, 0.10, -0.29, 0.35, 0.015 +19631120, 0.76, -0.93, -0.35, 0.015 +19631121, -1.25, -0.13, 0.03, 0.015 +19631122, -2.90, -0.55, 0.05, 0.015 +19631126, 3.94, -1.34, 0.87, 0.015 +19631127, -0.16, 0.38, 0.13, 0.015 +19631129, 1.34, 0.16, 0.31, 0.015 +19631202, 0.53, -0.28, -0.21, 0.014 +19631203, -0.05, 0.01, -0.20, 0.014 +19631204, 0.25, 0.01, 0.12, 0.014 +19631205, 0.57, -0.68, 0.12, 0.014 +19631206, -0.32, 0.13, 0.08, 0.014 +19631209, -0.11, -0.04, -0.16, 0.014 +19631210, 0.06, -0.18, 0.20, 0.014 +19631211, -0.14, 0.04, 0.09, 0.014 +19631212, -0.03, -0.17, -0.07, 0.014 +19631213, 0.16, -0.08, 0.11, 0.014 +19631216, 0.25, -0.45, -0.03, 0.014 +19631217, 0.44, -0.58, 0.06, 0.014 +19631218, -0.18, -0.31, 0.57, 0.014 +19631219, -0.33, -0.04, -0.44, 0.014 +19631220, -0.20, -0.19, 0.11, 0.014 +19631223, -0.60, 0.28, -0.07, 0.014 +19631224, 0.23, 0.23, -0.15, 0.014 +19631226, 0.47, 0.16, 0.08, 0.014 +19631227, 0.16, 0.10, -0.14, 0.014 +19631230, 0.10, -0.27, -0.17, 0.014 +19631231, 0.56, 0.39, -0.11, 0.014 +19640102, 0.60, 0.59, 0.59, 0.013 +19640103, 0.17, 0.12, 0.38, 0.013 +19640106, 0.23, 0.12, 0.02, 0.013 +19640107, 0.04, 0.08, 0.76, 0.013 +19640108, 0.34, 0.04, -0.15, 0.013 +19640109, 0.30, 0.03, -0.32, 0.013 +19640110, -0.04, -0.04, -0.12, 0.013 +19640113, -0.10, 0.00, 0.45, 0.013 +19640114, 0.15, -0.34, 0.64, 0.013 +19640115, 0.24, -0.28, -0.11, 0.013 +19640116, -0.10, 0.25, -0.32, 0.013 +19640117, -0.02, 0.34, -0.03, 0.013 +19640120, -0.21, 0.15, -0.54, 0.013 +19640121, 0.26, -0.47, 0.07, 0.013 +19640122, 0.48, -0.21, 0.41, 0.013 +19640123, 0.09, -0.12, 0.16, 0.013 +19640124, 0.04, 0.24, 0.18, 0.013 +19640127, -0.11, -0.30, 0.06, 0.013 +19640128, -0.01, -0.25, 0.18, 0.013 +19640129, -0.58, -0.03, -0.15, 0.013 +19640130, 0.04, 0.12, -0.30, 0.013 +19640131, 0.38, -0.27, -0.19, 0.013 +19640203, 0.00, -0.06, 0.06, 0.014 +19640204, -0.13, -0.21, -0.20, 0.014 +19640205, -0.08, 0.01, 0.29, 0.014 +19640206, 0.24, 0.10, -0.23, 0.014 +19640207, 0.37, 0.04, 0.12, 0.014 +19640210, -0.13, 0.17, -0.22, 0.014 +19640211, 0.33, 0.03, -0.14, 0.014 +19640212, 0.30, 0.03, 0.18, 0.014 +19640213, 0.08, 0.02, -0.06, 0.014 +19640214, -0.04, 0.10, 0.23, 0.014 +19640217, 0.03, 0.09, 0.27, 0.014 +19640218, 0.01, -0.26, 0.53, 0.014 +19640219, 0.11, -0.04, 0.05, 0.014 +19640220, 0.09, -0.03, 0.70, 0.014 +19640224, 0.10, -0.10, 0.46, 0.014 +19640225, 0.04, -0.12, 0.17, 0.014 +19640226, 0.28, 0.08, 0.22, 0.014 +19640227, -0.27, 0.26, -0.08, 0.014 +19640228, 0.21, -0.01, 0.42, 0.014 +19640302, 0.22, -0.06, 0.32, 0.015 +19640303, 0.26, -0.28, -0.26, 0.015 +19640304, -0.20, 0.02, -0.11, 0.015 +19640305, 0.00, 0.06, 0.22, 0.015 +19640306, 0.32, 0.41, 0.01, 0.015 +19640309, 0.01, 0.04, 0.42, 0.015 +19640310, 0.28, -0.40, 0.25, 0.015 +19640311, 0.40, -0.26, 0.19, 0.015 +19640312, 0.18, -0.06, 0.17, 0.015 +19640313, 0.09, 0.04, 0.10, 0.015 +19640316, 0.03, 0.01, -0.22, 0.015 +19640317, 0.19, -0.02, 0.25, 0.015 +19640318, 0.10, -0.11, 0.50, 0.015 +19640319, -0.09, 0.07, 0.02, 0.015 +19640320, -0.42, 0.33, 0.10, 0.015 +19640323, 0.01, 0.39, -0.07, 0.015 +19640324, -0.18, 0.07, 0.30, 0.015 +19640325, 0.24, 0.22, 0.60, 0.015 +19640326, 0.26, 0.10, 0.66, 0.015 +19640330, -0.10, 0.08, 0.06, 0.015 +19640331, -0.19, 0.23, -0.29, 0.015 +19640401, 0.34, 0.04, 0.65, 0.013 +19640402, 0.57, 0.00, 0.29, 0.013 +19640403, 0.22, 0.07, -0.41, 0.013 +19640406, 0.07, 0.08, 0.27, 0.013 +19640407, -0.34, 0.26, -0.44, 0.013 +19640408, 0.01, 0.34, 0.17, 0.013 +19640409, 0.00, 0.24, -0.16, 0.013 +19640410, 0.19, 0.16, 0.10, 0.013 +19640413, -0.08, -0.05, -0.21, 0.013 +19640414, 0.19, -0.25, -0.13, 0.013 +19640415, 0.11, -0.01, -0.56, 0.013 +19640416, 0.08, -0.20, -0.07, 0.013 +19640417, 0.38, -0.40, 0.27, 0.013 +19640420, -0.07, -0.19, -0.17, 0.013 +19640421, -0.01, -0.08, -0.10, 0.013 +19640422, -0.05, -0.18, 0.21, 0.013 +19640423, -0.16, -0.30, -0.03, 0.013 +19640424, -0.77, -0.14, -0.41, 0.013 +19640427, -0.54, -0.04, 0.22, 0.013 +19640428, 0.64, -0.27, 0.77, 0.013 +19640429, -0.40, -0.21, -0.70, 0.013 +19640430, -0.25, -0.26, -0.04, 0.013 +19640501, 0.78, -0.16, 0.32, 0.013 +19640504, 0.45, 0.05, 0.22, 0.013 +19640505, 0.46, -0.51, 0.12, 0.013 +19640506, 0.26, -0.22, 0.19, 0.013 +19640507, 0.11, -0.14, 0.73, 0.013 +19640508, -0.18, 0.00, 0.11, 0.013 +19640511, -0.03, 0.03, 0.01, 0.013 +19640512, 0.32, -0.08, 0.04, 0.013 +19640513, -0.25, 0.01, -0.17, 0.013 +19640514, -0.11, 0.27, -0.02, 0.013 +19640515, 0.15, -0.21, -0.06, 0.013 +19640518, -0.33, 0.01, -0.21, 0.013 +19640519, -0.44, 0.34, -0.15, 0.013 +19640520, 0.42, -0.24, 0.43, 0.013 +19640521, 0.07, 0.04, -0.20, 0.013 +19640522, 0.05, 0.14, 0.08, 0.013 +19640525, -0.12, -0.14, 0.07, 0.013 +19640526, -0.17, 0.09, 0.15, 0.013 +19640527, -0.15, -0.27, 0.23, 0.013 +19640528, 0.16, 0.11, 0.01, 0.013 +19640601, -0.35, 0.01, 0.04, 0.014 +19640602, -0.52, -0.06, -0.07, 0.014 +19640603, -0.26, -0.22, 0.19, 0.014 +19640604, -1.03, 0.03, -0.33, 0.014 +19640605, 0.42, -0.16, 0.16, 0.014 +19640608, -0.46, 0.06, -0.16, 0.014 +19640609, 0.56, -0.24, 0.46, 0.014 +19640610, 0.37, 0.04, -0.20, 0.014 +19640611, 0.30, 0.08, -0.36, 0.014 +19640612, -0.23, 0.15, 0.10, 0.014 +19640615, 0.45, -0.03, 0.05, 0.014 +19640616, 0.51, -0.06, 0.35, 0.014 +19640617, 0.51, -0.10, 0.12, 0.014 +19640618, 0.00, 0.01, 0.09, 0.014 +19640619, 0.10, -0.01, 0.11, 0.014 +19640622, 0.25, -0.28, 0.36, 0.014 +19640623, -0.38, 0.34, -0.24, 0.014 +19640624, 0.35, 0.03, 0.23, 0.014 +19640625, 0.20, -0.06, -0.02, 0.014 +19640626, 0.26, 0.17, 0.15, 0.014 +19640629, 0.18, 0.02, -0.17, 0.014 +19640630, 0.03, 0.00, -0.16, 0.014 +19640701, 0.62, -0.26, 0.38, 0.013 +19640702, 0.39, 0.13, -0.26, 0.013 +19640706, 0.41, -0.15, -0.09, 0.013 +19640707, 0.15, -0.17, 0.10, 0.013 +19640708, 0.02, 0.08, 0.11, 0.013 +19640709, 0.13, 0.33, -0.11, 0.013 +19640710, 0.19, -0.01, 0.43, 0.013 +19640713, -0.07, 0.08, 0.04, 0.013 +19640714, -0.29, 0.19, 0.09, 0.013 +19640715, 0.37, 0.00, -0.35, 0.013 +19640716, 0.31, -0.18, 0.18, 0.013 +19640717, 0.44, -0.13, -0.27, 0.013 +19640720, -0.31, 0.18, 0.09, 0.013 +19640721, -0.19, 0.21, -0.13, 0.013 +19640722, 0.02, -0.03, 0.01, 0.013 +19640723, -0.03, 0.17, 0.12, 0.013 +19640724, -0.03, -0.02, -0.05, 0.013 +19640727, -0.48, -0.15, 0.28, 0.013 +19640728, -0.24, 0.04, 0.05, 0.013 +19640729, 0.13, -0.06, -0.02, 0.013 +19640730, 0.13, -0.08, -0.01, 0.013 +19640731, 0.07, 0.05, 0.10, 0.013 +19640803, -0.24, -0.29, 0.23, 0.013 +19640804, -1.13, -0.09, -0.05, 0.013 +19640805, 0.16, -0.38, 0.05, 0.013 +19640806, -0.87, 0.43, -0.09, 0.013 +19640807, 0.56, -0.01, -0.14, 0.013 +19640810, 0.02, 0.12, -0.20, 0.013 +19640811, -0.01, 0.09, 0.17, 0.013 +19640812, 0.50, 0.16, -0.05, 0.013 +19640813, 0.28, 0.01, 0.14, 0.013 +19640814, -0.10, 0.20, 0.04, 0.013 +19640817, -0.01, -0.09, -0.20, 0.013 +19640818, 0.06, -0.16, 0.34, 0.013 +19640819, -0.09, 0.01, 0.04, 0.013 +19640820, -0.44, -0.03, -0.26, 0.013 +19640821, 0.16, 0.09, -0.08, 0.013 +19640824, -0.20, 0.01, 0.51, 0.013 +19640825, -0.50, 0.15, -0.33, 0.013 +19640826, -0.18, -0.02, -0.02, 0.013 +19640827, 0.48, -0.27, 0.03, 0.013 +19640828, 0.32, -0.05, -0.13, 0.013 +19640831, -0.21, 0.27, -0.07, 0.013 +19640901, 0.46, -0.20, 0.53, 0.013 +19640902, 0.20, 0.14, 0.18, 0.013 +19640903, 0.25, -0.15, -0.22, 0.013 +19640904, 0.21, 0.02, 0.03, 0.013 +19640908, 0.12, 0.00, -0.01, 0.013 +19640909, 0.19, -0.23, 0.33, 0.013 +19640910, 0.08, -0.06, 0.23, 0.013 +19640911, 0.33, -0.29, 0.34, 0.013 +19640914, -0.24, -0.05, 0.39, 0.013 +19640915, -0.24, 0.11, -0.09, 0.013 +19640916, 0.27, -0.10, 0.22, 0.013 +19640917, 0.59, -0.17, 0.21, 0.013 +19640918, -0.34, 0.16, -0.23, 0.013 +19640921, 0.40, -0.13, 0.13, 0.013 +19640922, 0.04, 0.18, -0.22, 0.013 +19640923, 0.01, 0.12, 0.21, 0.013 +19640924, 0.10, -0.12, 0.03, 0.013 +19640925, 0.20, 0.09, -0.36, 0.013 +19640928, 0.07, -0.04, -0.08, 0.013 +19640929, -0.01, 0.00, -0.09, 0.013 +19640930, -0.03, 0.16, -0.09, 0.013 +19641001, -0.14, 0.08, 0.11, 0.013 +19641002, 0.24, -0.24, 0.16, 0.013 +19641005, 0.41, -0.27, 0.38, 0.013 +19641006, 0.02, -0.09, 0.16, 0.013 +19641007, -0.02, -0.12, 0.09, 0.013 +19641008, 0.24, -0.03, 0.18, 0.013 +19641009, 0.19, 0.01, 0.09, 0.013 +19641012, 0.06, 0.21, -0.07, 0.013 +19641013, -0.25, 0.03, 0.35, 0.013 +19641014, -0.17, 0.03, 0.14, 0.013 +19641015, -0.70, -0.38, -0.17, 0.013 +19641016, 0.70, 0.38, 0.06, 0.013 +19641019, 0.13, 0.30, 0.16, 0.013 +19641020, 0.25, -0.03, 0.29, 0.013 +19641021, -0.06, -0.03, 0.00, 0.013 +19641022, -0.16, 0.11, 0.04, 0.013 +19641023, 0.20, -0.09, 0.01, 0.013 +19641026, -0.17, 0.23, 0.23, 0.013 +19641027, -0.04, 0.02, -0.11, 0.013 +19641028, -0.35, 0.06, -0.53, 0.013 +19641029, 0.05, 0.08, -0.16, 0.013 +19641030, 0.18, 0.20, -0.26, 0.013 +19641102, 0.43, -0.15, -0.28, 0.015 +19641104, -0.04, -0.09, 0.21, 0.015 +19641105, 0.00, -0.10, -0.52, 0.015 +19641106, 0.19, -0.16, -0.13, 0.015 +19641109, -0.05, 0.05, -0.49, 0.015 +19641110, -0.41, 0.09, -0.20, 0.015 +19641111, 0.26, -0.14, 0.53, 0.015 +19641112, 0.18, 0.20, 0.24, 0.015 +19641113, 0.10, 0.35, -0.27, 0.015 +19641116, 0.43, 0.01, -0.53, 0.015 +19641117, 0.45, -0.31, 0.04, 0.015 +19641118, 0.24, -0.08, -0.02, 0.015 +19641119, -0.01, 0.01, -0.32, 0.015 +19641120, 0.10, 0.03, -0.03, 0.015 +19641123, -0.24, 0.12, 0.05, 0.015 +19641124, -0.26, 0.08, 0.03, 0.015 +19641125, -0.21, 0.35, -0.12, 0.015 +19641127, -0.31, 0.18, -0.12, 0.015 +19641130, -0.87, 0.16, -0.14, 0.015 +19641201, -1.00, 0.17, -0.20, 0.014 +19641202, 0.28, -0.28, 0.01, 0.014 +19641203, 0.39, -0.05, 0.13, 0.014 +19641204, 0.18, 0.02, -0.18, 0.014 +19641207, -0.01, -0.02, -0.18, 0.014 +19641208, -0.37, -0.08, -0.57, 0.014 +19641209, -0.67, -0.20, -0.10, 0.014 +19641210, -0.04, -0.12, 0.19, 0.014 +19641211, 0.22, 0.09, 0.03, 0.014 +19641214, -0.26, 0.17, -0.31, 0.014 +19641215, -0.35, -0.18, -0.18, 0.014 +19641216, 0.40, 0.15, -0.26, 0.014 +19641217, 0.36, 0.03, 0.26, 0.014 +19641218, 0.47, -0.01, -0.05, 0.014 +19641221, 0.07, 0.03, -0.09, 0.014 +19641222, -0.07, 0.04, -0.32, 0.014 +19641223, -0.20, 0.13, -0.22, 0.014 +19641224, 0.01, 0.09, 0.08, 0.014 +19641228, -0.11, 0.02, -0.18, 0.014 +19641229, -0.31, -0.09, 0.03, 0.014 +19641230, 0.57, -0.07, -0.26, 0.014 +19641231, 0.49, -0.10, -0.13, 0.014 +19650104, -0.45, 0.71, -0.09, 0.014 +19650105, 0.49, 0.39, -0.10, 0.014 +19650106, 0.34, 0.19, 0.44, 0.014 +19650107, 0.40, 0.07, 0.18, 0.014 +19650108, 0.17, 0.17, -0.20, 0.014 +19650111, 0.06, 0.07, 0.09, 0.014 +19650112, 0.28, 0.20, -0.09, 0.014 +19650113, 0.28, 0.22, -0.02, 0.014 +19650114, 0.00, 0.04, 0.23, 0.014 +19650115, 0.41, -0.18, 0.17, 0.014 +19650118, 0.28, -0.10, -0.22, 0.014 +19650119, 0.16, -0.26, 0.17, 0.014 +19650120, -0.03, 0.01, 0.08, 0.014 +19650121, -0.10, 0.15, -0.08, 0.014 +19650122, 0.24, 0.04, 0.11, 0.014 +19650125, 0.16, 0.29, 0.07, 0.014 +19650126, 0.10, 0.06, -0.07, 0.014 +19650127, 0.28, 0.18, -0.28, 0.014 +19650128, 0.26, 0.01, -0.13, 0.014 +19650129, 0.13, 0.32, -0.06, 0.014 +19650201, 0.03, 0.12, -0.06, 0.016 +19650202, 0.05, 0.03, -0.03, 0.016 +19650203, 0.14, 0.22, -0.16, 0.016 +19650204, 0.00, 0.42, -0.26, 0.016 +19650205, -0.25, 0.39, -0.06, 0.016 +19650208, -0.32, 0.08, 0.18, 0.016 +19650209, 0.31, 0.10, 0.07, 0.016 +19650210, -0.84, -0.05, -0.03, 0.016 +19650211, -0.99, 0.33, -0.02, 0.016 +19650212, 0.66, 0.24, 0.04, 0.016 +19650215, -0.05, 0.27, 0.32, 0.016 +19650216, -0.35, 0.33, 0.12, 0.016 +19650217, 0.14, 0.24, -0.03, 0.016 +19650218, 0.31, 0.34, -0.02, 0.016 +19650219, 0.20, 0.34, -0.11, 0.016 +19650223, 0.48, 0.00, 0.66, 0.016 +19650224, 0.63, -0.08, 0.02, 0.016 +19650225, 0.07, -0.03, -0.04, 0.016 +19650226, 0.25, 0.09, -0.44, 0.016 +19650301, -0.14, 0.39, 0.00, 0.016 +19650302, 0.18, 0.13, -0.04, 0.016 +19650303, -0.05, 0.27, -0.19, 0.016 +19650304, -0.29, 0.27, -0.14, 0.016 +19650305, -0.19, 0.06, 0.01, 0.016 +19650308, 0.04, 0.20, 0.25, 0.016 +19650309, -0.16, -0.08, 0.13, 0.016 +19650310, -0.10, 0.16, -0.16, 0.016 +19650311, 0.38, 0.10, -0.31, 0.016 +19650312, 0.30, -0.18, 0.30, 0.016 +19650315, 0.06, -0.02, 0.20, 0.016 +19650316, -0.11, 0.00, 0.21, 0.016 +19650317, -0.15, 0.14, 0.02, 0.016 +19650318, -0.26, 0.24, -0.27, 0.016 +19650319, -0.01, -0.07, 0.11, 0.016 +19650322, -0.01, 0.03, 0.25, 0.016 +19650323, 0.04, -0.01, 0.08, 0.016 +19650324, 0.18, -0.01, 0.46, 0.016 +19650325, -0.29, 0.09, 0.11, 0.016 +19650326, -0.70, 0.04, -0.10, 0.016 +19650329, -0.24, -0.20, 0.01, 0.016 +19650330, 0.19, 0.05, -0.02, 0.016 +19650331, 0.01, 0.18, 0.14, 0.016 +19650401, 0.16, 0.05, -0.18, 0.015 +19650402, 0.25, 0.13, 0.22, 0.015 +19650405, 0.01, 0.04, 0.00, 0.015 +19650406, -0.04, 0.05, -0.05, 0.015 +19650407, 0.06, 0.15, -0.07, 0.015 +19650408, 0.52, 0.18, 0.00, 0.015 +19650409, 0.56, 0.05, 0.03, 0.015 +19650412, 0.44, -0.05, 0.11, 0.015 +19650413, 0.12, 0.04, 0.31, 0.015 +19650414, 0.18, 0.17, -0.25, 0.015 +19650415, -0.06, 0.36, -0.02, 0.015 +19650419, 0.36, 0.07, -0.39, 0.015 +19650420, -0.03, 0.20, 0.13, 0.015 +19650421, -0.23, -0.01, 0.01, 0.015 +19650422, 0.45, -0.16, -0.10, 0.015 +19650423, 0.13, 0.14, -0.11, 0.015 +19650426, 0.00, 0.01, 0.42, 0.015 +19650427, 0.17, -0.20, 0.41, 0.015 +19650428, -0.05, -0.27, 0.50, 0.015 +19650429, -0.07, 0.21, -0.16, 0.015 +19650430, 0.13, 0.01, -0.13, 0.015 +19650503, 0.08, -0.31, -0.16, 0.016 +19650504, 0.27, -0.31, -0.06, 0.016 +19650505, 0.24, -0.40, 0.24, 0.016 +19650506, 0.24, -0.04, -0.20, 0.016 +19650507, -0.07, 0.03, -0.06, 0.016 +19650510, -0.12, 0.22, -0.10, 0.016 +19650511, -0.09, -0.05, -0.19, 0.016 +19650512, 0.37, 0.10, -0.38, 0.016 +19650513, 0.32, 0.31, -0.26, 0.016 +19650514, -0.16, 0.37, -0.12, 0.016 +19650517, -0.54, 0.25, 0.30, 0.016 +19650518, -0.07, 0.08, 0.14, 0.016 +19650519, 0.20, 0.12, -0.14, 0.016 +19650520, -0.53, -0.11, -0.08, 0.016 +19650521, -0.46, 0.13, -0.03, 0.016 +19650524, -0.74, -0.15, 0.11, 0.016 +19650525, 0.54, 0.02, -0.33, 0.016 +19650526, -0.27, -0.20, 0.03, 0.016 +19650527, -0.58, -0.09, -0.14, 0.016 +19650528, 0.61, 0.02, -0.15, 0.016 +19650601, -0.70, -0.01, 0.18, 0.016 +19650602, -0.78, -0.36, -0.52, 0.016 +19650603, -0.24, 0.07, -0.09, 0.016 +19650604, 0.21, 0.07, -0.03, 0.016 +19650607, -0.35, -0.31, 0.13, 0.016 +19650608, -1.07, -0.20, 0.00, 0.016 +19650609, -1.04, -0.27, 0.56, 0.016 +19650610, -0.43, -0.69, 0.15, 0.016 +19650611, 0.42, 0.01, -0.06, 0.016 +19650614, -1.36, -0.70, -0.10, 0.016 +19650615, 0.47, -0.10, -0.12, 0.016 +19650616, 0.89, 0.57, 0.12, 0.016 +19650617, 0.59, -0.04, 0.21, 0.016 +19650618, -0.44, -0.04, -0.01, 0.016 +19650621, -0.38, -0.17, -0.10, 0.016 +19650622, 0.18, -0.05, 0.00, 0.016 +19650623, -0.64, -0.04, 0.04, 0.016 +19650624, -1.35, -0.77, 0.08, 0.016 +19650625, -0.64, -0.33, -0.05, 0.016 +19650628, -1.88, -1.49, 0.07, 0.016 +19650629, 0.79, -0.75, -0.16, 0.016 +19650630, 2.20, 1.16, 0.11, 0.016 +19650701, 0.46, 0.38, 0.02, 0.015 +19650702, 0.81, 0.15, -0.06, 0.015 +19650706, -0.18, 0.26, -0.01, 0.015 +19650707, -0.34, -0.17, 0.11, 0.015 +19650708, 0.80, 0.01, -0.20, 0.015 +19650709, 0.40, 0.40, -0.03, 0.015 +19650712, 0.00, 0.06, 0.22, 0.015 +19650713, -0.13, -0.08, -0.24, 0.015 +19650714, 0.29, 0.20, 0.13, 0.015 +19650715, -0.10, 0.26, -0.01, 0.015 +19650716, -0.04, 0.06, -0.06, 0.015 +19650719, -0.09, 0.13, -0.27, 0.015 +19650720, -1.24, -0.30, 0.24, 0.015 +19650721, -0.55, -0.08, 0.24, 0.015 +19650722, -0.23, 0.16, 0.18, 0.015 +19650723, 0.24, -0.18, 0.29, 0.015 +19650726, -0.03, 0.12, 0.03, 0.015 +19650727, -0.18, -0.01, 0.20, 0.015 +19650728, 0.16, -0.48, 0.86, 0.015 +19650729, 0.72, -0.12, 0.53, 0.015 +19650730, 0.67, 0.08, -0.03, 0.015 +19650802, 0.20, 0.21, -0.34, 0.015 +19650803, 0.12, 0.05, -0.23, 0.015 +19650804, 0.41, 0.21, 0.10, 0.015 +19650805, 0.02, 0.27, -0.03, 0.015 +19650806, 0.35, 0.01, -0.33, 0.015 +19650809, -0.14, 0.39, -0.12, 0.015 +19650810, 0.04, 0.38, -0.14, 0.015 +19650811, 0.33, 0.13, 0.11, 0.015 +19650812, 0.29, 0.28, -0.09, 0.015 +19650813, 0.43, -0.19, 0.26, 0.015 +19650816, 0.11, -0.08, 0.24, 0.015 +19650817, 0.16, 0.09, -0.27, 0.015 +19650818, 0.02, 0.11, 0.24, 0.015 +19650819, -0.24, -0.30, -0.02, 0.015 +19650820, -0.08, -0.04, 0.20, 0.015 +19650823, -0.13, 0.06, 0.03, 0.015 +19650824, 0.18, 0.22, -0.31, 0.015 +19650825, 0.14, 0.22, -0.26, 0.015 +19650826, 0.37, -0.10, 0.21, 0.015 +19650827, 0.12, 0.23, -0.02, 0.015 +19650830, 0.04, 0.28, -0.08, 0.015 +19650831, -0.05, 0.29, -0.06, 0.015 +19650901, 0.05, 0.06, -0.20, 0.015 +19650902, 0.54, 0.03, 0.05, 0.015 +19650903, 0.46, 0.08, 0.10, 0.015 +19650907, 0.32, 0.13, -0.47, 0.015 +19650908, 0.28, 0.04, -0.15, 0.015 +19650909, 0.24, 0.08, 0.08, 0.015 +19650910, 0.23, 0.08, -0.34, 0.015 +19650913, 0.25, 0.14, -0.15, 0.015 +19650914, -0.44, -0.28, 0.14, 0.015 +19650915, 0.47, -0.12, 0.08, 0.015 +19650916, 0.52, -0.27, 0.48, 0.015 +19650917, 0.03, 0.06, -0.08, 0.015 +19650920, 0.04, 0.16, 0.07, 0.015 +19650921, -0.27, 0.07, -0.06, 0.015 +19650922, 0.47, 0.22, 0.11, 0.015 +19650923, -0.39, -0.29, 0.07, 0.015 +19650924, 0.23, 0.05, 0.60, 0.015 +19650927, 0.58, 0.09, -0.17, 0.015 +19650928, -0.24, 0.27, 0.11, 0.015 +19650929, -0.47, -0.04, -0.14, 0.015 +19650930, -0.07, 0.06, -0.24, 0.015 +19651001, -0.06, 0.17, 0.09, 0.015 +19651004, 0.24, 0.47, 0.07, 0.015 +19651005, 0.56, -0.04, 0.31, 0.015 +19651006, -0.08, -0.10, -0.31, 0.015 +19651007, -0.05, 0.39, -0.01, 0.015 +19651008, 0.48, 0.57, 0.39, 0.015 +19651011, 0.57, 0.19, -0.05, 0.015 +19651012, -0.05, 0.37, -0.16, 0.015 +19651013, 0.01, -0.01, 0.56, 0.015 +19651014, -0.15, 0.38, 0.23, 0.015 +19651015, 0.22, 0.26, 0.04, 0.015 +19651018, 0.27, 0.26, -0.09, 0.015 +19651019, 0.11, 0.00, -0.44, 0.015 +19651020, -0.01, 0.18, 0.11, 0.015 +19651021, 0.15, 0.25, -0.03, 0.015 +19651022, -0.05, -0.17, -0.05, 0.015 +19651025, -0.40, -0.35, 0.07, 0.015 +19651026, 0.50, -0.13, 0.23, 0.015 +19651027, 0.36, -0.22, 0.20, 0.015 +19651028, -0.31, 0.00, 0.14, 0.015 +19651029, 0.26, -0.07, 0.19, 0.015 +19651101, -0.10, -0.08, 0.27, 0.017 +19651103, 0.10, 0.24, -0.26, 0.017 +19651104, 0.19, 0.10, -0.16, 0.017 +19651105, 0.11, 0.29, -0.33, 0.017 +19651108, -0.34, 0.12, -0.27, 0.017 +19651109, -0.24, 0.19, 0.31, 0.017 +19651110, -0.09, 0.16, -0.03, 0.017 +19651111, 0.27, 0.13, -0.06, 0.017 +19651112, 0.49, 0.49, -0.32, 0.017 +19651115, 0.11, 0.58, -0.24, 0.017 +19651116, -0.13, 0.42, -0.04, 0.017 +19651117, 0.15, -0.67, 0.14, 0.017 +19651118, -0.35, 0.54, 0.12, 0.017 +19651119, 0.03, 0.34, 0.10, 0.017 +19651122, -0.53, 0.28, 0.10, 0.017 +19651123, 0.17, 0.18, 0.03, 0.017 +19651124, 0.19, 0.29, 0.17, 0.017 +19651126, 0.26, 0.45, 0.19, 0.017 +19651129, -0.15, 0.42, 0.28, 0.017 +19651130, -0.15, 0.12, 0.19, 0.017 +19651201, -0.03, 0.34, 0.29, 0.015 +19651202, -0.24, 0.31, 0.06, 0.015 +19651203, 0.07, 0.20, -0.19, 0.015 +19651206, -0.79, -0.33, -0.31, 0.015 +19651207, 0.95, 0.56, 0.35, 0.015 +19651208, -0.07, 0.43, -0.25, 0.015 +19651209, 0.29, 0.45, -0.15, 0.015 +19651210, 0.28, 0.21, -0.06, 0.015 +19651213, 0.10, 0.47, -0.13, 0.015 +19651214, 0.06, -0.21, 0.46, 0.015 +19651215, 0.18, -0.08, 0.73, 0.015 +19651216, 0.16, 0.09, 0.49, 0.015 +19651217, 0.04, 0.12, 0.69, 0.015 +19651220, -0.53, -0.25, 0.04, 0.015 +19651221, 0.34, -0.04, 0.51, 0.015 +19651222, 0.16, -0.91, 0.20, 0.015 +19651223, -0.16, -0.02, -0.29, 0.015 +19651227, -0.66, 0.06, -0.15, 0.015 +19651228, -0.05, -0.06, -0.18, 0.015 +19651229, 0.29, 0.38, -0.03, 0.015 +19651230, 0.36, 0.26, -0.27, 0.015 +19651231, 0.26, 0.05, 0.14, 0.015 +19660103, -0.22, 0.57, 0.29, 0.018 +19660104, 0.10, 0.32, 0.18, 0.018 +19660105, 0.57, -0.31, 0.71, 0.018 +19660106, 0.18, -0.37, 0.55, 0.018 +19660107, 0.10, 0.11, -0.07, 0.018 +19660110, 0.20, 0.29, 0.06, 0.018 +19660111, 0.05, 0.38, -0.29, 0.018 +19660112, -0.15, 0.34, -0.07, 0.018 +19660113, 0.22, 0.42, 0.27, 0.018 +19660114, 0.15, 0.00, 0.12, 0.018 +19660117, 0.33, 0.33, 0.15, 0.018 +19660118, 0.18, 0.05, 0.09, 0.018 +19660119, -0.28, 0.01, 0.12, 0.018 +19660120, -0.29, 0.29, 0.13, 0.018 +19660121, 0.08, 0.16, -0.24, 0.018 +19660124, 0.25, 0.27, 0.33, 0.018 +19660125, 0.18, 0.11, 0.43, 0.018 +19660126, -0.12, 0.19, 0.10, 0.018 +19660127, -0.03, 0.12, 0.33, 0.018 +19660128, -0.33, 0.45, 0.09, 0.018 +19660131, -0.45, 0.19, -0.22, 0.018 +19660201, -0.81, -0.82, -0.43, 0.018 +19660202, 0.40, 0.21, 0.43, 0.018 +19660203, 0.15, 0.10, -0.32, 0.018 +19660204, 0.59, -0.11, 0.48, 0.018 +19660207, 0.34, 0.20, 0.28, 0.018 +19660208, -0.03, -0.25, 0.09, 0.018 +19660209, 0.57, 0.65, -0.02, 0.018 +19660210, -0.17, 0.48, 0.00, 0.018 +19660211, 0.01, 0.49, -0.01, 0.018 +19660214, -0.11, 0.31, 0.18, 0.018 +19660215, -0.43, 0.00, 0.29, 0.018 +19660216, 0.03, 0.38, -0.11, 0.018 +19660217, -0.51, 0.18, -0.31, 0.018 +19660218, -0.22, 0.55, 0.16, 0.018 +19660221, -0.56, 0.37, -0.09, 0.018 +19660223, -0.42, 0.24, -0.15, 0.018 +19660224, -0.52, 0.14, 0.24, 0.018 +19660225, 0.32, 0.44, -0.14, 0.018 +19660228, 0.16, 0.96, -0.21, 0.018 +19660301, -1.29, -0.17, -0.21, 0.017 +19660302, -1.03, -0.11, -0.17, 0.017 +19660303, 0.39, 0.64, 0.16, 0.017 +19660304, -0.28, 0.30, -0.34, 0.017 +19660307, -1.29, -0.36, -0.16, 0.017 +19660308, 0.04, -0.48, -0.30, 0.017 +19660309, 0.89, 0.44, -0.11, 0.017 +19660310, -0.01, -0.29, -0.22, 0.017 +19660311, -0.08, 0.27, 0.32, 0.017 +19660314, -1.11, -0.32, -0.40, 0.017 +19660315, -0.74, -1.18, -0.31, 0.017 +19660316, 0.54, -0.02, 0.04, 0.017 +19660317, 0.31, -0.06, 0.28, 0.017 +19660318, 0.48, 0.25, 0.49, 0.017 +19660321, 0.82, 0.52, 0.55, 0.017 +19660322, 0.27, 0.11, 0.06, 0.017 +19660323, -0.32, 0.41, -0.46, 0.017 +19660324, 0.18, 0.36, -0.54, 0.017 +19660325, 0.33, 0.39, -0.50, 0.017 +19660328, 0.16, 0.47, 0.53, 0.017 +19660329, -0.41, -0.15, -0.31, 0.017 +19660330, -0.87, -0.01, -0.25, 0.017 +19660331, 0.55, -0.07, -0.32, 0.017 +19660401, 0.76, -0.15, 0.19, 0.017 +19660404, 0.90, -0.07, 0.70, 0.017 +19660405, 0.58, 0.01, 0.57, 0.017 +19660406, 0.25, 0.16, 0.02, 0.017 +19660407, 0.30, 0.68, -0.45, 0.017 +19660411, 0.10, 0.87, -0.61, 0.017 +19660412, -0.29, 0.28, -0.10, 0.017 +19660413, 0.09, 0.55, -0.22, 0.017 +19660414, 0.30, -0.12, 0.07, 0.017 +19660415, 0.09, 0.19, 0.34, 0.017 +19660418, -0.43, -0.07, 0.40, 0.017 +19660419, 0.02, 0.65, 0.12, 0.017 +19660420, 0.51, 0.19, 0.05, 0.017 +19660421, 0.34, -0.10, -0.11, 0.017 +19660422, -0.20, -0.30, 0.13, 0.017 +19660425, -0.18, 0.09, -0.02, 0.017 +19660426, -0.11, 0.01, -0.28, 0.017 +19660427, -0.29, 0.25, -0.37, 0.017 +19660428, -0.67, -0.13, -0.36, 0.017 +19660429, 0.02, 0.53, -0.30, 0.017 +19660502, -0.11, -0.08, -0.15, 0.020 +19660503, -1.12, -0.55, -0.13, 0.020 +19660504, -0.55, -0.32, 0.26, 0.020 +19660505, -1.74, -1.24, -0.04, 0.020 +19660506, -0.27, -1.21, 0.47, 0.020 +19660509, -1.60, -0.48, -0.28, 0.020 +19660510, 0.86, 0.13, -0.29, 0.020 +19660511, 0.18, 0.08, -0.28, 0.020 +19660512, -1.26, -0.70, -0.29, 0.020 +19660513, -0.96, -0.77, -0.17, 0.020 +19660516, -1.50, -1.23, -0.27, 0.020 +19660517, -0.92, -1.12, -0.37, 0.020 +19660518, 1.88, 0.88, 0.39, 0.020 +19660519, -0.12, 0.10, -0.38, 0.020 +19660520, 0.50, 0.21, -0.05, 0.020 +19660523, 0.89, 0.59, -0.35, 0.020 +19660524, 0.73, 0.57, 0.12, 0.020 +19660525, 0.39, 0.15, 0.15, 0.020 +19660526, 0.04, -0.25, 0.25, 0.020 +19660527, 0.30, 0.27, -0.10, 0.020 +19660531, -1.34, 0.01, -0.13, 0.020 +19660601, -0.01, -0.09, -0.19, 0.017 +19660602, -0.06, 0.20, 0.17, 0.017 +19660603, 0.11, 0.03, 0.18, 0.017 +19660606, -0.74, -0.20, -0.05, 0.017 +19660607, -0.70, -0.25, -0.14, 0.017 +19660608, 0.15, 0.18, 0.23, 0.017 +19660609, 0.72, 0.45, -0.17, 0.017 +19660610, 1.09, 0.22, 0.75, 0.017 +19660613, 0.48, 0.42, 0.10, 0.017 +19660614, 0.33, 0.23, -0.24, 0.017 +19660615, -0.38, 0.48, -0.17, 0.017 +19660616, -0.23, 0.37, -0.14, 0.017 +19660617, 0.01, 0.17, -0.25, 0.017 +19660620, -0.05, -0.03, 0.04, 0.017 +19660621, 0.35, 0.29, 0.01, 0.017 +19660622, 0.18, 0.35, 0.01, 0.017 +19660623, -0.40, -0.37, 0.28, 0.017 +19660624, 0.01, -0.25, 0.46, 0.017 +19660627, -0.63, -0.28, -0.02, 0.017 +19660628, -0.48, 0.01, -0.11, 0.017 +19660629, -1.01, -0.30, -0.19, 0.017 +19660630, -0.18, -0.58, -0.03, 0.017 +19660701, 0.99, 0.24, -0.23, 0.018 +19660705, 0.13, 0.03, 0.01, 0.018 +19660706, 1.39, -0.33, -0.50, 0.018 +19660707, 0.35, 0.05, -0.04, 0.018 +19660708, 0.16, 0.11, 0.16, 0.018 +19660711, -0.15, 0.18, -0.07, 0.018 +19660712, -0.50, 0.22, 0.15, 0.018 +19660713, -0.62, 0.21, 0.11, 0.018 +19660714, 0.55, -0.03, -0.31, 0.018 +19660715, 0.29, -0.02, 0.19, 0.018 +19660718, -0.13, -0.15, 0.19, 0.018 +19660719, -0.73, -0.09, 0.18, 0.018 +19660720, -0.89, 0.29, 0.20, 0.018 +19660721, -0.04, -0.22, 0.08, 0.018 +19660722, -0.11, 0.14, 0.19, 0.018 +19660725, -1.93, -0.46, 0.33, 0.018 +19660726, -0.26, -0.70, 0.04, 0.018 +19660727, 0.48, 0.07, 0.11, 0.018 +19660728, -0.36, 0.09, 0.03, 0.018 +19660729, -0.20, -0.08, 0.15, 0.018 +19660801, -1.53, -0.29, 0.27, 0.018 +19660802, 0.04, -0.27, -0.12, 0.018 +19660803, 0.99, 0.11, -0.34, 0.018 +19660804, 0.91, -0.41, 0.27, 0.018 +19660805, 0.13, 0.19, -0.32, 0.018 +19660808, -0.18, -0.12, -0.20, 0.018 +19660809, -0.19, 0.35, -0.20, 0.018 +19660810, -0.42, -0.03, -0.07, 0.018 +19660811, -0.06, 0.18, -0.51, 0.018 +19660812, 0.23, 0.25, -0.35, 0.018 +19660815, -0.49, 0.18, -0.01, 0.018 +19660816, -1.27, -0.02, 0.33, 0.018 +19660817, -0.58, -0.29, -0.03, 0.018 +19660818, -1.27, -0.01, 0.04, 0.018 +19660819, -0.76, -0.50, 0.18, 0.018 +19660822, -1.82, -0.34, 0.27, 0.018 +19660823, -0.13, 0.13, -0.04, 0.018 +19660824, 1.16, -0.15, -0.10, 0.018 +19660825, -1.26, -0.02, 0.59, 0.018 +19660826, -2.23, -0.69, 0.77, 0.018 +19660829, -2.57, -1.19, 0.85, 0.018 +19660830, 1.61, -0.60, -1.09, 0.018 +19660831, 1.62, 0.07, 0.34, 0.018 +19660901, 0.66, -0.26, -0.06, 0.019 +19660902, -0.33, 0.02, 0.23, 0.019 +19660906, -0.52, 0.12, -0.02, 0.019 +19660907, -0.91, -0.50, 0.44, 0.019 +19660908, -0.37, -0.05, 0.14, 0.019 +19660909, 0.31, 0.12, -0.20, 0.019 +19660912, 2.13, -0.06, -0.66, 0.019 +19660913, 0.58, 0.27, -0.05, 0.019 +19660914, 0.90, -0.39, -0.82, 0.019 +19660915, 1.01, -0.44, -0.27, 0.019 +19660916, -0.04, 0.16, -0.01, 0.019 +19660919, -0.47, 0.28, 0.24, 0.019 +19660920, -0.68, 0.33, 0.29, 0.019 +19660921, -1.69, 0.04, 0.79, 0.019 +19660922, 0.21, -0.26, -0.29, 0.019 +19660923, -0.30, 0.13, 0.17, 0.019 +19660926, 0.21, -0.04, -0.28, 0.019 +19660927, 0.28, -0.13, -0.07, 0.019 +19660928, -1.17, 0.17, 0.71, 0.019 +19660929, -1.07, -0.38, 0.43, 0.019 +19660930, 0.28, -0.16, -0.31, 0.019 +19661003, -2.17, -0.29, 1.12, 0.022 +19661004, 0.07, -1.30, 0.20, 0.022 +19661005, -0.58, -0.53, 0.34, 0.022 +19661006, -1.01, -0.99, 0.64, 0.022 +19661007, -1.26, -0.68, 0.71, 0.022 +19661010, 1.69, -0.71, -1.32, 0.022 +19661011, 0.48, -0.02, 0.59, 0.022 +19661012, 2.63, -1.08, -0.25, 0.022 +19661013, -0.01, 0.83, -0.45, 0.022 +19661014, -0.30, 0.28, 0.30, 0.022 +19661017, 1.09, -0.55, -0.42, 0.022 +19661018, 1.62, -0.37, -0.56, 0.022 +19661019, -0.75, 0.29, 0.54, 0.022 +19661020, -0.31, 0.04, 0.03, 0.022 +19661021, 0.31, -0.50, -0.40, 0.022 +19661024, 0.23, -0.27, -0.01, 0.022 +19661025, 0.51, -0.67, 0.00, 0.022 +19661026, 0.85, -0.06, 0.42, 0.022 +19661027, 0.80, -0.48, 0.87, 0.022 +19661028, 0.04, 0.36, 0.31, 0.022 +19661031, -0.04, 0.14, 0.11, 0.022 +19661101, 0.84, -0.02, -0.38, 0.020 +19661102, 0.13, 0.16, -0.64, 0.020 +19661103, -0.32, 0.31, -0.21, 0.020 +19661104, 0.39, -0.05, -0.31, 0.020 +19661107, -0.05, 0.18, -0.20, 0.020 +19661109, 0.82, 0.17, -0.55, 0.020 +19661110, 0.63, 0.37, -0.52, 0.020 +19661111, 0.10, 0.59, -0.12, 0.020 +19661114, -0.53, 0.38, -0.03, 0.020 +19661115, 0.41, 0.09, -0.30, 0.020 +19661116, 0.86, 0.27, -0.11, 0.020 +19661117, -0.66, 0.44, 0.15, 0.020 +19661118, -0.61, 0.30, 0.06, 0.020 +19661121, -1.37, -0.03, 0.07, 0.020 +19661122, -0.50, -0.09, -0.25, 0.020 +19661123, 0.76, 0.22, -0.38, 0.020 +19661125, 0.79, 0.17, 0.05, 0.020 +19661128, -0.04, 0.11, -0.39, 0.020 +19661129, -0.29, 0.26, -0.22, 0.020 +19661130, 0.08, 0.25, -0.16, 0.020 +19661201, -0.39, 0.33, -0.21, 0.019 +19661202, 0.03, 0.12, -0.06, 0.019 +19661205, 0.07, -0.02, -0.35, 0.019 +19661206, 0.68, -0.34, -0.18, 0.019 +19661207, 1.01, -0.15, -0.61, 0.019 +19661208, 0.37, 0.18, -0.22, 0.019 +19661209, 0.22, 0.19, -0.21, 0.019 +19661212, 0.98, 0.04, -0.39, 0.019 +19661213, -0.28, 0.10, -0.01, 0.019 +19661214, -0.01, 0.73, -0.59, 0.019 +19661215, -1.04, 0.44, 0.35, 0.019 +19661216, 0.02, 0.34, 0.08, 0.019 +19661219, -0.27, 0.13, -0.20, 0.019 +19661220, -0.39, -0.14, 0.24, 0.019 +19661221, 0.52, 0.08, 0.25, 0.019 +19661222, 0.38, 0.09, 0.50, 0.019 +19661223, -0.25, 0.17, 0.49, 0.019 +19661227, -0.54, 0.10, 0.39, 0.019 +19661228, -0.48, -0.27, 0.11, 0.019 +19661229, -0.39, -0.36, 0.06, 0.019 +19661230, -0.08, 0.10, -0.53, 0.019 +19670103, 0.08, 0.92, 0.71, 0.020 +19670104, 0.16, -0.12, 0.25, 0.020 +19670105, 1.30, 0.53, 0.33, 0.020 +19670106, 0.72, 0.68, 0.14, 0.020 +19670109, 0.84, 0.52, 0.36, 0.020 +19670110, 0.00, 0.24, 0.13, 0.020 +19670111, 0.84, 0.18, 0.59, 0.020 +19670112, 0.54, 0.13, 0.24, 0.020 +19670113, 0.68, 0.17, -0.09, 0.020 +19670116, -0.19, 0.34, 0.23, 0.020 +19670117, 1.13, 0.01, -0.33, 0.020 +19670118, 0.52, -0.20, 0.09, 0.020 +19670119, 0.04, 0.20, 0.31, 0.020 +19670120, 0.37, 1.02, -0.13, 0.020 +19670123, 0.34, 0.31, -0.44, 0.020 +19670124, 0.20, 0.35, -0.30, 0.020 +19670125, -0.69, 0.40, -0.21, 0.020 +19670126, 0.03, 0.51, -0.03, 0.020 +19670127, 0.48, 0.46, -0.27, 0.020 +19670130, 0.56, 0.58, 0.07, 0.020 +19670131, -0.08, 0.19, 0.37, 0.020 +19670201, -0.15, 0.32, 0.03, 0.019 +19670202, 0.34, 0.38, 0.18, 0.019 +19670203, 0.71, 0.50, -0.01, 0.019 +19670206, -0.15, 0.24, 0.25, 0.019 +19670207, -0.18, 0.12, -0.28, 0.019 +19670208, 0.88, 0.33, -0.45, 0.019 +19670209, -0.39, -0.33, -0.14, 0.019 +19670210, 0.26, 0.31, -0.13, 0.019 +19670213, 0.14, 0.40, 0.11, 0.019 +19670214, 0.73, 0.12, -0.06, 0.019 +19670215, 0.05, -0.10, -0.35, 0.019 +19670216, -0.43, 0.24, -0.12, 0.019 +19670217, 0.02, 0.04, 0.03, 0.019 +19670220, -0.50, 0.29, -0.09, 0.019 +19670221, 0.00, 0.47, -0.37, 0.019 +19670223, 0.13, 0.00, -0.03, 0.019 +19670224, 0.08, 0.03, -0.02, 0.019 +19670227, -1.10, -0.34, -0.09, 0.019 +19670228, 0.38, 0.29, -0.58, 0.019 +19670301, 0.98, 0.04, -0.05, 0.018 +19670302, 0.52, -0.03, -0.22, 0.018 +19670303, 0.16, 0.27, -0.40, 0.018 +19670306, -0.13, 0.35, 0.29, 0.018 +19670307, 0.16, 0.34, -0.07, 0.018 +19670308, 0.17, 0.31, -0.26, 0.018 +19670309, 0.29, 0.30, 0.01, 0.018 +19670310, 0.37, -0.29, 0.69, 0.018 +19670313, -0.48, 0.00, -0.08, 0.018 +19670314, -0.11, 0.11, -0.19, 0.018 +19670315, 0.89, -0.31, 0.35, 0.018 +19670316, 0.90, -0.39, -0.26, 0.018 +19670317, 0.13, 0.12, -0.07, 0.018 +19670320, -0.01, 0.23, -0.15, 0.018 +19670321, -0.29, -0.07, 0.04, 0.018 +19670322, 0.28, 0.08, -0.16, 0.018 +19670323, 0.68, -0.19, 0.26, 0.018 +19670327, -0.06, 0.22, -0.21, 0.018 +19670328, 0.09, 0.01, 0.15, 0.018 +19670329, -0.13, 0.06, 0.13, 0.018 +19670330, 0.04, 0.30, -0.10, 0.018 +19670331, -0.51, 0.08, 0.58, 0.018 +19670403, -1.13, -0.16, 0.18, 0.016 +19670404, 0.01, 0.37, -0.29, 0.016 +19670405, 0.63, 0.04, 0.05, 0.016 +19670406, 0.20, -0.04, 0.14, 0.016 +19670407, -0.62, -0.25, 0.43, 0.016 +19670410, -1.24, -0.55, 0.38, 0.016 +19670411, 0.71, 0.25, -0.11, 0.016 +19670412, -0.11, 0.10, 0.12, 0.016 +19670413, 0.65, 0.05, -0.35, 0.016 +19670414, 1.01, -0.19, -0.79, 0.016 +19670417, 0.64, -0.26, -0.07, 0.016 +19670418, 0.85, 0.13, -0.09, 0.016 +19670419, 0.12, -0.07, -0.11, 0.016 +19670420, 0.19, 0.26, -0.26, 0.016 +19670421, 0.26, 0.43, -0.21, 0.016 +19670424, 0.27, -0.28, -0.27, 0.016 +19670425, 0.55, -0.17, -0.20, 0.016 +19670426, -0.12, 0.28, -0.43, 0.016 +19670427, 0.81, 0.20, -0.55, 0.016 +19670428, 0.15, 0.30, 0.06, 0.016 +19670501, -0.08, 0.39, -0.24, 0.015 +19670502, -0.02, 0.52, 0.06, 0.015 +19670503, 0.28, 0.51, -0.10, 0.015 +19670504, 0.33, -0.08, -0.27, 0.015 +19670505, 0.12, -0.05, 0.37, 0.015 +19670508, 0.21, -0.33, 0.19, 0.015 +19670509, -1.04, -0.48, 0.67, 0.015 +19670510, -0.13, 0.46, 0.04, 0.015 +19670511, 0.49, 0.59, -0.29, 0.015 +19670512, -0.20, 0.41, -0.10, 0.015 +19670515, -0.74, 0.26, 0.19, 0.015 +19670516, 0.48, 0.16, -0.12, 0.015 +19670517, -0.27, 0.22, 0.24, 0.015 +19670518, -0.19, 0.43, 0.17, 0.015 +19670519, -0.42, 0.20, -0.13, 0.015 +19670522, -0.34, 0.28, -0.22, 0.015 +19670523, -0.43, 0.08, -0.15, 0.015 +19670524, -1.20, -0.42, 0.18, 0.015 +19670525, 0.99, -0.07, -0.22, 0.015 +19670526, -0.11, -0.13, 0.35, 0.015 +19670529, -0.48, 0.23, -0.07, 0.015 +19670531, -1.67, -0.95, 0.06, 0.015 +19670601, 1.18, 0.00, -0.13, 0.012 +19670602, -0.40, 0.44, -0.02, 0.012 +19670605, -1.65, -1.37, 0.09, 0.012 +19670606, 2.02, 0.79, -0.32, 0.012 +19670607, 0.86, 0.43, 0.08, 0.012 +19670608, 0.57, 0.35, -0.05, 0.012 +19670609, 0.26, 0.41, 0.10, 0.012 +19670612, 0.63, 0.51, -0.23, 0.012 +19670613, 0.60, 0.03, 0.05, 0.012 +19670614, -0.17, 0.40, -0.09, 0.012 +19670615, 0.17, 0.47, -0.03, 0.012 +19670616, 0.03, 0.13, 0.19, 0.012 +19670619, 0.03, 0.47, -0.18, 0.012 +19670620, -0.03, 0.32, 0.11, 0.012 +19670621, -0.25, 0.24, 0.06, 0.012 +19670622, -0.20, 0.41, -0.09, 0.012 +19670623, 0.07, 0.38, 0.15, 0.012 +19670626, -0.40, -0.05, 0.25, 0.012 +19670627, -0.34, 0.41, 0.13, 0.012 +19670628, 0.07, 0.56, 0.15, 0.012 +19670629, -0.47, -0.15, 0.32, 0.012 +19670630, -0.14, 0.54, 0.34, 0.012 +19670703, 0.35, 0.36, -0.02, 0.016 +19670705, 0.53, 0.27, -0.22, 0.016 +19670706, -0.06, 0.31, -0.26, 0.016 +19670707, 0.47, 0.57, -0.09, 0.016 +19670710, 0.46, 0.27, 0.20, 0.016 +19670711, 0.43, -0.31, 0.17, 0.016 +19670712, -0.03, 0.20, 0.01, 0.016 +19670713, 0.06, 0.39, 0.12, 0.016 +19670714, 0.37, 0.31, 0.48, 0.016 +19670717, 0.07, 0.06, 0.38, 0.016 +19670718, 0.71, -0.32, 0.66, 0.016 +19670719, 0.09, -0.02, 0.44, 0.016 +19670720, 0.14, -0.34, 0.48, 0.016 +19670721, 0.04, -0.30, 0.18, 0.016 +19670724, -0.37, -0.33, 0.19, 0.016 +19670725, 0.02, 0.36, 0.13, 0.016 +19670726, 0.42, 0.25, -0.20, 0.016 +19670727, 0.34, 0.53, -0.16, 0.016 +19670728, 0.17, 0.36, 0.15, 0.016 +19670731, 0.28, 0.31, -0.17, 0.016 +19670801, 0.62, -0.44, 0.53, 0.014 +19670802, 0.34, -0.46, 0.23, 0.014 +19670803, -0.18, 0.02, -0.23, 0.014 +19670804, 0.26, 0.53, -0.18, 0.014 +19670807, -0.16, 0.17, 0.07, 0.014 +19670808, 0.09, -0.11, 0.40, 0.014 +19670809, 0.11, -0.02, 0.21, 0.014 +19670810, -0.27, -0.05, 0.11, 0.014 +19670811, -0.48, -0.01, 0.14, 0.014 +19670814, -0.50, -0.27, -0.07, 0.014 +19670815, 0.11, 0.01, 0.06, 0.014 +19670816, -0.25, -0.10, 0.07, 0.014 +19670817, 0.13, 0.31, 0.13, 0.014 +19670818, 0.17, 0.21, -0.04, 0.014 +19670821, -0.50, 0.21, -0.01, 0.014 +19670822, -0.54, -0.02, 0.21, 0.014 +19670823, -0.10, -0.02, -0.13, 0.014 +19670824, -0.52, 0.15, 0.04, 0.014 +19670825, -0.42, -0.19, -0.01, 0.014 +19670828, 0.03, 0.15, 0.00, 0.014 +19670829, 0.25, -0.12, 0.25, 0.014 +19670830, 0.28, 0.43, -0.22, 0.014 +19670831, 0.65, 0.07, -0.08, 0.014 +19670901, 0.15, 0.37, 0.05, 0.016 +19670905, 0.53, -0.08, -0.03, 0.016 +19670906, 0.17, 0.20, -0.14, 0.016 +19670907, -0.06, 0.11, 0.05, 0.016 +19670908, 0.01, 0.47, -0.35, 0.016 +19670911, 0.15, 0.24, -0.32, 0.016 +19670912, 0.49, -0.03, -0.01, 0.016 +19670913, 0.97, -0.49, 0.30, 0.016 +19670914, 0.14, 0.04, 0.12, 0.016 +19670915, 0.06, 0.13, -0.12, 0.016 +19670918, 0.26, 0.19, 0.03, 0.016 +19670919, -0.44, -0.10, -0.20, 0.016 +19670920, 0.05, 0.61, -0.02, 0.016 +19670921, 0.56, -0.06, -0.35, 0.016 +19670922, 0.28, 0.41, -0.10, 0.016 +19670925, 0.49, -0.18, -0.49, 0.016 +19670926, -0.87, -0.19, 0.23, 0.016 +19670927, 0.05, 0.38, -0.40, 0.016 +19670928, 0.07, 0.42, -0.59, 0.016 +19670929, -0.01, 0.55, 0.00, 0.016 +19671002, -0.40, 0.24, 0.01, 0.018 +19671003, 0.32, 0.26, -0.51, 0.018 +19671004, -0.13, 0.28, -0.24, 0.018 +19671005, 0.20, 0.22, -0.29, 0.018 +19671006, 0.57, 0.33, -0.41, 0.018 +19671009, 0.20, 0.21, -0.02, 0.018 +19671010, -0.73, -0.29, 0.40, 0.018 +19671011, -0.45, -0.04, -0.08, 0.018 +19671012, -0.61, 0.09, -0.03, 0.018 +19671013, 0.22, 0.33, 0.09, 0.018 +19671016, -0.81, -0.03, -0.02, 0.018 +19671017, -0.19, 0.16, -0.21, 0.018 +19671018, 0.24, 0.11, -0.07, 0.018 +19671019, 0.09, -0.09, -0.58, 0.018 +19671020, -0.12, -0.23, -0.21, 0.018 +19671023, -0.48, -0.21, -0.29, 0.018 +19671024, -0.57, -0.33, -0.01, 0.018 +19671025, 0.14, 0.01, -0.35, 0.018 +19671026, 0.43, 0.45, -0.70, 0.018 +19671027, 0.02, 0.02, -0.04, 0.018 +19671030, -0.17, 0.19, -0.17, 0.018 +19671031, -0.90, -0.22, 0.23, 0.018 +19671101, -1.22, 0.27, -0.08, 0.018 +19671102, -0.49, -0.17, -0.09, 0.018 +19671103, -0.48, 0.49, -0.25, 0.018 +19671106, -0.31, 0.11, -0.24, 0.018 +19671108, -0.38, 0.14, 0.20, 0.018 +19671109, 0.41, -0.37, -0.09, 0.018 +19671110, 0.58, -0.14, 0.09, 0.018 +19671113, -0.31, -0.60, 0.28, 0.018 +19671114, -0.73, -0.90, 0.44, 0.018 +19671115, 0.41, -0.53, -0.24, 0.018 +19671116, 0.95, 0.29, -0.52, 0.018 +19671117, 0.35, 0.64, -0.17, 0.018 +19671120, -1.39, -0.96, -0.04, 0.018 +19671121, 1.71, 0.97, -0.56, 0.018 +19671122, 0.66, 0.53, -0.50, 0.018 +19671124, 0.21, -0.18, -0.14, 0.018 +19671127, 0.35, 0.33, -0.43, 0.018 +19671128, 0.50, 0.12, 0.13, 0.018 +19671129, 0.05, 0.19, 0.22, 0.018 +19671130, -0.45, 0.00, 0.25, 0.018 +19671201, 0.54, 0.55, -0.13, 0.017 +19671204, 0.64, 0.53, -0.08, 0.017 +19671205, 0.11, -0.12, -0.13, 0.017 +19671206, 0.36, 0.13, -0.16, 0.017 +19671207, -0.09, 0.06, 0.38, 0.017 +19671208, -0.09, 0.40, -0.30, 0.017 +19671211, -0.17, 0.78, -0.25, 0.017 +19671212, -0.01, 0.50, -0.36, 0.017 +19671213, 0.43, 0.44, -0.48, 0.017 +19671214, 0.16, 0.39, 0.23, 0.017 +19671215, -0.57, -0.18, 0.51, 0.017 +19671218, -0.29, 0.36, -0.08, 0.017 +19671219, -0.10, 0.29, -0.32, 0.017 +19671220, 0.57, -0.04, 0.02, 0.017 +19671221, 0.25, 0.20, 0.14, 0.017 +19671222, -0.12, 0.42, 0.34, 0.017 +19671226, 0.15, 0.31, 0.27, 0.017 +19671227, 0.67, 0.13, -0.22, 0.017 +19671228, -0.05, -0.09, 0.27, 0.017 +19671229, 0.64, 0.24, 0.02, 0.017 +19680102, -0.26, 0.23, 1.20, 0.018 +19680103, -0.56, -0.09, 0.84, 0.018 +19680104, -0.30, -0.02, 0.71, 0.018 +19680105, 0.64, 0.52, 0.42, 0.018 +19680108, 0.70, 0.12, 0.17, 0.018 +19680109, -0.15, -0.04, -0.06, 0.018 +19680110, 0.14, 0.33, 0.05, 0.018 +19680111, 0.26, 0.89, 0.26, 0.018 +19680112, 0.20, 0.71, -0.15, 0.018 +19680115, -0.15, 0.51, -0.07, 0.018 +19680116, -0.56, 0.54, 0.23, 0.018 +19680117, -0.10, 0.67, -0.08, 0.018 +19680118, -0.01, 0.59, 0.13, 0.018 +19680119, -0.34, 0.09, -0.16, 0.018 +19680122, -1.38, -0.44, 0.25, 0.018 +19680123, -0.51, -0.13, -0.30, 0.018 +19680124, -0.41, 0.24, 0.09, 0.018 +19680125, 0.05, -0.27, -0.02, 0.018 +19680126, 0.21, 0.67, 0.02, 0.018 +19680129, -0.16, 0.02, 0.03, 0.018 +19680130, -0.56, -0.73, 0.75, 0.018 +19680131, -0.83, -0.39, 0.48, 0.018 +19680201, 0.28, -0.51, 0.29, 0.020 +19680202, -0.34, -0.07, 0.36, 0.020 +19680205, -0.47, -0.37, 0.28, 0.020 +19680206, 0.07, -0.10, 0.09, 0.020 +19680207, 0.15, -0.01, 0.04, 0.020 +19680208, -1.42, -0.96, 0.07, 0.020 +19680209, -1.19, -0.68, 0.17, 0.020 +19680213, -1.05, -0.89, 0.28, 0.020 +19680214, 1.25, 0.35, -0.77, 0.020 +19680215, 0.24, 0.54, 0.24, 0.020 +19680216, -0.39, 0.02, 0.34, 0.020 +19680219, 0.35, 0.17, -0.36, 0.020 +19680220, 0.62, 0.44, -0.23, 0.020 +19680221, 0.42, 0.27, -0.47, 0.020 +19680223, -0.48, -0.25, 0.24, 0.020 +19680226, -0.79, -0.62, 0.23, 0.020 +19680227, 0.40, -0.02, -0.11, 0.020 +19680228, -0.54, 0.14, 0.11, 0.020 +19680229, -0.88, -0.44, 0.31, 0.020 +19680301, -0.45, -0.66, 0.21, 0.018 +19680304, -1.55, -1.13, 0.96, 0.018 +19680305, -0.42, -0.97, -0.18, 0.018 +19680306, 1.80, 0.57, -0.25, 0.018 +19680307, -0.16, 0.49, 0.01, 0.018 +19680308, -0.10, -0.12, 0.04, 0.018 +19680311, 1.35, 0.54, -0.29, 0.018 +19680312, 0.18, 0.55, -0.21, 0.018 +19680313, -0.18, 0.34, 0.19, 0.018 +19680314, -2.09, -0.89, 0.19, 0.018 +19680315, 0.77, -0.38, -0.37, 0.018 +19680318, 0.65, 0.59, -0.41, 0.018 +19680319, -0.64, 0.06, 0.28, 0.018 +19680320, -0.08, -0.07, -0.16, 0.018 +19680321, -0.81, -0.25, 0.23, 0.018 +19680322, 0.01, -0.35, 0.17, 0.018 +19680325, -0.13, -0.19, 0.02, 0.018 +19680326, 0.66, 0.23, -0.44, 0.018 +19680327, 0.85, 0.27, -0.50, 0.018 +19680328, -0.08, 0.10, 0.12, 0.018 +19680329, 0.70, 0.11, -0.32, 0.018 +19680401, 2.38, -0.46, -0.79, 0.021 +19680402, 0.20, 0.14, 0.08, 0.021 +19680403, 0.87, -0.17, -0.21, 0.021 +19680404, 0.46, 0.15, 0.14, 0.021 +19680405, -0.54, 0.33, 0.09, 0.021 +19680408, 1.73, 0.00, -0.10, 0.021 +19680410, 0.73, 0.01, -0.14, 0.021 +19680411, 0.95, 0.15, 0.26, 0.021 +19680415, 0.20, 0.60, -0.04, 0.021 +19680416, 0.15, 0.78, 0.05, 0.021 +19680417, 0.30, 0.54, 0.41, 0.021 +19680418, 0.31, 0.40, 0.50, 0.021 +19680419, -1.23, 0.14, -0.45, 0.021 +19680422, -0.49, 0.39, -0.26, 0.021 +19680423, 1.28, 0.53, -0.51, 0.021 +19680424, 0.27, 0.49, -0.02, 0.021 +19680425, 0.34, 0.39, -0.06, 0.021 +19680426, 0.34, 0.26, -0.13, 0.021 +19680429, 0.30, 0.16, 0.06, 0.021 +19680430, 0.14, 0.29, 0.25, 0.021 +19680501, 0.32, 0.09, 0.21, 0.020 +19680502, 0.62, -0.01, -0.14, 0.020 +19680503, 0.08, 0.00, -0.38, 0.020 +19680506, -0.18, 0.24, 0.24, 0.020 +19680507, 0.57, 0.30, 0.35, 0.020 +19680508, 0.06, 0.43, -0.18, 0.020 +19680509, -0.52, -0.11, -0.08, 0.020 +19680510, 0.34, 0.71, 0.10, 0.020 +19680513, -0.17, 0.58, -0.06, 0.020 +19680514, -0.07, 0.19, 0.19, 0.020 +19680515, -0.06, 0.28, 0.03, 0.020 +19680516, -0.44, 0.02, 0.41, 0.020 +19680517, -0.59, 0.30, 0.38, 0.020 +19680520, -0.47, 0.04, 0.08, 0.020 +19680521, 0.58, 0.49, -0.07, 0.020 +19680522, 0.32, 0.64, 0.27, 0.020 +19680523, -0.13, 0.46, -0.23, 0.020 +19680524, 0.31, 0.26, 0.32, 0.020 +19680527, -0.04, 0.79, -0.30, 0.020 +19680528, 0.62, 0.18, -0.47, 0.020 +19680529, 0.32, 0.13, -0.02, 0.020 +19680531, 0.76, 0.09, 0.20, 0.020 +19680603, 1.25, -0.06, -0.33, 0.025 +19680604, 0.53, 0.30, 0.32, 0.025 +19680605, -0.47, -0.19, 0.20, 0.025 +19680606, 0.90, 0.42, 0.01, 0.025 +19680607, 0.67, 0.39, -0.17, 0.025 +19680610, 0.10, -0.02, -0.12, 0.025 +19680611, 0.23, 0.20, 0.28, 0.025 +19680613, -0.44, -0.13, -0.23, 0.025 +19680614, -0.16, -0.08, -0.11, 0.025 +19680617, -1.12, -0.43, -0.02, 0.025 +19680618, -0.12, 0.14, -0.06, 0.025 +19680620, 0.51, -0.29, -0.10, 0.025 +19680621, 0.14, -0.15, 0.26, 0.025 +19680624, -0.39, -0.32, 0.32, 0.025 +19680625, -0.44, -0.35, -0.03, 0.025 +19680627, -0.17, 0.04, -0.04, 0.025 +19680628, -0.34, 0.36, 0.43, 0.025 +19680701, -0.23, 0.01, 0.60, 0.028 +19680702, 0.41, 0.35, -0.41, 0.028 +19680703, 1.25, 0.46, -0.53, 0.028 +19680708, 1.06, 0.29, -0.36, 0.028 +19680709, 0.27, 0.00, 0.27, 0.028 +19680711, 0.10, 0.07, 0.37, 0.028 +19680712, -0.06, 0.14, 0.32, 0.028 +19680715, -0.17, 0.19, 0.35, 0.028 +19680716, -0.54, 0.16, 0.40, 0.028 +19680718, -0.35, -0.07, 0.27, 0.028 +19680719, -0.94, -0.24, 1.09, 0.028 +19680722, -1.43, -0.94, 1.42, 0.028 +19680723, -0.25, -0.35, -0.09, 0.028 +19680725, -1.30, -0.18, 0.88, 0.028 +19680726, 0.27, -0.48, 0.22, 0.028 +19680729, -0.88, -0.63, 0.71, 0.028 +19680730, 0.11, -0.06, -0.10, 0.028 +19680801, -0.54, 0.12, -0.05, 0.023 +19680802, -0.56, 0.02, 0.04, 0.023 +19680805, 0.39, 0.38, -0.33, 0.023 +19680806, 0.45, 0.37, -0.10, 0.023 +19680808, -0.25, 0.05, 0.47, 0.023 +19680809, 0.03, -0.10, 0.19, 0.023 +19680812, 0.99, 0.34, -0.48, 0.023 +19680813, 0.45, 0.04, -0.02, 0.023 +19680815, -0.39, 0.48, 0.30, 0.023 +19680816, 0.59, 0.02, 0.03, 0.023 +19680819, 0.34, 0.34, 0.09, 0.023 +19680820, 0.00, 0.21, -0.13, 0.023 +19680822, -0.32, -0.05, -0.11, 0.023 +19680823, 0.03, 0.34, 0.32, 0.023 +19680826, 0.23, -0.21, 0.28, 0.023 +19680827, -0.19, 0.05, 0.17, 0.023 +19680829, -0.12, -0.16, 0.13, 0.023 +19680830, 0.21, 0.08, 0.18, 0.023 +19680903, 0.37, -0.28, 0.27, 0.025 +19680904, 0.61, -0.06, 0.13, 0.025 +19680905, 0.70, -0.02, -0.27, 0.025 +19680906, 0.42, 0.20, -0.45, 0.025 +19680909, 0.13, 0.43, 0.04, 0.025 +19680910, -0.50, 0.08, 0.44, 0.025 +19680912, -0.20, 0.39, 0.08, 0.025 +19680913, 0.37, 0.36, -0.47, 0.025 +19680916, 0.38, 0.05, 0.05, 0.025 +19680917, 0.24, -0.01, -0.08, 0.025 +19680919, 0.16, 0.22, -0.12, 0.025 +19680920, 0.11, -0.03, 0.57, 0.025 +19680923, 0.56, -0.05, -0.21, 0.025 +19680924, 0.37, 0.38, -0.43, 0.025 +19680926, -0.19, 0.13, 0.19, 0.025 +19680927, 0.08, 0.56, 0.25, 0.025 +19680930, 0.42, 0.23, 0.28, 0.025 +19681001, 0.16, 0.37, 0.26, 0.024 +19681003, 0.34, -0.09, 0.47, 0.024 +19681004, 0.26, -0.42, 0.17, 0.024 +19681007, -0.03, -0.17, -0.07, 0.024 +19681008, -0.05, -0.34, 0.19, 0.024 +19681010, -0.42, 0.21, -0.09, 0.024 +19681011, 0.00, 0.38, 0.05, 0.024 +19681014, 0.16, 0.04, 0.05, 0.024 +19681015, 0.19, 0.14, 0.22, 0.024 +19681017, 0.49, -0.05, -0.16, 0.024 +19681018, 0.69, -0.30, -0.04, 0.024 +19681021, 0.14, -0.09, 0.28, 0.024 +19681022, -0.34, 0.12, 0.21, 0.024 +19681024, -0.63, 0.42, 0.32, 0.024 +19681025, 0.31, 0.00, 0.35, 0.024 +19681028, -0.33, -0.12, 0.13, 0.024 +19681029, -0.57, -0.30, 0.12, 0.024 +19681031, 0.05, -0.25, 0.38, 0.024 +19681101, -0.37, -0.14, 0.04, 0.025 +19681104, 0.01, -0.19, -0.42, 0.025 +19681106, 0.18, 0.06, 0.19, 0.025 +19681107, 0.27, -0.22, -0.42, 0.025 +19681108, 0.52, 0.30, 0.03, 0.025 +19681112, 0.74, 0.21, -0.27, 0.025 +19681113, 0.56, 0.32, -0.35, 0.025 +19681114, 0.10, 0.47, -0.18, 0.025 +19681115, 0.56, 0.16, 0.14, 0.025 +19681118, 0.16, -0.02, 0.23, 0.025 +19681119, 0.29, 0.14, 0.11, 0.025 +19681121, -0.05, 0.33, 0.22, 0.025 +19681122, 0.45, 0.28, -0.01, 0.025 +19681125, 0.26, 0.21, -0.05, 0.025 +19681126, 0.66, -0.12, 0.05, 0.025 +19681127, 0.42, 0.35, -0.28, 0.025 +19681129, 0.56, 0.10, 0.12, 0.025 +19681202, -0.19, 0.46, -0.40, 0.024 +19681203, -0.10, 0.16, -0.16, 0.024 +19681205, -0.28, 0.36, 0.15, 0.024 +19681206, 0.26, 0.27, -0.01, 0.024 +19681209, -0.18, 0.65, -0.18, 0.024 +19681210, -0.19, 0.27, 0.09, 0.024 +19681212, -0.05, 0.23, 0.32, 0.024 +19681213, 0.28, 0.17, 0.25, 0.024 +19681216, -0.40, 0.07, 0.06, 0.024 +19681217, -0.46, -0.11, -0.23, 0.024 +19681219, 0.23, -0.08, -0.22, 0.024 +19681220, -0.49, 0.59, -0.04, 0.024 +19681223, -1.05, 0.19, 0.25, 0.024 +19681224, -0.13, 0.13, -0.11, 0.024 +19681226, 0.12, 0.06, 0.13, 0.024 +19681227, -0.39, 0.19, 0.40, 0.024 +19681230, -1.04, -0.49, 0.01, 0.024 +19681231, 0.08, 0.39, -0.25, 0.024 +19690102, 0.08, 0.30, -0.04, 0.024 +19690103, -0.01, -0.05, -0.02, 0.024 +19690106, -1.51, -0.30, 0.46, 0.024 +19690107, -1.37, -1.00, 0.01, 0.024 +19690108, -0.51, -0.37, -0.07, 0.024 +19690109, 0.40, 0.11, 0.02, 0.024 +19690110, -0.30, -0.07, 0.45, 0.024 +19690113, -0.73, -0.94, 0.47, 0.024 +19690114, 0.73, 0.01, -0.23, 0.024 +19690115, 0.60, 0.54, -0.03, 0.024 +19690116, 0.55, 0.30, 0.06, 0.024 +19690117, -0.10, 0.34, -0.09, 0.024 +19690120, -0.20, 0.43, 0.11, 0.024 +19690121, -0.13, 0.09, -0.02, 0.024 +19690122, 0.39, 0.30, -0.21, 0.024 +19690123, 0.52, 0.43, -0.05, 0.024 +19690124, -0.06, 0.07, 0.01, 0.024 +19690127, -0.01, -0.05, 0.19, 0.024 +19690128, 0.02, -0.05, 0.34, 0.024 +19690129, 0.07, -0.28, 0.64, 0.024 +19690130, -0.03, -0.21, 0.07, 0.024 +19690131, 0.37, -0.38, -0.35, 0.024 +19690203, -0.09, -0.07, 0.43, 0.026 +19690204, 0.00, -0.05, 0.29, 0.026 +19690205, 0.14, -0.38, 0.16, 0.026 +19690206, 0.32, -0.35, -0.15, 0.026 +19690207, 0.09, 0.08, -0.16, 0.026 +19690211, 0.08, 0.12, -0.11, 0.026 +19690212, -0.05, 0.01, -0.39, 0.026 +19690213, 0.03, -0.15, -0.22, 0.026 +19690214, -0.11, 0.00, 0.01, 0.026 +19690217, -1.28, -0.54, 0.63, 0.026 +19690218, -1.20, -0.59, -0.04, 0.026 +19690219, -0.81, -0.21, 0.30, 0.026 +19690220, -0.96, -0.42, 0.06, 0.026 +19690224, -1.27, -0.73, 0.32, 0.026 +19690225, -0.75, -0.46, -0.19, 0.026 +19690226, 0.41, -0.13, -0.33, 0.026 +19690227, -0.47, -0.26, 0.23, 0.026 +19690228, -0.05, -0.08, 0.06, 0.026 +19690303, 0.17, -0.34, -0.18, 0.023 +19690304, 0.99, 0.07, 0.14, 0.023 +19690305, 0.33, 0.09, -0.24, 0.023 +19690306, -1.18, -0.29, 0.63, 0.023 +19690307, -0.18, -0.76, 0.40, 0.023 +19690310, 0.35, 0.13, -0.44, 0.023 +19690311, 0.40, 0.19, 0.09, 0.023 +19690312, -0.29, 0.00, 0.22, 0.023 +19690313, -0.71, -0.22, 0.28, 0.023 +19690314, -0.51, -0.34, 0.21, 0.023 +19690317, 0.21, -0.26, -0.59, 0.023 +19690318, 0.29, 0.37, -0.11, 0.023 +19690319, 0.71, 0.06, -0.25, 0.023 +19690320, 0.62, 0.33, -0.12, 0.023 +19690321, -0.20, 0.32, 0.23, 0.023 +19690324, -0.16, 0.11, -0.01, 0.023 +19690325, 0.12, 0.01, -0.24, 0.023 +19690326, 0.64, -0.18, 0.07, 0.023 +19690327, 0.68, 0.12, -0.15, 0.023 +19690328, 0.39, 0.36, -0.30, 0.023 +19690401, -0.14, 0.07, 0.44, 0.025 +19690402, -0.71, -0.25, 0.31, 0.025 +19690403, -0.09, -0.04, 0.16, 0.025 +19690407, -0.88, -0.24, -0.17, 0.025 +19690408, 0.21, -0.10, 0.37, 0.025 +19690409, 0.79, -0.10, -0.43, 0.025 +19690410, 0.45, -0.07, 0.10, 0.025 +19690411, 0.09, 0.08, 0.08, 0.025 +19690414, -0.14, -0.18, 0.03, 0.025 +19690415, -0.10, -0.12, -0.17, 0.025 +19690416, -0.90, 0.04, 0.36, 0.025 +19690417, 0.11, -0.10, 0.08, 0.025 +19690418, 0.38, -0.33, 0.22, 0.025 +19690421, -0.77, -0.27, 0.23, 0.025 +19690422, 0.16, -0.12, -0.31, 0.025 +19690423, 0.10, 0.28, 0.00, 0.025 +19690424, 0.42, -0.04, -0.04, 0.025 +19690425, 0.45, 0.11, -0.08, 0.025 +19690428, 0.34, -0.06, -0.14, 0.025 +19690429, 0.83, 0.23, -0.50, 0.025 +19690430, 0.86, 0.43, -0.50, 0.025 +19690501, -0.10, 0.35, -0.01, 0.023 +19690502, 0.46, -0.04, 0.09, 0.023 +19690505, 0.45, 0.30, -0.27, 0.023 +19690506, 0.45, -0.09, -0.13, 0.023 +19690507, -0.21, -0.17, 0.33, 0.023 +19690508, 0.34, -0.15, -0.21, 0.023 +19690509, 0.09, -0.15, 0.18, 0.023 +19690512, -0.19, -0.18, 0.07, 0.023 +19690513, 0.40, 0.02, -0.18, 0.023 +19690514, 0.68, -0.39, 0.09, 0.023 +19690515, -0.30, 0.06, 0.21, 0.023 +19690516, 0.02, -0.18, -0.17, 0.023 +19690519, -0.87, 0.22, 0.26, 0.023 +19690520, -0.84, 0.13, 0.22, 0.023 +19690521, 0.42, 0.04, -0.17, 0.023 +19690522, 0.19, -0.20, 0.31, 0.023 +19690523, -0.02, -0.06, -0.10, 0.023 +19690526, -0.20, 0.03, -0.05, 0.023 +19690527, -0.79, -0.05, 0.19, 0.023 +19690528, -0.26, 0.18, -0.32, 0.023 +19690529, 0.23, 0.08, 0.11, 0.023 +19690602, -0.54, 0.02, -0.03, 0.024 +19690603, -0.34, -0.30, 0.11, 0.024 +19690604, -0.05, -0.04, -0.05, 0.024 +19690605, 0.08, -0.12, -0.16, 0.024 +19690606, -0.69, -0.11, -0.19, 0.024 +19690609, -0.98, -0.11, -0.26, 0.024 +19690610, -0.79, -0.04, -0.06, 0.024 +19690611, -1.00, -0.34, 0.22, 0.024 +19690612, -1.42, -0.55, 0.29, 0.024 +19690613, 0.31, -0.25, -0.15, 0.024 +19690616, -0.40, -0.44, 0.06, 0.024 +19690617, -0.52, -0.67, -0.23, 0.024 +19690618, -0.22, -0.14, 0.16, 0.024 +19690619, -0.87, -0.79, 0.09, 0.024 +19690620, -0.74, -0.68, 0.53, 0.024 +19690623, -0.65, -0.94, -0.22, 0.024 +19690624, 1.09, -0.08, -0.53, 0.024 +19690625, -0.41, -0.24, 0.26, 0.024 +19690626, 0.17, -0.32, -0.62, 0.024 +19690627, 0.07, 0.02, -0.14, 0.024 +19690630, 0.46, 0.25, -0.17, 0.024 +19690701, 0.46, 0.35, -0.59, 0.025 +19690702, 0.86, 0.37, -0.46, 0.025 +19690703, 0.74, 0.41, -0.35, 0.025 +19690707, -0.68, -0.04, 0.55, 0.025 +19690708, -1.38, 0.04, 0.46, 0.025 +19690709, -0.80, -0.22, 0.10, 0.025 +19690710, -1.61, -0.41, 0.44, 0.025 +19690711, 0.29, -0.60, 0.05, 0.025 +19690714, -1.37, -0.25, 0.69, 0.025 +19690715, -0.43, -0.53, 0.13, 0.025 +19690716, 1.07, 0.08, -0.60, 0.025 +19690717, 0.53, -0.20, -0.07, 0.025 +19690718, -0.78, 0.23, 0.34, 0.025 +19690722, -1.57, 0.11, 0.63, 0.025 +19690723, -0.53, -0.67, -0.42, 0.025 +19690724, -0.42, -0.17, 0.38, 0.025 +19690725, -1.03, -0.29, 0.61, 0.025 +19690728, -2.26, -1.59, 1.47, 0.025 +19690729, -0.93, -0.64, 0.41, 0.025 +19690730, 0.52, 0.13, -1.09, 0.025 +19690731, 2.22, 0.50, -1.26, 0.025 +19690801, 1.97, 0.64, -0.43, 0.024 +19690804, -0.53, -0.02, 0.31, 0.024 +19690805, 0.42, -0.37, -0.41, 0.024 +19690806, 0.65, 0.24, -0.57, 0.024 +19690807, 0.09, -0.05, 0.03, 0.024 +19690808, -0.03, -0.08, 0.19, 0.024 +19690811, -0.59, 0.07, 0.12, 0.024 +19690812, -0.82, -0.19, 0.27, 0.024 +19690813, 0.03, -0.30, -0.51, 0.024 +19690814, 0.75, 0.37, -0.99, 0.024 +19690815, 0.81, -0.19, -0.38, 0.024 +19690818, 0.72, 0.40, -0.60, 0.024 +19690819, 0.54, 0.34, -0.43, 0.024 +19690820, -0.02, -0.06, 0.18, 0.024 +19690821, 0.25, 0.04, -0.27, 0.024 +19690822, 0.65, -0.03, -0.25, 0.024 +19690825, -0.93, 0.20, 0.62, 0.024 +19690826, -0.74, -0.14, 0.15, 0.024 +19690827, 0.27, 0.11, -0.39, 0.024 +19690828, 0.41, -0.21, -0.38, 0.024 +19690829, 0.74, -0.04, 0.00, 0.024 +19690902, -0.11, -0.08, 0.42, 0.030 +19690903, -0.71, -0.17, 0.41, 0.030 +19690904, -0.87, 0.01, -0.15, 0.030 +19690905, -0.65, -0.05, 0.01, 0.030 +19690908, -1.07, -0.15, 0.38, 0.030 +19690909, 0.74, -0.24, -0.46, 0.030 +19690910, 1.64, -0.10, -0.77, 0.030 +19690911, -0.70, 0.50, 0.13, 0.030 +19690912, 0.05, -0.13, -0.13, 0.030 +19690915, 0.62, 0.32, -0.67, 0.030 +19690916, 0.12, 0.19, -0.66, 0.030 +19690917, -0.31, 0.11, -0.44, 0.030 +19690918, 0.28, 0.19, -0.55, 0.030 +19690919, 0.35, 0.40, -0.94, 0.030 +19690922, 0.41, -0.09, -0.67, 0.030 +19690923, -0.01, 0.18, 0.10, 0.030 +19690924, -0.19, -0.11, 0.13, 0.030 +19690925, -0.75, 0.15, 0.66, 0.030 +19690926, -0.70, 0.15, 0.18, 0.030 +19690929, -0.73, 0.12, 0.09, 0.030 +19690930, -0.32, 0.08, -0.38, 0.030 +19691001, -0.63, 0.12, 0.23, 0.026 +19691002, 0.86, -0.08, -0.76, 0.026 +19691003, -0.08, -0.17, 0.18, 0.026 +19691006, 0.17, -0.01, -0.49, 0.026 +19691007, -0.23, 0.05, 0.06, 0.026 +19691008, -0.53, -0.12, 0.11, 0.026 +19691009, 0.33, -0.19, -0.49, 0.026 +19691010, 0.65, 0.26, -0.65, 0.026 +19691013, 1.25, 0.84, -0.72, 0.026 +19691014, 1.28, 0.10, 0.08, 0.026 +19691015, 0.04, 0.55, 0.20, 0.026 +19691016, 0.69, 0.28, -0.08, 0.026 +19691017, -0.09, 0.47, -0.12, 0.026 +19691020, 0.30, 0.36, 0.02, 0.026 +19691021, 0.79, 0.40, -0.22, 0.026 +19691022, 0.61, 0.08, 0.21, 0.026 +19691023, -0.33, 0.05, 0.08, 0.026 +19691024, 0.69, 0.05, -0.88, 0.026 +19691027, -0.10, 0.42, -0.12, 0.026 +19691028, -0.31, -0.14, 0.17, 0.026 +19691029, -0.90, 0.01, 0.52, 0.026 +19691030, 0.17, 0.17, -0.28, 0.026 +19691031, 0.34, 0.06, -0.03, 0.026 +19691103, -0.07, -0.23, 0.25, 0.027 +19691104, 0.07, 0.20, -0.49, 0.027 +19691105, 0.46, -0.11, -0.39, 0.027 +19691106, 0.14, -0.14, -0.18, 0.027 +19691107, 0.65, -0.26, -0.06, 0.027 +19691110, 0.06, -0.17, 0.05, 0.027 +19691111, -0.37, -0.04, 0.29, 0.027 +19691112, -0.17, 0.11, -0.16, 0.027 +19691113, -0.59, -0.38, 0.35, 0.027 +19691114, -0.43, -0.12, 0.13, 0.027 +19691117, -0.79, -0.28, 0.15, 0.027 +19691118, -0.09, -0.44, -0.07, 0.027 +19691119, -0.55, -0.30, 0.55, 0.027 +19691120, -1.12, -0.52, 0.37, 0.027 +19691121, -0.69, -0.19, 0.35, 0.027 +19691124, -1.08, -0.35, -0.10, 0.027 +19691125, -0.25, 0.16, -0.54, 0.027 +19691126, 0.36, 0.21, -0.95, 0.027 +19691128, 0.64, 0.26, -0.81, 0.027 +19691201, -0.76, -0.40, 0.23, 0.029 +19691202, -0.68, -0.07, -0.25, 0.029 +19691203, -1.23, -0.58, -0.02, 0.029 +19691204, 0.40, -0.03, -0.95, 0.029 +19691205, -0.38, -0.48, 0.44, 0.029 +19691208, -1.27, -0.42, 0.20, 0.029 +19691209, -0.20, -0.45, -0.48, 0.029 +19691210, -0.07, -0.17, -0.73, 0.029 +19691211, 0.07, -0.10, -0.24, 0.029 +19691212, 0.30, 0.04, -0.28, 0.029 +19691215, -0.29, 0.10, -0.13, 0.029 +19691216, -1.00, -0.47, -0.06, 0.029 +19691217, -0.54, -0.31, -0.07, 0.029 +19691218, 1.59, -0.19, -0.79, 0.029 +19691219, 0.82, 0.13, 0.01, 0.029 +19691222, -1.00, -0.32, 0.35, 0.029 +19691223, -0.53, -0.60, 0.29, 0.029 +19691224, 1.17, 0.49, -0.15, 0.029 +19691226, 0.81, 0.10, -0.04, 0.029 +19691229, -0.75, -0.27, -0.04, 0.029 +19691230, 0.39, -0.23, -0.16, 0.029 +19691231, 0.55, 0.49, -0.26, 0.029 +19700102, 1.18, 1.32, 0.97, 0.029 +19700105, 0.59, 0.67, 0.76, 0.029 +19700106, -0.74, 0.10, 0.28, 0.029 +19700107, -0.15, 0.38, -0.35, 0.029 +19700108, 0.04, 0.17, -0.18, 0.029 +19700109, -0.31, 0.19, 0.08, 0.029 +19700112, -0.80, -0.10, -0.04, 0.029 +19700113, 0.05, -0.17, -0.50, 0.029 +19700114, -0.25, -0.13, -0.28, 0.029 +19700115, -0.04, -0.09, -0.64, 0.029 +19700116, -0.82, -0.10, 0.70, 0.029 +19700119, -1.31, 0.42, 1.06, 0.029 +19700120, 0.17, 0.30, -0.39, 0.029 +19700121, 0.06, 0.06, 0.15, 0.029 +19700122, 0.11, 0.15, -0.11, 0.029 +19700123, -1.06, -0.14, 0.42, 0.029 +19700126, -1.13, -0.30, 0.42, 0.029 +19700127, -0.67, 0.21, -0.32, 0.029 +19700128, -0.99, 0.41, -0.14, 0.029 +19700129, -1.33, -0.09, 0.44, 0.029 +19700130, -0.88, -0.20, 0.93, 0.029 +19700202, 0.82, -0.64, -0.13, 0.032 +19700203, 1.26, -0.16, -0.30, 0.032 +19700204, -0.74, -0.31, 0.73, 0.032 +19700205, -0.41, -0.17, -0.06, 0.032 +19700206, 0.59, 0.17, -0.32, 0.032 +19700209, 0.82, -0.07, -0.22, 0.032 +19700210, -0.94, 0.35, 0.10, 0.032 +19700211, 0.90, -0.16, -0.83, 0.032 +19700212, -0.21, 0.27, 0.28, 0.032 +19700213, -0.18, -0.02, 0.63, 0.032 +19700216, -0.07, 0.20, 0.38, 0.032 +19700217, -0.20, -0.07, 0.19, 0.032 +19700218, 1.19, -0.51, -0.05, 0.032 +19700219, 0.28, -0.31, 0.53, 0.032 +19700220, 0.32, -0.62, 0.87, 0.032 +19700224, -0.03, -0.10, 0.47, 0.032 +19700225, 1.52, -0.18, 0.22, 0.032 +19700226, -0.53, 0.08, 0.64, 0.032 +19700227, 0.69, 0.11, 0.41, 0.032 +19700302, 0.13, -0.16, 0.70, 0.027 +19700303, 0.58, -0.43, 0.61, 0.027 +19700304, -0.25, 0.15, 0.61, 0.027 +19700305, -0.02, 0.17, 0.37, 0.027 +19700306, -0.69, 0.23, 0.26, 0.027 +19700309, -1.08, 0.00, 0.79, 0.027 +19700310, 0.14, -0.26, -0.33, 0.027 +19700311, -0.14, -0.12, 0.46, 0.027 +19700312, -0.51, -0.22, 0.39, 0.027 +19700313, -0.63, -0.29, 0.73, 0.027 +19700316, -1.15, -0.13, 0.36, 0.027 +19700317, 0.39, -0.15, -0.46, 0.027 +19700318, 0.26, -0.13, 0.14, 0.027 +19700319, -0.29, -0.32, 0.37, 0.027 +19700320, -0.52, -0.49, 0.66, 0.027 +19700323, -0.14, -0.18, -0.07, 0.027 +19700324, 1.01, -0.51, -0.44, 0.027 +19700325, 2.14, 0.12, -0.52, 0.027 +19700326, 0.10, 0.30, -0.10, 0.027 +19700330, -0.28, 0.10, -0.30, 0.027 +19700331, -0.05, -0.02, 0.11, 0.027 +19700401, 0.45, -0.07, 0.03, 0.023 +19700402, -0.39, 0.12, 0.11, 0.023 +19700403, -0.49, 0.01, 0.98, 0.023 +19700406, -0.83, -0.28, 1.16, 0.023 +19700407, -0.36, -0.12, 0.59, 0.023 +19700408, -0.19, -0.25, 0.09, 0.023 +19700409, -0.10, -0.65, 0.43, 0.023 +19700410, -0.44, -0.41, -0.29, 0.023 +19700413, -0.90, -0.87, 1.05, 0.023 +19700414, -0.86, -0.52, 0.34, 0.023 +19700415, -0.31, -0.20, 0.30, 0.023 +19700416, -1.14, -0.29, 0.70, 0.023 +19700417, -0.33, -0.25, 0.10, 0.023 +19700420, 0.22, 0.01, -0.55, 0.023 +19700421, -0.57, -0.31, 0.68, 0.023 +19700422, -1.48, -0.60, 1.06, 0.023 +19700423, -1.65, -0.64, 0.52, 0.023 +19700424, -0.51, -0.52, 0.18, 0.023 +19700427, -1.84, -0.87, 0.91, 0.023 +19700428, -1.47, -0.61, 0.60, 0.023 +19700429, 2.11, 0.16, -2.30, 0.023 +19700430, -0.40, 0.18, 0.63, 0.023 +19700501, -0.14, -0.02, 0.17, 0.025 +19700504, -2.60, -0.42, 1.79, 0.025 +19700505, -1.13, -0.53, 0.57, 0.025 +19700506, 1.20, 0.38, -0.95, 0.025 +19700507, 0.59, 0.03, -0.08, 0.025 +19700508, -0.52, -0.03, 0.29, 0.025 +19700511, -1.11, -0.02, 0.64, 0.025 +19700512, -0.93, -0.21, 0.54, 0.025 +19700513, -1.76, -0.52, 1.01, 0.025 +19700514, -1.53, -0.87, 0.63, 0.025 +19700515, 1.83, -0.33, -0.95, 0.025 +19700518, 0.13, -0.11, 0.18, 0.025 +19700519, -2.01, -0.15, 1.33, 0.025 +19700520, -2.66, -0.52, 1.69, 0.025 +19700521, -2.01, -0.95, 1.03, 0.025 +19700522, -0.15, -0.68, -0.65, 0.025 +19700525, -3.21, -1.64, 1.75, 0.025 +19700526, -1.32, -0.53, 0.58, 0.025 +19700527, 5.30, 1.36, -3.73, 0.025 +19700528, 2.63, 0.99, -1.20, 0.025 +19700529, 2.70, 0.12, -1.33, 0.025 +19700601, 1.83, 1.06, -1.72, 0.026 +19700602, 0.12, 0.55, -0.36, 0.026 +19700603, 1.11, 0.88, -0.92, 0.026 +19700604, -1.58, -0.26, 1.37, 0.026 +19700605, -1.70, -0.34, 0.34, 0.026 +19700608, 0.10, 0.01, 0.13, 0.026 +19700609, 0.01, -0.01, -0.45, 0.026 +19700610, -1.03, -0.01, 0.24, 0.026 +19700611, -1.42, -0.23, 1.03, 0.026 +19700612, -0.42, -0.31, -0.26, 0.026 +19700615, 0.30, 0.13, -0.54, 0.026 +19700616, 2.28, -0.47, -1.26, 0.026 +19700617, -0.27, -0.13, 0.58, 0.026 +19700618, 0.56, -0.33, -0.69, 0.026 +19700619, 0.66, -0.19, -0.03, 0.026 +19700622, -0.67, -0.12, 0.15, 0.026 +19700623, -2.49, -0.01, 1.20, 0.026 +19700624, -1.15, -0.81, 0.58, 0.026 +19700625, -0.05, -0.58, -0.03, 0.026 +19700626, -0.82, -0.18, 0.46, 0.026 +19700629, -0.87, -0.35, 0.30, 0.026 +19700630, -0.30, -0.57, 0.56, 0.026 +19700701, 0.33, -0.55, -0.26, 0.024 +19700702, -0.26, -0.48, 0.54, 0.024 +19700706, -1.58, -0.28, 0.81, 0.024 +19700707, -0.87, -0.33, 0.15, 0.024 +19700708, 2.38, -0.67, -1.29, 0.024 +19700709, 1.61, 0.18, -0.02, 0.024 +19700710, 0.71, 0.06, 0.14, 0.024 +19700713, -0.07, 0.17, 0.74, 0.024 +19700714, -0.15, -0.15, -0.25, 0.024 +19700715, 0.98, -0.30, -0.25, 0.024 +19700716, 1.33, -0.31, 0.12, 0.024 +19700717, 1.67, -0.10, 0.12, 0.024 +19700720, 0.13, 0.25, 0.44, 0.024 +19700721, -1.01, 0.00, 0.30, 0.024 +19700722, 0.12, 0.53, 0.10, 0.024 +19700723, 1.22, -0.40, -0.20, 0.024 +19700724, -0.23, 0.59, -0.17, 0.024 +19700727, -0.19, 0.34, 0.24, 0.024 +19700728, 0.26, 0.21, -0.37, 0.024 +19700729, 0.37, 0.48, -0.31, 0.024 +19700730, 0.06, 0.12, -0.20, 0.024 +19700731, -0.06, 0.13, 0.46, 0.024 +19700803, -1.22, 0.21, 0.47, 0.025 +19700804, 0.17, -0.28, -0.12, 0.025 +19700805, -0.08, -0.10, 0.19, 0.025 +19700806, -0.18, -0.40, 0.47, 0.025 +19700807, 0.26, -0.19, 0.42, 0.025 +19700810, -1.44, 0.01, 0.42, 0.025 +19700811, -0.57, -0.21, 0.32, 0.025 +19700812, -0.49, 0.12, 0.66, 0.025 +19700813, -0.90, 0.08, 0.76, 0.025 +19700814, 0.41, -0.32, 0.14, 0.025 +19700817, 0.17, -0.25, -0.52, 0.025 +19700818, 1.06, -0.52, -0.19, 0.025 +19700819, 0.90, -0.55, 0.39, 0.025 +19700820, 0.75, -0.77, 0.03, 0.025 +19700821, 2.09, -0.17, -0.16, 0.025 +19700824, 2.34, 0.65, -1.43, 0.025 +19700825, 0.38, 0.98, -0.83, 0.025 +19700826, 0.31, 0.96, -0.09, 0.025 +19700827, -0.12, 0.80, 0.01, 0.025 +19700828, 0.99, 0.71, -0.25, 0.025 +19700831, -0.35, 0.71, 0.27, 0.025 +19700901, -0.64, 0.04, 0.29, 0.025 +19700902, -0.02, 0.37, -0.40, 0.025 +19700903, 1.46, 0.21, -0.93, 0.025 +19700904, 1.07, 0.68, -0.01, 0.025 +19700908, 0.36, 0.68, -0.66, 0.025 +19700909, -0.30, 0.22, -0.16, 0.025 +19700910, -0.58, 0.33, 0.22, 0.025 +19700911, 0.35, 1.00, -0.32, 0.025 +19700914, -0.51, 0.10, 0.19, 0.025 +19700915, -0.98, -0.30, -0.11, 0.025 +19700916, 0.57, 0.43, -0.67, 0.025 +19700917, 0.80, 0.72, -0.72, 0.025 +19700918, 0.44, 0.59, 0.09, 0.025 +19700921, -0.84, -0.12, 0.33, 0.025 +19700922, -0.36, -0.08, -0.02, 0.025 +19700923, 1.35, 0.22, -0.63, 0.025 +19700924, 1.43, 1.39, -1.38, 0.025 +19700925, 0.17, 0.13, -0.01, 0.025 +19700928, -0.06, 0.69, -0.54, 0.025 +19700929, 0.58, 0.76, -0.04, 0.025 +19700930, -0.12, -0.02, 0.35, 0.025 +19701001, 0.12, -0.26, -0.11, 0.021 +19701002, 1.05, 0.40, -0.30, 0.021 +19701005, 1.44, -0.17, 0.01, 0.021 +19701006, 0.23, -0.86, 0.92, 0.021 +19701007, -0.03, 0.19, 0.07, 0.021 +19701008, -1.15, -0.38, 0.47, 0.021 +19701009, -0.97, 0.31, 0.09, 0.021 +19701012, -0.98, 0.00, 0.37, 0.021 +19701013, -0.26, 0.04, -0.35, 0.021 +19701014, 0.13, -0.21, -0.05, 0.021 +19701015, 0.41, -0.47, 0.25, 0.021 +19701016, -0.60, -0.63, 0.58, 0.021 +19701019, -1.41, -0.46, 0.63, 0.021 +19701020, 0.57, -0.36, -1.06, 0.021 +19701021, -0.08, -0.27, 0.13, 0.021 +19701022, -0.43, -0.29, 0.13, 0.021 +19701023, 0.49, 0.15, -0.52, 0.021 +19701026, -0.53, 0.14, -0.09, 0.021 +19701027, -0.30, -0.30, -0.14, 0.021 +19701028, 0.32, -0.34, -0.88, 0.021 +19701029, -0.18, -0.41, 0.26, 0.021 +19701030, -0.07, -0.27, -0.09, 0.021 +19701102, 0.32, -0.07, -0.18, 0.023 +19701103, 0.85, 0.25, 0.33, 0.023 +19701104, 0.18, -0.28, 0.20, 0.023 +19701105, -0.20, -0.18, 0.06, 0.023 +19701106, 0.09, -0.32, 0.24, 0.023 +19701109, 0.50, -0.24, -0.24, 0.023 +19701110, 0.15, -0.01, -0.08, 0.023 +19701111, 0.27, -0.07, 0.36, 0.023 +19701112, -1.11, -0.68, 0.42, 0.023 +19701113, -0.96, -0.27, 0.28, 0.023 +19701116, -0.17, -0.39, -0.21, 0.023 +19701117, 0.05, -0.33, 0.25, 0.023 +19701118, -0.77, -0.70, 0.32, 0.023 +19701119, 0.09, -0.46, -0.18, 0.023 +19701120, 0.98, -0.05, -0.33, 0.023 +19701123, 0.63, -0.34, 0.09, 0.023 +19701124, 0.58, -0.36, 0.26, 0.023 +19701125, 0.42, -0.04, 0.35, 0.023 +19701127, 0.98, -0.17, -0.36, 0.023 +19701130, 1.67, 0.77, -0.10, 0.023 +19701201, 0.29, -0.07, 0.19, 0.019 +19701202, 1.22, 0.10, -0.43, 0.019 +19701203, 0.45, 0.06, 0.49, 0.019 +19701204, 0.57, 0.10, 0.21, 0.019 +19701207, 0.58, 0.18, -0.25, 0.019 +19701208, -0.52, -0.16, 0.05, 0.019 +19701209, 0.01, -0.30, -0.03, 0.019 +19701210, 0.34, -0.10, -0.07, 0.019 +19701211, 0.37, 0.17, -0.15, 0.019 +19701214, -0.57, -0.46, 0.35, 0.019 +19701215, -0.18, -0.24, 0.13, 0.019 +19701216, 0.12, 0.22, 0.02, 0.019 +19701217, 0.31, 0.14, 0.02, 0.019 +19701218, 0.21, 0.38, -0.04, 0.019 +19701221, -0.29, 0.12, 0.04, 0.019 +19701222, 0.12, 0.18, 0.09, 0.019 +19701223, 0.15, 0.38, 0.09, 0.019 +19701224, 0.69, 0.96, -0.15, 0.019 +19701228, 0.53, 0.22, 0.05, 0.019 +19701229, 1.11, 0.49, 0.25, 0.019 +19701230, 0.18, 0.12, 0.08, 0.019 +19701231, -0.10, 0.26, -0.09, 0.019 +19710104, -0.99, 0.54, 0.69, 0.019 +19710105, 0.82, 0.66, 0.02, 0.019 +19710106, 0.74, 0.88, 0.49, 0.019 +19710107, 0.05, 0.09, 0.54, 0.019 +19710108, -0.13, 0.06, 0.41, 0.019 +19710111, -0.11, 0.50, 0.15, 0.019 +19710112, 0.98, 0.79, 0.38, 0.019 +19710113, -0.09, 0.38, -0.21, 0.019 +19710114, 0.29, 0.02, 0.15, 0.019 +19710115, 0.28, 0.41, 0.26, 0.019 +19710118, 0.35, 0.25, 0.25, 0.019 +19710119, 0.29, -0.14, -0.04, 0.019 +19710120, 0.08, 0.35, -0.05, 0.019 +19710121, 0.47, 0.48, -0.57, 0.019 +19710122, 0.67, -0.01, -0.30, 0.019 +19710125, 0.47, 0.46, -0.54, 0.019 +19710126, 0.28, 0.24, -0.66, 0.019 +19710127, -0.74, -0.02, 0.00, 0.019 +19710128, 0.37, 0.65, 0.21, 0.019 +19710129, 0.66, 0.23, 0.13, 0.019 +19710201, 0.67, 0.69, -0.20, 0.017 +19710202, 0.06, 0.07, -0.04, 0.017 +19710203, 0.30, 0.72, -0.38, 0.017 +19710204, 0.14, 0.14, -0.26, 0.017 +19710205, 0.45, 0.18, -0.03, 0.017 +19710208, 0.60, 0.86, 0.04, 0.017 +19710209, -0.04, -0.27, -0.10, 0.017 +19710210, -0.11, -0.20, -0.01, 0.017 +19710211, 0.52, 0.27, 0.48, 0.017 +19710212, 0.59, 0.58, -0.05, 0.017 +19710216, 0.24, 0.01, -0.10, 0.017 +19710217, -0.48, -0.11, 0.31, 0.017 +19710218, -0.68, -0.27, 0.21, 0.017 +19710219, -0.93, -0.52, 0.18, 0.017 +19710222, -1.06, -0.84, -0.30, 0.017 +19710223, 0.50, 0.51, -0.40, 0.017 +19710224, 0.74, 0.56, -0.30, 0.017 +19710225, 0.16, -0.25, 0.10, 0.017 +19710226, -0.25, -0.25, -0.43, 0.017 +19710301, 0.30, 0.23, -0.26, 0.013 +19710302, 0.05, 0.32, 0.16, 0.013 +19710303, 0.01, 0.32, -0.19, 0.013 +19710304, 1.05, 0.35, -0.43, 0.013 +19710305, 1.06, 0.24, -0.25, 0.013 +19710308, 0.48, 0.50, -0.38, 0.013 +19710309, 0.14, 0.46, -0.45, 0.013 +19710310, -0.12, 0.18, -0.42, 0.013 +19710311, -0.02, -0.42, 0.36, 0.013 +19710312, 0.16, -0.14, -0.12, 0.013 +19710315, 1.14, 0.19, -0.42, 0.013 +19710316, 0.46, -0.17, -0.16, 0.013 +19710317, 0.01, -0.03, -0.46, 0.013 +19710318, 0.11, 0.43, -0.06, 0.013 +19710319, -0.18, 0.02, -0.04, 0.013 +19710322, -0.40, -0.22, 0.11, 0.013 +19710323, -0.33, 0.14, -0.09, 0.013 +19710324, -0.61, -0.01, -0.02, 0.013 +19710325, 0.02, -0.06, -0.04, 0.013 +19710326, 0.38, 0.19, -0.21, 0.013 +19710329, 0.08, -0.26, -0.19, 0.013 +19710330, 0.21, -0.06, -0.10, 0.013 +19710331, 0.09, 0.22, -0.16, 0.013 +19710401, 0.06, -0.01, -0.23, 0.013 +19710402, 0.20, 0.06, -0.31, 0.013 +19710405, 0.17, -0.10, 0.12, 0.013 +19710406, 0.59, -0.23, -0.04, 0.013 +19710407, 0.43, -0.02, 0.38, 0.013 +19710408, 0.14, 0.13, 0.05, 0.013 +19710412, 0.67, -0.20, -0.03, 0.013 +19710413, 0.04, 0.03, 0.00, 0.013 +19710414, 0.35, 0.18, 0.39, 0.013 +19710415, 0.14, -0.19, 0.55, 0.013 +19710416, 0.00, -0.08, 0.40, 0.013 +19710419, 0.41, -0.33, 0.11, 0.013 +19710420, -0.49, -0.49, -0.03, 0.013 +19710421, -0.27, 0.04, -0.09, 0.013 +19710422, 0.29, 0.07, 0.15, 0.013 +19710423, 0.50, 0.15, -0.37, 0.013 +19710426, 0.00, 0.53, 0.11, 0.013 +19710427, 0.44, 0.14, -0.19, 0.013 +19710428, 0.34, 0.11, -0.26, 0.013 +19710429, -0.25, -0.39, -0.01, 0.013 +19710430, -0.65, 0.13, -0.02, 0.013 +19710503, -0.57, 0.23, -0.18, 0.015 +19710504, 0.55, 0.21, -0.03, 0.015 +19710505, -0.03, -0.08, -0.17, 0.015 +19710506, -0.58, -0.40, 0.00, 0.015 +19710507, -0.32, -0.11, -0.12, 0.015 +19710510, -0.49, -0.20, 0.21, 0.015 +19710511, 0.29, -0.06, 0.10, 0.015 +19710512, 0.23, -0.12, -0.13, 0.015 +19710513, -0.20, 0.09, -0.41, 0.015 +19710514, -0.42, 0.16, 0.09, 0.015 +19710517, -1.52, -0.44, 0.17, 0.015 +19710518, 0.05, -0.25, -0.18, 0.015 +19710519, 0.23, -0.15, 0.08, 0.015 +19710520, 0.25, 0.07, -0.20, 0.015 +19710521, -0.35, -0.04, -0.09, 0.015 +19710524, -0.83, -0.05, -0.28, 0.015 +19710525, -0.65, -0.14, -0.35, 0.015 +19710526, 0.15, 0.05, -0.12, 0.015 +19710527, -0.11, -0.08, 0.05, 0.015 +19710528, 0.27, 0.21, 0.04, 0.015 +19710601, 0.61, -0.06, -0.08, 0.017 +19710602, 0.84, 0.33, -0.24, 0.017 +19710603, 0.18, 0.44, -0.12, 0.017 +19710604, 0.25, 0.04, -0.18, 0.017 +19710607, -0.16, 0.13, -0.15, 0.017 +19710608, -0.79, -0.17, 0.28, 0.017 +19710609, -0.07, -0.31, -0.15, 0.017 +19710610, 0.29, -0.10, -0.21, 0.017 +19710611, 0.34, -0.32, -0.26, 0.017 +19710614, -0.81, -0.16, -0.10, 0.017 +19710615, 0.02, -0.46, -0.21, 0.017 +19710616, 0.16, -0.28, -0.46, 0.017 +19710617, -0.03, -0.30, -0.06, 0.017 +19710618, -1.54, -0.60, 0.08, 0.017 +19710621, -1.21, -0.53, 0.14, 0.017 +19710622, -0.30, -0.10, -0.01, 0.017 +19710623, 0.86, 0.36, -0.40, 0.017 +19710624, -0.17, 0.16, 0.20, 0.017 +19710625, -0.20, 0.13, 0.07, 0.017 +19710628, -0.26, 0.03, -0.14, 0.017 +19710629, 1.11, 0.20, 0.09, 0.017 +19710630, 0.92, 0.08, -0.10, 0.017 +19710701, 0.10, 0.13, -0.04, 0.019 +19710702, 0.04, 0.15, -0.18, 0.019 +19710706, 0.06, 0.27, -0.28, 0.019 +19710707, 0.35, 0.27, -0.09, 0.019 +19710708, 0.33, -0.26, -0.06, 0.019 +19710709, 0.34, -0.05, -0.14, 0.019 +19710712, 0.11, -0.13, 0.08, 0.019 +19710713, -1.29, 0.02, 0.20, 0.019 +19710714, -0.17, 0.13, -0.03, 0.019 +19710715, 0.03, 0.10, 0.00, 0.019 +19710716, -0.21, 0.10, 0.14, 0.019 +19710719, -0.24, -0.12, -0.01, 0.019 +19710720, 0.37, -0.26, 0.08, 0.019 +19710721, -0.08, -0.07, -0.15, 0.019 +19710722, -0.25, -0.25, 0.15, 0.019 +19710723, -0.17, 0.02, 0.02, 0.019 +19710726, -0.34, -0.09, 0.20, 0.019 +19710727, -0.99, -0.38, 0.23, 0.019 +19710728, -0.84, -0.32, -0.05, 0.019 +19710729, -1.27, -0.63, -0.02, 0.019 +19710730, -0.47, -0.26, 0.09, 0.019 +19710802, 0.49, 0.34, 0.75, 0.021 +19710803, -1.64, -0.58, 0.02, 0.021 +19710804, -0.59, -0.07, -0.08, 0.021 +19710805, 0.24, -0.04, -0.04, 0.021 +19710806, 0.26, 0.07, -0.21, 0.021 +19710809, -0.77, -0.18, -0.08, 0.021 +19710810, 0.00, -0.36, 0.05, 0.021 +19710811, 1.22, -0.03, -0.26, 0.021 +19710812, 1.41, 0.13, -0.38, 0.021 +19710813, -0.30, 0.11, 0.32, 0.021 +19710816, 3.62, 0.92, 1.19, 0.021 +19710817, 0.66, -0.20, 0.32, 0.021 +19710818, -1.34, 0.20, -0.27, 0.021 +19710819, -0.47, -0.27, 0.24, 0.021 +19710820, 0.17, 0.03, -0.03, 0.021 +19710823, 0.89, -0.63, 0.46, 0.021 +19710824, 0.92, -0.37, 0.51, 0.021 +19710825, 0.09, 0.17, 0.04, 0.021 +19710826, -0.12, 0.03, -0.07, 0.021 +19710827, 0.23, 0.12, 0.17, 0.021 +19710830, -0.92, 0.35, 0.15, 0.021 +19710831, -0.49, 0.13, -0.20, 0.021 +19710901, 0.04, 0.00, 0.15, 0.017 +19710902, 0.25, 0.06, 0.05, 0.017 +19710903, 1.39, 0.11, 0.11, 0.017 +19710907, 0.49, 0.26, 0.09, 0.017 +19710908, 0.20, 0.15, -0.42, 0.017 +19710909, -0.48, 0.13, -0.25, 0.017 +19710910, -0.35, 0.18, -0.23, 0.017 +19710913, -0.36, -0.05, -0.02, 0.017 +19710914, -0.76, 0.01, -0.10, 0.017 +19710915, 0.36, -0.20, -0.26, 0.017 +19710916, -0.18, 0.19, -0.22, 0.017 +19710917, 0.30, -0.19, -0.21, 0.017 +19710920, -0.32, -0.19, -0.25, 0.017 +19710921, -0.32, 0.11, -0.10, 0.017 +19710922, -0.89, -0.26, -0.05, 0.017 +19710923, -0.10, -0.14, -0.15, 0.017 +19710924, -0.18, 0.40, -0.15, 0.017 +19710927, -0.57, -0.09, -0.36, 0.017 +19710928, 0.19, -0.10, -0.02, 0.017 +19710929, 0.01, 0.17, -0.41, 0.017 +19710930, 0.46, -0.08, -0.13, 0.017 +19711001, 0.61, 0.20, -0.24, 0.017 +19711004, 0.26, 0.08, -0.02, 0.017 +19711005, -0.12, -0.04, -0.21, 0.017 +19711006, 0.73, -0.15, 0.25, 0.017 +19711007, 0.21, 0.04, 0.14, 0.017 +19711008, -0.62, -0.04, 0.16, 0.017 +19711011, -0.22, 0.08, 0.12, 0.017 +19711012, 0.35, -0.08, -0.02, 0.017 +19711013, -0.51, 0.16, -0.10, 0.017 +19711014, -0.92, -0.33, 0.14, 0.017 +19711015, -0.42, -0.11, -0.11, 0.017 +19711018, -0.51, -0.18, 0.06, 0.017 +19711019, -0.42, -0.33, -0.29, 0.017 +19711020, -1.38, -0.09, 0.08, 0.017 +19711021, -0.01, -0.06, -0.12, 0.017 +19711022, -0.05, 0.16, -0.19, 0.017 +19711025, -0.44, -0.05, -0.09, 0.017 +19711026, -0.52, -0.51, 0.11, 0.017 +19711027, -1.07, -0.58, -0.11, 0.017 +19711028, 0.12, -0.30, 0.15, 0.017 +19711029, 0.47, 0.22, -0.18, 0.017 +19711101, -1.48, -0.06, -0.12, 0.018 +19711102, 0.27, -0.45, -0.07, 0.018 +19711103, 1.70, -0.29, -0.17, 0.018 +19711104, 0.00, 0.28, -0.12, 0.018 +19711105, -0.28, -0.26, -0.09, 0.018 +19711108, -0.09, -0.03, -0.27, 0.018 +19711109, 0.07, 0.01, -0.23, 0.018 +19711110, -1.14, -0.01, -0.33, 0.018 +19711111, -1.38, -0.21, 0.33, 0.018 +19711112, -0.04, -0.24, -0.01, 0.018 +19711115, -0.36, 0.10, -0.05, 0.018 +19711116, 0.91, -0.37, -0.44, 0.018 +19711117, 0.07, -0.36, -0.05, 0.018 +19711118, -0.74, -0.05, 0.25, 0.018 +19711119, -0.61, -0.55, 0.19, 0.018 +19711122, -1.00, -0.59, -0.22, 0.018 +19711123, -0.80, -0.81, -0.14, 0.018 +19711124, 0.17, -0.08, 0.06, 0.018 +19711126, 1.81, -0.05, -0.14, 0.018 +19711129, 1.81, 0.75, 0.20, 0.018 +19711130, 0.74, 0.37, -0.25, 0.018 +19711201, 1.73, 0.53, -0.28, 0.017 +19711202, 0.29, 0.07, -0.19, 0.017 +19711203, 1.17, -0.03, -0.12, 0.017 +19711206, -0.46, 0.37, 0.55, 0.017 +19711207, 0.43, 0.14, -0.42, 0.017 +19711208, 0.14, 0.28, -0.23, 0.017 +19711209, 0.02, 0.17, -0.28, 0.017 +19711210, 0.81, 0.42, 0.09, 0.017 +19711213, 0.37, 0.43, 0.02, 0.017 +19711214, -0.40, -0.15, -0.13, 0.017 +19711215, 0.82, -0.06, 0.18, 0.017 +19711216, 1.10, -0.02, -0.13, 0.017 +19711217, 0.50, 0.20, -0.11, 0.017 +19711220, 1.22, -0.06, -0.08, 0.017 +19711221, 0.23, -0.12, -0.16, 0.017 +19711222, -0.59, 0.15, 0.24, 0.017 +19711223, -0.44, -0.06, 0.24, 0.017 +19711227, 0.14, -0.21, 0.11, 0.017 +19711228, 0.92, -0.37, 0.16, 0.017 +19711229, 0.32, 0.24, 0.29, 0.017 +19711230, -0.33, 0.24, 0.06, 0.017 +19711231, 0.40, 0.95, -0.29, 0.017 +19720103, -0.37, 0.63, 0.64, 0.014 +19720104, 0.39, 0.39, 0.35, 0.014 +19720105, 0.97, 0.34, 0.57, 0.014 +19720106, 0.44, 0.46, -0.13, 0.014 +19720107, -0.01, 0.26, 0.04, 0.014 +19720110, -0.04, 0.48, 0.23, 0.014 +19720111, 0.39, 0.49, 0.14, 0.014 +19720112, -0.07, -0.20, -0.17, 0.014 +19720113, -0.59, 0.02, -0.17, 0.014 +19720114, 0.40, 0.37, -0.13, 0.014 +19720117, 0.33, 0.30, 0.13, 0.014 +19720118, 0.38, 0.24, 0.15, 0.014 +19720119, -0.15, 0.16, -0.14, 0.014 +19720120, -0.08, -0.09, -0.25, 0.014 +19720121, -0.19, 0.31, -0.14, 0.014 +19720124, -1.09, 0.07, 0.26, 0.014 +19720125, 0.16, -0.03, -0.23, 0.014 +19720126, -0.16, 0.42, 0.11, 0.014 +19720127, 1.10, 0.42, 0.01, 0.014 +19720128, 0.73, 0.23, 0.35, 0.014 +19720131, -0.06, 0.56, 0.27, 0.014 +19720201, 0.14, 0.53, -0.38, 0.012 +19720202, 0.62, 0.57, -0.78, 0.012 +19720203, -0.02, -0.05, -0.65, 0.012 +19720204, 0.36, -0.07, 0.23, 0.012 +19720207, -0.35, -0.01, 0.39, 0.012 +19720208, 0.13, -0.02, -0.20, 0.012 +19720209, 0.72, 0.11, -0.14, 0.012 +19720210, 0.03, -0.20, 0.27, 0.012 +19720211, -0.40, 0.17, -0.14, 0.012 +19720214, -0.40, 0.01, 0.02, 0.012 +19720215, 0.45, 0.26, -0.07, 0.012 +19720216, 0.49, 0.00, -0.08, 0.012 +19720217, -0.04, 0.05, -0.15, 0.012 +19720218, -0.24, 0.15, -0.28, 0.012 +19720222, -0.01, 0.11, 0.10, 0.012 +19720223, 0.12, 0.07, -0.20, 0.012 +19720224, 0.15, 0.01, -0.20, 0.012 +19720225, 0.63, -0.10, -0.32, 0.012 +19720228, 0.06, -0.26, 0.26, 0.012 +19720229, 0.41, 0.01, -0.34, 0.012 +19720301, 0.80, 0.04, -0.59, 0.012 +19720302, 0.05, 0.06, -0.21, 0.012 +19720303, 0.58, 0.15, -0.35, 0.012 +19720306, 0.75, -0.18, 0.30, 0.012 +19720307, 0.12, -0.25, -0.05, 0.012 +19720308, 0.18, 0.61, -0.33, 0.012 +19720309, 0.02, 0.42, -0.21, 0.012 +19720310, -0.54, 0.13, 0.04, 0.012 +19720313, -0.95, -0.11, 0.51, 0.012 +19720314, 0.29, 0.01, 0.15, 0.012 +19720315, 0.07, -0.19, 0.03, 0.012 +19720316, -0.28, -0.22, -0.05, 0.012 +19720317, 0.27, -0.30, -0.18, 0.012 +19720320, -0.38, -0.58, -0.01, 0.012 +19720321, -0.94, -0.50, 0.00, 0.012 +19720322, 0.16, -0.04, 0.09, 0.012 +19720323, 0.95, 0.22, -0.16, 0.012 +19720324, -0.21, 0.04, -0.20, 0.012 +19720327, -0.21, 0.06, -0.15, 0.012 +19720328, -0.10, 0.15, -0.25, 0.012 +19720329, -0.59, 0.33, -0.28, 0.012 +19720330, 0.61, -0.10, 0.19, 0.012 +19720403, 0.23, -0.10, -0.11, 0.014 +19720404, 0.61, -0.14, 0.14, 0.014 +19720405, 0.82, 0.15, -0.31, 0.014 +19720406, 0.40, 0.14, -0.02, 0.014 +19720407, 0.26, 0.08, 0.05, 0.014 +19720410, -0.17, 0.34, 0.07, 0.014 +19720411, 0.36, 0.24, 0.09, 0.014 +19720412, 0.35, 0.26, -0.10, 0.014 +19720413, -0.27, -0.09, -0.14, 0.014 +19720414, 0.03, 0.24, -0.15, 0.014 +19720417, -0.26, -0.10, 0.27, 0.014 +19720418, 0.17, -0.13, 0.13, 0.014 +19720419, -0.63, -0.45, 0.50, 0.014 +19720420, -0.18, 0.13, 0.11, 0.014 +19720421, -0.16, -0.01, 0.19, 0.014 +19720424, -0.66, 0.20, -0.19, 0.014 +19720425, -0.99, -0.25, -0.26, 0.014 +19720426, -0.24, -0.11, 0.03, 0.014 +19720427, 0.10, -0.23, 0.04, 0.014 +19720428, 0.51, -0.09, -0.15, 0.014 +19720501, -0.91, -0.19, 0.17, 0.014 +19720502, -0.59, -0.20, -0.02, 0.014 +19720503, -0.23, -0.71, 0.15, 0.014 +19720504, 0.23, -0.37, -0.24, 0.014 +19720505, 0.36, -0.10, -0.31, 0.014 +19720508, -0.51, -0.37, 0.08, 0.014 +19720509, -1.45, -0.68, -0.11, 0.014 +19720510, 0.70, 0.18, -0.04, 0.014 +19720511, 0.41, 0.24, 0.01, 0.014 +19720512, 0.69, 0.26, 0.00, 0.014 +19720515, 0.50, 0.31, -0.36, 0.014 +19720516, -0.23, -0.08, 0.09, 0.014 +19720517, 0.20, -0.09, -0.18, 0.014 +19720518, 0.91, -0.05, -0.58, 0.014 +19720519, 0.92, -0.22, -0.24, 0.014 +19720522, 0.55, -0.31, -0.42, 0.014 +19720523, 0.03, -0.08, -0.49, 0.014 +19720524, 0.41, -0.13, -0.27, 0.014 +19720525, 0.21, -0.05, -0.31, 0.014 +19720526, 0.16, 0.25, -0.08, 0.014 +19720530, -0.34, -0.23, 0.33, 0.014 +19720531, -0.73, -0.19, 0.11, 0.014 +19720601, 0.22, 0.10, -0.08, 0.013 +19720602, 0.11, 0.28, -0.30, 0.013 +19720605, -0.80, 0.01, -0.05, 0.013 +19720606, -0.56, 0.16, -0.40, 0.013 +19720607, -0.51, 0.00, -0.11, 0.013 +19720608, -0.30, -0.06, 0.02, 0.013 +19720609, -0.46, 0.00, 0.09, 0.013 +19720612, 0.07, -0.06, -0.05, 0.013 +19720613, 0.43, -0.14, -0.20, 0.013 +19720614, 0.76, 0.12, -0.50, 0.013 +19720615, -0.07, -0.18, -0.22, 0.013 +19720616, -0.09, 0.06, 0.09, 0.013 +19720619, -0.16, 0.22, -0.05, 0.013 +19720620, 0.36, -0.20, -0.09, 0.013 +19720621, 0.15, -0.22, -0.33, 0.013 +19720622, -0.17, -0.11, 0.01, 0.013 +19720623, -0.42, 0.15, -0.08, 0.013 +19720626, -0.70, 0.21, 0.02, 0.013 +19720627, -0.12, -0.22, 0.07, 0.013 +19720628, -0.36, 0.08, -0.26, 0.013 +19720629, -0.20, 0.01, -0.24, 0.013 +19720630, 0.39, 0.20, 0.04, 0.013 +19720703, 0.34, 0.01, 0.11, 0.016 +19720705, 0.55, -0.07, -0.14, 0.016 +19720706, 0.76, -0.35, -0.35, 0.016 +19720707, -0.32, 0.17, -0.23, 0.016 +19720710, -0.55, -0.05, 0.19, 0.016 +19720711, -0.75, -0.04, 0.21, 0.016 +19720712, -0.53, -0.44, 0.46, 0.016 +19720713, -0.63, -0.15, 0.32, 0.016 +19720714, 0.47, -0.18, -0.09, 0.016 +19720717, -0.92, -0.15, 0.69, 0.016 +19720718, -0.09, -0.61, 0.30, 0.016 +19720719, 0.23, -0.03, -0.05, 0.016 +19720720, -0.34, -0.20, 0.28, 0.016 +19720721, 0.72, -0.04, -0.16, 0.016 +19720724, 1.08, 0.13, -0.52, 0.016 +19720725, -0.31, 0.02, 0.00, 0.016 +19720726, -0.10, -0.05, -0.19, 0.016 +19720727, -0.34, -0.42, 0.16, 0.016 +19720728, 0.03, -0.28, -0.04, 0.016 +19720731, -0.07, -0.28, -0.11, 0.016 +19720801, 0.93, -0.31, -0.54, 0.012 +19720802, 0.83, -0.34, -0.32, 0.012 +19720803, 0.74, -0.47, -0.23, 0.012 +19720804, 0.34, -0.08, -0.26, 0.012 +19720807, 0.11, -0.17, -0.03, 0.012 +19720808, 0.07, -0.27, -0.13, 0.012 +19720809, 0.12, 0.06, -0.05, 0.012 +19720810, 0.22, 0.02, 0.03, 0.012 +19720811, 0.82, -0.20, 0.06, 0.012 +19720814, 0.43, -0.23, 0.45, 0.012 +19720815, -0.43, -0.01, 0.67, 0.012 +19720816, -0.28, -0.19, 0.70, 0.012 +19720817, -0.22, -0.01, 0.70, 0.012 +19720818, 0.41, -0.14, 0.26, 0.012 +19720821, -0.08, -0.26, 0.81, 0.012 +19720822, 0.50, -0.68, 1.03, 0.012 +19720823, -0.15, 0.04, 0.41, 0.012 +19720824, -1.07, 0.14, 0.46, 0.012 +19720825, -0.27, -0.01, 0.17, 0.012 +19720828, -0.47, -0.07, 0.23, 0.012 +19720829, 0.13, -0.34, 0.09, 0.012 +19720830, 0.13, -0.22, 0.14, 0.012 +19720831, 0.44, -0.21, -0.02, 0.012 +19720901, 0.40, 0.10, -0.15, 0.017 +19720905, -0.29, 0.05, 0.06, 0.017 +19720906, -0.60, -0.11, 0.25, 0.017 +19720907, -0.34, -0.19, 0.35, 0.017 +19720908, -0.14, -0.19, 0.35, 0.017 +19720911, -0.69, -0.41, 0.30, 0.017 +19720912, -0.95, -0.15, 0.33, 0.017 +19720913, 0.33, -0.15, -0.15, 0.017 +19720914, 0.02, -0.04, -0.13, 0.017 +19720915, -0.10, -0.06, 0.05, 0.017 +19720918, -0.20, -0.11, 0.28, 0.017 +19720919, -0.06, -0.17, 0.20, 0.017 +19720920, -0.06, -0.22, -0.19, 0.017 +19720921, -0.19, -0.13, -0.10, 0.017 +19720922, 0.06, -0.17, 0.25, 0.017 +19720925, -0.46, -0.13, -0.02, 0.017 +19720926, 0.09, -0.19, -0.12, 0.017 +19720927, 1.38, -0.25, -0.65, 0.017 +19720928, 0.60, -0.22, -0.43, 0.017 +19720929, 0.11, 0.03, -0.03, 0.017 +19721002, -0.32, -0.03, 0.23, 0.018 +19721003, 0.07, -0.42, 0.10, 0.018 +19721004, -0.26, -0.63, 0.74, 0.018 +19721005, -1.11, -0.11, 0.64, 0.018 +19721006, 0.63, -0.19, -0.23, 0.018 +19721009, 0.22, 0.15, -0.08, 0.018 +19721010, 0.10, 0.09, -0.05, 0.018 +19721011, -0.46, -0.20, 0.13, 0.018 +19721012, -0.84, -0.15, 0.41, 0.018 +19721013, -0.68, 0.15, 0.18, 0.018 +19721016, -1.05, 0.24, 0.19, 0.018 +19721017, 0.60, -0.57, 0.28, 0.018 +19721018, 0.57, -0.28, -0.17, 0.018 +19721019, -0.12, -0.13, -0.13, 0.018 +19721020, 1.02, -0.37, -0.26, 0.018 +19721023, 0.95, -0.14, -0.19, 0.018 +19721024, 0.31, -0.20, -0.10, 0.018 +19721025, -0.04, -0.05, 0.12, 0.018 +19721026, 0.34, 0.11, -0.06, 0.018 +19721027, -0.29, 0.30, -0.16, 0.018 +19721030, -0.04, -0.07, -0.04, 0.018 +19721031, 0.94, -0.30, -0.26, 0.018 +19721101, 1.02, -0.36, -0.15, 0.019 +19721102, 0.47, -0.32, 0.11, 0.019 +19721103, 0.84, -0.15, 0.16, 0.019 +19721106, -0.17, 0.11, 0.54, 0.019 +19721108, -0.49, 0.00, 0.41, 0.019 +19721109, 0.06, -0.37, 0.63, 0.019 +19721110, 0.30, 0.06, 0.59, 0.019 +19721113, 0.09, -0.31, 0.43, 0.019 +19721114, 0.83, -0.68, 0.06, 0.019 +19721115, -0.34, 0.21, 0.01, 0.019 +19721116, 0.50, -0.25, 0.02, 0.019 +19721117, 0.31, 0.00, 0.31, 0.019 +19721120, 0.01, 0.07, 0.34, 0.019 +19721121, 0.46, -0.04, 0.26, 0.019 +19721122, 0.59, -0.06, 0.29, 0.019 +19721124, 0.27, -0.32, 0.83, 0.019 +19721127, -0.38, 0.04, 0.25, 0.019 +19721128, -0.19, 0.51, 0.25, 0.019 +19721129, 0.02, 0.22, -0.20, 0.019 +19721130, 0.26, 0.59, -0.48, 0.019 +19721201, 0.65, 0.30, -0.21, 0.020 +19721204, 0.31, 0.29, -0.26, 0.020 +19721205, -0.21, -0.06, -0.05, 0.020 +19721206, 0.32, 0.15, -0.13, 0.020 +19721207, 0.41, -0.18, -0.32, 0.020 +19721208, 0.19, 0.07, -0.70, 0.020 +19721211, 0.19, -0.17, -0.22, 0.020 +19721212, -0.41, -0.33, 0.19, 0.020 +19721213, -0.19, -0.53, 0.08, 0.020 +19721214, -0.33, -0.31, 0.10, 0.020 +19721215, 0.05, -0.04, -0.26, 0.020 +19721218, -1.08, -0.02, -0.04, 0.020 +19721219, -0.41, -0.03, -0.02, 0.020 +19721220, -0.36, -0.18, 0.04, 0.020 +19721221, -0.66, 0.13, 0.04, 0.020 +19721222, 0.54, -0.18, 0.06, 0.020 +19721226, 0.21, -0.45, 0.10, 0.020 +19721227, 0.40, -0.60, -0.19, 0.020 +19721229, 1.09, 0.26, -0.50, 0.020 +19730102, 0.87, 0.88, -0.02, 0.021 +19730103, 0.35, 0.18, 0.13, 0.021 +19730104, -0.23, 0.11, 0.15, 0.021 +19730105, 0.30, 0.00, -0.09, 0.021 +19730108, -0.03, -0.13, 0.31, 0.021 +19730109, -0.09, -0.21, 0.32, 0.021 +19730110, -0.26, -0.27, 0.61, 0.021 +19730111, 0.55, -0.53, 0.04, 0.021 +19730112, -0.85, -0.44, 0.08, 0.021 +19730115, -0.84, -0.30, 0.26, 0.021 +19730116, -0.36, -0.25, -0.02, 0.021 +19730117, 0.37, -0.22, 0.14, 0.021 +19730118, 0.13, -0.22, -0.08, 0.021 +19730119, -0.19, -0.22, -0.46, 0.021 +19730122, -0.53, -0.09, 0.09, 0.021 +19730123, -0.16, -0.36, -0.04, 0.021 +19730124, -1.39, -0.24, 0.13, 0.021 +19730126, -0.37, -0.51, 0.29, 0.021 +19730129, -0.51, -0.19, 0.23, 0.021 +19730130, -0.17, -0.36, 0.26, 0.021 +19730131, 0.12, -0.29, 0.45, 0.021 +19730201, -1.16, -0.16, 0.16, 0.022 +19730202, -0.41, -0.06, -0.08, 0.022 +19730205, -0.19, -0.27, -0.12, 0.022 +19730206, 0.19, -0.32, -0.17, 0.022 +19730207, -0.77, 0.09, -0.16, 0.022 +19730208, -0.44, 0.01, -0.44, 0.022 +19730209, 1.35, -0.18, -0.41, 0.022 +19730212, 1.07, -0.14, -0.23, 0.022 +19730213, 0.51, -0.32, -0.01, 0.022 +19730214, -1.41, 0.11, 0.43, 0.022 +19730215, -0.69, -0.11, 0.16, 0.022 +19730216, 0.36, -0.42, 0.18, 0.022 +19730220, 0.25, -0.47, 0.40, 0.022 +19730221, -0.74, -0.39, 0.55, 0.022 +19730222, -0.30, -0.38, 0.23, 0.022 +19730223, -1.08, -0.18, 0.54, 0.022 +19730226, -0.88, -0.53, 0.59, 0.022 +19730227, -1.15, -0.19, 0.65, 0.022 +19730228, 0.62, -0.35, -0.40, 0.022 +19730301, -0.70, 0.04, 0.46, 0.021 +19730302, 0.86, -0.82, -0.16, 0.021 +19730305, 0.37, 0.06, -0.46, 0.021 +19730306, 1.26, -0.19, -0.23, 0.021 +19730307, 0.37, 0.29, -0.38, 0.021 +19730308, -0.21, 0.09, 0.21, 0.021 +19730309, -0.36, 0.17, 0.07, 0.021 +19730312, -0.03, -0.19, 0.17, 0.021 +19730313, 0.42, -0.55, 0.19, 0.021 +19730314, 0.26, -0.54, 0.19, 0.021 +19730315, -0.71, -0.11, 0.41, 0.021 +19730316, -0.52, 0.08, 0.10, 0.021 +19730319, -1.23, -0.05, 0.41, 0.021 +19730320, -0.33, -0.40, 0.32, 0.021 +19730321, -1.29, 0.01, 1.05, 0.021 +19730322, -1.68, -0.36, 0.74, 0.021 +19730323, 0.00, -0.26, 0.19, 0.021 +19730326, 0.75, -0.24, -0.21, 0.021 +19730327, 1.43, -0.21, -0.51, 0.021 +19730328, 0.03, 0.06, -0.02, 0.021 +19730329, 0.98, -0.33, 0.08, 0.021 +19730330, -0.92, 0.60, 0.08, 0.021 +19730402, -1.20, 0.02, 0.64, 0.026 +19730403, -1.00, -0.08, 0.37, 0.026 +19730404, -0.63, -0.03, 0.34, 0.026 +19730405, -0.47, -0.44, 0.29, 0.026 +19730406, 0.70, -0.36, -0.24, 0.026 +19730409, 1.26, -0.82, 0.05, 0.026 +19730410, 1.11, -0.58, -0.03, 0.026 +19730411, 0.39, -0.36, 0.33, 0.026 +19730412, -0.09, 0.06, 0.37, 0.026 +19730413, -0.42, 0.23, 0.26, 0.026 +19730416, -0.56, 0.16, 0.22, 0.026 +19730417, -0.59, -0.26, 0.78, 0.026 +19730418, 0.34, -0.70, 0.07, 0.026 +19730419, 0.53, -0.17, 0.20, 0.026 +19730423, -0.58, -0.03, 0.02, 0.026 +19730424, -1.51, -0.16, 0.62, 0.026 +19730425, -1.56, -0.31, 1.04, 0.026 +19730426, 0.32, -0.36, 0.03, 0.026 +19730427, -1.54, 0.24, 0.49, 0.026 +19730430, -0.24, -0.31, 0.16, 0.026 +19730501, 0.02, -0.31, 0.02, 0.023 +19730502, 1.18, -0.42, -0.43, 0.023 +19730503, 1.46, -0.79, -0.12, 0.023 +19730504, 0.76, 0.17, -0.55, 0.023 +19730507, -0.43, 0.03, 0.16, 0.023 +19730508, 0.58, -0.11, -0.11, 0.023 +19730509, -0.51, 0.58, -0.34, 0.023 +19730510, -0.68, 0.13, 0.00, 0.023 +19730511, -1.17, 0.14, 0.25, 0.023 +19730514, -2.19, -0.13, 0.85, 0.023 +19730515, 0.42, -1.10, -0.02, 0.023 +19730516, -0.13, -0.37, 0.40, 0.023 +19730517, -0.89, -0.12, 0.30, 0.023 +19730518, -1.88, -1.06, 0.27, 0.023 +19730521, -1.49, -2.43, 0.13, 0.023 +19730522, 0.75, -0.56, -0.26, 0.023 +19730523, 0.40, -0.52, -0.08, 0.023 +19730524, 2.79, -0.96, -0.91, 0.023 +19730525, 0.94, 1.38, -0.41, 0.023 +19730529, -0.32, 0.60, -0.14, 0.023 +19730530, -1.53, -0.16, 0.64, 0.023 +19730531, -0.91, -0.44, 0.54, 0.023 +19730601, -0.95, -0.19, 0.68, 0.024 +19730604, -1.14, -0.49, 0.55, 0.024 +19730605, 1.36, -0.69, -0.70, 0.024 +19730606, -0.27, -0.03, -0.12, 0.024 +19730607, 1.30, -0.68, -0.26, 0.024 +19730608, 1.08, 0.08, -0.20, 0.024 +19730611, -0.31, 0.32, 0.38, 0.024 +19730612, 1.44, -0.54, -0.56, 0.024 +19730613, -0.49, 1.10, 0.06, 0.024 +19730614, -1.06, 0.28, 0.11, 0.024 +19730615, -1.26, 0.00, 0.71, 0.024 +19730618, -1.44, -0.14, 0.30, 0.024 +19730619, 0.24, -0.42, -0.27, 0.024 +19730620, 0.38, -0.17, -0.34, 0.024 +19730621, -1.14, 0.19, 0.49, 0.024 +19730622, 0.40, -0.51, 0.38, 0.024 +19730625, -1.43, -0.58, 1.10, 0.024 +19730626, 0.89, -0.61, -0.37, 0.024 +19730627, 0.30, -0.18, -0.11, 0.024 +19730628, 0.99, -0.17, -0.55, 0.024 +19730629, -0.34, 0.39, 0.11, 0.024 +19730702, -1.20, 0.52, 0.59, 0.030 +19730703, -0.92, 0.29, 0.91, 0.030 +19730705, -0.18, -0.14, 0.19, 0.030 +19730706, -0.43, 0.24, 0.36, 0.030 +19730709, 0.80, -0.40, -0.32, 0.030 +19730710, 1.38, 0.20, -0.63, 0.030 +19730711, 2.17, 0.33, -0.72, 0.030 +19730712, -0.06, 0.95, -0.43, 0.030 +19730713, -1.09, 1.04, 0.10, 0.030 +19730716, 1.50, 0.09, -1.14, 0.030 +19730717, 0.28, 0.78, -0.53, 0.030 +19730718, 0.79, 0.75, -0.51, 0.030 +19730719, 0.37, 0.77, -0.69, 0.030 +19730720, 0.66, 0.68, -0.60, 0.030 +19730723, 0.29, 0.53, -0.13, 0.030 +19730724, 0.55, -0.03, -0.55, 0.030 +19730725, 1.36, 0.28, -0.98, 0.030 +19730726, 0.11, 0.31, -0.28, 0.030 +19730727, -0.24, 0.01, 0.03, 0.030 +19730730, -0.33, -0.14, 0.26, 0.030 +19730731, -0.85, 0.20, 0.20, 0.030 +19730801, -1.31, -0.25, 0.41, 0.030 +19730802, -0.12, -0.08, -0.22, 0.030 +19730803, -0.10, 0.26, -0.20, 0.030 +19730806, 0.27, 0.13, -0.36, 0.030 +19730807, -0.17, 0.08, -0.25, 0.030 +19730808, -0.97, 0.03, 0.23, 0.030 +19730809, -0.03, -0.31, 0.11, 0.030 +19730810, -0.80, -0.20, 0.33, 0.030 +19730813, -1.08, -0.27, 0.26, 0.030 +19730814, -0.93, -0.16, 0.31, 0.030 +19730815, 0.24, -0.27, 0.00, 0.030 +19730816, -0.52, 0.29, 0.50, 0.030 +19730817, 0.02, -0.12, 0.31, 0.030 +19730820, -0.75, -0.20, 0.45, 0.030 +19730821, -0.78, 0.02, 0.01, 0.030 +19730822, -0.48, -0.27, 0.04, 0.030 +19730823, 1.28, -0.43, -0.52, 0.030 +19730824, -0.14, 0.07, 0.19, 0.030 +19730827, 0.68, -0.34, -0.54, 0.030 +19730828, 0.47, -0.32, 0.04, 0.030 +19730829, 0.89, -0.15, 0.00, 0.030 +19730830, 0.01, 0.27, 0.19, 0.030 +19730831, 0.50, 0.16, -0.17, 0.030 +19730904, 0.37, 0.05, 0.30, 0.036 +19730905, 0.19, 0.01, 0.06, 0.036 +19730906, 0.48, -0.16, 0.49, 0.036 +19730907, -0.18, 0.47, 0.12, 0.036 +19730910, -0.88, 0.54, 0.43, 0.036 +19730911, -0.58, 0.03, 0.19, 0.036 +19730912, -0.24, -0.01, 0.01, 0.036 +19730913, 0.29, 0.00, -0.65, 0.036 +19730914, 0.89, -0.04, -0.76, 0.036 +19730917, -0.04, 0.53, 0.22, 0.036 +19730918, -0.23, 0.15, 0.32, 0.036 +19730919, 1.93, -0.24, -0.72, 0.036 +19730920, 0.92, 0.22, -0.08, 0.036 +19730921, 0.51, 0.20, 0.55, 0.036 +19730924, 0.29, 0.38, 0.83, 0.036 +19730925, 0.50, -0.06, 0.33, 0.036 +19730926, 0.70, 0.27, 0.29, 0.036 +19730927, 0.23, 0.04, 0.05, 0.036 +19730928, -0.48, 0.41, 0.15, 0.036 +19731001, -0.16, 0.55, 0.70, 0.028 +19731002, 0.58, 0.67, -0.13, 0.028 +19731003, 0.08, 0.71, 0.62, 0.028 +19731004, -0.39, 0.19, 0.43, 0.028 +19731005, 1.19, -0.06, -0.26, 0.028 +19731008, 0.44, 0.33, -0.19, 0.028 +19731009, -0.10, 0.06, -0.08, 0.028 +19731010, -1.16, -0.58, -0.27, 0.028 +19731011, 1.65, 0.11, -0.54, 0.028 +19731012, 0.37, 0.17, -0.17, 0.028 +19731015, -1.17, 0.16, 0.12, 0.028 +19731016, -0.01, -0.39, -0.28, 0.028 +19731017, -0.29, -0.09, 0.13, 0.028 +19731018, -0.01, -0.26, 0.02, 0.028 +19731019, 0.20, -0.03, 0.28, 0.028 +19731022, -1.07, -0.40, 0.47, 0.028 +19731023, 0.35, -0.40, -0.11, 0.028 +19731024, 0.29, -0.34, 0.05, 0.028 +19731025, 0.15, -0.19, -0.02, 0.028 +19731026, 0.72, -0.29, 0.08, 0.028 +19731029, -0.26, -0.13, 0.27, 0.028 +19731030, -1.52, -0.05, 0.57, 0.028 +19731031, -0.88, 0.07, 0.05, 0.028 +19731101, -0.58, -0.08, -0.21, 0.026 +19731102, -0.56, -0.31, 0.11, 0.026 +19731105, -1.59, -0.30, 0.28, 0.026 +19731106, -0.72, -0.49, 0.31, 0.026 +19731107, 0.63, -0.86, 0.59, 0.026 +19731108, 1.08, -0.05, -0.37, 0.026 +19731109, -1.48, 0.03, 0.70, 0.026 +19731112, -0.97, -0.63, -0.08, 0.026 +19731113, -0.29, -0.86, -0.30, 0.026 +19731114, -1.87, -0.48, 0.40, 0.026 +19731115, -0.13, -0.71, 0.30, 0.026 +19731116, 1.13, -0.65, 0.18, 0.026 +19731119, -3.03, -0.13, 1.18, 0.026 +19731120, -2.26, -1.33, 0.13, 0.026 +19731121, 1.06, -0.81, -0.07, 0.026 +19731123, -0.14, 0.17, 0.64, 0.026 +19731126, -3.01, -1.33, 0.96, 0.026 +19731127, -0.94, -0.40, 0.05, 0.026 +19731128, 1.98, 0.07, -0.87, 0.026 +19731129, -0.35, 0.06, 0.13, 0.026 +19731130, -1.35, 0.01, 0.73, 0.026 +19731203, -2.06, -0.32, 0.18, 0.032 +19731204, -0.42, -0.41, -0.26, 0.032 +19731205, -1.74, -0.62, 0.16, 0.032 +19731206, 2.25, -1.13, -0.38, 0.032 +19731207, 2.19, 0.25, 0.72, 0.032 +19731210, 1.50, -0.32, -0.39, 0.032 +19731211, -1.81, 0.10, 0.80, 0.032 +19731212, -2.60, -0.11, 0.67, 0.032 +19731213, -1.48, -0.35, 0.89, 0.032 +19731214, 0.97, -0.58, 0.08, 0.032 +19731217, -0.66, -0.10, 0.59, 0.032 +19731218, 1.88, -1.01, -0.42, 0.032 +19731219, -0.02, -0.26, 0.18, 0.032 +19731220, -0.30, 0.08, 0.53, 0.032 +19731221, -0.96, 0.17, 0.87, 0.032 +19731224, -0.63, 0.36, 0.94, 0.032 +19731226, 2.71, -1.12, -0.85, 0.032 +19731227, 1.96, -0.34, -0.72, 0.032 +19731228, -0.11, -0.07, 0.17, 0.032 +19731231, 0.20, 0.50, 0.16, 0.032 +19740102, 0.26, 1.27, 1.20, 0.028 +19740103, 2.32, 1.45, 0.93, 0.028 +19740104, -0.56, 1.59, 1.54, 0.028 +19740107, -0.52, 1.37, 1.05, 0.028 +19740108, -1.77, 0.91, 0.84, 0.028 +19740109, -2.73, 0.58, 0.52, 0.028 +19740110, -1.07, 0.27, -0.18, 0.028 +19740111, 1.16, -0.29, 0.25, 0.028 +19740114, -0.14, 0.10, 0.54, 0.028 +19740115, 0.75, -0.35, -0.01, 0.028 +19740116, 1.43, -0.48, -0.22, 0.028 +19740117, 1.67, 0.16, -0.84, 0.028 +19740118, -1.55, 1.08, -0.04, 0.028 +19740121, -0.27, -0.22, -0.17, 0.028 +19740122, 0.98, -0.28, -0.20, 0.028 +19740123, 0.49, 0.48, -0.35, 0.028 +19740124, -0.25, 0.42, 0.32, 0.028 +19740125, -0.11, 0.45, -0.28, 0.028 +19740128, -0.50, 0.41, 0.15, 0.028 +19740129, -0.16, -0.04, 0.48, 0.028 +19740130, 1.01, -0.11, 0.00, 0.028 +19740131, -0.45, 0.41, 0.11, 0.028 +19740201, -1.23, 0.52, 0.23, 0.031 +19740204, -1.96, 0.07, 0.09, 0.031 +19740205, -0.40, -0.13, 0.48, 0.031 +19740206, 0.29, -0.21, 0.11, 0.031 +19740207, 0.12, 0.16, 0.45, 0.031 +19740208, -0.95, 0.31, 0.66, 0.031 +19740211, -1.76, 0.51, 0.81, 0.031 +19740212, 0.04, -0.52, 0.27, 0.031 +19740213, -0.04, -0.16, 0.15, 0.031 +19740214, -0.01, 0.25, 0.11, 0.031 +19740215, 1.30, -0.36, -0.39, 0.031 +19740219, -0.13, -0.06, 0.07, 0.031 +19740220, 1.24, -0.54, -0.27, 0.031 +19740221, 1.24, -0.47, -0.11, 0.031 +19740222, 0.82, -0.14, 0.40, 0.031 +19740225, -0.26, 0.28, 0.25, 0.031 +19740226, 0.98, -0.13, 0.02, 0.031 +19740227, 0.49, 0.39, -0.58, 0.031 +19740228, -0.14, 0.25, -0.28, 0.031 +19740301, -0.61, 0.61, 0.32, 0.026 +19740304, 0.01, 0.20, -0.05, 0.026 +19740305, 1.76, -0.37, -0.80, 0.026 +19740306, 0.56, 0.44, -0.70, 0.026 +19740307, -0.94, 0.67, 0.27, 0.026 +19740308, 0.75, -0.22, -0.31, 0.026 +19740311, 1.01, -0.29, -0.37, 0.026 +19740312, 0.18, -0.08, -0.08, 0.026 +19740313, 0.55, 0.04, -0.42, 0.026 +19740314, 0.04, 0.40, -0.22, 0.026 +19740315, -0.29, 0.35, -0.03, 0.026 +19740318, -1.29, 0.58, 0.44, 0.026 +19740319, -0.84, 0.06, 0.19, 0.026 +19740320, 0.26, -0.17, -0.25, 0.026 +19740321, -0.23, 0.01, 0.14, 0.026 +19740322, -0.11, -0.05, -0.06, 0.026 +19740325, 0.19, -0.41, -0.33, 0.026 +19740326, 0.21, -0.18, 0.32, 0.026 +19740327, -1.35, 0.41, 0.64, 0.026 +19740328, -1.85, 0.26, 0.48, 0.026 +19740329, -0.81, 0.23, 0.65, 0.026 +19740401, -0.79, 0.34, 0.34, 0.036 +19740402, 0.00, -0.06, 0.01, 0.036 +19740403, 0.81, -0.55, -0.28, 0.036 +19740404, -0.08, -0.03, 0.03, 0.036 +19740405, -1.40, 0.57, 0.38, 0.036 +19740408, -1.04, -0.07, 0.25, 0.036 +19740409, 0.49, -0.41, -0.02, 0.036 +19740410, -0.21, 0.03, 0.35, 0.036 +19740411, -0.27, 0.18, 0.22, 0.036 +19740415, -0.17, -0.02, 0.25, 0.036 +19740416, 1.56, -0.58, -0.29, 0.036 +19740417, 0.67, -0.17, -0.16, 0.036 +19740418, 0.35, -0.11, 0.04, 0.036 +19740419, -1.05, 0.40, 0.05, 0.036 +19740422, -0.41, -0.04, 0.09, 0.036 +19740423, -1.83, 0.05, 0.10, 0.036 +19740424, -1.73, 0.12, 0.31, 0.036 +19740425, -0.97, -0.30, 0.03, 0.036 +19740426, 0.57, -0.15, -0.09, 0.036 +19740429, -0.08, 0.20, -0.23, 0.036 +19740430, 0.26, -0.09, -0.32, 0.036 +19740501, 1.95, -0.90, -0.54, 0.034 +19740502, -0.10, 0.27, -0.12, 0.034 +19740503, -0.84, 0.19, 0.32, 0.034 +19740506, -0.16, -0.25, -0.13, 0.034 +19740507, 0.18, -0.31, -0.15, 0.034 +19740508, 0.01, -0.09, -0.34, 0.034 +19740509, 1.07, -0.76, -0.26, 0.034 +19740510, -1.63, 0.61, 0.36, 0.034 +19740513, -0.96, -0.19, 0.20, 0.034 +19740514, -0.03, -0.08, -0.21, 0.034 +19740515, -0.23, -0.09, -0.16, 0.034 +19740516, -0.66, 0.38, -0.01, 0.034 +19740517, -1.79, 0.19, 0.30, 0.034 +19740520, -0.48, -0.20, -0.23, 0.034 +19740521, -0.03, -0.58, -0.67, 0.034 +19740522, -1.00, -0.13, -0.18, 0.034 +19740523, 0.01, -0.82, -0.34, 0.034 +19740524, 1.52, -0.38, -0.33, 0.034 +19740528, -0.24, 0.03, 0.23, 0.034 +19740529, -1.62, 0.49, -0.02, 0.034 +19740530, 0.54, -0.72, 0.12, 0.034 +19740531, -0.14, 0.10, -0.01, 0.034 +19740603, 1.86, -0.76, -0.19, 0.030 +19740604, 1.22, -0.01, 0.06, 0.030 +19740605, 0.27, 0.16, 0.18, 0.030 +19740606, 1.70, -0.61, -0.68, 0.030 +19740607, 0.66, 0.38, 0.06, 0.030 +19740610, 0.55, -0.13, -0.30, 0.030 +19740611, -0.85, 0.47, -0.10, 0.030 +19740612, -0.38, -0.11, -0.19, 0.030 +19740613, 0.21, 0.21, -0.48, 0.030 +19740614, -1.03, 0.34, 0.28, 0.030 +19740617, -1.36, 0.38, 0.42, 0.030 +19740618, -0.69, 0.11, 0.05, 0.030 +19740619, -0.75, 0.12, 0.23, 0.030 +19740620, -0.83, 0.02, 0.17, 0.030 +19740621, -0.97, 0.08, 0.04, 0.030 +19740624, 0.07, -0.31, 0.06, 0.030 +19740625, 1.26, -0.79, -0.23, 0.030 +19740626, -1.57, 0.33, 0.91, 0.030 +19740627, -1.55, -0.01, 0.37, 0.030 +19740628, -0.58, -0.18, 0.00, 0.030 +19740701, -0.18, -0.39, 0.12, 0.032 +19740702, -2.13, 0.19, 0.71, 0.032 +19740703, -0.16, -0.56, 0.22, 0.032 +19740705, -0.57, 0.17, 0.25, 0.032 +19740708, -3.21, 0.02, 0.82, 0.032 +19740709, 0.24, -0.63, -0.29, 0.032 +19740710, -1.75, 0.51, 0.54, 0.032 +19740711, -0.14, -0.34, -0.33, 0.032 +19740712, 4.01, -1.01, -0.26, 0.032 +19740715, 0.79, 0.16, 0.17, 0.032 +19740716, -1.04, 0.50, 0.17, 0.032 +19740717, 1.08, -0.37, -0.14, 0.032 +19740718, 0.18, 0.54, 0.68, 0.032 +19740719, -0.11, 0.20, 0.16, 0.032 +19740722, 0.29, -0.09, -0.22, 0.032 +19740723, 1.03, -0.20, 0.32, 0.032 +19740724, 0.35, -0.36, 0.45, 0.032 +19740725, -1.20, 0.72, 0.61, 0.032 +19740726, -1.73, 0.92, 0.66, 0.032 +19740729, -1.80, 0.37, 0.24, 0.032 +19740730, -0.56, 0.13, -0.23, 0.032 +19740731, -1.51, 0.45, 0.72, 0.032 +19740801, -0.66, -0.13, 0.38, 0.027 +19740802, -0.25, -0.10, 0.23, 0.027 +19740805, 0.87, -0.46, -0.03, 0.027 +19740806, 1.55, -0.29, -0.68, 0.027 +19740807, 2.48, -0.91, -0.02, 0.027 +19740808, -1.21, 1.44, 0.53, 0.027 +19740809, -0.66, 0.67, 0.34, 0.027 +19740812, -1.17, 0.63, 0.31, 0.027 +19740813, -1.66, 0.23, 0.75, 0.027 +19740814, -2.19, 0.60, 0.34, 0.027 +19740815, -0.58, -0.26, 0.26, 0.027 +19740816, -0.85, 0.27, 0.59, 0.027 +19740819, -1.44, -0.05, 0.45, 0.027 +19740820, 0.39, -0.38, -0.04, 0.027 +19740821, -1.78, 0.46, 0.90, 0.027 +19740822, -1.11, -0.51, 0.38, 0.027 +19740823, -1.62, 0.20, 0.69, 0.027 +19740826, 0.70, -0.87, -0.97, 0.027 +19740827, -1.56, 0.57, -0.44, 0.027 +19740828, -0.33, -0.33, -0.70, 0.027 +19740829, -1.26, -0.26, -0.66, 0.027 +19740830, 2.79, -1.34, 0.06, 0.027 +19740903, -2.18, 0.59, 0.80, 0.040 +19740904, -2.69, -0.08, 0.61, 0.040 +19740905, 2.90, -1.78, -0.87, 0.040 +19740906, 0.75, -0.09, 0.56, 0.040 +19740909, -2.28, 0.53, 0.61, 0.040 +19740910, -0.79, -0.44, 0.37, 0.040 +19740911, -0.89, 0.00, -0.11, 0.040 +19740912, -2.56, -0.22, 0.76, 0.040 +19740913, -2.24, 0.35, 0.29, 0.040 +19740916, 1.40, -1.58, -0.95, 0.040 +19740917, 1.64, -0.32, 0.48, 0.040 +19740918, 0.36, -0.48, -0.37, 0.040 +19740919, 3.34, -0.66, -0.29, 0.040 +19740920, 0.31, 0.51, 0.33, 0.040 +19740923, -0.79, 0.54, 0.65, 0.040 +19740924, -1.84, 0.67, 0.62, 0.040 +19740925, -0.41, 0.82, 0.38, 0.040 +19740926, -1.64, 0.47, 0.63, 0.040 +19740927, -2.11, 0.91, 0.88, 0.040 +19740930, -2.37, 0.39, 0.53, 0.040 +19741001, -0.23, -0.29, -0.02, 0.022 +19741002, 0.06, 0.42, 0.16, 0.022 +19741003, -1.67, 0.71, 0.33, 0.022 +19741004, 0.07, -0.24, 0.29, 0.022 +19741007, 3.77, -1.68, -0.08, 0.022 +19741008, -0.12, 0.85, 0.01, 0.022 +19741009, 4.23, -2.05, -1.40, 0.022 +19741010, 2.96, 0.08, -1.20, 0.022 +19741011, 2.01, -0.19, -0.82, 0.022 +19741014, 2.28, -0.01, -0.76, 0.022 +19741015, -1.63, 0.75, -0.09, 0.022 +19741016, -1.42, 0.79, -0.09, 0.022 +19741017, 1.08, -0.27, -0.75, 0.022 +19741018, 1.38, -0.46, -0.92, 0.022 +19741021, 1.69, -0.63, -1.28, 0.022 +19741022, -0.30, 0.73, -0.28, 0.022 +19741023, -2.52, 1.29, 0.33, 0.022 +19741024, -1.20, -0.34, 0.10, 0.022 +19741025, -0.05, 0.00, 0.00, 0.022 +19741028, -0.09, -0.20, -0.35, 0.022 +19741029, 3.42, -2.25, -1.12, 0.022 +19741030, 1.94, -0.71, -1.00, 0.022 +19741031, -0.32, 0.37, -0.07, 0.022 +19741101, -0.03, 0.02, 0.06, 0.027 +19741104, -0.95, 0.20, -0.10, 0.027 +19741105, 2.56, -0.90, -1.44, 0.027 +19741106, -0.12, 0.13, 0.22, 0.027 +19741107, 0.74, -0.23, -0.14, 0.027 +19741108, -0.21, 0.27, 0.47, 0.027 +19741111, 0.32, 0.22, 0.45, 0.027 +19741112, -1.95, 0.45, 0.53, 0.027 +19741113, -0.49, -0.11, 0.01, 0.027 +19741114, -0.29, -0.22, 0.60, 0.027 +19741115, -1.44, 0.61, 0.50, 0.027 +19741118, -3.57, 0.65, 0.82, 0.027 +19741119, -1.65, -0.20, 0.29, 0.027 +19741120, -0.45, -0.27, 0.13, 0.027 +19741121, 0.49, -0.33, -0.87, 0.027 +19741122, 1.08, -0.55, -0.16, 0.027 +19741125, -0.10, -0.20, -0.54, 0.027 +19741126, 0.95, -0.44, -0.69, 0.027 +19741127, 0.60, -0.19, -0.15, 0.027 +19741129, 0.07, -0.15, -0.27, 0.027 +19741202, -2.51, 0.57, 0.58, 0.033 +19741203, -1.47, -0.05, 0.03, 0.033 +19741204, 0.20, -0.81, -0.06, 0.033 +19741205, -1.94, 0.07, 0.72, 0.033 +19741206, -1.75, -0.01, 0.03, 0.033 +19741209, 0.53, -1.49, -0.68, 0.033 +19741210, 2.27, -1.53, -0.53, 0.033 +19741211, 0.64, -0.54, 0.20, 0.033 +19741212, -0.41, -0.22, 0.12, 0.033 +19741213, -0.58, 0.08, 0.09, 0.033 +19741216, -0.92, -0.01, 0.38, 0.033 +19741217, 1.32, -1.35, -0.88, 0.033 +19741218, 0.46, -0.03, -0.05, 0.033 +19741219, -0.37, 0.15, 0.08, 0.033 +19741220, -1.15, 0.28, 0.46, 0.033 +19741223, -1.47, 0.22, 0.18, 0.033 +19741224, 1.30, -0.70, -0.18, 0.033 +19741226, 0.87, -0.14, -0.06, 0.033 +19741227, -0.42, 0.31, 0.01, 0.033 +19741230, -0.08, -0.36, -0.40, 0.033 +19741231, 2.18, 0.53, -0.06, 0.033 +19750102, 2.48, 0.30, 1.35, 0.026 +19750103, 0.80, 0.44, 1.43, 0.026 +19750106, 0.78, 0.69, 1.57, 0.026 +19750107, 0.00, 0.87, 0.69, 0.026 +19750108, -1.16, 1.12, 0.78, 0.026 +19750109, 1.60, -0.50, -0.04, 0.026 +19750110, 2.12, 0.51, 0.25, 0.026 +19750113, -0.35, 1.23, 0.99, 0.026 +19750114, -0.78, 0.77, 0.36, 0.026 +19750115, 0.68, -0.01, -0.54, 0.026 +19750116, 0.13, 0.75, -0.33, 0.026 +19750117, -1.24, 0.83, 0.29, 0.026 +19750120, 0.00, -0.32, 0.13, 0.026 +19750121, -0.43, 0.23, 0.88, 0.026 +19750122, 1.08, -0.63, -0.32, 0.026 +19750123, 0.51, 0.54, -0.10, 0.026 +19750124, 1.25, 0.06, 0.57, 0.026 +19750127, 3.35, 0.01, -0.32, 0.026 +19750128, 0.46, 0.65, -0.52, 0.026 +19750129, 1.55, 0.17, -0.27, 0.026 +19750130, -1.13, 1.15, 0.12, 0.026 +19750131, 0.98, 0.18, -0.01, 0.026 +19750203, 1.24, 0.41, 0.12, 0.023 +19750204, -0.32, 0.40, -1.03, 0.023 +19750205, 1.63, -0.33, -0.62, 0.023 +19750206, -0.13, 0.73, -0.08, 0.023 +19750207, -0.03, -0.15, -0.21, 0.023 +19750210, -0.30, 0.14, -0.26, 0.023 +19750211, 0.17, -0.26, -0.55, 0.023 +19750212, 1.57, -0.53, -0.50, 0.023 +19750213, 1.32, -0.04, -0.82, 0.023 +19750214, 0.51, -0.10, -0.50, 0.023 +19750218, -0.68, 0.10, 0.67, 0.023 +19750219, 0.47, -0.36, -0.31, 0.023 +19750220, 0.93, -0.34, -0.45, 0.023 +19750221, 0.44, 0.04, -0.12, 0.023 +19750224, -1.28, 0.69, 0.09, 0.023 +19750225, -2.25, 0.18, 0.16, 0.023 +19750226, 0.85, -0.34, -0.02, 0.023 +19750227, 0.50, 0.33, -0.48, 0.023 +19750228, 0.86, -0.46, 0.53, 0.023 +19750303, 1.71, -0.53, 0.30, 0.021 +19750304, 0.69, -0.14, 0.05, 0.021 +19750305, -0.75, 0.20, 0.39, 0.021 +19750306, 0.88, -0.09, 0.35, 0.021 +19750307, 0.75, 0.63, 0.17, 0.021 +19750310, 0.74, 0.43, 0.57, 0.021 +19750311, -0.53, 0.83, 0.63, 0.021 +19750312, -0.90, 0.21, 0.38, 0.021 +19750313, 0.26, 0.75, -0.69, 0.021 +19750314, 1.36, 0.66, -0.15, 0.021 +19750317, 1.36, 0.13, 0.46, 0.021 +19750318, -0.90, -0.25, 0.23, 0.021 +19750319, -0.89, 0.31, -0.13, 0.021 +19750320, -0.68, 0.66, -0.10, 0.021 +19750321, -0.21, -0.06, -0.02, 0.021 +19750324, -2.30, -0.11, 0.11, 0.021 +19750325, 0.58, -0.25, -0.49, 0.021 +19750326, 1.76, -0.23, 0.21, 0.021 +19750327, 0.34, 0.07, -0.03, 0.021 +19750331, -0.56, 0.37, 0.13, 0.021 +19750401, -0.81, 0.09, -0.32, 0.020 +19750402, -0.23, 0.25, -0.11, 0.020 +19750403, -1.03, 0.64, 0.21, 0.020 +19750404, -0.59, 0.34, 0.02, 0.020 +19750407, -0.68, -0.06, -0.05, 0.020 +19750408, 0.58, -0.70, -0.22, 0.020 +19750409, 2.00, -0.62, -0.51, 0.020 +19750410, 1.02, -0.45, 0.23, 0.020 +19750411, 0.58, 0.34, 0.03, 0.020 +19750414, 1.55, -0.21, -0.42, 0.020 +19750415, 0.66, -0.33, 0.12, 0.020 +19750416, 0.39, -0.07, -0.13, 0.020 +19750417, 0.73, -0.10, 0.14, 0.020 +19750418, -0.90, 0.89, 0.13, 0.020 +19750421, 1.08, 0.06, 0.19, 0.020 +19750422, -0.27, 0.07, 0.23, 0.020 +19750423, -1.04, 0.19, -0.16, 0.020 +19750424, -0.02, 0.05, 0.29, 0.020 +19750425, 0.70, 0.15, 0.07, 0.020 +19750428, -0.38, 0.08, 0.19, 0.020 +19750429, -0.77, -0.18, -0.32, 0.020 +19750430, 1.65, -1.00, -0.68, 0.020 +19750501, 0.85, -0.10, -0.53, 0.021 +19750502, 1.24, -0.57, -0.34, 0.021 +19750505, 0.96, -0.14, -0.26, 0.021 +19750506, -1.27, 0.72, -0.50, 0.021 +19750507, 0.47, 0.40, -0.52, 0.021 +19750508, 0.73, 0.24, 0.15, 0.021 +19750509, 1.15, 0.04, 0.20, 0.021 +19750512, 0.05, 0.20, -0.19, 0.021 +19750513, 0.81, -0.49, -0.09, 0.021 +19750514, 0.74, -0.35, 0.19, 0.021 +19750515, -0.76, 0.75, -0.16, 0.021 +19750516, -0.94, 0.67, -0.03, 0.021 +19750519, 0.08, 0.03, 0.11, 0.021 +19750520, -0.41, 0.53, -0.19, 0.021 +19750521, -1.13, 0.33, -0.30, 0.021 +19750522, 0.39, 0.36, -0.84, 0.021 +19750523, 1.29, -0.07, -0.29, 0.021 +19750527, -0.10, 0.36, 0.04, 0.021 +19750528, -0.66, 0.53, -0.24, 0.021 +19750529, 0.01, 0.15, 0.10, 0.021 +19750530, 1.62, 0.05, -0.06, 0.021 +19750602, 1.42, -0.22, 0.15, 0.019 +19750603, 0.33, -0.06, -0.16, 0.019 +19750604, -0.19, 0.56, -0.19, 0.019 +19750605, 0.11, 0.16, -0.06, 0.019 +19750606, -0.12, 0.18, -0.13, 0.019 +19750609, -1.24, 0.21, 0.52, 0.019 +19750610, -0.84, 0.06, -0.13, 0.019 +19750611, 0.12, -0.16, 0.15, 0.019 +19750612, -0.51, -0.20, 0.59, 0.019 +19750613, 0.49, -0.12, -0.10, 0.019 +19750616, 0.96, -0.69, 0.08, 0.019 +19750617, -0.84, 0.13, 0.21, 0.019 +19750618, -0.20, -0.15, 0.15, 0.019 +19750619, 1.78, -0.44, -0.13, 0.019 +19750620, 0.68, 0.15, 0.05, 0.019 +19750623, 1.04, 0.06, -0.17, 0.019 +19750624, 0.64, -0.03, -0.14, 0.019 +19750625, 0.42, 0.26, -0.04, 0.019 +19750626, 0.22, 0.10, 0.24, 0.019 +19750627, 0.02, 0.34, 0.19, 0.019 +19750630, 0.47, 0.55, 0.17, 0.019 +19750701, -0.41, 0.30, 0.30, 0.022 +19750702, -0.79, 0.20, -0.12, 0.022 +19750703, 0.35, 0.53, -0.10, 0.022 +19750707, -0.83, 0.35, 0.08, 0.022 +19750708, -0.18, -0.22, 0.38, 0.022 +19750709, 1.53, 0.03, 0.27, 0.022 +19750710, 0.06, 0.19, 0.69, 0.022 +19750711, -0.02, 0.34, 0.60, 0.022 +19750714, 0.55, 0.48, 0.17, 0.022 +19750715, 0.45, 0.26, 0.85, 0.022 +19750716, -0.99, 0.37, -0.04, 0.022 +19750717, -0.90, 0.51, 0.23, 0.022 +19750718, -0.34, 0.49, -0.03, 0.022 +19750721, -0.73, 0.42, -0.19, 0.022 +19750722, -1.14, -0.05, -0.29, 0.022 +19750723, -1.46, -0.24, -0.18, 0.022 +19750724, -0.35, -0.67, -0.51, 0.022 +19750725, -0.82, 0.18, 0.21, 0.022 +19750728, -0.74, -0.23, -0.37, 0.022 +19750729, -0.65, -0.23, -0.19, 0.022 +19750730, 0.70, -0.41, -0.01, 0.022 +19750731, -0.01, 0.21, 0.07, 0.022 +19750801, -0.98, 0.00, 0.24, 0.023 +19750804, -0.98, 0.04, -0.46, 0.023 +19750805, -1.13, -0.28, -0.33, 0.023 +19750806, -0.01, -0.42, -0.45, 0.023 +19750807, -0.05, -0.35, 0.26, 0.023 +19750808, -0.35, -0.42, 0.04, 0.023 +19750811, 0.47, -0.66, -0.83, 0.023 +19750812, 0.65, -0.05, 0.19, 0.023 +19750813, -1.22, 0.18, 0.53, 0.023 +19750814, -0.58, 0.04, -0.23, 0.023 +19750815, 0.74, -0.36, 0.10, 0.023 +19750818, -0.22, 0.05, 0.11, 0.023 +19750819, -1.57, 0.10, 0.47, 0.023 +19750820, -2.03, 0.22, -0.26, 0.023 +19750821, -0.12, -0.53, -0.38, 0.023 +19750822, 1.39, -0.45, -0.06, 0.023 +19750825, 0.95, -0.32, 0.02, 0.023 +19750826, -1.17, 0.42, -0.07, 0.023 +19750827, 0.48, -0.14, -0.32, 0.023 +19750828, 2.26, -0.76, 0.38, 0.023 +19750829, 0.72, 0.38, 0.20, 0.023 +19750902, -1.56, 0.47, 0.22, 0.025 +19750903, 0.46, -0.32, -0.23, 0.025 +19750904, 0.16, -0.02, 0.23, 0.025 +19750905, -0.64, 0.27, 0.16, 0.025 +19750908, 0.15, -0.29, 0.13, 0.025 +19750909, -1.36, 0.38, 0.55, 0.025 +19750910, -1.17, -0.07, -0.08, 0.025 +19750911, -0.39, 0.05, 0.00, 0.025 +19750912, -0.24, 0.29, 0.10, 0.025 +19750915, -0.55, -0.01, -0.13, 0.025 +19750916, -0.95, 0.03, -0.05, 0.025 +19750917, 0.19, -0.37, -0.16, 0.025 +19750918, 1.83, -1.01, 0.08, 0.025 +19750919, 2.22, -0.40, -0.20, 0.025 +19750922, -0.84, 0.48, 0.07, 0.025 +19750923, -0.15, -0.01, -0.34, 0.025 +19750924, 0.95, -0.15, 0.11, 0.025 +19750925, -0.18, 0.18, -0.38, 0.025 +19750926, 0.50, -0.27, -0.30, 0.025 +19750929, -1.24, 0.32, 0.53, 0.025 +19750930, -1.42, 0.22, -0.05, 0.025 +19751001, -1.16, 0.09, -0.07, 0.024 +19751002, 0.89, -0.69, -0.32, 0.024 +19751003, 2.37, -0.99, -0.32, 0.024 +19751006, 1.02, -0.42, -0.29, 0.024 +19751007, -0.15, 0.03, -0.34, 0.024 +19751008, 1.21, -0.41, -0.36, 0.024 +19751009, 0.45, -0.22, -0.03, 0.024 +19751010, -0.10, 0.00, 0.19, 0.024 +19751013, 1.34, -0.73, -0.05, 0.024 +19751014, -0.04, 0.28, -0.05, 0.024 +19751015, -0.07, -0.12, -0.02, 0.024 +19751016, 0.17, -0.01, 0.25, 0.024 +19751017, -0.60, 0.10, 0.05, 0.024 +19751020, 0.94, -0.80, 0.10, 0.024 +19751021, 0.78, -0.42, 0.41, 0.024 +19751022, 0.18, -0.02, -0.08, 0.024 +19751023, 0.48, -0.24, 0.52, 0.024 +19751024, -1.33, 0.82, 0.29, 0.024 +19751027, -0.11, -0.22, 0.25, 0.024 +19751028, 0.77, -0.18, -0.11, 0.024 +19751029, -1.35, 0.30, 0.05, 0.024 +19751030, -0.19, 0.00, -0.02, 0.024 +19751031, -0.26, -0.08, 0.26, 0.024 +19751103, -0.94, 0.46, -0.01, 0.022 +19751104, 0.41, -0.46, 0.02, 0.022 +19751105, 0.83, -0.21, 0.38, 0.022 +19751106, 0.43, -0.10, -0.03, 0.022 +19751107, -0.16, 0.25, 0.03, 0.022 +19751110, 0.00, -0.17, -0.30, 0.022 +19751111, 0.60, -0.08, 0.07, 0.022 +19751112, 1.47, -0.30, 0.11, 0.022 +19751113, -0.05, 0.19, 0.01, 0.022 +19751114, -0.12, 0.08, 0.18, 0.022 +19751117, 0.49, -0.43, 0.31, 0.022 +19751118, -0.52, -0.03, 0.36, 0.022 +19751119, -1.10, 0.26, 0.15, 0.022 +19751120, -0.41, 0.15, 0.22, 0.022 +19751121, -0.05, 0.05, 0.01, 0.022 +19751124, 0.28, -0.25, 0.08, 0.022 +19751125, 0.92, -0.51, -0.07, 0.022 +19751126, 0.30, 0.07, 0.10, 0.022 +19751128, 0.28, -0.15, 0.29, 0.022 +19751201, -0.59, 0.07, 0.14, 0.022 +19751202, -1.55, 0.30, -0.38, 0.022 +19751203, -2.07, 0.16, -0.34, 0.022 +19751204, 0.13, -0.46, -0.01, 0.022 +19751205, -1.08, 0.55, 0.55, 0.022 +19751208, 0.14, -0.49, -0.30, 0.022 +19751209, 0.09, -0.68, 0.01, 0.022 +19751210, 0.90, -0.49, -0.01, 0.022 +19751211, -0.25, 0.23, 0.16, 0.022 +19751212, -0.08, -0.06, 0.04, 0.022 +19751215, 0.19, -0.42, -0.16, 0.022 +19751216, 0.94, -0.33, -0.16, 0.022 +19751217, 0.29, -0.01, 0.06, 0.022 +19751218, 0.35, 0.06, 0.34, 0.022 +19751219, -0.65, 0.56, 0.19, 0.022 +19751222, -0.73, 0.14, -0.07, 0.022 +19751223, 0.58, -0.56, 0.31, 0.022 +19751224, 0.84, -0.16, 0.42, 0.022 +19751226, 0.90, -0.24, 0.34, 0.022 +19751229, -0.16, 0.08, -0.01, 0.022 +19751230, -0.38, 0.12, 0.08, 0.022 +19751231, 0.62, 0.85, 0.62, 0.022 +19760102, 0.79, -0.10, 1.22, 0.022 +19760105, 1.78, -0.26, 0.94, 0.022 +19760106, 1.20, 0.44, 0.27, 0.022 +19760107, 0.52, 0.08, -0.17, 0.022 +19760108, 0.68, -0.14, 0.18, 0.022 +19760109, 0.43, 0.38, 0.19, 0.022 +19760112, 1.30, -0.11, 0.46, 0.022 +19760113, -0.72, 0.27, -0.04, 0.022 +19760114, 1.58, -0.05, 0.76, 0.022 +19760115, -0.45, 0.43, 0.39, 0.022 +19760116, 0.44, 0.21, 0.31, 0.022 +19760119, 1.21, 0.00, 1.15, 0.022 +19760120, 0.49, 0.12, 0.24, 0.022 +19760121, -0.49, 0.56, 0.32, 0.022 +19760122, -0.19, 0.98, 0.11, 0.022 +19760123, 1.15, 0.25, 0.43, 0.022 +19760126, 0.41, 0.47, 0.23, 0.022 +19760127, -0.52, 0.51, 0.19, 0.022 +19760128, -0.46, 0.02, -0.21, 0.022 +19760129, 1.67, 0.08, 0.12, 0.022 +19760130, 0.73, 0.04, 0.29, 0.022 +19760202, 0.14, 0.30, 0.24, 0.018 +19760203, 0.42, 0.15, 0.40, 0.018 +19760204, 0.87, 0.60, 0.20, 0.018 +19760205, -1.31, 0.61, -0.19, 0.018 +19760206, -0.85, 0.35, -0.14, 0.018 +19760209, 0.27, 0.34, 0.95, 0.018 +19760210, 0.79, -0.02, 0.58, 0.018 +19760211, 0.43, 0.45, 0.23, 0.018 +19760212, -0.36, 0.82, 0.22, 0.018 +19760213, -0.41, 0.74, 0.10, 0.018 +19760217, -0.52, 0.75, 0.67, 0.018 +19760218, 0.79, 0.43, 0.66, 0.018 +19760219, 1.59, 0.34, 0.73, 0.018 +19760220, 0.67, 0.20, 0.22, 0.018 +19760223, -0.29, 0.35, 0.16, 0.018 +19760224, 0.49, 0.14, 0.78, 0.018 +19760225, -0.16, -0.09, 0.48, 0.018 +19760226, -1.48, 0.29, -0.59, 0.018 +19760227, -0.68, -0.17, -0.24, 0.018 +19760301, 0.32, -0.11, 0.47, 0.017 +19760302, 0.58, 0.25, 0.66, 0.017 +19760303, -0.56, 0.29, 0.16, 0.017 +19760304, -0.97, 0.30, -0.40, 0.017 +19760305, 0.12, -0.06, 0.29, 0.017 +19760308, 1.01, -0.11, 0.46, 0.017 +19760309, 0.27, -0.14, 0.04, 0.017 +19760310, 0.35, -0.21, 0.10, 0.017 +19760311, 0.83, -0.34, -0.34, 0.017 +19760312, -0.87, 0.10, -0.42, 0.017 +19760315, -1.12, 0.05, -0.39, 0.017 +19760316, 0.98, -0.49, 0.39, 0.017 +19760317, -0.03, 0.38, 0.19, 0.017 +19760318, -0.41, 0.04, -0.41, 0.017 +19760319, 0.09, -0.05, -0.20, 0.017 +19760322, 0.06, -0.10, -0.11, 0.017 +19760323, 1.30, -0.73, -0.25, 0.017 +19760324, 1.03, -0.20, -0.33, 0.017 +19760325, -0.55, 0.00, 0.02, 0.017 +19760326, 0.10, 0.15, 0.23, 0.017 +19760329, -0.40, 0.03, 0.05, 0.017 +19760330, -0.42, -0.14, -0.18, 0.017 +19760331, 0.62, -0.10, -0.02, 0.017 +19760401, -0.43, 0.43, -0.23, 0.020 +19760402, 0.03, 0.16, -0.27, 0.020 +19760405, 1.15, -0.24, 0.33, 0.020 +19760406, -0.09, 0.11, 0.24, 0.020 +19760407, -1.17, 0.10, -0.52, 0.020 +19760408, -0.98, -0.18, -0.48, 0.020 +19760409, -1.05, 0.02, -0.43, 0.020 +19760412, -0.19, -0.39, 0.17, 0.020 +19760413, 0.65, -0.62, -0.12, 0.020 +19760414, -0.61, 0.32, 0.04, 0.020 +19760415, 0.33, -0.24, 0.29, 0.020 +19760419, 0.67, -0.02, 0.31, 0.020 +19760420, 1.46, -0.02, 0.36, 0.020 +19760421, 0.36, 0.08, 0.20, 0.020 +19760422, -0.20, 0.22, 0.17, 0.020 +19760423, -0.66, 0.27, -0.16, 0.020 +19760426, 0.07, -0.08, 0.06, 0.020 +19760427, -0.52, 0.04, -0.27, 0.020 +19760428, 0.17, -0.26, -0.17, 0.020 +19760429, -0.03, 0.09, 0.25, 0.020 +19760430, -0.40, 0.20, 0.18, 0.020 +19760503, -0.83, -0.05, -0.36, 0.019 +19760504, 0.56, -0.37, 0.08, 0.019 +19760505, -0.45, 0.32, -0.21, 0.019 +19760506, 0.29, -0.17, -0.25, 0.019 +19760507, 0.76, -0.09, -0.03, 0.019 +19760510, 1.22, -0.53, 0.51, 0.019 +19760511, -0.10, 0.21, 0.30, 0.019 +19760512, -0.17, 0.15, -0.08, 0.019 +19760513, -0.56, 0.21, 0.18, 0.019 +19760514, -0.75, 0.09, 0.15, 0.019 +19760517, -0.28, -0.08, -0.19, 0.019 +19760518, 0.11, -0.20, 0.08, 0.019 +19760519, -0.05, -0.13, 0.21, 0.019 +19760520, 0.63, -0.18, -0.27, 0.019 +19760521, -0.54, 0.19, 0.11, 0.019 +19760524, -1.66, 0.15, -0.36, 0.019 +19760525, -0.09, -0.32, -0.73, 0.019 +19760526, -0.06, 0.12, -0.21, 0.019 +19760527, -0.11, -0.41, -0.42, 0.019 +19760528, 0.73, -0.18, 0.20, 0.019 +19760601, -0.28, -0.07, 0.17, 0.020 +19760602, 0.29, -0.19, -0.06, 0.020 +19760603, -0.05, -0.10, 0.09, 0.020 +19760604, -0.88, 0.13, -0.21, 0.020 +19760607, -0.52, -0.44, -0.23, 0.020 +19760608, 0.14, -0.20, -0.32, 0.020 +19760609, -0.06, 0.07, -0.06, 0.020 +19760610, 0.77, -0.20, -0.05, 0.020 +19760611, 1.17, -0.31, 0.13, 0.020 +19760614, 0.99, -0.16, 0.25, 0.020 +19760615, -0.42, 0.34, 0.10, 0.020 +19760616, 0.55, -0.13, 0.12, 0.020 +19760617, 1.43, -0.42, 0.13, 0.020 +19760618, 0.19, 0.12, 0.05, 0.020 +19760621, 0.39, -0.06, -0.14, 0.020 +19760622, -0.70, 0.21, -0.07, 0.020 +19760623, -0.22, -0.05, 0.02, 0.020 +19760624, 0.59, -0.07, 0.23, 0.020 +19760625, 0.01, 0.29, 0.11, 0.020 +19760628, -0.23, 0.15, 0.02, 0.020 +19760629, 0.38, -0.19, 0.14, 0.020 +19760630, 0.46, -0.04, 0.26, 0.020 +19760701, -0.67, 0.33, 0.10, 0.022 +19760702, 0.47, 0.02, -0.06, 0.022 +19760706, -0.46, 0.45, -0.05, 0.022 +19760707, 0.25, -0.09, 0.29, 0.022 +19760708, 0.15, 0.13, 0.19, 0.022 +19760709, 0.87, -0.05, 0.00, 0.022 +19760712, 0.76, -0.18, 0.09, 0.022 +19760713, -0.21, 0.06, 0.21, 0.022 +19760714, 0.25, 0.18, -0.06, 0.022 +19760715, -0.60, 0.48, -0.04, 0.022 +19760716, -0.48, 0.27, -0.19, 0.022 +19760719, -0.32, -0.11, 0.36, 0.022 +19760720, -0.63, -0.13, -0.12, 0.022 +19760721, 0.06, -0.07, 0.17, 0.022 +19760722, 0.12, 0.12, -0.35, 0.022 +19760723, 0.12, -0.10, 0.17, 0.022 +19760726, -0.08, -0.21, 0.13, 0.022 +19760727, -0.50, -0.05, 0.05, 0.022 +19760728, -0.40, -0.22, 0.21, 0.022 +19760729, -0.16, -0.15, 0.39, 0.022 +19760730, 0.40, -0.40, 0.19, 0.022 +19760802, -0.15, -0.08, 0.24, 0.019 +19760803, 0.89, -0.57, 0.15, 0.019 +19760804, 0.22, -0.05, 0.14, 0.019 +19760805, -0.43, 0.19, 0.05, 0.019 +19760806, -0.03, -0.02, 0.08, 0.019 +19760809, -0.24, -0.08, 0.01, 0.019 +19760810, 0.77, -0.40, 0.01, 0.019 +19760811, -0.25, 0.05, 0.09, 0.019 +19760812, 0.07, -0.15, -0.21, 0.019 +19760813, 0.05, 0.00, 0.09, 0.019 +19760816, 0.16, -0.14, 0.13, 0.019 +19760817, 0.30, -0.16, -0.14, 0.019 +19760818, -0.20, -0.09, 0.07, 0.019 +19760819, -1.17, -0.05, 0.10, 0.019 +19760820, -0.90, 0.26, -0.01, 0.019 +19760823, -0.43, -0.25, -0.15, 0.019 +19760824, -0.62, 0.25, -0.02, 0.019 +19760825, 0.75, -0.60, 0.02, 0.019 +19760826, -0.63, 0.37, 0.25, 0.019 +19760827, 0.09, -0.04, -0.10, 0.019 +19760830, 0.53, -0.33, -0.03, 0.019 +19760831, 0.69, -0.22, 0.04, 0.019 +19760901, 1.02, -0.19, -0.35, 0.021 +19760902, -0.04, 0.18, -0.15, 0.021 +19760903, 0.37, -0.02, 0.03, 0.021 +19760907, 0.61, -0.27, 0.07, 0.021 +19760908, -0.11, 0.20, -0.05, 0.021 +19760909, -0.44, 0.19, 0.01, 0.021 +19760910, 0.24, 0.03, -0.17, 0.021 +19760913, -0.29, 0.10, 0.05, 0.021 +19760914, -0.30, 0.06, -0.08, 0.021 +19760915, 0.20, -0.12, -0.21, 0.021 +19760916, 0.87, -0.34, -0.21, 0.021 +19760917, 0.87, -0.22, 0.18, 0.021 +19760920, 0.10, -0.07, 0.43, 0.021 +19760921, 1.23, -0.57, 0.29, 0.021 +19760922, -0.29, 0.46, 0.08, 0.021 +19760923, -0.46, 0.26, -0.11, 0.021 +19760924, -0.10, 0.22, -0.03, 0.021 +19760927, 0.36, -0.12, -0.01, 0.021 +19760928, -1.12, 0.22, -0.03, 0.021 +19760929, -0.52, 0.00, 0.05, 0.021 +19760930, -0.13, 0.05, -0.14, 0.021 +19761001, -0.92, 0.30, 0.18, 0.019 +19761004, -0.15, -0.01, 0.18, 0.019 +19761005, -0.73, -0.06, -0.01, 0.019 +19761006, -0.43, -0.25, -0.10, 0.019 +19761007, 0.58, -0.02, -0.31, 0.019 +19761008, -0.84, 0.41, 0.09, 0.019 +19761011, -0.93, 0.04, -0.41, 0.019 +19761012, -0.78, 0.06, 0.29, 0.019 +19761013, 1.10, -0.82, 0.01, 0.019 +19761014, -1.16, 0.67, 0.03, 0.019 +19761015, 0.10, 0.30, -0.03, 0.019 +19761018, 0.55, -0.24, 0.19, 0.019 +19761019, -0.05, 0.12, -0.05, 0.019 +19761020, 0.23, -0.07, 0.23, 0.019 +19761021, -0.82, 0.42, 0.26, 0.019 +19761022, -0.75, 0.24, 0.03, 0.019 +19761025, 0.09, -0.04, -0.11, 0.019 +19761026, 0.86, -0.41, -0.07, 0.019 +19761027, 0.56, -0.19, -0.26, 0.019 +19761028, -0.10, 0.11, -0.08, 0.019 +19761029, 1.19, -0.36, -0.19, 0.019 +19761101, 0.23, -0.04, 0.18, 0.020 +19761103, -1.16, 0.12, 0.34, 0.020 +19761104, 0.77, 0.35, 0.50, 0.020 +19761105, -1.20, 0.79, 0.41, 0.020 +19761108, -1.13, 0.41, -0.13, 0.020 +19761109, -0.34, -0.22, 0.19, 0.020 +19761110, -0.47, 0.36, -0.18, 0.020 +19761111, 0.71, -0.45, -0.22, 0.020 +19761112, -0.32, 0.25, 0.11, 0.020 +19761115, 0.51, -0.34, -0.21, 0.020 +19761116, 0.26, 0.19, -0.04, 0.020 +19761117, 0.63, -0.01, -0.09, 0.020 +19761118, 1.24, -0.35, 0.18, 0.020 +19761119, 0.14, 0.18, 0.30, 0.020 +19761122, 0.63, -0.17, 0.07, 0.020 +19761123, -0.41, 0.31, 0.16, 0.020 +19761124, 0.53, 0.19, -0.09, 0.020 +19761126, 0.70, 0.14, -0.35, 0.020 +19761129, -0.57, 0.44, 0.03, 0.020 +19761130, -0.32, 0.12, 0.38, 0.020 +19761201, 0.43, 0.00, 0.07, 0.018 +19761202, -0.29, 0.38, 0.42, 0.018 +19761203, 0.55, -0.10, 0.04, 0.018 +19761206, 0.78, -0.02, 0.27, 0.018 +19761207, 0.02, 0.27, 0.13, 0.018 +19761208, 0.53, 0.16, -0.20, 0.018 +19761209, 0.57, 0.27, 0.15, 0.018 +19761210, 0.22, 0.38, 0.21, 0.018 +19761213, 0.07, 0.30, 0.23, 0.018 +19761214, 0.40, -0.29, 0.40, 0.018 +19761215, 0.06, 0.03, 0.43, 0.018 +19761216, -0.28, 0.13, 0.42, 0.018 +19761217, -0.43, 0.31, 0.24, 0.018 +19761220, -0.55, 0.10, 0.07, 0.018 +19761221, 0.45, -0.23, -0.24, 0.018 +19761222, 0.46, 0.03, -0.04, 0.018 +19761223, 0.05, 0.19, -0.48, 0.018 +19761227, 1.07, -0.31, -0.20, 0.018 +19761228, 0.62, -0.04, -0.12, 0.018 +19761229, -0.32, 0.41, 0.09, 0.018 +19761230, 0.53, 0.25, 0.00, 0.018 +19761231, 0.59, 0.62, 0.17, 0.018 +19770103, -0.32, 0.56, 0.67, 0.017 +19770104, -0.98, 0.82, 0.26, 0.017 +19770105, -0.74, 0.38, 0.07, 0.017 +19770106, 0.18, 0.43, 0.26, 0.017 +19770107, 0.09, 0.51, 0.06, 0.017 +19770110, 0.12, 0.02, 0.21, 0.017 +19770111, -0.93, 0.08, 0.29, 0.017 +19770112, -0.68, 0.17, 0.18, 0.017 +19770113, 0.82, 0.21, -0.17, 0.017 +19770114, -0.02, 0.47, 0.19, 0.017 +19770117, -0.20, 0.27, 0.12, 0.017 +19770118, -0.29, 0.14, 0.25, 0.017 +19770119, 0.50, 0.27, 0.15, 0.017 +19770120, -0.74, 0.35, 0.48, 0.017 +19770121, 0.36, 0.10, 0.24, 0.017 +19770124, 0.01, -0.04, 0.48, 0.017 +19770125, -0.04, 0.15, 0.56, 0.017 +19770126, -0.65, 0.23, 0.38, 0.017 +19770127, -0.58, 0.13, 0.11, 0.017 +19770128, 0.03, -0.06, -0.24, 0.017 +19770131, 0.00, -0.43, -0.18, 0.017 +19770201, 0.50, 0.11, -0.12, 0.018 +19770202, -0.11, 0.31, 0.04, 0.018 +19770203, -0.39, 0.23, 0.09, 0.018 +19770204, 0.17, 0.29, 0.06, 0.018 +19770207, 0.06, 0.12, -0.13, 0.018 +19770208, -0.25, 0.25, -0.03, 0.018 +19770209, -0.85, 0.35, -0.07, 0.018 +19770210, 0.10, 0.17, -0.18, 0.018 +19770211, -0.53, 0.17, 0.04, 0.018 +19770214, 0.43, -0.40, -0.16, 0.018 +19770215, 0.28, -0.17, 0.29, 0.018 +19770216, 0.38, -0.19, 0.18, 0.018 +19770217, -0.52, 0.17, 0.18, 0.018 +19770218, -0.29, 0.14, 0.37, 0.018 +19770222, -0.03, -0.14, -0.12, 0.018 +19770223, -0.30, 0.13, -0.01, 0.018 +19770224, -0.62, -0.17, 0.15, 0.018 +19770225, -0.17, 0.14, -0.09, 0.018 +19770228, 0.20, -0.44, 0.05, 0.018 +19770301, 0.85, -0.21, -0.24, 0.016 +19770302, -0.22, 0.13, 0.09, 0.016 +19770303, 0.44, -0.26, 0.04, 0.016 +19770304, 0.35, 0.14, -0.09, 0.016 +19770307, 0.12, 0.06, 0.01, 0.016 +19770308, -0.34, 0.27, 0.06, 0.016 +19770309, -0.70, 0.18, 0.05, 0.016 +19770310, 0.48, -0.02, -0.22, 0.016 +19770311, 0.07, 0.13, 0.11, 0.016 +19770314, 0.63, -0.45, 0.10, 0.016 +19770315, 0.44, -0.31, 0.27, 0.016 +19770316, 0.19, -0.04, 0.04, 0.016 +19770317, -0.09, 0.11, 0.02, 0.016 +19770318, -0.22, 0.37, -0.02, 0.016 +19770321, -0.45, 0.24, -0.09, 0.016 +19770322, -0.22, 0.15, -0.01, 0.016 +19770323, -0.78, 0.35, 0.23, 0.016 +19770324, -0.46, 0.14, 0.08, 0.016 +19770325, -0.59, 0.41, -0.02, 0.016 +19770328, -0.15, -0.36, -0.01, 0.016 +19770329, 0.55, -0.29, 0.14, 0.016 +19770330, -1.10, 0.20, 0.40, 0.016 +19770331, -0.14, 0.01, 0.03, 0.016 +19770401, 0.75, -0.32, 0.02, 0.019 +19770404, -0.89, 0.25, 0.19, 0.019 +19770405, -0.28, -0.24, 0.04, 0.019 +19770406, -0.07, 0.10, 0.05, 0.019 +19770407, 0.32, -0.20, -0.10, 0.019 +19770411, 0.49, -0.30, -0.01, 0.019 +19770412, 1.20, -0.46, 0.46, 0.019 +19770413, 0.03, 0.12, 0.27, 0.019 +19770414, 0.84, -0.06, 0.14, 0.019 +19770415, 0.03, 0.12, 0.09, 0.019 +19770418, -0.40, 0.31, 0.18, 0.019 +19770419, -0.33, 0.36, 0.05, 0.019 +19770420, 0.34, 0.11, 0.36, 0.019 +19770421, -0.65, 0.25, 0.29, 0.019 +19770422, -1.20, 0.31, 0.48, 0.019 +19770425, -1.25, -0.02, 0.38, 0.019 +19770426, -0.05, -0.22, 0.20, 0.019 +19770427, 0.85, -0.21, 0.08, 0.019 +19770428, 0.21, -0.16, 0.13, 0.019 +19770429, 0.25, 0.13, 0.10, 0.019 +19770502, 0.53, -0.15, -0.14, 0.018 +19770503, 0.47, -0.03, 0.05, 0.018 +19770504, 0.57, -0.16, 0.13, 0.018 +19770505, 0.27, 0.11, -0.11, 0.018 +19770506, -0.41, 0.39, 0.19, 0.018 +19770509, -0.21, 0.08, 0.24, 0.018 +19770510, 0.30, -0.04, -0.10, 0.018 +19770511, -0.55, 0.40, 0.09, 0.018 +19770512, -0.03, 0.02, 0.08, 0.018 +19770513, 0.32, 0.12, 0.05, 0.018 +19770516, 0.40, -0.04, 0.05, 0.018 +19770517, 0.25, -0.09, -0.07, 0.018 +19770518, 0.48, 0.00, -0.11, 0.018 +19770519, -0.32, 0.31, 0.12, 0.018 +19770520, -0.37, 0.26, 0.11, 0.018 +19770523, -1.13, 0.13, 0.23, 0.018 +19770524, -0.47, -0.11, -0.19, 0.018 +19770525, -0.82, 0.11, 0.26, 0.018 +19770526, 0.16, -0.15, -0.17, 0.018 +19770527, -0.64, 0.40, 0.15, 0.018 +19770531, -0.24, -0.35, -0.03, 0.018 +19770601, 0.74, -0.27, -0.17, 0.018 +19770602, -0.14, 0.07, 0.31, 0.018 +19770603, 0.87, -0.17, -0.47, 0.018 +19770606, -0.39, 0.34, 0.09, 0.018 +19770607, 0.44, -0.23, 0.01, 0.018 +19770608, 0.51, -0.11, 0.12, 0.018 +19770609, -0.03, 0.38, -0.18, 0.018 +19770610, 0.29, 0.26, -0.01, 0.018 +19770613, 0.32, -0.12, -0.19, 0.018 +19770614, 0.99, -0.46, -0.21, 0.018 +19770615, -0.20, 0.26, 0.07, 0.018 +19770616, 0.29, 0.10, -0.25, 0.018 +19770617, 0.15, 0.28, -0.14, 0.018 +19770620, 0.43, -0.11, -0.05, 0.018 +19770621, 0.32, -0.19, 0.14, 0.018 +19770622, -0.20, 0.24, 0.15, 0.018 +19770623, 0.22, 0.35, 0.11, 0.018 +19770624, 0.56, 0.22, -0.09, 0.018 +19770627, -0.10, 0.30, -0.03, 0.018 +19770628, -0.72, 0.40, 0.15, 0.018 +19770629, -0.07, 0.17, 0.05, 0.018 +19770630, 0.35, 0.26, 0.07, 0.018 +19770701, -0.26, 0.51, 0.20, 0.022 +19770705, 0.01, 0.19, -0.11, 0.022 +19770706, -0.45, 0.32, 0.07, 0.022 +19770707, 0.31, 0.01, -0.18, 0.022 +19770708, -0.01, 0.42, 0.23, 0.022 +19770711, -0.26, 0.15, 0.25, 0.022 +19770712, -0.10, 0.09, 0.10, 0.022 +19770713, 0.16, 0.06, -0.17, 0.022 +19770715, 0.60, -0.02, -0.58, 0.022 +19770718, 0.62, -0.18, -0.25, 0.022 +19770719, 0.62, -0.08, -0.18, 0.022 +19770720, -0.03, -0.02, 0.07, 0.022 +19770721, -0.11, 0.18, 0.00, 0.022 +19770722, 0.07, 0.21, 0.05, 0.022 +19770725, -0.67, 0.40, -0.11, 0.022 +19770726, -0.53, 0.10, 0.07, 0.022 +19770727, -1.60, 0.06, 0.18, 0.022 +19770728, -0.05, -0.18, -0.27, 0.022 +19770729, -0.02, -0.15, -0.07, 0.022 +19770801, 0.35, -0.20, 0.00, 0.019 +19770802, -0.61, 0.18, -0.03, 0.019 +19770803, -0.22, -0.19, -0.08, 0.019 +19770804, 0.49, 0.13, -0.41, 0.019 +19770805, 0.01, 0.33, -0.17, 0.019 +19770808, -0.59, 0.12, 0.12, 0.019 +19770809, 0.07, 0.02, -0.23, 0.019 +19770810, 0.70, -0.19, -0.31, 0.019 +19770811, -0.54, 0.67, -0.22, 0.019 +19770812, -0.31, 0.15, -0.19, 0.019 +19770815, 0.21, -0.26, -0.32, 0.019 +19770816, -0.36, 0.32, -0.04, 0.019 +19770817, -0.05, 0.10, -0.44, 0.019 +19770818, 0.01, 0.15, -0.18, 0.019 +19770819, -0.23, 0.32, -0.47, 0.019 +19770822, 0.27, -0.11, -0.42, 0.019 +19770823, -0.15, 0.12, 0.31, 0.019 +19770824, -0.38, 0.20, 0.36, 0.019 +19770825, -0.91, 0.28, 0.28, 0.019 +19770826, -0.09, -0.13, -0.14, 0.019 +19770829, 0.80, -0.25, -0.40, 0.019 +19770830, -0.47, 0.11, 0.30, 0.019 +19770831, 0.24, -0.28, -0.18, 0.019 +19770901, 0.14, 0.33, 0.18, 0.021 +19770902, 0.63, -0.03, -0.09, 0.021 +19770906, 0.17, -0.16, -0.01, 0.021 +19770907, 0.26, 0.07, -0.17, 0.021 +19770908, -0.63, 0.42, 0.34, 0.021 +19770909, -0.85, 0.41, 0.13, 0.021 +19770912, -0.31, 0.06, -0.18, 0.021 +19770913, 0.00, 0.00, -0.24, 0.021 +19770914, 0.36, -0.08, -0.19, 0.021 +19770915, 0.31, -0.03, -0.02, 0.021 +19770916, -0.30, 0.34, 0.07, 0.021 +19770919, -0.59, 0.10, 0.30, 0.021 +19770920, 0.01, -0.01, -0.15, 0.021 +19770921, -0.75, 0.15, 0.30, 0.021 +19770922, -0.06, -0.12, -0.03, 0.021 +19770923, -0.02, 0.25, -0.06, 0.021 +19770926, 0.25, -0.16, -0.29, 0.021 +19770927, -0.14, 0.12, -0.12, 0.021 +19770928, 0.04, 0.09, -0.11, 0.021 +19770929, 0.52, -0.20, 0.08, 0.021 +19770930, 0.69, -0.07, -0.01, 0.021 +19771003, 0.28, 0.00, 0.10, 0.023 +19771004, -0.61, 0.28, 0.42, 0.023 +19771005, -0.36, 0.18, -0.02, 0.023 +19771006, 0.36, -0.07, 0.12, 0.023 +19771007, -0.01, 0.31, -0.06, 0.023 +19771010, -0.17, 0.15, 0.04, 0.023 +19771011, -0.77, 0.33, 0.30, 0.023 +19771012, -1.13, -0.21, 0.14, 0.023 +19771013, -0.69, -0.20, -0.19, 0.023 +19771014, 0.03, 0.02, 0.10, 0.023 +19771017, -0.11, -0.01, -0.15, 0.023 +19771018, -0.02, 0.21, 0.18, 0.023 +19771019, -1.05, 0.32, 0.47, 0.023 +19771020, 0.19, -0.27, -0.07, 0.023 +19771021, -0.23, 0.30, 0.08, 0.023 +19771024, -0.79, 0.10, 0.24, 0.023 +19771025, -0.83, -0.33, 0.07, 0.023 +19771026, 0.98, -0.45, -0.26, 0.023 +19771027, 0.36, 0.10, -0.05, 0.023 +19771028, 0.33, 0.19, -0.05, 0.023 +19771031, -0.19, 0.27, 0.20, 0.023 +19771101, -0.98, 0.19, 0.44, 0.024 +19771102, -0.60, 0.29, 0.00, 0.024 +19771103, 0.14, -0.03, -0.10, 0.024 +19771104, 0.94, 0.09, -0.07, 0.024 +19771107, 0.81, -0.01, -0.18, 0.024 +19771108, 0.19, 0.17, 0.17, 0.024 +19771109, 0.50, 0.16, -0.14, 0.024 +19771110, 1.91, -0.33, -0.55, 0.024 +19771111, 1.28, -0.34, -0.13, 0.024 +19771114, -0.50, 0.41, 0.27, 0.024 +19771115, 0.65, 0.09, -0.26, 0.024 +19771116, -0.33, 0.50, 0.10, 0.024 +19771117, -0.21, 0.66, 0.28, 0.024 +19771118, 0.25, 0.32, -0.04, 0.024 +19771121, -0.08, 0.19, -0.03, 0.024 +19771122, 0.86, -0.19, -0.13, 0.024 +19771123, 0.59, 0.24, -0.07, 0.024 +19771125, 0.32, 0.26, -0.02, 0.024 +19771128, -0.54, 0.32, 0.23, 0.024 +19771129, -1.41, 0.48, 0.38, 0.024 +19771130, 0.17, 0.00, 0.09, 0.024 +19771201, 0.05, 0.48, 0.08, 0.023 +19771202, 0.01, 0.32, 0.21, 0.023 +19771205, -0.36, 0.30, 0.07, 0.023 +19771206, -1.52, 0.07, 0.44, 0.023 +19771207, -0.14, -0.04, 0.01, 0.023 +19771208, 0.20, 0.13, -0.25, 0.023 +19771209, 0.69, -0.08, 0.01, 0.023 +19771212, 0.04, -0.01, -0.05, 0.023 +19771213, -0.05, -0.06, -0.05, 0.023 +19771214, 0.33, 0.10, -0.31, 0.023 +19771215, -0.40, 0.50, 0.01, 0.023 +19771216, -0.11, 0.18, 0.15, 0.023 +19771219, -0.71, -0.12, 0.37, 0.023 +19771220, -0.36, -0.32, -0.02, 0.023 +19771221, 0.58, -0.07, -0.45, 0.023 +19771222, 0.66, -0.11, -0.25, 0.023 +19771223, 0.88, -0.17, -0.21, 0.023 +19771227, -0.02, -0.25, 0.24, 0.023 +19771228, 0.02, 0.07, 0.10, 0.023 +19771229, 0.31, 0.06, -0.30, 0.023 +19771230, 0.18, 0.34, -0.17, 0.023 +19780103, -1.29, 0.33, 0.67, 0.023 +19780104, -0.41, -0.10, 0.08, 0.023 +19780105, -0.73, 0.31, 0.61, 0.023 +19780106, -1.24, -0.16, 0.54, 0.023 +19780109, -1.18, -0.26, 0.29, 0.023 +19780110, -0.64, -0.09, 0.14, 0.023 +19780111, -0.53, -0.02, 0.30, 0.023 +19780112, 0.19, 0.25, 0.00, 0.023 +19780113, -0.03, 0.32, 0.33, 0.023 +19780116, -0.35, -0.28, 0.09, 0.023 +19780117, 0.52, 0.14, -0.24, 0.023 +19780118, 0.68, -0.03, 0.21, 0.023 +19780119, -0.34, 0.68, 0.08, 0.023 +19780120, -0.21, 0.34, 0.04, 0.023 +19780123, -0.66, 0.27, 0.13, 0.023 +19780124, 0.02, 0.10, 0.06, 0.023 +19780125, 0.17, 0.11, 0.32, 0.023 +19780126, -0.77, 0.31, 0.45, 0.023 +19780127, -0.02, 0.03, 0.00, 0.023 +19780130, 0.75, -0.22, -0.32, 0.023 +19780131, -0.09, 0.29, -0.38, 0.023 +19780201, 0.78, 0.17, -0.37, 0.024 +19780202, 0.34, 0.10, 0.15, 0.024 +19780203, -0.30, 0.72, 0.02, 0.024 +19780206, 0.00, 0.12, 0.03, 0.024 +19780207, 0.75, -0.21, -0.23, 0.024 +19780208, 0.52, -0.10, 0.04, 0.024 +19780209, -0.36, 0.50, 0.24, 0.024 +19780210, -0.12, 0.39, -0.07, 0.024 +19780213, -0.27, 0.24, 0.04, 0.024 +19780214, -0.78, 0.30, 0.20, 0.024 +19780215, -0.26, 0.35, 0.05, 0.024 +19780216, -0.78, 0.33, 0.08, 0.024 +19780217, -0.11, 0.13, 0.22, 0.024 +19780221, -0.39, 0.16, 0.07, 0.024 +19780222, 0.06, 0.09, -0.01, 0.024 +19780223, 0.18, 0.01, -0.02, 0.024 +19780224, 0.84, -0.14, -0.19, 0.024 +19780227, -0.70, 0.33, 0.21, 0.024 +19780228, -0.79, 0.08, 0.30, 0.024 +19780301, 0.10, -0.09, -0.01, 0.024 +19780302, 0.21, 0.11, 0.17, 0.024 +19780303, 0.13, 0.00, 0.24, 0.024 +19780306, -0.54, 0.18, 0.23, 0.024 +19780307, 0.47, -0.08, -0.15, 0.024 +19780308, 0.49, -0.05, -0.15, 0.024 +19780309, 0.20, 0.33, -0.03, 0.024 +19780310, 1.04, -0.10, -0.34, 0.024 +19780313, 0.10, 0.02, 0.06, 0.024 +19780314, 0.40, -0.21, -0.03, 0.024 +19780315, -0.18, 0.38, 0.17, 0.024 +19780316, 0.43, 0.32, -0.06, 0.024 +19780317, 0.73, 0.03, -0.23, 0.024 +19780320, 0.58, -0.13, -0.19, 0.024 +19780321, -0.97, 0.51, 0.49, 0.024 +19780322, -0.26, 0.28, 0.12, 0.024 +19780323, -0.05, 0.44, 0.09, 0.024 +19780327, -0.43, 0.53, 0.25, 0.024 +19780328, 0.62, 0.01, -0.06, 0.024 +19780329, 0.20, 0.38, 0.10, 0.024 +19780330, -0.23, 0.34, 0.23, 0.024 +19780331, -0.23, 0.12, 0.27, 0.024 +19780403, -0.71, 0.11, 0.24, 0.027 +19780404, 0.38, 0.07, -0.09, 0.027 +19780405, 0.81, 0.08, -0.19, 0.027 +19780406, 0.24, 0.22, -0.08, 0.027 +19780407, 0.47, 0.26, -0.39, 0.027 +19780410, 0.31, -0.11, -0.05, 0.027 +19780411, -0.21, 0.18, 0.04, 0.027 +19780412, -0.03, 0.38, 0.24, 0.027 +19780413, 0.97, 0.19, -0.50, 0.027 +19780414, 1.86, -0.64, -0.59, 0.027 +19780417, 1.39, -0.97, -0.77, 0.027 +19780418, -1.03, 0.31, 0.28, 0.027 +19780419, 0.36, 0.02, -0.07, 0.027 +19780420, 0.72, 0.05, -0.26, 0.027 +19780421, -0.10, 0.47, 0.05, 0.027 +19780424, 1.24, -0.51, -0.38, 0.027 +19780425, 0.77, -0.36, -0.58, 0.027 +19780426, 0.17, 0.03, -0.04, 0.027 +19780427, -0.86, 0.60, 0.20, 0.027 +19780428, 0.87, -0.04, -0.36, 0.027 +19780501, 0.84, -0.13, -0.33, 0.023 +19780502, -0.26, 0.24, 0.23, 0.023 +19780503, -0.73, 0.74, 0.33, 0.023 +19780504, -0.05, 0.46, 0.05, 0.023 +19780505, 0.68, 0.36, -0.24, 0.023 +19780508, -0.26, 0.37, -0.02, 0.023 +19780509, -0.17, 0.27, -0.11, 0.023 +19780510, 0.09, 0.42, -0.07, 0.023 +19780511, 1.12, -0.09, -0.62, 0.023 +19780512, 0.83, 0.16, -0.46, 0.023 +19780515, 0.59, -0.15, -0.27, 0.023 +19780516, 0.67, 0.02, -0.24, 0.023 +19780517, 0.29, 0.27, 0.15, 0.023 +19780518, -0.75, 0.62, 0.43, 0.023 +19780519, -0.44, 0.47, 0.14, 0.023 +19780522, 0.83, -0.31, -0.25, 0.023 +19780523, -0.85, 0.17, 0.39, 0.023 +19780524, -0.98, -0.08, 0.40, 0.023 +19780525, -0.18, 0.35, -0.02, 0.023 +19780526, -0.16, 0.28, -0.11, 0.023 +19780530, 0.23, -0.03, -0.06, 0.023 +19780531, 0.40, -0.13, 0.06, 0.023 +19780601, 0.11, 0.01, -0.07, 0.024 +19780602, 0.74, -0.02, -0.25, 0.024 +19780605, 1.60, -0.54, -0.61, 0.024 +19780606, 0.43, 0.02, 0.12, 0.024 +19780607, -0.14, 0.33, 0.10, 0.024 +19780608, 0.21, 0.50, 0.14, 0.024 +19780609, -0.14, 0.69, -0.04, 0.024 +19780612, -0.28, 0.29, 0.12, 0.024 +19780613, 0.08, 0.17, -0.16, 0.024 +19780614, -0.06, 0.53, 0.00, 0.024 +19780615, -0.96, 0.44, 0.07, 0.024 +19780616, -0.85, 0.23, 0.24, 0.024 +19780619, -0.19, -0.42, 0.02, 0.024 +19780620, -0.95, 0.04, 0.45, 0.024 +19780621, -0.65, -0.51, 0.17, 0.024 +19780622, 0.21, -0.07, 0.12, 0.024 +19780623, -0.28, 0.47, 0.22, 0.024 +19780626, -1.27, -0.19, 0.38, 0.024 +19780627, 0.21, -0.61, -0.33, 0.024 +19780628, 0.37, -0.05, -0.04, 0.024 +19780629, 0.21, 0.26, -0.01, 0.024 +19780630, -0.07, 0.17, -0.02, 0.024 +19780703, -0.31, 0.30, 0.06, 0.028 +19780705, -0.87, -0.02, 0.03, 0.028 +19780706, -0.03, -0.37, -0.17, 0.028 +19780707, 0.57, -0.04, -0.07, 0.028 +19780710, 0.34, -0.18, -0.21, 0.028 +19780711, 0.60, -0.26, 0.08, 0.028 +19780712, 0.35, 0.00, -0.02, 0.028 +19780713, 0.02, 0.18, 0.13, 0.028 +19780714, 1.23, -0.31, -0.54, 0.028 +19780717, 0.23, 0.19, -0.08, 0.028 +19780718, -0.78, 0.45, 0.32, 0.028 +19780719, 1.10, -0.38, -0.09, 0.028 +19780720, 0.00, 0.62, -0.05, 0.028 +19780721, -0.32, 0.19, 0.23, 0.028 +19780724, -0.10, 0.03, -0.10, 0.028 +19780725, 0.68, -0.41, 0.01, 0.028 +19780726, 0.60, 0.10, -0.34, 0.028 +19780727, 0.52, 0.24, 0.08, 0.028 +19780728, 0.46, 0.07, 0.02, 0.028 +19780731, 0.71, -0.08, -0.24, 0.028 +19780801, 0.12, -0.02, -0.01, 0.024 +19780802, 2.13, -0.81, -0.62, 0.024 +19780803, 0.43, -0.31, 0.08, 0.024 +19780804, 0.43, -0.17, 0.09, 0.024 +19780807, -0.17, 0.62, -0.12, 0.024 +19780808, 0.48, 0.14, -0.33, 0.024 +19780809, 0.52, 0.48, -0.20, 0.024 +19780810, -0.59, 0.65, 0.30, 0.024 +19780811, 0.32, 0.25, 0.17, 0.024 +19780814, 0.09, 0.34, 0.16, 0.024 +19780815, -0.14, 0.10, 0.15, 0.024 +19780816, 0.72, 0.20, -0.42, 0.024 +19780817, 0.56, 0.41, -0.23, 0.024 +19780818, -0.23, 0.50, 0.17, 0.024 +19780821, -0.80, 0.08, 0.35, 0.024 +19780822, 0.29, 0.05, -0.17, 0.024 +19780823, 0.61, 0.21, -0.36, 0.024 +19780824, 0.27, 0.53, 0.17, 0.024 +19780825, 0.05, 0.50, -0.02, 0.024 +19780828, -0.72, 0.39, 0.23, 0.024 +19780829, -0.58, 0.27, 0.23, 0.024 +19780830, 0.15, 0.24, -0.18, 0.024 +19780831, -0.20, 0.16, 0.01, 0.024 +19780901, 0.40, -0.21, 0.06, 0.031 +19780905, 0.53, -0.45, -0.14, 0.031 +19780906, 0.84, 0.04, -0.17, 0.031 +19780907, 0.12, 0.43, 0.02, 0.031 +19780908, 1.25, -0.20, -0.17, 0.031 +19780911, 0.21, 0.40, 0.12, 0.031 +19780912, 0.07, 0.11, 0.00, 0.031 +19780913, -0.55, 0.51, 0.28, 0.031 +19780914, -1.06, 0.26, 0.41, 0.031 +19780915, -0.95, 0.08, 0.19, 0.031 +19780918, -1.07, -0.35, 0.27, 0.031 +19780919, -0.75, -0.54, 0.33, 0.031 +19780920, -0.94, -0.60, 0.40, 0.031 +19780921, -0.04, -0.41, 0.01, 0.031 +19780922, 0.03, 0.30, -0.05, 0.031 +19780925, -0.03, -0.05, 0.12, 0.031 +19780926, 0.69, 0.02, -0.09, 0.031 +19780927, -0.87, 0.27, 0.25, 0.031 +19780928, 0.21, -0.15, 0.04, 0.031 +19780929, 0.49, 0.08, -0.03, 0.031 +19781002, 0.32, -0.09, -0.04, 0.031 +19781003, -0.31, 0.02, 0.13, 0.031 +19781004, 0.38, -0.48, 0.04, 0.031 +19781005, 0.22, 0.19, 0.09, 0.031 +19781006, 0.23, 0.17, -0.06, 0.031 +19781009, 0.92, -0.36, -0.19, 0.031 +19781010, -0.14, 0.26, 0.05, 0.031 +19781011, 0.86, -0.70, -0.33, 0.031 +19781012, -0.47, 0.68, 0.07, 0.031 +19781013, -0.29, 0.20, 0.10, 0.031 +19781016, -1.82, 0.13, 0.36, 0.031 +19781017, -1.71, -1.32, 0.12, 0.031 +19781018, -0.99, -0.85, 0.08, 0.031 +19781019, -1.32, -0.39, 0.39, 0.031 +19781020, -1.79, -2.00, 0.08, 0.031 +19781023, -0.25, -1.45, -0.15, 0.031 +19781024, -0.58, 0.38, 0.34, 0.031 +19781025, -0.22, 0.24, 0.01, 0.031 +19781026, -1.73, -1.76, 0.63, 0.031 +19781027, -1.97, -1.59, -0.04, 0.031 +19781030, 0.00, -3.09, -0.76, 0.031 +19781031, -1.81, 0.24, 0.73, 0.031 +19781101, 4.12, 0.69, -1.70, 0.033 +19781102, -0.92, 1.21, 0.24, 0.033 +19781103, 0.56, 0.34, -0.13, 0.033 +19781106, -0.80, 0.72, 0.36, 0.033 +19781107, -1.58, -0.95, 0.53, 0.033 +19781108, 0.43, -0.39, -0.57, 0.033 +19781109, 0.14, 0.53, -0.01, 0.033 +19781110, 0.49, 0.40, -0.02, 0.033 +19781113, -1.67, -0.08, 0.44, 0.033 +19781114, -1.02, -1.37, 0.19, 0.033 +19781115, 0.29, 0.24, -0.26, 0.033 +19781116, 1.01, -0.42, -0.47, 0.033 +19781117, 0.95, 0.59, -0.33, 0.033 +19781120, 0.91, 0.19, -0.22, 0.033 +19781121, -0.13, 0.42, -0.03, 0.033 +19781122, 0.59, 0.33, -0.16, 0.033 +19781124, 0.47, 0.32, -0.22, 0.033 +19781127, 0.25, 0.01, -0.17, 0.033 +19781128, -0.80, 0.27, 0.36, 0.033 +19781129, -1.39, 0.12, 0.43, 0.033 +19781130, 0.90, -0.20, -0.42, 0.033 +19781201, 1.57, 0.12, -0.68, 0.039 +19781204, 0.01, 0.29, -0.07, 0.039 +19781205, 1.24, -0.18, -0.36, 0.039 +19781206, 0.17, 0.26, 0.16, 0.039 +19781207, -0.39, 0.37, -0.04, 0.039 +19781208, -0.43, 0.21, 0.42, 0.039 +19781211, 0.43, -0.16, -0.31, 0.039 +19781212, -0.52, 0.20, 0.30, 0.039 +19781213, -0.59, 0.18, 0.02, 0.039 +19781214, -0.03, -0.06, 0.02, 0.039 +19781215, -0.74, 0.05, 0.14, 0.039 +19781218, -2.23, -0.79, 0.60, 0.039 +19781219, 0.72, -0.33, -0.71, 0.039 +19781220, 0.41, 0.22, -0.31, 0.039 +19781221, 0.05, 0.34, -0.20, 0.039 +19781222, 1.66, -0.17, -0.61, 0.039 +19781226, 0.98, -0.37, -0.82, 0.039 +19781227, -0.84, 0.20, 0.32, 0.039 +19781228, -0.40, 0.06, -0.18, 0.039 +19781229, -0.13, 0.70, 0.10, 0.039 +19790102, 0.58, -0.18, 0.46, 0.035 +19790103, 1.12, 0.36, -0.06, 0.035 +19790104, 0.94, 0.42, 0.01, 0.035 +19790105, 0.65, 0.63, -0.03, 0.035 +19790108, -0.28, 0.05, 0.09, 0.035 +19790109, 0.51, 0.34, 0.02, 0.035 +19790110, -0.55, 0.32, 0.22, 0.035 +19790111, 0.42, -0.04, -0.39, 0.035 +19790112, 0.75, 0.36, -0.23, 0.035 +19790115, 0.65, -0.12, -0.12, 0.035 +19790116, -1.13, 0.24, 0.58, 0.035 +19790117, -0.08, -0.22, 0.23, 0.035 +19790118, 0.40, 0.49, 0.07, 0.035 +19790119, -0.02, 0.40, 0.24, 0.035 +19790122, 0.05, -0.10, -0.12, 0.035 +19790123, 0.63, -0.02, 0.16, 0.035 +19790124, -0.36, 0.06, 0.30, 0.035 +19790125, 0.93, -0.31, -0.01, 0.035 +19790126, 0.64, -0.07, 0.09, 0.035 +19790129, -0.24, 0.13, 0.18, 0.035 +19790130, -0.35, 0.24, 0.22, 0.035 +19790131, -1.13, 0.40, 0.22, 0.035 +19790201, 0.04, -0.19, -0.04, 0.038 +19790202, -0.33, 0.48, 0.07, 0.038 +19790205, -1.31, -0.09, 0.27, 0.038 +19790206, -0.04, -0.18, 0.20, 0.038 +19790207, -0.95, -0.34, 0.25, 0.038 +19790208, 0.52, 0.14, -0.12, 0.038 +19790209, 0.25, 0.32, 0.04, 0.038 +19790212, 0.25, -0.20, -0.26, 0.038 +19790213, 0.74, 0.17, -0.07, 0.038 +19790214, -0.14, 0.04, 0.24, 0.038 +19790215, -0.07, 0.27, -0.11, 0.038 +19790216, 0.03, 0.32, 0.09, 0.038 +19790220, 0.58, -0.26, -0.18, 0.038 +19790221, -0.28, 0.24, 0.23, 0.038 +19790222, -0.57, 0.29, 0.13, 0.038 +19790223, -0.57, 0.18, 0.15, 0.038 +19790226, -0.14, 0.06, -0.05, 0.038 +19790227, -1.70, -0.55, 0.48, 0.038 +19790228, 0.09, -0.23, -0.09, 0.038 +19790301, 0.67, -0.05, 0.02, 0.037 +19790302, 0.12, 0.33, 0.00, 0.037 +19790305, 1.10, -0.31, -0.06, 0.037 +19790306, -0.23, 0.15, 0.62, 0.037 +19790307, 0.64, 0.10, 0.15, 0.037 +19790308, 1.01, -0.05, -0.07, 0.037 +19790309, 0.03, 0.09, 0.07, 0.037 +19790312, 0.15, 0.14, -0.17, 0.037 +19790313, 0.23, 0.25, -0.11, 0.037 +19790314, -0.07, 0.21, -0.03, 0.037 +19790315, 0.17, 0.05, 0.17, 0.037 +19790316, 0.74, 0.00, -0.31, 0.037 +19790319, 0.35, -0.04, -0.04, 0.037 +19790320, -0.53, 0.29, 0.03, 0.037 +19790321, 0.66, -0.11, -0.37, 0.037 +19790322, 0.40, 0.11, -0.16, 0.037 +19790323, -0.02, 0.51, 0.08, 0.037 +19790326, -0.50, 0.17, 0.23, 0.037 +19790327, 1.30, -0.50, -0.43, 0.037 +19790328, -0.36, 0.41, 0.09, 0.037 +19790329, -0.03, 0.52, -0.28, 0.037 +19790330, -0.31, 0.65, -0.03, 0.037 +19790402, -0.68, 0.24, 0.15, 0.040 +19790403, 1.34, -0.29, -0.15, 0.040 +19790404, 0.30, 0.01, 0.12, 0.040 +19790405, 0.55, -0.04, -0.15, 0.040 +19790406, -0.06, 0.08, 0.08, 0.040 +19790409, -0.30, 0.15, 0.08, 0.040 +19790410, 0.45, -0.04, 0.17, 0.040 +19790411, -0.90, 0.38, 0.40, 0.040 +19790412, -0.24, 0.34, 0.30, 0.040 +19790416, -0.87, 0.01, 0.12, 0.040 +19790417, -0.08, -0.10, 0.02, 0.040 +19790418, 0.49, 0.30, -0.04, 0.040 +19790419, -0.38, 0.37, -0.05, 0.040 +19790420, 0.01, 0.19, -0.12, 0.040 +19790423, 0.30, 0.01, -0.22, 0.040 +19790424, 0.52, -0.03, -0.05, 0.040 +19790425, 0.33, 0.10, 0.00, 0.040 +19790426, -0.47, 0.36, 0.26, 0.040 +19790427, -0.25, 0.18, 0.14, 0.040 +19790430, -0.07, -0.12, -0.04, 0.040 +19790501, -0.02, 0.06, 0.09, 0.037 +19790502, 0.05, 0.17, -0.08, 0.037 +19790503, 0.02, 0.12, -0.19, 0.037 +19790504, -0.97, 0.19, 0.25, 0.037 +19790507, -1.82, -0.82, 0.33, 0.037 +19790508, -0.02, -0.72, -0.16, 0.037 +19790509, 0.33, 0.22, 0.21, 0.037 +19790510, -0.89, 0.12, 0.23, 0.037 +19790511, 0.12, 0.02, 0.02, 0.037 +19790514, -0.48, 0.18, 0.02, 0.037 +19790515, 0.07, -0.06, 0.22, 0.037 +19790516, 0.22, -0.20, 0.05, 0.037 +19790517, 1.47, -0.45, 0.08, 0.037 +19790518, 0.08, 0.38, 0.00, 0.037 +19790521, 0.30, 0.19, -0.16, 0.037 +19790522, 0.46, -0.01, -0.10, 0.037 +19790523, -0.39, 0.51, 0.04, 0.037 +19790524, 0.13, 0.15, 0.04, 0.037 +19790525, 0.29, 0.25, 0.03, 0.037 +19790529, -0.18, 0.02, 0.05, 0.037 +19790530, -0.94, -0.06, 0.21, 0.037 +19790531, 0.01, -0.08, 0.11, 0.037 +19790601, 0.10, 0.16, -0.12, 0.038 +19790604, 0.18, -0.03, 0.35, 0.038 +19790605, 1.18, -0.14, -0.37, 0.038 +19790606, 0.66, -0.09, -0.25, 0.038 +19790607, 0.57, -0.03, -0.03, 0.038 +19790608, -0.20, 0.37, 0.54, 0.038 +19790611, 0.26, 0.14, -0.03, 0.038 +19790612, 0.90, -0.08, 0.14, 0.038 +19790613, -0.35, 0.51, 0.56, 0.038 +19790614, -0.19, -0.08, 0.11, 0.038 +19790615, 0.05, 0.09, -0.14, 0.038 +19790618, -0.57, 0.15, 0.21, 0.038 +19790619, 0.02, -0.04, 0.27, 0.038 +19790620, 0.14, 0.38, 0.12, 0.038 +19790621, 0.39, 0.14, -0.17, 0.038 +19790622, 0.44, -0.12, -0.06, 0.038 +19790625, -0.52, -0.15, 0.14, 0.038 +19790626, -0.44, 0.08, 0.19, 0.038 +19790627, 0.56, -0.09, -0.09, 0.038 +19790628, 0.54, -0.04, 0.04, 0.038 +19790629, 0.02, -0.05, -0.02, 0.038 +19790702, -0.91, -0.06, 0.48, 0.036 +19790703, 0.14, 0.04, 0.28, 0.036 +19790705, 0.37, 0.19, 0.08, 0.036 +19790706, 1.04, -0.30, -0.26, 0.036 +19790709, 0.78, -0.41, 0.22, 0.036 +19790710, -0.31, 0.18, 0.10, 0.036 +19790711, -0.60, 0.41, 0.21, 0.036 +19790712, -0.76, 0.50, 0.35, 0.036 +19790713, -0.34, 0.13, 0.12, 0.036 +19790716, 0.41, -0.14, -0.02, 0.036 +19790717, -0.97, -0.08, 0.53, 0.036 +19790718, -0.29, -0.33, -0.13, 0.036 +19790719, -0.01, 0.49, 0.11, 0.036 +19790720, 0.25, 0.04, -0.21, 0.036 +19790723, -0.29, 0.11, -0.04, 0.036 +19790724, 0.31, -0.01, -0.01, 0.036 +19790725, 1.05, -0.27, -0.20, 0.036 +19790726, 0.11, 0.31, 0.02, 0.036 +19790727, 0.12, 0.38, 0.05, 0.036 +19790730, 0.13, 0.13, -0.11, 0.036 +19790731, 0.59, -0.10, 0.02, 0.036 +19790801, 0.35, 0.25, -0.18, 0.033 +19790802, 0.05, 0.35, -0.24, 0.033 +19790803, -0.08, 0.05, 0.16, 0.033 +19790806, 0.20, -0.16, -0.17, 0.033 +19790807, 1.17, -0.36, -0.50, 0.033 +19790808, 0.33, 0.06, -0.13, 0.033 +19790809, -0.29, 0.43, 0.09, 0.033 +19790810, 0.80, -0.11, -0.54, 0.033 +19790813, 0.86, -0.14, -0.23, 0.033 +19790814, 0.15, 0.16, 0.33, 0.033 +19790815, 0.69, 0.12, -0.16, 0.033 +19790816, -0.20, 0.09, -0.03, 0.033 +19790817, 0.24, -0.06, 0.15, 0.033 +19790820, 0.48, -0.12, -0.04, 0.033 +19790821, 0.02, 0.12, 0.00, 0.033 +19790822, 0.15, 0.23, 0.04, 0.033 +19790823, -0.28, 0.39, 0.14, 0.033 +19790824, 0.00, -0.09, 0.24, 0.033 +19790827, 0.53, -0.28, 0.10, 0.033 +19790828, -0.10, 0.16, -0.04, 0.033 +19790829, 0.01, 0.30, -0.11, 0.033 +19790830, -0.02, 0.29, -0.10, 0.033 +19790831, 0.31, 0.26, -0.22, 0.033 +19790904, -1.61, 0.15, 0.32, 0.043 +19790905, -1.25, -0.77, 0.20, 0.043 +19790906, 0.47, 0.26, -0.11, 0.043 +19790907, 0.76, -0.12, 0.22, 0.043 +19790910, 0.47, -0.06, 0.05, 0.043 +19790911, -0.68, 0.16, 0.05, 0.043 +19790912, 0.31, 0.09, -0.19, 0.043 +19790913, 0.03, 0.43, -0.49, 0.043 +19790914, 0.91, 0.00, -0.35, 0.043 +19790917, -0.11, -0.06, -0.18, 0.043 +19790918, -0.76, 0.02, 0.00, 0.043 +19790919, 0.21, -0.07, -0.05, 0.043 +19790920, 1.67, -1.25, -0.31, 0.043 +19790921, -0.05, 0.24, 0.04, 0.043 +19790924, -0.79, 0.30, -0.15, 0.043 +19790925, 0.01, -0.27, -0.16, 0.043 +19790926, 0.22, 0.10, 0.01, 0.043 +19790927, 0.10, 0.10, 0.02, 0.043 +19790928, -0.69, 0.52, 0.19, 0.043 +19791001, -0.58, 0.33, -0.18, 0.038 +19791002, 0.78, -0.27, -0.11, 0.038 +19791003, 0.13, 0.35, -0.20, 0.038 +19791004, 0.56, 0.04, 0.01, 0.038 +19791005, 0.85, -0.08, -0.02, 0.038 +19791008, -1.24, -0.03, -0.02, 0.038 +19791009, -3.44, -1.29, 0.01, 0.038 +19791010, -1.92, -2.69, -0.44, 0.038 +19791011, -0.02, 0.73, 0.01, 0.038 +19791012, -0.31, 0.73, 0.03, 0.038 +19791015, -1.23, -0.64, 0.04, 0.038 +19791016, -0.21, 0.02, 0.08, 0.038 +19791017, 0.30, 0.26, -0.13, 0.038 +19791018, 0.18, 0.04, -0.02, 0.038 +19791019, -2.09, -0.05, 0.36, 0.038 +19791022, -1.43, -1.63, -0.37, 0.038 +19791023, -0.37, -0.05, -0.26, 0.038 +19791024, 0.21, 0.12, -0.13, 0.038 +19791025, -0.34, 0.25, 0.19, 0.038 +19791026, 0.64, 0.25, -0.23, 0.038 +19791029, 0.16, 0.04, -0.10, 0.038 +19791030, 1.77, -0.51, -0.74, 0.038 +19791031, -0.62, 0.57, 0.17, 0.038 +19791101, 0.79, -0.16, -0.20, 0.047 +19791102, 0.17, 0.28, -0.15, 0.047 +19791105, -0.68, 0.11, -0.02, 0.047 +19791106, -0.61, 0.19, 0.08, 0.047 +19791107, -1.24, 0.06, 0.25, 0.047 +19791108, 0.53, -0.11, -0.37, 0.047 +19791109, 1.23, -0.07, -0.14, 0.047 +19791112, 1.71, -0.77, -0.30, 0.047 +19791113, -0.36, 0.32, 0.26, 0.047 +19791114, 0.37, 0.12, -0.25, 0.047 +19791115, 0.74, 0.23, -0.48, 0.047 +19791116, -0.18, 0.04, -0.05, 0.047 +19791119, 0.41, 0.03, -0.39, 0.047 +19791120, -0.48, 0.46, -0.21, 0.047 +19791121, 0.08, -0.23, -0.19, 0.047 +19791123, 0.76, 0.07, -0.31, 0.047 +19791126, 2.11, -0.28, -0.40, 0.047 +19791127, -0.19, 0.76, 0.29, 0.047 +19791128, 0.41, 0.40, -0.34, 0.047 +19791129, 0.07, 0.53, -0.19, 0.047 +19791130, -0.49, 0.54, 0.07, 0.047 +19791203, -0.30, 0.14, 0.19, 0.047 +19791204, 0.83, -0.20, -0.42, 0.047 +19791205, 0.50, 0.27, -0.37, 0.047 +19791206, 0.69, 0.20, -0.19, 0.047 +19791207, -0.35, 0.67, -0.08, 0.047 +19791210, 0.23, 0.06, -0.03, 0.047 +19791211, -0.22, 0.11, 0.06, 0.047 +19791212, 0.06, 0.54, -0.33, 0.047 +19791213, 0.14, 0.24, -0.48, 0.047 +19791214, 1.05, -0.20, -0.40, 0.047 +19791217, 0.44, 0.06, -0.24, 0.047 +19791218, -0.92, 0.30, 0.54, 0.047 +19791219, -0.14, 0.14, -0.06, 0.047 +19791220, 0.13, 0.26, -0.02, 0.047 +19791221, -0.61, 0.59, 0.02, 0.047 +19791224, 0.04, 0.00, 0.18, 0.047 +19791226, 0.09, 0.01, 0.03, 0.047 +19791227, 0.07, 0.14, -0.10, 0.047 +19791228, 0.03, 0.37, -0.10, 0.047 +19791231, 0.05, 0.28, -0.10, 0.047 +19800102, -2.05, 0.18, 1.07, 0.036 +19800103, -0.73, -0.90, 0.33, 0.036 +19800104, 1.32, 0.58, -0.38, 0.036 +19800107, 0.39, 0.24, 0.05, 0.036 +19800108, 1.92, -0.36, -0.70, 0.036 +19800109, 0.11, 0.64, 0.01, 0.036 +19800110, 0.85, 0.32, -0.02, 0.036 +19800111, 0.20, 0.21, 0.45, 0.036 +19800114, 0.34, 0.30, 0.66, 0.036 +19800115, 0.54, -0.11, -0.10, 0.036 +19800116, 0.04, 0.46, -0.10, 0.036 +19800117, -0.28, 0.46, 0.28, 0.036 +19800118, 0.22, 0.01, 0.09, 0.036 +19800121, 0.85, -0.17, 0.25, 0.036 +19800122, -0.59, -0.01, -0.04, 0.036 +19800123, 1.50, -0.70, -0.17, 0.036 +19800124, 0.25, 0.17, -0.09, 0.036 +19800125, -0.03, 0.33, -0.19, 0.036 +19800128, 1.00, -0.41, -0.29, 0.036 +19800129, -0.65, -0.04, 0.22, 0.036 +19800130, 0.94, -0.21, 0.17, 0.036 +19800131, -0.72, 0.54, 0.17, 0.036 +19800201, 0.66, -0.29, 0.11, 0.044 +19800204, -0.46, 0.34, 0.20, 0.044 +19800205, 0.21, -0.01, -0.07, 0.044 +19800206, 0.84, -0.67, 0.19, 0.044 +19800207, 0.43, -0.07, 0.45, 0.044 +19800208, 1.25, -0.72, 0.51, 0.044 +19800211, -0.72, 0.37, -0.19, 0.044 +19800212, 0.58, -0.45, -0.52, 0.044 +19800213, 0.27, -0.11, -0.26, 0.044 +19800214, -1.43, 0.47, 0.28, 0.044 +19800215, -0.92, 0.28, 0.01, 0.044 +19800219, -0.79, 0.01, -0.06, 0.044 +19800220, 1.41, -0.91, 0.08, 0.044 +19800221, -0.93, 0.41, -0.09, 0.044 +19800222, -0.40, -0.52, 0.16, 0.044 +19800225, -1.41, 0.31, -0.23, 0.044 +19800226, 0.56, -0.43, 0.14, 0.044 +19800227, -1.24, 0.81, 0.27, 0.044 +19800228, -0.03, -0.08, -0.26, 0.044 +19800229, 0.97, -0.66, -0.11, 0.044 +19800303, -0.94, 0.31, 0.02, 0.057 +19800304, -0.08, -1.14, 0.20, 0.057 +19800305, -1.59, -0.19, 0.42, 0.057 +19800306, -2.42, -0.34, -0.21, 0.057 +19800307, -1.73, -0.02, -0.35, 0.057 +19800310, -0.76, -1.52, 0.30, 0.057 +19800311, 1.21, -0.46, 0.01, 0.057 +19800312, -0.70, 0.64, -0.04, 0.057 +19800313, -1.02, 0.88, -0.45, 0.057 +19800314, -0.34, -0.22, -0.02, 0.057 +19800317, -3.20, -0.27, 0.00, 0.057 +19800318, 1.32, -2.15, 0.25, 0.057 +19800319, 0.36, 0.46, -0.01, 0.057 +19800320, -1.05, 0.96, -0.24, 0.057 +19800321, -0.77, 0.08, 0.26, 0.057 +19800324, -3.13, -0.41, 0.59, 0.057 +19800325, -0.55, -1.41, -0.43, 0.057 +19800326, -0.54, 0.34, -0.20, 0.057 +19800327, -1.85, -5.14, 0.32, 0.057 +19800328, 2.93, 1.98, -1.49, 0.057 +19800331, 1.46, 0.12, -0.16, 0.057 +19800401, 0.32, 0.85, -0.07, 0.059 +19800402, 0.84, 0.46, -0.31, 0.059 +19800403, -0.41, 0.38, 0.12, 0.059 +19800407, -2.07, 0.01, 0.51, 0.059 +19800408, 0.94, -0.52, -0.09, 0.059 +19800409, 1.81, -0.84, 0.22, 0.059 +19800410, 0.87, 0.45, 0.24, 0.059 +19800411, -0.11, 0.53, 0.41, 0.059 +19800414, -1.03, 0.18, 0.17, 0.059 +19800415, -0.23, -0.08, 0.12, 0.059 +19800416, -1.09, 0.39, 0.59, 0.059 +19800417, -0.55, -0.26, 0.21, 0.059 +19800418, -0.41, 0.32, 0.13, 0.059 +19800421, -0.89, -0.44, 0.39, 0.059 +19800422, 3.41, -0.83, -1.09, 0.059 +19800423, 0.35, 0.63, -0.05, 0.059 +19800424, 0.81, 0.28, -0.43, 0.059 +19800425, 0.47, -0.87, -0.24, 0.059 +19800428, 0.39, 0.11, 0.01, 0.059 +19800429, 0.30, 0.23, -0.03, 0.059 +19800430, 0.29, -0.05, 0.14, 0.059 +19800501, -0.66, 0.34, 0.30, 0.038 +19800502, 0.15, 0.10, 0.18, 0.038 +19800505, 0.76, -0.20, 0.24, 0.038 +19800506, 0.14, 0.50, -0.06, 0.038 +19800507, 0.87, -0.01, 0.64, 0.038 +19800508, -0.71, 0.68, 0.16, 0.038 +19800509, -1.18, 0.89, 0.16, 0.038 +19800512, -0.02, 0.03, -0.02, 0.038 +19800513, 1.19, -0.39, -0.24, 0.038 +19800514, 0.65, 0.42, -0.26, 0.038 +19800515, 0.20, 0.45, -0.38, 0.038 +19800516, 0.38, 0.15, -0.20, 0.038 +19800519, 0.24, 0.10, -0.12, 0.038 +19800520, -0.08, 0.12, -0.01, 0.038 +19800521, 0.06, -0.05, 0.11, 0.038 +19800522, 1.21, -0.37, -0.24, 0.038 +19800523, 1.45, -0.43, -0.09, 0.038 +19800527, 0.66, -0.27, 0.28, 0.038 +19800528, 0.61, -0.45, -0.02, 0.038 +19800529, -1.47, 0.82, -0.09, 0.038 +19800530, 0.70, -0.46, 0.02, 0.038 +19800602, -0.25, 0.31, 0.02, 0.029 +19800603, -0.21, 0.23, -0.05, 0.029 +19800604, 1.69, -0.69, -0.68, 0.029 +19800605, 0.21, 0.30, -0.02, 0.029 +19800606, 0.40, 0.09, -0.20, 0.029 +19800609, 0.37, -0.15, 0.19, 0.029 +19800610, 0.80, -0.37, -0.12, 0.029 +19800611, 1.08, -0.46, -0.22, 0.029 +19800612, -0.25, 0.19, -0.29, 0.029 +19800613, 0.29, 0.46, 0.04, 0.029 +19800616, 0.17, -0.13, 0.03, 0.029 +19800617, 0.03, 0.10, 0.16, 0.029 +19800618, 0.15, -0.24, 0.23, 0.029 +19800619, -1.27, 0.83, 0.16, 0.029 +19800620, -0.41, 0.27, 0.22, 0.029 +19800623, 0.39, -0.05, -0.10, 0.029 +19800624, 0.58, -0.11, -0.13, 0.029 +19800625, 1.21, -0.33, -0.09, 0.029 +19800626, -0.36, 0.39, 0.00, 0.029 +19800627, -0.12, 0.33, -0.17, 0.029 +19800630, -1.46, 0.61, 0.14, 0.029 +19800701, 0.55, -0.07, -0.69, 0.024 +19800702, 0.66, 0.16, -0.47, 0.024 +19800703, 1.39, -0.28, -0.52, 0.024 +19800707, 0.76, -0.12, -0.19, 0.024 +19800708, -0.30, 0.39, 0.06, 0.024 +19800709, 0.13, 0.26, -0.08, 0.024 +19800710, -0.75, 0.73, 0.14, 0.024 +19800711, 0.70, 0.04, -0.53, 0.024 +19800714, 1.72, -0.23, -0.97, 0.024 +19800715, -0.46, 0.64, 0.07, 0.024 +19800716, 0.21, 0.38, -0.12, 0.024 +19800717, 1.41, -0.22, -0.83, 0.024 +19800718, 0.33, 0.36, -0.17, 0.024 +19800721, 0.34, -0.03, -0.22, 0.024 +19800722, -0.26, 0.07, 0.20, 0.024 +19800723, -0.16, 0.25, -0.07, 0.024 +19800724, -0.11, 0.27, -0.22, 0.024 +19800725, -0.76, 0.43, 0.06, 0.024 +19800728, 0.43, -0.23, -0.40, 0.024 +19800729, 0.76, 0.07, -0.52, 0.024 +19800730, 0.08, 0.86, -0.52, 0.024 +19800731, -0.38, 0.18, 0.12, 0.024 +19800801, -0.18, 0.88, -0.32, 0.030 +19800804, -0.36, 0.03, 0.34, 0.030 +19800805, -0.02, 0.46, -0.17, 0.030 +19800806, 0.66, 0.01, -0.42, 0.030 +19800807, 1.45, -0.32, -0.77, 0.030 +19800808, 0.29, 0.12, -0.12, 0.030 +19800811, 0.91, -0.22, -0.24, 0.030 +19800812, -0.74, 0.31, 0.17, 0.030 +19800813, -0.28, 0.50, 0.08, 0.030 +19800814, 1.51, -0.16, -0.82, 0.030 +19800815, 0.40, 0.16, -0.23, 0.030 +19800818, -1.79, 0.09, 1.00, 0.030 +19800819, -0.61, 0.05, 0.07, 0.030 +19800820, 0.98, -0.13, -0.39, 0.030 +19800821, 1.47, 0.09, -0.74, 0.030 +19800822, 0.60, 0.21, -0.38, 0.030 +19800825, -0.50, 0.37, -0.20, 0.030 +19800826, -0.12, 0.40, -0.32, 0.030 +19800827, -0.93, 0.57, 0.28, 0.030 +19800828, -1.14, 0.13, 0.68, 0.030 +19800829, 0.26, 0.19, 0.00, 0.030 +19800902, 0.99, -0.28, -0.03, 0.036 +19800903, 1.92, -0.48, -0.41, 0.036 +19800904, -0.38, 0.58, 0.13, 0.036 +19800905, -0.31, 0.69, -0.19, 0.036 +19800908, -1.22, 0.69, 0.19, 0.036 +19800909, 0.54, -0.10, -0.32, 0.036 +19800910, 0.67, 0.34, -0.24, 0.036 +19800911, 0.68, 0.50, -0.96, 0.036 +19800912, 0.08, 0.63, -0.59, 0.036 +19800915, 0.09, 0.07, -0.40, 0.036 +19800916, 0.90, 0.06, -0.78, 0.036 +19800917, 1.50, -0.29, -1.08, 0.036 +19800918, -0.34, 0.16, 0.08, 0.036 +19800919, 0.57, 0.19, -0.45, 0.036 +19800922, 0.76, -0.62, -0.78, 0.036 +19800923, -0.68, -0.40, 0.27, 0.036 +19800924, 0.61, -0.71, -0.52, 0.036 +19800925, -1.17, 0.59, 0.25, 0.036 +19800926, -2.01, -0.06, 0.82, 0.036 +19800929, -2.42, -0.64, 1.08, 0.036 +19800930, 1.50, -0.06, -0.95, 0.036 +19801001, 1.31, -0.35, -1.56, 0.041 +19801002, 0.72, -0.05, -0.58, 0.041 +19801003, 1.11, 0.31, -0.59, 0.041 +19801006, 1.71, -0.24, -0.90, 0.041 +19801007, -0.50, 0.34, 0.05, 0.041 +19801008, 0.48, 0.23, -0.56, 0.041 +19801009, -0.37, 0.55, 0.05, 0.041 +19801010, -0.42, 0.51, 0.40, 0.041 +19801013, 1.13, -0.47, -0.45, 0.041 +19801014, 0.00, 0.25, -0.09, 0.041 +19801015, 1.10, -0.59, -0.55, 0.041 +19801016, -1.20, 0.37, 0.74, 0.041 +19801017, -0.52, 0.15, 0.08, 0.041 +19801020, 0.60, -0.48, 0.05, 0.041 +19801021, -0.63, 0.27, 0.10, 0.041 +19801022, 0.17, 0.41, -0.22, 0.041 +19801023, -1.79, 0.60, 0.90, 0.041 +19801024, 0.25, -0.06, 0.15, 0.041 +19801027, -1.41, 0.58, 0.44, 0.041 +19801028, -0.01, -0.13, -0.54, 0.041 +19801029, -0.14, 0.24, -0.23, 0.041 +19801030, -1.43, 0.44, 0.54, 0.041 +19801031, 0.97, -0.61, -0.20, 0.041 +19801103, 1.10, -0.52, -0.79, 0.053 +19801105, 1.69, -0.37, -1.42, 0.053 +19801106, -1.79, 0.38, 0.24, 0.053 +19801107, 0.12, -0.47, -0.10, 0.053 +19801110, 0.27, -0.18, -0.40, 0.053 +19801111, 1.20, -0.35, -0.23, 0.053 +19801112, 2.35, -0.96, -1.16, 0.053 +19801113, 1.47, -0.34, -0.88, 0.053 +19801114, 0.49, 0.12, -0.49, 0.053 +19801117, 0.39, -0.48, -0.47, 0.053 +19801118, 1.37, -0.60, -0.96, 0.053 +19801119, -0.37, 0.67, -0.58, 0.053 +19801120, 0.91, -0.41, -0.32, 0.053 +19801121, -0.87, 0.68, -0.05, 0.053 +19801124, -0.64, -0.37, 0.81, 0.053 +19801125, 0.76, -0.07, -0.19, 0.053 +19801126, 0.50, 0.08, -0.71, 0.053 +19801128, 0.27, 0.03, 0.06, 0.053 +19801201, -2.21, 0.91, 0.35, 0.059 +19801202, -0.30, -0.39, 0.24, 0.059 +19801203, -0.07, 0.56, -0.37, 0.059 +19801204, -0.12, 0.58, -0.20, 0.059 +19801205, -1.91, 0.60, 0.88, 0.059 +19801208, -2.71, -0.79, 1.68, 0.059 +19801209, -0.21, -0.64, 0.23, 0.059 +19801210, -1.60, 0.30, 0.84, 0.059 +19801211, -1.16, -1.51, 0.50, 0.059 +19801212, 1.38, -0.04, -1.08, 0.059 +19801215, 0.11, 0.24, -0.49, 0.059 +19801216, 0.71, -0.76, -0.47, 0.059 +19801217, 1.52, -0.85, -0.34, 0.059 +19801218, 0.41, 0.21, 1.27, 0.059 +19801219, 0.58, 0.18, 0.60, 0.059 +19801222, 1.28, -0.33, -0.04, 0.059 +19801223, -0.31, 0.55, 0.16, 0.059 +19801224, 0.35, 0.00, 0.19, 0.059 +19801226, 0.46, -0.05, -0.26, 0.059 +19801229, -1.06, 0.40, -0.24, 0.059 +19801230, 0.16, -0.06, -0.44, 0.059 +19801231, 0.35, 0.60, -0.33, 0.059 +19810102, 0.56, 0.22, 0.64, 0.049 +19810105, 0.95, -0.23, 0.94, 0.049 +19810106, 0.05, 0.19, 0.84, 0.049 +19810107, -2.65, -1.27, 1.80, 0.049 +19810108, -1.37, 0.72, 0.64, 0.049 +19810109, 0.37, 0.67, -0.35, 0.049 +19810112, 0.02, 0.38, 0.45, 0.049 +19810113, -0.33, 0.17, 0.05, 0.049 +19810114, 0.27, 0.21, -0.36, 0.049 +19810115, 0.50, 0.01, -0.47, 0.049 +19810116, 0.49, -0.06, -0.09, 0.049 +19810119, -0.25, 0.30, 0.17, 0.049 +19810120, -1.89, 0.65, 0.58, 0.049 +19810121, -0.36, -0.01, 0.32, 0.049 +19810122, -0.83, 0.44, 0.09, 0.049 +19810123, -0.05, 0.22, -0.19, 0.049 +19810126, -0.51, -0.15, 0.37, 0.049 +19810127, 1.01, -0.45, -0.31, 0.049 +19810128, -0.46, 0.42, 0.35, 0.049 +19810129, -0.08, 0.30, 0.45, 0.049 +19810130, -0.48, 0.34, 0.95, 0.049 +19810202, -2.25, -0.15, 1.79, 0.056 +19810203, 1.08, -0.93, -0.48, 0.056 +19810204, 0.21, 0.49, -0.14, 0.056 +19810205, 0.94, 0.11, -0.26, 0.056 +19810206, 0.77, 0.16, -0.44, 0.056 +19810209, -0.99, 0.69, 0.53, 0.056 +19810210, -0.14, 0.05, 0.13, 0.056 +19810211, -0.74, 0.41, 0.52, 0.056 +19810212, -0.66, 0.04, 0.56, 0.056 +19810213, -0.31, 0.07, -0.10, 0.056 +19810217, 0.43, -0.58, -0.04, 0.056 +19810218, 0.45, -0.27, -0.51, 0.056 +19810219, -1.47, 0.36, 0.55, 0.056 +19810220, -0.19, -0.20, 0.50, 0.056 +19810223, 0.53, -0.33, -0.13, 0.056 +19810224, 0.17, 0.20, -0.13, 0.056 +19810225, 0.70, -0.76, -0.23, 0.056 +19810226, 1.17, 0.13, -0.73, 0.056 +19810227, 0.95, 0.11, -0.53, 0.056 +19810302, 0.60, 0.04, -0.45, 0.055 +19810303, -0.92, 0.75, 0.56, 0.055 +19810304, 0.14, -0.02, 0.29, 0.055 +19810305, -0.51, 0.64, 0.19, 0.055 +19810306, -0.09, 0.43, 0.16, 0.055 +19810309, 0.72, -0.29, -0.53, 0.055 +19810310, -0.47, -0.07, 0.58, 0.055 +19810311, -0.32, 0.06, 0.37, 0.055 +19810312, 2.23, -0.99, -0.69, 0.055 +19810313, 0.03, 0.24, 0.50, 0.055 +19810316, 1.01, -0.27, -0.07, 0.055 +19810317, -0.45, 0.34, 0.74, 0.055 +19810318, 0.23, 0.25, 0.31, 0.055 +19810319, -0.50, 0.90, 0.59, 0.055 +19810320, 0.63, 0.42, -0.30, 0.055 +19810323, 1.02, -0.39, -1.01, 0.055 +19810324, -0.60, 0.48, -0.30, 0.055 +19810325, 1.54, -0.57, -0.45, 0.055 +19810326, -0.45, 0.52, 0.12, 0.055 +19810327, -1.01, 0.67, 0.10, 0.055 +19810330, -0.30, 0.22, -0.07, 0.055 +19810331, 1.05, -0.18, -0.10, 0.055 +19810401, 0.49, 0.19, 0.00, 0.051 +19810402, -0.08, 0.39, 0.18, 0.051 +19810403, -0.48, 0.63, 0.23, 0.051 +19810406, -1.11, 0.35, 0.17, 0.051 +19810407, -0.04, 0.33, 0.27, 0.051 +19810408, 0.32, 0.02, 0.22, 0.051 +19810409, 0.37, 0.21, 0.45, 0.051 +19810410, 0.03, 0.56, -0.14, 0.051 +19810413, -1.05, 0.49, 0.31, 0.051 +19810414, -0.56, 0.06, 0.74, 0.051 +19810415, 1.01, -0.13, -0.39, 0.051 +19810416, 0.44, 0.42, -0.42, 0.051 +19810420, 0.54, 0.06, -0.32, 0.051 +19810421, -0.95, 0.56, 0.36, 0.051 +19810422, -0.08, 0.16, 0.38, 0.051 +19810423, -0.03, 0.58, -0.01, 0.051 +19810424, 0.72, -0.18, -0.15, 0.051 +19810427, 0.20, -0.25, 0.04, 0.051 +19810428, -0.95, -0.29, 0.62, 0.051 +19810429, -0.94, 0.14, 0.21, 0.051 +19810430, 0.01, 0.23, -0.42, 0.051 +19810501, -0.17, 0.02, -0.30, 0.057 +19810504, -1.53, -0.35, 0.43, 0.057 +19810505, -0.41, -0.37, -0.35, 0.057 +19810506, 0.40, -0.05, -0.39, 0.057 +19810507, 0.70, -0.23, -0.34, 0.057 +19810508, 0.08, 0.35, 0.07, 0.057 +19810511, -1.42, 0.33, 0.73, 0.057 +19810512, 0.65, -0.66, 0.17, 0.057 +19810513, -0.04, 0.59, -0.17, 0.057 +19810514, 0.56, 0.00, 0.21, 0.057 +19810515, 0.61, -0.20, 0.22, 0.057 +19810518, 0.16, 0.06, -0.34, 0.057 +19810519, -0.32, 0.05, -0.01, 0.057 +19810520, 0.10, 0.45, -0.39, 0.057 +19810521, -0.11, 0.35, 0.12, 0.057 +19810522, -0.01, 0.38, -0.13, 0.057 +19810526, 0.88, -0.52, -0.39, 0.057 +19810527, 0.65, 0.22, -0.21, 0.057 +19810528, -0.17, 0.83, 0.29, 0.057 +19810529, -0.46, 0.61, 0.35, 0.057 +19810601, -0.23, 0.45, 0.37, 0.061 +19810602, -1.45, 0.18, 0.88, 0.061 +19810603, -0.03, -0.03, 0.13, 0.061 +19810604, 0.15, 0.04, -0.10, 0.061 +19810605, 0.85, -0.60, -0.30, 0.061 +19810608, -0.03, -0.16, 0.44, 0.061 +19810609, -0.34, -0.10, 0.31, 0.061 +19810610, 0.25, -0.18, 0.40, 0.061 +19810611, 1.01, -0.02, 0.10, 0.061 +19810612, -0.04, 0.38, 0.48, 0.061 +19810615, 0.06, -0.04, 1.11, 0.061 +19810616, -1.16, 0.06, 1.37, 0.061 +19810617, 0.68, -0.69, -0.23, 0.061 +19810618, -1.21, 0.53, 0.28, 0.061 +19810619, 0.38, -0.22, -0.35, 0.061 +19810622, -0.21, -0.10, 0.26, 0.061 +19810623, 0.93, -0.73, -0.16, 0.061 +19810624, -0.55, 0.53, 0.18, 0.061 +19810625, 0.10, -0.05, -0.08, 0.061 +19810626, -0.23, 0.24, -0.23, 0.061 +19810629, -0.68, -0.13, 0.35, 0.061 +19810630, -0.65, -0.20, 0.05, 0.061 +19810701, -0.98, 0.35, -0.02, 0.056 +19810702, -0.95, 0.04, 0.54, 0.056 +19810706, -1.12, -0.46, 0.82, 0.056 +19810707, 0.32, -0.80, -0.15, 0.056 +19810708, 0.09, -0.13, -0.01, 0.056 +19810709, 0.66, -0.18, -0.61, 0.056 +19810710, 0.10, 0.23, -0.12, 0.056 +19810713, 0.12, -0.18, 0.28, 0.056 +19810714, -0.12, -0.35, -0.35, 0.056 +19810715, 0.38, 0.15, -0.23, 0.056 +19810716, 0.14, 0.15, -0.28, 0.056 +19810717, 0.29, 0.02, -0.26, 0.056 +19810720, -1.59, 0.23, 0.31, 0.056 +19810721, -0.50, -0.55, -0.09, 0.056 +19810722, -0.88, 0.37, 0.31, 0.056 +19810723, 0.12, -0.33, -0.24, 0.056 +19810724, 0.80, -0.33, 0.01, 0.056 +19810727, 0.81, -0.34, -0.41, 0.056 +19810728, -0.51, 0.27, 0.28, 0.056 +19810729, -0.03, -0.05, 0.33, 0.056 +19810730, 0.57, -0.07, -0.44, 0.056 +19810731, 0.77, -0.21, -0.33, 0.056 +19810803, -0.34, -0.14, 0.12, 0.061 +19810804, 0.42, -0.51, -0.46, 0.061 +19810805, 1.05, -0.60, -0.26, 0.061 +19810806, 0.10, 0.14, 0.12, 0.061 +19810807, -0.45, 0.19, 0.24, 0.061 +19810810, 0.34, -0.72, 0.05, 0.061 +19810811, 0.84, -0.63, -0.10, 0.061 +19810812, -0.24, 0.32, 0.29, 0.061 +19810813, 0.06, 0.05, -0.27, 0.061 +19810814, -0.69, 0.58, 0.14, 0.061 +19810817, -1.02, 0.03, 0.61, 0.061 +19810818, -1.11, -0.17, 0.71, 0.061 +19810819, 0.19, -0.21, -0.27, 0.061 +19810820, 0.15, 0.12, -0.25, 0.061 +19810821, -1.03, 0.41, 0.88, 0.061 +19810824, -2.97, 0.08, 1.82, 0.061 +19810825, -0.53, -1.07, -0.15, 0.061 +19810826, -0.12, -0.06, 0.19, 0.061 +19810827, -1.08, 0.27, 0.81, 0.061 +19810828, 0.41, -0.19, -0.03, 0.061 +19810831, -1.15, 0.05, 0.87, 0.061 +19810901, 0.13, -0.50, -0.11, 0.059 +19810902, 0.26, 0.05, -0.14, 0.059 +19810903, -1.92, 0.25, 1.19, 0.059 +19810904, -1.04, 0.02, 0.42, 0.059 +19810908, -1.96, -0.79, 1.09, 0.059 +19810909, 0.25, -0.30, -0.21, 0.059 +19810910, 1.49, 0.00, -0.72, 0.059 +19810911, 1.15, -0.06, -0.25, 0.059 +19810914, -0.78, 0.68, -0.04, 0.059 +19810915, -0.59, 0.46, 0.42, 0.059 +19810916, -0.84, -0.30, 1.10, 0.059 +19810917, -1.49, 0.14, 1.30, 0.059 +19810918, -0.92, -0.26, 0.77, 0.059 +19810921, 0.54, -0.82, 0.25, 0.059 +19810922, -0.52, 0.18, 0.47, 0.059 +19810923, -1.22, -0.90, 0.90, 0.059 +19810924, -0.40, 0.28, 0.19, 0.059 +19810925, -2.40, -1.16, 1.74, 0.059 +19810928, 1.93, -1.82, -1.56, 0.059 +19810929, 0.85, 1.54, -1.27, 0.059 +19810930, 0.26, 0.50, -0.33, 0.059 +19811001, 0.66, 0.02, -0.83, 0.054 +19811002, 1.97, -0.19, -0.99, 0.054 +19811005, 0.31, 0.61, -0.22, 0.054 +19811006, -0.14, 0.33, -0.94, 0.054 +19811007, 1.55, -0.07, -0.82, 0.054 +19811008, 0.88, 0.39, -0.66, 0.054 +19811009, -0.51, 0.59, 0.88, 0.054 +19811012, -0.21, 0.31, 0.28, 0.054 +19811013, -0.22, 0.49, -0.10, 0.054 +19811014, -1.58, 0.41, 1.01, 0.054 +19811015, 0.55, -0.40, -0.17, 0.054 +19811016, -0.36, 0.36, 0.32, 0.054 +19811019, -0.21, -0.18, 0.27, 0.054 +19811020, 0.95, -0.37, -0.60, 0.054 +19811021, -0.12, 0.42, -0.47, 0.054 +19811022, -0.37, 0.07, -0.01, 0.054 +19811023, -0.80, 0.42, 0.09, 0.054 +19811026, -0.45, -0.15, -0.12, 0.054 +19811027, 0.94, -0.19, -0.50, 0.054 +19811028, 0.22, 0.21, -0.21, 0.054 +19811029, -0.38, 0.09, 0.03, 0.054 +19811030, 2.15, -1.20, -0.22, 0.054 +19811102, 1.89, -0.49, -1.36, 0.053 +19811103, 0.44, 0.20, -0.15, 0.053 +19811104, 0.13, 0.13, 0.09, 0.053 +19811105, -0.70, 0.59, 0.66, 0.053 +19811106, -0.51, 0.28, 0.48, 0.053 +19811109, 0.35, -0.62, 0.73, 0.053 +19811110, -0.40, 0.40, 0.62, 0.053 +19811111, 0.12, -0.23, 0.49, 0.053 +19811112, 0.21, 0.11, 0.52, 0.053 +19811113, -1.16, 0.61, 1.11, 0.053 +19811116, -1.31, -0.27, 1.08, 0.053 +19811117, 0.51, -0.67, 0.07, 0.053 +19811118, -0.45, 0.38, 0.41, 0.053 +19811119, 0.42, -0.42, -0.57, 0.053 +19811120, 0.87, -0.18, -0.51, 0.053 +19811123, -0.10, 0.11, -0.41, 0.053 +19811124, 1.21, -0.78, -0.16, 0.053 +19811125, 0.34, 0.17, -0.03, 0.053 +19811127, 0.70, -0.05, -0.39, 0.053 +19811130, 0.79, -0.28, -0.87, 0.053 +19811201, -0.23, 0.17, 0.09, 0.040 +19811202, -1.01, 0.61, 0.28, 0.040 +19811203, 0.31, -0.44, -0.18, 0.040 +19811204, 0.65, -0.21, -0.09, 0.040 +19811207, -0.78, 0.16, 0.41, 0.040 +19811208, -0.48, -0.33, 0.11, 0.040 +19811209, 0.46, -0.26, -0.50, 0.040 +19811210, 0.14, 0.15, -0.02, 0.040 +19811211, -0.57, 0.46, -0.03, 0.040 +19811214, -1.59, 0.16, 0.61, 0.040 +19811215, 0.04, 0.05, 0.02, 0.040 +19811216, -0.37, 0.37, -0.12, 0.040 +19811217, 0.40, -0.17, -0.65, 0.040 +19811218, 0.63, -0.14, -0.43, 0.040 +19811221, -0.47, 0.05, 0.37, 0.040 +19811222, -0.39, 0.08, 0.41, 0.040 +19811223, -0.40, 0.28, 0.21, 0.040 +19811224, 0.21, -0.02, -0.15, 0.040 +19811228, -0.27, -0.09, 0.27, 0.040 +19811229, -0.56, -0.02, 0.42, 0.040 +19811230, 0.34, -0.13, -0.12, 0.040 +19811231, 0.31, 0.44, -0.20, 0.040 +19820104, 0.16, -0.01, 0.59, 0.040 +19820105, -2.03, 0.66, 1.48, 0.040 +19820106, -0.81, -0.07, 0.73, 0.040 +19820107, -0.27, 0.24, 0.07, 0.040 +19820108, 0.46, -0.01, 0.08, 0.040 +19820111, -2.33, 0.22, 1.79, 0.040 +19820112, -0.55, -0.35, 0.12, 0.040 +19820113, -1.28, 0.41, 0.31, 0.040 +19820114, 0.48, -0.38, -0.39, 0.040 +19820115, 0.60, 0.13, -0.81, 0.040 +19820118, 0.58, -0.56, -0.52, 0.040 +19820119, -0.95, 0.51, 0.79, 0.040 +19820120, -0.61, 0.22, 0.56, 0.040 +19820121, 0.30, -0.34, 0.02, 0.040 +19820122, -0.38, 0.02, 0.64, 0.040 +19820125, -0.40, -0.94, 0.31, 0.040 +19820126, -0.17, -0.03, 0.09, 0.040 +19820127, 0.35, -0.38, -0.24, 0.040 +19820128, 2.53, -0.73, -1.75, 0.040 +19820129, 1.12, 0.03, -0.73, 0.040 +19820201, -1.79, 0.96, 0.80, 0.048 +19820202, 0.27, 0.01, -0.16, 0.048 +19820203, -0.93, 0.79, 0.55, 0.048 +19820204, -0.20, -0.01, 0.22, 0.048 +19820205, 0.76, -0.11, -0.09, 0.048 +19820208, -2.16, 0.27, 1.60, 0.048 +19820209, -0.94, -0.34, 0.94, 0.048 +19820210, 0.61, -0.47, -0.12, 0.048 +19820211, -0.14, -0.21, 0.44, 0.048 +19820212, -0.07, 0.15, -0.10, 0.048 +19820216, -0.46, -0.31, 0.11, 0.048 +19820217, -0.19, 0.45, -0.38, 0.048 +19820218, 0.06, -0.08, -0.43, 0.048 +19820219, -0.47, -0.07, 0.45, 0.048 +19820222, -1.25, 0.43, 1.63, 0.048 +19820223, -0.22, -0.66, 1.00, 0.048 +19820224, 1.40, -0.97, -0.27, 0.048 +19820225, -0.04, 0.65, -0.28, 0.048 +19820226, -0.16, -0.01, 0.43, 0.048 +19820301, 0.24, -0.04, 0.32, 0.042 +19820302, -0.38, 0.30, 1.13, 0.042 +19820303, -1.52, -0.07, 2.00, 0.042 +19820304, -1.08, -0.15, 1.44, 0.042 +19820305, -0.69, -0.60, 1.70, 0.042 +19820308, -1.61, -0.19, 2.10, 0.042 +19820309, 0.70, -1.33, -0.60, 0.042 +19820310, 0.50, 0.12, -0.49, 0.042 +19820311, -0.12, -0.07, 0.27, 0.042 +19820312, -0.80, -0.01, 0.57, 0.042 +19820315, 0.49, -0.63, -1.00, 0.042 +19820316, -0.06, 0.41, -0.26, 0.042 +19820317, -0.15, 0.17, -0.11, 0.042 +19820318, 1.12, -0.05, -0.97, 0.042 +19820319, 0.30, 0.45, -0.35, 0.042 +19820322, 1.88, -0.30, -1.66, 0.042 +19820323, 0.59, 0.01, -0.56, 0.042 +19820324, -0.45, 0.50, 0.19, 0.042 +19820325, 0.31, 0.36, -0.35, 0.042 +19820326, -0.89, 0.58, 0.34, 0.042 +19820329, 0.12, 0.03, -0.23, 0.042 +19820330, 0.01, 0.06, 0.01, 0.042 +19820331, -0.22, 0.20, 0.08, 0.042 +19820401, 1.37, -0.37, -1.02, 0.053 +19820402, 1.06, -0.31, -1.14, 0.053 +19820405, -0.31, 0.40, -0.15, 0.053 +19820406, 0.48, -0.24, -0.11, 0.053 +19820407, 0.15, 0.30, -0.24, 0.053 +19820408, 0.59, -0.05, -0.33, 0.053 +19820412, -0.22, 0.17, 0.17, 0.053 +19820413, -0.04, 0.13, 0.23, 0.053 +19820414, -0.17, -0.03, 0.25, 0.053 +19820415, 0.39, 0.01, -0.50, 0.053 +19820416, 0.45, 0.01, -0.31, 0.053 +19820419, -0.09, 0.19, 0.52, 0.053 +19820420, -0.94, 0.57, 0.68, 0.053 +19820421, 0.22, 0.00, 0.22, 0.053 +19820422, 1.01, -0.44, -0.57, 0.053 +19820423, 1.04, -0.35, -0.79, 0.053 +19820426, 0.42, 0.03, -0.48, 0.053 +19820427, -0.91, 0.43, 0.35, 0.053 +19820428, -0.61, 0.61, -0.05, 0.053 +19820429, -0.90, 0.46, 0.42, 0.053 +19820430, 0.17, -0.02, -0.18, 0.053 +19820503, 0.27, -0.31, 0.05, 0.053 +19820504, 0.59, -0.06, -0.19, 0.053 +19820505, 0.12, -0.24, 0.12, 0.053 +19820506, 0.83, -0.13, -0.13, 0.053 +19820507, 0.69, -0.30, -0.19, 0.053 +19820510, -0.75, 0.36, 0.11, 0.053 +19820511, 0.79, -0.32, -0.46, 0.053 +19820512, -0.31, 0.17, 0.24, 0.053 +19820513, -0.62, 0.52, 0.03, 0.053 +19820514, -0.13, 0.23, -0.06, 0.053 +19820517, -1.07, 0.32, 0.45, 0.053 +19820518, -0.82, 0.02, 0.32, 0.053 +19820519, -0.76, 0.15, 0.40, 0.053 +19820520, -0.44, -0.33, 0.32, 0.053 +19820521, 0.16, -0.37, 0.19, 0.053 +19820524, -0.08, -0.38, -0.18, 0.053 +19820525, -0.30, 0.12, 0.19, 0.053 +19820526, -1.26, -0.02, 0.60, 0.053 +19820527, -0.47, -0.01, -0.01, 0.053 +19820528, -0.38, 0.77, 0.01, 0.053 +19820601, -0.39, -0.24, -0.16, 0.043 +19820602, 0.31, -0.02, -0.05, 0.043 +19820603, -0.22, -0.01, 0.36, 0.043 +19820604, -1.52, 0.39, 0.81, 0.043 +19820607, -0.14, -0.48, 0.05, 0.043 +19820608, -0.44, -0.02, 0.23, 0.043 +19820609, -0.69, -0.25, 0.25, 0.043 +19820610, 0.37, -0.16, -0.31, 0.043 +19820611, 1.52, -0.21, -0.43, 0.043 +19820614, -1.14, 0.39, 0.72, 0.043 +19820615, -0.37, -0.09, 0.26, 0.043 +19820616, -0.56, 0.55, 0.30, 0.043 +19820617, -1.05, 0.13, 0.71, 0.043 +19820618, -0.55, -0.14, 0.19, 0.043 +19820621, -0.07, 0.15, -0.17, 0.043 +19820622, 0.76, -0.41, -0.73, 0.043 +19820623, 1.52, -0.51, -1.19, 0.043 +19820624, -0.19, 0.42, 0.21, 0.043 +19820625, -0.58, 0.32, 0.04, 0.043 +19820628, 0.74, -0.48, -0.61, 0.043 +19820629, 0.01, -0.28, 0.61, 0.043 +19820630, -0.39, 0.67, 0.69, 0.043 +19820701, -0.79, 0.35, 0.54, 0.050 +19820702, -0.75, 0.55, 0.45, 0.050 +19820706, -0.43, 0.03, 0.16, 0.050 +19820707, -0.21, -0.08, 0.13, 0.050 +19820708, 0.03, -0.74, -0.12, 0.050 +19820709, 1.08, -0.14, -0.38, 0.050 +19820712, 0.67, -0.09, 0.15, 0.050 +19820713, -0.12, 0.21, -0.31, 0.050 +19820714, 0.60, -0.76, -0.59, 0.050 +19820715, 0.04, 0.15, -0.14, 0.050 +19820716, 0.43, -0.32, -0.49, 0.050 +19820719, -0.25, 0.29, 0.24, 0.050 +19820720, 0.53, -0.25, -0.06, 0.050 +19820721, 0.00, 0.35, -0.22, 0.050 +19820722, 0.03, 0.26, -0.02, 0.050 +19820723, -0.33, 0.38, 0.17, 0.050 +19820726, -0.70, 0.23, 0.03, 0.050 +19820727, -0.80, 0.48, 0.07, 0.050 +19820728, -1.55, 0.14, 0.61, 0.050 +19820729, -0.16, -0.48, -0.24, 0.050 +19820730, -0.45, 0.35, 0.15, 0.050 +19820802, 1.56, -0.99, -0.01, 0.035 +19820803, -0.83, 0.69, 0.46, 0.035 +19820804, -1.46, 0.54, 0.86, 0.035 +19820805, -0.81, -0.05, 0.64, 0.035 +19820806, -1.20, 0.37, 0.91, 0.035 +19820809, -0.79, -0.90, 0.44, 0.035 +19820810, -0.17, 0.00, 0.21, 0.035 +19820811, -0.33, -0.19, 0.63, 0.035 +19820812, -0.30, -0.25, 0.64, 0.035 +19820813, 1.09, -1.36, 0.75, 0.035 +19820816, 0.41, 0.30, 0.48, 0.035 +19820817, 4.09, -2.41, 0.15, 0.035 +19820818, 0.12, 1.55, -0.40, 0.035 +19820819, 0.21, -0.46, 0.16, 0.035 +19820820, 3.08, -1.70, -0.44, 0.035 +19820823, 2.59, -1.01, -0.68, 0.035 +19820824, -0.25, 1.25, -0.62, 0.035 +19820825, 2.00, -0.26, -0.94, 0.035 +19820826, 1.07, 0.69, -1.13, 0.035 +19820827, -1.07, 0.96, -0.46, 0.035 +19820830, 0.36, -0.33, -0.41, 0.035 +19820831, 1.43, -0.41, -0.24, 0.035 +19820901, -0.88, 0.60, 0.53, 0.024 +19820902, 1.56, -0.35, -0.70, 0.024 +19820903, 1.80, -0.94, -0.60, 0.024 +19820907, -0.96, 0.69, 0.38, 0.024 +19820908, 0.67, 0.01, -0.36, 0.024 +19820909, 0.01, 0.64, 0.03, 0.024 +19820910, -0.73, 0.48, 0.29, 0.024 +19820913, 0.81, -0.77, -0.23, 0.024 +19820914, 0.81, 0.00, -0.28, 0.024 +19820915, 0.80, -0.21, -0.22, 0.024 +19820916, -0.15, 0.56, -0.21, 0.024 +19820917, -0.93, 0.62, 0.12, 0.024 +19820920, -0.11, -0.30, 0.13, 0.024 +19820921, 1.68, -0.74, -0.35, 0.024 +19820922, -0.46, 0.72, 0.47, 0.024 +19820923, -0.19, -0.08, -0.02, 0.024 +19820924, -0.28, 0.52, -0.19, 0.024 +19820927, 0.18, -0.23, 0.09, 0.024 +19820928, -0.20, 0.43, 0.15, 0.024 +19820929, -1.23, 0.51, 0.65, 0.024 +19820930, -0.85, 0.56, 0.52, 0.024 +19821001, 1.10, -0.66, 0.01, 0.028 +19821004, -0.29, 0.02, -0.02, 0.028 +19821005, 0.42, 0.10, -0.23, 0.028 +19821006, 2.92, -1.35, -0.97, 0.028 +19821007, 2.05, -0.46, -0.38, 0.028 +19821008, 1.74, -0.49, 0.26, 0.028 +19821011, 2.24, -0.53, 0.11, 0.028 +19821012, -0.10, 0.25, -0.12, 0.028 +19821013, 1.80, 0.23, -1.09, 0.028 +19821014, -1.28, 1.41, 0.23, 0.028 +19821015, -0.60, 0.66, 0.10, 0.028 +19821018, 2.03, -0.87, -0.65, 0.028 +19821019, -0.01, 0.21, 0.30, 0.028 +19821020, 1.87, -0.56, -0.55, 0.028 +19821021, 0.00, 0.72, -0.77, 0.028 +19821022, 0.04, 1.19, -0.18, 0.028 +19821025, -3.62, 1.47, 0.56, 0.028 +19821026, 0.55, -1.39, -0.11, 0.028 +19821027, 0.77, 0.83, -0.30, 0.028 +19821028, -1.02, 1.15, 0.30, 0.028 +19821029, 0.26, 0.08, 0.20, 0.028 +19821101, 1.15, -0.51, -0.32, 0.030 +19821102, 1.53, 0.12, -0.03, 0.030 +19821103, 3.56, -1.15, -0.55, 0.030 +19821104, -0.36, 1.04, -0.06, 0.030 +19821105, 0.48, 0.53, -0.04, 0.030 +19821108, -0.96, 1.04, -0.04, 0.030 +19821109, 1.64, 0.07, -0.47, 0.030 +19821110, -1.05, 1.06, -0.04, 0.030 +19821111, 0.44, -0.02, -0.26, 0.030 +19821112, -0.98, 1.50, 0.39, 0.030 +19821115, -1.75, 0.37, 0.83, 0.030 +19821116, -1.38, -0.49, 0.74, 0.030 +19821117, 1.67, -0.49, -0.47, 0.030 +19821118, 0.44, 0.38, -0.35, 0.030 +19821119, -0.67, 0.88, 0.04, 0.030 +19821122, -1.96, 0.70, 0.79, 0.030 +19821123, -0.80, 0.43, 0.01, 0.030 +19821124, 0.72, -0.14, -0.24, 0.030 +19821126, 0.71, 0.08, -0.55, 0.030 +19821129, -0.48, 0.30, -0.01, 0.030 +19821130, 2.81, -1.33, -1.33, 0.030 +19821201, 0.34, 0.94, -0.62, 0.031 +19821202, 0.01, 0.08, 0.01, 0.031 +19821203, -0.08, 0.14, 0.01, 0.031 +19821206, 1.80, -1.06, -0.97, 0.031 +19821207, 0.60, 0.22, -0.50, 0.031 +19821208, -0.44, 0.86, -0.05, 0.031 +19821209, -1.18, 0.20, 0.56, 0.031 +19821210, -0.59, -0.60, 0.37, 0.031 +19821213, 0.16, -0.59, 0.37, 0.031 +19821214, -1.58, 0.48, 1.44, 0.031 +19821215, -1.69, -0.50, 0.83, 0.031 +19821216, -0.14, -0.24, -0.31, 0.031 +19821217, 1.45, -0.17, -1.10, 0.031 +19821220, -0.81, 0.44, 0.22, 0.031 +19821221, 1.36, -0.98, -0.27, 0.031 +19821222, 0.24, 0.45, -0.36, 0.031 +19821223, 0.58, -0.13, 0.02, 0.031 +19821227, 1.43, -1.04, 0.12, 0.031 +19821228, -0.80, 0.54, 0.45, 0.031 +19821229, 0.30, -0.24, -0.12, 0.031 +19821230, -0.58, 0.47, 0.16, 0.031 +19821231, 0.31, 0.43, -0.39, 0.031 +19830103, -1.45, 0.76, 1.02, 0.033 +19830104, 1.67, -1.30, -0.18, 0.033 +19830105, 0.50, 0.25, 0.19, 0.033 +19830106, 2.28, -0.48, -0.50, 0.033 +19830107, 0.08, 0.66, 0.08, 0.033 +19830110, 1.12, 0.06, -0.53, 0.033 +19830111, -0.55, 0.62, 0.20, 0.033 +19830112, 0.62, 0.10, -0.07, 0.033 +19830113, -0.49, 0.40, 0.04, 0.033 +19830114, 0.61, 0.44, -0.12, 0.033 +19830117, 0.19, 0.48, -0.39, 0.033 +19830118, -0.14, 0.13, -0.16, 0.033 +19830119, -0.75, 0.09, 0.03, 0.033 +19830120, 0.47, -0.44, 0.07, 0.033 +19830121, -1.52, 0.54, 0.52, 0.033 +19830124, -2.75, -0.26, 0.86, 0.033 +19830125, 1.14, -0.36, -0.19, 0.033 +19830126, 0.05, 0.83, -0.47, 0.033 +19830127, 1.76, -0.44, -0.69, 0.033 +19830128, 0.22, 0.52, -0.23, 0.033 +19830131, 0.57, -0.07, -0.27, 0.033 +19830201, -1.15, 1.02, 0.64, 0.032 +19830202, 0.01, -0.05, 0.40, 0.032 +19830203, 0.72, -0.15, 0.27, 0.032 +19830204, 1.27, -0.24, -0.62, 0.032 +19830207, 0.51, 0.04, 0.33, 0.032 +19830208, -0.71, 0.60, 0.30, 0.032 +19830209, -0.36, 0.66, -0.09, 0.032 +19830210, 1.50, -0.35, -0.53, 0.032 +19830211, 0.15, 0.35, -0.40, 0.032 +19830214, 0.87, -0.14, -0.88, 0.032 +19830215, -0.20, 0.54, -0.40, 0.032 +19830216, -0.52, 0.52, 0.32, 0.032 +19830217, -0.06, -0.06, 0.08, 0.032 +19830218, 0.42, 0.30, -0.03, 0.032 +19830222, -1.33, 0.52, 0.68, 0.032 +19830223, 0.76, -0.52, -0.07, 0.032 +19830224, 1.64, -0.80, -0.44, 0.032 +19830225, 0.09, -0.06, 0.51, 0.032 +19830228, -0.99, 0.77, 0.44, 0.032 +19830301, 1.54, -1.17, 0.52, 0.027 +19830302, 0.86, -0.16, -0.13, 0.027 +19830303, 0.74, 0.11, 0.18, 0.027 +19830304, 0.18, 0.16, 0.39, 0.027 +19830307, 0.01, 0.36, 0.18, 0.027 +19830308, -1.35, 0.73, 0.72, 0.027 +19830309, 0.89, -0.23, -0.40, 0.027 +19830310, -0.50, 0.90, 0.12, 0.027 +19830311, -0.34, 0.16, 0.16, 0.027 +19830314, -0.43, -0.15, 0.37, 0.027 +19830315, 0.20, -0.43, 0.22, 0.027 +19830316, -0.76, 0.83, 0.48, 0.027 +19830317, -0.21, -0.14, 0.23, 0.027 +19830318, 0.21, 0.22, -0.23, 0.027 +19830321, 0.68, -0.34, -0.10, 0.027 +19830322, -0.20, 0.61, -0.06, 0.027 +19830323, 1.23, -0.43, -0.24, 0.027 +19830324, 0.39, 0.24, 0.10, 0.027 +19830325, -0.28, 0.45, -0.19, 0.027 +19830328, -0.58, 0.09, 0.11, 0.027 +19830329, -0.17, 0.04, -0.15, 0.027 +19830330, 0.96, -0.50, -0.34, 0.027 +19830331, -0.21, 0.32, 0.07, 0.027 +19830404, -0.07, -0.49, 0.31, 0.036 +19830405, -0.59, 0.69, 0.14, 0.036 +19830406, -0.67, -0.20, 0.68, 0.036 +19830407, 0.33, -0.23, 0.30, 0.036 +19830408, 0.58, -0.13, 0.07, 0.036 +19830411, 1.28, -0.41, -0.44, 0.036 +19830412, 0.44, 0.16, -0.14, 0.036 +19830413, 0.70, 0.28, -0.19, 0.036 +19830414, 0.83, 0.29, -0.24, 0.036 +19830415, 0.50, 0.17, -0.05, 0.036 +19830418, 0.60, -0.03, -0.02, 0.036 +19830419, -0.62, 0.41, 0.04, 0.036 +19830420, 1.12, -0.20, -0.21, 0.036 +19830421, -0.24, 0.56, 0.20, 0.036 +19830422, 0.22, 0.28, 0.01, 0.036 +19830425, -0.93, 0.27, 0.40, 0.036 +19830426, 1.48, -0.96, -0.02, 0.036 +19830427, -0.11, 0.24, -0.02, 0.036 +19830428, 0.87, -0.23, -0.05, 0.036 +19830429, 0.75, 0.01, -0.28, 0.036 +19830502, -1.25, 0.68, 0.29, 0.033 +19830503, 0.01, -0.18, 0.12, 0.033 +19830504, 0.83, 0.23, -0.13, 0.033 +19830505, 0.83, 0.53, -0.22, 0.033 +19830506, 1.15, 0.30, -0.28, 0.033 +19830509, 0.01, 0.57, -0.15, 0.033 +19830510, 0.22, 0.67, 0.07, 0.033 +19830511, -0.57, 0.19, 0.37, 0.033 +19830512, -0.36, 0.26, -0.07, 0.033 +19830513, 0.44, 0.45, -0.22, 0.033 +19830516, -0.98, -0.32, 0.07, 0.033 +19830517, 0.34, 0.29, -0.07, 0.033 +19830518, 0.01, 0.74, -0.40, 0.033 +19830519, -0.67, 0.19, -0.10, 0.033 +19830520, -0.02, 0.00, -0.13, 0.033 +19830523, 0.69, -0.73, -0.36, 0.033 +19830524, 1.24, 0.10, -0.21, 0.033 +19830525, 0.49, 0.30, -0.10, 0.033 +19830526, -0.22, 0.63, -0.05, 0.033 +19830527, -0.40, 0.75, 0.02, 0.033 +19830531, -1.20, 0.32, 0.27, 0.033 +19830601, 0.01, -0.25, -0.27, 0.030 +19830602, 0.78, 0.01, -0.44, 0.030 +19830603, 0.41, 0.57, -0.52, 0.030 +19830606, 0.32, 0.14, -0.38, 0.030 +19830607, -0.94, 0.87, -0.03, 0.030 +19830608, -0.84, 0.06, -0.19, 0.030 +19830609, 0.23, 0.01, -0.02, 0.030 +19830610, 0.65, 0.36, -0.04, 0.030 +19830613, 1.16, -0.22, -0.13, 0.030 +19830614, 0.41, 0.22, -0.17, 0.030 +19830615, 0.87, -0.10, -0.41, 0.030 +19830616, 1.05, -0.12, -0.41, 0.030 +19830617, -0.03, 0.04, -0.12, 0.030 +19830620, -0.13, 0.02, -0.04, 0.030 +19830621, 0.69, -0.36, -0.38, 0.030 +19830622, 0.24, 0.16, -0.23, 0.030 +19830623, -0.22, 0.08, -0.40, 0.030 +19830624, 0.16, 0.27, -0.31, 0.030 +19830627, -1.17, -0.16, 0.48, 0.030 +19830628, -1.85, -0.49, 0.81, 0.030 +19830629, 0.42, -0.44, -0.39, 0.030 +19830630, 0.83, 0.19, -0.20, 0.030 +19830701, 0.56, 0.24, -0.13, 0.037 +19830705, -1.34, 0.39, 0.82, 0.037 +19830706, 0.94, -0.16, 0.17, 0.037 +19830707, -0.43, 0.63, -0.08, 0.037 +19830708, -0.24, 0.06, 0.14, 0.037 +19830711, 0.45, -0.22, 0.05, 0.037 +19830712, -1.42, 0.43, 0.57, 0.037 +19830713, -0.25, -0.35, 0.76, 0.037 +19830714, 0.28, 0.01, 0.07, 0.037 +19830715, -1.01, 0.40, 0.51, 0.037 +19830718, -0.44, -0.46, 0.43, 0.037 +19830719, 0.45, -0.18, -0.02, 0.037 +19830720, 2.35, -1.11, -0.71, 0.037 +19830721, 0.08, 0.56, -0.55, 0.037 +19830722, -0.03, 0.50, -0.14, 0.037 +19830725, 0.30, -0.21, 0.10, 0.037 +19830726, 0.32, 0.12, 0.42, 0.037 +19830727, -1.57, 0.33, 1.49, 0.037 +19830728, -1.61, 0.53, 1.27, 0.037 +19830729, -1.45, -0.08, 0.50, 0.037 +19830801, -0.52, -0.72, 0.26, 0.033 +19830802, -0.05, -0.25, 0.03, 0.033 +19830803, 0.51, -0.83, 0.58, 0.033 +19830804, -1.20, 0.09, 0.57, 0.033 +19830805, 0.26, -0.04, -0.08, 0.033 +19830808, -1.54, 0.08, 0.88, 0.033 +19830809, 0.31, -1.03, 0.45, 0.033 +19830810, 0.79, -0.25, -0.15, 0.033 +19830811, 0.10, 0.24, -0.24, 0.033 +19830812, 0.55, -0.02, 0.02, 0.033 +19830815, 0.83, -0.19, -0.38, 0.033 +19830816, -0.35, -0.13, 0.71, 0.033 +19830817, 0.91, -0.59, 0.71, 0.033 +19830818, -0.78, 0.78, 0.25, 0.033 +19830819, 0.12, -0.22, 0.29, 0.033 +19830822, 0.04, -0.10, 0.69, 0.033 +19830823, -1.01, 0.29, 0.98, 0.033 +19830824, -0.91, 0.14, 0.56, 0.033 +19830825, -0.32, -0.21, 0.27, 0.033 +19830826, 0.65, -0.59, -0.27, 0.033 +19830829, -0.05, -0.40, -0.07, 0.033 +19830830, 0.19, 0.03, -0.02, 0.033 +19830831, 1.01, -0.43, -0.51, 0.033 +19830901, -0.01, 0.34, -0.17, 0.036 +19830902, 0.60, 0.02, -0.55, 0.036 +19830906, 1.48, -0.52, -0.31, 0.036 +19830907, 0.05, 0.19, 0.42, 0.036 +19830908, -0.01, 0.36, -0.05, 0.036 +19830909, -0.16, 0.40, 0.44, 0.036 +19830912, -0.85, 0.67, 0.34, 0.036 +19830913, -0.58, -0.13, 0.45, 0.036 +19830914, 0.24, -0.21, 0.02, 0.036 +19830915, -0.45, 0.25, 0.35, 0.036 +19830916, 0.85, -0.65, -0.41, 0.036 +19830919, 1.00, -0.02, -0.36, 0.036 +19830920, 0.72, -0.50, -0.03, 0.036 +19830921, -0.39, 0.26, 0.18, 0.036 +19830922, 0.71, -0.45, -0.30, 0.036 +19830923, -0.15, 0.03, 0.18, 0.036 +19830926, 0.14, -0.01, -0.19, 0.036 +19830927, -0.89, 0.09, 0.35, 0.036 +19830928, -0.27, -0.08, 0.05, 0.036 +19830929, -0.40, 0.27, 0.41, 0.036 +19830930, -0.68, 0.21, 0.19, 0.036 +19831003, -0.29, -0.40, 0.22, 0.036 +19831004, 0.26, -0.29, -0.17, 0.036 +19831005, 0.67, -0.52, -0.21, 0.036 +19831006, 1.26, -0.95, -0.35, 0.036 +19831007, 0.28, 0.03, -0.60, 0.036 +19831010, 0.72, -0.71, 0.37, 0.036 +19831011, -1.16, 0.81, 0.30, 0.036 +19831012, -0.62, -0.15, 0.83, 0.036 +19831013, -0.06, -0.39, 0.37, 0.036 +19831014, 0.01, -0.07, 0.31, 0.036 +19831017, 0.10, -0.21, 0.33, 0.036 +19831018, -1.58, 0.24, 1.67, 0.036 +19831019, -0.83, -0.46, 0.35, 0.036 +19831020, 0.18, -0.02, 0.04, 0.036 +19831021, -0.71, 0.24, 0.45, 0.036 +19831024, -0.15, -0.80, 0.22, 0.036 +19831025, 0.26, -0.15, -0.10, 0.036 +19831026, -0.56, 0.28, -0.03, 0.036 +19831027, -0.33, -0.09, 0.17, 0.036 +19831028, -0.79, 0.25, 0.37, 0.036 +19831031, -0.10, -0.43, 0.71, 0.036 +19831101, -0.03, -0.55, 0.06, 0.033 +19831102, 0.77, -0.31, -0.33, 0.033 +19831103, -0.60, 0.68, 0.04, 0.033 +19831104, -0.58, 0.20, 0.41, 0.033 +19831107, -0.40, -0.10, 0.31, 0.033 +19831108, -0.23, -0.16, 0.10, 0.033 +19831109, 1.06, -0.82, -0.07, 0.033 +19831110, 0.34, 0.25, -0.53, 0.033 +19831111, 1.20, -0.12, -0.88, 0.033 +19831114, 0.38, 0.44, -0.92, 0.033 +19831115, -0.55, 0.71, -0.09, 0.033 +19831116, 0.39, -0.16, 0.14, 0.033 +19831117, 0.06, 0.36, 0.08, 0.033 +19831118, -0.39, 0.62, -0.28, 0.033 +19831121, 0.51, -0.16, -0.14, 0.033 +19831122, 0.39, -0.09, 0.75, 0.033 +19831123, 0.02, 0.17, 0.52, 0.033 +19831125, 0.20, 0.07, 0.17, 0.033 +19831128, -0.36, 0.21, 0.20, 0.033 +19831129, 0.69, -0.13, -0.19, 0.033 +19831130, -0.69, 0.84, 0.03, 0.033 +19831201, 0.03, -0.01, 0.26, 0.034 +19831202, -0.65, 0.28, 0.42, 0.034 +19831205, 0.00, -0.27, 0.36, 0.034 +19831206, -0.21, 0.16, -0.09, 0.034 +19831207, 0.21, -0.11, -0.14, 0.034 +19831208, -0.48, 0.04, 0.50, 0.034 +19831209, 0.00, 0.02, 0.08, 0.034 +19831212, 0.12, -0.30, 0.06, 0.034 +19831213, -0.39, 0.18, 0.28, 0.034 +19831214, -0.97, 0.35, 0.45, 0.034 +19831215, -0.86, 0.48, 0.20, 0.034 +19831216, 0.30, -0.35, -0.41, 0.034 +19831219, -0.05, -0.21, -0.09, 0.034 +19831220, -0.25, -0.07, 0.10, 0.034 +19831221, 0.72, -0.57, -0.18, 0.034 +19831222, -0.19, 0.36, -0.25, 0.034 +19831223, -0.03, 0.04, -0.08, 0.034 +19831227, 0.64, -0.63, 0.03, 0.034 +19831228, 0.21, -0.50, 0.67, 0.034 +19831229, -0.16, 0.31, -0.21, 0.034 +19831230, 0.20, 0.48, -0.27, 0.034 +19840103, -0.47, 0.49, 0.10, 0.036 +19840104, 1.46, -0.67, -0.06, 0.036 +19840105, 1.26, -0.13, -0.38, 0.036 +19840106, 0.42, 0.41, 0.06, 0.036 +19840109, -0.22, 0.29, 0.47, 0.036 +19840110, -0.39, 0.47, 0.32, 0.036 +19840111, -0.11, 0.08, 0.23, 0.036 +19840112, -0.06, 0.27, 0.52, 0.036 +19840113, -0.37, 0.20, 0.48, 0.036 +19840116, -0.02, -0.02, -0.15, 0.036 +19840117, 0.29, -0.16, -0.01, 0.036 +19840118, -0.17, 0.25, 0.19, 0.036 +19840119, -0.34, 0.17, 0.34, 0.036 +19840120, -0.62, 0.12, 0.49, 0.036 +19840123, -0.93, -0.25, 1.06, 0.036 +19840124, 0.33, -0.65, 0.64, 0.036 +19840125, -0.60, 0.33, 0.66, 0.036 +19840126, -0.47, 0.02, 0.54, 0.036 +19840127, -0.23, -0.45, 0.72, 0.036 +19840130, -0.85, -0.44, 1.18, 0.036 +19840131, 0.11, -0.70, 0.18, 0.036 +19840201, -0.49, -0.11, 0.28, 0.036 +19840202, 0.30, -0.41, -0.17, 0.036 +19840203, -1.34, 0.68, 0.71, 0.036 +19840206, -1.67, -0.09, 1.07, 0.036 +19840207, 0.11, -1.03, -0.15, 0.036 +19840208, -1.73, 0.63, 0.82, 0.036 +19840209, -0.51, -0.77, 0.07, 0.036 +19840210, 0.51, -0.07, -0.69, 0.036 +19840213, -0.97, -0.25, 0.40, 0.036 +19840214, 0.94, -0.47, -0.32, 0.036 +19840215, -0.15, 0.29, 0.01, 0.036 +19840216, -0.21, -0.11, 0.26, 0.036 +19840217, -0.28, 0.19, 0.28, 0.036 +19840221, -0.76, 0.10, 0.31, 0.036 +19840222, -0.30, 0.05, 0.41, 0.036 +19840223, -0.23, -0.62, 0.37, 0.036 +19840224, 1.98, -0.69, -1.21, 0.036 +19840227, 1.17, -0.20, 0.19, 0.036 +19840228, -1.39, 0.86, 0.89, 0.036 +19840229, 0.21, 0.18, 0.03, 0.036 +19840301, 0.66, -0.27, 0.00, 0.033 +19840302, 0.67, 0.08, -0.23, 0.033 +19840305, -0.78, 0.38, 0.41, 0.033 +19840306, -1.00, 0.84, 0.07, 0.033 +19840307, -1.10, 0.11, 0.67, 0.033 +19840308, 0.31, -0.17, 0.17, 0.033 +19840309, -0.47, 0.22, 0.14, 0.033 +19840312, 0.99, -0.92, -0.51, 0.033 +19840313, 0.39, 0.36, -0.75, 0.033 +19840314, -0.06, 0.04, -0.30, 0.033 +19840315, 0.42, -0.01, -0.41, 0.033 +19840316, 1.04, -0.40, -0.16, 0.033 +19840319, -0.93, 0.19, 0.47, 0.033 +19840320, 0.53, -0.33, 0.10, 0.033 +19840321, -0.13, 0.43, 0.11, 0.033 +19840322, -1.03, 0.66, 0.34, 0.033 +19840323, -0.10, -0.16, 0.24, 0.033 +19840326, -0.08, -0.38, 0.51, 0.033 +19840327, 0.25, -0.42, 0.00, 0.033 +19840328, 1.37, -0.92, -0.45, 0.033 +19840329, -0.12, 0.39, 0.03, 0.033 +19840330, -0.15, 0.29, 0.00, 0.033 +19840402, -0.68, 0.34, 0.38, 0.041 +19840403, -0.34, 0.03, 0.44, 0.041 +19840404, -0.08, -0.21, 0.28, 0.041 +19840405, -1.53, 0.67, 0.51, 0.041 +19840406, -0.01, -0.77, 0.31, 0.041 +19840409, -0.07, -0.33, 0.20, 0.041 +19840410, 0.19, -0.22, 0.21, 0.041 +19840411, -0.59, 0.14, 0.55, 0.041 +19840412, 1.35, -1.19, -0.34, 0.041 +19840413, -0.07, 0.65, -0.50, 0.041 +19840416, 0.46, -0.57, -0.13, 0.041 +19840417, 0.45, 0.16, -0.15, 0.041 +19840418, -0.58, 0.56, -0.11, 0.041 +19840419, -0.01, -0.02, -0.05, 0.041 +19840423, -0.70, 0.24, 0.10, 0.041 +19840424, 0.53, -0.49, 0.01, 0.041 +19840425, 0.28, -0.07, -0.42, 0.041 +19840426, 0.97, -0.40, -0.13, 0.041 +19840427, -0.10, 0.30, 0.06, 0.041 +19840430, 0.06, -0.03, 0.03, 0.041 +19840501, 1.01, -0.43, -0.36, 0.035 +19840502, 0.37, 0.51, -0.64, 0.035 +19840503, -0.28, 0.63, -0.13, 0.035 +19840504, -1.03, 0.54, 0.67, 0.035 +19840507, 0.13, -0.11, -0.22, 0.035 +19840508, 0.63, -0.52, -0.02, 0.035 +19840509, -0.21, -0.01, 0.12, 0.035 +19840510, -0.11, 0.27, -0.06, 0.035 +19840511, -0.87, 0.12, 0.27, 0.035 +19840514, -0.64, 0.11, -0.07, 0.035 +19840515, 0.23, -0.46, 0.06, 0.035 +19840516, -0.08, 0.03, -0.06, 0.035 +19840517, -1.00, 0.22, 0.39, 0.035 +19840518, -0.62, 0.02, 0.45, 0.035 +19840521, -0.62, -0.04, 0.26, 0.035 +19840522, -0.71, -0.18, 0.03, 0.035 +19840523, -0.45, -0.04, 0.11, 0.035 +19840524, -1.38, -0.19, -0.02, 0.035 +19840525, 0.20, -0.43, 0.24, 0.035 +19840529, -0.86, 0.11, 0.44, 0.035 +19840530, -0.05, -0.25, -0.48, 0.035 +19840531, 0.27, 0.15, -0.79, 0.035 +19840601, 1.65, -0.58, -0.56, 0.036 +19840604, 0.84, 0.16, -0.79, 0.036 +19840605, -0.37, 0.33, -0.28, 0.036 +19840606, 0.65, -0.36, -0.16, 0.036 +19840607, 0.00, 0.31, -0.02, 0.036 +19840608, 0.13, 0.03, 0.01, 0.036 +19840611, -1.18, 0.54, 0.58, 0.036 +19840612, -0.47, 0.00, 0.21, 0.036 +19840613, -0.06, 0.14, -0.38, 0.036 +19840614, -1.02, 0.54, 0.11, 0.036 +19840615, -0.60, 0.22, -0.13, 0.036 +19840618, 1.38, -1.34, -0.23, 0.036 +19840619, 0.53, -0.17, -0.43, 0.036 +19840620, 1.07, -1.36, -0.24, 0.036 +19840621, -0.05, 0.43, -0.63, 0.036 +19840622, 0.06, 0.29, -0.36, 0.036 +19840625, -0.17, 0.20, -0.07, 0.036 +19840626, -0.77, 0.35, 0.16, 0.036 +19840627, -0.69, 0.11, 0.61, 0.036 +19840628, 0.64, -0.39, -0.17, 0.036 +19840629, 0.26, 0.14, 0.22, 0.036 +19840702, -0.16, -0.24, 0.36, 0.039 +19840703, 0.32, -0.10, -0.13, 0.039 +19840705, -0.52, 0.33, 0.23, 0.039 +19840706, -0.37, -0.01, 0.35, 0.039 +19840709, 0.53, -0.89, -0.04, 0.039 +19840710, -0.29, 0.41, -0.09, 0.039 +19840711, -1.34, 0.84, 0.30, 0.039 +19840712, -0.41, -0.08, 0.44, 0.039 +19840713, 0.42, -0.20, 0.37, 0.039 +19840716, 0.19, -0.64, 0.34, 0.039 +19840717, 0.37, -0.23, 0.15, 0.039 +19840718, -0.58, 0.14, 0.53, 0.039 +19840719, -0.70, 0.23, 0.26, 0.039 +19840720, -0.60, -0.06, 0.53, 0.039 +19840723, -0.65, -0.51, 0.41, 0.039 +19840724, -0.70, 0.00, 0.31, 0.039 +19840725, 0.44, -0.82, -0.47, 0.039 +19840726, 0.76, -0.51, -0.99, 0.039 +19840727, 0.79, -0.14, -1.26, 0.039 +19840730, -0.46, 0.26, -0.06, 0.039 +19840731, 0.25, -0.06, -0.99, 0.039 +19840801, 2.02, -0.76, -0.76, 0.036 +19840802, 2.43, -0.35, -1.57, 0.036 +19840803, 2.81, -0.19, -1.98, 0.036 +19840806, 0.38, 0.60, -0.69, 0.036 +19840807, 0.04, -0.19, -0.06, 0.036 +19840808, -0.53, 0.22, 1.12, 0.036 +19840809, 1.99, -1.08, -0.21, 0.036 +19840810, 0.21, 0.47, 0.17, 0.036 +19840813, -0.13, -0.17, 0.16, 0.036 +19840814, -0.52, 0.55, 0.46, 0.036 +19840815, -0.81, 0.50, 0.23, 0.036 +19840816, 0.52, -0.26, -0.01, 0.036 +19840817, 0.08, -0.02, 0.10, 0.036 +19840820, 0.29, -0.54, 0.32, 0.036 +19840821, 1.52, -0.63, -0.25, 0.036 +19840822, -0.32, 0.52, 0.58, 0.036 +19840823, 0.06, 0.09, -0.12, 0.036 +19840824, 0.17, 0.20, 0.03, 0.036 +19840827, -0.56, 0.19, 0.62, 0.036 +19840828, 0.48, -0.28, -0.10, 0.036 +19840829, -0.09, 0.30, 0.12, 0.036 +19840830, -0.29, 0.37, 0.04, 0.036 +19840831, 0.08, 0.14, 0.04, 0.036 +19840904, -0.90, 0.37, 0.43, 0.045 +19840905, -0.38, 0.10, 0.25, 0.045 +19840906, 0.69, -0.35, -0.04, 0.045 +19840907, -0.62, 0.51, 0.30, 0.045 +19840910, -0.12, -0.27, 0.16, 0.045 +19840911, 0.19, 0.19, -0.04, 0.045 +19840912, -0.03, -0.08, 0.53, 0.045 +19840913, 1.56, -1.15, -0.44, 0.045 +19840914, 0.60, 0.14, -0.15, 0.045 +19840917, 0.03, -0.14, 0.14, 0.045 +19840918, -0.60, 0.49, 0.66, 0.045 +19840919, -0.42, 0.27, 0.91, 0.045 +19840920, 0.25, -0.26, 0.40, 0.045 +19840921, -0.82, 1.01, 0.18, 0.045 +19840924, -0.34, -0.16, 0.47, 0.045 +19840925, 0.05, -0.55, 0.45, 0.045 +19840926, 0.26, -0.30, 0.36, 0.045 +19840927, 0.28, -0.12, 0.42, 0.045 +19840928, -0.45, 0.44, 0.33, 0.045 +19841001, -0.84, 0.12, 0.73, 0.043 +19841002, -0.70, 0.25, 0.52, 0.043 +19841003, -0.67, 0.14, 0.14, 0.043 +19841004, 0.16, -0.14, -0.05, 0.043 +19841005, -0.11, 0.32, 0.09, 0.043 +19841008, -0.40, 0.07, 0.25, 0.043 +19841009, -0.23, -0.02, 0.22, 0.043 +19841010, 0.14, -0.43, -0.13, 0.043 +19841011, 0.41, -0.04, 0.09, 0.043 +19841012, 0.79, -0.35, -0.15, 0.043 +19841015, 0.78, -0.53, -0.30, 0.043 +19841016, -0.42, 0.48, -0.14, 0.043 +19841017, -0.30, 0.34, -0.57, 0.043 +19841018, 1.93, -1.35, -0.98, 0.043 +19841019, 0.10, 0.46, -0.41, 0.043 +19841022, -0.37, 0.23, -0.17, 0.043 +19841023, -0.16, 0.07, 0.04, 0.043 +19841024, -0.01, -0.20, 0.12, 0.043 +19841025, -0.57, 0.13, 0.75, 0.043 +19841026, -0.66, 0.09, 0.56, 0.043 +19841029, -0.34, -0.10, -0.06, 0.043 +19841030, 1.01, -0.86, -0.09, 0.043 +19841031, -0.34, 0.17, 0.15, 0.043 +19841101, 0.68, -0.46, 0.25, 0.035 +19841102, 0.09, 0.13, 0.26, 0.035 +19841105, 0.63, -0.38, 0.32, 0.035 +19841106, 0.94, -0.44, -0.10, 0.035 +19841107, -0.67, 0.31, 0.42, 0.035 +19841108, -0.21, 0.09, -0.01, 0.035 +19841109, -0.45, 0.66, 0.26, 0.035 +19841112, -0.21, -0.05, -0.04, 0.035 +19841113, -0.76, 0.36, 0.25, 0.035 +19841114, -0.10, -0.19, 0.07, 0.035 +19841115, -0.13, -0.30, 0.36, 0.035 +19841116, -0.89, 0.42, 0.22, 0.035 +19841119, -0.73, -0.15, 0.29, 0.035 +19841120, 0.43, -0.61, 0.16, 0.035 +19841121, 0.20, -0.20, 0.29, 0.035 +19841123, 1.27, -0.55, -0.51, 0.035 +19841126, -0.62, 0.51, -0.01, 0.035 +19841127, 0.45, -0.49, 0.08, 0.035 +19841128, -0.70, 0.45, 0.45, 0.035 +19841129, -0.67, 0.23, 0.62, 0.035 +19841130, -0.27, -0.12, 0.35, 0.035 +19841203, -0.48, -0.02, 0.35, 0.032 +19841204, 0.18, -0.28, 0.09, 0.032 +19841205, -0.72, -0.09, 0.79, 0.032 +19841206, 0.25, -0.34, -0.23, 0.032 +19841207, -0.21, 0.13, 0.20, 0.032 +19841210, 0.24, -0.32, 0.01, 0.032 +19841211, 0.17, -0.08, -0.24, 0.032 +19841212, -0.22, 0.24, -0.13, 0.032 +19841213, -0.41, 0.33, 0.00, 0.032 +19841214, 0.47, -0.26, -0.27, 0.032 +19841217, 0.46, -0.62, 0.21, 0.032 +19841218, 2.40, -1.06, -1.16, 0.032 +19841219, -0.26, 0.89, -0.58, 0.032 +19841220, -0.43, 0.34, 0.57, 0.032 +19841221, -0.37, 0.19, 0.20, 0.032 +19841224, 0.67, -0.01, -0.07, 0.032 +19841226, -0.14, 0.14, 0.03, 0.032 +19841227, -0.44, 0.25, 0.30, 0.032 +19841228, 0.23, -0.09, -0.03, 0.032 +19841231, 0.46, 0.18, -0.03, 0.032 +19850102, -0.93, 0.78, 0.25, 0.029 +19850103, -0.33, 0.41, -0.03, 0.029 +19850104, -0.42, 0.35, -0.17, 0.029 +19850107, 0.25, -0.17, 0.14, 0.029 +19850108, -0.05, 0.19, 0.15, 0.029 +19850109, 0.63, -0.11, -0.17, 0.029 +19850110, 1.68, -0.70, -0.70, 0.029 +19850111, -0.05, 0.45, -0.31, 0.029 +19850114, 1.41, -0.32, -0.90, 0.029 +19850115, 0.27, 0.47, -0.19, 0.029 +19850116, 0.40, 0.39, -0.07, 0.029 +19850117, -0.12, 0.62, -0.18, 0.029 +19850118, 0.31, 0.25, 0.02, 0.029 +19850121, 1.96, -0.91, -0.92, 0.029 +19850122, 0.18, 0.21, -0.14, 0.029 +19850123, 0.99, -0.27, -0.71, 0.029 +19850124, -0.15, 0.55, -0.34, 0.029 +19850125, 0.40, 0.13, -0.33, 0.029 +19850128, 0.17, 0.42, -0.58, 0.029 +19850129, 0.82, -0.36, -0.26, 0.029 +19850130, 0.24, 0.39, -0.06, 0.029 +19850131, 0.04, 0.11, 0.48, 0.029 +19850201, -0.45, 0.31, 0.37, 0.030 +19850204, 0.97, -0.46, -0.47, 0.030 +19850205, 0.30, 0.41, -0.08, 0.030 +19850206, 0.08, 0.56, -0.22, 0.030 +19850207, 0.79, 0.01, -0.40, 0.030 +19850208, 0.24, 0.22, 0.16, 0.030 +19850211, -0.78, 0.57, 0.34, 0.030 +19850212, -0.05, 0.09, 0.41, 0.030 +19850213, 1.35, -0.74, -0.18, 0.030 +19850214, -0.31, 0.44, 0.06, 0.030 +19850215, -0.43, 0.30, 0.09, 0.030 +19850219, -0.14, -0.07, 0.10, 0.030 +19850220, 0.02, 0.18, -0.29, 0.030 +19850221, -0.55, 0.18, 0.21, 0.030 +19850222, -0.39, -0.04, 0.28, 0.030 +19850225, -0.25, -0.85, -0.12, 0.030 +19850226, 0.83, -0.60, -0.50, 0.030 +19850227, -0.19, 0.13, 0.12, 0.030 +19850228, 0.19, -0.10, -0.30, 0.030 +19850301, 1.04, -0.28, -0.34, 0.029 +19850304, -0.53, 0.46, 0.17, 0.029 +19850305, 0.05, -0.10, 0.28, 0.029 +19850306, -0.78, 0.51, 0.59, 0.029 +19850307, -0.58, 0.24, 0.68, 0.029 +19850308, -0.27, 0.09, 0.23, 0.029 +19850311, -0.22, -0.21, 0.15, 0.029 +19850312, 0.31, -0.52, 0.35, 0.029 +19850313, -0.86, 0.12, 0.82, 0.029 +19850314, -0.15, 0.10, 0.10, 0.029 +19850315, -0.45, 0.55, -0.07, 0.029 +19850318, -0.12, -0.50, 0.19, 0.029 +19850319, 1.21, -0.98, -0.75, 0.029 +19850320, -0.21, 0.06, 0.24, 0.029 +19850321, 0.14, -0.05, 0.11, 0.029 +19850322, -0.20, -0.04, 0.23, 0.029 +19850325, -0.57, -0.18, 0.82, 0.029 +19850326, 0.16, -0.28, 0.14, 0.029 +19850327, 0.57, -0.19, -0.17, 0.029 +19850328, 0.10, 0.13, 0.11, 0.029 +19850329, 0.56, -0.15, 0.20, 0.029 +19850401, 0.28, -0.17, 0.01, 0.034 +19850402, -0.36, 0.29, 0.25, 0.034 +19850403, -0.74, 0.26, 0.56, 0.034 +19850404, -0.09, -0.08, 0.12, 0.034 +19850408, -0.44, 0.33, 0.60, 0.034 +19850409, 0.04, -0.12, 0.18, 0.034 +19850410, 0.59, -0.12, -0.25, 0.034 +19850411, 0.42, -0.09, -0.07, 0.034 +19850412, 0.15, -0.09, 0.00, 0.034 +19850415, 0.20, -0.11, 0.12, 0.034 +19850416, 0.15, -0.04, -0.11, 0.034 +19850417, 0.21, 0.04, -0.01, 0.034 +19850418, -0.46, 0.38, 0.37, 0.034 +19850419, 0.09, -0.20, 0.16, 0.034 +19850422, -0.28, 0.05, 0.28, 0.034 +19850423, 0.54, -0.46, -0.06, 0.034 +19850424, 0.14, -0.12, 0.13, 0.034 +19850425, 0.49, -0.37, 0.23, 0.034 +19850426, -0.53, 0.50, 0.01, 0.034 +19850429, -0.82, 0.23, 0.80, 0.034 +19850430, -0.52, 0.01, 0.43, 0.034 +19850501, -0.67, 0.42, 0.55, 0.030 +19850502, 0.14, -0.46, 0.30, 0.030 +19850503, 0.58, -0.39, -0.21, 0.030 +19850506, 0.04, -0.03, 0.15, 0.030 +19850507, 0.40, -0.22, -0.20, 0.030 +19850508, -0.01, 0.17, -0.20, 0.030 +19850509, 0.74, -0.13, -0.33, 0.030 +19850510, 1.30, -0.25, -0.78, 0.030 +19850513, 0.14, -0.06, -0.23, 0.030 +19850514, -0.30, 0.26, 0.47, 0.030 +19850515, 0.29, -0.17, 0.02, 0.030 +19850516, 0.54, -0.23, 0.09, 0.030 +19850517, 0.91, -0.26, -0.36, 0.030 +19850520, 1.16, -0.46, -0.47, 0.030 +19850521, -0.06, -0.08, -0.07, 0.030 +19850522, -0.56, 0.17, -0.04, 0.030 +19850523, -0.47, 0.20, 0.21, 0.030 +19850524, 0.31, -0.16, -0.09, 0.030 +19850528, -0.16, 0.02, 0.29, 0.030 +19850529, -0.08, 0.09, -0.20, 0.030 +19850530, -0.02, -0.06, 0.21, 0.030 +19850531, 0.75, -0.55, 0.02, 0.030 +19850603, 0.05, 0.07, -0.17, 0.028 +19850604, 0.37, -0.23, -0.28, 0.028 +19850605, 0.13, 0.22, 0.01, 0.028 +19850606, 0.36, -0.39, -0.27, 0.028 +19850607, -0.61, 0.45, 0.22, 0.028 +19850610, -0.13, -0.25, 0.36, 0.028 +19850611, -0.22, 0.25, 0.39, 0.028 +19850612, -0.61, 0.43, 0.75, 0.028 +19850613, -1.11, 0.49, 0.67, 0.028 +19850614, 0.74, -0.56, 0.03, 0.028 +19850617, -0.26, 0.17, 0.13, 0.028 +19850618, 0.37, -0.18, 0.29, 0.028 +19850619, -0.21, 0.35, -0.04, 0.028 +19850620, -0.07, -0.10, 0.17, 0.028 +19850621, 1.06, -0.82, -0.04, 0.028 +19850624, 0.04, 0.17, -0.60, 0.028 +19850625, 0.35, 0.20, -0.58, 0.028 +19850626, 0.16, -0.03, -0.38, 0.028 +19850627, 0.59, -0.08, -0.30, 0.028 +19850628, 0.29, 0.21, 0.02, 0.028 +19850701, 0.27, -0.08, -0.13, 0.028 +19850702, -0.11, 0.30, 0.15, 0.028 +19850703, -0.20, 0.28, 0.15, 0.028 +19850705, 0.53, 0.14, 0.08, 0.028 +19850708, -0.33, 0.01, 0.28, 0.028 +19850709, -0.37, 0.19, 0.57, 0.028 +19850710, 0.59, -0.10, -0.14, 0.028 +19850711, 0.34, 0.25, -0.29, 0.028 +19850712, 0.21, 0.14, 0.02, 0.028 +19850715, -0.15, 0.37, 0.06, 0.028 +19850716, 0.98, -0.09, -0.55, 0.028 +19850717, 0.37, 0.20, -0.53, 0.028 +19850718, -0.57, 0.42, 0.00, 0.028 +19850719, 0.30, 0.41, 0.04, 0.028 +19850722, -0.45, 0.10, -0.54, 0.028 +19850723, -0.84, 0.69, -1.17, 0.028 +19850724, -0.62, 0.14, 0.29, 0.028 +19850725, 0.08, -0.07, 0.07, 0.028 +19850726, 0.11, -0.11, -0.05, 0.028 +19850729, -1.39, 0.35, 0.22, 0.028 +19850730, 0.05, -0.37, 0.29, 0.028 +19850731, 0.49, -0.23, -0.44, 0.028 +19850801, 0.69, -0.06, -0.42, 0.025 +19850802, -0.23, 0.47, 0.06, 0.025 +19850805, -0.53, -0.31, 0.02, 0.025 +19850806, -1.20, 0.28, 0.10, 0.025 +19850807, -0.29, -0.29, 0.45, 0.025 +19850808, 0.70, -0.39, 0.39, 0.025 +19850809, -0.23, 0.16, -0.12, 0.025 +19850812, -0.34, -0.14, 0.08, 0.025 +19850813, -0.19, -0.02, 0.37, 0.025 +19850814, 0.09, 0.04, 0.19, 0.025 +19850815, -0.06, 0.20, 0.37, 0.025 +19850816, -0.56, 0.02, -0.06, 0.025 +19850819, 0.11, -0.27, 0.32, 0.025 +19850820, 0.67, -0.50, -0.05, 0.025 +19850821, 0.48, -0.08, -0.09, 0.025 +19850822, -0.76, 0.45, 0.32, 0.025 +19850823, -0.12, 0.19, 0.15, 0.025 +19850826, 0.12, -0.23, -0.03, 0.025 +19850827, 0.33, -0.18, -0.22, 0.025 +19850828, 0.31, -0.17, 0.00, 0.025 +19850829, 0.07, 0.07, 0.16, 0.025 +19850830, -0.05, 0.39, 0.32, 0.025 +19850903, -0.43, -0.19, 0.08, 0.032 +19850904, -0.33, 0.00, 0.25, 0.032 +19850905, -0.04, -0.05, 0.05, 0.032 +19850906, 0.41, -0.13, -0.49, 0.032 +19850909, 0.07, -0.15, -0.15, 0.032 +19850910, -0.75, 0.11, 0.12, 0.032 +19850911, -1.03, 0.11, 0.27, 0.032 +19850912, -0.79, 0.06, -0.25, 0.032 +19850913, -0.60, -0.43, 0.18, 0.032 +19850916, -0.14, -0.33, 0.04, 0.032 +19850917, -0.93, -0.35, 0.59, 0.032 +19850918, 0.07, -0.26, 0.05, 0.032 +19850919, 0.91, 0.00, -0.26, 0.032 +19850920, -0.46, 0.70, -0.01, 0.032 +19850923, 0.91, -0.57, -0.35, 0.032 +19850924, -0.76, 0.40, 0.27, 0.032 +19850925, -1.01, 0.39, 0.42, 0.032 +19850926, 0.07, -0.65, 0.40, 0.032 +19850930, 0.26, -0.33, 0.16, 0.032 +19851001, 1.36, -0.84, 0.02, 0.028 +19851002, -0.39, 0.25, 0.69, 0.028 +19851003, 0.11, -0.09, 0.38, 0.028 +19851004, -0.53, 0.38, 0.46, 0.028 +19851007, -0.68, 0.13, 0.20, 0.028 +19851008, -0.13, -0.31, 0.40, 0.028 +19851009, 0.34, -0.06, -0.02, 0.028 +19851010, 0.24, 0.03, -0.16, 0.028 +19851011, 0.78, -0.19, -0.59, 0.028 +19851014, 1.01, -0.50, -0.61, 0.028 +19851015, -0.12, 0.25, -0.11, 0.028 +19851016, 0.84, -0.47, -0.34, 0.028 +19851017, 0.04, 0.38, -0.29, 0.028 +19851018, -0.23, 0.25, 0.02, 0.028 +19851021, -0.09, -0.25, 0.24, 0.028 +19851022, 0.51, -0.35, -0.25, 0.028 +19851023, 0.46, -0.19, 0.08, 0.028 +19851024, -0.20, 0.37, 0.08, 0.028 +19851025, -0.51, 0.24, 0.37, 0.028 +19851028, 0.07, -0.37, 0.33, 0.028 +19851029, 0.71, -0.28, -0.20, 0.028 +19851030, 0.42, -0.14, 0.01, 0.028 +19851031, -0.06, 0.19, 0.13, 0.028 +19851101, 0.73, -0.31, -0.21, 0.030 +19851104, -0.04, 0.11, 0.01, 0.030 +19851105, 0.58, -0.27, -0.39, 0.030 +19851106, 0.29, 0.09, -0.28, 0.030 +19851107, 0.02, 0.19, 0.02, 0.030 +19851108, 0.68, 0.10, 0.01, 0.030 +19851111, 1.52, -0.92, -0.27, 0.030 +19851112, 0.50, 0.24, -0.05, 0.030 +19851113, -0.46, 0.18, -0.12, 0.030 +19851114, 0.84, -0.35, 0.08, 0.030 +19851115, -0.32, 0.63, -0.12, 0.030 +19851118, 0.19, -0.37, -0.51, 0.030 +19851119, 0.05, 0.55, -0.02, 0.030 +19851120, 0.10, -0.16, -0.09, 0.030 +19851121, 1.08, -0.29, -0.13, 0.030 +19851122, 0.16, 0.42, 0.04, 0.030 +19851125, -0.55, 0.15, 0.12, 0.030 +19851126, 0.13, -0.03, -0.15, 0.030 +19851127, 0.81, -0.17, -0.64, 0.030 +19851129, -0.02, 0.38, -0.06, 0.030 +19851202, -0.75, 0.60, -0.01, 0.031 +19851203, 0.20, 0.03, -0.01, 0.031 +19851204, 1.49, -0.40, -0.58, 0.031 +19851205, -0.05, 0.34, -0.29, 0.031 +19851206, -0.52, -0.09, 0.09, 0.031 +19851209, 0.57, -0.56, -0.51, 0.031 +19851210, 0.10, -0.13, -0.47, 0.031 +19851211, 0.88, -0.42, -0.22, 0.031 +19851212, 0.23, 0.26, -0.16, 0.031 +19851213, 1.38, -0.41, -0.27, 0.031 +19851216, 0.77, -0.67, -0.14, 0.031 +19851217, -0.61, -0.06, 0.88, 0.031 +19851218, -0.44, 0.03, 0.46, 0.031 +19851219, 0.02, 0.09, -0.03, 0.031 +19851220, 0.38, 0.26, -0.07, 0.031 +19851223, -1.02, 0.65, -0.28, 0.031 +19851224, -0.56, 0.22, 0.19, 0.031 +19851226, 0.19, 0.08, 0.00, 0.031 +19851227, 0.87, -0.23, -0.10, 0.031 +19851230, 0.39, -0.29, -0.22, 0.031 +19851231, 0.31, 0.15, 0.29, 0.031 +19860102, -0.63, 0.84, 0.38, 0.025 +19860103, 0.56, -0.07, 0.21, 0.025 +19860106, -0.04, 0.09, 0.09, 0.025 +19860107, 1.38, -0.42, 0.05, 0.025 +19860108, -2.16, 1.40, 0.30, 0.025 +19860109, -1.17, -0.77, -0.14, 0.025 +19860110, -0.02, 0.19, 0.26, 0.025 +19860113, 0.28, -0.04, 0.28, 0.025 +19860114, 0.01, 0.44, -0.01, 0.025 +19860115, 0.79, -0.04, -0.21, 0.025 +19860116, 0.46, -0.02, -0.37, 0.025 +19860117, -0.17, 0.47, 0.19, 0.025 +19860120, -0.39, 0.20, 0.09, 0.025 +19860121, -0.67, 0.35, -0.17, 0.025 +19860122, -0.93, 0.45, 0.21, 0.025 +19860123, 0.24, -0.26, -0.23, 0.025 +19860124, 0.95, -0.22, -0.11, 0.025 +19860127, 0.45, -0.33, -0.15, 0.025 +19860128, 0.98, -0.55, 0.08, 0.025 +19860129, 0.24, -0.69, -0.29, 0.025 +19860130, -0.34, 0.61, 0.10, 0.025 +19860131, 0.92, -0.46, 0.01, 0.025 +19860203, 0.93, -0.55, -0.62, 0.028 +19860204, -0.25, 0.14, -0.30, 0.028 +19860205, 0.07, -0.01, -0.56, 0.028 +19860206, 0.26, 0.19, -0.10, 0.028 +19860207, 0.49, 0.08, -0.33, 0.028 +19860210, 0.66, -0.41, -0.13, 0.028 +19860211, 0.03, 0.17, -0.06, 0.028 +19860212, 0.14, 0.17, 0.29, 0.028 +19860213, 0.57, -0.22, 0.02, 0.028 +19860214, 0.89, -0.43, 0.12, 0.028 +19860218, 1.12, -0.51, -0.10, 0.028 +19860219, -0.92, 0.82, -0.06, 0.028 +19860220, 0.83, -0.54, -0.18, 0.028 +19860221, 1.00, -0.02, 0.16, 0.028 +19860224, -0.12, 0.03, 0.33, 0.028 +19860225, -0.23, 0.19, 0.35, 0.028 +19860226, 0.10, 0.08, 0.15, 0.028 +19860227, 1.14, -0.21, 0.17, 0.028 +19860228, 0.19, 0.36, -0.02, 0.028 +19860303, -0.39, 0.69, 0.00, 0.030 +19860304, -0.14, 0.80, 0.17, 0.030 +19860305, -0.20, -0.30, 0.09, 0.030 +19860306, 0.41, 0.25, 0.00, 0.030 +19860307, 0.14, 0.12, -0.23, 0.030 +19860310, 0.43, -0.06, -0.20, 0.030 +19860311, 1.86, -1.09, 0.03, 0.030 +19860312, 0.45, 0.10, 0.26, 0.030 +19860313, 0.20, -0.14, -0.33, 0.030 +19860314, 1.03, -0.84, -0.22, 0.030 +19860317, -0.75, 0.02, -0.32, 0.030 +19860318, 0.47, 0.04, -0.17, 0.030 +19860319, -0.17, 0.13, -0.09, 0.030 +19860320, 0.39, -0.16, -0.02, 0.030 +19860321, -0.83, 1.68, 0.67, 0.030 +19860324, 0.38, -1.25, -0.25, 0.030 +19860325, -0.25, -0.08, 0.25, 0.030 +19860326, 0.98, -0.58, 0.05, 0.030 +19860327, 0.71, -0.07, 0.05, 0.030 +19860331, 0.06, 0.21, -0.15, 0.030 +19860401, -1.21, 0.86, 0.34, 0.024 +19860402, 0.09, -0.28, -0.09, 0.024 +19860403, -1.01, 0.80, 0.01, 0.024 +19860404, -1.45, 0.81, 0.26, 0.024 +19860407, -0.32, -0.45, 0.13, 0.024 +19860408, 1.90, -0.84, -0.60, 0.024 +19860409, 0.21, 0.14, -0.23, 0.024 +19860410, 0.97, -0.35, -0.42, 0.024 +19860411, -0.08, 0.34, -0.13, 0.024 +19860414, 0.53, 0.03, -0.55, 0.024 +19860415, 0.14, -0.10, 0.13, 0.024 +19860416, 1.75, -0.60, -0.57, 0.024 +19860417, 0.33, 0.32, -0.26, 0.024 +19860418, -0.11, 0.46, -0.11, 0.024 +19860421, 0.76, -0.32, -0.28, 0.024 +19860422, -0.78, 0.70, 0.11, 0.024 +19860423, -0.42, 0.02, 0.03, 0.024 +19860424, 0.18, 0.29, -0.51, 0.024 +19860425, 0.00, 0.18, -0.42, 0.024 +19860428, 0.17, -0.27, -0.18, 0.024 +19860429, -0.97, 0.37, -0.09, 0.024 +19860430, -1.90, 0.65, 0.53, 0.024 +19860501, -0.20, -0.22, 0.27, 0.023 +19860502, -0.06, 0.17, 0.19, 0.023 +19860505, 1.11, -0.60, 0.11, 0.023 +19860506, -0.12, 0.23, 0.05, 0.023 +19860507, -0.42, 0.22, 0.25, 0.023 +19860508, 0.50, 0.10, 0.20, 0.023 +19860509, 0.30, 0.14, 0.05, 0.023 +19860512, -0.18, -0.17, 0.32, 0.023 +19860513, -0.40, 0.10, -0.16, 0.023 +19860514, 0.38, -0.27, -0.40, 0.023 +19860515, -1.09, 0.68, 0.29, 0.023 +19860516, -0.56, 0.48, 0.10, 0.023 +19860519, 0.06, -0.40, 0.08, 0.023 +19860520, 1.01, -0.86, -0.49, 0.023 +19860521, -0.16, 0.33, 0.10, 0.023 +19860522, 1.61, -0.94, -0.21, 0.023 +19860523, 0.55, 0.04, -0.06, 0.023 +19860527, 1.27, -0.39, -0.33, 0.023 +19860528, 0.69, -0.19, -0.51, 0.023 +19860529, 0.40, -0.20, -0.11, 0.023 +19860530, -0.13, 0.41, 0.16, 0.023 +19860602, -0.75, 0.53, 0.06, 0.025 +19860603, 0.10, 0.02, -0.21, 0.025 +19860604, -0.49, 0.53, -0.21, 0.025 +19860605, 0.43, -0.46, 0.08, 0.025 +19860606, 0.01, 0.11, -0.03, 0.025 +19860609, -2.00, 0.75, 0.35, 0.025 +19860610, -0.23, -0.02, -0.11, 0.025 +19860611, 0.61, -0.15, -0.22, 0.025 +19860612, 0.17, 0.02, 0.05, 0.025 +19860613, 1.45, -0.81, -0.17, 0.025 +19860616, 0.02, -0.34, 0.68, 0.025 +19860617, -0.57, 0.11, 0.33, 0.025 +19860618, 0.04, -0.41, 0.29, 0.025 +19860619, -0.17, 0.40, -0.01, 0.025 +19860620, 0.76, -1.43, -0.21, 0.025 +19860623, -0.54, 0.67, 0.13, 0.025 +19860624, 0.77, -0.22, 0.00, 0.025 +19860625, 0.70, -0.37, 0.06, 0.025 +19860626, -0.05, 0.26, 0.11, 0.025 +19860627, 0.29, -0.21, 0.31, 0.025 +19860630, 0.52, 0.11, 0.03, 0.025 +19860701, 0.47, -0.03, -0.58, 0.024 +19860702, 0.33, -0.23, -0.23, 0.024 +19860703, -0.21, 0.29, 0.17, 0.024 +19860707, -2.90, 0.50, 1.64, 0.024 +19860708, -1.52, -1.08, 1.00, 0.024 +19860709, 0.64, 0.01, -0.24, 0.024 +19860710, 0.00, -0.17, 0.34, 0.024 +19860711, -0.12, 0.28, 0.53, 0.024 +19860714, -1.65, -0.08, 1.52, 0.024 +19860715, -1.68, 0.05, 1.12, 0.024 +19860716, 0.38, -0.17, -0.06, 0.024 +19860717, 0.45, -0.21, -0.46, 0.024 +19860718, 0.05, -0.19, -0.22, 0.024 +19860721, -0.17, -0.31, 0.38, 0.024 +19860722, 0.75, -0.74, 0.10, 0.024 +19860723, 0.12, -0.11, -0.12, 0.024 +19860724, -0.29, -0.17, -0.08, 0.024 +19860725, 0.76, -0.69, -0.15, 0.024 +19860728, -1.62, 0.42, 0.19, 0.024 +19860729, -0.68, -0.14, 0.37, 0.024 +19860730, 0.48, -0.95, -0.06, 0.024 +19860731, -0.12, 0.06, -0.17, 0.024 +19860801, -0.43, 0.34, 0.45, 0.022 +19860804, 0.11, -1.24, 0.63, 0.022 +19860805, 0.26, -0.02, 0.68, 0.022 +19860806, -0.15, -0.26, 0.28, 0.022 +19860807, 0.24, -0.05, 0.05, 0.022 +19860808, 0.02, 0.05, -0.08, 0.022 +19860811, 1.49, -0.75, -0.48, 0.022 +19860812, 1.08, -0.36, -0.51, 0.022 +19860813, 0.92, -0.26, 0.13, 0.022 +19860814, 0.35, 0.22, -0.26, 0.022 +19860815, 0.23, -0.03, 0.39, 0.022 +19860818, 0.04, -0.24, 0.22, 0.022 +19860819, -0.26, 0.08, 0.42, 0.022 +19860820, 1.08, -0.82, 0.61, 0.022 +19860821, -0.04, 0.04, 0.24, 0.022 +19860822, 0.13, -0.11, 0.03, 0.022 +19860825, -0.80, 0.26, 0.24, 0.022 +19860826, 1.53, -1.32, 0.19, 0.022 +19860827, 0.16, -0.03, 0.36, 0.022 +19860828, -0.09, 0.31, -0.15, 0.022 +19860829, 0.04, 0.18, -0.11, 0.022 +19860902, -1.41, 0.89, 0.76, 0.021 +19860903, 0.26, -0.62, 0.11, 0.021 +19860904, 1.26, -0.35, 0.16, 0.021 +19860905, -1.25, 0.81, -0.15, 0.021 +19860908, -1.12, 0.16, -0.15, 0.021 +19860909, -0.29, -0.17, 0.17, 0.021 +19860910, -0.46, -0.15, 0.26, 0.021 +19860911, -4.42, 1.13, 0.84, 0.021 +19860912, -1.85, 0.37, 0.43, 0.021 +19860915, 0.26, -0.74, 0.27, 0.021 +19860916, -0.18, -0.40, 0.23, 0.021 +19860917, 0.31, 0.24, 0.06, 0.021 +19860918, 0.15, -0.09, -0.30, 0.021 +19860919, -0.07, 0.32, 0.16, 0.021 +19860922, 1.05, -0.34, -0.45, 0.021 +19860923, 0.45, 0.18, 0.10, 0.021 +19860924, 0.39, -0.05, 0.03, 0.021 +19860925, -1.53, 0.85, 0.46, 0.021 +19860926, 0.04, 0.12, 0.27, 0.021 +19860929, -0.99, 0.18, 0.33, 0.021 +19860930, 0.65, 0.03, -0.15, 0.021 +19861001, 0.83, -0.39, -0.13, 0.020 +19861002, 0.12, 0.00, -0.18, 0.020 +19861003, -0.09, -0.10, 0.20, 0.020 +19861006, 0.34, -0.45, -0.30, 0.020 +19861007, -0.18, -0.05, 0.56, 0.020 +19861008, 0.77, -0.63, -0.16, 0.020 +19861009, -0.26, 0.26, -0.01, 0.020 +19861010, -0.10, 0.15, -0.25, 0.020 +19861013, 0.13, -0.13, 0.06, 0.020 +19861014, -0.20, 0.09, -0.43, 0.020 +19861015, 1.21, -0.54, -0.48, 0.020 +19861016, 0.27, -0.20, 0.01, 0.020 +19861017, -0.28, 0.24, -0.03, 0.020 +19861020, -0.98, 0.42, 0.17, 0.020 +19861021, -0.05, 0.18, 0.12, 0.020 +19861022, 0.14, -0.13, -0.13, 0.020 +19861023, 1.08, -0.63, -0.38, 0.020 +19861024, -0.26, 0.29, -0.07, 0.020 +19861027, 0.21, -0.31, -0.14, 0.020 +19861028, 0.20, -0.07, -0.10, 0.020 +19861029, 0.61, -0.20, -0.09, 0.020 +19861030, 1.01, -0.49, 0.13, 0.020 +19861031, 0.05, 0.27, 0.31, 0.020 +19861103, 0.60, -0.68, -0.10, 0.021 +19861104, 0.21, 0.06, 0.01, 0.021 +19861105, 0.21, 0.12, 0.30, 0.021 +19861106, -0.24, 0.05, 0.15, 0.021 +19861107, -0.02, 0.22, -0.01, 0.021 +19861110, 0.06, 0.09, 0.10, 0.021 +19861111, 0.32, -0.21, -0.08, 0.021 +19861112, -0.20, 0.06, 0.15, 0.021 +19861113, -1.28, 0.70, 0.52, 0.021 +19861114, 0.43, -0.28, -0.11, 0.021 +19861117, -0.57, 0.04, -0.08, 0.021 +19861118, -2.26, 1.02, 0.27, 0.021 +19861119, -0.05, -1.03, 0.10, 0.021 +19861120, 1.58, -0.78, -0.14, 0.021 +19861121, 1.29, -0.94, -0.21, 0.021 +19861124, 0.55, -0.46, -0.26, 0.021 +19861125, 0.26, -0.02, -0.46, 0.021 +19861126, 0.15, -0.16, -0.40, 0.021 +19861128, 0.19, 0.28, 0.23, 0.021 +19861201, -0.16, -0.50, -0.08, 0.022 +19861202, 1.71, -0.89, -0.37, 0.022 +19861203, 0.10, 0.01, -0.34, 0.022 +19861204, -0.18, 0.30, -0.14, 0.022 +19861205, -0.68, 0.40, 0.09, 0.022 +19861208, -0.11, -0.23, 0.04, 0.022 +19861209, -0.68, 0.25, 0.22, 0.022 +19861210, 0.51, -0.47, 0.01, 0.022 +19861211, -0.95, 0.43, 0.05, 0.022 +19861212, -0.45, -0.04, 0.63, 0.022 +19861215, 0.08, -0.69, 0.42, 0.022 +19861216, 0.60, -0.43, -0.12, 0.022 +19861217, -0.82, 0.38, -0.04, 0.022 +19861218, -0.36, 0.11, 0.02, 0.022 +19861219, 0.83, -0.12, -0.08, 0.022 +19861222, -0.35, -0.19, 0.42, 0.022 +19861223, -0.99, 0.07, 0.01, 0.022 +19861224, 0.32, 0.18, -0.05, 0.022 +19861226, 0.11, 0.09, -0.15, 0.022 +19861229, -0.90, 0.14, 0.10, 0.022 +19861230, -0.54, 0.25, -0.13, 0.022 +19861231, -0.37, 1.04, -0.18, 0.022 +19870102, 1.79, -0.27, -0.01, 0.020 +19870105, 2.45, -0.11, -0.33, 0.020 +19870106, 0.43, 0.38, -0.61, 0.020 +19870107, 1.13, 0.20, -0.62, 0.020 +19870108, 0.82, 0.27, -0.33, 0.020 +19870109, 0.58, 0.23, 0.17, 0.020 +19870112, 0.70, 0.44, 0.24, 0.020 +19870113, -0.09, 0.29, 0.12, 0.020 +19870114, 0.94, -0.13, -0.47, 0.020 +19870115, 0.89, -0.03, -0.52, 0.020 +19870116, -0.02, -0.82, 0.08, 0.020 +19870119, 0.98, -0.51, -0.80, 0.020 +19870120, -0.09, -0.07, 0.42, 0.020 +19870121, -0.51, -0.31, 0.01, 0.020 +19870122, 1.85, -1.26, -0.69, 0.020 +19870123, -1.14, 0.65, 0.21, 0.020 +19870126, -0.38, -0.39, 0.38, 0.020 +19870127, 1.30, -0.63, -0.60, 0.020 +19870128, 0.56, -0.22, -0.22, 0.020 +19870129, -0.36, 0.36, 0.36, 0.020 +19870130, -0.02, 0.19, 0.29, 0.020 +19870202, 0.97, 0.25, -0.37, 0.023 +19870203, -0.03, 0.70, -0.32, 0.023 +19870204, 1.22, 0.03, -0.04, 0.023 +19870205, 0.68, 0.14, -0.16, 0.023 +19870206, -0.21, 0.64, -0.09, 0.023 +19870209, -0.62, 0.35, -0.13, 0.023 +19870210, -0.99, 0.63, -0.01, 0.023 +19870211, 0.86, 0.17, -0.91, 0.023 +19870212, -0.46, 0.83, -0.47, 0.023 +19870213, 1.25, -0.63, -0.83, 0.023 +19870217, 1.68, -0.72, -1.10, 0.023 +19870218, -0.02, -0.28, 0.22, 0.023 +19870219, 0.12, -0.15, 0.27, 0.023 +19870220, -0.02, 0.05, 0.19, 0.023 +19870223, -0.86, 0.32, -0.11, 0.023 +19870224, 0.20, 0.23, -0.51, 0.023 +19870225, 0.44, 0.14, -0.89, 0.023 +19870226, -0.22, 0.50, -0.38, 0.023 +19870227, 0.37, 0.10, -0.12, 0.023 +19870302, -0.22, 0.27, 0.29, 0.021 +19870303, 0.21, -0.29, 0.30, 0.021 +19870304, 1.25, -0.64, -0.21, 0.021 +19870305, 0.59, -0.17, -0.38, 0.021 +19870306, -0.02, 0.18, 0.32, 0.021 +19870309, -0.67, 0.31, 0.19, 0.021 +19870310, 0.79, -0.32, -0.50, 0.021 +19870311, -0.08, 0.56, -0.16, 0.021 +19870312, 0.29, 0.19, 0.00, 0.021 +19870313, -0.38, 0.37, 0.38, 0.021 +19870316, -0.60, 0.15, 0.18, 0.021 +19870317, 1.17, -0.65, -0.28, 0.021 +19870318, 0.06, 0.03, 0.36, 0.021 +19870319, 0.43, -0.10, -0.20, 0.021 +19870320, 1.06, -0.39, -0.11, 0.021 +19870323, 0.65, -1.00, 0.01, 0.021 +19870324, 0.11, -0.19, 0.17, 0.021 +19870325, -0.25, 0.27, 0.13, 0.021 +19870326, 0.17, 0.17, 0.29, 0.021 +19870327, -1.32, 1.16, 0.28, 0.021 +19870330, -2.27, 0.40, 0.73, 0.021 +19870331, 0.69, 0.01, -0.21, 0.021 +19870401, 0.08, -0.66, -0.09, 0.021 +19870402, 0.40, 0.29, -0.15, 0.021 +19870403, 1.92, -0.83, -0.69, 0.021 +19870406, 0.40, -0.23, -0.15, 0.021 +19870407, -1.41, 0.98, 0.42, 0.021 +19870408, 0.07, -0.02, -0.21, 0.021 +19870409, -1.33, 0.68, -0.24, 0.021 +19870410, -0.27, -0.03, -0.16, 0.021 +19870413, -2.06, 0.86, 0.13, 0.021 +19870414, -2.48, -0.32, -0.12, 0.021 +19870415, 1.59, -1.08, 0.04, 0.021 +19870416, 0.94, -0.25, 0.48, 0.021 +19870420, -0.31, -0.06, 0.16, 0.021 +19870421, 1.75, -1.96, -0.37, 0.021 +19870422, -1.43, 1.57, -0.15, 0.021 +19870423, -0.21, -0.06, 0.19, 0.021 +19870424, -1.63, 0.76, 0.28, 0.021 +19870427, -0.20, -0.88, 0.23, 0.021 +19870428, 0.45, 0.09, -0.08, 0.021 +19870429, 0.66, -0.25, 0.04, 0.021 +19870430, 1.12, -0.43, 0.08, 0.021 +19870501, -0.13, 0.05, 0.21, 0.019 +19870504, 0.32, -0.41, -0.05, 0.019 +19870505, 1.77, -0.87, -0.37, 0.019 +19870506, 0.03, -0.03, 0.65, 0.019 +19870507, -0.16, 0.42, 0.51, 0.019 +19870508, -0.32, 0.51, 0.13, 0.019 +19870511, -0.45, 0.65, 0.41, 0.019 +19870512, 0.25, -0.57, -0.25, 0.019 +19870513, 0.21, 0.00, -0.53, 0.019 +19870514, 0.04, 0.15, -0.17, 0.019 +19870515, -1.96, 1.10, 0.25, 0.019 +19870518, -0.65, -0.61, 0.37, 0.019 +19870519, -2.05, 1.06, 0.05, 0.019 +19870520, -0.55, -0.18, -0.33, 0.019 +19870521, 0.67, -0.24, -0.27, 0.019 +19870522, 0.42, -0.58, 0.11, 0.019 +19870526, 2.18, -1.41, -0.37, 0.019 +19870527, 0.07, 0.28, -0.20, 0.019 +19870528, 0.56, -0.50, -0.45, 0.019 +19870529, -0.04, 0.57, 0.35, 0.019 +19870601, -0.04, -0.09, 0.28, 0.022 +19870602, -0.46, 0.34, 0.00, 0.022 +19870603, 1.35, -1.02, -0.20, 0.022 +19870604, 0.50, -0.25, -0.07, 0.022 +19870605, -0.30, 0.51, 0.07, 0.022 +19870608, 0.88, -0.60, 0.07, 0.022 +19870609, 0.20, -0.02, -0.40, 0.022 +19870610, 0.13, -0.02, 0.07, 0.022 +19870611, 0.34, -0.25, 0.01, 0.022 +19870612, 0.86, -0.53, -0.03, 0.022 +19870615, 0.41, -0.54, 0.10, 0.022 +19870616, 0.46, -0.28, -0.20, 0.022 +19870617, 0.07, 0.12, -0.12, 0.022 +19870618, 0.19, -0.18, 0.18, 0.022 +19870619, 0.27, 0.02, 0.14, 0.022 +19870622, 0.63, -0.65, -0.35, 0.022 +19870623, -0.32, 0.07, 0.08, 0.022 +19870624, -0.44, 0.40, -0.01, 0.022 +19870625, 0.55, -0.42, 0.29, 0.022 +19870626, -0.46, 0.31, 0.12, 0.022 +19870629, 0.05, -0.07, 0.47, 0.022 +19870630, -1.04, 1.01, 0.52, 0.022 +19870701, -0.24, 0.14, 0.15, 0.021 +19870702, 0.63, -0.36, -0.10, 0.021 +19870706, -0.21, 0.04, 0.25, 0.021 +19870707, 0.58, -0.26, 0.71, 0.021 +19870708, 0.24, 0.09, 0.07, 0.021 +19870709, -0.13, 0.37, 0.11, 0.021 +19870710, 0.20, -0.17, 0.12, 0.021 +19870713, -0.18, 0.24, 0.22, 0.021 +19870714, 0.91, -0.25, -0.28, 0.021 +19870715, -0.06, 0.24, 0.08, 0.021 +19870716, 0.56, -0.13, 0.07, 0.021 +19870717, 0.46, -0.10, 0.16, 0.021 +19870720, -0.83, 0.50, 0.24, 0.021 +19870721, -0.80, 0.36, -0.02, 0.021 +19870722, -0.10, -0.12, -0.08, 0.021 +19870723, -0.28, -0.12, -0.08, 0.021 +19870724, 0.37, -0.08, -0.29, 0.021 +19870727, 0.38, -0.38, -0.20, 0.021 +19870728, 0.47, -0.21, -0.11, 0.021 +19870729, 0.89, -0.44, -0.28, 0.021 +19870730, 0.71, -0.14, -0.22, 0.021 +19870731, 0.20, 0.10, 0.15, 0.021 +19870803, -0.38, 0.05, 0.60, 0.022 +19870804, -0.31, 0.16, 0.21, 0.022 +19870805, 0.71, -0.10, -0.44, 0.022 +19870806, 1.09, -0.30, -0.86, 0.022 +19870807, 0.39, 0.12, -0.24, 0.022 +19870810, 1.32, -0.98, -0.05, 0.022 +19870811, 1.35, -1.03, -0.13, 0.022 +19870812, -0.22, -0.04, 0.28, 0.022 +19870813, 0.61, -0.34, 0.03, 0.022 +19870814, -0.09, 0.16, 0.65, 0.022 +19870817, 0.09, -0.27, -0.19, 0.022 +19870818, -1.40, 0.46, 0.13, 0.022 +19870819, 0.11, 0.21, -0.07, 0.022 +19870820, 1.39, -0.50, -0.27, 0.022 +19870821, 0.30, 0.10, -0.41, 0.022 +19870824, -0.59, 0.38, 0.05, 0.022 +19870825, 0.81, -0.56, -0.34, 0.022 +19870826, -0.47, 0.44, 0.11, 0.022 +19870827, -0.82, 0.68, 0.06, 0.022 +19870828, -1.10, 0.75, -0.14, 0.022 +19870831, 0.71, -0.16, 0.11, 0.022 +19870901, -1.59, 1.02, -0.08, 0.021 +19870902, -0.67, -0.08, -0.06, 0.021 +19870903, -0.45, 0.36, 0.01, 0.021 +19870904, -0.91, 0.61, 0.19, 0.021 +19870908, -1.27, -1.02, 0.11, 0.021 +19870909, 0.21, 0.23, 0.00, 0.021 +19870910, 0.92, -0.05, -0.80, 0.021 +19870911, 1.34, -0.37, -0.47, 0.021 +19870914, 0.21, -0.35, 0.12, 0.021 +19870915, -1.34, 0.74, 0.39, 0.021 +19870916, -0.77, 0.61, 0.15, 0.021 +19870917, -0.04, -0.15, 0.13, 0.021 +19870918, -0.10, 0.19, -0.09, 0.021 +19870921, -1.28, 0.42, 0.83, 0.021 +19870922, 2.16, -2.36, -0.03, 0.021 +19870923, 0.58, 0.09, -0.28, 0.021 +19870924, -0.25, 0.45, -0.22, 0.021 +19870925, 0.11, -0.08, 0.03, 0.021 +19870928, 0.72, -0.50, 0.04, 0.021 +19870929, -0.31, 0.07, 0.29, 0.021 +19870930, 0.18, 0.67, -0.06, 0.021 +19871001, 1.43, -1.15, -0.02, 0.027 +19871002, 0.30, 0.05, -0.36, 0.027 +19871005, 0.05, 0.27, -0.23, 0.027 +19871006, -2.24, 1.00, 0.60, 0.027 +19871007, -0.38, -0.37, -0.15, 0.027 +19871008, -1.34, 0.29, 0.35, 0.027 +19871009, -0.82, 0.30, 0.29, 0.027 +19871012, -0.74, -0.56, 0.28, 0.027 +19871013, 1.29, -1.41, 0.19, 0.027 +19871014, -2.44, 1.04, 0.57, 0.027 +19871015, -2.26, 0.87, 0.50, 0.027 +19871016, -4.87, 0.58, 0.76, 0.027 +19871019, -17.44, 6.20, 1.20, 0.027 +19871020, 0.72, -11.62, 2.62, 0.027 +19871021, 8.57, -1.12, -1.95, 0.027 +19871022, -3.97, -0.59, 1.45, 0.027 +19871023, -0.61, -1.95, 1.15, 0.027 +19871026, -8.31, -0.75, 2.56, 0.027 +19871027, 1.56, -3.54, -0.35, 0.027 +19871028, -0.19, -2.19, -0.96, 0.027 +19871029, 4.73, -0.47, -2.71, 0.027 +19871030, 3.61, 3.15, -0.96, 0.027 +19871102, 1.26, 0.22, 0.02, 0.017 +19871103, -1.87, -0.14, 0.96, 0.017 +19871104, -0.60, 0.23, 0.51, 0.017 +19871105, 2.11, -0.69, -0.25, 0.017 +19871106, -1.12, 1.64, 0.29, 0.017 +19871109, -2.48, 1.16, 0.90, 0.017 +19871110, -1.74, 0.04, 0.67, 0.017 +19871111, 1.00, -0.47, -0.42, 0.017 +19871112, 2.40, -0.82, -1.04, 0.017 +19871113, -0.80, 0.88, 0.09, 0.017 +19871116, 0.28, -0.38, 0.14, 0.017 +19871117, -1.47, -0.12, 0.58, 0.017 +19871118, 0.87, -0.54, -0.12, 0.017 +19871119, -1.98, 0.87, 0.14, 0.017 +19871120, 0.53, -1.12, 0.12, 0.017 +19871123, 0.32, -0.34, -0.08, 0.017 +19871124, 1.30, -0.35, -0.39, 0.017 +19871125, -0.60, 1.10, -0.18, 0.017 +19871127, -1.20, 0.95, 0.47, 0.017 +19871130, -3.99, 0.68, 0.87, 0.017 +19871201, 0.51, -0.92, 0.48, 0.018 +19871202, 0.39, -0.67, 0.03, 0.018 +19871203, -3.06, 1.28, 0.93, 0.018 +19871204, -1.02, -1.10, 0.33, 0.018 +19871207, 1.63, -1.75, -0.69, 0.018 +19871208, 2.28, -1.61, -0.14, 0.018 +19871209, 1.66, -0.24, -1.32, 0.018 +19871210, -1.67, 1.35, -0.66, 0.018 +19871211, 0.54, -0.05, 0.25, 0.018 +19871214, 2.71, -0.51, -1.35, 0.018 +19871215, 0.41, 1.19, -0.80, 0.018 +19871216, 2.02, -0.01, -0.67, 0.018 +19871217, -1.41, 1.75, -0.28, 0.018 +19871218, 2.21, -0.02, -0.19, 0.018 +19871221, 0.35, -0.01, -0.05, 0.018 +19871222, -0.05, -0.41, 0.12, 0.018 +19871223, 1.20, -0.12, -0.05, 0.018 +19871224, -0.16, 0.78, -0.19, 0.018 +19871228, -2.37, 0.35, 0.59, 0.018 +19871229, -0.36, -0.05, 0.04, 0.018 +19871230, 1.20, -0.28, -0.66, 0.018 +19871231, -0.19, 1.01, -0.04, 0.018 +19880104, 3.34, -0.88, -0.01, 0.015 +19880105, 1.22, 0.75, -0.48, 0.015 +19880106, 0.27, 0.35, 0.11, 0.015 +19880107, 0.74, -0.07, 0.29, 0.015 +19880108, -5.66, 2.84, 1.56, 0.015 +19880111, 0.90, -2.09, -0.37, 0.015 +19880112, -0.88, -0.15, 0.54, 0.015 +19880113, 0.19, -0.12, 0.36, 0.015 +19880114, 0.08, 0.33, 0.04, 0.015 +19880115, 2.31, -0.93, -0.45, 0.015 +19880118, 0.03, 0.19, 0.46, 0.015 +19880119, -0.70, 0.86, 0.57, 0.015 +19880120, -2.42, 0.64, 1.03, 0.015 +19880121, 0.17, -0.20, -0.10, 0.015 +19880122, 1.21, -0.37, 0.31, 0.015 +19880125, 1.93, -1.55, 0.07, 0.015 +19880126, -0.75, 0.57, 0.45, 0.015 +19880127, -0.05, 0.23, 0.31, 0.015 +19880128, 1.30, -0.71, 0.03, 0.015 +19880129, 1.24, -0.67, -0.05, 0.015 +19880201, -0.30, 0.85, 0.17, 0.023 +19880202, 0.19, -0.03, 0.25, 0.023 +19880203, -1.11, 0.82, 0.92, 0.023 +19880204, 0.00, -0.12, 0.14, 0.023 +19880205, -0.21, 0.55, 0.01, 0.023 +19880208, -0.68, 0.38, -0.16, 0.023 +19880209, 0.83, -0.71, -0.18, 0.023 +19880210, 1.72, -0.49, -0.51, 0.023 +19880211, -0.13, 0.77, -0.12, 0.023 +19880212, 0.55, 0.03, -0.32, 0.023 +19880216, 0.74, -0.47, -0.12, 0.023 +19880217, -0.17, 0.50, -0.10, 0.023 +19880218, -0.35, 0.68, -0.15, 0.023 +19880219, 1.13, -0.89, -0.02, 0.023 +19880222, 1.29, -0.35, -0.43, 0.023 +19880223, -0.06, 0.39, -0.13, 0.023 +19880224, 0.01, 0.61, -0.34, 0.023 +19880225, -0.73, 1.29, 0.20, 0.023 +19880226, 0.22, -0.12, -0.21, 0.023 +19880229, 1.79, -0.53, -0.42, 0.023 +19880301, -0.15, 0.24, -0.05, 0.019 +19880302, 0.43, 0.28, -0.24, 0.019 +19880303, 0.06, 0.22, -0.27, 0.019 +19880304, -0.13, 0.52, 0.07, 0.019 +19880307, 0.13, 0.51, -0.23, 0.019 +19880308, 0.69, 0.34, -0.20, 0.019 +19880309, 0.06, 1.02, -0.40, 0.019 +19880310, -1.66, 0.96, 0.33, 0.019 +19880311, 0.17, -0.38, 0.70, 0.019 +19880314, 0.42, -0.15, -0.33, 0.019 +19880315, -0.05, 0.12, 0.11, 0.019 +19880316, 0.81, -0.30, 0.10, 0.019 +19880317, 0.87, -0.40, -0.34, 0.019 +19880318, -0.01, 0.08, 0.34, 0.019 +19880321, -0.78, 0.29, 0.18, 0.019 +19880322, 0.06, 0.18, -0.20, 0.019 +19880323, 0.14, 0.45, 0.37, 0.019 +19880324, -1.80, 0.75, 0.22, 0.019 +19880325, -1.49, 0.79, 0.15, 0.019 +19880328, -0.40, -0.46, 0.12, 0.019 +19880329, 0.72, 0.07, -0.22, 0.019 +19880330, -0.64, 0.27, 0.47, 0.019 +19880331, 0.35, 0.67, 0.10, 0.019 +19880404, -0.93, 0.00, 0.31, 0.023 +19880405, 0.68, -0.51, -0.05, 0.023 +19880406, 2.20, -1.47, -0.04, 0.023 +19880407, 0.28, 0.26, 0.08, 0.023 +19880408, 1.09, -0.32, 0.06, 0.023 +19880411, 0.28, 0.16, 0.11, 0.023 +19880412, 0.45, -0.10, 0.12, 0.023 +19880413, -0.03, 0.04, 0.08, 0.023 +19880414, -3.76, 1.59, 0.44, 0.023 +19880415, -0.17, -0.37, -0.01, 0.023 +19880418, -0.14, 0.79, 0.25, 0.023 +19880419, -0.28, 0.74, -0.06, 0.023 +19880420, -0.70, 0.06, 0.03, 0.023 +19880421, -0.04, -0.22, 0.17, 0.023 +19880422, 1.09, -1.06, 0.24, 0.023 +19880425, 0.71, -0.47, 0.25, 0.023 +19880426, 0.60, -0.10, -0.20, 0.023 +19880427, 0.01, 0.32, -0.07, 0.023 +19880428, -0.39, 0.56, 0.01, 0.023 +19880429, -0.25, 0.91, -0.12, 0.023 +19880502, 0.02, -0.09, -0.31, 0.024 +19880503, 0.51, -0.18, 0.02, 0.024 +19880504, -0.75, 0.76, 0.12, 0.024 +19880505, -0.54, 0.28, 0.33, 0.024 +19880506, -0.38, 0.36, 0.52, 0.024 +19880509, -0.43, -0.28, 0.35, 0.024 +19880510, 0.24, -0.48, 0.32, 0.024 +19880511, -1.56, -0.01, 0.40, 0.024 +19880512, 0.25, -0.07, 0.15, 0.024 +19880513, 0.93, -0.35, 0.01, 0.024 +19880516, 0.59, -0.56, -0.04, 0.024 +19880517, -0.92, 0.68, 0.21, 0.024 +19880518, -1.49, 0.18, 0.47, 0.024 +19880519, 0.25, -0.66, -0.11, 0.024 +19880520, 0.11, 0.09, -0.05, 0.024 +19880523, -0.75, 0.19, 0.15, 0.024 +19880524, 0.86, -0.64, -0.19, 0.024 +19880525, 0.20, -0.02, 0.02, 0.024 +19880526, 0.33, 0.02, 0.08, 0.024 +19880527, -0.36, 0.17, 0.16, 0.024 +19880531, 2.70, -2.08, -0.21, 0.024 +19880601, 1.66, -0.68, -0.36, 0.022 +19880602, -0.40, 0.49, 0.02, 0.022 +19880603, 0.44, 0.01, 0.14, 0.022 +19880606, 0.27, 0.16, -0.28, 0.022 +19880607, -0.51, 0.46, -0.07, 0.022 +19880608, 1.97, -1.06, -0.17, 0.022 +19880609, -0.18, 0.75, -0.04, 0.022 +19880610, 0.30, 0.13, 0.13, 0.022 +19880613, 0.08, 0.13, -0.16, 0.022 +19880614, 0.87, -0.61, -0.02, 0.022 +19880615, 0.09, 0.10, 0.13, 0.022 +19880616, -1.31, 1.02, 0.31, 0.022 +19880617, 0.14, -0.37, 0.16, 0.022 +19880620, -0.51, 0.45, 0.15, 0.022 +19880621, 0.81, -0.63, -0.02, 0.022 +19880622, 1.25, -0.65, -0.12, 0.022 +19880623, -0.14, 0.42, -0.01, 0.022 +19880624, -0.21, 0.51, 0.07, 0.022 +19880627, -1.34, 1.13, 0.09, 0.022 +19880628, 0.93, -0.54, -0.28, 0.022 +19880629, -0.36, 0.46, -0.18, 0.022 +19880630, 0.86, 0.28, -0.54, 0.022 +19880701, -0.39, 0.42, 0.10, 0.025 +19880705, 1.09, -1.09, -0.01, 0.025 +19880706, -1.11, 1.15, 0.14, 0.025 +19880707, -0.06, 0.11, -0.02, 0.025 +19880708, -0.50, 0.38, 0.34, 0.025 +19880711, 0.11, -0.04, 0.05, 0.025 +19880712, -0.78, 0.55, 0.05, 0.025 +19880713, 0.30, -0.47, 0.11, 0.025 +19880714, 0.28, -0.04, 0.00, 0.025 +19880715, 0.44, -0.31, -0.01, 0.025 +19880718, -0.42, 0.41, 0.11, 0.025 +19880719, -0.76, 0.34, 0.45, 0.025 +19880720, 0.41, -0.21, 0.18, 0.025 +19880721, -1.05, 0.60, 0.30, 0.025 +19880722, -1.04, 0.47, 0.31, 0.025 +19880725, 0.28, -0.44, 0.01, 0.025 +19880726, 0.14, -0.24, 0.05, 0.025 +19880727, -0.85, 0.40, 0.48, 0.025 +19880728, 0.97, -0.99, -0.14, 0.025 +19880729, 1.75, -1.29, -0.24, 0.025 +19880801, 0.19, 0.16, 0.04, 0.026 +19880802, -0.01, -0.07, 0.25, 0.026 +19880803, 0.30, -0.25, -0.15, 0.026 +19880804, -0.21, 0.23, 0.22, 0.026 +19880805, -0.32, 0.08, 0.23, 0.026 +19880808, -0.33, 0.21, 0.14, 0.026 +19880809, -1.12, 0.39, 0.17, 0.026 +19880810, -1.66, 0.28, 0.42, 0.026 +19880811, 0.21, -0.47, -0.10, 0.026 +19880812, -0.10, 0.24, 0.06, 0.026 +19880815, -1.28, 0.29, 0.48, 0.026 +19880816, 0.59, -0.51, -0.37, 0.026 +19880817, 0.10, -0.19, 0.11, 0.026 +19880818, 0.13, -0.01, -0.11, 0.026 +19880819, -0.17, 0.32, 0.04, 0.026 +19880822, -1.12, 0.12, 0.61, 0.026 +19880823, -0.03, -0.18, 0.03, 0.026 +19880824, 1.25, -0.68, -0.30, 0.026 +19880825, -0.63, 0.16, 0.14, 0.026 +19880826, 0.15, -0.07, -0.03, 0.026 +19880829, 0.89, -0.64, -0.39, 0.026 +19880830, 0.10, -0.02, 0.23, 0.026 +19880831, -0.23, 0.62, 0.33, 0.026 +19880901, -1.10, 0.29, 0.42, 0.029 +19880902, 1.88, -1.28, -0.26, 0.029 +19880906, 0.37, -0.16, -0.31, 0.029 +19880907, 0.11, 0.15, -0.14, 0.029 +19880908, 0.12, 0.31, -0.21, 0.029 +19880909, 0.37, -0.04, -0.39, 0.029 +19880912, -0.10, 0.20, -0.17, 0.029 +19880913, 0.23, -0.18, 0.14, 0.029 +19880914, 0.56, -0.30, -0.09, 0.029 +19880915, -0.35, 0.29, 0.29, 0.029 +19880916, 0.69, -0.58, -0.01, 0.029 +19880919, -0.47, 0.40, 0.30, 0.029 +19880920, 0.27, -0.18, -0.01, 0.029 +19880921, 0.17, -0.17, -0.39, 0.029 +19880922, -0.35, 0.17, -0.03, 0.029 +19880923, 0.19, -0.07, 0.03, 0.029 +19880926, -0.34, -0.14, 0.39, 0.029 +19880927, -0.24, 0.06, 0.06, 0.029 +19880928, 0.27, -0.20, -0.19, 0.029 +19880929, 1.08, -0.45, -0.30, 0.029 +19880930, -0.08, 0.62, 0.21, 0.029 +19881003, -0.32, -0.60, 0.03, 0.029 +19881004, -0.19, 0.33, -0.18, 0.029 +19881005, 0.37, -0.19, 0.17, 0.029 +19881006, 0.15, 0.00, 0.14, 0.029 +19881007, 1.58, -1.55, 0.07, 0.029 +19881010, 0.07, 0.12, 0.05, 0.029 +19881011, -0.13, -0.04, 0.00, 0.029 +19881012, -1.25, 0.88, 0.52, 0.029 +19881013, 0.30, -0.44, 0.07, 0.029 +19881014, 0.10, 0.07, -0.17, 0.029 +19881017, 0.19, -0.19, 0.09, 0.029 +19881018, 0.80, -0.56, -0.13, 0.029 +19881019, -0.69, 0.58, 0.03, 0.029 +19881020, 1.67, -1.29, -0.69, 0.029 +19881021, 0.17, -0.27, 0.39, 0.029 +19881024, -0.32, 0.18, 0.09, 0.029 +19881025, -0.05, -0.15, 0.38, 0.029 +19881026, -0.34, 0.12, 0.22, 0.029 +19881027, -1.33, 0.24, 0.59, 0.029 +19881028, 0.33, -0.12, 0.08, 0.029 +19881031, 0.09, -0.07, -0.03, 0.029 +19881101, 0.05, -0.17, 0.15, 0.027 +19881102, -0.04, -0.17, 0.18, 0.027 +19881103, 0.08, 0.02, 0.27, 0.027 +19881104, -0.77, 0.32, 0.05, 0.027 +19881107, -0.90, -0.17, 0.21, 0.027 +19881108, 0.38, 0.03, -0.21, 0.027 +19881109, -0.54, 0.21, 0.01, 0.027 +19881110, 0.08, 0.09, 0.12, 0.027 +19881111, -1.82, 0.93, 0.27, 0.027 +19881114, -0.20, -0.41, 0.14, 0.027 +19881115, 0.16, -0.16, 0.01, 0.027 +19881116, -1.56, 0.43, 0.49, 0.027 +19881117, 0.10, -0.50, -0.20, 0.027 +19881118, 0.58, -0.48, -0.14, 0.027 +19881121, -0.22, -0.38, 0.38, 0.027 +19881122, 0.27, -0.48, 0.23, 0.027 +19881123, 0.63, -0.28, -0.21, 0.027 +19881125, -0.57, 0.41, 0.41, 0.027 +19881128, 0.36, -0.46, -0.11, 0.027 +19881129, 0.80, -0.49, -0.49, 0.027 +19881130, 0.91, -0.03, -0.32, 0.027 +19881201, -0.19, 0.51, -0.13, 0.030 +19881202, -0.20, 0.34, -0.40, 0.030 +19881205, 0.87, -0.34, -0.18, 0.030 +19881206, 0.83, -0.60, 0.04, 0.030 +19881207, 0.13, -0.12, 0.17, 0.030 +19881208, -0.48, 0.31, 0.08, 0.030 +19881209, 0.12, -0.09, 0.06, 0.030 +19881212, -0.18, -0.14, 0.33, 0.030 +19881213, -0.17, -0.11, 0.11, 0.030 +19881214, -0.33, 0.40, -0.02, 0.030 +19881215, -0.31, 0.28, -0.14, 0.030 +19881216, 0.60, 0.19, -0.36, 0.030 +19881219, 0.69, -0.63, -0.30, 0.030 +19881220, -0.32, 0.29, -0.11, 0.030 +19881221, -0.10, -0.08, -0.10, 0.030 +19881222, -0.10, 0.29, 0.07, 0.030 +19881223, 0.38, -0.14, -0.20, 0.030 +19881227, -0.30, 0.09, 0.00, 0.030 +19881228, 0.11, 0.08, -0.03, 0.030 +19881229, 0.67, -0.14, -0.26, 0.030 +19881230, -0.23, 1.39, -0.29, 0.030 +19890103, -0.82, 0.60, 0.29, 0.026 +19890104, 1.30, -0.38, -0.05, 0.026 +19890105, 0.21, 0.06, 0.28, 0.026 +19890106, 0.29, 0.29, 0.39, 0.026 +19890109, 0.12, -0.12, 0.31, 0.026 +19890110, -0.21, -0.01, 0.12, 0.026 +19890111, 0.43, -0.40, 0.03, 0.026 +19890112, 0.36, -0.09, -0.05, 0.026 +19890113, 0.14, -0.05, 0.06, 0.026 +19890116, 0.12, -0.12, 0.16, 0.026 +19890117, -0.21, 0.01, 0.22, 0.026 +19890118, 0.87, -0.28, 0.00, 0.026 +19890119, 0.14, 0.13, -0.19, 0.026 +19890120, -0.06, 0.14, 0.02, 0.026 +19890123, -0.60, 0.32, 0.13, 0.026 +19890124, 1.04, -0.89, -0.17, 0.026 +19890125, 0.26, 0.04, -0.07, 0.026 +19890126, 0.80, -0.35, -0.52, 0.026 +19890127, 0.64, -0.56, 0.02, 0.026 +19890130, 0.33, -0.14, -0.30, 0.026 +19890131, 0.77, -0.24, -0.18, 0.026 +19890201, -0.01, 0.47, -0.43, 0.032 +19890202, 0.00, 0.40, -0.12, 0.032 +19890203, 0.10, 0.31, -0.34, 0.032 +19890206, -0.17, 0.13, 0.34, 0.032 +19890207, 1.04, -0.46, 0.18, 0.032 +19890208, -0.21, 0.35, 0.20, 0.032 +19890209, -0.70, 0.51, 0.14, 0.032 +19890210, -1.27, 0.46, 0.35, 0.032 +19890213, 0.04, -0.42, 0.16, 0.032 +19890214, -0.10, 0.42, -0.23, 0.032 +19890215, 0.74, -0.31, -0.11, 0.032 +19890216, 0.21, 0.19, 0.14, 0.032 +19890217, 0.55, -0.21, -0.12, 0.032 +19890221, -0.23, 0.01, 0.10, 0.032 +19890222, -1.47, 0.67, 0.18, 0.032 +19890223, 0.26, -0.29, 0.03, 0.032 +19890224, -1.37, 0.81, 0.13, 0.032 +19890227, 0.07, -0.30, 0.11, 0.032 +19890228, 0.31, -0.02, 0.12, 0.032 +19890301, -0.37, 0.47, 0.14, 0.030 +19890302, 0.84, -0.23, -0.20, 0.030 +19890303, 0.36, 0.05, 0.04, 0.030 +19890306, 0.99, -0.51, -0.03, 0.030 +19890307, -0.17, 0.45, 0.10, 0.030 +19890308, 0.07, 0.17, -0.09, 0.030 +19890309, -0.10, 0.03, 0.02, 0.030 +19890310, -0.25, 0.35, -0.03, 0.030 +19890313, 0.61, -0.49, -0.08, 0.030 +19890314, -0.07, -0.06, 0.01, 0.030 +19890315, 0.39, -0.01, -0.03, 0.030 +19890316, 0.79, -0.36, -0.14, 0.030 +19890317, -2.08, 0.50, 0.58, 0.030 +19890320, -0.97, 0.02, 0.27, 0.030 +19890321, 0.45, 0.15, -0.14, 0.030 +19890322, -0.28, 0.24, 0.08, 0.030 +19890323, -0.39, 0.55, 0.03, 0.030 +19890327, 0.36, -0.46, 0.12, 0.030 +19890328, 0.35, 0.17, -0.15, 0.030 +19890329, 0.23, -0.13, -0.13, 0.030 +19890330, 0.06, -0.03, -0.06, 0.030 +19890331, 0.76, -0.19, 0.11, 0.030 +19890403, 0.45, -0.22, -0.13, 0.034 +19890404, -0.25, 0.12, -0.05, 0.034 +19890405, 0.27, -0.06, 0.16, 0.034 +19890406, -0.26, 0.25, -0.01, 0.034 +19890407, 0.55, -0.09, -0.30, 0.034 +19890410, -0.01, 0.14, -0.14, 0.034 +19890411, 0.40, 0.00, -0.06, 0.034 +19890412, 0.19, 0.27, -0.19, 0.034 +19890413, -0.75, 0.31, -0.01, 0.034 +19890414, 1.32, -0.68, -0.15, 0.034 +19890417, 0.07, -0.25, 0.06, 0.034 +19890418, 1.13, -0.82, -0.06, 0.034 +19890419, 0.35, -0.21, -0.05, 0.034 +19890420, -0.21, 0.24, 0.05, 0.034 +19890421, 0.72, -0.39, -0.06, 0.034 +19890424, -0.16, 0.20, 0.06, 0.034 +19890425, -0.45, 0.59, -0.34, 0.034 +19890426, 0.10, 0.05, -0.03, 0.034 +19890427, 0.71, -0.25, -0.09, 0.034 +19890428, 0.05, 0.20, -0.03, 0.034 +19890501, -0.15, 0.08, -0.10, 0.036 +19890502, -0.21, 0.45, 0.03, 0.036 +19890503, 0.00, 0.22, -0.28, 0.036 +19890504, -0.06, 0.27, -0.22, 0.036 +19890505, 0.01, 0.21, 0.11, 0.036 +19890508, -0.49, 0.07, 0.07, 0.036 +19890509, -0.20, 0.23, -0.07, 0.036 +19890510, 0.15, -0.01, -0.26, 0.036 +19890511, 0.30, -0.11, -0.25, 0.036 +19890512, 1.82, -1.32, -0.34, 0.036 +19890515, 0.66, -0.64, 0.01, 0.036 +19890516, -0.19, 0.05, 0.36, 0.036 +19890517, 0.62, -0.11, -0.30, 0.036 +19890518, 0.19, 0.24, -0.16, 0.036 +19890519, 0.78, -0.56, 0.01, 0.036 +19890522, 0.25, -0.45, 0.22, 0.036 +19890523, -0.92, 0.67, 0.31, 0.036 +19890524, 0.19, -0.01, 0.02, 0.036 +19890525, 0.08, 0.26, -0.18, 0.036 +19890526, 0.67, -0.17, -0.11, 0.036 +19890530, -0.61, 0.41, 0.28, 0.036 +19890531, 0.40, 0.12, 0.03, 0.036 +19890601, 0.45, 0.01, 0.05, 0.032 +19890602, 0.97, -0.46, -0.17, 0.032 +19890605, -0.87, 0.47, 0.35, 0.032 +19890606, 0.44, -0.51, 0.00, 0.032 +19890607, 0.81, -0.33, -0.24, 0.032 +19890608, 0.00, 0.30, -0.06, 0.032 +19890609, -0.02, -0.02, 0.09, 0.032 +19890612, -0.12, 0.06, 0.18, 0.032 +19890613, -0.67, 0.24, 0.50, 0.032 +19890614, -0.10, -0.06, 0.27, 0.032 +19890615, -1.06, 0.44, 0.08, 0.032 +19890616, 0.25, -0.02, -0.13, 0.032 +19890619, 0.08, -0.37, -0.09, 0.032 +19890620, -0.20, 0.03, 0.16, 0.032 +19890621, -0.21, -0.05, 0.04, 0.032 +19890622, 0.39, -0.27, -0.14, 0.032 +19890623, 1.41, -0.97, -0.38, 0.032 +19890626, -0.29, 0.10, 0.24, 0.032 +19890627, 0.50, -0.16, 0.04, 0.032 +19890628, -0.70, 0.15, 0.31, 0.032 +19890629, -1.83, 0.27, 0.68, 0.032 +19890630, -0.53, 0.10, 0.38, 0.032 +19890703, 0.33, -0.28, -0.11, 0.035 +19890705, 0.31, -0.23, -0.04, 0.035 +19890706, 0.36, 0.44, 0.00, 0.035 +19890707, 0.91, -0.46, -0.32, 0.035 +19890710, 0.52, -0.31, 0.06, 0.035 +19890711, 0.48, -0.31, -0.09, 0.035 +19890712, 0.30, 0.13, 0.01, 0.035 +19890713, 0.06, 0.11, -0.07, 0.035 +19890714, 0.37, -0.48, 0.18, 0.035 +19890717, 0.19, 0.07, -0.34, 0.035 +19890718, -0.31, 0.21, -0.02, 0.035 +19890719, 1.09, -0.47, -0.63, 0.035 +19890720, -0.58, 0.42, 0.04, 0.035 +19890721, 0.42, -0.48, -0.24, 0.035 +19890724, -0.59, 0.14, -0.03, 0.035 +19890725, 0.02, -0.07, -0.02, 0.035 +19890726, 1.00, -0.75, -0.46, 0.035 +19890727, 1.01, -0.52, -0.60, 0.035 +19890728, 0.10, -0.14, -0.03, 0.035 +19890731, 0.94, -0.82, 0.08, 0.035 +19890801, -0.50, 0.29, 0.44, 0.032 +19890802, 0.18, -0.09, 0.07, 0.032 +19890803, 0.23, 0.33, -0.06, 0.032 +19890804, -0.22, 0.29, 0.20, 0.032 +19890807, 1.27, -0.73, -0.02, 0.032 +19890808, 0.08, 0.08, 0.00, 0.032 +19890809, -0.47, 0.63, 0.04, 0.032 +19890810, 0.36, 0.01, 0.16, 0.032 +19890811, -0.80, 0.57, 0.08, 0.032 +19890814, -0.50, -0.01, 0.00, 0.032 +19890815, 0.33, -0.35, 0.15, 0.032 +19890816, 0.19, -0.24, -0.02, 0.032 +19890817, -0.27, 0.12, -0.21, 0.032 +19890818, 0.31, -0.21, -0.05, 0.032 +19890821, -1.28, 0.65, 0.20, 0.032 +19890822, 0.01, -0.12, -0.45, 0.032 +19890823, 0.88, -0.33, -0.18, 0.032 +19890824, 1.68, -1.01, -0.22, 0.032 +19890825, -0.16, 0.27, 0.08, 0.032 +19890828, 0.30, -0.34, -0.01, 0.032 +19890829, -0.50, 0.46, 0.16, 0.032 +19890830, 0.24, 0.03, 0.17, 0.032 +19890831, 0.13, 0.12, 0.20, 0.032 +19890901, 0.59, -0.37, -0.02, 0.033 +19890905, -0.22, 0.22, -0.05, 0.033 +19890906, -0.85, 0.46, 0.18, 0.033 +19890907, -0.18, 0.35, 0.27, 0.033 +19890908, 0.09, 0.30, -0.02, 0.033 +19890911, -0.29, -0.22, 0.14, 0.033 +19890912, 0.33, -0.05, -0.14, 0.033 +19890913, -0.77, 0.67, 0.15, 0.033 +19890914, -0.74, 0.09, -0.21, 0.033 +19890915, 0.19, -0.77, 0.05, 0.033 +19890918, 0.34, -0.50, -0.16, 0.033 +19890919, 0.06, -0.06, -0.13, 0.033 +19890920, -0.09, -0.03, 0.02, 0.033 +19890921, -0.11, 0.16, -0.15, 0.033 +19890922, 0.26, -0.14, 0.02, 0.033 +19890925, -0.71, 0.30, -0.03, 0.033 +19890926, 0.12, 0.21, -0.22, 0.033 +19890927, 0.11, -0.21, -0.52, 0.033 +19890928, 0.88, -0.28, -0.54, 0.033 +19890929, 0.26, 0.12, 0.03, 0.033 +19891002, 0.45, -0.12, 0.04, 0.031 +19891003, 0.95, -0.65, -0.29, 0.031 +19891004, 0.53, -0.42, -0.12, 0.031 +19891005, 0.06, 0.09, 0.13, 0.031 +19891006, 0.47, -0.26, -0.23, 0.031 +19891009, 0.20, -0.02, -0.18, 0.031 +19891010, -0.20, -0.12, -0.11, 0.031 +19891011, -0.60, 0.19, 0.09, 0.031 +19891012, -0.41, 0.23, -0.12, 0.031 +19891013, -5.52, 2.08, 0.97, 0.031 +19891016, 1.64, -3.49, -0.63, 0.031 +19891017, -0.43, 0.24, -0.26, 0.031 +19891018, 0.25, 0.32, -0.37, 0.031 +19891019, 1.52, -0.22, -0.65, 0.031 +19891020, -0.05, -0.05, 0.10, 0.031 +19891023, -0.67, 0.00, -0.05, 0.031 +19891024, -0.56, -0.80, -0.15, 0.031 +19891025, -0.26, 0.52, 0.17, 0.031 +19891026, -1.14, 0.26, 0.19, 0.031 +19891027, -0.99, -0.16, 0.42, 0.031 +19891030, -0.06, -0.43, 0.02, 0.031 +19891031, 1.34, -0.75, -0.19, 0.031 +19891101, 0.29, -0.09, 0.24, 0.033 +19891102, -0.66, 0.34, 0.30, 0.033 +19891103, -0.20, 0.28, 0.04, 0.033 +19891106, -1.36, 0.44, -0.01, 0.033 +19891107, 0.49, -0.56, 0.03, 0.033 +19891108, 0.97, -0.12, -0.70, 0.033 +19891109, -0.34, 0.38, -0.07, 0.033 +19891110, 0.59, -0.28, -0.39, 0.033 +19891113, 0.15, -0.23, -0.08, 0.033 +19891114, -0.47, 0.16, 0.28, 0.033 +19891115, 0.58, -0.40, -0.12, 0.033 +19891116, 0.02, -0.09, -0.08, 0.033 +19891117, 0.28, 0.06, -0.30, 0.033 +19891120, -0.64, 0.04, -0.08, 0.033 +19891121, -0.08, -0.23, -0.02, 0.033 +19891122, 0.53, -0.27, -0.22, 0.033 +19891124, 0.54, -0.25, -0.16, 0.033 +19891127, 0.37, -0.32, 0.23, 0.033 +19891128, 0.08, 0.17, 0.14, 0.033 +19891129, -0.56, 0.22, 0.05, 0.033 +19891130, 0.44, -0.51, -0.21, 0.033 +19891201, 1.06, -0.96, 0.01, 0.030 +19891204, 0.26, -0.28, 0.06, 0.030 +19891205, -0.38, 0.29, 0.16, 0.030 +19891206, -0.31, 0.38, 0.21, 0.030 +19891207, -0.25, 0.05, -0.27, 0.030 +19891208, 0.16, -0.13, 0.20, 0.030 +19891211, -0.14, -0.36, 0.05, 0.030 +19891212, 0.59, -0.80, 0.31, 0.030 +19891213, 0.25, -0.11, 0.14, 0.030 +19891214, -0.54, -0.21, 0.16, 0.030 +19891215, -0.39, -0.17, -0.27, 0.030 +19891218, -1.74, 0.13, 0.31, 0.030 +19891219, -0.44, -0.26, -0.06, 0.030 +19891220, 0.09, -0.05, 0.31, 0.030 +19891221, 0.53, 0.00, -0.06, 0.030 +19891222, 0.80, -0.02, -0.33, 0.030 +19891226, -0.09, 0.21, 0.06, 0.030 +19891227, 0.50, -0.16, -0.14, 0.030 +19891228, 0.46, -0.26, -0.32, 0.030 +19891229, 0.77, 0.33, -0.28, 0.030 +19900102, 1.44, -0.68, -0.06, 0.026 +19900103, -0.06, 0.74, -0.31, 0.026 +19900104, -0.71, 0.43, -0.25, 0.026 +19900105, -0.85, 0.76, -0.23, 0.026 +19900108, 0.30, -0.42, -0.24, 0.026 +19900109, -1.01, 0.87, 0.09, 0.026 +19900110, -0.76, -0.05, 0.32, 0.026 +19900111, 0.23, -0.22, 0.09, 0.026 +19900112, -2.33, 0.34, 0.39, 0.026 +19900115, -0.95, 0.03, 0.46, 0.026 +19900116, 0.92, -0.79, -0.41, 0.026 +19900117, -0.76, 0.96, -0.27, 0.026 +19900118, 0.05, -0.66, -0.04, 0.026 +19900119, 0.31, 0.10, 0.04, 0.026 +19900122, -2.31, 0.81, 0.50, 0.026 +19900123, -0.07, -0.47, 0.05, 0.026 +19900124, -0.44, -1.09, -0.36, 0.026 +19900125, -1.07, 1.00, 0.31, 0.026 +19900126, -0.36, -0.55, 0.45, 0.026 +19900129, -0.34, -0.69, 0.02, 0.026 +19900130, -0.90, -0.65, 0.59, 0.026 +19900131, 1.67, -1.22, -0.16, 0.026 +19900201, 0.08, 0.56, -0.03, 0.030 +19900202, 0.73, 0.31, -0.55, 0.030 +19900205, 0.38, 0.22, -0.28, 0.030 +19900206, -0.54, 0.62, 0.13, 0.030 +19900207, 1.07, -0.42, -0.27, 0.030 +19900208, -0.09, 0.29, -0.07, 0.030 +19900209, 0.24, -0.03, 0.08, 0.030 +19900212, -0.94, 0.52, 0.19, 0.030 +19900213, 0.14, -0.51, 0.14, 0.030 +19900214, 0.20, -0.12, 0.10, 0.030 +19900215, 0.78, -0.37, -0.05, 0.030 +19900216, -0.50, 0.52, 0.20, 0.030 +19900220, -1.35, 0.53, 0.35, 0.030 +19900221, -0.21, -0.49, 0.48, 0.030 +19900222, -0.36, 0.82, 0.00, 0.030 +19900223, -0.55, -0.21, 0.49, 0.030 +19900226, 1.00, -1.31, -0.12, 0.030 +19900227, 0.54, -0.10, -0.08, 0.030 +19900228, 0.53, 0.15, -0.12, 0.030 +19900301, 0.26, -0.04, -0.09, 0.029 +19900302, 0.80, -0.12, -0.26, 0.029 +19900305, -0.37, 0.56, -0.14, 0.029 +19900306, 1.07, -0.46, -0.40, 0.029 +19900307, -0.22, 0.65, -0.26, 0.029 +19900308, 0.84, -0.20, -0.52, 0.029 +19900309, -0.53, 0.47, 0.03, 0.029 +19900312, 0.15, -0.21, -0.04, 0.029 +19900313, -0.69, 0.48, 0.27, 0.029 +19900314, 0.23, 0.17, -0.35, 0.029 +19900315, 0.25, 0.04, -0.17, 0.029 +19900316, 0.90, -0.41, -0.60, 0.029 +19900319, 0.38, -0.24, -0.74, 0.029 +19900320, -0.55, 0.34, 0.20, 0.029 +19900321, -0.45, 0.44, -0.03, 0.029 +19900322, -1.22, 0.32, 0.37, 0.029 +19900323, 0.44, 0.10, -0.37, 0.029 +19900326, 0.17, 0.05, -0.12, 0.029 +19900327, 0.80, -0.71, -0.31, 0.029 +19900328, 0.09, -0.31, 0.55, 0.029 +19900329, -0.35, 0.17, 0.12, 0.029 +19900330, -0.18, 0.37, 0.02, 0.029 +19900402, -0.42, -0.40, -0.06, 0.034 +19900403, 1.25, -0.67, -0.50, 0.034 +19900404, -0.64, 0.20, 0.07, 0.034 +19900405, -0.15, 0.18, -0.41, 0.034 +19900406, -0.29, -0.08, -0.23, 0.034 +19900409, 0.21, -0.75, -0.23, 0.034 +19900410, 0.17, 0.05, -0.24, 0.034 +19900411, 0.01, 0.12, -0.30, 0.034 +19900412, 0.69, -0.34, -0.35, 0.034 +19900416, 0.08, -0.09, -0.07, 0.034 +19900417, -0.08, -0.06, 0.03, 0.034 +19900418, -1.07, 0.46, 0.20, 0.034 +19900419, -0.75, 0.39, 0.32, 0.034 +19900420, -0.89, 0.31, -0.23, 0.034 +19900423, -1.17, 0.06, 0.24, 0.034 +19900424, -0.28, 0.16, -0.02, 0.034 +19900425, 0.45, -0.25, -0.19, 0.034 +19900426, 0.15, -0.02, -0.36, 0.034 +19900427, -1.08, 0.51, 0.32, 0.034 +19900430, 0.45, -0.31, -0.65, 0.034 +19900501, 0.42, -0.18, -0.08, 0.031 +19900502, 0.55, -0.37, -0.13, 0.031 +19900503, 0.31, -0.02, 0.06, 0.031 +19900504, 0.75, -0.36, -0.13, 0.031 +19900507, 0.56, -0.35, -0.15, 0.031 +19900508, 0.37, -0.47, 0.12, 0.031 +19900509, 0.11, -0.17, 0.14, 0.031 +19900510, 0.39, -0.06, -0.07, 0.031 +19900511, 2.01, -1.17, -0.09, 0.031 +19900514, 0.79, -0.38, -0.15, 0.031 +19900515, -0.08, -0.01, -0.06, 0.031 +19900516, -0.11, 0.12, 0.03, 0.031 +19900517, 0.19, 0.46, -0.28, 0.031 +19900518, 0.09, 0.26, -0.51, 0.031 +19900521, 0.94, -0.15, -0.68, 0.031 +19900522, 0.15, 0.18, -0.56, 0.031 +19900523, 0.22, 0.15, -0.57, 0.031 +19900524, -0.08, 0.33, -0.32, 0.031 +19900525, -0.94, 0.55, 0.55, 0.031 +19900529, 1.35, -0.95, -0.38, 0.031 +19900530, 0.07, 0.09, -0.04, 0.031 +19900531, 0.07, 0.05, -0.19, 0.031 +19900601, 0.53, -0.06, 0.10, 0.030 +19900604, 1.11, -0.64, 0.26, 0.030 +19900605, -0.17, 0.11, 0.34, 0.030 +19900606, -0.36, 0.30, 0.18, 0.030 +19900607, -0.47, 0.39, 0.02, 0.030 +19900608, -1.10, 0.61, 0.16, 0.030 +19900611, 0.67, -0.50, -0.03, 0.030 +19900612, 1.10, -0.65, -0.67, 0.030 +19900613, -0.26, 0.78, -0.49, 0.030 +19900614, -0.53, 0.30, -0.16, 0.030 +19900615, -0.10, 0.23, -0.32, 0.030 +19900618, -1.47, 0.22, 0.29, 0.030 +19900619, 0.29, -0.44, -0.06, 0.030 +19900620, 0.06, -0.10, -0.12, 0.030 +19900621, 0.26, -0.21, -0.47, 0.030 +19900622, -1.07, 1.08, 0.01, 0.030 +19900625, -0.86, 0.30, -0.07, 0.030 +19900626, -0.15, -0.01, -0.05, 0.030 +19900627, 0.65, -0.58, -0.14, 0.030 +19900628, 0.66, 0.02, -0.73, 0.030 +19900629, 0.17, 0.26, 0.00, 0.030 +19900702, 0.30, -0.42, -0.12, 0.032 +19900703, 0.13, -0.16, -0.34, 0.032 +19900705, -1.04, 0.48, 0.02, 0.032 +19900706, 0.61, -0.41, -0.25, 0.032 +19900709, 0.22, -0.33, -0.15, 0.032 +19900710, -0.67, 0.47, -0.25, 0.032 +19900711, 1.04, -0.40, -0.55, 0.032 +19900712, 1.02, -0.41, -0.54, 0.032 +19900713, 0.42, -0.13, -0.11, 0.032 +19900716, 0.37, -0.29, -0.45, 0.032 +19900717, -0.45, -0.29, 0.49, 0.032 +19900718, -0.92, 0.25, 0.43, 0.032 +19900719, 0.12, -0.65, 0.06, 0.032 +19900720, -0.87, 0.62, -0.03, 0.032 +19900723, -1.89, -0.48, 0.77, 0.032 +19900724, 0.00, 0.05, 0.13, 0.032 +19900725, 0.35, 0.04, -0.15, 0.032 +19900726, -0.25, 0.35, -0.03, 0.032 +19900727, -0.68, -0.03, 0.49, 0.032 +19900730, 0.26, -1.21, 0.31, 0.032 +19900731, 0.07, -0.38, 0.23, 0.032 +19900801, -0.20, -0.31, -0.09, 0.028 +19900802, -1.22, -0.06, 0.46, 0.028 +19900803, -1.84, -0.71, 0.64, 0.028 +19900806, -3.32, -0.14, 1.37, 0.028 +19900807, 0.17, -0.03, -0.81, 0.028 +19900808, 1.11, 0.00, -0.73, 0.028 +19900809, 0.63, 0.30, -0.96, 0.028 +19900810, -1.19, 0.21, 0.58, 0.028 +19900813, 0.71, -1.03, -0.31, 0.028 +19900814, 0.21, 0.18, -0.20, 0.028 +19900815, 0.25, -0.20, -0.39, 0.028 +19900816, -2.18, 0.46, 0.70, 0.028 +19900817, -1.55, -0.34, 0.80, 0.028 +19900820, -0.11, -0.94, 0.52, 0.028 +19900821, -2.00, -0.39, 0.75, 0.028 +19900822, -1.58, 0.27, 0.90, 0.028 +19900823, -3.24, -1.09, 1.58, 0.028 +19900824, 1.46, -0.35, -1.69, 0.028 +19900827, 3.20, 0.11, -1.85, 0.028 +19900828, 0.07, 0.48, -0.08, 0.028 +19900829, 0.74, -0.51, 0.23, 0.028 +19900830, -1.39, 0.94, 0.33, 0.028 +19900831, 0.95, -0.78, -0.21, 0.028 +19900904, 0.09, -0.29, -0.27, 0.031 +19900905, 0.35, 0.18, -0.17, 0.031 +19900906, -1.06, 0.45, 0.62, 0.031 +19900907, 0.79, -0.50, -0.16, 0.031 +19900910, -0.38, 0.53, 0.02, 0.031 +19900911, -0.19, -0.15, 0.05, 0.031 +19900912, 0.29, -0.39, -0.10, 0.031 +19900913, -1.11, 0.33, 0.23, 0.031 +19900914, -0.61, -0.10, -0.18, 0.031 +19900917, 0.18, -0.56, -0.14, 0.031 +19900918, 0.07, -0.65, -0.13, 0.031 +19900919, -0.57, 0.48, 0.47, 0.031 +19900920, -1.61, 0.18, 0.68, 0.031 +19900921, -0.20, -0.57, 0.14, 0.031 +19900924, -2.19, -0.30, 0.61, 0.031 +19900925, 1.03, -0.82, -0.78, 0.031 +19900926, -1.07, -0.33, 0.23, 0.031 +19900927, -1.51, -0.45, 0.76, 0.031 +19900928, 1.50, -1.00, -1.16, 0.031 +19901001, 2.74, -1.50, -1.23, 0.030 +19901002, 0.20, 0.47, 0.17, 0.030 +19901003, -1.16, 0.38, 0.31, 0.030 +19901004, 0.19, -0.72, 0.36, 0.030 +19901005, -0.46, -0.29, 0.33, 0.030 +19901008, 0.53, -0.54, 0.03, 0.030 +19901009, -2.54, 0.59, 0.78, 0.030 +19901010, -1.60, 0.13, 0.50, 0.030 +19901011, -1.76, -0.48, 0.85, 0.030 +19901012, 1.28, -1.04, -0.46, 0.030 +19901015, 0.91, -0.89, -0.18, 0.030 +19901016, -1.40, 0.49, 0.48, 0.030 +19901017, -0.02, -0.14, -0.43, 0.030 +19901018, 2.20, -0.71, -1.40, 0.030 +19901019, 1.77, -1.15, -0.48, 0.030 +19901022, 0.78, -0.98, -0.30, 0.030 +19901023, -0.52, 0.91, -0.17, 0.030 +19901024, -0.03, -0.06, 0.04, 0.030 +19901025, -0.66, 0.54, 0.15, 0.030 +19901026, -1.68, 0.53, 0.03, 0.030 +19901029, -0.96, -0.03, 0.37, 0.030 +19901030, 0.46, -1.18, -0.12, 0.030 +19901031, 0.02, -0.09, 0.41, 0.030 +19901101, 0.79, -0.75, 0.16, 0.027 +19901102, 1.55, -0.57, -0.32, 0.027 +19901105, 0.96, -0.13, -0.50, 0.027 +19901106, -0.71, 0.74, 0.23, 0.027 +19901107, -1.59, 0.86, 0.38, 0.027 +19901108, 0.44, -0.66, -0.17, 0.027 +19901109, 1.81, -0.94, -0.24, 0.027 +19901112, 1.92, -0.38, -0.69, 0.027 +19901113, -0.34, 0.69, -0.04, 0.027 +19901114, 0.82, 0.11, -0.18, 0.027 +19901115, -0.91, 0.67, 0.00, 0.027 +19901116, -0.05, -0.08, 0.36, 0.027 +19901119, 0.58, -0.29, -0.37, 0.027 +19901120, -1.09, 0.52, 0.01, 0.027 +19901121, 0.07, -0.18, -0.18, 0.027 +19901123, -0.25, 0.48, -0.11, 0.027 +19901126, 0.29, -0.49, 0.19, 0.027 +19901127, 0.68, 0.47, -0.79, 0.027 +19901128, 0.04, 0.37, 0.04, 0.027 +19901129, -0.39, 0.49, -0.30, 0.027 +19901130, 1.61, -0.67, -0.45, 0.027 +19901203, 0.68, -0.12, -0.23, 0.030 +19901204, 0.72, -0.23, 0.18, 0.030 +19901205, 1.18, 0.48, 0.20, 0.030 +19901206, -0.22, 0.54, -0.13, 0.030 +19901207, -0.39, 0.29, -0.09, 0.030 +19901210, 0.22, -0.47, -0.05, 0.030 +19901211, -0.61, 0.03, 0.23, 0.030 +19901212, 0.93, -0.45, -0.51, 0.030 +19901213, -0.11, 0.50, -0.42, 0.030 +19901214, -0.78, 0.23, 0.03, 0.030 +19901217, -0.40, -0.52, 0.06, 0.030 +19901218, 1.18, -0.70, 0.08, 0.030 +19901219, 0.07, 0.37, 0.15, 0.030 +19901220, 0.06, 0.12, -0.19, 0.030 +19901221, 0.30, -0.35, -0.10, 0.030 +19901224, -0.40, 0.05, 0.00, 0.030 +19901226, 0.24, -0.13, -0.09, 0.030 +19901227, -0.63, 0.48, 0.08, 0.030 +19901228, -0.02, -0.14, -0.14, 0.030 +19901231, 0.43, 0.79, -0.54, 0.030 +19910102, -0.95, 0.60, 0.78, 0.023 +19910103, -1.25, 0.27, 1.13, 0.023 +19910104, -0.24, 0.13, 0.40, 0.023 +19910107, -1.72, 0.33, 0.24, 0.023 +19910108, -0.29, -0.35, -0.03, 0.023 +19910109, -0.95, 0.51, 0.03, 0.023 +19910110, 0.94, -0.45, -0.50, 0.023 +19910111, 0.10, -0.07, -0.12, 0.023 +19910114, -1.01, -0.73, 0.16, 0.023 +19910115, 0.32, -0.40, -0.34, 0.023 +19910116, 1.00, 0.12, -0.95, 0.023 +19910117, 3.41, -1.00, -0.78, 0.023 +19910118, 0.93, -1.21, 0.04, 0.023 +19910121, -0.08, 0.48, -0.17, 0.023 +19910122, -0.65, 1.09, 0.27, 0.023 +19910123, 0.59, 0.54, -0.21, 0.023 +19910124, 1.45, 0.34, -0.49, 0.023 +19910125, 0.40, 0.79, -0.20, 0.023 +19910128, 0.14, 0.77, -0.12, 0.023 +19910129, 0.10, 0.72, -0.08, 0.023 +19910130, 1.52, 0.36, -0.43, 0.023 +19910131, 0.95, 0.68, -0.42, 0.023 +19910201, -0.03, 1.09, 0.32, 0.025 +19910204, 1.59, 0.53, 0.20, 0.025 +19910205, 1.05, 0.45, -0.33, 0.025 +19910206, 1.77, -0.46, -0.72, 0.025 +19910207, -0.44, -0.43, 0.60, 0.025 +19910208, 0.63, -0.52, -0.03, 0.025 +19910211, 2.37, -0.59, -0.01, 0.025 +19910212, -0.59, 0.75, 0.14, 0.025 +19910213, 0.89, 0.13, -0.10, 0.025 +19910214, -1.20, 0.89, 0.20, 0.025 +19910215, 1.20, -0.19, -0.20, 0.025 +19910219, 0.13, -0.03, -0.48, 0.025 +19910220, -1.06, 0.32, 0.17, 0.025 +19910221, -0.03, 0.54, -0.11, 0.025 +19910222, 0.23, 0.33, -0.67, 0.025 +19910225, 0.40, 0.32, -0.46, 0.025 +19910226, -1.08, 0.21, 0.32, 0.025 +19910227, 1.17, -0.49, -0.19, 0.025 +19910228, 0.02, 0.79, 0.87, 0.025 +19910301, 0.86, -0.13, -0.18, 0.022 +19910304, 0.03, 1.39, -0.04, 0.022 +19910305, 1.91, 0.16, -0.80, 0.022 +19910306, -0.14, 0.35, 0.07, 0.022 +19910307, 0.00, 0.29, -0.35, 0.022 +19910308, -0.23, 0.49, -0.16, 0.022 +19910311, -0.59, -0.32, 0.45, 0.022 +19910312, -0.87, -0.22, 1.03, 0.022 +19910313, 1.10, -0.49, -0.45, 0.022 +19910314, -0.16, 0.43, -0.01, 0.022 +19910315, -0.19, -0.52, -0.12, 0.022 +19910318, -0.27, 0.18, -0.04, 0.022 +19910319, -1.29, 0.50, 0.14, 0.022 +19910320, 0.36, 0.59, -0.48, 0.022 +19910321, -0.26, 0.52, 0.06, 0.022 +19910322, 0.16, -0.25, 0.26, 0.022 +19910325, 0.67, -0.19, 0.17, 0.022 +19910326, 1.67, -0.57, -0.35, 0.022 +19910327, -0.01, 0.78, -0.42, 0.022 +19910328, -0.09, 0.72, -0.01, 0.022 +19910401, -0.85, 0.65, -0.14, 0.024 +19910402, 1.98, -0.67, -0.72, 0.024 +19910403, 0.09, 0.74, -0.05, 0.024 +19910404, 0.29, 0.14, -0.21, 0.024 +19910405, -0.97, 0.77, 0.30, 0.024 +19910408, 0.59, -0.60, -0.12, 0.024 +19910409, -1.08, 0.79, 0.30, 0.024 +19910410, -0.20, -0.02, 0.25, 0.024 +19910411, 1.17, -0.24, 0.01, 0.024 +19910412, 0.60, -0.01, -0.21, 0.024 +19910415, 0.17, -0.23, 0.12, 0.024 +19910416, 1.44, -0.60, -0.36, 0.024 +19910417, 0.78, 0.00, -0.06, 0.024 +19910418, -0.51, -0.10, 0.82, 0.024 +19910419, -1.04, 0.44, 0.63, 0.024 +19910422, -0.98, -0.37, -0.19, 0.024 +19910423, 0.13, -0.05, 0.14, 0.024 +19910424, 0.27, 0.01, 0.10, 0.024 +19910425, -0.79, 0.74, -0.18, 0.024 +19910426, -0.14, -0.19, 0.21, 0.024 +19910429, -1.31, 0.37, 0.33, 0.024 +19910430, 0.18, -1.12, 0.44, 0.024 +19910501, 1.21, -0.54, 0.05, 0.021 +19910502, 0.13, 0.57, -0.40, 0.021 +19910503, 0.09, 0.15, -0.11, 0.021 +19910506, -0.18, 0.06, -0.05, 0.021 +19910507, -0.54, 0.71, -0.05, 0.021 +19910508, 0.21, 0.01, 0.07, 0.021 +19910509, 1.16, -0.41, -0.48, 0.021 +19910510, -1.66, 0.85, 0.26, 0.021 +19910513, 0.17, -0.24, -0.20, 0.021 +19910514, -1.24, 0.38, 0.11, 0.021 +19910515, -1.05, -0.78, 0.88, 0.021 +19910516, 0.94, -0.33, -0.24, 0.021 +19910517, -0.03, -0.13, 0.06, 0.021 +19910520, -0.04, -0.20, -0.07, 0.021 +19910521, 0.74, -0.10, -0.39, 0.021 +19910522, 0.25, -0.13, -0.04, 0.021 +19910523, -0.14, 0.47, -0.16, 0.021 +19910524, 0.63, -0.26, 0.03, 0.021 +19910528, 1.04, -0.62, -0.17, 0.021 +19910529, 0.26, 0.14, 0.44, 0.021 +19910530, 1.01, 0.02, -0.29, 0.021 +19910531, 0.69, 0.03, 0.21, 0.021 +19910603, -0.29, 0.43, 0.42, 0.021 +19910604, -0.05, 0.11, -0.10, 0.021 +19910605, -0.56, 0.70, 0.40, 0.021 +19910606, -0.38, 0.23, 0.45, 0.021 +19910607, -0.95, 0.38, 0.11, 0.021 +19910610, -0.26, -0.04, 0.04, 0.021 +19910611, 0.44, -0.56, -0.02, 0.021 +19910612, -1.11, -0.01, 0.03, 0.021 +19910613, 0.21, -0.11, -0.06, 0.021 +19910614, 1.06, -0.57, -0.25, 0.021 +19910617, -0.41, 0.24, 0.20, 0.021 +19910618, -0.40, 0.12, 0.18, 0.021 +19910619, -0.97, 0.06, 0.01, 0.021 +19910620, 0.01, -0.13, -0.09, 0.021 +19910621, 0.43, -0.52, 0.06, 0.021 +19910624, -1.73, 0.09, 0.36, 0.021 +19910625, -0.22, -0.36, 0.01, 0.021 +19910626, 0.11, -0.44, -0.04, 0.021 +19910627, 0.70, -0.39, -0.39, 0.021 +19910628, -0.64, 0.83, -0.02, 0.021 +19910701, 1.62, -1.11, -0.35, 0.022 +19910702, -0.12, -0.05, -0.08, 0.022 +19910703, -0.98, 0.27, -0.09, 0.022 +19910705, 0.17, -0.16, -0.11, 0.022 +19910708, 0.82, -0.62, -0.21, 0.022 +19910709, -0.13, 0.72, -0.11, 0.022 +19910710, 0.01, 0.60, -0.16, 0.022 +19910711, 0.30, 0.01, -0.24, 0.022 +19910712, 0.75, -0.33, 0.00, 0.022 +19910715, 0.60, -0.07, 0.22, 0.022 +19910716, -0.21, 0.12, 0.51, 0.022 +19910717, -0.05, 0.16, -0.03, 0.022 +19910718, 0.90, -0.21, 0.02, 0.022 +19910719, -0.24, 0.49, 0.09, 0.022 +19910722, -0.37, 0.17, 0.12, 0.022 +19910723, -0.91, 0.16, 0.24, 0.022 +19910724, -0.31, -0.19, 0.14, 0.022 +19910725, 0.55, -0.50, 0.05, 0.022 +19910726, 0.06, 0.01, -0.04, 0.022 +19910729, 0.47, -0.48, -0.31, 0.022 +19910730, 0.86, -0.29, -0.47, 0.022 +19910731, 0.39, 0.36, -0.43, 0.022 +19910801, -0.12, 0.24, -0.16, 0.021 +19910802, 0.09, 0.12, -0.05, 0.021 +19910805, -0.53, 0.20, 0.20, 0.021 +19910806, 1.22, -0.93, 0.04, 0.021 +19910807, 0.09, 0.10, -0.07, 0.021 +19910808, -0.16, 0.26, -0.02, 0.021 +19910809, -0.43, 0.63, -0.14, 0.021 +19910812, 0.20, -0.36, 0.58, 0.021 +19910813, 0.42, -0.11, 0.68, 0.021 +19910814, 0.21, 0.26, -0.16, 0.021 +19910815, -0.16, 0.24, -0.43, 0.021 +19910816, -0.85, 0.51, -0.03, 0.021 +19910819, -2.38, -0.51, -0.19, 0.021 +19910820, 0.72, 0.19, -0.10, 0.021 +19910821, 2.76, -0.39, -0.34, 0.021 +19910822, 0.20, 0.37, -0.11, 0.021 +19910823, 0.62, -0.23, 0.26, 0.021 +19910826, -0.06, 0.26, -0.01, 0.021 +19910827, -0.12, 0.28, -0.47, 0.021 +19910828, 0.85, -0.25, 0.01, 0.021 +19910829, -0.02, 0.20, -0.05, 0.021 +19910830, -0.15, 0.45, -0.16, 0.021 +19910903, -0.80, 0.11, 0.12, 0.023 +19910904, -0.57, 0.18, -0.04, 0.023 +19910905, -0.27, 0.26, -0.05, 0.023 +19910906, -0.03, 0.03, 0.12, 0.023 +19910909, -0.13, 0.15, -0.11, 0.023 +19910910, -1.04, -0.09, 0.10, 0.023 +19910911, 0.18, 0.17, -0.19, 0.023 +19910912, 0.65, 0.02, -0.55, 0.023 +19910913, -0.92, 0.65, 0.17, 0.023 +19910916, 0.42, -0.55, -0.23, 0.023 +19910917, -0.05, -0.04, -0.12, 0.023 +19910918, 0.37, -0.04, -0.16, 0.023 +19910919, 0.32, 0.38, -0.25, 0.023 +19910920, 0.23, 0.44, -0.28, 0.023 +19910923, -0.47, 0.10, -0.07, 0.023 +19910924, 0.44, -0.36, 0.02, 0.023 +19910925, -0.17, 0.02, -0.02, 0.023 +19910926, -0.03, 0.12, 0.42, 0.023 +19910927, -0.21, -0.08, 0.09, 0.023 +19910930, 0.53, 0.11, -0.04, 0.023 +19911001, 0.27, -0.06, -0.61, 0.018 +19911002, -0.29, 0.00, 0.15, 0.018 +19911003, -0.94, 0.03, 0.39, 0.018 +19911004, -0.61, 0.40, 0.11, 0.018 +19911007, -0.60, -0.39, 0.18, 0.018 +19911008, 0.26, -0.05, -0.06, 0.018 +19911009, -0.89, 0.60, -0.30, 0.018 +19911010, 0.73, -0.74, 0.07, 0.018 +19911011, 0.24, 0.06, 0.19, 0.018 +19911014, 1.21, -0.48, -0.24, 0.018 +19911015, 1.23, -0.08, -0.09, 0.018 +19911016, 0.64, 0.75, -0.10, 0.018 +19911017, -0.29, 0.19, -0.02, 0.018 +19911018, 0.18, 0.10, 0.16, 0.018 +19911021, -0.60, 0.46, -0.04, 0.018 +19911022, -0.43, 0.50, -0.17, 0.018 +19911023, -0.05, -0.03, -0.27, 0.018 +19911024, -0.81, -0.31, 0.38, 0.018 +19911025, -0.30, -0.28, 0.35, 0.018 +19911028, 1.18, -0.76, -0.30, 0.018 +19911029, 0.57, 0.05, 0.04, 0.018 +19911030, 0.52, 0.17, 0.23, 0.018 +19911031, 0.09, 0.75, -0.44, 0.018 +19911101, -0.31, 0.16, -0.29, 0.020 +19911104, -0.34, -0.13, 0.02, 0.020 +19911105, -0.26, 0.32, 0.01, 0.020 +19911106, 0.28, -0.24, 0.28, 0.020 +19911107, 0.92, -0.21, -0.20, 0.020 +19911108, 0.01, 0.41, -0.19, 0.020 +19911111, 0.15, 0.34, -0.67, 0.020 +19911112, 0.87, -0.19, -0.23, 0.020 +19911113, 0.12, -0.27, 0.09, 0.020 +19911114, -0.11, -0.11, -0.08, 0.020 +19911115, -3.55, 0.36, 1.06, 0.020 +19911118, 0.50, -0.51, -0.89, 0.020 +19911119, -1.60, -0.70, 0.32, 0.020 +19911120, -0.13, 0.54, -0.08, 0.020 +19911121, 0.43, -0.13, -0.38, 0.020 +19911122, -0.95, 0.32, -0.29, 0.020 +19911125, -0.33, -0.38, 0.08, 0.020 +19911126, 0.50, -0.94, 0.09, 0.020 +19911127, -0.22, 0.23, -0.33, 0.020 +19911129, -0.18, 0.66, -0.38, 0.020 +19911202, 1.38, -1.34, -0.61, 0.018 +19911203, 0.07, 0.36, -0.49, 0.018 +19911204, -0.12, 0.45, -0.58, 0.018 +19911205, -0.55, 0.35, -0.49, 0.018 +19911206, 0.37, 0.01, -0.37, 0.018 +19911209, -0.23, -0.12, -0.36, 0.018 +19911210, -0.12, -0.39, -0.26, 0.018 +19911211, -0.19, -0.42, 0.12, 0.018 +19911212, 0.92, -0.45, 0.12, 0.018 +19911213, 0.72, 0.18, 0.05, 0.018 +19911216, 0.16, 0.68, -0.82, 0.018 +19911217, -0.50, 0.19, -0.82, 0.018 +19911218, 0.11, -0.22, -0.34, 0.018 +19911219, -0.40, -0.23, -0.01, 0.018 +19911220, 0.99, -1.28, 0.61, 0.018 +19911223, 2.28, -1.41, 0.74, 0.018 +19911224, 0.81, 0.05, 0.57, 0.018 +19911226, 1.44, 0.22, -0.03, 0.018 +19911227, 0.58, 0.62, -0.40, 0.018 +19911230, 2.04, 0.14, -0.37, 0.018 +19911231, 0.63, 0.55, 0.12, 0.018 +19920102, -0.10, -0.10, 0.52, 0.015 +19920103, 0.55, 0.51, 0.15, 0.015 +19920106, -0.01, 1.01, -0.01, 0.015 +19920107, 0.06, 0.72, -0.09, 0.015 +19920108, 0.38, 0.91, -0.69, 0.015 +19920109, 0.23, 1.11, -0.68, 0.015 +19920110, -0.63, 0.07, 0.48, 0.015 +19920113, -0.14, 0.54, -0.04, 0.015 +19920114, 1.32, -0.14, 0.28, 0.015 +19920115, 0.31, 0.31, 1.58, 0.015 +19920116, -0.62, 0.45, 1.92, 0.015 +19920117, 0.07, 0.47, -0.22, 0.015 +19920120, -0.66, 0.27, 0.50, 0.015 +19920121, -1.15, -0.65, 0.35, 0.015 +19920122, 1.39, 0.02, -0.82, 0.015 +19920123, -0.43, 0.85, 0.05, 0.015 +19920124, 0.14, 0.23, -0.07, 0.015 +19920127, -0.15, -0.09, 1.07, 0.015 +19920128, 0.00, -0.05, 0.66, 0.015 +19920129, -1.02, 0.56, -0.12, 0.015 +19920130, 0.43, 0.33, -0.33, 0.015 +19920131, -0.51, 0.84, -0.12, 0.015 +19920203, 0.25, -0.02, 0.35, 0.015 +19920204, 1.01, -0.06, -0.03, 0.015 +19920205, 0.24, 0.52, 0.04, 0.015 +19920206, 0.04, 0.19, 0.61, 0.015 +19920207, -0.59, 0.47, 0.23, 0.015 +19920210, 0.46, -0.42, 0.73, 0.015 +19920211, 0.02, 0.03, 0.46, 0.015 +19920212, 0.89, 0.24, -0.10, 0.015 +19920213, -0.83, 0.22, 0.51, 0.015 +19920214, -0.23, 0.02, 0.87, 0.015 +19920218, -1.20, 0.19, 1.82, 0.015 +19920219, -0.01, -1.03, 0.94, 0.015 +19920220, 1.28, -0.03, -0.14, 0.015 +19920221, -0.52, 0.38, 0.05, 0.015 +19920224, -0.05, -0.54, 0.16, 0.015 +19920225, -0.44, -0.13, -0.41, 0.015 +19920226, 1.19, 0.05, -0.42, 0.015 +19920227, -0.13, 0.59, 0.21, 0.015 +19920228, -0.27, 0.17, 0.28, 0.015 +19920302, 0.09, 0.16, 0.30, 0.015 +19920303, 0.03, 0.04, 0.45, 0.015 +19920304, -0.74, 0.50, 0.29, 0.015 +19920305, -0.88, -0.39, 0.02, 0.015 +19920306, -0.56, -0.08, -0.22, 0.015 +19920309, 0.15, -0.31, 0.22, 0.015 +19920310, 0.55, 0.18, -0.11, 0.015 +19920311, -0.73, 0.05, 0.13, 0.015 +19920312, -0.13, -0.35, -0.14, 0.015 +19920313, 0.44, -0.13, 0.02, 0.015 +19920316, 0.04, -0.37, 0.18, 0.015 +19920317, 0.74, -0.30, 0.02, 0.015 +19920318, -0.02, 0.52, 0.79, 0.015 +19920319, 0.17, -0.13, 0.64, 0.015 +19920320, 0.18, -0.33, 0.31, 0.015 +19920323, -0.29, 0.03, -0.14, 0.015 +19920324, -0.28, -0.05, -0.03, 0.015 +19920325, -0.14, 0.34, 0.05, 0.015 +19920326, -0.11, -0.40, 0.29, 0.015 +19920327, -1.09, 0.03, 0.10, 0.015 +19920330, -0.21, -0.32, 0.39, 0.015 +19920331, 0.12, 0.29, 0.10, 0.015 +19920401, 0.02, -0.59, -0.24, 0.015 +19920402, -1.00, 0.06, 0.16, 0.015 +19920403, 0.00, -0.62, -0.39, 0.015 +19920406, 0.91, -0.60, -0.01, 0.015 +19920407, -1.83, -0.19, 0.84, 0.015 +19920408, -1.08, -0.53, 0.19, 0.015 +19920409, 1.63, 0.11, -0.68, 0.015 +19920410, 0.73, -0.22, 0.21, 0.015 +19920413, 0.45, -0.39, -0.17, 0.015 +19920414, 1.39, -0.60, 0.53, 0.015 +19920415, 0.82, -0.47, 0.34, 0.015 +19920416, -0.31, -0.85, 1.37, 0.015 +19920420, -1.52, -0.47, 1.18, 0.015 +19920421, -0.13, -0.35, 0.58, 0.015 +19920422, -0.01, 0.01, 0.61, 0.015 +19920423, 0.22, -0.51, 0.43, 0.015 +19920424, -0.51, 0.68, -0.05, 0.015 +19920427, -0.22, -0.50, -0.16, 0.015 +19920428, -0.09, -0.89, 0.44, 0.015 +19920429, 0.80, 0.12, -0.15, 0.015 +19920430, 0.88, 0.64, -0.72, 0.015 +19920501, -0.45, 0.59, -0.08, 0.014 +19920504, 1.02, -0.44, -0.36, 0.014 +19920505, 0.16, 0.19, 0.03, 0.014 +19920506, 0.04, 0.30, 0.18, 0.014 +19920507, -0.19, 0.14, 0.22, 0.014 +19920508, -0.03, -0.22, 0.27, 0.014 +19920511, 0.51, -0.13, -0.09, 0.014 +19920512, -0.50, 0.12, 0.57, 0.014 +19920513, -0.04, -0.19, 0.59, 0.014 +19920514, -0.81, -0.02, 0.21, 0.014 +19920515, -0.59, 0.35, -0.11, 0.014 +19920518, 0.50, -0.40, -0.11, 0.014 +19920519, 0.72, -0.64, 0.02, 0.014 +19920520, -0.06, 0.33, 0.05, 0.014 +19920521, -0.63, 0.47, 0.18, 0.014 +19920522, 0.27, 0.04, -0.01, 0.014 +19920526, -0.70, 0.03, -0.05, 0.014 +19920527, 0.22, -0.15, 0.13, 0.014 +19920528, 0.88, -0.58, -0.50, 0.014 +19920529, 0.01, 0.63, 0.05, 0.014 +19920601, 0.45, -0.23, 0.01, 0.015 +19920602, -0.62, 0.89, 0.39, 0.015 +19920603, 0.14, -0.14, 0.30, 0.015 +19920604, -0.34, 0.15, 0.71, 0.015 +19920605, -0.08, -0.19, 0.21, 0.015 +19920608, -0.17, -0.33, 0.56, 0.015 +19920609, -0.86, -0.26, 0.59, 0.015 +19920610, -0.71, -0.09, 0.40, 0.015 +19920611, 0.20, -0.79, -0.06, 0.015 +19920612, 0.25, 0.09, -0.12, 0.015 +19920615, -0.02, -0.43, 0.23, 0.015 +19920616, -0.49, -0.26, 0.60, 0.015 +19920617, -1.55, -0.28, 0.10, 0.015 +19920618, -0.43, -0.59, 0.03, 0.015 +19920619, 0.65, -0.21, -0.28, 0.015 +19920622, -0.27, -0.70, -0.37, 0.015 +19920623, 0.29, 0.03, -0.08, 0.015 +19920624, -0.13, -0.27, 0.44, 0.015 +19920625, -0.17, -0.02, 0.14, 0.015 +19920626, 0.05, -0.08, 0.18, 0.015 +19920629, 1.34, -0.32, -0.48, 0.015 +19920630, 0.14, 0.84, 0.07, 0.015 +19920701, 1.05, -0.32, -0.52, 0.014 +19920702, -0.30, -0.19, 0.51, 0.014 +19920706, 0.38, -0.63, -0.31, 0.014 +19920707, -1.04, 0.29, 1.02, 0.014 +19920708, 0.15, -0.51, 0.00, 0.014 +19920709, 0.96, -0.08, -0.14, 0.014 +19920710, 0.19, 0.35, -0.15, 0.014 +19920713, 0.16, 0.20, -0.11, 0.014 +19920714, 0.62, 0.08, -0.09, 0.014 +19920715, -0.12, 0.45, -0.32, 0.014 +19920716, 0.08, 0.07, -0.55, 0.014 +19920717, -0.52, -0.03, 0.14, 0.014 +19920720, -0.48, -0.36, 0.35, 0.014 +19920721, 0.16, 0.31, -0.41, 0.014 +19920722, -0.68, 0.23, 0.28, 0.014 +19920723, 0.24, -0.06, 0.05, 0.014 +19920724, -0.05, 0.03, 0.20, 0.014 +19920727, 0.04, 0.05, -0.08, 0.014 +19920728, 1.31, -0.59, -0.12, 0.014 +19920729, 1.05, -0.21, -0.34, 0.014 +19920730, 0.38, 0.07, 0.23, 0.014 +19920731, 0.16, 0.41, -0.18, 0.014 +19920803, 0.24, 0.10, -0.37, 0.012 +19920804, -0.11, 0.21, -0.12, 0.012 +19920805, -0.52, 0.17, 0.09, 0.012 +19920806, -0.35, 0.10, -0.23, 0.012 +19920807, -0.25, 0.20, -0.16, 0.012 +19920810, 0.01, -0.37, 0.15, 0.012 +19920811, -0.14, 0.00, 0.14, 0.012 +19920812, -0.31, 0.19, -0.08, 0.012 +19920813, 0.04, -0.13, -0.14, 0.012 +19920814, 0.49, -0.16, 0.06, 0.012 +19920817, 0.19, -0.12, -0.06, 0.012 +19920818, 0.08, -0.21, -0.06, 0.012 +19920819, -0.66, 0.24, -0.11, 0.012 +19920820, -0.05, -0.23, -0.06, 0.012 +19920821, -0.75, 0.27, 0.16, 0.012 +19920824, -1.16, -0.02, -0.24, 0.012 +19920825, 0.05, -0.43, -0.07, 0.012 +19920826, 0.49, -0.24, -0.22, 0.012 +19920827, 0.22, 0.33, -0.04, 0.012 +19920828, 0.23, -0.06, 0.08, 0.012 +19920831, -0.13, 0.05, 0.22, 0.012 +19920901, 0.45, -0.20, -0.40, 0.012 +19920902, 0.52, 0.17, -0.19, 0.012 +19920903, 0.11, 0.47, -0.47, 0.012 +19920904, -0.21, 0.03, -0.13, 0.012 +19920908, -0.59, 0.22, -0.24, 0.012 +19920909, 0.41, -0.21, -0.28, 0.012 +19920910, 0.83, -0.16, -0.17, 0.012 +19920911, 0.04, 0.37, -0.56, 0.012 +19920914, 1.39, -0.45, -0.37, 0.012 +19920915, -1.12, 0.51, 0.25, 0.012 +19920916, -0.08, -0.10, 0.10, 0.012 +19920917, 0.02, 0.03, -0.18, 0.012 +19920918, 0.52, -0.29, 0.27, 0.012 +19920921, -0.11, -0.09, 0.25, 0.012 +19920922, -1.04, 0.64, 0.32, 0.012 +19920923, -0.03, -0.02, -0.02, 0.012 +19920924, 0.36, -0.02, 0.04, 0.012 +19920925, -1.06, -0.10, 1.03, 0.012 +19920928, 0.30, -0.62, 0.32, 0.012 +19920929, 0.10, -0.11, 0.12, 0.012 +19920930, 0.38, 0.48, 0.10, 0.012 +19921001, -0.44, -0.33, 0.18, 0.010 +19921002, -1.28, 0.40, 0.30, 0.010 +19921005, -0.82, -0.88, 0.19, 0.010 +19921006, 0.16, 0.54, -0.19, 0.010 +19921007, -0.55, 0.74, -0.32, 0.010 +19921008, 0.81, -0.15, -0.59, 0.010 +19921009, -1.05, 0.61, 0.18, 0.010 +19921012, 0.94, -0.68, 0.18, 0.010 +19921013, 0.48, -0.06, -0.26, 0.010 +19921014, 0.02, 0.25, -0.17, 0.010 +19921015, 0.09, 0.13, -0.29, 0.010 +19921016, 0.45, -0.05, -0.31, 0.010 +19921019, 0.92, 0.23, -0.92, 0.010 +19921020, 0.16, 0.33, 0.22, 0.010 +19921021, 0.17, 0.29, -0.02, 0.010 +19921022, -0.17, -0.03, 0.11, 0.010 +19921023, -0.13, 0.39, 0.25, 0.010 +19921026, 0.82, -0.66, 0.35, 0.010 +19921027, 0.03, 0.00, -0.17, 0.010 +19921028, 0.48, 0.08, -0.27, 0.010 +19921029, 0.28, 0.09, -0.47, 0.010 +19921030, -0.32, 0.78, -0.06, 0.010 +19921102, 0.79, -0.44, -0.10, 0.012 +19921103, -0.50, 0.46, 0.25, 0.012 +19921104, -0.47, 0.44, 0.25, 0.012 +19921105, 0.44, 0.28, -0.36, 0.012 +19921106, 0.03, 0.41, -0.32, 0.012 +19921109, 0.35, 0.44, -0.59, 0.012 +19921110, 0.17, 0.57, -0.58, 0.012 +19921111, 0.86, 0.41, -0.77, 0.012 +19921112, 0.08, -0.21, 0.17, 0.012 +19921113, 0.00, 0.42, 0.02, 0.012 +19921116, -0.33, 0.18, 0.01, 0.012 +19921117, -0.40, -0.16, 0.53, 0.012 +19921118, 0.81, 0.01, -0.42, 0.012 +19921119, 0.23, 0.20, -0.33, 0.012 +19921120, 0.68, -0.07, -0.09, 0.012 +19921123, -0.28, 0.23, 0.21, 0.012 +19921124, 0.60, 0.07, -0.17, 0.012 +19921125, 0.41, 0.02, 0.33, 0.012 +19921127, 0.24, 0.00, 0.05, 0.012 +19921130, 0.34, 0.19, 0.51, 0.012 +19921201, -0.06, 0.16, 0.06, 0.013 +19921202, -0.21, 0.40, 0.20, 0.013 +19921203, 0.06, 0.31, 0.00, 0.013 +19921204, 0.51, 0.08, -0.16, 0.013 +19921207, 0.64, -0.06, -0.27, 0.013 +19921208, 0.32, -0.14, 0.16, 0.013 +19921209, -0.29, -0.13, 0.21, 0.013 +19921210, -0.32, -0.33, 0.33, 0.013 +19921211, -0.17, 0.09, 0.17, 0.013 +19921214, -0.17, 0.04, 0.19, 0.013 +19921215, -0.18, -0.35, 0.25, 0.013 +19921216, -0.37, -0.29, 0.46, 0.013 +19921217, 0.88, -0.04, -0.50, 0.013 +19921218, 1.10, -0.59, -0.17, 0.013 +19921221, -0.08, -0.09, 0.12, 0.013 +19921222, -0.06, -0.13, 0.59, 0.013 +19921223, -0.14, 0.34, 0.46, 0.013 +19921224, 0.19, 0.28, -0.01, 0.013 +19921228, -0.06, -0.26, 0.09, 0.013 +19921229, -0.05, 0.43, 0.13, 0.013 +19921230, 0.20, 0.41, 0.10, 0.013 +19921231, -0.18, 1.47, 0.00, 0.013 +19930104, -0.30, -0.30, 0.55, 0.012 +19930105, -0.19, 0.39, 0.25, 0.012 +19930106, 0.14, 0.42, 0.49, 0.012 +19930107, -0.77, 0.65, 0.17, 0.012 +19930108, -0.40, 0.02, -0.19, 0.012 +19930111, 0.41, -0.01, 0.30, 0.012 +19930112, 0.00, -0.29, 0.19, 0.012 +19930113, 0.50, 0.00, -0.11, 0.012 +19930114, 0.73, 0.22, -0.17, 0.012 +19930115, 0.36, 0.18, 0.33, 0.012 +19930118, 0.01, -0.03, 0.94, 0.012 +19930119, -0.27, 0.27, 1.32, 0.012 +19930120, -0.27, 0.62, 0.14, 0.012 +19930121, 0.43, -0.19, -0.05, 0.012 +19930122, 0.25, 0.21, 0.29, 0.012 +19930125, 0.74, 0.05, 0.14, 0.012 +19930126, 0.02, 0.40, 0.25, 0.012 +19930127, -0.54, -0.59, 0.65, 0.012 +19930128, -0.02, -0.28, 0.14, 0.012 +19930129, 0.11, 0.29, 0.09, 0.012 +19930201, 0.84, -0.54, 0.22, 0.012 +19930202, 0.14, 0.14, 0.27, 0.012 +19930203, 0.95, -0.10, 0.25, 0.012 +19930204, 0.55, -0.44, 0.70, 0.012 +19930205, -0.33, -0.45, 0.70, 0.012 +19930208, -0.21, 0.03, 0.39, 0.012 +19930209, -0.66, -0.07, 0.16, 0.012 +19930210, 0.20, -0.24, 0.01, 0.012 +19930211, 0.30, 0.18, 0.30, 0.012 +19930212, -0.61, 0.17, 0.36, 0.012 +19930216, -2.71, -0.72, 0.85, 0.012 +19930217, -0.43, -0.79, 0.60, 0.012 +19930218, -0.17, 0.72, 0.00, 0.012 +19930219, 0.41, -0.14, 1.47, 0.012 +19930222, -0.16, -1.25, 2.10, 0.012 +19930223, -0.07, -0.04, -0.47, 0.012 +19930224, 1.43, -0.60, -1.12, 0.012 +19930225, 0.42, 0.17, 0.03, 0.012 +19930226, 0.29, 0.52, -0.40, 0.012 +19930301, -0.14, 0.22, 0.04, 0.011 +19930302, 1.18, -0.57, -0.41, 0.011 +19930303, 0.49, 0.21, -0.03, 0.011 +19930304, -0.41, 0.39, 0.33, 0.011 +19930305, -0.17, 0.45, -0.01, 0.011 +19930308, 1.56, -0.99, -0.20, 0.011 +19930309, 0.09, 0.16, 0.41, 0.011 +19930310, 0.49, 0.02, -0.27, 0.011 +19930311, -0.36, 0.72, -0.12, 0.011 +19930312, -0.73, 0.43, -0.16, 0.011 +19930315, 0.31, 0.02, -0.12, 0.011 +19930316, -0.05, -0.14, 0.37, 0.011 +19930317, -0.73, 0.13, 0.62, 0.011 +19930318, 0.65, -0.72, 0.41, 0.011 +19930319, -0.49, -0.09, 0.71, 0.011 +19930322, -0.42, -0.49, 0.68, 0.011 +19930323, -0.06, -0.14, 0.11, 0.011 +19930324, -0.16, -0.03, -0.06, 0.011 +19930325, 0.66, -0.05, -0.24, 0.011 +19930326, -0.38, 0.58, 0.21, 0.011 +19930329, 0.45, -0.39, -0.17, 0.011 +19930330, 0.39, -0.12, -0.63, 0.011 +19930331, 0.15, 0.57, -0.30, 0.011 +19930401, -0.37, 0.13, 0.31, 0.011 +19930402, -2.01, 0.34, 0.79, 0.011 +19930405, 0.12, -0.62, 0.42, 0.011 +19930406, -0.43, -0.47, 1.07, 0.011 +19930407, 0.31, -0.25, 0.32, 0.011 +19930408, -0.22, 0.02, 0.76, 0.011 +19930412, 1.28, -0.99, -0.10, 0.011 +19930413, 0.33, 0.15, 0.56, 0.011 +19930414, -0.06, 0.05, 0.48, 0.011 +19930415, -0.16, -0.15, 0.37, 0.011 +19930416, -0.01, -0.34, 0.90, 0.011 +19930419, -0.37, 0.08, -0.42, 0.011 +19930420, -0.52, 0.21, -0.69, 0.011 +19930421, -0.17, 0.61, -0.81, 0.011 +19930422, -0.74, 0.92, -0.28, 0.011 +19930423, -0.59, 0.17, -0.21, 0.011 +19930426, -1.03, -0.29, -0.17, 0.011 +19930427, 0.91, -0.89, -0.63, 0.011 +19930428, 0.14, 0.18, 0.18, 0.011 +19930429, 0.19, 0.10, -0.07, 0.011 +19930430, 0.38, 0.35, -0.06, 0.011 +19930503, 0.56, -0.20, -0.54, 0.011 +19930504, 0.58, 0.57, -0.41, 0.011 +19930505, 0.31, 0.61, -0.68, 0.011 +19930506, -0.31, 0.40, -0.06, 0.011 +19930507, -0.14, 0.22, -0.27, 0.011 +19930510, 0.20, -0.13, -0.01, 0.011 +19930511, 0.33, -0.19, 0.37, 0.011 +19930512, 0.00, 0.02, 0.43, 0.011 +19930513, -1.15, 0.72, 0.08, 0.011 +19930514, -0.03, 0.30, -1.12, 0.011 +19930517, 0.14, -0.17, -0.55, 0.011 +19930518, 0.06, 0.18, -0.45, 0.011 +19930519, 1.46, -0.93, -0.79, 0.011 +19930520, 0.68, -0.12, -0.32, 0.011 +19930521, -0.81, 0.85, 0.13, 0.011 +19930524, 0.29, -0.36, 0.14, 0.011 +19930525, 0.26, -0.07, 0.14, 0.011 +19930526, 1.00, -0.37, 0.12, 0.011 +19930527, -0.16, 0.38, 0.45, 0.011 +19930528, -0.40, 0.15, 0.01, 0.011 +19930601, 0.75, -0.51, 0.18, 0.012 +19930602, 0.05, 0.31, 0.05, 0.012 +19930603, -0.21, 0.28, 0.45, 0.012 +19930604, -0.58, 0.34, 0.23, 0.012 +19930607, -0.69, 0.10, 0.26, 0.012 +19930608, -0.76, -0.20, 0.11, 0.012 +19930609, 0.27, -0.13, 0.10, 0.012 +19930610, -0.14, -0.22, -0.14, 0.012 +19930611, 0.39, -0.15, -0.32, 0.012 +19930614, 0.13, -0.01, -0.09, 0.012 +19930615, -0.16, 0.53, 0.22, 0.012 +19930616, 0.16, -0.30, -0.05, 0.012 +19930617, 0.22, -0.26, 0.32, 0.012 +19930618, -0.93, 0.48, 0.67, 0.012 +19930621, 0.37, -0.80, 0.41, 0.012 +19930622, -0.10, -0.20, 0.61, 0.012 +19930623, -0.44, 0.27, -0.02, 0.012 +19930624, 0.69, -0.52, -0.07, 0.012 +19930625, 0.35, 0.25, -0.37, 0.012 +19930628, 1.06, -0.44, 0.11, 0.012 +19930629, -0.22, 0.49, -0.30, 0.012 +19930630, 0.13, 0.36, 0.24, 0.012 +19930701, -0.22, 0.50, 0.48, 0.011 +19930702, -0.48, 0.66, -0.23, 0.011 +19930706, -0.79, 0.55, 0.61, 0.011 +19930707, 0.13, -0.51, 0.44, 0.011 +19930708, 1.03, -0.69, -0.11, 0.011 +19930709, 0.05, 0.26, 0.04, 0.011 +19930712, 0.16, 0.16, -0.15, 0.011 +19930713, -0.06, 0.35, -0.17, 0.011 +19930714, 0.43, 0.14, -0.10, 0.011 +19930715, -0.19, 0.05, 0.40, 0.011 +19930716, -0.72, 0.24, 0.89, 0.011 +19930719, -0.13, -0.50, 0.50, 0.011 +19930720, 0.26, -0.30, -0.28, 0.011 +19930721, -0.10, -0.02, 0.34, 0.011 +19930722, -0.57, 0.05, 0.29, 0.011 +19930723, 0.47, -0.24, -0.42, 0.011 +19930726, 0.54, -0.10, 0.04, 0.011 +19930727, -0.24, 0.05, 0.08, 0.011 +19930728, -0.07, 0.39, 0.01, 0.011 +19930729, 0.54, -0.50, 0.07, 0.011 +19930730, -0.38, 0.35, 0.47, 0.011 +19930802, 0.40, -0.25, 0.01, 0.011 +19930803, -0.02, 0.24, -0.06, 0.011 +19930804, -0.01, 0.24, -0.02, 0.011 +19930805, -0.07, -0.04, -0.34, 0.011 +19930806, 0.15, 0.19, -0.29, 0.011 +19930809, 0.46, -0.47, 0.09, 0.011 +19930810, -0.16, 0.30, 0.46, 0.011 +19930811, 0.15, 0.00, 0.26, 0.011 +19930812, -0.29, 0.11, 0.24, 0.011 +19930813, 0.17, -0.04, -0.13, 0.011 +19930816, 0.51, -0.32, -0.07, 0.011 +19930817, 0.31, 0.05, -0.58, 0.011 +19930818, 0.57, 0.15, -0.79, 0.011 +19930819, 0.01, -0.08, 0.04, 0.011 +19930820, 0.00, 0.32, 0.05, 0.011 +19930823, -0.15, 0.01, 0.16, 0.011 +19930824, 0.88, -0.32, -0.04, 0.011 +19930825, 0.04, -0.02, 0.62, 0.011 +19930826, 0.07, -0.28, 0.39, 0.011 +19930827, -0.07, 0.30, -0.28, 0.011 +19930830, 0.29, -0.02, -0.15, 0.011 +19930831, 0.44, 0.23, 0.01, 0.011 +19930901, 0.03, 0.26, -0.10, 0.012 +19930902, -0.21, 0.63, -0.43, 0.012 +19930903, 0.06, 0.23, 0.11, 0.012 +19930907, -0.76, -0.30, 0.57, 0.012 +19930908, -0.66, -0.74, 0.44, 0.012 +19930909, 0.37, 0.18, -0.19, 0.012 +19930910, 0.87, -0.01, -0.25, 0.012 +19930913, 0.01, -0.11, 0.49, 0.012 +19930914, -0.57, -0.10, 0.12, 0.012 +19930915, 0.34, -0.06, -0.19, 0.012 +19930916, -0.26, 0.49, -0.01, 0.012 +19930917, -0.09, 0.26, 0.23, 0.012 +19930920, -0.58, 0.57, 0.15, 0.012 +19930921, -0.61, -0.34, -0.18, 0.012 +19930922, 0.84, 0.26, -0.54, 0.012 +19930923, 0.47, 0.16, -0.83, 0.012 +19930924, 0.07, 0.26, -0.04, 0.012 +19930927, 0.79, -0.21, -0.34, 0.012 +19930928, 0.06, 0.22, 0.30, 0.012 +19930929, -0.19, 0.53, 0.13, 0.012 +19930930, -0.10, 0.91, 0.10, 0.012 +19931001, 0.33, -0.44, 0.35, 0.011 +19931004, 0.05, 0.20, 0.05, 0.011 +19931005, -0.06, -0.02, 0.01, 0.011 +19931006, -0.05, 0.47, -0.12, 0.011 +19931007, -0.31, 0.26, -0.07, 0.011 +19931008, 0.15, -0.09, -0.11, 0.011 +19931011, 0.19, 0.27, -0.51, 0.011 +19931012, 0.23, 0.35, -0.48, 0.011 +19931013, 0.20, 0.37, -0.48, 0.011 +19931014, 0.89, -0.50, -0.63, 0.011 +19931015, 0.46, 0.02, -0.50, 0.011 +19931018, -0.32, 0.18, -0.24, 0.011 +19931019, -0.79, -0.54, 1.03, 0.011 +19931020, -0.13, -0.26, 0.25, 0.011 +19931021, -0.06, 0.13, -0.14, 0.011 +19931022, -0.25, 0.53, 0.19, 0.011 +19931025, 0.03, -0.05, -0.06, 0.011 +19931026, -0.16, -0.18, 0.15, 0.011 +19931027, 0.25, 0.23, -0.09, 0.011 +19931028, 0.53, -0.22, 0.09, 0.011 +19931029, 0.24, 0.77, -0.21, 0.011 +19931101, 0.28, -0.27, -0.23, 0.012 +19931102, -0.09, 0.42, -0.26, 0.012 +19931103, -1.26, 0.45, -0.58, 0.012 +19931104, -1.35, -0.10, 0.27, 0.012 +19931105, 0.45, -0.65, -0.32, 0.012 +19931108, 0.27, 0.21, -0.11, 0.012 +19931109, 0.18, 0.38, -0.37, 0.012 +19931110, 0.65, -0.19, -0.24, 0.012 +19931111, -0.08, 0.35, -0.06, 0.012 +19931112, 0.46, -0.25, 0.16, 0.012 +19931115, -0.42, -0.03, 0.20, 0.012 +19931116, 0.38, -0.96, 0.05, 0.012 +19931117, -0.55, -0.14, 0.51, 0.012 +19931118, -0.40, -0.33, 0.42, 0.012 +19931119, -0.30, 0.05, 0.04, 0.012 +19931122, -1.09, -0.64, 0.68, 0.012 +19931123, 0.54, -0.20, -0.13, 0.012 +19931124, 0.49, 0.08, 0.03, 0.012 +19931126, 0.25, -0.10, -0.08, 0.012 +19931129, -0.19, 0.05, 0.16, 0.012 +19931130, -0.08, 0.41, -0.39, 0.012 +19931201, 0.32, 0.60, -0.10, 0.010 +19931202, 0.23, -0.17, -0.07, 0.010 +19931203, 0.40, 0.01, -0.17, 0.010 +19931206, 0.29, -0.30, 0.03, 0.010 +19931207, 0.03, -0.08, 0.14, 0.010 +19931208, -0.06, 0.18, 0.21, 0.010 +19931209, -0.44, 0.13, 0.37, 0.010 +19931210, -0.07, -0.21, 0.32, 0.010 +19931213, 0.19, -0.57, 0.19, 0.010 +19931214, -0.61, -0.25, 0.20, 0.010 +19931215, -0.21, 0.11, -0.25, 0.010 +19931216, 0.24, 0.02, -0.10, 0.010 +19931217, 0.64, -0.03, 0.20, 0.010 +19931220, -0.08, -0.05, 0.08, 0.010 +19931221, -0.25, -0.41, 0.31, 0.010 +19931222, 0.29, -0.41, 0.13, 0.010 +19931223, 0.14, 0.24, -0.33, 0.010 +19931227, 0.58, -0.34, -0.02, 0.010 +19931228, 0.23, 0.18, 0.07, 0.010 +19931229, 0.11, 0.82, -0.20, 0.010 +19931230, -0.25, 0.42, -0.25, 0.010 +19931231, -0.09, 1.33, -0.25, 0.010 +19940103, -0.45, -0.20, 0.41, 0.012 +19940104, 0.24, -0.08, 0.25, 0.012 +19940105, 0.21, 0.29, -0.12, 0.012 +19940106, -0.07, 0.28, -0.14, 0.012 +19940107, 0.48, -0.19, 0.15, 0.012 +19940110, 0.88, -0.78, 0.05, 0.012 +19940111, -0.16, 0.14, -0.03, 0.012 +19940112, 0.04, 0.15, -0.14, 0.012 +19940113, -0.17, 0.36, 0.21, 0.012 +19940114, 0.47, -0.21, -0.01, 0.012 +19940117, -0.25, 0.44, 0.10, 0.012 +19940118, 0.10, -0.03, 0.09, 0.012 +19940119, -0.08, 0.25, 0.03, 0.012 +19940120, 0.21, 0.18, -0.15, 0.012 +19940121, -0.05, 0.23, 0.09, 0.012 +19940124, -0.47, 0.21, 0.38, 0.012 +19940125, -0.26, -0.03, -0.03, 0.012 +19940126, 0.41, -0.14, -0.09, 0.012 +19940127, 0.78, -0.74, 0.35, 0.012 +19940128, 0.42, 0.07, 0.08, 0.012 +19940131, 0.57, -0.07, 0.55, 0.012 +19940201, -0.28, 0.38, -0.15, 0.011 +19940202, 0.43, -0.07, 0.00, 0.011 +19940203, -0.21, 0.13, 0.10, 0.011 +19940204, -2.32, 0.21, 0.27, 0.011 +19940207, 0.33, -0.47, 0.06, 0.011 +19940208, 0.05, 0.69, 0.18, 0.011 +19940209, 0.44, 0.34, -0.11, 0.011 +19940210, -0.67, 0.48, -0.29, 0.011 +19940211, 0.03, -0.44, -0.28, 0.011 +19940214, 0.11, -0.02, -0.16, 0.011 +19940215, 0.47, -0.03, -0.34, 0.011 +19940216, 0.06, 0.65, -0.15, 0.011 +19940217, -0.46, 0.19, -0.14, 0.011 +19940218, -0.48, 0.25, -0.04, 0.011 +19940222, 0.63, -0.53, -0.04, 0.011 +19940223, -0.14, 0.15, -0.30, 0.011 +19940224, -1.25, 0.28, 0.25, 0.011 +19940225, 0.36, -0.10, -0.18, 0.011 +19940228, 0.38, 0.68, -0.19, 0.011 +19940301, -0.52, -0.05, 0.10, 0.012 +19940302, -0.13, -0.71, 0.21, 0.012 +19940303, -0.24, 0.36, -0.10, 0.012 +19940304, 0.46, 0.06, 0.00, 0.012 +19940307, 0.56, 0.19, -0.16, 0.012 +19940308, -0.23, 0.15, 0.21, 0.012 +19940309, 0.16, -0.04, -0.10, 0.012 +19940310, -0.62, 0.34, 0.05, 0.012 +19940311, 0.44, -0.41, 0.32, 0.012 +19940314, 0.29, 0.03, 0.00, 0.012 +19940315, 0.03, 0.26, 0.05, 0.012 +19940316, 0.56, 0.07, 0.09, 0.012 +19940317, 0.30, 0.00, -0.51, 0.012 +19940318, 0.05, 0.52, -0.20, 0.012 +19940321, -0.50, -0.23, 0.21, 0.012 +19940322, 0.04, 0.08, 0.44, 0.012 +19940323, 0.03, 0.22, 0.30, 0.012 +19940324, -0.98, -0.13, 0.02, 0.012 +19940325, -0.62, 0.61, -0.15, 0.012 +19940328, -0.47, -1.16, 0.48, 0.012 +19940329, -1.80, -0.26, 0.47, 0.012 +19940330, -1.53, -0.23, 0.02, 0.012 +19940331, -0.13, -0.69, -0.36, 0.012 +19940404, -1.58, -0.17, 0.32, 0.014 +19940405, 2.37, 0.44, -0.55, 0.014 +19940406, 0.03, 0.13, 0.25, 0.014 +19940407, 0.60, -0.01, 0.00, 0.014 +19940408, -0.81, 0.49, -0.09, 0.014 +19940411, 0.33, -0.49, 0.27, 0.014 +19940412, -0.54, -0.17, 0.61, 0.014 +19940413, -0.61, -0.68, 0.37, 0.014 +19940414, 0.04, -0.03, 0.53, 0.014 +19940415, 0.03, -0.09, 0.10, 0.014 +19940418, -0.82, 0.07, 0.39, 0.014 +19940419, -0.26, -0.85, -0.01, 0.014 +19940420, -0.42, -1.17, 0.59, 0.014 +19940421, 1.47, -0.50, -0.58, 0.014 +19940422, -0.05, 0.75, -0.44, 0.014 +19940425, 1.00, -0.11, 0.03, 0.014 +19940426, 0.05, 0.68, -0.11, 0.014 +19940428, -0.55, 0.90, -0.28, 0.014 +19940429, 0.47, -0.11, 0.23, 0.014 +19940502, 0.50, -0.03, -0.38, 0.015 +19940503, -0.01, 0.13, 0.08, 0.015 +19940504, -0.15, 0.31, -0.37, 0.015 +19940505, -0.10, 0.10, -0.15, 0.015 +19940506, -0.91, 0.15, 0.22, 0.015 +19940509, -1.24, 0.23, -0.03, 0.015 +19940510, 0.59, -0.57, -0.10, 0.015 +19940511, -1.06, 0.06, 0.03, 0.015 +19940512, 0.38, -0.13, -0.11, 0.015 +19940513, 0.04, -0.38, 0.33, 0.015 +19940516, -0.16, -0.44, 0.26, 0.015 +19940517, 0.81, -1.22, 0.60, 0.015 +19940518, 1.14, -0.20, -0.28, 0.015 +19940519, 0.61, 0.04, -0.24, 0.015 +19940520, -0.24, 0.10, 0.21, 0.015 +19940523, -0.33, 0.17, -0.08, 0.015 +19940524, 0.40, -0.28, -0.18, 0.015 +19940525, 0.27, -0.37, 0.31, 0.015 +19940526, 0.23, 0.13, 0.09, 0.015 +19940527, 0.08, 0.14, -0.03, 0.015 +19940531, -0.16, 0.08, -0.07, 0.015 +19940601, 0.27, -0.09, 0.24, 0.014 +19940602, 0.15, 0.73, -0.39, 0.014 +19940603, 0.47, -0.31, -0.48, 0.014 +19940606, 0.00, 0.19, 0.28, 0.014 +19940607, -0.25, -0.07, -0.08, 0.014 +19940608, -0.45, -0.23, 0.70, 0.014 +19940609, 0.02, -0.28, 0.09, 0.014 +19940610, 0.25, 0.18, 0.13, 0.014 +19940613, 0.06, -0.27, 0.50, 0.014 +19940614, 0.57, -0.43, 0.28, 0.014 +19940615, -0.31, 0.38, 0.15, 0.014 +19940616, 0.22, -0.06, -0.17, 0.014 +19940617, -0.70, 0.30, 0.14, 0.014 +19940620, -0.93, -0.40, 0.11, 0.014 +19940621, -0.95, -0.22, 0.14, 0.014 +19940622, 0.34, 0.09, 0.10, 0.014 +19940623, -0.89, -0.16, 0.46, 0.014 +19940624, -1.41, 0.11, 0.06, 0.014 +19940627, 0.89, -0.79, -0.26, 0.014 +19940628, -0.24, -0.10, -0.32, 0.014 +19940629, 0.36, 0.05, -0.19, 0.014 +19940630, -0.51, 0.86, 0.27, 0.014 +19940701, 0.42, -0.22, 0.16, 0.014 +19940705, -0.04, -0.14, -0.09, 0.014 +19940706, -0.03, -0.11, 0.31, 0.014 +19940707, 0.49, -0.26, 0.15, 0.014 +19940708, 0.17, -0.22, -0.27, 0.014 +19940711, -0.30, 0.25, -0.03, 0.014 +19940712, 0.07, 0.13, -0.04, 0.014 +19940713, 0.37, 0.12, -0.18, 0.014 +19940714, 0.98, -0.20, -0.12, 0.014 +19940715, 0.08, 0.04, 0.22, 0.014 +19940718, 0.19, -0.30, 0.04, 0.014 +19940719, -0.27, 0.28, 0.02, 0.014 +19940720, -0.54, -0.01, 0.21, 0.014 +19940721, 0.19, -0.24, 0.27, 0.014 +19940722, 0.05, -0.14, 0.11, 0.014 +19940725, 0.17, -0.25, 0.00, 0.014 +19940726, -0.17, 0.05, 0.20, 0.014 +19940727, -0.25, -0.12, 0.12, 0.014 +19940728, 0.24, -0.35, 0.03, 0.014 +19940729, 0.95, 0.01, -0.44, 0.014 +19940801, 0.53, -0.40, 0.20, 0.016 +19940802, 0.10, 0.11, 0.09, 0.016 +19940803, 0.01, 0.08, 0.32, 0.016 +19940804, -0.52, 0.35, -0.01, 0.016 +19940805, -0.32, 0.09, -0.08, 0.016 +19940808, 0.20, -0.12, 0.06, 0.016 +19940809, 0.09, 0.05, -0.05, 0.016 +19940810, 0.55, 0.08, -0.78, 0.016 +19940811, -0.26, 0.22, -0.25, 0.016 +19940812, 0.55, -0.18, -0.30, 0.016 +19940815, -0.02, 0.32, 0.06, 0.016 +19940816, 0.60, -0.57, -0.26, 0.016 +19940817, 0.17, 0.38, -0.50, 0.016 +19940818, -0.35, 0.51, -0.28, 0.016 +19940819, 0.12, 0.09, -0.07, 0.016 +19940822, -0.20, 0.29, -0.34, 0.016 +19940823, 0.54, 0.11, -0.36, 0.016 +19940824, 0.71, -0.43, 0.00, 0.016 +19940825, -0.07, 0.32, -0.07, 0.016 +19940826, 1.08, -0.60, -0.29, 0.016 +19940829, 0.17, 0.04, -0.03, 0.016 +19940830, 0.35, -0.04, 0.19, 0.016 +19940831, -0.10, 0.62, 0.05, 0.016 +19940901, -0.49, 0.07, 0.09, 0.017 +19940902, -0.32, 0.51, -0.01, 0.017 +19940906, 0.03, -0.24, 0.12, 0.017 +19940907, -0.02, 0.43, -0.21, 0.017 +19940908, 0.46, 0.06, -0.36, 0.017 +19940909, -0.93, 0.62, 0.08, 0.017 +19940912, -0.44, 0.14, 0.00, 0.017 +19940913, 0.30, 0.24, -0.36, 0.017 +19940914, 0.26, -0.07, 0.09, 0.017 +19940915, 1.14, -0.33, -0.49, 0.017 +19940916, -0.52, 0.62, 0.10, 0.017 +19940919, -0.13, -0.02, -0.18, 0.017 +19940920, -1.44, 0.54, 0.27, 0.017 +19940921, -0.55, -0.18, 0.03, 0.017 +19940922, -0.10, 0.12, -0.17, 0.017 +19940923, -0.33, 0.13, -0.14, 0.017 +19940926, 0.20, -0.43, -0.12, 0.017 +19940927, 0.16, -0.22, -0.16, 0.017 +19940928, 0.59, -0.03, -0.23, 0.017 +19940929, -0.37, 0.26, -0.09, 0.017 +19940930, 0.21, 0.63, -0.25, 0.017 +19941003, -0.27, -0.25, -0.14, 0.018 +19941004, -1.47, 0.22, 0.41, 0.018 +19941005, -0.38, -0.48, -0.06, 0.018 +19941006, -0.23, 0.43, -0.16, 0.018 +19941007, 0.60, -0.30, -0.10, 0.018 +19941010, 0.75, -0.18, -0.29, 0.018 +19941011, 1.28, -0.63, -0.68, 0.018 +19941012, -0.01, 0.18, 0.00, 0.018 +19941013, 0.35, -0.24, 0.03, 0.018 +19941014, 0.17, -0.44, 0.31, 0.018 +19941017, -0.07, 0.10, -0.09, 0.018 +19941018, -0.20, -0.20, 0.09, 0.018 +19941019, 0.49, -0.19, -0.10, 0.018 +19941020, -0.67, 0.38, -0.09, 0.018 +19941021, -0.41, 0.16, -0.14, 0.018 +19941024, -0.77, 0.42, -0.22, 0.018 +19941025, -0.03, -0.49, 0.33, 0.018 +19941026, 0.27, -0.22, -0.41, 0.018 +19941027, 0.63, -0.15, -0.34, 0.018 +19941028, 1.52, -0.76, -0.18, 0.018 +19941031, -0.18, 0.31, 0.06, 0.018 +19941101, -0.77, 0.31, -0.39, 0.018 +19941102, -0.24, 0.43, -0.12, 0.018 +19941103, 0.25, -0.17, 0.29, 0.018 +19941104, -0.93, 0.67, -0.11, 0.018 +19941107, -0.04, -0.45, -0.03, 0.018 +19941108, 0.50, -0.32, -0.23, 0.018 +19941109, -0.09, -0.10, -0.11, 0.018 +19941110, -0.26, -0.05, -0.01, 0.018 +19941111, -0.42, 0.09, -0.21, 0.018 +19941114, 0.67, -0.49, -0.38, 0.018 +19941115, -0.11, 0.21, 0.13, 0.018 +19941116, 0.02, -0.08, -0.24, 0.018 +19941117, -0.46, 0.17, -0.26, 0.018 +19941118, -0.44, 0.21, -0.41, 0.018 +19941121, -0.75, 0.11, 0.00, 0.018 +19941122, -1.84, 0.17, 0.29, 0.018 +19941123, -0.15, -0.98, 0.91, 0.018 +19941125, 0.62, -0.04, -0.09, 0.018 +19941128, 0.35, -0.20, -0.36, 0.018 +19941129, 0.25, 0.21, -0.15, 0.018 +19941130, -0.21, 0.53, 0.52, 0.018 +19941201, -1.04, 0.13, 0.06, 0.021 +19941202, 0.71, -0.56, 0.06, 0.021 +19941205, 0.08, -0.16, 0.15, 0.021 +19941206, -0.17, -0.33, 0.31, 0.021 +19941207, -0.54, -0.29, 0.22, 0.021 +19941208, -1.43, -0.21, 0.24, 0.021 +19941209, 0.16, -0.69, 0.12, 0.021 +19941212, 0.39, -0.44, -0.17, 0.021 +19941213, 0.22, -0.25, 0.12, 0.021 +19941214, 1.02, -0.26, -0.19, 0.021 +19941215, 0.33, 0.83, 0.01, 0.021 +19941216, 0.46, -0.60, -0.09, 0.021 +19941219, -0.22, -0.07, 0.38, 0.021 +19941220, -0.07, 0.23, 0.01, 0.021 +19941221, 0.62, 0.38, -0.30, 0.021 +19941222, -0.04, 0.25, -0.42, 0.021 +19941223, 0.22, 0.14, 0.01, 0.021 +19941227, 0.46, -0.03, -0.16, 0.021 +19941228, -0.41, 0.18, -0.14, 0.021 +19941229, 0.28, 0.21, -0.11, 0.021 +19941230, -0.14, 1.58, 0.38, 0.021 +19950103, -0.26, -0.90, 0.85, 0.020 +19950104, 0.33, -0.31, 0.65, 0.020 +19950105, -0.05, 0.06, 0.03, 0.020 +19950106, 0.18, -0.03, 0.30, 0.020 +19950109, 0.08, 0.06, 0.09, 0.020 +19950110, 0.20, 0.08, -0.26, 0.020 +19950111, -0.09, -0.13, -0.19, 0.020 +19950112, 0.01, 0.01, 0.11, 0.020 +19950113, 0.87, -0.37, 0.37, 0.020 +19950116, 0.80, -0.40, -0.09, 0.020 +19950117, 0.22, 0.42, -0.46, 0.020 +19950118, -0.15, 0.10, -0.08, 0.020 +19950119, -0.57, 0.13, -0.19, 0.020 +19950120, -0.51, 0.26, -0.20, 0.020 +19950123, 0.00, -0.67, 0.24, 0.020 +19950124, 0.16, 0.31, -0.21, 0.020 +19950125, 0.20, -0.32, 0.27, 0.020 +19950126, 0.04, -0.17, -0.16, 0.020 +19950127, 0.39, -0.31, -0.09, 0.020 +19950130, -0.45, -0.25, -0.13, 0.020 +19950131, 0.39, -0.24, 0.04, 0.020 +19950201, 0.15, -0.06, 0.18, 0.021 +19950202, 0.44, 0.00, -0.24, 0.021 +19950203, 1.22, -0.65, 0.32, 0.021 +19950206, 0.61, 0.06, -0.46, 0.021 +19950207, -0.07, 0.22, 0.25, 0.021 +19950208, 0.13, 0.17, -0.19, 0.021 +19950209, -0.09, 0.40, -0.12, 0.021 +19950210, 0.23, 0.16, -0.16, 0.021 +19950213, 0.02, 0.00, 0.10, 0.021 +19950214, 0.09, -0.24, 0.38, 0.021 +19950215, 0.48, 0.23, 0.09, 0.021 +19950216, -0.05, -0.50, -0.14, 0.021 +19950217, -0.58, 0.14, 0.24, 0.021 +19950221, -0.05, -0.26, 0.39, 0.021 +19950222, 0.40, -0.34, 0.03, 0.021 +19950223, 0.45, -0.18, 0.23, 0.021 +19950224, 0.16, 0.14, 0.19, 0.021 +19950227, -0.82, 0.03, 0.10, 0.021 +19950228, 0.82, 0.10, -0.21, 0.021 +19950301, -0.31, 0.27, -0.40, 0.020 +19950302, -0.14, 0.13, -0.33, 0.020 +19950303, 0.14, 0.15, -0.16, 0.020 +19950306, -0.13, -0.19, -0.31, 0.020 +19950307, -0.75, 0.15, -0.15, 0.020 +19950308, 0.21, 0.04, 0.01, 0.020 +19950309, 0.05, -0.12, 0.01, 0.020 +19950310, 1.12, -0.74, -0.30, 0.020 +19950313, 0.09, -0.01, -0.02, 0.020 +19950314, 0.56, -0.15, -0.40, 0.020 +19950315, -0.17, 0.16, 0.23, 0.020 +19950316, 0.56, -0.33, 0.01, 0.020 +19950317, -0.07, -0.12, -0.35, 0.020 +19950320, 0.10, 0.17, -0.26, 0.020 +19950321, -0.24, -0.01, -0.10, 0.020 +19950322, 0.04, -0.25, 0.05, 0.020 +19950323, 0.08, 0.07, 0.11, 0.020 +19950324, 0.93, -0.55, 0.01, 0.020 +19950327, 0.48, -0.17, 0.07, 0.020 +19950328, 0.15, 0.13, -0.25, 0.020 +19950329, -0.17, -0.08, 0.63, 0.020 +19950330, -0.08, 0.07, 0.80, 0.020 +19950331, -0.27, 0.65, 0.04, 0.020 +19950403, 0.14, -0.16, 0.09, 0.023 +19950404, 0.47, -0.51, 0.28, 0.023 +19950405, 0.09, -0.02, 0.30, 0.023 +19950406, 0.05, -0.09, 0.61, 0.023 +19950407, -0.04, -0.38, 0.15, 0.023 +19950410, 0.25, 0.33, -0.21, 0.023 +19950411, -0.17, 0.47, -0.02, 0.023 +19950412, 0.33, -0.32, 0.16, 0.023 +19950413, 0.34, 0.19, -0.15, 0.023 +19950417, -0.53, 0.40, 0.45, 0.023 +19950418, -0.34, -0.08, 0.09, 0.023 +19950419, -0.30, -0.61, 0.61, 0.023 +19950420, 0.16, 0.03, 0.29, 0.023 +19950421, 0.51, -0.13, 0.08, 0.023 +19950424, 0.72, -0.38, -0.02, 0.023 +19950425, -0.09, 0.24, 0.13, 0.023 +19950426, 0.14, 0.26, -0.36, 0.023 +19950427, 0.20, 0.14, -0.08, 0.023 +19950428, 0.16, 0.01, -0.20, 0.023 +19950501, -0.13, 0.08, 0.13, 0.024 +19950502, 0.08, -0.03, -0.11, 0.024 +19950503, 0.94, -0.72, -0.33, 0.024 +19950504, -0.10, -0.44, 0.27, 0.024 +19950505, -0.10, -0.11, 0.26, 0.024 +19950508, 0.64, -0.21, 0.22, 0.024 +19950509, 0.05, -0.29, 0.37, 0.024 +19950510, 0.15, 0.06, 0.33, 0.024 +19950511, 0.23, 0.29, -0.49, 0.024 +19950512, 0.23, 0.01, 0.24, 0.024 +19950515, 0.42, -0.24, 0.46, 0.024 +19950516, 0.12, 0.29, -0.06, 0.024 +19950517, -0.21, 0.50, -0.14, 0.024 +19950518, -1.30, 0.81, 0.17, 0.024 +19950519, -0.08, 0.01, -0.18, 0.024 +19950522, 0.76, -0.37, 0.16, 0.024 +19950523, 0.85, -0.47, 0.07, 0.024 +19950524, -0.05, -0.07, 0.02, 0.024 +19950525, -0.04, -0.12, -0.08, 0.024 +19950526, -0.82, 0.44, 0.23, 0.024 +19950530, -0.22, -0.41, 0.43, 0.024 +19950531, 1.46, -1.22, -0.29, 0.024 +19950601, 0.15, 0.22, 0.37, 0.021 +19950602, 0.00, 0.18, 0.21, 0.021 +19950605, 0.61, 0.04, -0.10, 0.021 +19950606, -0.03, 0.27, -0.16, 0.021 +19950607, -0.34, 0.57, -0.45, 0.021 +19950608, -0.08, 0.64, -0.41, 0.021 +19950609, -0.73, 0.61, -0.27, 0.021 +19950612, 0.50, -0.04, -0.33, 0.021 +19950613, 0.92, -0.53, 0.01, 0.021 +19950614, 0.07, 0.14, -0.26, 0.021 +19950615, 0.22, 0.38, -0.24, 0.021 +19950616, 0.43, -0.10, -0.45, 0.021 +19950619, 0.92, -0.54, -0.21, 0.021 +19950620, 0.04, -0.06, 0.47, 0.021 +19950621, -0.04, 0.22, 0.04, 0.021 +19950622, 1.15, -0.67, -0.46, 0.021 +19950623, -0.29, 0.24, -0.08, 0.021 +19950626, -1.00, 0.11, 0.53, 0.021 +19950627, -0.39, 0.12, 0.20, 0.021 +19950628, 0.32, -0.47, 0.14, 0.021 +19950629, -0.03, 0.54, -0.40, 0.021 +19950630, 0.28, 0.89, -0.33, 0.021 +19950703, 0.33, -0.36, -0.14, 0.023 +19950705, 0.19, 0.10, 0.27, 0.023 +19950706, 1.12, -0.70, 0.10, 0.023 +19950707, 0.59, 0.29, 0.13, 0.023 +19950710, 0.17, 0.31, 0.34, 0.023 +19950711, -0.34, 0.62, -0.27, 0.023 +19950712, 1.10, -0.17, -0.58, 0.023 +19950713, 0.07, 0.31, -0.20, 0.023 +19950714, -0.15, 0.38, -0.38, 0.023 +19950717, 0.40, 0.16, -0.67, 0.023 +19950718, -0.81, 0.03, 0.64, 0.023 +19950719, -1.65, -0.66, 0.85, 0.023 +19950720, 0.59, 0.27, -0.26, 0.023 +19950721, 0.06, 0.49, -0.57, 0.023 +19950724, 0.69, 0.22, -0.50, 0.023 +19950725, 0.76, -0.36, -0.03, 0.023 +19950726, 0.23, 0.23, -0.37, 0.023 +19950727, 0.71, 0.04, -0.26, 0.023 +19950728, -0.28, 0.50, 0.22, 0.023 +19950731, -0.10, 0.31, 0.06, 0.023 +19950801, -0.51, 0.16, 0.20, 0.020 +19950802, -0.21, -0.08, 0.83, 0.020 +19950803, -0.11, -0.15, 0.43, 0.020 +19950804, 0.15, 0.25, -0.15, 0.020 +19950807, 0.24, 0.05, 0.12, 0.020 +19950808, 0.05, -0.13, -0.06, 0.020 +19950809, 0.01, 0.48, -0.48, 0.020 +19950810, -0.27, 0.22, 0.09, 0.020 +19950811, -0.34, 0.36, -0.07, 0.020 +19950814, 0.74, -0.40, -0.50, 0.020 +19950815, -0.10, 0.27, 0.03, 0.020 +19950816, 0.45, 0.09, -0.03, 0.020 +19950817, 0.00, 0.46, 0.02, 0.020 +19950818, 0.07, 0.24, 0.00, 0.020 +19950821, -0.22, 0.55, 0.38, 0.020 +19950822, 0.18, -0.45, -0.15, 0.020 +19950823, -0.27, 0.40, -0.15, 0.020 +19950824, -0.07, -0.19, 0.30, 0.020 +19950825, 0.40, -0.32, 0.30, 0.020 +19950828, -0.30, -0.22, 1.12, 0.020 +19950829, 0.02, -0.80, 0.61, 0.020 +19950830, 0.33, 0.39, -0.07, 0.020 +19950831, 0.32, 0.36, -0.13, 0.020 +19950901, 0.27, -0.16, 0.45, 0.022 +19950905, 0.96, -0.47, -0.26, 0.022 +19950906, 0.36, 0.40, -0.40, 0.022 +19950907, 0.08, 0.47, -0.31, 0.022 +19950908, 0.51, 0.20, -0.07, 0.022 +19950911, 0.24, -0.08, -0.36, 0.022 +19950912, 0.25, -0.01, -0.21, 0.022 +19950913, 0.40, -0.17, -0.33, 0.022 +19950914, 0.59, -0.56, 0.24, 0.022 +19950915, -0.18, -0.50, 0.81, 0.022 +19950918, -0.14, -0.16, -0.55, 0.022 +19950919, 0.30, -0.19, -0.36, 0.022 +19950920, 0.44, -0.10, -0.15, 0.022 +19950921, -0.62, 0.41, -0.32, 0.022 +19950922, -0.32, -0.06, -0.34, 0.022 +19950925, -0.19, -0.37, 0.30, 0.022 +19950926, -0.12, -0.31, 0.16, 0.022 +19950927, -0.31, -1.03, 0.84, 0.022 +19950928, 0.89, -0.19, -0.12, 0.022 +19950929, -0.11, 0.83, 0.25, 0.022 +19951002, -0.63, -0.51, 0.57, 0.021 +19951003, -0.17, -0.89, 0.31, 0.021 +19951004, -0.46, -0.67, 0.58, 0.021 +19951005, 0.29, -0.29, -0.16, 0.021 +19951006, 0.00, 0.14, 0.14, 0.021 +19951009, -1.07, -0.69, 1.02, 0.021 +19951010, -0.25, -0.71, 0.39, 0.021 +19951011, 0.62, 0.41, -0.34, 0.021 +19951012, 0.80, -0.05, -0.25, 0.021 +19951013, 0.33, 0.31, -0.23, 0.021 +19951016, -0.20, 0.24, 0.08, 0.021 +19951017, 0.60, -0.44, -0.58, 0.021 +19951018, 0.22, 0.26, -0.48, 0.021 +19951019, 0.31, -0.44, -0.55, 0.021 +19951020, -0.57, 0.47, 0.14, 0.021 +19951023, -0.38, -0.26, -0.06, 0.021 +19951024, 0.11, -0.02, -0.55, 0.021 +19951025, -0.85, -0.14, -0.05, 0.021 +19951026, -0.95, -0.10, -0.10, 0.021 +19951027, 0.41, -0.72, 0.22, 0.021 +19951030, 0.64, -0.13, -0.59, 0.021 +19951031, -0.27, 0.41, -0.29, 0.021 +19951101, 0.51, -0.31, 0.19, 0.020 +19951102, 1.03, -0.17, -0.13, 0.020 +19951103, 0.31, 0.37, -0.23, 0.020 +19951106, -0.29, 0.30, 0.15, 0.020 +19951107, -0.50, 0.04, 0.43, 0.020 +19951108, 0.72, -0.47, -0.15, 0.020 +19951109, 0.45, 0.14, -0.49, 0.020 +19951110, -0.12, 0.33, -0.10, 0.020 +19951113, -0.15, -0.06, -0.02, 0.020 +19951114, -0.66, 0.00, 0.40, 0.020 +19951115, 0.55, -0.57, -0.27, 0.020 +19951116, 0.59, -0.27, 0.14, 0.020 +19951117, 0.38, -0.13, 0.20, 0.020 +19951120, -0.58, 0.14, 0.56, 0.020 +19951121, 0.21, -0.93, 0.54, 0.020 +19951122, -0.24, 0.03, 0.66, 0.020 +19951124, 0.33, -0.05, -0.19, 0.020 +19951127, 0.17, -0.05, 0.18, 0.020 +19951128, 0.79, -0.29, -0.77, 0.020 +19951129, 0.41, 0.12, -0.08, 0.020 +19951130, -0.03, 0.70, -0.16, 0.020 +19951201, 0.13, 0.15, 0.28, 0.024 +19951204, 1.04, -0.57, -0.09, 0.024 +19951205, 0.43, -0.28, -0.11, 0.024 +19951206, 0.18, -0.47, 0.32, 0.024 +19951207, -0.70, 0.42, -0.22, 0.024 +19951208, 0.20, 0.11, -0.27, 0.024 +19951211, 0.24, -0.20, -0.22, 0.024 +19951212, -0.26, 0.06, -0.06, 0.024 +19951213, 0.43, -0.08, -0.06, 0.024 +19951214, -0.83, 0.79, 0.44, 0.024 +19951215, -0.29, -0.41, 0.49, 0.024 +19951218, -1.76, -0.48, 1.01, 0.024 +19951219, 0.99, -0.43, -0.31, 0.024 +19951220, -0.57, 1.47, 0.26, 0.024 +19951221, 0.70, -0.02, -0.34, 0.024 +19951222, 0.32, 0.23, -0.12, 0.024 +19951226, 0.30, -0.14, -0.20, 0.024 +19951227, 0.14, 0.19, 0.00, 0.024 +19951228, -0.06, -0.04, 0.28, 0.024 +19951229, 0.41, 0.28, -0.26, 0.024 +19960102, 0.59, -0.35, -0.16, 0.019 +19960103, -0.08, -0.25, 0.66, 0.019 +19960104, -0.82, -0.33, 0.25, 0.019 +19960105, -0.15, 0.73, -0.17, 0.019 +19960108, 0.24, -0.23, -0.06, 0.019 +19960109, -1.67, 0.19, 1.17, 0.019 +19960110, -1.62, 0.27, 0.07, 0.019 +19960111, 0.87, 0.02, -0.63, 0.019 +19960112, -0.13, -0.13, 0.23, 0.019 +19960115, -0.58, -0.43, 0.70, 0.019 +19960116, 1.02, -1.42, 0.05, 0.019 +19960117, -0.09, 0.22, 0.27, 0.019 +19960118, 0.37, 0.24, -0.67, 0.019 +19960119, 0.57, -0.23, -0.49, 0.019 +19960122, 0.41, 0.09, -0.30, 0.019 +19960123, -0.02, 0.39, -0.18, 0.019 +19960124, 1.05, -0.39, -0.40, 0.019 +19960125, -0.40, 0.45, 0.31, 0.019 +19960126, 0.63, -0.38, -0.44, 0.019 +19960129, 0.37, -0.35, 0.28, 0.019 +19960130, 0.91, -0.41, -0.08, 0.019 +19960131, 0.83, -0.32, -0.17, 0.019 +19960201, 0.43, 0.19, -0.43, 0.020 +19960202, -0.28, 0.47, -0.43, 0.020 +19960205, 0.74, -0.51, -0.38, 0.020 +19960206, 0.68, -0.35, -0.06, 0.020 +19960207, 0.36, -0.69, 0.17, 0.020 +19960208, 0.80, -0.38, -0.43, 0.020 +19960209, 0.08, 0.16, 0.00, 0.020 +19960212, 0.54, -0.60, 0.19, 0.020 +19960213, -0.20, -0.37, 0.58, 0.020 +19960214, -0.46, 0.89, -0.02, 0.020 +19960215, -0.31, 0.47, -0.18, 0.020 +19960216, -0.39, 0.73, 0.04, 0.020 +19960220, -1.05, 0.31, -0.16, 0.020 +19960221, 1.05, -0.33, -0.57, 0.020 +19960222, 1.57, -0.53, -0.54, 0.020 +19960223, 0.08, 0.13, -0.06, 0.020 +19960226, -1.05, 0.95, 0.34, 0.020 +19960227, -0.44, 0.27, 0.28, 0.020 +19960228, -0.19, 0.37, 0.27, 0.020 +19960229, -0.60, 0.64, -0.03, 0.020 +19960301, 0.25, -0.61, 0.74, 0.019 +19960304, 0.92, -0.55, -0.04, 0.019 +19960305, 0.68, -0.39, -0.48, 0.019 +19960306, -0.38, 0.45, 0.29, 0.019 +19960307, 0.18, -0.09, -0.12, 0.019 +19960308, -2.91, 0.66, 0.08, 0.019 +19960311, 0.92, -0.09, -0.64, 0.019 +19960312, -0.49, 0.26, 0.09, 0.019 +19960313, 0.42, 0.30, -0.04, 0.019 +19960314, 0.41, 0.17, 0.02, 0.019 +19960315, 0.17, -0.02, -0.45, 0.019 +19960318, 1.47, -0.72, -0.04, 0.019 +19960319, -0.15, 0.19, 0.42, 0.019 +19960320, -0.28, 0.18, 0.35, 0.019 +19960321, -0.09, 0.33, 0.01, 0.019 +19960322, 0.20, 0.00, -0.08, 0.019 +19960325, -0.30, -0.41, 0.99, 0.019 +19960326, 0.28, -0.30, -0.01, 0.019 +19960327, -0.34, 0.65, -0.02, 0.019 +19960328, 0.04, 0.08, 0.08, 0.019 +19960329, -0.21, 1.16, -0.13, 0.019 +19960401, 1.04, -0.80, -0.04, 0.022 +19960402, 0.21, 0.20, -0.14, 0.022 +19960403, 0.13, 0.29, -0.16, 0.022 +19960404, 0.04, 0.23, 0.01, 0.022 +19960408, -1.67, 0.70, -0.31, 0.022 +19960409, -0.13, 0.57, 0.18, 0.022 +19960410, -1.19, 0.97, -0.32, 0.022 +19960411, -0.54, 0.33, -0.22, 0.022 +19960412, 0.83, -0.52, 0.13, 0.022 +19960415, 0.81, -0.05, -0.30, 0.022 +19960416, 0.49, 0.18, -0.69, 0.022 +19960417, -0.49, 0.32, 0.36, 0.022 +19960418, 0.47, 0.45, -0.46, 0.022 +19960419, 0.22, 0.25, -0.32, 0.022 +19960422, 0.57, 0.21, -0.59, 0.022 +19960423, 0.60, 0.14, -0.14, 0.022 +19960424, -0.01, 0.39, -0.41, 0.022 +19960425, 0.45, 0.18, -0.33, 0.022 +19960426, 0.15, 0.37, 0.00, 0.022 +19960429, 0.09, 0.17, -0.16, 0.022 +19960430, 0.03, 0.12, 0.13, 0.022 +19960501, 0.22, 0.48, -0.04, 0.019 +19960502, -1.61, 0.66, 0.17, 0.019 +19960503, -0.11, 0.58, -0.16, 0.019 +19960506, -0.16, 0.37, -0.19, 0.019 +19960507, -0.41, -0.01, 0.16, 0.019 +19960508, 0.61, -1.08, 0.25, 0.019 +19960509, 0.25, 0.58, -0.17, 0.019 +19960510, 1.09, -0.14, -0.26, 0.019 +19960513, 1.31, -0.43, -0.67, 0.019 +19960514, 0.72, 0.13, -0.06, 0.019 +19960515, -0.02, 0.26, -0.07, 0.019 +19960516, 0.05, 0.26, -0.39, 0.019 +19960517, 0.55, 0.00, 0.27, 0.019 +19960520, 0.59, 0.20, -0.22, 0.019 +19960521, -0.07, 0.14, 0.21, 0.019 +19960522, 0.62, -0.22, 0.49, 0.019 +19960523, -0.26, 0.31, -0.10, 0.019 +19960524, 0.24, -0.02, -0.49, 0.019 +19960528, -0.89, 0.06, 0.19, 0.019 +19960529, -0.68, 0.04, 0.52, 0.019 +19960530, 0.51, -0.05, -0.28, 0.019 +19960531, -0.18, 0.82, -0.38, 0.019 +19960603, -0.25, 0.03, 0.09, 0.020 +19960604, 0.68, -0.59, 0.05, 0.020 +19960605, 0.72, -0.55, -0.11, 0.020 +19960606, -0.77, 0.16, 0.40, 0.020 +19960607, -0.21, -0.41, -0.58, 0.020 +19960610, -0.12, 0.39, 0.11, 0.020 +19960611, -0.12, 0.07, 0.06, 0.020 +19960612, -0.08, 0.27, 0.10, 0.020 +19960613, -0.29, -0.45, 0.24, 0.020 +19960614, -0.45, -0.10, 0.44, 0.020 +19960617, -0.21, -0.26, 0.28, 0.020 +19960618, -0.78, -0.95, 0.80, 0.020 +19960619, -0.12, -0.37, 0.02, 0.020 +19960620, -0.32, -0.69, -0.03, 0.020 +19960621, 0.58, -0.22, -0.48, 0.020 +19960624, 0.33, 0.20, -0.17, 0.020 +19960625, -0.25, -0.45, 0.15, 0.020 +19960626, -0.82, -0.71, 0.61, 0.020 +19960627, 0.60, -0.12, -0.15, 0.020 +19960628, 0.73, 1.14, -0.25, 0.020 +19960701, 0.75, -0.44, -0.01, 0.020 +19960702, -0.29, 0.15, 0.25, 0.020 +19960703, -0.35, -0.08, 0.20, 0.020 +19960705, -2.05, 0.83, 0.37, 0.020 +19960708, -0.86, -0.09, 0.32, 0.020 +19960709, 0.32, -0.45, 0.11, 0.020 +19960710, -0.21, -1.15, 0.85, 0.020 +19960711, -1.87, -1.00, 1.49, 0.020 +19960712, 0.00, -0.31, 0.25, 0.020 +19960715, -2.69, -0.41, 1.94, 0.020 +19960716, -0.53, -1.17, 0.14, 0.020 +19960717, 1.42, 1.51, -1.48, 0.020 +19960718, 1.60, 0.08, -1.18, 0.020 +19960719, -0.79, 0.47, 0.27, 0.020 +19960722, -0.95, -0.47, 0.82, 0.020 +19960723, -1.46, -0.79, 1.51, 0.020 +19960724, -0.26, -1.35, -0.03, 0.020 +19960725, 0.92, 0.53, -0.76, 0.020 +19960726, 0.90, 0.17, -0.73, 0.020 +19960729, -0.79, 0.28, 0.67, 0.020 +19960730, 0.48, -0.50, 0.09, 0.020 +19960731, 0.73, 0.11, -0.42, 0.020 +19960801, 1.57, -0.67, -0.38, 0.019 +19960802, 1.85, -0.48, -0.87, 0.019 +19960805, -0.29, 0.30, 0.23, 0.019 +19960806, 0.31, -0.10, -0.41, 0.019 +19960807, 0.39, 0.42, -0.47, 0.019 +19960808, -0.17, 0.06, 0.25, 0.019 +19960809, -0.28, 0.07, 0.38, 0.019 +19960812, 0.54, -0.60, -0.07, 0.019 +19960813, -0.79, 0.31, 0.25, 0.019 +19960814, 0.39, -0.06, 0.01, 0.019 +19960815, 0.08, 0.12, 0.22, 0.019 +19960816, 0.41, -0.11, 0.35, 0.019 +19960819, 0.07, -0.18, 0.25, 0.019 +19960820, -0.16, 0.02, 0.50, 0.019 +19960821, -0.09, -0.01, 0.08, 0.019 +19960822, 0.86, -0.03, -0.52, 0.019 +19960823, -0.36, 0.61, -0.11, 0.019 +19960826, -0.37, 0.31, 0.06, 0.019 +19960827, 0.41, 0.27, -0.48, 0.019 +19960828, 0.00, 0.62, -0.20, 0.019 +19960829, -0.95, 0.68, 0.25, 0.019 +19960830, -0.63, 0.62, 0.21, 0.019 +19960903, 0.15, -0.35, -0.02, 0.022 +19960904, 0.15, 0.27, 0.19, 0.022 +19960905, -0.98, 0.24, 0.53, 0.022 +19960906, 0.99, -0.15, -0.54, 0.022 +19960909, 0.98, -0.59, -0.19, 0.022 +19960910, 0.04, 0.11, -0.16, 0.022 +19960911, 0.42, -0.30, 0.02, 0.022 +19960912, 0.62, -0.08, -0.36, 0.022 +19960913, 1.29, -0.60, -0.69, 0.022 +19960916, 0.48, -0.30, -0.04, 0.022 +19960917, -0.12, 0.16, -0.32, 0.022 +19960918, -0.18, 0.18, -0.12, 0.022 +19960919, 0.18, -0.16, -0.54, 0.022 +19960920, 0.50, -0.09, -0.08, 0.022 +19960923, -0.20, -0.17, 0.16, 0.022 +19960924, -0.03, 0.27, -0.23, 0.022 +19960925, 0.15, 0.36, -0.31, 0.022 +19960926, 0.20, 0.26, -0.55, 0.022 +19960927, 0.06, 0.07, 0.02, 0.022 +19960930, 0.19, 0.00, 0.21, 0.022 +19961001, 0.02, -0.65, 0.75, 0.018 +19961002, 0.73, -0.01, -0.09, 0.018 +19961003, -0.17, 0.02, 0.08, 0.018 +19961004, 1.10, -0.76, -0.19, 0.018 +19961007, 0.18, -0.35, 0.16, 0.018 +19961008, -0.44, 0.02, 0.36, 0.018 +19961009, -0.51, 0.32, 0.16, 0.018 +19961010, -0.23, 0.37, 0.07, 0.018 +19961011, 0.70, -0.38, -0.15, 0.018 +19961014, 0.44, -0.25, -0.13, 0.018 +19961015, -0.17, 0.08, 0.15, 0.018 +19961016, 0.09, -0.29, 0.13, 0.018 +19961017, 0.24, -0.43, 0.42, 0.018 +19961018, 0.35, -0.42, 0.20, 0.018 +19961021, -0.28, -0.45, 0.78, 0.018 +19961022, -0.67, -0.46, 0.64, 0.018 +19961023, -0.01, -0.11, 0.09, 0.018 +19961024, -0.48, 0.60, 0.17, 0.018 +19961025, -0.21, 0.13, 0.45, 0.018 +19961028, -0.62, -0.41, 0.60, 0.018 +19961029, 0.25, -1.06, 0.73, 0.018 +19961030, -0.03, -0.04, 0.12, 0.018 +19961031, 0.63, 0.09, -0.43, 0.018 +19961101, -0.18, -0.25, 0.05, 0.020 +19961104, 0.27, -0.45, 0.46, 0.020 +19961105, 0.86, -0.92, -0.11, 0.020 +19961106, 1.39, -0.57, -0.65, 0.020 +19961107, 0.41, 0.22, -0.48, 0.020 +19961108, 0.34, -0.29, -0.10, 0.020 +19961111, 0.17, 0.14, -0.04, 0.020 +19961112, -0.23, 0.14, 0.47, 0.020 +19961113, 0.18, -0.06, -0.22, 0.020 +19961114, 0.60, -0.32, -0.01, 0.020 +19961115, 0.06, -0.38, 0.30, 0.020 +19961118, -0.17, -0.26, 0.82, 0.020 +19961119, 0.54, -0.53, 0.37, 0.020 +19961120, 0.20, -0.18, 0.26, 0.020 +19961121, -0.20, 0.07, 0.20, 0.020 +19961122, 0.74, -0.09, -0.20, 0.020 +19961125, 0.99, -0.57, 0.10, 0.020 +19961126, -0.19, -0.05, 0.07, 0.020 +19961127, 0.02, 0.39, -0.07, 0.020 +19961129, 0.27, 0.23, -0.11, 0.020 +19961202, 0.06, 0.17, -0.10, 0.022 +19961203, -0.74, 1.43, 0.09, 0.022 +19961204, -0.33, 0.39, -0.03, 0.022 +19961205, -0.07, 0.44, -0.13, 0.022 +19961206, -0.74, -0.32, 0.14, 0.022 +19961209, 1.38, 0.04, -0.55, 0.022 +19961210, -0.29, 0.51, 0.54, 0.022 +19961211, -0.91, 0.03, -0.05, 0.022 +19961212, -1.29, 1.19, -0.08, 0.022 +19961213, -0.30, -0.44, 0.44, 0.022 +19961216, -1.12, 0.18, 0.66, 0.022 +19961217, 0.47, -0.86, 0.28, 0.022 +19961218, 0.83, 0.14, -0.58, 0.022 +19961219, 1.56, -1.06, -0.28, 0.022 +19961220, 0.29, -0.25, 0.53, 0.022 +19961223, -0.36, -0.15, 0.26, 0.022 +19961224, 0.48, -0.38, -0.19, 0.022 +19961226, 0.57, -0.25, -0.07, 0.022 +19961227, 0.17, 0.16, -0.12, 0.022 +19961230, -0.26, 0.12, 0.34, 0.022 +19961231, -1.02, 2.04, -0.24, 0.022 +19970102, -0.75, 0.05, 0.14, 0.020 +19970103, 1.39, -0.32, -0.78, 0.020 +19970106, 0.02, 0.11, 0.05, 0.020 +19970107, 0.72, -0.03, -0.52, 0.020 +19970108, -0.44, 0.50, 0.53, 0.020 +19970109, 0.72, -0.38, -0.15, 0.020 +19970110, 0.50, -0.17, -0.37, 0.020 +19970113, -0.07, 0.09, 0.27, 0.020 +19970114, 1.11, -0.85, 0.04, 0.020 +19970115, -0.23, 0.04, 0.47, 0.020 +19970116, 0.25, -0.21, -0.33, 0.020 +19970117, 0.72, -0.28, -0.26, 0.020 +19970120, 0.26, 0.21, -0.41, 0.020 +19970121, 0.59, -0.53, -0.21, 0.020 +19970122, 0.44, -0.41, -0.07, 0.020 +19970123, -0.85, 0.91, 0.37, 0.020 +19970124, -0.97, 0.35, 0.29, 0.020 +19970127, -0.72, 0.08, 0.34, 0.020 +19970128, 0.01, 0.41, -0.22, 0.020 +19970129, 0.68, -0.73, -0.03, 0.020 +19970130, 1.21, -0.67, -0.42, 0.020 +19970131, 0.31, 0.01, -0.34, 0.020 +19970203, -0.02, 0.04, 0.38, 0.020 +19970204, 0.12, -0.54, 0.28, 0.020 +19970205, -1.28, 0.47, 0.77, 0.020 +19970206, 0.24, -0.23, -0.09, 0.020 +19970207, 0.96, -0.79, -0.03, 0.020 +19970210, -0.65, -0.08, 0.80, 0.020 +19970211, 0.32, -0.90, 0.45, 0.020 +19970212, 1.52, -0.79, -0.67, 0.020 +19970213, 1.02, -0.54, 0.16, 0.020 +19970214, -0.22, 0.29, 0.32, 0.020 +19970218, 0.71, -0.53, 0.27, 0.020 +19970219, -0.32, 0.40, 0.31, 0.020 +19970220, -1.17, 0.41, 0.42, 0.020 +19970221, -0.26, -0.05, 0.64, 0.020 +19970224, 0.85, -0.78, 0.03, 0.020 +19970225, 0.25, -0.19, 0.16, 0.020 +19970226, -0.75, 0.17, 0.11, 0.020 +19970227, -1.27, 0.61, 0.76, 0.020 +19970228, -0.49, 0.04, 0.15, 0.020 +19970303, 0.39, -0.47, 0.13, 0.021 +19970304, -0.29, 0.66, 0.23, 0.021 +19970305, 1.17, -0.51, -0.50, 0.021 +19970306, -0.31, 0.09, 0.47, 0.021 +19970307, 0.67, -0.59, 0.24, 0.021 +19970310, 0.85, -0.45, 0.03, 0.021 +19970311, -0.24, 0.39, 0.27, 0.021 +19970312, -0.79, -0.07, 0.77, 0.021 +19970313, -1.66, 0.67, 0.01, 0.021 +19970314, 0.31, -0.42, -0.11, 0.021 +19970317, -0.11, -0.84, 0.62, 0.021 +19970318, -0.77, 0.30, 0.16, 0.021 +19970319, -0.65, -0.71, 0.80, 0.021 +19970320, -0.20, 0.48, -0.19, 0.021 +19970321, 0.09, -0.37, 0.22, 0.021 +19970324, 0.47, -1.45, 0.68, 0.021 +19970325, -0.08, 0.41, -0.32, 0.021 +19970326, 0.23, 0.54, -0.83, 0.021 +19970327, -1.90, 1.19, 0.26, 0.021 +19970331, -2.26, 0.67, 1.05, 0.021 +19970401, 0.17, -0.89, 0.34, 0.020 +19970402, -1.17, 0.44, 0.11, 0.020 +19970403, -0.02, -0.34, -0.36, 0.020 +19970404, 1.15, 0.27, -1.43, 0.020 +19970407, 0.77, 0.27, -0.21, 0.020 +19970408, 0.43, -0.37, 0.18, 0.020 +19970409, -0.58, 0.90, 0.33, 0.020 +19970410, -0.42, 0.00, 0.36, 0.020 +19970411, -2.48, 0.95, 0.45, 0.020 +19970414, 0.55, -0.67, -0.31, 0.020 +19970415, 1.19, -1.04, 0.24, 0.020 +19970416, 0.81, -1.02, 0.22, 0.020 +19970417, -0.11, 0.13, 0.31, 0.020 +19970418, 0.42, -0.09, -0.09, 0.020 +19970421, -0.99, -0.10, 0.45, 0.020 +19970422, 1.40, -1.60, -0.05, 0.020 +19970423, -0.03, -0.05, -0.19, 0.020 +19970424, -0.22, 0.43, -0.08, 0.020 +19970425, -0.95, 0.16, 0.39, 0.020 +19970428, 0.81, -1.11, 0.20, 0.020 +19970429, 2.41, -1.50, -0.39, 0.020 +19970430, 0.93, -0.43, -0.45, 0.020 +19970501, -0.10, 1.02, -0.26, 0.023 +19970502, 1.93, 0.53, -0.85, 0.023 +19970505, 2.16, 0.14, -1.61, 0.023 +19970506, -0.31, 0.02, 0.63, 0.023 +19970507, -1.18, 1.21, -0.03, 0.023 +19970508, 0.41, -0.55, -0.07, 0.023 +19970509, 0.51, -0.07, 0.12, 0.023 +19970512, 1.29, -0.74, -0.19, 0.023 +19970513, -0.45, 0.45, 0.00, 0.023 +19970514, 0.35, -0.24, 0.44, 0.023 +19970515, 0.58, -0.08, -0.85, 0.023 +19970516, -1.13, 1.05, 0.46, 0.023 +19970519, 0.27, 0.00, -0.18, 0.023 +19970520, 0.91, -0.59, -0.19, 0.023 +19970521, -0.13, 0.83, -0.69, 0.023 +19970522, -0.27, 0.56, 0.45, 0.023 +19970523, 1.26, -0.09, -0.49, 0.023 +19970527, 0.30, 0.29, -0.89, 0.023 +19970528, -0.11, 0.51, -0.02, 0.023 +19970529, -0.28, 0.50, 0.14, 0.023 +19970530, 0.55, -0.30, 0.51, 0.023 +19970602, -0.05, 0.92, -0.24, 0.018 +19970603, -0.16, -0.09, 0.91, 0.018 +19970604, -0.44, 0.47, 0.40, 0.018 +19970605, 0.42, 0.02, 0.04, 0.018 +19970606, 1.41, -0.80, -0.39, 0.018 +19970609, 0.48, -0.26, 0.07, 0.018 +19970610, 0.14, -0.53, 0.59, 0.018 +19970611, 0.41, -0.34, 0.25, 0.018 +19970612, 1.29, -0.98, 0.10, 0.018 +19970613, 0.98, -0.38, -0.39, 0.018 +19970616, 0.04, -0.08, -0.12, 0.018 +19970617, 0.12, 0.21, -0.19, 0.018 +19970618, -0.38, 0.21, 0.65, 0.018 +19970619, 0.95, -0.01, -0.41, 0.018 +19970620, -0.04, -0.31, -0.07, 0.018 +19970623, -1.84, 1.36, 0.32, 0.018 +19970624, 1.61, -0.91, -0.21, 0.018 +19970625, -0.71, 0.51, 0.35, 0.018 +19970626, -0.50, 0.37, 0.12, 0.018 +19970627, 0.42, 0.22, 0.04, 0.018 +19970630, -0.10, 1.61, -0.71, 0.018 +19970701, 0.55, -0.95, 0.50, 0.019 +19970702, 1.17, -1.19, -0.15, 0.019 +19970703, 1.20, -0.77, -0.25, 0.019 +19970707, -0.35, 0.38, 0.04, 0.019 +19970708, 0.69, -0.38, -0.24, 0.019 +19970709, -0.95, 0.86, 0.15, 0.019 +19970710, 0.57, -0.16, 0.22, 0.019 +19970711, 0.44, 0.44, -0.41, 0.019 +19970714, 0.24, 0.27, -0.41, 0.019 +19970715, 0.75, 0.16, -0.66, 0.019 +19970716, 1.14, -0.20, -0.55, 0.019 +19970717, -0.55, 0.14, 0.33, 0.019 +19970718, -1.41, 0.93, 0.52, 0.019 +19970721, -0.41, -0.11, 0.10, 0.019 +19970722, 1.98, -1.35, -0.49, 0.019 +19970723, 0.29, -0.10, 0.42, 0.019 +19970724, 0.31, -0.16, -0.01, 0.019 +19970725, -0.11, 0.25, 0.08, 0.019 +19970728, -0.23, 0.06, 0.68, 0.019 +19970729, 0.53, -0.51, 0.50, 0.019 +19970730, 1.09, -0.38, 0.09, 0.019 +19970731, 0.18, 0.07, 0.25, 0.019 +19970801, -0.57, 0.53, 0.26, 0.020 +19970804, 0.30, 0.09, -0.13, 0.020 +19970805, 0.34, 0.63, -0.54, 0.020 +19970806, 0.74, -0.21, 0.06, 0.020 +19970807, -0.77, 0.79, 0.37, 0.020 +19970808, -1.81, 0.68, 0.11, 0.020 +19970811, 0.16, -0.60, 0.47, 0.020 +19970812, -0.93, 0.63, 0.59, 0.020 +19970813, -0.26, 0.30, 0.04, 0.020 +19970814, 0.26, -0.04, -0.20, 0.020 +19970815, -2.06, 1.32, 0.54, 0.020 +19970818, 0.81, -0.86, -0.33, 0.020 +19970819, 1.38, -0.23, -0.43, 0.020 +19970820, 1.36, -0.13, -0.53, 0.020 +19970821, -1.23, 0.88, 0.34, 0.020 +19970822, -0.28, -0.14, 0.16, 0.020 +19970825, -0.12, 0.69, 0.27, 0.020 +19970826, -0.60, 0.72, 0.31, 0.020 +19970827, 0.18, 0.63, -0.17, 0.020 +19970828, -0.81, 0.99, 0.39, 0.020 +19970829, -0.21, 0.59, -0.17, 0.020 +19970902, 2.44, -1.29, -0.59, 0.021 +19970903, 0.18, -0.16, 0.46, 0.021 +19970904, 0.28, 0.04, -0.03, 0.021 +19970905, 0.02, 0.73, 0.05, 0.021 +19970908, 0.32, 0.27, 0.16, 0.021 +19970909, 0.27, 0.18, 0.23, 0.021 +19970910, -1.22, 1.17, 0.65, 0.021 +19970911, -0.63, 0.68, -0.10, 0.021 +19970912, 1.19, -0.31, -0.27, 0.021 +19970915, -0.31, 0.34, 0.39, 0.021 +19970916, 2.25, -1.48, -0.33, 0.021 +19970917, -0.08, 0.23, 0.31, 0.021 +19970918, 0.35, -0.29, 0.04, 0.021 +19970919, 0.30, 0.07, -0.60, 0.021 +19970922, 0.49, 0.07, -0.54, 0.021 +19970923, -0.28, 0.67, -0.23, 0.021 +19970924, -0.62, 0.62, 0.34, 0.021 +19970925, -0.61, 0.60, 0.10, 0.021 +19970926, 0.64, -0.39, -0.10, 0.021 +19970929, 0.73, -0.27, -0.27, 0.021 +19970930, -0.43, 0.87, 0.32, 0.021 +19971001, 0.62, -0.54, 0.19, 0.018 +19971002, 0.55, -0.05, 0.11, 0.018 +19971003, 0.48, 0.04, -0.22, 0.018 +19971006, 0.68, -0.22, -0.12, 0.018 +19971007, 0.89, -0.26, -0.72, 0.018 +19971008, -0.61, 0.76, -0.27, 0.018 +19971009, -0.20, 0.40, 0.32, 0.018 +19971010, -0.28, 0.55, 0.19, 0.018 +19971013, 0.10, 0.00, 0.35, 0.018 +19971014, 0.03, -0.32, 0.16, 0.018 +19971015, -0.33, 0.06, 0.09, 0.018 +19971016, -1.05, -0.19, 0.57, 0.018 +19971017, -1.31, -0.55, 0.38, 0.018 +19971020, 1.10, -0.16, -0.46, 0.018 +19971021, 1.65, -0.69, -0.31, 0.018 +19971022, -0.30, 0.31, 0.11, 0.018 +19971023, -1.85, -0.11, 0.46, 0.018 +19971024, -0.81, 0.42, 0.66, 0.018 +19971027, -6.58, 0.25, 1.85, 0.018 +19971028, 4.10, -1.80, -2.20, 0.018 +19971029, 0.07, 0.90, 0.81, 0.018 +19971030, -1.61, 0.29, 0.33, 0.018 +19971031, 1.17, 0.12, -0.53, 0.018 +19971103, 2.31, -0.88, -0.27, 0.021 +19971104, 0.23, -0.03, -0.10, 0.021 +19971105, 0.34, 0.28, -0.33, 0.021 +19971106, -0.51, 0.06, 0.39, 0.021 +19971107, -1.28, -0.36, 0.12, 0.021 +19971110, -0.53, 0.50, 0.68, 0.021 +19971111, 0.05, -0.39, 0.04, 0.021 +19971112, -1.96, -0.24, 0.81, 0.021 +19971113, 0.84, -0.86, -0.58, 0.021 +19971114, 1.21, -0.18, -0.91, 0.021 +19971117, 1.84, -0.48, -0.33, 0.021 +19971118, -0.80, 0.00, 0.61, 0.021 +19971119, 0.45, -0.54, -0.25, 0.021 +19971120, 1.37, -0.63, -0.29, 0.021 +19971121, 0.25, -0.45, 0.12, 0.021 +19971124, -1.68, -0.03, 0.84, 0.021 +19971125, 0.35, -0.69, 0.19, 0.021 +19971126, 0.18, 0.07, 0.17, 0.021 +19971128, 0.36, -0.09, -0.07, 0.021 +19971201, 1.79, -1.17, -0.01, 0.022 +19971202, -0.33, -0.29, 0.77, 0.022 +19971203, 0.53, -0.18, -0.48, 0.022 +19971204, -0.20, 0.31, 0.11, 0.022 +19971205, 0.97, -0.41, -0.21, 0.022 +19971208, 0.04, 0.76, -0.12, 0.022 +19971209, -0.74, -0.24, 0.72, 0.022 +19971210, -0.79, -0.62, 0.84, 0.022 +19971211, -1.58, -0.36, 0.82, 0.022 +19971212, -0.30, -0.31, 0.62, 0.022 +19971215, 0.67, -1.49, 0.62, 0.022 +19971216, 0.60, 0.34, -0.56, 0.022 +19971217, -0.15, 0.19, 0.45, 0.022 +19971218, -1.08, -0.19, 0.28, 0.022 +19971219, -0.68, 0.55, -0.43, 0.022 +19971222, 0.57, -0.29, 0.13, 0.022 +19971223, -1.22, 1.06, 0.76, 0.022 +19971224, -0.58, 0.43, 0.22, 0.022 +19971226, 0.33, -0.30, -0.02, 0.022 +19971229, 1.60, -0.76, -0.50, 0.022 +19971230, 1.76, -0.22, -0.49, 0.022 +19971231, 0.21, 0.87, -0.23, 0.022 +19980102, 0.22, -0.05, -0.46, 0.021 +19980105, 0.22, 0.08, -0.31, 0.021 +19980106, -1.04, 0.24, 0.23, 0.021 +19980107, -0.38, -0.39, -0.10, 0.021 +19980108, -0.82, 0.33, -0.25, 0.021 +19980109, -2.98, 0.16, 0.71, 0.021 +19980112, 0.74, -1.63, 0.10, 0.021 +19980113, 1.50, 0.11, -0.64, 0.021 +19980114, 0.61, -0.01, 0.23, 0.021 +19980115, -0.60, 0.59, 0.25, 0.021 +19980116, 1.08, 0.00, -0.26, 0.021 +19980120, 1.63, -0.37, -0.91, 0.021 +19980121, -0.66, 0.27, 0.18, 0.021 +19980122, -0.80, 0.02, 0.52, 0.021 +19980123, -0.56, 0.34, -0.30, 0.021 +19980126, -0.25, -0.70, 0.59, 0.021 +19980127, 0.97, -0.61, -0.27, 0.021 +19980128, 1.01, 0.29, -0.51, 0.021 +19980129, 0.78, -0.18, -0.38, 0.021 +19980130, -0.40, 0.30, 0.16, 0.021 +19980202, 1.93, -1.21, -0.67, 0.021 +19980203, 0.53, 0.19, 0.03, 0.021 +19980204, 0.22, 0.70, -0.36, 0.021 +19980205, -0.15, 0.68, 0.12, 0.021 +19980206, 0.75, -0.50, 0.07, 0.021 +19980209, -0.09, 0.37, 0.31, 0.021 +19980210, 0.81, 0.04, -0.17, 0.021 +19980211, 0.16, -0.01, 0.33, 0.021 +19980212, 0.36, -0.29, 0.01, 0.021 +19980213, -0.25, 0.67, 0.02, 0.021 +19980217, 0.15, -0.45, 0.50, 0.021 +19980218, 0.80, -0.49, -0.38, 0.021 +19980219, -0.23, 0.34, -0.11, 0.021 +19980220, 0.38, -0.35, 0.06, 0.021 +19980223, 0.44, 0.11, -0.44, 0.021 +19980224, -0.74, 0.33, 0.65, 0.021 +19980225, 1.14, -0.32, -0.24, 0.021 +19980226, 0.56, 0.05, -0.09, 0.021 +19980227, 0.05, 0.06, 0.23, 0.021 +19980302, -0.16, 0.06, 0.60, 0.018 +19980303, 0.34, -0.31, 0.48, 0.018 +19980304, -0.42, 0.32, 0.39, 0.018 +19980305, -1.03, -0.14, 0.56, 0.018 +19980306, 1.85, -0.36, -0.67, 0.018 +19980309, -0.32, -0.19, 0.40, 0.018 +19980310, 1.07, -0.45, -0.27, 0.018 +19980311, 0.50, 0.05, -0.11, 0.018 +19980312, 0.13, 0.15, -0.34, 0.018 +19980313, -0.08, 0.22, 0.26, 0.018 +19980316, 0.88, -0.41, 0.15, 0.018 +19980317, 0.10, -0.43, 0.72, 0.018 +19980318, 0.48, -0.20, -0.09, 0.018 +19980319, 0.40, 0.02, -0.13, 0.018 +19980320, 0.57, -0.69, 0.14, 0.018 +19980323, -0.33, 0.33, -0.13, 0.018 +19980324, 0.85, -0.25, -0.15, 0.018 +19980325, -0.25, 0.40, -0.18, 0.018 +19980326, -0.06, 0.31, -0.25, 0.018 +19980327, -0.40, 0.44, -0.02, 0.018 +19980330, -0.22, 0.21, -0.24, 0.018 +19980331, 0.77, 0.06, -0.22, 0.018 +19980401, 0.60, 0.37, -0.58, 0.020 +19980402, 0.83, -0.65, 0.06, 0.020 +19980403, 0.19, -0.18, 0.05, 0.020 +19980406, -0.31, -0.64, 0.92, 0.020 +19980407, -1.05, -0.53, 0.60, 0.020 +19980408, -0.49, 0.71, 0.11, 0.020 +19980409, 0.81, 0.13, 0.07, 0.020 +19980413, -0.03, -0.23, 0.72, 0.020 +19980414, 0.67, 0.17, 0.27, 0.020 +19980415, 0.37, 0.09, 0.11, 0.020 +19980416, -0.88, 0.43, -0.03, 0.020 +19980417, 1.12, -0.44, -0.57, 0.020 +19980420, 0.17, 0.60, -0.73, 0.020 +19980421, 0.24, 0.50, -0.17, 0.020 +19980422, 0.29, -0.26, 0.02, 0.020 +19980423, -1.13, -0.04, 0.42, 0.020 +19980424, -0.98, 0.21, -0.02, 0.020 +19980427, -2.14, -0.38, 0.45, 0.020 +19980428, 0.15, 0.67, -0.37, 0.020 +19980429, 0.89, -0.02, -0.27, 0.020 +19980430, 1.47, -0.26, -0.45, 0.020 +19980501, 0.60, -0.49, 0.25, 0.020 +19980504, 0.15, 0.10, -0.19, 0.020 +19980505, -0.59, -0.02, 0.16, 0.020 +19980506, -0.83, 0.23, 0.56, 0.020 +19980507, -0.83, 0.13, 0.58, 0.020 +19980508, 1.07, -0.44, -0.54, 0.020 +19980511, -0.25, -0.32, 0.53, 0.020 +19980512, 0.53, -0.82, -0.05, 0.020 +19980513, 0.27, -0.07, 0.11, 0.020 +19980514, -0.18, -0.25, 0.29, 0.020 +19980515, -0.78, 0.03, 0.49, 0.020 +19980518, -0.44, -0.59, 0.13, 0.020 +19980519, 0.38, 0.37, -0.53, 0.020 +19980520, 0.47, -1.17, 0.44, 0.020 +19980521, -0.36, -0.05, 0.56, 0.020 +19980522, -0.55, -0.36, 0.52, 0.020 +19980526, -1.50, -0.57, 0.99, 0.020 +19980527, -0.37, -0.82, -0.52, 0.020 +19980528, 0.56, 0.57, 0.03, 0.020 +19980529, -0.42, 0.65, 0.47, 0.020 +19980601, -0.33, -1.27, 1.08, 0.019 +19980602, 0.18, -0.62, 0.26, 0.019 +19980603, -0.78, 0.60, 0.50, 0.019 +19980604, 0.99, -0.35, -0.72, 0.019 +19980605, 1.45, -0.90, -0.57, 0.019 +19980608, 0.27, 0.06, -0.04, 0.019 +19980609, 0.25, 0.05, -0.48, 0.019 +19980610, -0.70, -0.55, 0.56, 0.019 +19980611, -1.46, 0.13, 0.22, 0.019 +19980612, 0.09, -0.65, -0.46, 0.019 +19980615, -1.93, 0.17, 0.49, 0.019 +19980616, 0.99, 0.15, -0.91, 0.019 +19980617, 1.63, -0.51, -0.24, 0.019 +19980618, -0.14, -0.44, -0.32, 0.019 +19980619, -0.42, 0.21, 0.10, 0.019 +19980622, 0.33, 0.35, -0.09, 0.019 +19980623, 1.36, -0.07, -1.12, 0.019 +19980624, 1.13, -0.24, -0.59, 0.019 +19980625, -0.31, 0.00, 0.29, 0.019 +19980626, 0.30, -0.22, 0.20, 0.019 +19980629, 0.55, 0.11, -0.32, 0.019 +19980630, -0.20, 0.87, -0.14, 0.019 +19980701, 1.12, -0.65, -0.03, 0.018 +19980702, -0.20, -0.21, 0.31, 0.018 +19980706, 0.85, -0.78, 0.17, 0.018 +19980707, -0.17, -0.12, 0.07, 0.018 +19980708, 0.90, -0.71, -0.53, 0.018 +19980709, -0.51, 0.77, -0.07, 0.018 +19980710, 0.31, -0.29, -0.56, 0.018 +19980713, 0.10, -0.01, -0.31, 0.018 +19980714, 0.83, -0.70, -0.15, 0.018 +19980715, -0.08, 0.91, -0.62, 0.018 +19980716, 0.65, -0.30, -0.41, 0.018 +19980717, 0.20, -0.18, -0.36, 0.018 +19980720, -0.13, 0.12, -0.46, 0.018 +19980721, -1.59, 0.32, 0.87, 0.018 +19980722, -0.28, -0.97, 0.17, 0.018 +19980723, -2.05, 0.15, 0.49, 0.018 +19980724, -0.15, -0.32, -0.47, 0.018 +19980727, 0.20, -1.54, 0.00, 0.018 +19980728, -1.50, 0.20, 0.50, 0.018 +19980729, -0.46, 0.04, 0.28, 0.018 +19980730, 1.45, -0.83, -0.35, 0.018 +19980731, -1.87, -0.28, 0.42, 0.018 +19980803, -0.87, -0.77, 0.66, 0.020 +19980804, -3.55, 0.68, 0.90, 0.020 +19980805, 0.47, -1.19, -0.22, 0.020 +19980806, 1.07, 0.97, -0.53, 0.020 +19980807, 0.39, 1.62, -0.30, 0.020 +19980810, -0.59, -0.16, -0.02, 0.020 +19980811, -1.66, -0.87, 0.11, 0.020 +19980812, 1.54, -0.04, 0.04, 0.020 +19980813, -0.87, -0.20, 0.35, 0.020 +19980814, -0.96, 0.72, 0.16, 0.020 +19980817, 1.51, -1.43, -0.72, 0.020 +19980818, 1.61, -0.33, -0.45, 0.020 +19980819, -0.46, -0.72, 0.46, 0.020 +19980820, -0.67, -0.14, -0.09, 0.020 +19980821, -1.16, -0.33, 0.06, 0.020 +19980824, 0.38, -1.13, 0.23, 0.020 +19980825, 0.21, -1.14, -0.27, 0.020 +19980826, -1.09, -1.25, -0.09, 0.020 +19980827, -3.92, 0.21, 0.26, 0.020 +19980828, -1.70, -0.65, 1.05, 0.020 +19980831, -6.71, -0.19, 2.43, 0.020 +19980901, 3.56, -0.66, -1.79, 0.022 +19980902, -0.02, 1.33, -0.15, 0.022 +19980903, -1.09, -0.43, -0.21, 0.022 +19980904, -0.78, 0.97, 0.02, 0.022 +19980908, 4.92, -1.07, -1.89, 0.022 +19980909, -1.77, -0.64, 1.17, 0.022 +19980910, -2.52, 0.26, 0.69, 0.022 +19980911, 2.67, -0.34, -1.26, 0.022 +19980914, 2.04, -1.26, 0.03, 0.022 +19980915, 0.72, -1.16, 0.77, 0.022 +19980916, 0.84, -0.36, -0.23, 0.022 +19980917, -2.35, 1.14, 0.60, 0.022 +19980918, 0.41, 1.37, -0.32, 0.022 +19980921, 0.19, -0.53, -0.32, 0.022 +19980922, 0.70, 0.53, -0.61, 0.022 +19980923, 3.24, -1.50, -0.82, 0.022 +19980924, -2.05, 0.89, 0.61, 0.022 +19980925, 0.08, -0.51, 0.17, 0.022 +19980928, 0.34, -0.44, 0.29, 0.022 +19980929, -0.11, -0.37, -0.26, 0.022 +19980930, -2.58, 2.35, 0.18, 0.022 +19981001, -3.29, -0.38, 1.34, 0.015 +19981002, 1.40, -1.65, 0.12, 0.015 +19981005, -1.91, -1.59, 0.91, 0.015 +19981006, -0.55, -0.69, -0.06, 0.015 +19981007, -1.80, -1.52, 0.91, 0.015 +19981008, -1.69, -2.43, 0.16, 0.015 +19981009, 2.64, -0.53, -1.34, 0.015 +19981012, 1.65, 0.91, -1.69, 0.015 +19981013, -0.63, -1.05, 0.85, 0.015 +19981014, 1.34, -0.32, -0.20, 0.015 +19981015, 4.06, -1.26, -0.97, 0.015 +19981016, 1.02, 0.96, -0.42, 0.015 +19981019, 0.83, 1.59, -0.24, 0.015 +19981020, 0.27, 1.35, 0.38, 0.015 +19981021, 0.59, 0.87, -0.59, 0.015 +19981022, 0.87, 1.25, -0.83, 0.015 +19981023, -0.60, 1.25, -0.57, 0.015 +19981026, 0.41, 1.19, -0.56, 0.015 +19981027, -0.53, 0.56, 0.32, 0.015 +19981028, 0.24, 0.16, -0.18, 0.015 +19981029, 1.60, -0.65, -0.53, 0.015 +19981030, 1.22, -0.79, 0.70, 0.015 +19981102, 1.40, 0.73, -0.47, 0.015 +19981103, -0.10, 0.37, 0.11, 0.015 +19981104, 0.88, 0.32, 0.16, 0.015 +19981105, 1.28, -0.03, -0.36, 0.015 +19981106, 0.68, 0.60, -0.62, 0.015 +19981109, -0.83, 0.62, -0.43, 0.015 +19981110, -0.15, -0.15, 0.01, 0.015 +19981111, -0.69, 0.13, 0.11, 0.015 +19981112, -0.27, -0.12, 0.29, 0.015 +19981113, 0.53, -1.38, 0.61, 0.015 +19981116, 0.75, -0.67, -0.27, 0.015 +19981117, 0.32, -0.80, 0.09, 0.015 +19981118, 0.51, 0.04, -0.54, 0.015 +19981119, 0.66, 0.17, -0.39, 0.015 +19981120, 0.78, -0.51, -0.47, 0.015 +19981123, 2.02, -1.11, -0.89, 0.015 +19981124, -0.43, 0.03, 0.47, 0.015 +19981125, 0.39, 0.68, -0.40, 0.015 +19981127, 0.54, 0.81, -0.67, 0.015 +19981130, -2.31, 1.21, 0.73, 0.015 +19981201, 0.86, -0.74, 0.03, 0.017 +19981202, -0.21, -0.05, -0.29, 0.017 +19981203, -1.62, 0.73, 0.50, 0.017 +19981204, 2.00, -1.10, -0.58, 0.017 +19981207, 0.89, -0.23, -0.57, 0.017 +19981208, -0.44, 0.49, -0.27, 0.017 +19981209, 0.09, 0.11, -0.31, 0.017 +19981210, -1.55, 0.30, 0.53, 0.017 +19981211, -0.05, -0.22, -0.33, 0.017 +19981214, -2.12, 0.10, 0.63, 0.017 +19981215, 1.67, -1.11, -0.78, 0.017 +19981216, -0.08, -0.13, 0.37, 0.017 +19981217, 1.51, -1.00, -0.03, 0.017 +19981218, 0.68, 0.59, -0.76, 0.017 +19981221, 1.35, -0.32, -0.73, 0.017 +19981222, 0.00, -0.09, -0.42, 0.017 +19981223, 1.93, -0.51, -0.88, 0.017 +19981224, -0.07, 0.22, -0.02, 0.017 +19981228, 0.16, 0.50, -0.66, 0.017 +19981229, 1.14, -0.39, -0.28, 0.017 +19981230, -0.50, 0.65, 0.44, 0.017 +19981231, 0.43, 1.86, 0.05, 0.017 +19990104, -0.19, 0.21, 0.45, 0.019 +19990105, 1.10, -0.89, 0.12, 0.019 +19990106, 2.10, -0.70, -0.40, 0.019 +19990107, -0.07, 0.46, -0.23, 0.019 +19990108, 0.45, -0.05, 0.38, 0.019 +19990111, -0.52, 1.11, -0.07, 0.019 +19990112, -1.85, 0.66, 0.09, 0.019 +19990113, -0.54, -0.03, -0.22, 0.019 +19990114, -1.66, 1.09, -0.01, 0.019 +19990115, 2.28, -0.75, -0.41, 0.019 +19990119, 0.80, 0.13, -0.67, 0.019 +19990120, 0.24, 0.15, -0.67, 0.019 +19990121, -1.82, 0.31, 0.73, 0.019 +19990122, -0.66, 0.41, 0.15, 0.019 +19990125, 0.67, -0.84, -0.24, 0.019 +19990126, 1.39, -0.25, -1.13, 0.019 +19990127, -0.74, 0.06, -0.57, 0.019 +19990128, 1.63, -0.99, -0.69, 0.019 +19990129, 0.95, 0.19, -0.61, 0.019 +19990201, -0.39, 0.01, -0.27, 0.019 +19990202, -0.89, -0.15, -0.18, 0.019 +19990203, 0.90, -0.21, -0.72, 0.019 +19990204, -1.92, 0.37, 1.06, 0.019 +19990205, -0.92, -0.56, 0.79, 0.019 +19990208, 0.23, -0.59, 0.13, 0.019 +19990209, -2.25, 0.09, 1.40, 0.019 +19990210, 0.27, -1.20, -0.45, 0.019 +19990211, 2.49, -0.51, -1.60, 0.019 +19990212, -1.90, 0.15, 0.51, 0.019 +19990216, 0.65, -1.29, -0.16, 0.019 +19990217, -1.45, -0.69, 1.11, 0.019 +19990218, 0.92, -1.18, 0.67, 0.019 +19990219, 0.25, 0.17, -0.50, 0.019 +19990222, 2.41, -1.25, -0.57, 0.019 +19990223, 0.09, 0.38, -0.57, 0.019 +19990224, -1.31, 0.34, 0.23, 0.019 +19990225, -0.69, 0.11, 0.05, 0.019 +19990226, -0.49, 0.03, 0.46, 0.019 +19990301, -0.01, 0.24, 0.07, 0.018 +19990302, -0.69, 0.09, 0.48, 0.018 +19990303, 0.01, -0.62, 0.11, 0.018 +19990304, 1.34, -1.03, -0.31, 0.018 +19990305, 2.04, -1.25, -0.47, 0.018 +19990308, 0.66, -0.08, -0.94, 0.018 +19990309, -0.23, 0.15, -0.24, 0.018 +19990310, 0.52, 0.04, -0.31, 0.018 +19990311, 0.73, -0.75, 0.04, 0.018 +19990312, -0.32, -0.44, 0.72, 0.018 +19990315, 0.94, -0.40, -0.33, 0.018 +19990316, -0.15, -0.22, -0.30, 0.018 +19990317, -0.55, 0.12, 0.37, 0.018 +19990318, 1.27, -1.18, -0.20, 0.018 +19990319, -1.32, 0.17, 0.81, 0.018 +19990322, -0.33, -0.46, 0.33, 0.018 +19990323, -2.64, 0.46, 0.88, 0.018 +19990324, 0.51, -0.51, -0.26, 0.018 +19990325, 1.78, 0.39, -1.02, 0.018 +19990326, -0.50, 0.95, -0.33, 0.018 +19990329, 1.98, -0.20, -1.75, 0.018 +19990330, -0.63, 0.62, -0.24, 0.018 +19990331, -0.86, -0.01, 0.22, 0.018 +19990401, 0.54, -0.10, -0.02, 0.018 +19990405, 1.87, -0.96, -0.56, 0.018 +19990406, -0.26, 0.00, 0.13, 0.018 +19990407, 0.42, -0.73, -0.22, 0.018 +19990408, 1.27, -0.41, -0.77, 0.018 +19990409, 0.43, 1.25, -0.48, 0.018 +19990412, 0.87, 0.24, -0.19, 0.018 +19990413, -0.34, 1.96, -0.18, 0.018 +19990414, -1.43, 0.55, 1.99, 0.018 +19990415, -0.39, -0.10, 0.85, 0.018 +19990416, -0.23, 0.85, 1.04, 0.018 +19990419, -2.48, -1.01, 3.78, 0.018 +19990420, 1.38, -0.12, -1.98, 0.018 +19990421, 2.53, 0.59, -1.93, 0.018 +19990422, 1.35, -0.55, -0.89, 0.018 +19990423, 0.11, 0.57, 0.16, 0.018 +19990426, 0.44, 0.89, -1.24, 0.018 +19990427, 0.09, -0.07, 0.59, 0.018 +19990428, -0.88, -0.11, 1.59, 0.018 +19990429, -0.45, 0.36, 0.86, 0.018 +19990430, -0.47, 0.70, -0.40, 0.018 +19990503, 1.10, -1.41, 0.59, 0.017 +19990504, -1.49, 0.95, 0.44, 0.017 +19990505, 1.03, -0.86, -0.16, 0.017 +19990506, -1.15, 0.86, 1.01, 0.017 +19990507, 0.89, -0.51, -0.10, 0.017 +19990510, -0.03, 1.20, 0.15, 0.017 +19990511, 1.19, 0.07, -0.88, 0.017 +19990512, 0.65, 0.08, -0.52, 0.017 +19990513, 0.23, 0.22, 0.13, 0.017 +19990514, -2.14, 0.80, 0.52, 0.017 +19990517, 0.15, -0.04, -0.74, 0.017 +19990518, -0.40, 0.41, 0.41, 0.017 +19990519, 0.82, -0.10, -0.20, 0.017 +19990520, -0.36, 0.93, 0.41, 0.017 +19990521, -0.57, 0.73, 0.70, 0.017 +19990524, -1.93, 0.06, 1.03, 0.017 +19990525, -1.81, -0.10, 1.05, 0.017 +19990526, 1.41, -1.19, -0.66, 0.017 +19990527, -1.43, 1.22, -0.03, 0.017 +19990528, 1.53, -0.07, -0.66, 0.017 +19990601, -0.80, 0.29, 0.82, 0.018 +19990602, 0.13, -0.32, -0.44, 0.018 +19990603, 0.12, -0.24, 0.33, 0.018 +19990604, 2.03, -0.27, -1.62, 0.018 +19990607, 0.71, 0.22, -0.06, 0.018 +19990608, -1.23, 0.60, 0.42, 0.018 +19990609, 0.16, 0.71, -0.62, 0.018 +19990610, -1.20, 0.47, 0.57, 0.018 +19990611, -0.80, -0.03, 0.33, 0.018 +19990614, -0.49, -1.26, 1.02, 0.018 +19990615, 0.52, -0.42, -0.02, 0.018 +19990616, 2.26, -0.60, -1.06, 0.018 +19990617, 0.72, 0.09, -0.74, 0.018 +19990618, 0.22, 0.38, -0.13, 0.018 +19990621, 0.63, 0.78, -0.72, 0.018 +19990622, -0.93, 0.60, 0.30, 0.018 +19990623, -0.14, 0.25, -0.22, 0.018 +19990624, -1.31, 0.58, 0.59, 0.018 +19990625, -0.06, 0.17, -0.06, 0.018 +19990628, 1.23, 0.16, -0.24, 0.018 +19990629, 1.49, -0.05, -0.93, 0.018 +19990630, 1.60, 1.01, -1.48, 0.018 +19990701, 0.55, -0.85, -0.20, 0.018 +19990702, 0.73, -0.03, -0.48, 0.018 +19990706, -0.08, 0.06, 0.14, 0.018 +19990707, 0.22, -0.57, -0.19, 0.018 +19990708, 0.03, 0.68, -0.54, 0.018 +19990709, 0.54, 0.53, -0.43, 0.018 +19990712, -0.24, 0.53, 0.19, 0.018 +19990713, -0.39, 0.33, -0.02, 0.018 +19990714, 0.46, 0.44, -0.65, 0.018 +19990715, 0.83, 0.26, -0.64, 0.018 +19990716, 0.48, -0.44, -0.07, 0.018 +19990719, -0.82, 0.06, 0.62, 0.018 +19990720, -2.22, 0.13, 1.07, 0.018 +19990721, 0.27, 0.20, -0.55, 0.018 +19990722, -1.33, 0.05, 0.94, 0.018 +19990723, -0.32, -0.23, 0.02, 0.018 +19990726, -1.02, -0.59, 0.82, 0.018 +19990727, 1.12, -0.36, -0.74, 0.018 +19990728, 0.15, 0.31, -0.44, 0.018 +19990729, -1.75, 0.71, 0.48, 0.018 +19990730, -0.72, 1.55, -0.19, 0.018 +19990802, -0.27, -0.54, 0.52, 0.018 +19990803, -0.79, -0.75, 0.50, 0.018 +19990804, -1.45, -0.46, 1.25, 0.018 +19990805, 0.63, -0.66, -0.45, 0.018 +19990806, -1.00, 0.82, 0.14, 0.018 +19990809, -0.41, -0.50, 0.85, 0.018 +19990810, -1.16, 0.37, 0.05, 0.018 +19990811, 1.63, -0.64, -0.23, 0.018 +19990812, -0.14, 0.30, 0.11, 0.018 +19990813, 2.21, -0.95, -0.97, 0.018 +19990816, 0.26, 0.00, -0.53, 0.018 +19990817, 0.97, -0.61, -0.29, 0.018 +19990818, -0.75, 0.38, -0.21, 0.018 +19990819, -0.78, 0.63, 0.68, 0.018 +19990820, 0.89, -0.31, -0.44, 0.018 +19990823, 1.76, -0.95, -0.88, 0.018 +19990824, 0.18, -0.02, -0.37, 0.018 +19990825, 1.21, -0.14, -1.49, 0.018 +19990826, -1.18, 0.89, 0.27, 0.018 +19990827, -0.99, 0.46, 0.39, 0.018 +19990830, -1.78, 1.03, -0.08, 0.018 +19990831, -0.17, 0.27, -0.13, 0.018 +19990901, 0.76, -0.20, -0.12, 0.018 +19990902, -0.86, 0.38, 0.11, 0.018 +19990903, 2.84, -0.94, -1.23, 0.018 +19990907, -0.34, 0.95, -0.05, 0.018 +19990908, -0.55, 0.20, 0.31, 0.018 +19990909, 0.31, 0.15, 0.05, 0.018 +19990910, 0.44, 0.46, -0.48, 0.018 +19990913, -0.64, 0.17, 0.32, 0.018 +19990914, -0.52, 0.30, -0.26, 0.018 +19990915, -1.28, 0.62, 0.80, 0.018 +19990916, -0.20, -0.87, 0.04, 0.018 +19990917, 1.22, -0.18, -0.80, 0.018 +19990920, 0.00, 0.06, -0.61, 0.018 +19990921, -1.93, 0.69, 0.08, 0.018 +19990922, 0.29, 0.09, -0.74, 0.018 +19990923, -2.35, 0.50, 0.84, 0.018 +19990924, -0.19, -0.43, -0.33, 0.018 +19990927, 0.42, 0.57, -0.37, 0.018 +19990928, -0.23, -0.01, -0.83, 0.018 +19990929, -0.80, 0.60, 0.56, 0.018 +19990930, 0.92, 0.35, -0.88, 0.018 +19991001, -0.16, -0.10, -0.26, 0.018 +19991004, 1.66, -1.36, -0.26, 0.018 +19991005, -0.09, -0.13, -0.21, 0.018 +19991006, 1.82, -1.12, -0.58, 0.018 +19991007, -0.47, 0.31, -0.14, 0.018 +19991008, 1.09, -0.88, -0.45, 0.018 +19991011, 0.21, 0.36, -0.11, 0.018 +19991012, -1.72, 0.41, 0.55, 0.018 +19991013, -2.04, 0.41, 1.04, 0.018 +19991014, -0.02, -0.26, 0.00, 0.018 +19991015, -2.65, 1.70, 0.28, 0.018 +19991018, 0.09, -1.51, 0.16, 0.018 +19991019, 0.76, -0.14, -0.82, 0.018 +19991020, 1.86, -0.61, -1.31, 0.018 +19991021, -0.16, 0.22, -0.22, 0.018 +19991022, 1.31, -1.04, 0.55, 0.018 +19991025, -0.43, 0.31, 0.05, 0.018 +19991026, -0.85, 0.75, -0.05, 0.018 +19991027, 0.89, -1.20, 0.13, 0.018 +19991028, 3.32, -2.11, -0.82, 0.018 +19991029, 1.73, -1.02, -0.36, 0.018 +19991101, -0.38, 1.25, -0.49, 0.017 +19991102, -0.33, 0.21, 0.45, 0.017 +19991103, 0.69, 1.08, -0.70, 0.017 +19991104, 0.66, -0.11, -0.55, 0.017 +19991105, 0.79, -0.34, -0.36, 0.017 +19991108, 0.59, 0.46, -0.66, 0.017 +19991109, -0.78, 1.19, 0.13, 0.017 +19991110, 0.53, 0.44, -0.59, 0.017 +19991111, 0.37, 0.12, -0.68, 0.017 +19991112, 1.10, -0.91, 0.11, 0.017 +19991115, 0.03, 0.62, 0.47, 0.017 +19991116, 1.84, -0.79, -0.69, 0.017 +19991117, -0.63, 1.01, 0.00, 0.017 +19991118, 1.13, 0.77, -1.44, 0.017 +19991119, -0.11, 0.35, -0.50, 0.017 +19991122, 0.02, 0.22, -0.92, 0.017 +19991123, -1.29, 0.08, 0.30, 0.017 +19991124, 0.87, 0.08, -0.89, 0.017 +19991126, 0.23, 0.92, -0.20, 0.017 +19991129, -0.60, 0.57, -0.14, 0.017 +19991130, -1.28, -0.18, 1.28, 0.017 +19991201, 0.49, -0.15, -0.29, 0.020 +19991202, 1.15, 0.53, -1.01, 0.020 +19991203, 1.59, -1.06, -0.52, 0.020 +19991206, -0.42, 0.88, -0.55, 0.020 +19991207, -0.43, 1.06, -1.16, 0.020 +19991208, -0.08, 0.95, -0.45, 0.020 +19991209, 0.30, -0.23, -0.56, 0.020 +19991210, 0.51, 0.58, -0.69, 0.020 +19991213, 0.05, 1.13, -0.65, 0.020 +19991214, -1.33, -0.51, 1.27, 0.020 +19991215, 0.54, -1.01, 0.13, 0.020 +19991216, 0.61, 0.54, -0.73, 0.020 +19991217, 0.27, 0.00, -0.23, 0.020 +19991220, -0.08, 0.65, -0.68, 0.020 +19991221, 1.44, 0.21, -0.77, 0.020 +19991222, 0.33, 0.02, -0.19, 0.020 +19991223, 1.30, -0.46, -0.33, 0.020 +19991227, -0.21, 0.77, -0.73, 0.020 +19991228, 0.21, 0.25, 0.15, 0.020 +19991229, 0.64, 0.98, -0.10, 0.020 +19991230, 0.08, 0.01, -0.10, 0.020 +19991231, 0.52, 1.36, 0.29, 0.020 +20000103, -0.71, 0.38, -0.85, 0.021 +20000104, -4.06, -0.04, 2.21, 0.021 +20000105, -0.09, 0.18, 0.14, 0.021 +20000106, -0.73, -0.67, 1.38, 0.021 +20000107, 3.21, -0.59, -1.24, 0.021 +20000110, 1.76, 1.00, -1.51, 0.021 +20000111, -1.71, 0.20, 0.93, 0.021 +20000112, -0.69, -0.53, 0.91, 0.021 +20000113, 1.59, 1.00, -1.31, 0.021 +20000114, 1.15, 0.09, -0.19, 0.021 +20000118, -0.26, 2.55, -0.47, 0.021 +20000119, 0.44, 0.92, -0.51, 0.021 +20000120, -0.37, 1.92, -1.15, 0.021 +20000121, 0.23, 1.41, -0.46, 0.021 +20000124, -2.59, 1.11, 0.83, 0.021 +20000125, 0.49, -0.24, -0.46, 0.021 +20000126, -0.44, -0.23, 0.30, 0.021 +20000127, -0.44, -0.40, -0.09, 0.021 +20000128, -2.82, -0.10, 1.36, 0.021 +20000131, 1.50, -2.90, -0.37, 0.021 +20000201, 1.29, -0.13, 0.15, 0.022 +20000202, 0.16, 1.73, -0.54, 0.022 +20000203, 1.49, 1.36, -1.37, 0.022 +20000204, -0.05, 1.15, -0.58, 0.022 +20000207, 0.35, 1.60, -1.24, 0.022 +20000208, 1.23, 0.69, -1.79, 0.022 +20000209, -1.83, 1.80, -0.08, 0.022 +20000210, 0.57, 1.59, -1.15, 0.022 +20000211, -1.74, 1.10, 0.61, 0.022 +20000214, 0.24, 0.62, 0.18, 0.022 +20000215, 0.70, -0.65, 0.01, 0.022 +20000216, -0.58, 1.84, -0.33, 0.022 +20000217, 0.46, 1.99, -1.13, 0.022 +20000218, -2.69, 1.18, 0.59, 0.022 +20000222, 0.11, -1.05, 0.36, 0.022 +20000223, 1.24, 0.91, -1.63, 0.022 +20000224, 0.01, 1.02, -0.36, 0.022 +20000225, -1.04, 1.64, 0.16, 0.022 +20000228, 0.76, -0.19, -0.11, 0.022 +20000229, 1.96, 1.95, -0.68, 0.022 +20000301, 1.39, 1.06, -0.61, 0.020 +20000302, -0.09, 0.06, 0.28, 0.020 +20000303, 2.30, -0.05, -0.96, 0.020 +20000306, -0.77, 1.72, 0.25, 0.020 +20000307, -2.20, 0.84, 0.38, 0.020 +20000308, 0.69, -0.56, -0.26, 0.020 +20000309, 2.45, -0.31, -0.56, 0.020 +20000310, -0.43, 0.24, 0.26, 0.020 +20000313, -1.48, -1.14, 1.10, 0.020 +20000314, -2.33, -1.23, 1.23, 0.020 +20000315, 0.83, -5.09, 1.50, 0.020 +20000316, 4.25, -3.76, 0.36, 0.020 +20000317, 0.62, 0.72, -0.69, 0.020 +20000320, -1.71, -2.66, 2.11, 0.020 +20000321, 1.95, -2.28, -0.39, 0.020 +20000322, 1.31, 2.43, -1.29, 0.020 +20000323, 1.48, -1.08, 0.38, 0.020 +20000324, 0.11, -0.29, -0.04, 0.020 +20000327, -0.39, 0.32, -0.42, 0.020 +20000328, -1.34, -1.21, 0.92, 0.020 +20000329, -1.00, -2.41, 1.90, 0.020 +20000330, -1.76, -2.07, 1.67, 0.020 +20000331, 1.19, 0.28, 0.01, 0.020 +20000403, -1.67, -4.06, 2.16, 0.024 +20000404, -1.20, -1.76, 0.26, 0.024 +20000405, 0.01, 1.36, -0.74, 0.024 +20000406, 1.47, 1.44, -0.43, 0.024 +20000407, 1.42, 1.85, -0.68, 0.024 +20000410, -1.95, -3.52, 2.18, 0.024 +20000411, -1.01, -2.44, 2.18, 0.024 +20000412, -2.97, -2.86, 2.85, 0.024 +20000413, -1.80, -0.30, 0.95, 0.024 +20000414, -6.72, -1.27, 2.07, 0.024 +20000417, 2.94, -1.61, -1.56, 0.024 +20000418, 3.84, 3.29, -2.40, 0.024 +20000419, -0.80, 1.49, 0.11, 0.024 +20000420, 0.09, -1.14, 1.04, 0.024 +20000424, -1.01, -2.34, 1.14, 0.024 +20000425, 3.74, 0.44, -1.06, 0.024 +20000426, -1.23, 0.28, 1.33, 0.024 +20000427, 0.76, 1.46, -0.77, 0.024 +20000428, 0.07, 2.28, 0.01, 0.024 +20000501, 1.40, 1.18, -1.21, 0.023 +20000502, -2.07, -1.26, 1.93, 0.023 +20000503, -2.09, 0.35, -0.46, 0.023 +20000504, 0.00, 0.88, -0.08, 0.023 +20000505, 1.48, 0.78, -0.67, 0.023 +20000508, -0.98, -1.63, 1.47, 0.023 +20000509, -1.19, -0.97, 0.90, 0.023 +20000510, -2.70, -1.07, 0.87, 0.023 +20000511, 2.08, 0.33, -0.23, 0.023 +20000512, 0.81, -0.66, 0.51, 0.023 +20000515, 2.13, -0.78, -0.79, 0.023 +20000516, 1.30, 0.33, -0.63, 0.023 +20000517, -1.38, 0.20, 0.73, 0.023 +20000518, -1.09, -1.28, 1.06, 0.023 +20000519, -2.39, -0.25, 0.88, 0.023 +20000522, -0.73, -1.02, -0.31, 0.023 +20000523, -2.38, -0.89, 1.39, 0.023 +20000524, 1.55, -1.17, -1.27, 0.023 +20000525, -1.29, 0.51, 0.11, 0.023 +20000526, -0.18, 0.24, -0.05, 0.023 +20000530, 3.82, 0.77, -2.25, 0.023 +20000531, -0.22, 0.06, 0.54, 0.023 +20000601, 2.50, 0.84, -1.64, 0.018 +20000602, 2.91, 1.70, -2.45, 0.018 +20000605, -0.37, 1.32, -0.56, 0.018 +20000606, -0.87, 0.70, 0.18, 0.018 +20000607, 1.16, 0.27, -0.76, 0.018 +20000608, -0.60, 0.72, 0.17, 0.018 +20000609, 0.04, 1.52, -0.07, 0.018 +20000612, -1.19, -0.87, 1.28, 0.018 +20000613, 1.45, -0.16, -0.99, 0.018 +20000614, -0.16, -0.33, 0.35, 0.018 +20000615, 0.50, 0.34, -1.23, 0.018 +20000616, -0.74, 1.35, -0.19, 0.018 +20000619, 1.66, 0.16, -1.27, 0.018 +20000620, -0.25, 0.98, -0.51, 0.018 +20000621, 0.36, 0.68, -0.49, 0.018 +20000622, -1.88, 0.10, 0.43, 0.018 +20000623, -0.99, -0.37, 1.05, 0.018 +20000626, 0.92, 1.35, -1.36, 0.018 +20000627, -0.55, -0.61, 0.77, 0.018 +20000628, 0.77, 1.87, -1.20, 0.018 +20000629, -0.67, 0.07, 0.62, 0.018 +20000630, 0.74, 1.89, -1.56, 0.018 +20000703, 0.91, -0.67, 0.83, 0.024 +20000705, -1.60, -0.12, 1.85, 0.024 +20000706, 0.87, 0.01, -0.15, 0.024 +20000707, 1.46, -0.76, -0.81, 0.024 +20000710, -0.13, 0.13, 0.59, 0.024 +20000711, 0.12, -0.24, 0.10, 0.024 +20000712, 1.31, 0.37, -0.64, 0.024 +20000713, 0.51, 0.27, -0.57, 0.024 +20000714, 0.94, -0.43, -0.41, 0.024 +20000717, 0.10, 1.11, -1.32, 0.024 +20000718, -1.35, 0.13, 1.19, 0.024 +20000719, -1.19, -0.36, 1.25, 0.024 +20000720, 1.33, -0.23, -0.80, 0.024 +20000721, -1.30, -0.46, 1.10, 0.024 +20000724, -1.44, -0.41, 0.87, 0.024 +20000725, 0.51, -0.69, 0.23, 0.024 +20000726, -1.33, 0.83, 0.94, 0.024 +20000727, -0.90, -1.75, 2.48, 0.024 +20000728, -2.33, -0.23, 1.72, 0.024 +20000731, 1.03, 0.75, -0.45, 0.024 +20000801, 0.16, -1.33, 1.54, 0.022 +20000802, 0.02, 0.08, 0.21, 0.022 +20000803, 1.11, -1.37, -0.01, 0.022 +20000804, 0.89, -0.74, 0.23, 0.022 +20000807, 1.16, 0.13, -0.73, 0.022 +20000808, 0.10, -0.53, 1.08, 0.022 +20000809, -0.60, 0.50, 0.06, 0.022 +20000810, -1.03, -0.51, 1.18, 0.022 +20000811, 0.86, 0.13, 0.26, 0.022 +20000814, 1.24, -0.06, -0.40, 0.022 +20000815, -0.46, 0.00, 0.05, 0.022 +20000816, -0.18, 0.66, -0.20, 0.022 +20000817, 1.12, -0.34, -0.60, 0.022 +20000818, -0.28, 0.06, 0.03, 0.022 +20000821, 0.40, -0.07, -0.49, 0.022 +20000822, -0.01, 0.00, 0.09, 0.022 +20000823, 0.55, 0.19, -1.02, 0.022 +20000824, 0.34, 0.47, -0.47, 0.022 +20000825, -0.04, 0.68, -0.46, 0.022 +20000828, 0.49, -0.36, -0.11, 0.022 +20000829, -0.03, 0.69, -0.24, 0.022 +20000830, -0.11, 0.45, -0.01, 0.022 +20000831, 1.19, 0.16, -0.65, 0.022 +20000901, 0.38, 0.15, -0.35, 0.025 +20000905, -0.97, -0.23, 1.33, 0.025 +20000906, -1.23, -0.33, 2.01, 0.025 +20000907, 0.80, 0.59, -0.72, 0.025 +20000908, -0.83, -0.65, 0.90, 0.025 +20000911, -0.45, -0.77, 1.43, 0.025 +20000912, -0.50, 0.41, -0.08, 0.025 +20000913, 0.29, -0.18, -0.15, 0.025 +20000914, 0.01, 0.92, -0.37, 0.025 +20000915, -1.23, -0.11, 0.98, 0.025 +20000918, -1.80, -0.34, 0.55, 0.025 +20000919, 1.24, 0.43, -1.53, 0.025 +20000920, -0.39, 0.61, -0.59, 0.025 +20000921, -0.54, -0.69, 1.08, 0.025 +20000922, 0.40, -0.52, -0.15, 0.025 +20000925, -0.56, -0.24, 0.45, 0.025 +20000926, -0.96, -0.62, 1.12, 0.025 +20000927, -0.21, -0.62, 0.33, 0.025 +20000928, 2.32, 0.15, -1.21, 0.025 +20000929, -1.26, 0.70, 1.25, 0.025 +20001002, -0.70, -1.59, 1.47, 0.025 +20001003, -1.29, 0.13, 1.05, 0.025 +20001004, 0.64, 0.04, -0.64, 0.025 +20001005, -0.23, -0.11, 0.08, 0.025 +20001006, -2.17, -0.12, 1.57, 0.025 +20001009, -0.39, -0.28, 0.51, 0.025 +20001010, -1.44, 0.02, 0.69, 0.025 +20001011, -1.77, -0.01, 0.85, 0.025 +20001012, -2.83, 0.69, 1.21, 0.025 +20001013, 3.88, -0.55, -2.36, 0.025 +20001016, 0.24, -0.19, -0.47, 0.025 +20001017, -1.95, 0.16, 0.59, 0.025 +20001018, -0.84, -0.26, 0.60, 0.025 +20001019, 3.66, -0.62, -2.13, 0.025 +20001020, 0.92, 0.39, -1.01, 0.025 +20001023, 0.03, 0.70, -0.67, 0.025 +20001024, -0.12, -0.90, 1.16, 0.025 +20001025, -2.52, -0.14, 1.88, 0.025 +20001026, 0.00, 0.89, -0.33, 0.025 +20001027, 0.91, -1.20, 1.25, 0.025 +20001030, 0.74, -1.55, 1.82, 0.025 +20001031, 2.75, 0.59, -1.65, 0.025 +20001101, -0.48, -0.22, 0.49, 0.024 +20001102, 1.05, 1.36, -1.28, 0.024 +20001103, -0.03, 1.14, -1.21, 0.024 +20001106, 0.13, -0.97, 0.53, 0.024 +20001107, -0.08, 0.45, -0.33, 0.024 +20001108, -1.97, 0.19, 2.16, 0.024 +20001109, -0.96, -0.35, 0.80, 0.024 +20001110, -2.69, -0.42, 2.31, 0.024 +20001113, -1.39, -0.19, 1.71, 0.024 +20001114, 2.66, -0.06, -1.84, 0.024 +20001115, 0.60, 0.05, 0.07, 0.024 +20001116, -1.67, -0.61, 1.62, 0.024 +20001117, -0.52, 0.78, 0.44, 0.024 +20001120, -2.46, -0.16, 1.38, 0.024 +20001121, -0.05, -0.85, 0.72, 0.024 +20001122, -2.12, -0.21, 1.96, 0.024 +20001124, 2.08, 0.83, -2.02, 0.024 +20001127, 0.30, -0.20, -0.64, 0.024 +20001128, -1.67, -1.09, 2.51, 0.024 +20001129, 0.18, -1.71, 1.05, 0.024 +20001130, -2.03, -0.68, 1.49, 0.024 +20001201, 0.51, 1.59, -0.68, 0.025 +20001204, 0.35, -1.57, 0.93, 0.025 +20001205, 4.55, 0.00, -2.87, 0.025 +20001206, -1.78, 0.07, 1.09, 0.025 +20001207, -0.59, 0.10, 0.43, 0.025 +20001208, 2.79, 0.64, -1.42, 0.025 +20001211, 1.15, 0.22, -0.95, 0.025 +20001212, -1.07, -0.55, 0.54, 0.025 +20001213, -1.14, -0.25, 1.12, 0.025 +20001214, -1.80, 0.14, 1.04, 0.025 +20001215, -1.96, 0.30, 1.63, 0.025 +20001218, 0.60, -0.62, 1.31, 0.025 +20001219, -1.63, -0.43, 2.11, 0.025 +20001220, -3.59, -0.94, 3.03, 0.025 +20001221, 0.54, -0.18, 0.32, 0.025 +20001222, 3.06, 0.73, -2.10, 0.025 +20001226, 0.55, -0.45, 0.75, 0.025 +20001227, 1.36, 0.76, -0.31, 0.025 +20001228, 0.88, 1.79, -0.68, 0.025 +20001229, -1.23, -0.22, 1.43, 0.025 +20010102, -3.52, -0.29, 1.96, 0.026 +20010103, 5.39, 0.57, -4.12, 0.026 +20010104, -1.30, 0.71, 0.24, 0.026 +20010105, -2.98, 0.29, 2.18, 0.026 +20010108, -0.36, -0.51, 0.95, 0.026 +20010109, 0.51, 0.49, -0.23, 0.026 +20010110, 1.44, 0.81, -1.30, 0.026 +20010111, 1.39, 1.63, -2.84, 0.026 +20010112, -0.40, 1.23, -0.56, 0.026 +20010116, 0.68, 1.07, -0.22, 0.026 +20010117, 0.37, 0.17, -0.83, 0.026 +20010118, 1.16, -0.09, -1.38, 0.026 +20010119, -0.55, -0.17, -0.27, 0.026 +20010122, -0.01, -0.45, 1.10, 0.026 +20010123, 1.57, 0.46, -0.43, 0.026 +20010124, 0.34, -0.40, -0.35, 0.026 +20010125, -0.81, -0.68, 1.59, 0.026 +20010126, -0.11, 0.32, -0.22, 0.026 +20010129, 0.90, 0.66, -0.31, 0.026 +20010130, 0.63, -0.11, -0.20, 0.026 +20010131, -0.72, 0.42, 0.28, 0.026 +20010201, 0.39, -0.27, 0.82, 0.020 +20010202, -1.90, -0.31, 2.21, 0.020 +20010205, 0.17, -0.50, 1.04, 0.020 +20010206, 0.04, 1.06, -0.49, 0.020 +20010207, -0.86, 0.82, 1.17, 0.020 +20010208, -0.67, -0.31, 0.79, 0.020 +20010209, -1.42, -0.13, 1.18, 0.020 +20010212, 1.10, 0.15, 0.05, 0.020 +20010213, -0.90, 0.16, 1.01, 0.020 +20010214, -0.04, 0.45, -0.41, 0.020 +20010215, 0.93, 0.30, -0.86, 0.020 +20010216, -1.93, -0.59, 1.87, 0.020 +20010220, -1.93, 0.19, 1.40, 0.020 +20010221, -1.84, 0.07, 0.92, 0.020 +20010222, -0.48, -1.04, 0.59, 0.020 +20010223, -0.38, 0.34, -0.35, 0.020 +20010226, 1.91, -0.34, 0.02, 0.020 +20010227, -1.17, -1.21, 1.64, 0.020 +20010228, -1.48, 0.44, 0.81, 0.020 +20010301, 0.02, -0.18, -0.07, 0.019 +20010302, -0.53, 0.40, 1.15, 0.019 +20010305, 0.54, -0.68, 0.18, 0.019 +20010306, 1.06, 0.30, -1.03, 0.019 +20010307, 0.58, -0.10, 0.65, 0.019 +20010308, -0.14, -0.71, 0.99, 0.019 +20010309, -2.50, 0.22, 2.01, 0.019 +20010312, -4.34, 0.60, 2.38, 0.019 +20010313, 1.61, -0.18, -1.48, 0.019 +20010314, -2.50, 0.79, 0.10, 0.019 +20010315, 0.34, -0.64, 0.30, 0.019 +20010316, -2.11, -0.36, 1.27, 0.019 +20010319, 1.86, -0.16, -1.15, 0.019 +20010320, -2.40, 0.68, 1.33, 0.019 +20010321, -1.88, -0.07, 0.67, 0.019 +20010322, -0.43, 0.34, -1.40, 0.019 +20010323, 2.08, 0.09, -1.22, 0.019 +20010326, 1.09, -1.03, 0.61, 0.019 +20010327, 2.40, -0.49, -1.54, 0.019 +20010328, -2.58, 0.01, 1.87, 0.019 +20010329, -0.53, -0.17, 1.51, 0.019 +20010330, 1.19, 1.66, -0.60, 0.019 +20010402, -1.60, -1.68, 1.48, 0.020 +20010403, -3.69, 0.07, 2.03, 0.020 +20010404, -0.39, -0.28, 0.82, 0.020 +20010405, 4.68, 0.21, -3.28, 0.020 +20010406, -2.07, 0.37, 0.21, 0.020 +20010409, 0.87, 0.25, -0.13, 0.020 +20010410, 2.87, -0.35, -1.36, 0.020 +20010411, -0.10, -0.16, -0.65, 0.020 +20010412, 1.57, 0.25, -1.32, 0.020 +20010416, -0.47, -0.35, 0.66, 0.020 +20010417, 1.10, 0.15, -0.22, 0.020 +20010418, 3.92, -1.51, -2.52, 0.020 +20010419, 1.48, 0.33, -1.37, 0.020 +20010420, -0.87, 0.10, 0.16, 0.020 +20010423, -1.72, 0.35, 1.21, 0.020 +20010424, -1.15, 1.08, 1.00, 0.020 +20010425, 1.68, 0.77, -0.90, 0.020 +20010426, 0.45, 0.26, 0.26, 0.020 +20010427, 1.47, -0.09, -0.44, 0.020 +20010430, 0.03, 0.74, -0.51, 0.020 +20010501, 1.37, 0.04, -0.72, 0.015 +20010502, 0.33, 0.50, -0.94, 0.015 +20010503, -1.58, 0.26, 0.91, 0.015 +20010504, 1.45, -0.15, 0.01, 0.015 +20010507, -0.34, -0.07, 0.23, 0.015 +20010508, -0.09, 0.60, 0.17, 0.015 +20010509, -0.49, 0.09, 0.46, 0.015 +20010510, -0.10, 0.09, 0.59, 0.015 +20010511, -0.74, 0.21, 0.76, 0.015 +20010514, 0.11, -0.27, 0.67, 0.015 +20010515, 0.06, 0.48, 0.18, 0.015 +20010516, 2.78, -1.11, -1.15, 0.015 +20010517, 0.52, 0.76, -0.41, 0.015 +20010518, 0.22, 0.17, 0.00, 0.015 +20010521, 1.87, 0.17, -1.41, 0.015 +20010522, -0.15, 0.31, 0.24, 0.015 +20010523, -1.71, -0.08, 0.72, 0.015 +20010524, 0.41, 0.47, -0.44, 0.015 +20010525, -1.04, 0.81, 0.33, 0.015 +20010529, -1.06, -0.34, 1.22, 0.015 +20010530, -1.74, -0.22, 1.72, 0.015 +20010531, 0.73, -0.28, -0.17, 0.015 +20010601, 0.54, 0.73, -0.31, 0.013 +20010604, 0.49, 0.68, -0.19, 0.013 +20010605, 1.45, 0.39, -1.18, 0.013 +20010606, -0.97, 0.04, 0.13, 0.013 +20010607, 0.54, 0.23, -1.11, 0.013 +20010608, -0.99, 0.07, 0.65, 0.013 +20010611, -0.98, 0.04, 0.74, 0.013 +20010612, 0.02, -0.12, 0.08, 0.013 +20010613, -1.06, 0.56, 0.73, 0.013 +20010614, -1.96, 0.01, 0.78, 0.013 +20010615, -0.46, 0.00, 0.39, 0.013 +20010618, -0.63, -0.96, 1.08, 0.013 +20010619, 0.21, -0.56, 0.03, 0.013 +20010620, 1.07, 0.30, -0.55, 0.013 +20010621, 0.98, -0.26, -0.12, 0.013 +20010622, -1.00, -0.31, -0.01, 0.013 +20010625, -0.54, 0.42, -0.34, 0.013 +20010626, -0.04, 1.42, -0.17, 0.013 +20010627, -0.22, 0.86, -0.05, 0.013 +20010628, 1.31, 0.06, -0.86, 0.013 +20010629, 0.35, 2.47, -0.88, 0.013 +20010702, 0.56, -3.32, 1.31, 0.014 +20010703, -0.21, -0.03, 0.13, 0.014 +20010705, -1.24, 0.23, 0.47, 0.014 +20010706, -2.29, 0.36, 0.95, 0.014 +20010709, 0.59, -0.31, 0.77, 0.014 +20010710, -1.49, -0.80, 2.15, 0.014 +20010711, -0.18, -0.48, 0.28, 0.014 +20010712, 2.44, 0.19, -0.86, 0.014 +20010713, 0.54, 0.26, -0.49, 0.014 +20010716, -1.16, -0.21, 1.19, 0.014 +20010717, 1.05, 0.47, -0.74, 0.014 +20010718, -0.69, -0.70, 0.58, 0.014 +20010719, 0.51, 0.65, -0.71, 0.014 +20010720, -0.33, 0.71, -0.16, 0.014 +20010723, -1.55, 0.62, 0.34, 0.014 +20010724, -1.70, 0.09, 0.15, 0.014 +20010725, 1.37, -1.03, -0.09, 0.014 +20010726, 1.19, -0.37, 0.08, 0.014 +20010727, 0.26, -0.39, 0.06, 0.014 +20010730, -0.12, 0.04, 0.18, 0.014 +20010731, 0.50, -0.50, 0.13, 0.014 +20010801, 0.48, 0.38, -0.08, 0.013 +20010802, 0.33, -0.29, 0.06, 0.013 +20010803, -0.49, 0.20, 0.10, 0.013 +20010806, -1.16, -0.21, 0.81, 0.013 +20010807, 0.21, -0.38, 0.18, 0.013 +20010808, -1.72, 0.08, 0.78, 0.013 +20010809, -0.06, 0.41, -0.52, 0.013 +20010810, 0.44, -0.40, 0.11, 0.013 +20010813, 0.23, 0.18, -0.14, 0.013 +20010814, -0.30, 0.51, 0.45, 0.013 +20010815, -0.75, 0.52, 0.15, 0.013 +20010816, 0.21, -0.01, 0.25, 0.013 +20010817, -1.63, 0.54, 0.36, 0.013 +20010820, 0.71, 0.04, -0.57, 0.013 +20010821, -1.22, -0.22, 0.78, 0.013 +20010822, 0.71, 0.33, -0.68, 0.013 +20010823, -0.31, -0.29, -0.10, 0.013 +20010824, 1.84, -0.12, -0.82, 0.013 +20010827, -0.42, 0.33, -0.47, 0.013 +20010828, -1.46, 0.18, 0.88, 0.013 +20010829, -0.98, 0.87, 0.09, 0.013 +20010830, -1.60, 0.32, 0.63, 0.013 +20010831, 0.42, -0.38, 0.29, 0.013 +20010904, -0.12, -0.39, 0.65, 0.018 +20010905, -0.32, -0.65, 0.54, 0.018 +20010906, -2.13, 0.27, 0.44, 0.018 +20010907, -1.83, 0.38, -0.52, 0.018 +20010910, 0.37, -1.08, -0.49, 0.018 +20010917, -5.03, 0.25, -0.80, 0.018 +20010918, -0.82, -1.45, 1.20, 0.018 +20010919, -1.67, -0.79, 0.00, 0.018 +20010920, -3.05, -0.83, -0.10, 0.018 +20010921, -1.96, -0.39, -0.58, 0.018 +20010924, 3.82, -0.08, -0.29, 0.018 +20010925, 0.74, -0.61, 0.75, 0.018 +20010926, -0.67, -0.82, 0.24, 0.018 +20010927, 1.10, -1.06, 0.40, 0.018 +20010928, 2.25, 0.41, 0.52, 0.018 +20011001, -0.45, -1.03, -0.18, 0.010 +20011002, 1.17, -0.34, -0.28, 0.010 +20011003, 2.28, 0.53, -1.10, 0.010 +20011004, -0.12, 1.52, -0.75, 0.010 +20011005, 0.04, 0.23, -1.22, 0.010 +20011008, -0.80, 0.29, 0.39, 0.010 +20011009, -0.51, -0.35, 0.02, 0.010 +20011010, 2.35, 0.31, -0.56, 0.010 +20011011, 1.73, 0.24, -0.38, 0.010 +20011012, -0.57, 0.46, -0.40, 0.010 +20011015, -0.09, 0.54, -0.25, 0.010 +20011016, 0.78, 0.46, -0.69, 0.010 +20011017, -2.02, 0.21, 0.16, 0.010 +20011018, -0.73, 0.35, -0.19, 0.010 +20011019, 0.54, 0.69, -0.75, 0.010 +20011022, 1.51, -0.39, -0.47, 0.010 +20011023, -0.51, 0.04, -0.16, 0.010 +20011024, 0.08, 0.54, -1.11, 0.010 +20011025, 1.42, 0.70, -1.34, 0.010 +20011026, 0.41, 0.29, 0.10, 0.010 +20011029, -2.33, 0.38, 0.81, 0.010 +20011030, -1.76, 0.40, 0.67, 0.010 +20011031, 0.18, 1.36, -0.25, 0.010 +20011101, 2.10, -0.56, -0.72, 0.008 +20011102, 0.18, -0.82, 0.48, 0.008 +20011105, 1.42, -0.60, -0.32, 0.008 +20011106, 1.44, -0.39, -0.04, 0.008 +20011107, -0.23, 0.06, -0.35, 0.008 +20011108, 0.07, -0.40, 0.49, 0.008 +20011109, 0.07, 0.00, -0.13, 0.008 +20011112, -0.07, 0.77, -0.43, 0.008 +20011113, 1.86, -0.41, -0.01, 0.008 +20011114, 0.34, 0.44, 0.54, 0.008 +20011115, 0.00, -1.08, 1.37, 0.008 +20011116, -0.25, 0.52, 0.49, 0.008 +20011119, 1.15, 0.22, -0.34, 0.008 +20011120, -0.80, 0.10, 0.14, 0.008 +20011121, -0.48, 0.41, -0.29, 0.008 +20011123, 1.17, 0.00, 0.00, 0.008 +20011126, 0.72, -0.14, -0.16, 0.008 +20011127, -0.55, 0.58, 0.23, 0.008 +20011128, -1.78, 0.12, 1.02, 0.008 +20011129, 1.15, 0.97, -0.48, 0.008 +20011130, -0.14, -0.20, 0.28, 0.008 +20011203, -0.86, -0.07, 0.32, 0.007 +20011204, 1.44, 0.69, -0.40, 0.007 +20011205, 2.31, 0.06, -0.62, 0.007 +20011206, -0.12, 0.21, 0.78, 0.007 +20011207, -0.74, 0.76, 0.03, 0.007 +20011210, -1.52, 0.67, -0.36, 0.007 +20011211, -0.20, 0.45, -0.13, 0.007 +20011212, 0.04, 0.16, -0.04, 0.007 +20011213, -1.51, 0.41, 0.23, 0.007 +20011214, 0.31, 0.35, 0.50, 0.007 +20011217, 1.05, 0.23, 0.10, 0.007 +20011218, 0.84, 0.43, -0.72, 0.007 +20011219, 0.43, -0.75, -0.36, 0.007 +20011220, -0.93, -1.22, 1.26, 0.007 +20011221, 0.57, 1.31, 0.12, 0.007 +20011224, 0.02, 0.28, 0.06, 0.007 +20011226, 0.50, 0.53, -0.28, 0.007 +20011227, 0.69, 0.03, -0.37, 0.007 +20011228, 0.41, -0.36, 0.12, 0.007 +20011231, -1.04, 0.22, 0.79, 0.007 +20020102, 0.42, -0.61, 0.13, 0.007 +20020103, 0.99, 0.88, -0.53, 0.007 +20020104, 0.70, 0.13, 0.31, 0.007 +20020107, -0.70, -0.44, 0.87, 0.007 +20020108, -0.23, 1.17, 0.24, 0.007 +20020109, -0.45, 0.19, -0.15, 0.007 +20020110, 0.08, -0.08, 0.26, 0.007 +20020111, -0.86, -0.08, 0.29, 0.007 +20020114, -0.85, -0.57, -0.05, 0.007 +20020115, 0.67, -0.47, 0.20, 0.007 +20020116, -1.62, 0.12, 0.59, 0.007 +20020117, 1.06, 0.38, -0.63, 0.007 +20020118, -1.08, -0.56, 0.88, 0.007 +20020122, -0.81, -0.22, 0.08, 0.007 +20020123, 0.92, 0.69, -0.16, 0.007 +20020124, 0.40, -0.30, 0.31, 0.007 +20020125, 0.09, -0.24, 0.38, 0.007 +20020128, 0.05, 0.12, 0.62, 0.007 +20020129, -2.54, 1.37, 0.22, 0.007 +20020130, 1.05, 0.28, -0.75, 0.007 +20020131, 1.35, -0.59, 0.21, 0.007 +20020201, -0.71, 0.37, -0.31, 0.007 +20020204, -2.37, 0.73, 0.16, 0.007 +20020205, -0.35, 0.29, -0.43, 0.007 +20020206, -0.78, -0.37, -0.10, 0.007 +20020207, -0.41, -1.17, 0.99, 0.007 +20020208, 1.59, -0.29, 0.32, 0.007 +20020211, 1.33, -0.25, -0.48, 0.007 +20020212, -0.28, 0.68, -0.49, 0.007 +20020213, 0.99, -0.02, -0.12, 0.007 +20020214, -0.24, -0.59, -0.16, 0.007 +20020215, -1.12, 0.90, 0.15, 0.007 +20020219, -1.94, 0.27, 0.52, 0.007 +20020220, 1.33, -0.35, 0.39, 0.007 +20020221, -1.52, -0.49, 0.70, 0.007 +20020222, 0.75, 0.43, 0.00, 0.007 +20020225, 1.66, -1.38, 0.43, 0.007 +20020226, 0.11, 0.28, 0.11, 0.007 +20020227, 0.08, -0.01, 0.43, 0.007 +20020228, -0.31, -0.27, 0.53, 0.007 +20020301, 2.22, -0.51, -0.40, 0.007 +20020304, 1.98, -0.42, -0.28, 0.007 +20020305, -0.54, 0.63, -0.02, 0.007 +20020306, 1.39, -0.10, 0.30, 0.007 +20020307, -0.42, 0.58, 0.14, 0.007 +20020308, 0.72, 0.41, -0.12, 0.007 +20020311, 0.29, 0.11, -0.04, 0.007 +20020312, -0.28, 0.32, -0.13, 0.007 +20020313, -0.91, 0.52, 0.03, 0.007 +20020314, -0.05, 0.43, -0.06, 0.007 +20020315, 1.06, -1.01, 0.31, 0.007 +20020318, 0.09, 0.65, 0.05, 0.007 +20020319, 0.34, 0.11, -0.14, 0.007 +20020320, -1.50, 0.45, 0.65, 0.007 +20020321, 0.31, 1.06, -0.33, 0.007 +20020322, -0.42, -0.18, 0.27, 0.007 +20020325, -1.45, 0.62, -0.02, 0.007 +20020326, 0.60, 0.49, -0.13, 0.007 +20020327, 0.55, -0.05, 0.64, 0.007 +20020328, 0.29, -0.16, 0.31, 0.007 +20020401, -0.12, -0.08, -0.11, 0.007 +20020402, -0.92, 0.25, 0.19, 0.007 +20020403, -0.98, 0.31, 0.42, 0.007 +20020404, 0.12, -0.09, 0.52, 0.007 +20020405, -0.26, -0.21, 0.83, 0.007 +20020408, 0.35, 0.52, 0.14, 0.007 +20020409, -0.60, 0.44, 0.69, 0.007 +20020410, 1.15, 0.67, -0.29, 0.007 +20020411, -2.22, 0.84, 0.79, 0.007 +20020412, 0.84, 1.04, 0.12, 0.007 +20020415, -0.67, 0.46, -0.08, 0.007 +20020416, 2.26, -0.61, 0.59, 0.007 +20020417, -0.24, -0.45, 0.30, 0.007 +20020418, -0.14, 0.49, -0.61, 0.007 +20020419, 0.07, -0.25, 0.23, 0.007 +20020422, -1.50, 0.85, -0.53, 0.007 +20020423, -0.52, 0.16, 0.46, 0.007 +20020424, -0.66, 0.05, 0.47, 0.007 +20020425, -0.11, 0.18, 0.00, 0.007 +20020426, -1.41, -0.01, 0.28, 0.007 +20020429, -0.88, 0.92, -0.58, 0.007 +20020430, 1.20, 0.55, 0.11, 0.007 +20020501, 0.74, -0.97, 0.70, 0.007 +20020502, -0.21, 0.54, 0.30, 0.007 +20020503, -0.96, 0.59, 0.73, 0.007 +20020506, -1.84, -0.01, 0.91, 0.007 +20020507, -0.36, -0.80, 0.81, 0.007 +20020508, 3.57, -0.87, -1.99, 0.007 +20020509, -1.43, -0.27, 0.70, 0.007 +20020510, -1.64, -0.13, 0.51, 0.007 +20020513, 1.75, -0.37, -1.02, 0.007 +20020514, 2.20, 0.52, -1.16, 0.007 +20020515, -0.40, 0.31, 0.60, 0.007 +20020516, 0.35, -0.77, -0.78, 0.007 +20020517, 0.69, -0.18, -0.44, 0.007 +20020520, -1.28, -0.18, 1.04, 0.007 +20020521, -1.16, -0.31, 0.26, 0.007 +20020522, 0.37, -0.64, -0.13, 0.007 +20020523, 1.05, 0.01, -0.07, 0.007 +20020524, -1.17, -0.35, 0.66, 0.007 +20020528, -0.75, 0.69, -0.41, 0.007 +20020529, -0.67, -0.18, 0.22, 0.007 +20020530, -0.24, 0.23, -0.06, 0.007 +20020531, 0.19, -0.17, 0.22, 0.007 +20020603, -2.43, -0.73, 1.30, 0.006 +20020604, -0.11, 0.08, -0.71, 0.006 +20020605, 0.83, -0.16, -0.31, 0.006 +20020606, -1.91, -0.32, 0.98, 0.006 +20020607, 0.08, 0.78, -0.10, 0.006 +20020610, 0.21, -0.27, -0.29, 0.006 +20020611, -1.70, 0.56, 0.43, 0.006 +20020612, 0.54, 0.05, -1.34, 0.006 +20020613, -1.10, -0.28, 0.42, 0.006 +20020614, -0.07, 0.71, -0.70, 0.006 +20020617, 2.77, -0.14, -0.94, 0.006 +20020618, 0.05, -0.41, 0.59, 0.006 +20020619, -1.63, -0.02, 0.50, 0.006 +20020620, -1.37, 1.29, -0.13, 0.006 +20020621, -1.53, 1.23, 1.37, 0.006 +20020624, 0.18, -0.08, -0.52, 0.006 +20020625, -1.69, 0.49, 0.06, 0.006 +20020626, -0.27, 1.09, -1.09, 0.006 +20020627, 1.68, 0.40, -1.18, 0.006 +20020628, 0.12, 0.08, 1.83, 0.006 +20020701, -2.32, -0.24, 0.36, 0.007 +20020702, -2.27, -1.00, 0.02, 0.007 +20020703, 0.41, -1.28, -0.16, 0.007 +20020705, 3.55, -0.81, -0.73, 0.007 +20020708, -1.21, -0.20, 0.33, 0.007 +20020709, -2.36, 1.31, 1.00, 0.007 +20020710, -3.03, 1.35, -0.19, 0.007 +20020711, 0.56, -1.34, -0.50, 0.007 +20020712, -0.55, 0.00, -0.53, 0.007 +20020715, -0.45, -0.57, -0.45, 0.007 +20020716, -1.50, 1.34, -0.91, 0.007 +20020717, 0.63, 0.02, -0.31, 0.007 +20020718, -2.70, -0.51, 0.98, 0.007 +20020719, -3.38, 1.08, 0.10, 0.007 +20020722, -3.18, 1.23, 0.42, 0.007 +20020723, -2.86, -0.26, -1.59, 0.007 +20020724, 5.43, -1.71, -1.66, 0.007 +20020725, -0.52, 0.25, -0.08, 0.007 +20020726, 1.49, -0.57, 0.23, 0.007 +20020729, 5.39, -1.00, -0.13, 0.007 +20020730, 0.42, -0.69, -0.02, 0.007 +20020731, 0.65, -2.53, 0.04, 0.007 +20020801, -2.68, 1.50, 1.03, 0.006 +20020802, -2.36, -0.30, -0.68, 0.006 +20020805, -3.34, 1.05, 0.51, 0.006 +20020806, 3.03, 0.18, -0.51, 0.006 +20020807, 1.81, -1.04, -0.40, 0.006 +20020808, 3.05, -1.55, -0.53, 0.006 +20020809, 0.30, -0.66, 0.05, 0.006 +20020812, -0.43, 0.40, -0.15, 0.006 +20020813, -2.15, -0.33, 0.54, 0.006 +20020814, 3.76, -0.74, -0.91, 0.006 +20020815, 1.17, -1.43, 0.62, 0.006 +20020816, 0.06, 1.22, -0.14, 0.006 +20020819, 2.17, -0.85, -0.05, 0.006 +20020820, -1.30, 0.26, 0.83, 0.006 +20020821, 1.36, 0.50, 0.35, 0.006 +20020822, 1.32, -0.45, -0.32, 0.006 +20020823, -2.25, 0.27, -0.01, 0.006 +20020826, 0.83, 0.63, 0.40, 0.006 +20020827, -1.55, -1.10, 0.94, 0.006 +20020828, -1.79, -0.32, 0.27, 0.006 +20020829, 0.21, 0.60, -0.44, 0.006 +20020830, -0.28, -0.42, 0.88, 0.006 +20020903, -3.95, 1.08, 0.62, 0.007 +20020904, 1.83, 0.70, -0.13, 0.007 +20020905, -1.62, -0.56, 0.09, 0.007 +20020906, 1.82, 0.47, 0.14, 0.007 +20020909, 0.92, -0.61, -0.52, 0.007 +20020910, 0.66, -0.03, -0.24, 0.007 +20020911, -0.03, -0.25, 0.28, 0.007 +20020912, -2.37, 0.83, 0.35, 0.007 +20020913, 0.38, 0.41, 0.04, 0.007 +20020916, 0.02, -0.67, -0.30, 0.007 +20020917, -1.91, 0.19, 0.60, 0.007 +20020918, -0.45, -0.44, 0.20, 0.007 +20020919, -2.96, 0.26, 0.33, 0.007 +20020920, 0.19, -0.05, 0.27, 0.007 +20020923, -1.48, -0.83, 0.09, 0.007 +20020924, -1.54, 1.05, -0.62, 0.007 +20020925, 2.44, 0.05, -1.11, 0.007 +20020926, 1.74, -0.81, 1.02, 0.007 +20020927, -2.98, 0.52, 0.64, 0.007 +20020930, -1.28, 1.47, -0.40, 0.007 +20021001, 3.56, -1.88, -0.50, 0.006 +20021002, -2.31, 0.51, 0.34, 0.006 +20021003, -1.14, 0.64, -0.16, 0.006 +20021004, -2.25, 0.19, -0.20, 0.006 +20021007, -2.00, -0.28, -0.36, 0.006 +20021008, 1.54, -0.38, -1.81, 0.006 +20021009, -2.77, -0.03, -1.05, 0.006 +20021010, 3.41, -2.03, 0.28, 0.006 +20021011, 3.74, -1.43, -0.30, 0.006 +20021014, 0.77, 0.22, -1.19, 0.006 +20021015, 4.57, -1.11, 0.22, 0.006 +20021016, -2.42, 0.14, 0.20, 0.006 +20021017, 2.40, 0.83, -0.61, 0.006 +20021018, 0.49, -0.15, -0.48, 0.006 +20021021, 1.65, -0.88, 0.56, 0.006 +20021022, -1.11, -0.60, 0.63, 0.006 +20021023, 0.76, 0.71, 0.20, 0.006 +20021024, -1.44, 0.68, 0.28, 0.006 +20021025, 1.69, 0.14, -0.48, 0.006 +20021028, -0.83, 0.00, -0.26, 0.006 +20021029, -0.87, 1.05, -0.18, 0.006 +20021030, 1.03, 0.43, -0.61, 0.006 +20021031, -0.41, 0.25, 0.36, 0.006 +20021101, 1.73, 0.79, -0.53, 0.006 +20021104, 0.79, 0.31, -0.54, 0.006 +20021105, 0.63, -1.04, 0.26, 0.006 +20021106, 0.98, 0.51, 0.41, 0.006 +20021107, -2.22, 0.44, -0.30, 0.006 +20021108, -0.92, -0.14, 0.28, 0.006 +20021111, -2.09, -0.42, 0.48, 0.006 +20021112, 0.83, 0.50, -0.25, 0.006 +20021113, 0.02, 0.48, -0.30, 0.006 +20021114, 2.43, 0.25, -0.90, 0.006 +20021115, 0.61, -0.78, -0.11, 0.006 +20021118, -1.00, 0.29, -0.17, 0.006 +20021119, -0.48, -0.26, 0.27, 0.006 +20021120, 1.93, 0.57, -0.94, 0.006 +20021121, 2.16, -0.32, 0.06, 0.006 +20021122, -0.22, 0.58, 0.24, 0.006 +20021125, 0.36, 0.85, 0.06, 0.006 +20021126, -2.03, 0.57, 0.58, 0.006 +20021127, 2.78, 0.10, -0.14, 0.006 +20021129, -0.32, -0.65, 0.53, 0.006 +20021202, -0.10, 0.63, -0.12, 0.005 +20021203, -1.54, 0.30, -0.72, 0.005 +20021204, -0.38, -0.34, 0.50, 0.005 +20021205, -1.11, 0.11, 0.70, 0.005 +20021206, 0.61, -0.10, -0.10, 0.005 +20021209, -2.26, -0.23, 0.30, 0.005 +20021210, 1.44, 0.31, -0.13, 0.005 +20021211, 0.10, -0.27, 0.31, 0.005 +20021212, -0.27, 0.63, 0.30, 0.005 +20021213, -1.37, -0.42, 0.41, 0.005 +20021216, 2.21, -0.50, -0.34, 0.005 +20021217, -0.76, -0.29, 0.43, 0.005 +20021218, -1.34, -0.42, 0.07, 0.005 +20021219, -0.70, 0.50, 0.38, 0.005 +20021220, 1.23, -0.47, -0.40, 0.005 +20021223, 0.24, 0.44, -0.06, 0.005 +20021224, -0.52, 0.18, 0.05, 0.005 +20021226, -0.19, 0.33, 0.09, 0.005 +20021227, -1.53, 0.42, 0.01, 0.005 +20021230, 0.34, -0.85, 0.06, 0.005 +20021231, 0.12, 0.00, 0.57, 0.005 +20030102, 3.14, -0.87, -0.31, 0.005 +20030103, -0.11, -0.42, 0.04, 0.005 +20030106, 2.13, -0.60, -0.41, 0.005 +20030107, -0.63, 0.28, -0.17, 0.005 +20030108, -1.34, 0.10, 0.43, 0.005 +20030109, 1.89, -0.11, -0.48, 0.005 +20030110, 0.04, 0.05, 0.18, 0.005 +20030113, -0.12, 0.13, 0.19, 0.005 +20030114, 0.55, 0.08, -0.17, 0.005 +20030115, -1.32, 0.67, 0.56, 0.005 +20030116, -0.34, 0.22, 0.18, 0.005 +20030117, -1.40, -0.38, 0.70, 0.005 +20030121, -1.53, 0.52, -0.36, 0.005 +20030122, -0.94, 0.51, -0.50, 0.005 +20030123, 0.99, 0.10, -0.65, 0.005 +20030124, -2.78, 0.50, 0.57, 0.005 +20030127, -1.65, 0.23, -0.13, 0.005 +20030128, 1.26, 0.08, -0.44, 0.005 +20030129, 0.63, -0.19, -0.14, 0.005 +20030130, -2.13, 0.74, -0.36, 0.005 +20030131, 1.28, -0.32, 0.23, 0.005 +20030203, 0.37, -0.69, -0.07, 0.005 +20030204, -1.34, 1.12, -0.19, 0.005 +20030205, -0.49, 0.17, 0.05, 0.005 +20030206, -0.64, 0.02, 0.13, 0.005 +20030207, -1.06, -0.45, -0.24, 0.005 +20030210, 0.69, 0.08, 0.07, 0.005 +20030211, -0.71, 0.33, -0.31, 0.005 +20030212, -1.25, 0.18, 0.10, 0.005 +20030213, -0.26, -0.09, -0.25, 0.005 +20030214, 1.90, -0.79, -0.65, 0.005 +20030218, 1.97, -0.42, -0.13, 0.005 +20030219, -0.70, -0.29, 0.03, 0.005 +20030220, -0.83, 0.86, -0.15, 0.005 +20030221, 1.31, -0.15, -0.07, 0.005 +20030224, -1.78, 0.45, -0.11, 0.005 +20030225, 0.70, 0.11, -0.19, 0.005 +20030226, -1.22, 0.15, 0.45, 0.005 +20030227, 1.15, -0.26, -0.14, 0.005 +20030228, 0.41, -0.69, 0.22, 0.005 +20030303, -0.67, 0.13, 0.42, 0.005 +20030304, -1.44, 0.96, -0.53, 0.005 +20030305, 0.78, -0.90, -0.02, 0.005 +20030306, -0.84, 0.17, 0.03, 0.005 +20030307, 0.76, -0.67, -0.16, 0.005 +20030310, -2.36, 0.83, 0.10, 0.005 +20030311, -0.81, 0.92, -0.70, 0.005 +20030312, 0.32, -0.38, -0.41, 0.005 +20030313, 3.39, -0.94, -0.61, 0.005 +20030314, 0.13, -0.50, 0.14, 0.005 +20030317, 3.41, -0.83, -0.25, 0.005 +20030318, 0.44, 0.48, -0.65, 0.005 +20030319, 0.72, -0.45, -0.23, 0.005 +20030320, 0.28, 0.09, 0.37, 0.005 +20030321, 2.19, -0.85, -0.05, 0.005 +20030324, -3.36, 1.24, 0.18, 0.005 +20030325, 1.21, -0.08, -0.03, 0.005 +20030326, -0.55, -0.17, -0.28, 0.005 +20030327, -0.09, 0.65, -0.01, 0.005 +20030328, -0.48, 0.29, 0.22, 0.005 +20030331, -1.65, 0.73, 0.42, 0.005 +20030401, 1.12, -0.25, 0.24, 0.005 +20030402, 2.60, -0.37, -0.86, 0.005 +20030403, -0.49, 0.40, 0.02, 0.005 +20030404, 0.15, -0.73, 0.39, 0.005 +20030407, 0.18, 0.38, 0.57, 0.005 +20030408, -0.24, -0.29, 0.09, 0.005 +20030409, -1.28, 0.47, 0.77, 0.005 +20030410, 0.52, -0.24, -0.25, 0.005 +20030411, -0.32, 0.01, -0.05, 0.005 +20030414, 1.88, -0.46, 0.00, 0.005 +20030415, 0.62, 0.08, -0.39, 0.005 +20030416, -1.11, 0.55, 0.18, 0.005 +20030417, 1.52, 0.02, -0.03, 0.005 +20030421, -0.11, 0.35, 0.12, 0.005 +20030422, 2.07, -0.90, 0.23, 0.005 +20030423, 0.89, -0.27, 0.31, 0.005 +20030424, -0.81, 0.58, -0.23, 0.005 +20030425, -1.30, 0.66, -0.11, 0.005 +20030428, 1.76, -0.05, -0.11, 0.005 +20030429, 0.34, -0.21, -0.20, 0.005 +20030430, 0.03, 0.73, 0.25, 0.005 +20030501, -0.03, 0.43, -0.26, 0.004 +20030502, 1.56, 0.52, -0.49, 0.004 +20030505, -0.19, 0.82, -0.38, 0.004 +20030506, 0.80, -0.18, 0.04, 0.004 +20030507, -0.46, -0.05, 0.58, 0.004 +20030508, -0.99, 0.50, 0.14, 0.004 +20030509, 1.39, 0.12, -0.22, 0.004 +20030512, 1.25, -0.12, -0.10, 0.004 +20030513, -0.23, 0.47, 0.30, 0.004 +20030514, -0.23, 0.29, 0.01, 0.004 +20030515, 0.74, -0.10, -0.14, 0.004 +20030516, -0.31, -1.58, 1.01, 0.004 +20030519, -2.30, 0.80, 0.04, 0.004 +20030520, -0.12, 0.11, -0.11, 0.004 +20030521, 0.41, -0.22, 0.31, 0.004 +20030522, 0.96, -0.18, -0.07, 0.004 +20030523, 0.26, 0.27, 0.40, 0.004 +20030527, 1.95, 0.45, -1.05, 0.004 +20030528, 0.22, 0.69, -0.41, 0.004 +20030529, -0.26, 1.02, 0.07, 0.004 +20030530, 1.53, 0.26, 0.10, 0.004 +20030602, 0.39, -0.40, 0.75, 0.005 +20030603, 0.39, 0.15, -0.57, 0.005 +20030604, 1.56, 0.13, -0.04, 0.005 +20030605, 0.55, 0.89, -0.74, 0.005 +20030606, -0.33, -0.17, -0.30, 0.005 +20030609, -1.31, -0.20, 0.18, 0.005 +20030610, 0.95, 0.39, 0.10, 0.005 +20030611, 1.29, -0.48, 0.38, 0.005 +20030612, 0.18, 0.05, 0.34, 0.005 +20030613, -1.02, -0.18, 0.12, 0.005 +20030616, 2.15, -0.39, -0.48, 0.005 +20030617, 0.13, 0.21, -0.12, 0.005 +20030618, -0.15, 0.31, -0.23, 0.005 +20030619, -1.49, 0.05, 0.74, 0.005 +20030620, 0.05, -0.19, 0.10, 0.005 +20030623, -1.52, -0.60, 0.23, 0.005 +20030624, 0.19, 0.07, 0.13, 0.005 +20030625, -0.60, 1.06, -0.08, 0.005 +20030626, 1.12, 0.42, -0.51, 0.005 +20030627, -0.84, 0.58, 0.19, 0.005 +20030630, -0.17, -0.11, 0.43, 0.005 +20030701, 0.73, -0.39, -0.15, 0.003 +20030702, 1.28, 1.07, 0.05, 0.003 +20030703, -0.72, 0.26, -0.08, 0.003 +20030707, 1.91, -0.10, 0.27, 0.003 +20030708, 0.51, 1.31, -0.04, 0.003 +20030709, -0.34, 1.02, 0.26, 0.003 +20030710, -1.33, -0.07, -0.22, 0.003 +20030711, 0.92, 0.07, -0.06, 0.003 +20030714, 0.73, 0.18, 0.13, 0.003 +20030715, -0.41, 0.08, -0.04, 0.003 +20030716, -0.64, 0.25, -0.27, 0.003 +20030717, -1.45, -1.26, -0.40, 0.003 +20030718, 1.08, -0.17, 0.02, 0.003 +20030721, -1.42, 0.04, -0.38, 0.003 +20030722, 0.97, 0.32, 0.34, 0.003 +20030723, 0.18, 0.62, -1.00, 0.003 +20030724, -0.65, 0.31, 0.38, 0.003 +20030725, 1.51, -0.64, -0.24, 0.003 +20030728, -0.02, 0.98, 0.36, 0.003 +20030729, -0.57, 0.54, 0.02, 0.003 +20030730, -0.18, 0.27, -0.61, 0.003 +20030731, 0.32, 0.26, 0.40, 0.003 +20030801, -1.06, -0.49, -0.06, 0.003 +20030804, 0.11, -0.66, -0.31, 0.003 +20030805, -1.71, 0.38, 0.02, 0.003 +20030806, 0.02, -1.03, 0.46, 0.003 +20030807, 0.57, -0.49, -0.47, 0.003 +20030808, 0.33, -0.46, 0.15, 0.003 +20030811, 0.43, 0.72, -0.03, 0.003 +20030812, 1.09, 0.51, 0.05, 0.003 +20030813, -0.50, 0.69, 0.06, 0.003 +20030814, 0.62, 0.11, 0.44, 0.003 +20030815, 0.10, 0.19, -0.14, 0.003 +20030818, 1.03, 0.85, 0.09, 0.003 +20030819, 0.43, 0.99, 0.61, 0.003 +20030820, -0.14, 0.34, 0.06, 0.003 +20030821, 0.47, 0.61, 0.42, 0.003 +20030822, -1.06, -0.57, 0.12, 0.003 +20030825, -0.04, -0.07, -0.31, 0.003 +20030826, 0.29, 0.16, 0.18, 0.003 +20030827, 0.17, 0.82, 0.06, 0.003 +20030828, 0.70, 0.26, 0.22, 0.003 +20030829, 0.53, -0.32, 0.33, 0.003 +20030902, 1.40, 0.48, 0.02, 0.004 +20030903, 0.42, 0.32, 0.14, 0.004 +20030904, 0.22, 0.46, -0.17, 0.004 +20030905, -0.62, -0.05, 0.20, 0.004 +20030908, 1.07, 0.62, -0.12, 0.004 +20030909, -0.79, 0.33, -0.22, 0.004 +20030910, -1.37, -0.64, -0.60, 0.004 +20030911, 0.62, 0.64, 0.03, 0.004 +20030912, 0.23, 0.15, 0.16, 0.004 +20030915, -0.35, 0.24, -0.08, 0.004 +20030916, 1.40, 0.10, 0.06, 0.004 +20030917, -0.26, 0.19, 0.18, 0.004 +20030918, 1.25, -0.56, 0.25, 0.004 +20030919, -0.23, 0.49, 0.02, 0.004 +20030922, -1.30, 0.16, 0.14, 0.004 +20030923, 0.65, 0.57, -0.10, 0.004 +20030924, -1.88, -0.20, 0.08, 0.004 +20030925, -0.81, -1.65, -0.21, 0.004 +20030926, -0.84, -1.26, 0.04, 0.004 +20030929, 0.98, 0.52, 0.02, 0.004 +20030930, -0.96, -0.05, 0.14, 0.004 +20031001, 2.16, 0.38, 0.09, 0.003 +20031002, 0.31, 0.15, 0.07, 0.003 +20031003, 1.02, 0.69, -0.01, 0.003 +20031006, 0.49, 0.37, 0.36, 0.003 +20031007, 0.51, 0.34, 0.10, 0.003 +20031008, -0.48, -0.29, 0.19, 0.003 +20031009, 0.55, 0.27, 0.38, 0.003 +20031010, -0.08, -0.43, 0.41, 0.003 +20031013, 0.81, 0.79, 0.09, 0.003 +20031014, 0.44, 0.48, 0.16, 0.003 +20031015, -0.36, -0.28, -0.05, 0.003 +20031016, 0.35, 0.10, 0.04, 0.003 +20031017, -1.11, -0.52, 0.05, 0.003 +20031020, 0.41, -0.11, -0.25, 0.003 +20031021, 0.24, 0.68, -0.31, 0.003 +20031022, -1.52, -0.68, -0.02, 0.003 +20031023, 0.22, -0.74, -0.22, 0.003 +20031024, -0.45, -0.41, -0.01, 0.003 +20031027, 0.40, 1.16, 0.30, 0.003 +20031028, 1.59, 0.50, -0.22, 0.003 +20031029, 0.28, 0.79, 0.32, 0.003 +20031030, -0.11, -0.12, 0.27, 0.003 +20031031, 0.28, -0.56, -0.09, 0.003 +20031103, 0.93, 0.68, 0.41, 0.004 +20031104, -0.45, 0.74, 0.41, 0.004 +20031105, -0.04, 0.23, -0.09, 0.004 +20031106, 0.58, 0.11, 0.10, 0.004 +20031107, -0.33, 0.36, 0.30, 0.004 +20031110, -0.74, -1.02, -0.02, 0.004 +20031111, -0.21, -0.59, -0.10, 0.004 +20031112, 1.33, 1.00, -0.21, 0.004 +20031113, 0.03, 0.20, -0.21, 0.004 +20031114, -0.83, -0.62, -0.07, 0.004 +20031117, -0.72, -0.67, -0.19, 0.004 +20031118, -0.87, 0.12, 0.09, 0.004 +20031119, 0.76, 0.06, -0.02, 0.004 +20031120, -0.77, 0.13, 0.03, 0.004 +20031121, 0.21, 0.16, 0.59, 0.004 +20031124, 1.71, 0.74, -0.03, 0.004 +20031125, 0.31, 0.24, 0.60, 0.004 +20031126, 0.40, -0.07, 0.41, 0.004 +20031128, 0.11, 0.26, -0.17, 0.004 +20031201, 1.11, 0.40, -0.12, 0.004 +20031202, -0.27, 0.13, 0.13, 0.004 +20031203, -0.34, -1.19, 0.42, 0.004 +20031204, 0.26, -0.41, -0.23, 0.004 +20031205, -0.79, -0.06, -0.07, 0.004 +20031208, 0.65, -0.17, 0.36, 0.004 +20031209, -0.95, -0.60, 0.19, 0.004 +20031210, -0.29, -1.02, -0.24, 0.004 +20031211, 1.34, 1.23, 0.15, 0.004 +20031212, 0.31, 0.55, 0.30, 0.004 +20031215, -0.73, -1.39, 0.15, 0.004 +20031216, 0.50, -0.31, 0.02, 0.004 +20031217, 0.15, -0.05, -0.10, 0.004 +20031218, 1.24, 0.27, 0.22, 0.004 +20031219, -0.04, -0.13, 0.40, 0.004 +20031222, 0.36, -0.09, 0.46, 0.004 +20031223, 0.36, 0.70, -0.06, 0.004 +20031224, -0.18, -0.24, 0.12, 0.004 +20031226, 0.19, 0.34, 0.06, 0.004 +20031229, 1.29, 0.36, -0.04, 0.004 +20031230, 0.05, 0.24, 0.15, 0.004 +20031231, 0.01, -1.39, 0.02, 0.004 +20040102, -0.17, 0.82, 0.42, 0.003 +20040105, 1.20, 0.42, 0.01, 0.003 +20040106, 0.20, 0.09, 0.18, 0.003 +20040107, 0.34, 0.54, -0.06, 0.003 +20040108, 0.45, 0.36, 0.63, 0.003 +20040109, -0.72, 0.04, 0.20, 0.003 +20040112, 0.57, 0.93, 0.08, 0.003 +20040113, -0.51, 0.19, 0.10, 0.003 +20040114, 0.80, -0.07, 0.41, 0.003 +20040115, 0.15, 0.03, -0.28, 0.003 +20040116, 0.72, 0.10, 0.56, 0.003 +20040120, 0.15, 1.18, 0.58, 0.003 +20040121, 0.64, -1.08, 0.46, 0.003 +20040122, -0.32, -0.63, 0.05, 0.003 +20040123, -0.14, 0.93, -0.27, 0.003 +20040126, 1.12, -0.10, -0.33, 0.003 +20040127, -0.96, -0.03, 0.04, 0.003 +20040128, -1.44, -0.35, -0.44, 0.003 +20040129, 0.25, -0.96, -0.85, 0.003 +20040130, -0.15, 0.31, 0.37, 0.003 +20040202, 0.27, -0.31, -0.26, 0.003 +20040203, 0.00, -0.13, -0.16, 0.003 +20040204, -0.97, -1.56, -0.52, 0.003 +20040205, 0.23, 0.45, 0.25, 0.003 +20040206, 1.39, 1.05, 0.35, 0.003 +20040209, -0.10, 0.36, 0.21, 0.003 +20040210, 0.56, 0.58, 0.14, 0.003 +20040211, 1.04, -0.39, 0.18, 0.003 +20040212, -0.46, -0.12, -0.15, 0.003 +20040213, -0.57, -0.71, -0.18, 0.003 +20040217, 0.98, 0.35, 0.55, 0.003 +20040218, -0.39, -0.09, 0.04, 0.003 +20040219, -0.54, -1.03, -0.07, 0.003 +20040220, -0.30, -0.10, -0.36, 0.003 +20040223, -0.51, -1.21, -0.11, 0.003 +20040224, -0.14, 0.34, -0.27, 0.003 +20040225, 0.54, 0.50, 0.15, 0.003 +20040226, 0.29, 0.48, 0.34, 0.003 +20040227, 0.11, 0.19, 0.36, 0.003 +20040301, 1.02, 0.52, 0.26, 0.004 +20040302, -0.59, -0.12, 0.18, 0.004 +20040303, 0.14, -0.17, -0.20, 0.004 +20040304, 0.44, 0.81, 0.21, 0.004 +20040305, 0.24, -0.12, -0.21, 0.004 +20040308, -0.84, -0.35, 0.23, 0.004 +20040309, -0.66, -0.44, -0.34, 0.004 +20040310, -1.50, -0.28, -0.46, 0.004 +20040311, -1.42, 0.35, -0.13, 0.004 +20040312, 1.34, 1.02, 0.21, 0.004 +20040315, -1.56, -1.09, -0.24, 0.004 +20040316, 0.43, -0.63, -0.12, 0.004 +20040317, 1.22, 0.70, 0.45, 0.004 +20040318, -0.20, -0.53, 0.13, 0.004 +20040319, -1.00, 0.33, 0.26, 0.004 +20040322, -1.42, -0.66, -0.20, 0.004 +20040323, -0.09, 0.36, 0.04, 0.004 +20040324, -0.27, -0.08, -0.14, 0.004 +20040325, 1.68, 0.77, -0.29, 0.004 +20040326, 0.00, 0.33, 0.39, 0.004 +20040329, 1.34, 0.59, -0.21, 0.004 +20040330, 0.47, 0.43, 0.23, 0.004 +20040331, 0.00, 0.14, 0.18, 0.004 +20040401, 0.64, 0.27, 0.00, 0.004 +20040402, 0.90, 0.82, 0.08, 0.004 +20040405, 0.79, 0.10, -0.30, 0.004 +20040406, -0.28, -0.77, 0.21, 0.004 +20040407, -0.50, 0.92, -0.18, 0.004 +20040408, -0.14, -0.31, 0.11, 0.004 +20040412, 0.50, 0.24, -0.29, 0.004 +20040413, -1.50, -0.57, -0.39, 0.004 +20040414, -0.21, -0.30, -0.44, 0.004 +20040415, -0.04, -0.24, -0.38, 0.004 +20040416, 0.46, -0.06, 0.17, 0.004 +20040419, 0.22, 0.52, -0.35, 0.004 +20040420, -1.48, -0.29, 0.13, 0.004 +20040421, 0.60, 0.48, 0.08, 0.004 +20040422, 1.44, 0.09, 0.05, 0.004 +20040423, -0.01, -0.28, -0.08, 0.004 +20040426, -0.33, -0.06, -0.26, 0.004 +20040427, 0.13, -0.09, -0.06, 0.004 +20040428, -1.46, -0.92, -0.13, 0.004 +20040429, -0.86, -0.81, -0.65, 0.004 +20040430, -0.66, -0.84, 0.00, 0.004 +20040503, 0.85, 0.00, -0.40, 0.003 +20040504, 0.21, 0.43, 0.16, 0.003 +20040505, 0.27, -0.11, -0.25, 0.003 +20040506, -0.80, -0.36, -0.21, 0.003 +20040507, -1.48, -0.65, -0.55, 0.003 +20040510, -1.29, -0.53, -0.47, 0.003 +20040511, 0.95, 0.85, 0.15, 0.003 +20040512, 0.12, -0.22, -0.01, 0.003 +20040513, -0.08, -0.25, 0.02, 0.003 +20040514, -0.17, -0.62, -0.03, 0.003 +20040517, -1.13, -0.41, -0.35, 0.003 +20040518, 0.76, 0.34, 0.35, 0.003 +20040519, -0.19, 0.03, 0.47, 0.003 +20040520, 0.02, -0.13, 0.12, 0.003 +20040521, 0.44, 0.44, -0.01, 0.003 +20040524, 0.29, 0.67, 0.57, 0.003 +20040525, 1.66, 0.56, 0.05, 0.003 +20040526, 0.29, 0.14, 0.02, 0.003 +20040527, 0.51, -0.29, -0.09, 0.003 +20040528, 0.02, -0.03, 0.09, 0.003 +20040601, 0.14, 0.66, -0.03, 0.004 +20040602, 0.31, -0.23, -0.15, 0.004 +20040603, -0.90, -0.96, -0.06, 0.004 +20040604, 0.57, 0.38, 0.05, 0.004 +20040607, 1.57, 0.17, 0.33, 0.004 +20040608, 0.08, -0.17, -0.05, 0.004 +20040609, -1.04, -0.51, 0.03, 0.004 +20040610, 0.36, -0.30, 0.39, 0.004 +20040614, -1.05, -0.57, -0.55, 0.004 +20040615, 0.71, 1.04, 0.22, 0.004 +20040616, 0.14, 0.20, 0.06, 0.004 +20040617, -0.14, 0.00, 0.12, 0.004 +20040618, 0.19, -0.20, 0.22, 0.004 +20040621, -0.42, 0.10, 0.16, 0.004 +20040622, 0.38, 0.22, 0.05, 0.004 +20040623, 0.90, 0.53, 0.20, 0.004 +20040624, -0.23, 0.02, 0.15, 0.004 +20040625, -0.23, 1.24, 0.08, 0.004 +20040628, -0.25, -0.06, -0.15, 0.004 +20040629, 0.31, 0.57, -0.04, 0.004 +20040630, 0.48, 0.11, 0.30, 0.004 +20040701, -1.06, -0.51, 0.56, 0.005 +20040702, -0.28, 0.19, 0.37, 0.005 +20040706, -0.94, -0.88, 1.03, 0.005 +20040707, 0.15, -0.33, 0.24, 0.005 +20040708, -0.96, -0.94, 0.27, 0.005 +20040709, 0.31, 0.16, -0.13, 0.005 +20040712, 0.04, -0.48, 0.39, 0.005 +20040713, 0.09, 0.06, 0.14, 0.005 +20040714, -0.33, -0.34, 0.50, 0.005 +20040715, -0.32, 0.64, 0.06, 0.005 +20040716, -0.56, -0.73, 0.65, 0.005 +20040719, -0.12, -0.24, 0.59, 0.005 +20040720, 0.83, 0.91, -0.80, 0.005 +20040721, -1.49, -1.21, 0.75, 0.005 +20040722, 0.14, -0.47, -0.54, 0.005 +20040723, -1.03, -0.45, 0.83, 0.005 +20040726, -0.39, -0.71, 0.26, 0.005 +20040727, 1.10, 1.00, -0.50, 0.005 +20040728, -0.09, -0.63, 0.37, 0.005 +20040729, 0.66, 0.90, -0.49, 0.005 +20040730, 0.14, 0.19, -0.32, 0.005 +20040802, 0.36, -0.44, 0.28, 0.005 +20040803, -0.75, -0.87, 0.81, 0.005 +20040804, -0.20, 0.04, 0.02, 0.005 +20040805, -1.63, -0.22, 0.48, 0.005 +20040806, -1.59, -0.90, 0.73, 0.005 +20040809, 0.02, -0.38, 0.01, 0.005 +20040810, 1.39, 0.75, -0.37, 0.005 +20040811, -0.29, -0.39, 0.14, 0.005 +20040812, -1.18, -0.50, 0.27, 0.005 +20040813, 0.10, -0.05, 0.04, 0.005 +20040816, 1.40, 0.38, 0.04, 0.005 +20040817, 0.30, 0.12, -0.60, 0.005 +20040818, 1.34, 0.75, -0.78, 0.005 +20040819, -0.38, -0.26, 0.24, 0.005 +20040820, 0.79, 0.90, -0.30, 0.005 +20040823, -0.32, -0.37, -0.31, 0.005 +20040824, 0.03, 0.16, 0.15, 0.005 +20040825, 0.84, 0.14, -0.51, 0.005 +20040826, -0.05, -0.49, 0.39, 0.005 +20040827, 0.33, 0.50, -0.22, 0.005 +20040830, -0.86, -0.45, 0.37, 0.005 +20040831, 0.48, 0.04, 0.15, 0.005 +20040901, 0.30, 0.56, -0.40, 0.005 +20040902, 1.09, 0.27, -0.16, 0.005 +20040903, -0.45, -0.25, 0.42, 0.005 +20040907, 0.73, 0.32, 0.03, 0.005 +20040908, -0.48, -0.34, 0.01, 0.005 +20040909, 0.34, 1.22, -0.37, 0.005 +20040910, 0.53, 0.14, -0.65, 0.005 +20040913, 0.30, 0.41, -0.48, 0.005 +20040914, 0.19, -0.45, -0.17, 0.005 +20040915, -0.67, 0.17, 0.32, 0.005 +20040916, 0.36, 0.44, 0.35, 0.005 +20040917, 0.35, -0.54, -0.01, 0.005 +20040920, -0.51, 0.19, 0.07, 0.005 +20040921, 0.66, 0.36, -0.08, 0.005 +20040922, -1.37, -0.47, 0.55, 0.005 +20040923, -0.37, 0.39, -0.08, 0.005 +20040924, 0.14, -0.20, 0.36, 0.005 +20040927, -0.71, -0.63, 0.36, 0.005 +20040928, 0.63, 0.64, -0.23, 0.005 +20040929, 0.50, 0.67, -0.66, 0.005 +20040930, 0.06, 0.10, 0.52, 0.005 +20041001, 1.48, 0.57, -0.14, 0.005 +20041004, 0.38, 0.35, -0.16, 0.005 +20041005, -0.11, -0.18, 0.09, 0.005 +20041006, 0.69, 0.12, 0.14, 0.005 +20041007, -1.05, -0.61, 0.30, 0.005 +20041008, -0.80, -0.50, 0.62, 0.005 +20041011, 0.23, 0.20, -0.45, 0.005 +20041012, -0.23, -0.06, 0.27, 0.005 +20041013, -0.75, -0.36, -0.37, 0.005 +20041014, -0.92, 0.09, -0.34, 0.005 +20041015, 0.45, 0.27, 0.05, 0.005 +20041018, 0.51, 0.01, -0.79, 0.005 +20041019, -0.92, 0.14, -0.53, 0.005 +20041020, 0.11, 0.49, -0.13, 0.005 +20041021, 0.37, 0.76, -0.06, 0.005 +20041022, -1.00, -0.59, 0.64, 0.005 +20041025, -0.03, 0.66, 0.50, 0.005 +20041026, 1.36, -0.60, 0.65, 0.005 +20041027, 1.39, 0.38, -1.13, 0.005 +20041028, 0.13, -0.34, -0.06, 0.005 +20041029, 0.18, -0.53, 0.24, 0.005 +20041101, 0.06, 0.37, 0.05, 0.007 +20041102, -0.01, -0.15, -0.01, 0.007 +20041103, 1.17, 0.45, -0.05, 0.007 +20041104, 1.51, -0.65, 0.28, 0.007 +20041105, 0.44, 0.28, -0.32, 0.007 +20041108, -0.13, -0.26, 0.03, 0.007 +20041109, 0.05, 0.69, -0.03, 0.007 +20041110, -0.01, 0.47, 0.28, 0.007 +20041111, 0.90, 0.10, -0.22, 0.007 +20041112, 0.86, -0.02, -0.09, 0.007 +20041115, 0.07, 0.34, -0.26, 0.007 +20041116, -0.66, -0.18, 0.30, 0.007 +20041117, 0.64, 0.32, -0.10, 0.007 +20041118, 0.05, -0.18, 0.05, 0.007 +20041119, -1.11, -0.17, 0.74, 0.007 +20041122, 0.60, 0.47, 0.36, 0.007 +20041123, 0.06, 0.30, 0.35, 0.007 +20041124, 0.47, 0.31, 0.13, 0.007 +20041126, 0.12, 0.17, 0.30, 0.007 +20041129, -0.21, 0.86, -0.15, 0.007 +20041130, -0.37, 0.16, 0.11, 0.007 +20041201, 1.48, 0.06, -0.75, 0.007 +20041202, -0.07, 0.11, -0.57, 0.007 +20041203, 0.04, -0.17, 0.11, 0.007 +20041206, -0.13, -0.40, -0.07, 0.007 +20041207, -1.16, -0.90, 0.36, 0.007 +20041208, 0.46, 0.42, -0.41, 0.007 +20041209, 0.44, -0.75, 0.14, 0.007 +20041210, -0.01, 0.46, 0.19, 0.007 +20041213, 0.86, -0.03, -0.04, 0.007 +20041214, 0.45, 0.51, -0.20, 0.007 +20041215, 0.33, 0.39, 0.47, 0.007 +20041216, -0.28, -0.44, 0.34, 0.007 +20041217, -0.55, 0.49, 0.45, 0.007 +20041220, -0.13, -0.59, 0.39, 0.007 +20041221, 0.92, 0.26, -0.05, 0.007 +20041222, 0.39, 0.04, -0.15, 0.007 +20041223, 0.09, 0.21, -0.21, 0.007 +20041227, -0.45, -0.21, 0.01, 0.007 +20041228, 0.83, 0.76, -0.16, 0.007 +20041229, 0.01, -0.05, -0.03, 0.007 +20041230, 0.04, -0.03, -0.11, 0.007 +20041231, -0.14, -0.01, 0.20, 0.007 +20050103, -0.97, -0.62, -0.04, 0.008 +20050104, -1.30, -0.58, 0.44, 0.008 +20050105, -0.51, -1.11, 0.00, 0.008 +20050106, 0.34, -0.14, 0.13, 0.008 +20050107, -0.22, -0.76, -0.02, 0.008 +20050110, 0.42, 0.27, 0.04, 0.008 +20050111, -0.68, -0.35, 0.30, 0.008 +20050112, 0.38, -0.04, -0.16, 0.008 +20050113, -0.77, 0.13, 0.38, 0.008 +20050114, 0.66, 0.55, 0.07, 0.008 +20050118, 0.97, 0.16, -0.18, 0.008 +20050119, -0.97, -0.13, 0.48, 0.008 +20050120, -0.77, -0.12, -0.05, 0.008 +20050121, -0.56, 0.29, 0.25, 0.008 +20050124, -0.49, -0.79, 0.61, 0.008 +20050125, 0.34, 0.20, -0.37, 0.008 +20050126, 0.62, 0.95, -0.21, 0.008 +20050127, 0.08, 0.17, 0.04, 0.008 +20050128, -0.30, -0.26, 0.18, 0.008 +20050131, 0.97, 0.78, 0.16, 0.008 +20050201, 0.69, -0.09, 0.20, 0.009 +20050202, 0.36, 0.25, 0.17, 0.009 +20050203, -0.27, -0.17, 0.39, 0.009 +20050204, 1.12, 0.12, -0.56, 0.009 +20050207, -0.11, 0.14, -0.03, 0.009 +20050208, 0.08, 0.24, -0.17, 0.009 +20050209, -1.00, -1.18, 0.73, 0.009 +20050210, 0.35, -0.33, 0.05, 0.009 +20050211, 0.77, 0.43, -0.31, 0.009 +20050214, 0.09, -0.01, 0.14, 0.009 +20050215, 0.28, -0.36, -0.01, 0.009 +20050216, 0.07, 0.42, 0.40, 0.009 +20050217, -0.79, -0.30, 0.21, 0.009 +20050218, 0.01, -0.08, -0.05, 0.009 +20050222, -1.47, -0.31, -0.12, 0.009 +20050223, 0.53, -0.14, 0.25, 0.009 +20050224, 0.83, 0.24, -0.23, 0.009 +20050225, 0.97, 0.39, 0.38, 0.009 +20050228, -0.61, 0.27, 0.04, 0.009 +20050301, 0.58, 0.11, 0.02, 0.010 +20050302, -0.01, -0.18, 0.05, 0.010 +20050303, -0.01, 0.09, 0.55, 0.010 +20050304, 0.89, -0.03, 0.32, 0.010 +20050307, 0.27, -0.37, 0.01, 0.010 +20050308, -0.54, -0.40, -0.06, 0.010 +20050309, -0.96, 0.06, -0.07, 0.010 +20050310, 0.01, -0.83, -0.22, 0.010 +20050311, -0.55, 0.56, 0.52, 0.010 +20050314, 0.61, -0.22, 0.11, 0.010 +20050315, -0.67, 0.20, 0.27, 0.010 +20050316, -0.84, 0.22, 0.12, 0.010 +20050317, 0.19, 0.05, 0.52, 0.010 +20050318, -0.13, -0.31, -0.04, 0.010 +20050321, -0.38, 0.37, -0.20, 0.010 +20050322, -0.92, 0.70, -0.11, 0.010 +20050323, -0.12, -0.90, -0.50, 0.010 +20050324, 0.01, 0.45, -0.08, 0.010 +20050328, 0.15, -0.23, -0.03, 0.010 +20050329, -0.86, -0.83, 0.07, 0.010 +20050330, 1.35, 0.12, -0.21, 0.010 +20050331, 0.00, -0.05, 0.64, 0.010 +20050401, -0.64, 0.01, 0.42, 0.010 +20050404, 0.29, 0.00, 0.19, 0.010 +20050405, 0.40, -0.14, -0.25, 0.010 +20050406, 0.22, -0.11, 0.03, 0.010 +20050407, 0.57, 0.01, -0.17, 0.010 +20050408, -0.88, -0.45, 0.04, 0.010 +20050411, -0.09, -0.64, 0.02, 0.010 +20050412, 0.56, 0.24, -0.09, 0.010 +20050413, -1.22, -0.34, -0.17, 0.010 +20050414, -1.10, -0.56, -0.26, 0.010 +20050415, -1.59, -0.12, -0.38, 0.010 +20050418, 0.29, 0.32, 0.23, 0.010 +20050419, 0.75, 0.83, 0.13, 0.010 +20050420, -1.35, -0.23, 0.05, 0.010 +20050421, 1.87, 0.32, -0.56, 0.010 +20050422, -0.83, -0.84, 0.43, 0.010 +20050425, 0.93, 0.06, 0.01, 0.010 +20050426, -0.88, -0.52, -0.13, 0.010 +20050427, 0.30, -0.54, -0.24, 0.010 +20050428, -1.20, -0.99, 0.37, 0.010 +20050429, 1.04, -0.39, -0.02, 0.010 +20050502, 0.52, 0.47, 0.06, 0.011 +20050503, -0.04, -0.01, -0.31, 0.011 +20050504, 1.28, 0.26, 0.41, 0.011 +20050505, -0.19, 0.30, -0.39, 0.011 +20050506, -0.03, 0.33, 0.16, 0.011 +20050509, 0.61, 0.31, -0.04, 0.011 +20050510, -1.03, -0.15, 0.02, 0.011 +20050511, 0.39, -0.41, -0.13, 0.011 +20050512, -1.02, -0.18, -0.75, 0.011 +20050513, -0.50, -0.07, -0.67, 0.011 +20050516, 1.03, 0.49, -0.17, 0.011 +20050517, 0.66, -0.23, 0.29, 0.011 +20050518, 1.15, 0.95, -0.26, 0.011 +20050519, 0.47, -0.10, -0.08, 0.011 +20050520, -0.13, -0.04, 0.25, 0.011 +20050523, 0.43, 0.20, -0.02, 0.011 +20050524, 0.05, 0.01, 0.00, 0.011 +20050525, -0.44, -0.57, 0.19, 0.011 +20050526, 0.74, 0.65, 0.08, 0.011 +20050527, 0.18, 0.10, 0.31, 0.011 +20050531, -0.49, 0.47, 0.28, 0.011 +20050601, 0.90, 0.18, 0.00, 0.010 +20050602, 0.24, 0.14, -0.24, 0.010 +20050603, -0.67, -0.20, 0.48, 0.010 +20050606, 0.14, 0.32, 0.13, 0.010 +20050607, -0.03, 0.15, 0.09, 0.010 +20050608, -0.28, -0.39, 0.36, 0.010 +20050609, 0.58, 0.32, -0.12, 0.010 +20050610, -0.21, 0.11, 0.54, 0.010 +20050613, 0.28, 0.14, 0.17, 0.010 +20050614, 0.31, 0.49, 0.39, 0.010 +20050615, 0.22, 0.23, 0.21, 0.010 +20050616, 0.46, 0.62, -0.29, 0.010 +20050617, 0.36, -0.60, 0.20, 0.010 +20050620, -0.07, -0.32, 0.09, 0.010 +20050621, -0.18, 0.11, -0.05, 0.010 +20050622, 0.05, 0.28, -0.09, 0.010 +20050623, -1.07, -0.43, 0.13, 0.010 +20050624, -0.72, -0.05, 0.12, 0.010 +20050627, -0.07, -0.12, 0.55, 0.010 +20050628, 1.05, 1.10, -0.51, 0.010 +20050629, -0.07, 0.30, 0.12, 0.010 +20050630, -0.63, 0.20, 0.27, 0.010 +20050701, 0.32, 0.11, 0.30, 0.012 +20050705, 0.92, 0.58, -0.19, 0.012 +20050706, -0.73, 0.07, 0.07, 0.012 +20050707, 0.26, -0.11, -0.24, 0.012 +20050708, 1.21, 0.78, -0.55, 0.012 +20050711, 0.69, 0.79, -0.13, 0.012 +20050712, 0.20, -0.28, -0.04, 0.012 +20050713, 0.02, -0.41, 0.07, 0.012 +20050714, 0.14, -0.67, -0.44, 0.012 +20050715, 0.12, -0.03, -0.03, 0.012 +20050718, -0.55, -0.15, 0.10, 0.012 +20050719, 0.75, 0.91, -0.11, 0.012 +20050720, 0.54, 0.78, -0.26, 0.012 +20050721, -0.74, -0.61, 0.15, 0.012 +20050722, 0.57, 0.94, 0.54, 0.012 +20050725, -0.47, -0.51, 0.13, 0.012 +20050726, 0.21, 0.28, 0.22, 0.012 +20050727, 0.43, -0.37, -0.04, 0.012 +20050728, 0.67, 0.53, -0.18, 0.012 +20050729, -0.66, 0.24, 0.12, 0.012 +20050801, 0.15, 0.27, -0.12, 0.013 +20050802, 0.70, 0.05, 0.11, 0.013 +20050803, -0.02, -0.66, -0.04, 0.013 +20050804, -0.82, -0.84, 0.35, 0.013 +20050805, -0.81, -0.32, -0.02, 0.013 +20050808, -0.32, 0.01, 0.25, 0.013 +20050809, 0.55, -0.48, -0.07, 0.013 +20050810, -0.13, 0.02, 0.16, 0.013 +20050811, 0.71, 0.19, -0.08, 0.013 +20050812, -0.57, -0.39, 0.11, 0.013 +20050815, 0.30, 0.47, -0.14, 0.013 +20050816, -1.22, -0.46, 0.17, 0.013 +20050817, 0.05, 0.01, -0.06, 0.013 +20050818, -0.15, -0.43, 0.05, 0.013 +20050819, 0.07, 0.07, 0.17, 0.013 +20050822, 0.19, 0.50, 0.15, 0.013 +20050823, -0.31, -0.02, 0.01, 0.013 +20050824, -0.56, 0.46, 0.13, 0.013 +20050825, 0.21, 0.13, 0.20, 0.013 +20050826, -0.66, -0.57, -0.09, 0.013 +20050829, 0.65, 0.38, -0.22, 0.013 +20050830, -0.31, -0.03, 0.34, 0.013 +20050831, 1.10, 0.72, -0.06, 0.013 +20050901, 0.13, -0.03, 0.24, 0.014 +20050902, -0.36, -0.30, -0.01, 0.014 +20050906, 1.22, 0.30, -0.49, 0.014 +20050907, 0.30, 0.08, -0.14, 0.014 +20050908, -0.40, -0.12, -0.05, 0.014 +20050909, 0.73, -0.10, 0.14, 0.014 +20050912, 0.00, 0.54, -0.34, 0.014 +20050913, -0.76, -0.21, 0.13, 0.014 +20050914, -0.44, -0.67, 0.42, 0.014 +20050915, -0.02, -0.26, 0.30, 0.014 +20050916, 0.72, 0.15, -0.10, 0.014 +20050919, -0.55, -0.17, 0.22, 0.014 +20050920, -0.78, -0.11, 0.04, 0.014 +20050921, -1.03, -0.49, 0.30, 0.014 +20050922, 0.30, -0.07, -0.24, 0.014 +20050923, 0.15, 0.53, 0.19, 0.014 +20050926, 0.12, 0.53, 0.07, 0.014 +20050927, -0.02, -0.07, -0.09, 0.014 +20050928, 0.06, -0.60, 0.27, 0.014 +20050929, 0.92, 0.21, 0.04, 0.014 +20050930, 0.20, 0.32, -0.17, 0.014 +20051003, 0.00, 0.47, 0.01, 0.013 +20051004, -0.97, 0.22, -0.18, 0.013 +20051005, -1.63, -1.02, -0.25, 0.013 +20051006, -0.57, -0.34, 0.10, 0.013 +20051007, 0.42, 0.32, 0.25, 0.013 +20051010, -0.73, -0.07, -0.22, 0.013 +20051011, -0.33, -0.97, 0.14, 0.013 +20051012, -0.79, -0.54, 0.10, 0.013 +20051013, -0.09, 0.45, -0.55, 0.013 +20051014, 0.92, 0.50, -0.10, 0.013 +20051017, 0.29, -0.34, 0.12, 0.013 +20051018, -1.03, -0.02, -0.13, 0.013 +20051019, 1.45, 0.46, -0.19, 0.013 +20051020, -1.44, 0.01, -0.37, 0.013 +20051021, 0.32, 0.38, 0.24, 0.013 +20051024, 1.70, 0.15, 0.29, 0.013 +20051025, -0.30, -0.32, 0.09, 0.013 +20051026, -0.46, -0.23, 0.18, 0.013 +20051027, -1.24, -1.04, 0.42, 0.013 +20051028, 1.55, -0.03, 0.27, 0.013 +20051031, 0.96, 0.79, 0.03, 0.013 +20051101, -0.27, -0.23, 0.39, 0.015 +20051102, 1.15, 0.83, 0.00, 0.015 +20051103, 0.43, -0.11, -0.19, 0.015 +20051104, 0.01, 0.06, -0.28, 0.015 +20051107, 0.25, 0.22, -0.06, 0.015 +20051108, -0.37, -0.34, -0.04, 0.015 +20051109, 0.15, 0.25, -0.02, 0.015 +20051110, 0.80, -0.07, -0.60, 0.015 +20051111, 0.27, -0.03, -0.12, 0.015 +20051114, -0.10, -0.34, 0.05, 0.015 +20051115, -0.49, -0.65, -0.17, 0.015 +20051116, 0.11, -0.35, 0.01, 0.015 +20051117, 1.06, 0.68, -0.09, 0.015 +20051118, 0.43, 0.27, -0.16, 0.015 +20051121, 0.60, 0.43, -0.35, 0.015 +20051122, 0.48, -0.04, -0.01, 0.015 +20051123, 0.31, -0.27, 0.22, 0.015 +20051125, 0.18, -0.11, -0.08, 0.015 +20051128, -1.01, -0.71, 0.22, 0.015 +20051129, 0.01, 0.28, 0.28, 0.015 +20051130, -0.43, 1.14, -0.16, 0.015 +20051201, 1.27, 0.52, 0.13, 0.015 +20051202, 0.05, 0.06, -0.14, 0.015 +20051205, -0.30, -0.22, 0.08, 0.015 +20051206, 0.12, 0.06, 0.06, 0.015 +20051207, -0.49, -0.07, 0.06, 0.015 +20051208, -0.03, 0.25, 0.07, 0.015 +20051209, 0.27, 0.22, 0.05, 0.015 +20051212, 0.10, 0.12, -0.05, 0.015 +20051213, 0.44, -0.53, -0.21, 0.015 +20051214, 0.34, -0.25, 0.08, 0.015 +20051215, -0.23, -0.57, -0.37, 0.015 +20051216, -0.29, 0.03, -0.04, 0.015 +20051219, -0.73, -0.81, 0.29, 0.015 +20051220, -0.02, -0.01, 0.02, 0.015 +20051221, 0.33, 0.66, -0.35, 0.015 +20051222, 0.45, 0.12, -0.02, 0.015 +20051223, 0.08, 0.29, 0.00, 0.015 +20051227, -1.00, -0.44, 0.17, 0.015 +20051228, 0.19, 0.40, 0.13, 0.015 +20051229, -0.27, -0.02, 0.21, 0.015 +20051230, -0.50, -0.22, 0.26, 0.015 +20060103, 1.50, -0.19, 0.13, 0.017 +20060104, 0.46, 0.34, 0.02, 0.017 +20060105, 0.03, 0.28, -0.15, 0.017 +20060106, 0.92, 0.09, -0.23, 0.017 +20060109, 0.45, 0.52, -0.10, 0.017 +20060110, 0.05, 0.58, 0.02, 0.017 +20060111, 0.28, -0.25, -0.11, 0.017 +20060112, -0.65, 0.09, -0.03, 0.017 +20060113, 0.17, 0.13, 0.06, 0.017 +20060117, -0.40, -0.32, 0.22, 0.017 +20060118, -0.35, 0.36, 0.30, 0.017 +20060119, 0.63, 0.93, -0.08, 0.017 +20060120, -1.80, 0.37, 0.51, 0.017 +20060123, 0.18, 0.20, 0.43, 0.017 +20060124, 0.44, 1.03, 0.16, 0.017 +20060125, -0.22, -0.04, -0.12, 0.017 +20060126, 0.79, 0.81, 0.04, 0.017 +20060127, 0.67, -0.15, -0.17, 0.017 +20060130, 0.10, -0.26, 0.21, 0.017 +20060131, -0.21, 0.62, -0.03, 0.017 +20060201, 0.14, 0.18, 0.05, 0.018 +20060202, -0.88, -0.28, -0.07, 0.018 +20060203, -0.51, 0.24, 0.01, 0.018 +20060206, 0.10, 0.26, 0.51, 0.018 +20060207, -0.92, -0.47, -0.23, 0.018 +20060208, 0.77, -0.26, -0.09, 0.018 +20060209, -0.19, -0.15, -0.27, 0.018 +20060210, 0.15, -0.35, -0.05, 0.018 +20060213, -0.47, -0.51, 0.14, 0.018 +20060214, 1.01, 0.27, -0.10, 0.018 +20060215, 0.41, 0.41, -0.47, 0.018 +20060216, 0.75, 0.05, 0.22, 0.018 +20060217, -0.16, -0.05, 0.36, 0.018 +20060221, -0.38, -0.20, 0.14, 0.018 +20060222, 0.73, 0.01, -0.03, 0.018 +20060223, -0.29, 0.23, -0.22, 0.018 +20060224, 0.19, 0.35, 0.16, 0.018 +20060227, 0.40, 0.16, -0.36, 0.018 +20060228, -1.10, -0.21, 0.07, 0.018 +20060301, 0.90, 0.68, -0.04, 0.016 +20060302, -0.16, -0.07, 0.06, 0.016 +20060303, -0.15, -0.01, 0.07, 0.016 +20060306, -0.75, -0.21, -0.14, 0.016 +20060307, -0.40, -1.07, 0.05, 0.016 +20060308, 0.14, -0.05, 0.06, 0.016 +20060309, -0.51, -0.01, 0.29, 0.016 +20060310, 0.69, 0.39, 0.03, 0.016 +20060313, 0.24, -0.03, 0.10, 0.016 +20060314, 1.00, 0.04, -0.03, 0.016 +20060315, 0.48, 0.40, 0.15, 0.016 +20060316, 0.11, -0.13, 0.32, 0.016 +20060317, 0.18, 0.12, -0.32, 0.016 +20060320, -0.07, 0.17, -0.33, 0.016 +20060321, -0.69, -0.52, -0.10, 0.016 +20060322, 0.62, 0.49, 0.12, 0.016 +20060323, -0.18, 0.54, 0.00, 0.016 +20060324, 0.22, 0.66, 0.20, 0.016 +20060327, -0.07, 0.15, 0.25, 0.016 +20060328, -0.61, 0.24, -0.08, 0.016 +20060329, 0.87, 0.86, 0.14, 0.016 +20060330, -0.16, 0.16, -0.16, 0.016 +20060331, -0.23, 0.70, -0.05, 0.016 +20060403, 0.07, -0.88, 0.68, 0.019 +20060404, 0.54, -0.26, 0.13, 0.019 +20060405, 0.42, -0.03, 0.25, 0.019 +20060406, -0.15, 0.18, 0.01, 0.019 +20060407, -1.02, -0.11, -0.17, 0.019 +20060410, -0.02, -0.39, 0.05, 0.019 +20060411, -0.83, -0.67, 0.02, 0.019 +20060412, 0.19, 0.57, -0.03, 0.019 +20060413, 0.12, 0.38, -0.14, 0.019 +20060417, -0.28, 0.00, 0.30, 0.019 +20060418, 1.71, 0.67, 0.07, 0.019 +20060419, 0.33, 0.87, 0.07, 0.019 +20060420, 0.01, -0.50, 0.05, 0.019 +20060421, -0.10, -0.19, 0.30, 0.019 +20060424, -0.30, -0.41, 0.13, 0.019 +20060425, -0.44, 0.44, 0.00, 0.019 +20060426, 0.20, -0.09, 0.28, 0.019 +20060427, 0.24, -0.95, 0.00, 0.019 +20060428, 0.05, 0.13, 0.52, 0.019 +20060501, -0.41, 0.01, 0.47, 0.020 +20060502, 0.54, 0.19, 0.57, 0.020 +20060503, -0.31, 0.40, 0.08, 0.020 +20060504, 0.37, 0.59, -0.24, 0.020 +20060505, 1.04, -0.30, -0.02, 0.020 +20060508, -0.05, 0.08, 0.09, 0.020 +20060509, -0.01, -0.14, 0.20, 0.020 +20060510, -0.20, -0.59, 0.54, 0.020 +20060511, -1.35, -1.09, 0.23, 0.020 +20060512, -1.26, -0.72, -0.08, 0.020 +20060515, 0.04, -0.91, -0.29, 0.020 +20060516, -0.12, 0.10, 0.35, 0.020 +20060517, -1.66, 0.12, 0.16, 0.020 +20060518, -0.69, -0.34, 0.13, 0.020 +20060519, 0.38, 0.11, 0.01, 0.020 +20060522, -0.55, -0.76, 0.25, 0.020 +20060523, -0.44, 0.07, -0.02, 0.020 +20060524, 0.03, -0.08, -0.15, 0.020 +20060525, 1.22, 0.70, 0.01, 0.020 +20060526, 0.60, -0.16, -0.08, 0.020 +20060530, -1.65, -0.78, 0.13, 0.020 +20060531, 0.94, 0.36, 0.38, 0.020 +20060601, 1.29, 0.82, -0.17, 0.018 +20060602, 0.16, -0.07, 0.22, 0.018 +20060605, -1.94, -1.17, 0.20, 0.018 +20060606, -0.28, -0.17, -0.09, 0.018 +20060607, -0.57, 0.04, -0.19, 0.018 +20060608, 0.01, -0.26, 0.04, 0.018 +20060609, -0.44, -0.24, -0.05, 0.018 +20060612, -1.48, -1.27, 0.27, 0.018 +20060613, -1.15, -0.34, -0.41, 0.018 +20060614, 0.46, 0.18, -0.22, 0.018 +20060615, 2.33, 1.05, 0.27, 0.018 +20060616, -0.43, -0.72, 0.01, 0.018 +20060619, -1.01, -0.78, 0.15, 0.018 +20060620, -0.07, -0.38, 0.07, 0.018 +20060621, 1.11, 0.74, -0.17, 0.018 +20060622, -0.52, 0.15, 0.16, 0.018 +20060623, 0.03, 0.24, 0.22, 0.018 +20060626, 0.50, 0.53, 0.19, 0.018 +20060627, -1.00, -0.73, 0.28, 0.018 +20060628, 0.47, -0.37, 0.15, 0.018 +20060629, 2.29, 1.42, -0.25, 0.018 +20060630, -0.02, 1.15, 0.14, 0.018 +20060703, 0.72, -0.07, -0.24, 0.020 +20060705, -0.88, -0.54, 0.38, 0.020 +20060706, 0.23, -0.07, 0.03, 0.020 +20060707, -0.80, -0.85, 0.72, 0.020 +20060710, 0.04, -0.27, 0.51, 0.020 +20060711, 0.37, 0.32, -0.16, 0.020 +20060712, -1.21, -0.66, 0.35, 0.020 +20060713, -1.43, -0.55, 0.07, 0.020 +20060714, -0.60, -0.35, 0.15, 0.020 +20060717, -0.22, -0.45, 0.08, 0.020 +20060718, 0.17, 0.17, 0.30, 0.020 +20060719, 1.98, 0.90, -0.27, 0.020 +20060720, -1.11, -1.60, 0.60, 0.020 +20060721, -0.89, -0.86, 0.33, 0.020 +20060724, 1.75, 0.86, -0.49, 0.020 +20060725, 0.69, 0.20, 0.01, 0.020 +20060726, -0.13, -0.34, 0.48, 0.020 +20060727, -0.58, -0.73, 0.36, 0.020 +20060728, 1.31, 0.67, -0.15, 0.020 +20060731, -0.09, 0.26, -0.09, 0.020 +20060801, -0.60, -0.92, 0.34, 0.018 +20060802, 0.64, 0.28, -0.25, 0.018 +20060803, 0.27, 0.85, -0.46, 0.018 +20060804, -0.13, -0.45, 0.16, 0.018 +20060807, -0.35, -0.27, 0.10, 0.018 +20060808, -0.42, -0.80, 0.10, 0.018 +20060809, -0.52, -0.43, -0.01, 0.018 +20060810, 0.49, 0.36, -0.39, 0.018 +20060811, -0.49, -0.58, 0.19, 0.018 +20060814, 0.12, 0.25, -0.31, 0.018 +20060815, 1.46, 0.75, -0.41, 0.018 +20060816, 0.90, 0.63, -0.51, 0.018 +20060817, 0.18, 0.36, -0.18, 0.018 +20060818, 0.30, -0.17, -0.12, 0.018 +20060821, -0.48, -0.49, 0.15, 0.018 +20060822, 0.07, 0.28, 0.06, 0.018 +20060823, -0.55, -0.75, 0.15, 0.018 +20060824, 0.16, -0.21, 0.08, 0.018 +20060825, -0.07, 0.18, -0.09, 0.018 +20060828, 0.58, 0.40, -0.12, 0.018 +20060829, 0.33, 0.92, -0.12, 0.018 +20060830, 0.13, 0.75, -0.28, 0.018 +20060831, 0.03, 0.01, 0.23, 0.018 +20060901, 0.49, -0.27, -0.04, 0.020 +20060905, 0.21, 0.52, 0.02, 0.020 +20060906, -1.13, -1.01, 0.46, 0.020 +20060907, -0.50, -0.17, 0.21, 0.020 +20060908, 0.32, -0.08, -0.12, 0.020 +20060911, -0.03, -0.16, -0.08, 0.020 +20060912, 1.18, 1.16, -0.32, 0.020 +20060913, 0.45, 0.43, -0.08, 0.020 +20060914, -0.16, -0.25, 0.08, 0.020 +20060915, 0.21, 0.02, -0.28, 0.020 +20060918, 0.04, 0.00, -0.30, 0.020 +20060919, -0.29, -0.23, 0.19, 0.020 +20060920, 0.60, 0.53, 0.01, 0.020 +20060921, -0.59, -0.39, 0.07, 0.020 +20060922, -0.41, -0.88, 0.51, 0.020 +20060925, 0.86, 0.17, 0.09, 0.020 +20060926, 0.71, -0.35, -0.18, 0.020 +20060927, 0.08, 0.42, -0.27, 0.020 +20060928, 0.15, -0.10, -0.19, 0.020 +20060929, -0.33, -0.64, 0.25, 0.020 +20061002, -0.43, -0.55, 0.19, 0.018 +20061003, 0.13, -0.37, 0.46, 0.018 +20061004, 1.28, 0.73, -0.52, 0.018 +20061005, 0.43, 0.93, -0.37, 0.018 +20061006, -0.31, -0.04, -0.09, 0.018 +20061009, 0.20, 0.42, 0.11, 0.018 +20061010, 0.21, -0.04, 0.00, 0.018 +20061011, -0.30, -0.33, 0.23, 0.018 +20061012, 1.07, 0.93, -0.19, 0.018 +20061013, 0.22, 0.49, -0.06, 0.018 +20061016, 0.34, 0.62, -0.32, 0.018 +20061017, -0.44, -0.22, 0.42, 0.018 +20061018, 0.08, -0.32, 0.03, 0.018 +20061019, 0.10, 0.45, -0.09, 0.018 +20061020, -0.02, -0.73, 0.04, 0.018 +20061023, 0.56, -0.42, -0.19, 0.018 +20061024, 0.01, -0.21, 0.22, 0.018 +20061025, 0.32, 0.18, -0.08, 0.018 +20061026, 0.63, 0.41, 0.20, 0.018 +20061027, -0.88, -0.35, 0.12, 0.018 +20061030, 0.07, 0.43, -0.01, 0.018 +20061031, -0.07, -0.34, -0.11, 0.018 +20061101, -0.87, -0.99, 0.27, 0.020 +20061102, -0.05, -0.23, 0.06, 0.020 +20061103, -0.12, 0.52, -0.14, 0.020 +20061106, 1.16, 0.26, -0.12, 0.020 +20061107, 0.23, 0.06, -0.30, 0.020 +20061108, 0.29, 0.31, 0.34, 0.020 +20061109, -0.58, -0.39, 0.33, 0.020 +20061110, 0.26, 0.70, -0.02, 0.020 +20061113, 0.27, 0.18, 0.03, 0.020 +20061114, 0.71, 0.92, -0.23, 0.020 +20061115, 0.35, 0.58, -0.41, 0.020 +20061116, 0.16, -0.31, 0.11, 0.020 +20061117, 0.03, -0.37, -0.12, 0.020 +20061120, -0.06, 0.21, 0.05, 0.020 +20061121, 0.14, 0.04, -0.08, 0.020 +20061122, 0.28, -0.08, -0.25, 0.020 +20061124, -0.32, 0.24, 0.09, 0.020 +20061127, -1.53, -1.02, 0.32, 0.020 +20061128, 0.30, 0.00, -0.04, 0.020 +20061129, 0.95, 0.13, -0.04, 0.020 +20061130, 0.11, 0.13, 0.21, 0.020 +20061201, -0.30, -0.36, 0.11, 0.020 +20061204, 0.99, 0.86, -0.16, 0.020 +20061205, 0.41, -0.19, 0.24, 0.020 +20061206, -0.10, -0.09, 0.23, 0.020 +20061207, -0.41, -0.05, 0.08, 0.020 +20061208, 0.14, -0.16, 0.01, 0.020 +20061211, 0.18, -0.28, 0.65, 0.020 +20061212, -0.20, -0.51, 0.45, 0.020 +20061213, 0.09, -0.04, 0.17, 0.020 +20061214, 0.80, -0.13, -0.12, 0.020 +20061215, 0.07, -0.33, 0.40, 0.020 +20061218, -0.46, -0.94, 0.17, 0.020 +20061219, 0.16, -0.12, 0.04, 0.020 +20061220, -0.12, 0.56, 0.08, 0.020 +20061221, -0.38, 0.01, 0.35, 0.020 +20061222, -0.48, 0.29, 0.08, 0.020 +20061226, 0.44, 0.34, 0.37, 0.020 +20061227, 0.74, 0.51, -0.05, 0.020 +20061228, -0.18, -0.17, -0.01, 0.020 +20061229, -0.51, -0.26, -0.02, 0.020 +20070103, -0.04, 0.05, 0.14, 0.022 +20070104, 0.16, 0.24, -0.52, 0.022 +20070105, -0.73, -0.91, -0.33, 0.022 +20070108, 0.24, -0.07, 0.08, 0.022 +20070109, 0.00, 0.28, -0.20, 0.022 +20070110, 0.23, -0.08, -0.17, 0.022 +20070111, 0.74, 0.55, -0.29, 0.022 +20070112, 0.50, 0.21, -0.28, 0.022 +20070116, 0.00, -0.26, 0.06, 0.022 +20070117, -0.14, -0.21, -0.05, 0.022 +20070118, -0.48, -1.07, 0.53, 0.022 +20070119, 0.33, 0.42, 0.07, 0.022 +20070122, -0.55, -0.49, 0.34, 0.022 +20070123, 0.37, 0.60, 0.07, 0.022 +20070124, 0.84, 0.23, -0.05, 0.022 +20070125, -1.15, -0.07, -0.10, 0.022 +20070126, -0.06, 0.55, 0.10, 0.022 +20070129, 0.02, 0.59, 0.23, 0.022 +20070130, 0.52, -0.02, 0.22, 0.022 +20070131, 0.64, -0.42, 0.03, 0.022 +20070201, 0.59, 0.34, -0.24, 0.020 +20070202, 0.15, 0.10, 0.27, 0.020 +20070205, -0.12, -0.22, 0.13, 0.020 +20070206, 0.10, 0.28, 0.19, 0.020 +20070207, 0.21, 0.40, -0.01, 0.020 +20070208, -0.10, 0.24, -0.22, 0.020 +20070209, -0.76, -0.34, 0.15, 0.020 +20070212, -0.35, 0.19, 0.09, 0.020 +20070213, 0.72, -0.17, 0.33, 0.020 +20070214, 0.73, -0.50, -0.17, 0.020 +20070215, 0.11, 0.16, -0.37, 0.020 +20070216, 0.00, 0.26, 0.07, 0.020 +20070220, 0.42, 0.64, -0.18, 0.020 +20070221, -0.09, 0.30, -0.21, 0.020 +20070222, -0.06, 0.37, -0.12, 0.020 +20070223, -0.31, 0.15, -0.26, 0.020 +20070226, -0.19, -0.14, 0.09, 0.020 +20070227, -3.43, -0.18, 0.02, 0.020 +20070228, 0.47, -0.51, 0.35, 0.020 +20070301, -0.25, -0.09, 0.19, 0.019 +20070302, -1.24, -0.63, 0.23, 0.019 +20070305, -1.11, -0.69, -0.28, 0.019 +20070306, 1.58, 0.67, 0.00, 0.019 +20070307, -0.21, -0.06, -0.02, 0.019 +20070308, 0.68, -0.10, 0.11, 0.019 +20070309, 0.09, 0.28, 0.14, 0.019 +20070312, 0.28, 0.27, -0.12, 0.019 +20070313, -2.03, -0.26, -0.12, 0.019 +20070314, 0.57, 0.11, -0.09, 0.019 +20070315, 0.44, 0.49, 0.13, 0.019 +20070316, -0.42, -0.11, -0.17, 0.019 +20070319, 1.08, -0.11, 0.02, 0.019 +20070320, 0.67, 0.03, 0.14, 0.019 +20070321, 1.64, -0.15, -0.10, 0.019 +20070322, -0.02, 0.19, -0.31, 0.019 +20070323, 0.08, 0.08, 0.04, 0.019 +20070326, 0.06, -0.04, -0.08, 0.019 +20070327, -0.61, -0.21, -0.02, 0.019 +20070328, -0.74, 0.22, -0.04, 0.019 +20070329, 0.29, -0.20, 0.17, 0.019 +20070330, -0.07, 0.27, -0.05, 0.019 +20070402, 0.22, 0.09, -0.11, 0.022 +20070403, 0.93, 0.05, -0.12, 0.022 +20070404, 0.09, -0.17, -0.25, 0.022 +20070405, 0.31, 0.00, -0.08, 0.022 +20070409, 0.05, -0.24, 0.07, 0.022 +20070410, 0.22, 0.09, 0.02, 0.022 +20070411, -0.64, -0.10, 0.12, 0.022 +20070412, 0.61, 0.25, -0.19, 0.022 +20070413, 0.34, 0.24, -0.08, 0.022 +20070416, 1.06, 0.29, 0.11, 0.022 +20070417, 0.09, -0.42, -0.12, 0.022 +20070418, 0.00, -0.71, 0.44, 0.022 +20070419, -0.23, -0.38, 0.03, 0.022 +20070420, 0.89, 0.20, 0.04, 0.022 +20070423, -0.24, 0.07, -0.29, 0.022 +20070424, -0.10, -0.04, -0.24, 0.022 +20070425, 0.91, -0.35, 0.17, 0.022 +20070426, -0.02, 0.32, -0.34, 0.022 +20070427, -0.13, -0.30, -0.31, 0.022 +20070430, -0.93, -0.91, 0.02, 0.022 +20070501, 0.22, -0.09, 0.03, 0.018 +20070502, 0.79, 0.62, 0.02, 0.018 +20070503, 0.37, -0.36, 0.32, 0.018 +20070504, 0.25, 0.18, -0.02, 0.018 +20070507, 0.18, -0.37, 0.32, 0.018 +20070508, -0.13, -0.04, -0.11, 0.018 +20070509, 0.35, 0.07, -0.02, 0.018 +20070510, -1.42, -0.50, 0.29, 0.018 +20070511, 0.95, 0.18, 0.06, 0.018 +20070514, -0.28, -0.61, 0.07, 0.018 +20070515, -0.27, -0.80, 0.28, 0.018 +20070516, 0.82, -0.21, 0.05, 0.018 +20070517, -0.10, -0.34, 0.03, 0.018 +20070518, 0.66, 0.40, -0.49, 0.018 +20070521, 0.31, 0.92, -0.28, 0.018 +20070522, 0.08, 0.71, -0.04, 0.018 +20070523, -0.18, -0.21, -0.12, 0.018 +20070524, -1.07, -0.43, -0.05, 0.018 +20070525, 0.55, 0.23, -0.07, 0.018 +20070529, 0.24, 0.60, 0.01, 0.018 +20070530, 0.77, -0.23, -0.01, 0.018 +20070531, 0.13, 0.34, -0.30, 0.018 +20070601, 0.44, 0.36, -0.05, 0.019 +20070604, 0.18, 0.07, 0.00, 0.019 +20070605, -0.55, -0.12, -0.22, 0.019 +20070606, -0.92, 0.08, 0.05, 0.019 +20070607, -1.75, -0.04, 0.06, 0.019 +20070608, 1.07, -0.06, 0.03, 0.019 +20070611, 0.08, -0.29, 0.10, 0.019 +20070612, -1.06, -0.16, -0.18, 0.019 +20070613, 1.37, -0.20, -0.10, 0.019 +20070614, 0.50, 0.10, -0.07, 0.019 +20070615, 0.69, 0.52, -0.07, 0.019 +20070618, -0.13, 0.01, -0.11, 0.019 +20070619, 0.14, 0.00, 0.15, 0.019 +20070620, -1.29, 0.09, -0.18, 0.019 +20070621, 0.56, -0.16, 0.01, 0.019 +20070622, -1.25, 0.62, -0.01, 0.019 +20070625, -0.39, -0.43, -0.11, 0.019 +20070626, -0.35, 0.14, -0.31, 0.019 +20070627, 0.92, 0.47, -0.39, 0.019 +20070628, 0.03, 0.14, 0.15, 0.019 +20070629, -0.19, -0.36, 0.11, 0.019 +20070702, 1.06, -0.07, 0.11, 0.019 +20070703, 0.36, -0.05, -0.10, 0.019 +20070705, 0.07, 0.20, -0.60, 0.019 +20070706, 0.40, -0.07, -0.08, 0.019 +20070709, 0.10, 0.06, -0.06, 0.019 +20070710, -1.43, -0.15, -0.38, 0.019 +20070711, 0.55, -0.29, -0.10, 0.019 +20070712, 1.78, -0.18, -0.31, 0.019 +20070713, 0.28, -0.31, 0.08, 0.019 +20070716, -0.31, -0.46, -0.24, 0.019 +20070717, 0.02, 0.16, -0.23, 0.019 +20070718, -0.25, -0.21, -0.19, 0.019 +20070719, 0.44, 0.34, -0.48, 0.019 +20070720, -1.25, -0.27, -0.19, 0.019 +20070723, 0.36, -0.42, -0.42, 0.019 +20070724, -2.04, -0.53, -0.22, 0.019 +20070725, 0.30, -0.41, 0.08, 0.019 +20070726, -2.36, -0.01, -0.23, 0.019 +20070727, -1.51, -0.06, 0.14, 0.019 +20070730, 0.93, -0.24, -0.07, 0.019 +20070731, -1.19, 0.32, -0.02, 0.019 +20070801, 0.51, -0.49, -0.25, 0.018 +20070802, 0.55, 0.15, -0.36, 0.018 +20070803, -2.66, -0.63, -0.72, 0.018 +20070806, 2.07, -1.16, -0.41, 0.018 +20070807, 0.65, 0.27, -0.67, 0.018 +20070808, 1.47, 1.16, -0.73, 0.018 +20070809, -2.74, 1.65, -0.61, 0.018 +20070810, 0.03, 0.05, 1.35, 0.018 +20070813, -0.06, -1.15, 0.32, 0.018 +20070814, -1.83, -0.05, -0.19, 0.018 +20070815, -1.46, 0.03, -0.04, 0.018 +20070816, 0.31, 1.20, 1.16, 0.018 +20070817, 2.36, -0.41, 0.38, 0.018 +20070820, 0.00, 0.16, -0.31, 0.018 +20070821, 0.15, -0.06, 0.08, 0.018 +20070822, 1.20, 0.05, -0.01, 0.018 +20070823, -0.23, -0.98, 0.16, 0.018 +20070824, 1.21, 0.12, -0.22, 0.018 +20070827, -0.85, -0.11, -0.14, 0.018 +20070828, -2.33, -0.07, -0.41, 0.018 +20070829, 2.13, 0.11, 0.01, 0.018 +20070830, -0.43, 0.00, -0.48, 0.018 +20070831, 1.12, 0.05, -0.08, 0.018 +20070904, 1.03, -0.21, 0.04, 0.017 +20070905, -1.05, 0.03, -0.32, 0.017 +20070906, 0.42, 0.00, -0.19, 0.017 +20070907, -1.70, -0.30, 0.19, 0.017 +20070910, -0.27, -0.50, -0.22, 0.017 +20070911, 1.35, 0.04, -0.34, 0.017 +20070912, -0.03, -0.44, -0.20, 0.017 +20070913, 0.69, -0.69, 0.30, 0.017 +20070914, 0.10, 0.36, -0.06, 0.017 +20070917, -0.60, -0.44, 0.04, 0.017 +20070918, 2.88, 0.59, 0.37, 0.017 +20070919, 0.59, 0.60, 0.24, 0.017 +20070920, -0.65, -0.14, -0.31, 0.017 +20070921, 0.43, -0.24, -0.24, 0.017 +20070924, -0.56, -0.38, -0.63, 0.017 +20070925, -0.03, -0.29, -0.38, 0.017 +20070926, 0.60, 0.12, -0.07, 0.017 +20070927, 0.43, 0.20, -0.03, 0.017 +20070928, -0.37, -0.54, 0.03, 0.017 +20071001, 1.37, 0.81, 0.07, 0.014 +20071002, 0.11, 0.65, 0.18, 0.014 +20071003, -0.48, -0.22, -0.17, 0.014 +20071004, 0.18, -0.03, 0.05, 0.014 +20071005, 1.10, 0.64, -0.07, 0.014 +20071008, -0.27, -0.18, -0.29, 0.014 +20071009, 0.78, -0.22, -0.15, 0.014 +20071010, -0.13, 0.02, -0.40, 0.014 +20071011, -0.58, -0.67, 0.60, 0.014 +20071012, 0.51, 0.11, -0.31, 0.014 +20071015, -0.89, -0.39, -0.22, 0.014 +20071016, -0.67, -0.03, -0.28, 0.014 +20071017, 0.22, -0.15, -0.26, 0.014 +20071018, -0.10, 0.11, -0.38, 0.014 +20071019, -2.45, -0.47, 0.02, 0.014 +20071022, 0.47, 0.90, 0.05, 0.014 +20071023, 0.85, 0.06, -0.54, 0.014 +20071024, -0.33, -0.45, -0.20, 0.014 +20071025, -0.19, -0.31, -0.03, 0.014 +20071026, 1.38, 0.26, 0.37, 0.014 +20071029, 0.40, -0.27, -0.58, 0.014 +20071030, -0.64, 0.09, 0.13, 0.014 +20071031, 1.23, 0.04, -0.12, 0.014 +20071101, -2.66, -0.86, -0.43, 0.016 +20071102, 0.08, 0.19, -0.90, 0.016 +20071105, -0.59, -0.28, -0.11, 0.016 +20071106, 1.19, 0.02, -0.17, 0.016 +20071107, -2.77, -0.04, -0.46, 0.016 +20071108, -0.05, 0.55, 1.17, 0.016 +20071109, -1.46, 0.23, 0.86, 0.016 +20071112, -1.08, 0.38, 0.28, 0.016 +20071113, 2.81, -0.46, 0.05, 0.016 +20071114, -0.63, -0.22, -0.18, 0.016 +20071115, -1.25, 0.05, -0.06, 0.016 +20071116, 0.41, -0.62, -0.63, 0.016 +20071119, -1.81, -0.26, -0.37, 0.016 +20071120, 0.31, -0.56, -0.10, 0.016 +20071121, -1.54, 0.41, 0.09, 0.016 +20071123, 1.59, 0.17, 0.19, 0.016 +20071126, -2.09, -0.06, -0.65, 0.016 +20071127, 1.31, -0.54, -0.20, 0.016 +20071128, 2.90, 0.29, -0.19, 0.016 +20071129, 0.01, -0.50, -0.31, 0.016 +20071130, 0.70, -0.62, 0.86, 0.016 +20071203, -0.60, -0.53, 0.10, 0.014 +20071204, -0.61, -0.15, -0.15, 0.014 +20071205, 1.47, 0.02, -0.04, 0.014 +20071206, 1.55, 0.85, 0.27, 0.014 +20071207, -0.07, 0.04, -0.05, 0.014 +20071210, 0.71, -0.14, 0.24, 0.014 +20071211, -2.50, -0.26, -0.07, 0.014 +20071212, 0.48, 0.04, -0.20, 0.014 +20071213, 0.06, -0.33, -0.31, 0.014 +20071214, -1.36, -0.49, -0.26, 0.014 +20071217, -1.59, -0.20, 0.31, 0.014 +20071218, 0.65, 1.14, -0.01, 0.014 +20071219, -0.10, 0.30, -0.42, 0.014 +20071220, 0.64, 0.86, -0.39, 0.014 +20071221, 1.64, 0.33, -0.02, 0.014 +20071224, 0.80, 0.09, 0.21, 0.014 +20071226, 0.10, 0.22, -0.04, 0.014 +20071227, -1.49, -1.16, 0.04, 0.014 +20071228, 0.12, -0.37, -0.14, 0.014 +20071231, -0.65, 0.02, 0.42, 0.014 +20080102, -1.46, -0.10, -0.10, 0.010 +20080103, -0.14, -1.02, -0.37, 0.010 +20080104, -2.56, -0.50, 0.13, 0.010 +20080107, 0.16, 0.11, 0.13, 0.010 +20080108, -1.81, -0.43, -0.86, 0.010 +20080109, 1.10, -0.36, -0.63, 0.010 +20080110, 0.89, -0.16, 0.57, 0.010 +20080111, -1.42, -0.77, 0.25, 0.010 +20080114, 1.02, -0.04, -0.19, 0.010 +20080115, -2.39, 0.49, -0.12, 0.010 +20080116, -0.51, 0.81, 1.20, 0.010 +20080117, -2.80, 0.38, -0.11, 0.010 +20080118, -0.56, -0.23, -0.87, 0.010 +20080122, -0.98, 0.32, 1.19, 0.010 +20080123, 2.04, 0.67, 1.65, 0.010 +20080124, 1.02, -0.94, -0.53, 0.010 +20080125, -1.39, 0.83, 0.25, 0.010 +20080128, 1.71, 0.04, 0.99, 0.010 +20080129, 0.69, -0.48, 0.99, 0.010 +20080130, -0.59, -0.36, -0.10, 0.010 +20080131, 1.66, 0.84, 0.46, 0.010 +20080201, 1.48, 0.69, 0.06, 0.007 +20080204, -0.99, 0.18, -0.18, 0.007 +20080205, -3.01, 0.44, 0.03, 0.007 +20080206, -0.85, -0.37, 0.51, 0.007 +20080207, 0.82, 0.40, 0.04, 0.007 +20080208, -0.30, -0.09, -0.33, 0.007 +20080211, 0.58, -0.18, -0.59, 0.007 +20080212, 0.61, -0.16, -0.06, 0.007 +20080213, 1.46, 0.71, 0.03, 0.007 +20080214, -1.35, -0.77, 0.14, 0.007 +20080215, -0.02, -0.82, 0.33, 0.007 +20080219, -0.06, 0.28, -0.36, 0.007 +20080220, 0.83, 0.22, -0.01, 0.007 +20080221, -1.28, -0.35, -0.19, 0.007 +20080222, 0.61, -0.87, 0.63, 0.007 +20080225, 1.46, 0.46, -0.06, 0.007 +20080226, 0.72, 0.40, -0.09, 0.007 +20080227, -0.11, -0.04, -0.24, 0.007 +20080228, -0.93, -0.40, -0.48, 0.007 +20080229, -2.64, 0.11, -0.16, 0.007 +20080303, -0.04, -0.23, -0.34, 0.009 +20080304, -0.36, 0.00, -0.05, 0.009 +20080305, 0.56, -0.20, -0.36, 0.009 +20080306, -2.26, -0.41, -0.23, 0.009 +20080307, -0.88, 0.24, 0.58, 0.009 +20080310, -1.72, -0.59, 0.50, 0.009 +20080311, 3.57, 0.21, 0.23, 0.009 +20080312, -0.77, 0.21, -0.82, 0.009 +20080313, 0.65, 1.32, -0.21, 0.009 +20080314, -2.07, -0.20, -0.26, 0.009 +20080317, -1.21, -0.77, 0.51, 0.009 +20080318, 4.09, 0.02, -0.25, 0.009 +20080319, -2.37, -0.01, 0.19, 0.009 +20080320, 2.30, -0.16, 0.74, 0.009 +20080324, 1.71, 1.13, -0.60, 0.009 +20080325, 0.38, 0.44, -0.17, 0.009 +20080326, -0.82, 0.61, -0.49, 0.009 +20080327, -1.13, -0.20, 0.02, 0.009 +20080328, -0.82, -0.44, 0.26, 0.009 +20080331, 0.57, 0.04, 0.59, 0.009 +20080401, 3.37, -0.74, 0.05, 0.008 +20080402, -0.09, 0.47, -0.14, 0.008 +20080403, 0.14, -0.08, -0.06, 0.008 +20080404, 0.16, 0.08, -0.46, 0.008 +20080407, 0.14, -0.45, 0.49, 0.008 +20080408, -0.34, 0.33, -0.05, 0.008 +20080409, -0.96, -0.80, -0.22, 0.008 +20080410, 0.53, 0.69, -0.55, 0.008 +20080411, -2.02, -0.63, 0.54, 0.008 +20080414, -0.38, 0.18, -0.32, 0.008 +20080415, 0.46, 0.29, 0.27, 0.008 +20080416, 2.27, 0.48, 0.15, 0.008 +20080417, -0.10, -0.86, 0.34, 0.008 +20080418, 1.67, 0.12, -0.65, 0.008 +20080421, -0.17, -0.13, -0.55, 0.008 +20080422, -0.97, -1.09, 0.29, 0.008 +20080423, 0.26, 0.19, -1.16, 0.008 +20080424, 0.66, 0.54, 0.37, 0.008 +20080425, 0.68, -0.20, 0.18, 0.008 +20080428, -0.03, 0.55, 0.19, 0.008 +20080429, -0.36, -0.42, 0.33, 0.008 +20080430, -0.30, -0.12, 0.09, 0.008 +20080501, 1.66, 0.06, 0.22, 0.008 +20080502, 0.20, -0.75, 0.02, 0.008 +20080505, -0.41, 0.30, -0.13, 0.008 +20080506, 0.75, -0.03, 0.29, 0.008 +20080507, -1.66, 0.06, -0.18, 0.008 +20080508, 0.37, 0.14, -0.16, 0.008 +20080509, -0.54, 0.65, -0.25, 0.008 +20080512, 1.10, 0.66, -0.34, 0.008 +20080513, 0.09, 0.67, -0.04, 0.008 +20080514, 0.38, -0.43, 0.17, 0.008 +20080515, 1.02, -0.09, -0.30, 0.008 +20080516, 0.10, -0.40, 0.02, 0.008 +20080519, -0.02, -0.28, 0.24, 0.008 +20080520, -0.80, 0.62, -0.17, 0.008 +20080521, -1.56, 0.45, 0.17, 0.008 +20080522, 0.38, 0.29, -0.04, 0.008 +20080523, -1.24, 0.15, -0.37, 0.008 +20080527, 0.72, 0.58, -0.22, 0.008 +20080528, 0.49, -0.06, -0.06, 0.008 +20080529, 0.61, 0.29, -0.25, 0.008 +20080530, 0.29, 0.26, 0.00, 0.008 +20080602, -0.98, 0.15, 0.24, 0.008 +20080603, -0.46, 0.29, 0.02, 0.008 +20080604, 0.02, 0.70, -0.74, 0.008 +20080605, 1.95, 0.32, -0.09, 0.008 +20080606, -2.90, 0.16, -0.03, 0.008 +20080609, -0.03, -0.53, -0.22, 0.008 +20080610, -0.31, 0.00, -0.22, 0.008 +20080611, -1.66, -0.14, -0.15, 0.008 +20080612, 0.31, 0.00, -0.06, 0.008 +20080613, 1.55, 0.26, -0.35, 0.008 +20080616, 0.15, 0.88, -0.18, 0.008 +20080617, -0.55, 0.15, -0.25, 0.008 +20080618, -0.96, 0.20, 0.26, 0.008 +20080619, 0.34, 0.49, -0.58, 0.008 +20080620, -1.79, 0.34, 0.07, 0.008 +20080623, -0.16, -0.61, -0.31, 0.008 +20080624, -0.54, -1.17, 0.28, 0.008 +20080625, 0.64, 0.35, -0.43, 0.008 +20080626, -2.83, 0.56, 0.13, 0.008 +20080627, -0.37, 0.23, -0.42, 0.008 +20080630, -0.07, -1.21, 0.32, 0.008 +20080701, 0.29, -0.44, 0.28, 0.007 +20080702, -2.00, -0.87, 0.12, 0.007 +20080703, -0.15, -0.67, -0.17, 0.007 +20080707, -0.81, 0.12, -1.12, 0.007 +20080708, 1.84, 1.01, 2.35, 0.007 +20080709, -2.06, -0.08, -1.32, 0.007 +20080710, 0.65, -0.02, -1.23, 0.007 +20080711, -0.88, 1.48, -1.11, 0.007 +20080714, -0.93, -0.12, -2.43, 0.007 +20080715, -0.96, 1.16, -1.17, 0.007 +20080716, 2.52, 0.01, 4.76, 0.007 +20080717, 1.13, -0.10, 4.14, 0.007 +20080718, -0.08, -0.80, 1.12, 0.007 +20080721, 0.16, 0.30, -0.56, 0.007 +20080722, 1.37, 0.92, 3.21, 0.007 +20080723, 0.32, 0.05, 1.61, 0.007 +20080724, -2.31, 0.51, -2.88, 0.007 +20080725, 0.47, 0.91, -1.01, 0.007 +20080728, -1.76, 0.03, -1.39, 0.007 +20080729, 2.27, -0.30, 3.18, 0.007 +20080730, 1.58, -1.38, -0.09, 0.007 +20080731, -1.16, 0.61, 0.37, 0.007 +20080801, -0.47, 0.65, 0.85, 0.006 +20080804, -1.09, -0.22, 0.48, 0.006 +20080805, 2.65, -0.57, 1.65, 0.006 +20080806, 0.50, 0.54, -1.15, 0.006 +20080807, -1.73, 0.62, -1.74, 0.006 +20080808, 2.28, 0.58, 1.38, 0.006 +20080811, 0.83, 1.37, 1.19, 0.006 +20080812, -1.05, 1.00, -1.94, 0.006 +20080813, -0.15, 0.75, -2.02, 0.006 +20080814, 0.63, 0.10, 1.30, 0.006 +20080815, 0.38, -0.37, 1.07, 0.006 +20080818, -1.45, 0.28, -0.89, 0.006 +20080819, -1.00, -0.56, -1.24, 0.006 +20080820, 0.54, -0.66, -0.06, 0.006 +20080821, 0.12, -0.90, -0.45, 0.006 +20080822, 1.14, 0.43, 1.03, 0.006 +20080825, -1.92, -0.12, -0.53, 0.006 +20080826, 0.33, -0.20, 0.15, 0.006 +20080827, 0.88, 0.27, 0.30, 0.006 +20080828, 1.51, 0.15, 1.81, 0.006 +20080829, -1.25, 0.24, 0.62, 0.006 +20080902, -0.44, 0.31, 2.02, 0.007 +20080903, -0.23, 0.53, 1.66, 0.007 +20080904, -2.90, 0.20, -0.47, 0.007 +20080905, 0.42, -0.83, 1.58, 0.007 +20080908, 1.76, -0.57, 2.20, 0.007 +20080909, -3.41, 0.59, -0.70, 0.007 +20080910, 0.70, 0.40, -0.77, 0.007 +20080911, 1.22, -0.94, 0.19, 0.007 +20080912, 0.29, -0.17, -0.20, 0.007 +20080915, -4.45, 1.49, -2.25, 0.007 +20080916, 1.65, 0.27, 1.96, 0.007 +20080917, -4.60, 0.60, -2.13, 0.007 +20080918, 4.41, 1.06, 4.84, 0.007 +20080919, 4.27, -1.99, 3.63, 0.007 +20080922, -3.94, 0.34, -3.39, 0.007 +20080923, -1.55, 0.10, 0.14, 0.007 +20080924, -0.32, -1.05, -0.76, 0.007 +20080925, 1.70, -1.16, 0.64, 0.007 +20080926, 0.11, -0.91, 0.93, 0.007 +20080929, -8.26, 3.42, -3.69, 0.007 +20080930, 4.88, -3.69, 2.88, 0.007 +20081001, -0.47, -0.82, 2.77, 0.004 +20081002, -4.20, -0.58, 0.62, 0.004 +20081003, -1.47, -0.81, -1.23, 0.004 +20081006, -3.95, -0.05, 0.43, 0.004 +20081007, -5.76, 1.09, -3.43, 0.004 +20081008, -1.27, -0.21, -2.20, 0.004 +20081009, -7.36, -0.23, -2.54, 0.004 +20081010, -0.95, 3.81, 3.05, 0.004 +20081013, 11.35, -2.42, -2.33, 0.004 +20081014, -0.86, -3.00, 4.43, 0.004 +20081015, -8.78, 0.24, 0.82, 0.004 +20081016, 4.32, 2.17, -1.63, 0.004 +20081017, -0.41, -0.77, -0.79, 0.004 +20081020, 4.55, -1.24, -0.85, 0.004 +20081021, -2.95, 0.05, 0.55, 0.004 +20081022, -5.76, 0.89, 0.14, 0.004 +20081023, 0.29, -3.36, -0.89, 0.004 +20081024, -3.28, -0.08, -0.36, 0.004 +20081027, -3.36, -0.86, 0.35, 0.004 +20081028, 9.77, -3.76, 0.30, 0.004 +20081029, -0.47, 2.83, -1.38, 0.004 +20081030, 2.99, 2.00, -0.63, 0.004 +20081031, 1.88, 2.27, 1.98, 0.004 +20081103, -0.05, 0.14, 0.57, 0.001 +20081104, 3.57, -2.60, 0.20, 0.001 +20081105, -5.05, 0.20, -1.46, 0.001 +20081106, -4.83, 1.56, -0.42, 0.001 +20081107, 2.62, -1.14, -0.78, 0.001 +20081110, -1.32, -0.69, -2.05, 0.001 +20081111, -2.25, 0.16, 0.01, 0.001 +20081112, -5.14, -0.49, -1.09, 0.001 +20081113, 6.79, 0.75, -0.10, 0.001 +20081114, -4.27, -2.23, 0.02, 0.001 +20081117, -2.43, 1.82, -1.63, 0.001 +20081118, 0.70, -1.25, -0.73, 0.001 +20081119, -6.29, -0.02, -3.09, 0.001 +20081120, -6.60, 1.70, -2.51, 0.001 +20081121, 6.11, -1.25, -2.03, 0.001 +20081124, 6.27, -1.34, 4.67, 0.001 +20081125, 0.94, 0.06, 2.29, 0.001 +20081126, 3.88, 1.65, 0.24, 0.001 +20081128, 1.06, -0.66, 1.90, 0.001 +20081201, -8.95, -0.75, -3.53, 0.000 +20081202, 3.97, 0.66, 2.54, 0.000 +20081203, 2.63, -0.22, 1.47, 0.000 +20081204, -2.90, 0.02, 1.25, 0.000 +20081205, 3.75, 0.08, 1.79, 0.000 +20081208, 3.80, -0.38, 0.17, 0.000 +20081209, -2.23, -0.58, -1.23, 0.000 +20081210, 1.20, 1.06, -0.99, 0.000 +20081211, -2.93, -1.16, -2.24, 0.000 +20081212, 0.96, 2.30, 0.59, 0.000 +20081215, -1.54, -1.27, -1.24, 0.000 +20081216, 5.15, -0.19, 2.43, 0.000 +20081217, -0.62, 1.74, -0.52, 0.000 +20081218, -1.83, 0.91, -0.36, 0.000 +20081219, 0.35, 0.72, -0.03, 0.000 +20081222, -1.87, 0.00, -0.76, 0.000 +20081223, -0.89, -0.11, -0.89, 0.000 +20081224, 0.51, -0.33, 0.60, 0.000 +20081226, 0.63, 0.58, 0.07, 0.000 +20081229, -0.56, -1.41, -0.04, 0.000 +20081230, 2.47, 0.57, 0.99, 0.000 +20081231, 1.70, 1.54, 0.76, 0.000 +20090102, 3.11, -1.32, -0.35, 0.000 +20090105, -0.28, 0.65, -1.12, 0.000 +20090106, 0.87, 1.02, 0.88, 0.000 +20090107, -2.96, 0.34, -1.15, 0.000 +20090108, 0.47, 0.73, 0.39, 0.000 +20090109, -2.21, -1.43, -1.12, 0.000 +20090112, -2.28, 0.32, -1.83, 0.000 +20090113, 0.28, 0.42, 0.20, 0.000 +20090114, -3.38, -0.53, -1.25, 0.000 +20090115, 0.39, 2.27, -2.25, 0.000 +20090116, 0.74, 0.46, -1.04, 0.000 +20090120, -5.34, 0.16, -3.95, 0.000 +20090121, 4.21, -1.22, 2.56, 0.000 +20090122, -1.62, -1.00, -1.61, 0.000 +20090123, 0.44, -0.45, 0.84, 0.000 +20090126, 0.54, 0.76, -0.60, 0.000 +20090127, 1.08, -0.42, 0.33, 0.000 +20090128, 3.32, -0.61, 2.66, 0.000 +20090129, -3.23, -0.13, -2.30, 0.000 +20090130, -2.16, 0.19, -1.18, 0.000 +20090202, 0.06, 1.31, -0.53, 0.001 +20090203, 1.46, -0.18, -2.35, 0.001 +20090204, -0.60, -0.22, -0.42, 0.001 +20090205, 1.61, 0.14, -0.23, 0.001 +20090206, 2.79, -0.05, 2.21, 0.001 +20090209, 0.03, -0.94, 0.21, 0.001 +20090210, -4.62, 1.08, -2.79, 0.001 +20090211, 0.75, -0.77, 1.25, 0.001 +20090212, 0.30, 0.33, -0.60, 0.001 +20090213, -0.85, 0.98, -1.45, 0.001 +20090217, -4.36, 1.03, -2.33, 0.001 +20090218, -0.33, -0.91, -0.72, 0.001 +20090219, -1.15, -0.03, -2.00, 0.001 +20090220, -1.16, -0.01, -1.00, 0.001 +20090223, -3.43, -0.48, 0.86, 0.001 +20090224, 4.00, -0.99, 2.95, 0.001 +20090225, -1.15, -1.44, 0.17, 0.001 +20090226, -1.53, -0.46, 1.32, 0.001 +20090227, -2.01, 1.82, -2.15, 0.001 +20090302, -4.75, -0.22, -0.30, 0.001 +20090303, -0.71, -0.67, -2.43, 0.001 +20090304, 2.42, 0.54, -0.99, 0.001 +20090305, -4.21, -0.45, -3.02, 0.001 +20090306, 0.20, 0.41, -0.64, 0.001 +20090309, -1.09, -0.94, 0.33, 0.001 +20090310, 6.35, -0.96, 4.20, 0.001 +20090311, 0.30, -0.56, 0.57, 0.001 +20090312, 4.16, 1.10, 2.61, 0.001 +20090313, 0.73, 0.18, 0.55, 0.001 +20090316, -0.55, -1.03, 0.42, 0.001 +20090317, 3.20, 0.66, 1.44, 0.001 +20090318, 2.18, 0.06, 3.99, 0.001 +20090319, -1.03, 1.01, -2.53, 0.001 +20090320, -1.95, -0.34, -0.80, 0.001 +20090323, 6.89, -0.69, 4.09, 0.001 +20090324, -1.93, -1.13, -1.55, 0.001 +20090325, 0.94, 0.95, 1.30, 0.001 +20090326, 2.68, 1.89, 0.01, 0.001 +20090327, -2.06, -1.35, 0.28, 0.001 +20090330, -3.47, 1.76, -3.86, 0.001 +20090331, 1.29, -0.56, 1.53, 0.001 +20090401, 1.65, -0.50, 1.48, 0.001 +20090402, 3.07, 1.90, 0.50, 0.001 +20090403, 1.02, -0.13, 0.87, 0.001 +20090406, -0.93, -0.66, -0.48, 0.001 +20090407, -2.42, -0.73, -0.20, 0.001 +20090408, 1.28, 1.06, 0.09, 0.001 +20090409, 3.91, 0.32, 4.37, 0.001 +20090413, 0.26, -0.93, 2.28, 0.001 +20090414, -2.02, -0.05, -2.85, 0.001 +20090415, 1.12, -0.16, 2.33, 0.001 +20090416, 1.69, 1.23, 0.12, 0.001 +20090417, 0.55, 0.86, 0.25, 0.001 +20090420, -4.32, 0.07, -4.24, 0.001 +20090421, 2.19, 0.78, 3.09, 0.001 +20090422, -0.61, 1.48, -1.10, 0.001 +20090423, 0.66, -1.81, 0.21, 0.001 +20090424, 1.77, 0.79, 0.20, 0.001 +20090427, -0.95, -0.45, -1.71, 0.001 +20090428, -0.20, 0.92, 0.08, 0.001 +20090429, 2.41, 0.75, 1.18, 0.001 +20090430, -0.04, -0.41, -0.64, 0.001 +20090501, 0.45, -0.48, -0.25, 0.000 +20090504, 3.36, -0.41, 2.95, 0.000 +20090505, -0.27, 0.20, -0.16, 0.000 +20090506, 1.45, -2.10, 2.66, 0.000 +20090507, -1.42, -0.76, -0.81, 0.000 +20090508, 2.48, 0.24, 2.77, 0.000 +20090511, -2.01, 1.24, -2.46, 0.000 +20090512, -0.31, -0.78, -1.64, 0.000 +20090513, -2.91, -1.50, -1.49, 0.000 +20090514, 1.11, 0.50, 0.97, 0.000 +20090515, -1.02, 0.57, -1.12, 0.000 +20090518, 3.13, 0.34, 1.95, 0.000 +20090519, -0.04, 0.20, -1.21, 0.000 +20090520, -0.48, -0.02, -1.10, 0.000 +20090521, -1.68, -0.10, 0.35, 0.000 +20090522, -0.15, -0.34, -0.58, 0.000 +20090526, 2.78, 1.51, 0.63, 0.000 +20090527, -1.80, 0.26, -1.30, 0.000 +20090528, 1.35, -1.37, 0.45, 0.000 +20090529, 1.38, 0.56, -0.21, 0.000 +20090601, 2.72, 1.56, -0.71, 0.000 +20090602, 0.29, 0.85, -0.18, 0.000 +20090603, -1.39, 0.78, -0.84, 0.000 +20090604, 1.18, 0.14, 1.09, 0.000 +20090605, -0.19, 0.13, -0.56, 0.000 +20090608, -0.20, -0.98, 0.61, 0.000 +20090609, 0.49, 0.34, -0.28, 0.000 +20090610, -0.35, -0.33, -0.48, 0.000 +20090611, 0.63, -0.21, 0.26, 0.000 +20090612, 0.03, -0.19, 0.01, 0.000 +20090615, -2.38, -0.30, -0.33, 0.000 +20090616, -1.33, -0.08, -0.28, 0.000 +20090617, -0.08, 0.92, -0.98, 0.000 +20090618, 0.74, -0.63, 0.41, 0.000 +20090619, 0.35, 0.29, 0.11, 0.000 +20090622, -3.08, -0.36, -0.73, 0.000 +20090623, 0.08, -1.10, 0.14, 0.000 +20090624, 0.78, 0.25, -0.15, 0.000 +20090625, 2.19, 0.80, 0.05, 0.000 +20090626, 0.04, 1.58, 0.13, 0.000 +20090629, 0.82, -1.10, 0.36, 0.000 +20090630, -0.74, 0.25, -0.19, 0.000 +20090701, 0.54, 1.50, 0.21, 0.001 +20090702, -2.89, -0.59, -1.03, 0.001 +20090706, -0.03, -0.94, -0.97, 0.001 +20090707, -1.93, 0.03, -0.16, 0.001 +20090708, -0.20, -0.55, -1.11, 0.001 +20090709, 0.35, -0.58, 1.25, 0.001 +20090710, -0.35, 0.94, -0.51, 0.001 +20090713, 2.43, -0.68, 1.81, 0.001 +20090714, 0.59, 0.32, 0.63, 0.001 +20090715, 2.98, 0.56, 1.41, 0.001 +20090716, 0.94, 0.46, -0.12, 0.001 +20090717, -0.05, -0.24, -0.04, 0.001 +20090720, 1.19, 0.33, 0.37, 0.001 +20090721, 0.31, -0.53, -0.81, 0.001 +20090722, 0.08, 0.61, 0.34, 0.001 +20090723, 2.37, 0.60, 1.11, 0.001 +20090724, 0.38, 0.31, 0.14, 0.001 +20090727, 0.30, 0.09, 0.98, 0.001 +20090728, -0.20, 0.30, -0.34, 0.001 +20090729, -0.46, -0.13, -0.83, 0.001 +20090730, 1.24, 0.31, 1.45, 0.001 +20090731, 0.05, -0.16, 1.28, 0.001 +20090803, 1.63, 0.10, 1.68, 0.001 +20090804, 0.32, 0.43, 0.82, 0.001 +20090805, -0.30, -1.11, 1.71, 0.001 +20090806, -0.62, -0.98, 0.05, 0.001 +20090807, 1.44, 0.98, 1.18, 0.001 +20090810, -0.32, 0.47, 0.27, 0.001 +20090811, -1.25, -0.07, -1.14, 0.001 +20090812, 1.21, 0.44, 0.55, 0.001 +20090813, 0.73, -0.30, 1.10, 0.001 +20090814, -0.97, -1.21, -0.28, 0.001 +20090817, -2.46, -0.11, -1.69, 0.001 +20090818, 1.11, 0.47, 1.30, 0.001 +20090819, 0.72, 0.44, -0.39, 0.001 +20090820, 1.00, -0.05, 0.84, 0.001 +20090821, 1.83, 0.36, 0.69, 0.001 +20090824, -0.09, 0.06, -0.28, 0.001 +20090825, 0.27, 0.17, 0.65, 0.001 +20090826, -0.01, 0.14, 0.11, 0.001 +20090827, 0.21, -0.15, 0.53, 0.001 +20090828, -0.19, -0.37, 0.55, 0.001 +20090831, -0.86, -0.47, -0.63, 0.001 +20090901, -2.15, 0.10, -2.03, 0.000 +20090902, -0.28, 0.14, -0.70, 0.000 +20090903, 0.93, 0.03, 1.09, 0.000 +20090904, 1.31, 0.26, 0.27, 0.000 +20090908, 0.88, 0.19, 0.10, 0.000 +20090909, 0.90, 0.79, 0.67, 0.000 +20090910, 1.08, 0.46, 0.92, 0.000 +20090911, -0.10, 0.13, -0.10, 0.000 +20090914, 0.65, 0.09, 0.64, 0.000 +20090915, 0.44, 0.58, 0.60, 0.000 +20090916, 1.55, 0.41, 1.30, 0.000 +20090917, -0.30, -0.07, -0.34, 0.000 +20090918, 0.23, 0.11, -0.19, 0.000 +20090921, -0.27, -0.17, -0.67, 0.000 +20090922, 0.66, -0.09, 1.50, 0.000 +20090923, -1.00, 0.15, -0.89, 0.000 +20090924, -1.07, -0.66, -1.34, 0.000 +20090925, -0.64, 0.19, -0.51, 0.000 +20090928, 1.79, 0.36, 1.04, 0.000 +20090929, -0.12, -0.06, 0.36, 0.000 +20090930, -0.40, -0.55, -0.63, 0.000 +20091001, -2.63, -0.60, -1.37, 0.000 +20091002, -0.49, -0.31, -0.14, 0.000 +20091005, 1.54, 0.08, 1.83, 0.000 +20091006, 1.42, 0.53, 0.24, 0.000 +20091007, 0.28, -0.37, 0.56, 0.000 +20091008, 0.82, 0.30, 0.34, 0.000 +20091009, 0.59, 0.60, -0.22, 0.000 +20091012, 0.36, -0.52, 0.33, 0.000 +20091013, -0.22, 0.12, -0.18, 0.000 +20091014, 1.73, 0.05, 1.12, 0.000 +20091015, 0.35, -0.23, -0.44, 0.000 +20091016, -0.82, -0.01, -1.27, 0.000 +20091019, 0.92, 0.08, 0.03, 0.000 +20091020, -0.69, -0.70, -0.48, 0.000 +20091021, -0.90, -0.09, -0.54, 0.000 +20091022, 1.05, 0.04, 0.66, 0.000 +20091023, -1.23, -0.81, -1.02, 0.000 +20091026, -1.20, 0.02, -1.35, 0.000 +20091027, -0.51, -0.62, -0.61, 0.000 +20091028, -2.16, -1.49, -1.39, 0.000 +20091029, 2.20, -0.25, 1.64, 0.000 +20091030, -2.80, -0.07, -1.87, 0.000 +20091102, 0.54, -0.79, -0.32, 0.000 +20091103, 0.45, 1.04, 0.75, 0.000 +20091104, 0.03, -1.06, -0.51, 0.000 +20091105, 2.07, 1.14, 0.63, 0.000 +20091106, 0.24, -0.23, -0.45, 0.000 +20091109, 2.17, -0.43, 1.35, 0.000 +20091110, -0.05, -0.80, -0.08, 0.000 +20091111, 0.52, 0.31, 0.31, 0.000 +20091112, -1.12, -0.89, -0.76, 0.000 +20091113, 0.61, 0.36, -0.04, 0.000 +20091116, 1.54, 1.30, 0.20, 0.000 +20091117, 0.14, -0.21, -0.04, 0.000 +20091118, -0.13, -0.49, 0.44, 0.000 +20091119, -1.39, -0.79, -0.60, 0.000 +20091120, -0.33, 0.20, -0.47, 0.000 +20091123, 1.30, 0.39, -0.09, 0.000 +20091124, -0.09, -0.13, -0.43, 0.000 +20091125, 0.47, -0.42, 0.12, 0.000 +20091127, -1.74, -0.55, -0.78, 0.000 +20091130, 0.28, -0.39, 0.74, 0.000 +20091201, 1.28, 0.63, -0.28, 0.000 +20091202, 0.18, 1.02, -0.30, 0.000 +20091203, -0.86, -0.27, -0.33, 0.000 +20091204, 0.70, 1.53, 0.74, 0.000 +20091207, -0.15, 0.51, -0.26, 0.000 +20091208, -0.97, 0.06, -0.14, 0.000 +20091209, 0.32, -0.19, 0.01, 0.000 +20091210, 0.50, -0.96, -0.10, 0.000 +20091211, 0.43, 0.28, 0.46, 0.000 +20091214, 0.80, 0.63, 0.34, 0.000 +20091215, -0.48, 0.31, -0.59, 0.000 +20091216, 0.19, 0.45, 0.73, 0.000 +20091217, -1.18, 0.25, -0.32, 0.000 +20091218, 0.68, 0.22, 0.24, 0.000 +20091221, 1.03, 0.15, 0.32, 0.000 +20091222, 0.43, 0.58, -0.11, 0.000 +20091223, 0.36, 0.92, -0.39, 0.000 +20091224, 0.51, -0.08, 0.20, 0.000 +20091228, 0.08, -0.12, -0.28, 0.000 +20091229, -0.09, 0.11, -0.08, 0.000 +20091230, 0.00, -0.06, -0.09, 0.000 +20091231, -0.99, -0.20, 0.33, 0.000 +20100104, 1.69, 0.58, 1.11, 0.000 +20100105, 0.31, -0.59, 1.21, 0.000 +20100106, 0.13, -0.24, 0.51, 0.000 +20100107, 0.40, 0.09, 0.94, 0.000 +20100108, 0.33, 0.40, 0.01, 0.000 +20100111, 0.13, -0.13, -0.21, 0.000 +20100112, -1.00, -0.19, -1.31, 0.000 +20100113, 0.85, 0.27, 0.34, 0.000 +20100114, 0.24, 0.28, 0.05, 0.000 +20100115, -1.12, -0.13, -0.39, 0.000 +20100119, 1.26, 0.42, -0.16, 0.000 +20100120, -0.98, -0.59, 0.25, 0.000 +20100121, -1.74, 0.41, -1.14, 0.000 +20100122, -2.14, 0.55, -0.81, 0.000 +20100125, 0.37, -0.20, 0.33, 0.000 +20100126, -0.45, -0.09, -0.46, 0.000 +20100127, 0.53, 0.23, 0.16, 0.000 +20100128, -1.18, -0.67, 0.47, 0.000 +20100129, -0.97, -0.04, -0.45, 0.000 +20100201, 1.39, -0.20, 0.91, 0.000 +20100202, 1.21, -0.42, 0.66, 0.000 +20100203, -0.49, 0.10, -0.39, 0.000 +20100204, -3.14, -0.15, -1.19, 0.000 +20100205, 0.29, -0.06, -0.07, 0.000 +20100208, -0.79, 0.05, -0.35, 0.000 +20100209, 1.33, 0.32, 0.59, 0.000 +20100210, -0.17, 0.25, 0.29, 0.000 +20100211, 1.13, 0.72, 0.07, 0.000 +20100212, -0.07, 0.97, 0.15, 0.000 +20100216, 1.75, -0.29, 1.02, 0.000 +20100217, 0.49, 0.11, 0.12, 0.000 +20100218, 0.62, 0.11, 0.00, 0.000 +20100219, 0.28, 0.05, 0.48, 0.000 +20100222, -0.05, -0.04, 0.57, 0.000 +20100223, -1.24, 0.27, -0.94, 0.000 +20100224, 0.94, -0.35, 0.53, 0.000 +20100225, -0.13, 0.24, 0.28, 0.000 +20100226, 0.13, -0.55, 0.39, 0.000 +20100301, 1.20, 1.22, 0.07, 0.000 +20100302, 0.32, 0.61, 0.19, 0.000 +20100303, 0.09, 0.17, 0.09, 0.000 +20100304, 0.37, 0.09, 0.23, 0.000 +20100305, 1.43, 0.40, 0.61, 0.000 +20100308, 0.02, 0.09, 0.26, 0.000 +20100309, 0.21, 0.24, -0.10, 0.000 +20100310, 0.53, 0.05, 0.68, 0.000 +20100311, 0.43, -0.09, -0.11, 0.000 +20100312, -0.02, 0.03, -0.28, 0.000 +20100315, -0.02, -0.31, -0.48, 0.000 +20100316, 0.78, -0.14, 0.59, 0.000 +20100317, 0.57, 0.05, 0.36, 0.000 +20100318, -0.10, -0.17, -0.57, 0.000 +20100319, -0.62, -0.60, -0.63, 0.000 +20100322, 0.67, 0.89, 0.01, 0.000 +20100323, 0.80, 0.34, 0.36, 0.000 +20100324, -0.60, -0.64, 0.82, 0.000 +20100325, -0.26, -0.48, -0.28, 0.000 +20100326, 0.06, -0.08, 0.31, 0.000 +20100329, 0.59, -0.07, 0.19, 0.000 +20100330, 0.04, 0.29, -0.45, 0.000 +20100331, -0.36, -0.50, 0.16, 0.000 +20100401, 0.75, 0.00, 0.79, 0.001 +20100405, 0.95, 1.07, 0.92, 0.001 +20100406, 0.19, 0.24, 0.46, 0.001 +20100407, -0.48, 0.21, 0.24, 0.001 +20100408, 0.31, -0.28, 0.39, 0.001 +20100409, 0.66, -0.12, 0.17, 0.001 +20100412, 0.23, 0.27, 0.07, 0.001 +20100413, 0.07, 0.16, -0.05, 0.001 +20100414, 1.24, 0.87, 1.41, 0.001 +20100415, 0.11, 0.59, -0.04, 0.001 +20100416, -1.53, 0.80, -1.83, 0.001 +20100419, 0.28, -0.85, -0.08, 0.001 +20100420, 0.88, 0.66, 0.56, 0.001 +20100421, -0.06, 0.70, 0.20, 0.001 +20100422, 0.37, 0.81, 0.49, 0.001 +20100423, 0.70, 0.36, 0.58, 0.001 +20100426, -0.43, 0.45, -0.32, 0.001 +20100427, -2.34, 0.11, -1.41, 0.001 +20100428, 0.56, -0.75, 0.73, 0.001 +20100429, 1.34, 0.46, 0.45, 0.001 +20100430, -1.72, -0.97, -0.92, 0.001 +20100503, 1.36, 0.64, 0.61, 0.001 +20100504, -2.50, -0.58, -0.90, 0.001 +20100505, -0.75, -0.73, -0.62, 0.001 +20100506, -3.27, -0.27, -0.90, 0.001 +20100507, -1.75, -1.35, -0.48, 0.001 +20100510, 4.47, 0.96, 1.16, 0.001 +20100511, -0.17, 1.16, -0.15, 0.001 +20100512, 1.63, 1.48, 0.19, 0.001 +20100513, -1.12, 0.31, -0.31, 0.001 +20100514, -1.92, -0.27, -0.77, 0.001 +20100517, 0.11, 0.04, -0.56, 0.001 +20100518, -1.41, -0.24, -0.96, 0.001 +20100519, -0.63, -0.97, 0.03, 0.001 +20100520, -3.99, -0.89, -1.15, 0.001 +20100521, 1.44, -0.44, 1.59, 0.001 +20100524, -1.19, 0.33, -0.92, 0.001 +20100525, -0.03, -0.47, 0.54, 0.001 +20100526, -0.35, 0.83, 0.38, 0.001 +20100527, 3.45, 0.67, 1.61, 0.001 +20100528, -1.18, 0.05, -0.64, 0.001 +20100601, -1.89, -1.09, -1.57, 0.001 +20100602, 2.63, 0.19, 0.43, 0.001 +20100603, 0.54, 0.70, -0.29, 0.001 +20100604, -3.62, -1.22, -0.70, 0.001 +20100607, -1.52, -1.08, -1.06, 0.001 +20100608, 0.90, -1.47, 0.17, 0.001 +20100609, -0.46, 0.74, -0.18, 0.001 +20100610, 2.95, 0.40, 0.90, 0.001 +20100611, 0.62, 0.93, 0.06, 0.001 +20100614, -0.06, 0.66, 0.01, 0.001 +20100615, 2.36, 0.08, 0.91, 0.001 +20100616, -0.11, -0.21, -0.32, 0.001 +20100617, 0.08, -0.16, -0.45, 0.001 +20100618, 0.13, 0.00, 0.24, 0.001 +20100621, -0.47, -0.54, 0.00, 0.001 +20100622, -1.63, -0.34, -0.75, 0.001 +20100623, -0.29, -0.05, 0.23, 0.001 +20100624, -1.65, 0.10, -0.89, 0.001 +20100625, 0.48, 1.05, 1.03, 0.001 +20100628, -0.23, -0.02, -0.71, 0.001 +20100629, -3.23, -0.66, -1.27, 0.001 +20100630, -0.98, 0.04, -0.36, 0.001 +20100701, -0.40, -0.31, -0.43, 0.001 +20100702, -0.50, -0.30, -0.43, 0.001 +20100706, 0.33, -2.00, 0.08, 0.001 +20100707, 3.17, 0.06, 0.45, 0.001 +20100708, 1.00, 0.57, 0.00, 0.001 +20100709, 0.81, 0.65, 0.58, 0.001 +20100712, -0.11, -1.19, 0.05, 0.001 +20100713, 1.76, 1.62, 0.65, 0.001 +20100714, -0.04, -0.16, -0.76, 0.001 +20100715, 0.02, -0.87, -0.10, 0.001 +20100716, -2.94, -0.56, -0.96, 0.001 +20100719, 0.54, -0.15, -0.19, 0.001 +20100720, 1.23, 0.65, 0.14, 0.001 +20100721, -1.30, -0.39, -0.41, 0.001 +20100722, 2.37, 1.25, 0.54, 0.001 +20100723, 1.05, 1.47, -0.23, 0.001 +20100726, 1.23, 0.87, 0.12, 0.001 +20100727, -0.23, -0.33, 0.35, 0.001 +20100728, -0.82, -0.90, -0.03, 0.001 +20100729, -0.36, 0.32, 0.66, 0.001 +20100730, 0.06, 0.03, -0.22, 0.001 +20100802, 2.08, -0.54, 0.15, 0.001 +20100803, -0.55, -0.41, -0.50, 0.001 +20100804, 0.74, 0.43, -0.09, 0.001 +20100805, -0.22, -0.82, 0.13, 0.001 +20100806, -0.36, -0.17, -0.35, 0.001 +20100809, 0.62, 0.62, 0.05, 0.001 +20100810, -0.79, -1.23, -0.21, 0.001 +20100811, -2.91, -1.07, -0.65, 0.001 +20100812, -0.50, -0.07, -0.04, 0.001 +20100813, -0.47, -0.80, 0.24, 0.001 +20100816, 0.10, 0.93, -0.20, 0.001 +20100817, 1.31, 0.59, -0.19, 0.001 +20100818, 0.21, 0.06, 0.07, 0.001 +20100819, -1.74, -0.82, -0.41, 0.001 +20100820, -0.28, 0.27, -0.23, 0.001 +20100823, -0.50, -0.94, -0.44, 0.001 +20100824, -1.48, 0.14, 0.14, 0.001 +20100825, 0.45, 1.04, 0.00, 0.001 +20100826, -0.76, -0.08, -0.26, 0.001 +20100827, 1.82, 0.93, 0.36, 0.001 +20100830, -1.54, -0.83, -0.40, 0.001 +20100831, 0.01, -0.26, 0.77, 0.001 +20100901, 3.05, 0.62, 0.47, 0.001 +20100902, 0.97, 0.26, -0.31, 0.001 +20100903, 1.35, 0.35, 0.20, 0.001 +20100907, -1.23, -0.79, -0.74, 0.001 +20100908, 0.65, 0.02, 0.17, 0.001 +20100909, 0.44, -0.48, 0.55, 0.001 +20100910, 0.45, -0.09, -0.13, 0.001 +20100913, 1.30, 1.13, 0.20, 0.001 +20100914, -0.06, -0.23, -0.53, 0.001 +20100915, 0.36, 0.11, -0.23, 0.001 +20100916, -0.07, -0.51, -0.69, 0.001 +20100917, 0.15, 0.61, -0.59, 0.001 +20100920, 1.60, 1.13, 0.22, 0.001 +20100921, -0.31, -0.28, -0.32, 0.001 +20100922, -0.52, -0.56, -0.53, 0.001 +20100923, -0.78, -0.07, -0.68, 0.001 +20100924, 2.19, 0.98, 0.48, 0.001 +20100927, -0.46, 0.21, -0.45, 0.001 +20100928, 0.58, 0.53, 0.10, 0.001 +20100929, -0.17, 0.66, -0.25, 0.001 +20100930, -0.26, 0.04, 0.30, 0.001 +20101001, 0.43, -0.06, 0.21, 0.001 +20101004, -0.88, -0.72, -0.07, 0.001 +20101005, 2.11, 0.77, 0.14, 0.001 +20101006, -0.10, -0.39, 0.47, 0.001 +20101007, -0.16, 0.05, -0.29, 0.001 +20101008, 0.74, 0.96, -0.13, 0.001 +20101011, 0.04, 0.02, -0.22, 0.001 +20101012, 0.39, -0.04, 0.19, 0.001 +20101013, 0.78, 0.87, -0.36, 0.001 +20101014, -0.38, 0.41, -0.41, 0.001 +20101015, 0.18, -0.06, -1.28, 0.001 +20101018, 0.69, 0.05, 0.85, 0.001 +20101019, -1.67, -0.69, 0.26, 0.001 +20101020, 1.06, 0.07, 0.09, 0.001 +20101021, 0.11, -0.53, -0.51, 0.001 +20101022, 0.29, 0.46, -0.44, 0.001 +20101025, 0.31, 0.47, -0.52, 0.001 +20101026, 0.02, 0.01, -0.18, 0.001 +20101027, -0.24, -0.19, -0.22, 0.001 +20101028, 0.08, -0.60, -0.07, 0.001 +20101029, 0.07, 0.32, -0.11, 0.001 +20101101, -0.01, -0.65, -0.20, 0.001 +20101102, 0.90, 1.34, -0.17, 0.001 +20101103, 0.38, -0.06, 0.17, 0.001 +20101104, 1.94, 0.47, 1.04, 0.001 +20101105, 0.41, -0.09, 0.68, 0.001 +20101108, -0.12, 0.45, -0.48, 0.001 +20101109, -0.78, -0.41, -0.49, 0.001 +20101110, 0.53, 0.58, 0.55, 0.001 +20101111, -0.35, -0.06, -0.08, 0.001 +20101112, -1.29, -0.49, -0.07, 0.001 +20101115, -0.09, 0.20, 0.32, 0.001 +20101116, -1.58, -0.34, -0.15, 0.001 +20101117, 0.07, 0.34, -0.29, 0.001 +20101118, 1.57, 0.31, -0.30, 0.001 +20101119, 0.31, 0.21, -0.18, 0.001 +20101122, -0.02, 0.60, -0.94, 0.001 +20101123, -1.38, 0.48, -0.28, 0.001 +20101124, 1.59, 0.66, 0.03, 0.001 +20101126, -0.67, 0.30, -0.35, 0.001 +20101129, -0.13, 0.01, 0.42, 0.001 +20101130, -0.59, -0.21, -0.02, 0.001 +20101201, 2.12, -0.10, 0.01, 0.001 +20101202, 1.23, -0.31, 0.66, 0.001 +20101203, 0.35, 0.39, 0.05, 0.001 +20101206, -0.03, 0.75, -0.06, 0.001 +20101207, 0.10, 0.36, 0.00, 0.001 +20101208, 0.32, -0.51, 0.62, 0.001 +20101209, 0.42, -0.01, 0.65, 0.001 +20101210, 0.67, 0.43, 0.24, 0.001 +20101213, -0.08, -0.58, 0.08, 0.001 +20101214, 0.09, -0.04, -0.11, 0.001 +20101215, -0.49, 0.20, -0.55, 0.001 +20101216, 0.70, 0.43, -0.11, 0.001 +20101217, 0.15, 0.15, -0.14, 0.001 +20101220, 0.23, 0.01, 0.34, 0.001 +20101221, 0.68, 0.35, 0.74, 0.001 +20101222, 0.29, -0.38, 0.82, 0.001 +20101223, -0.16, 0.07, -0.32, 0.001 +20101227, 0.08, 0.22, 0.44, 0.001 +20101228, 0.00, -0.43, 0.18, 0.001 +20101229, 0.17, 0.11, -0.16, 0.001 +20101230, -0.11, 0.14, -0.03, 0.001 +20101231, -0.10, -0.64, 0.23, 0.001 +20110103, 1.18, 0.53, 0.79, 0.000 +20110104, -0.26, -1.38, 0.11, 0.000 +20110105, 0.59, 0.61, 0.14, 0.000 +20110106, -0.15, -0.06, -0.33, 0.000 +20110107, -0.21, -0.25, -0.30, 0.000 +20110110, -0.02, 0.55, -0.16, 0.000 +20110111, 0.39, 0.12, 0.22, 0.000 +20110112, 0.87, -0.05, 0.25, 0.000 +20110113, -0.17, 0.13, -0.39, 0.000 +20110114, 0.69, 0.02, 0.49, 0.000 +20110118, 0.18, 0.07, -0.41, 0.000 +20110119, -1.24, -1.37, -0.54, 0.000 +20110120, -0.30, -1.04, 0.76, 0.000 +20110121, 0.11, -0.89, 0.56, 0.000 +20110124, 0.65, 0.31, -0.23, 0.000 +20110125, 0.02, -0.02, 0.10, 0.000 +20110126, 0.60, 1.38, -0.22, 0.000 +20110127, 0.26, -0.09, 0.29, 0.000 +20110128, -1.88, -0.88, -0.03, 0.000 +20110131, 0.71, -0.01, -0.27, 0.000 +20110201, 1.75, 0.51, 0.53, 0.001 +20110202, -0.26, -0.08, -0.39, 0.001 +20110203, 0.26, -0.06, -0.10, 0.001 +20110204, 0.29, 0.09, -0.57, 0.001 +20110207, 0.70, 0.27, 0.59, 0.001 +20110208, 0.48, 0.23, 0.00, 0.001 +20110209, -0.31, -0.20, -0.09, 0.001 +20110210, 0.12, 0.35, -0.30, 0.001 +20110211, 0.67, 0.42, 0.51, 0.001 +20110214, 0.30, 0.21, -0.15, 0.001 +20110215, -0.38, -0.37, 0.30, 0.001 +20110216, 0.68, 0.38, 0.26, 0.001 +20110217, 0.37, 0.38, 0.21, 0.001 +20110218, 0.12, -0.14, -0.03, 0.001 +20110222, -2.19, -0.52, -0.35, 0.001 +20110223, -0.78, -1.17, 0.40, 0.001 +20110224, 0.04, 0.72, -0.32, 0.001 +20110225, 1.22, 1.01, 0.22, 0.001 +20110228, 0.42, -0.45, 0.26, 0.001 +20110301, -1.58, -0.30, -0.06, 0.000 +20110302, 0.28, 0.33, -0.23, 0.000 +20110303, 1.76, 0.45, -0.04, 0.000 +20110304, -0.67, 0.30, -0.53, 0.000 +20110307, -0.96, -0.73, 0.12, 0.000 +20110308, 0.97, 0.46, 0.67, 0.000 +20110309, -0.17, -0.26, 0.33, 0.000 +20110310, -1.93, -0.74, -0.31, 0.000 +20110311, 0.69, -0.34, 0.14, 0.000 +20110314, -0.59, 0.10, -0.40, 0.000 +20110315, -1.05, 0.27, -0.14, 0.000 +20110316, -1.77, 0.63, -0.07, 0.000 +20110317, 1.12, -0.81, 0.58, 0.000 +20110318, 0.49, 0.57, 0.22, 0.000 +20110321, 1.58, 0.96, -0.26, 0.000 +20110322, -0.34, -0.09, -0.05, 0.000 +20110323, 0.31, 0.15, -0.40, 0.000 +20110324, 0.96, -0.11, -0.42, 0.000 +20110325, 0.41, 0.43, -0.04, 0.000 +20110328, -0.35, 0.05, -0.18, 0.000 +20110329, 0.74, 0.26, -0.19, 0.000 +20110330, 0.79, 0.43, 0.07, 0.000 +20110331, -0.11, 0.59, -0.30, 0.000 +20110401, 0.52, -0.10, 0.24, 0.000 +20110404, 0.09, 0.25, -0.11, 0.000 +20110405, 0.08, 0.47, -0.20, 0.000 +20110406, 0.21, -0.20, 0.60, 0.000 +20110407, -0.20, -0.22, -0.16, 0.000 +20110408, -0.47, -0.56, -0.27, 0.000 +20110411, -0.39, -0.65, -0.11, 0.000 +20110412, -0.84, -0.66, 0.03, 0.000 +20110413, 0.11, 0.15, -0.69, 0.000 +20110414, 0.00, 0.37, -0.35, 0.000 +20110415, 0.44, 0.59, -0.06, 0.000 +20110418, -1.15, -0.39, -0.34, 0.000 +20110419, 0.50, -0.35, -0.15, 0.000 +20110420, 1.45, 0.61, -0.61, 0.000 +20110421, 0.56, 0.32, -0.06, 0.000 +20110425, -0.16, -0.06, -0.03, 0.000 +20110426, 0.89, 0.15, -0.03, 0.000 +20110427, 0.66, -0.09, -0.23, 0.000 +20110428, 0.32, -0.13, 0.12, 0.000 +20110429, 0.29, 0.20, -0.05, 0.000 +20110502, -0.28, -0.90, -0.14, 0.000 +20110503, -0.50, -1.01, 0.44, 0.000 +20110504, -0.74, -0.55, -0.15, 0.000 +20110505, -0.82, 0.51, -0.33, 0.000 +20110506, 0.46, 0.04, -0.17, 0.000 +20110509, 0.55, 0.67, -0.43, 0.000 +20110510, 0.86, 0.66, 0.24, 0.000 +20110511, -1.09, -0.62, -0.44, 0.000 +20110512, 0.52, 0.36, -0.44, 0.000 +20110513, -0.88, -0.46, -0.32, 0.000 +20110516, -0.76, -1.00, 0.45, 0.000 +20110517, -0.11, -0.48, 0.11, 0.000 +20110518, 1.02, 0.68, -0.30, 0.000 +20110519, 0.22, -0.03, -0.12, 0.000 +20110520, -0.73, 0.08, -0.21, 0.000 +20110523, -1.29, -0.53, 0.01, 0.000 +20110524, -0.14, -0.29, 0.00, 0.000 +20110525, 0.45, 1.02, -0.36, 0.000 +20110526, 0.52, 0.66, -0.15, 0.000 +20110527, 0.49, 0.18, 0.23, 0.000 +20110531, 1.04, 0.43, -0.06, 0.000 +20110601, -2.33, -0.74, -0.25, 0.000 +20110602, -0.10, -0.02, 0.14, 0.000 +20110603, -1.10, -0.55, 0.18, 0.000 +20110606, -1.18, -0.26, -0.32, 0.000 +20110607, -0.04, 0.31, -0.12, 0.000 +20110608, -0.54, -0.73, 0.04, 0.000 +20110609, 0.75, -0.07, 0.02, 0.000 +20110610, -1.37, -0.24, 0.44, 0.000 +20110613, 0.01, -0.55, 0.36, 0.000 +20110614, 1.36, 1.05, -0.40, 0.000 +20110615, -1.72, -0.01, -0.15, 0.000 +20110616, 0.12, -0.08, 0.43, 0.000 +20110617, 0.25, -0.39, 0.65, 0.000 +20110620, 0.58, 0.38, -0.08, 0.000 +20110621, 1.52, 0.95, -0.39, 0.000 +20110622, -0.62, -0.09, 0.07, 0.000 +20110623, -0.14, 0.64, -0.83, 0.000 +20110624, -1.10, 0.45, 0.13, 0.000 +20110627, 0.89, 0.04, -0.05, 0.000 +20110628, 1.36, 0.42, -0.52, 0.000 +20110629, 0.77, -0.69, 0.66, 0.000 +20110630, 0.99, 0.17, -0.25, 0.000 +20110701, 1.45, -0.03, 0.14, 0.000 +20110705, -0.08, 0.21, -0.84, 0.000 +20110706, 0.18, 0.42, -0.56, 0.000 +20110707, 1.10, 0.49, 0.09, 0.000 +20110708, -0.67, 0.00, -0.42, 0.000 +20110711, -1.91, -0.18, -0.23, 0.000 +20110712, -0.45, 0.05, 0.45, 0.000 +20110713, 0.45, 0.57, -0.12, 0.000 +20110714, -0.82, -0.81, 0.13, 0.000 +20110715, 0.58, 0.11, -0.53, 0.000 +20110718, -0.94, -0.59, -0.38, 0.000 +20110719, 1.72, 0.56, -0.67, 0.000 +20110720, -0.10, -0.30, 0.72, 0.000 +20110721, 1.29, -0.36, 1.06, 0.000 +20110722, 0.10, -0.11, -0.75, 0.000 +20110725, -0.68, -0.57, 0.09, 0.000 +20110726, -0.47, -0.37, 0.14, 0.000 +20110727, -2.16, -0.80, 0.43, 0.000 +20110728, -0.31, 0.14, -0.12, 0.000 +20110729, -0.56, 0.23, 0.12, 0.000 +20110801, -0.40, -0.18, 0.21, 0.000 +20110802, -2.68, -0.49, 0.15, 0.000 +20110803, 0.58, 0.27, -0.33, 0.000 +20110804, -5.04, -0.83, 0.33, 0.000 +20110805, -0.36, -1.23, -0.46, 0.000 +20110808, -6.97, -1.45, -1.55, 0.000 +20110809, 4.97, 0.94, 0.64, 0.000 +20110810, -4.30, -0.55, -1.49, 0.000 +20110811, 4.72, 0.32, 0.59, 0.000 +20110812, 0.54, -0.19, -1.48, 0.000 +20110815, 2.25, 0.44, 0.98, 0.000 +20110816, -1.07, -0.79, -0.10, 0.000 +20110817, -0.01, -0.33, 0.70, 0.000 +20110818, -4.65, -1.03, 0.59, 0.000 +20110819, -1.55, 0.15, -0.37, 0.000 +20110822, -0.03, 0.08, -0.81, 0.000 +20110823, 3.60, 1.24, -0.82, 0.000 +20110824, 1.35, -0.15, 0.95, 0.000 +20110825, -1.67, -0.99, 0.54, 0.000 +20110826, 1.74, 0.91, -1.07, 0.000 +20110829, 3.11, 1.56, 0.82, 0.000 +20110830, 0.32, 0.27, -0.78, 0.000 +20110831, 0.42, -0.73, 0.26, 0.000 +20110901, -1.33, -1.10, -0.76, 0.000 +20110902, -2.64, -0.81, -0.66, 0.000 +20110906, -0.71, 0.50, -0.63, 0.000 +20110907, 3.06, 0.94, 0.92, 0.000 +20110908, -1.18, -0.76, -0.55, 0.000 +20110909, -2.65, -0.18, 0.04, 0.000 +20110912, 0.68, 0.00, 0.30, 0.000 +20110913, 1.12, 0.76, -0.40, 0.000 +20110914, 1.45, 0.44, -0.40, 0.000 +20110915, 1.64, -0.55, 0.54, 0.000 +20110916, 0.47, -0.39, -0.35, 0.000 +20110919, -0.99, -0.54, -1.23, 0.000 +20110920, -0.45, -1.49, 0.25, 0.000 +20110921, -2.92, -0.37, -1.22, 0.000 +20110922, -3.29, 0.11, 0.48, 0.000 +20110923, 0.74, 0.65, -0.01, 0.000 +20110926, 2.28, -0.64, 1.23, 0.000 +20110927, 1.22, 1.08, -0.56, 0.000 +20110928, -2.29, -1.66, -0.17, 0.000 +20110929, 0.77, 0.59, 2.03, 0.000 +20110930, -2.50, -0.16, -0.09, 0.000 +20111003, -3.18, -1.92, -0.63, 0.000 +20111004, 2.68, 3.60, 0.37, 0.000 +20111005, 1.92, -0.19, -0.45, 0.000 +20111006, 1.94, 0.25, 0.51, 0.000 +20111007, -0.98, -1.28, -1.35, 0.000 +20111010, 3.44, 0.47, 0.59, 0.000 +20111011, 0.15, 0.69, -0.17, 0.000 +20111012, 1.07, 0.49, 0.90, 0.000 +20111013, -0.21, 0.25, -1.22, 0.000 +20111014, 1.72, 0.14, -0.36, 0.000 +20111017, -2.06, -1.29, -0.46, 0.000 +20111018, 2.11, 0.63, 1.51, 0.000 +20111019, -1.38, -0.77, 0.37, 0.000 +20111020, 0.43, -0.30, 0.70, 0.000 +20111021, 1.92, 0.15, 0.01, 0.000 +20111024, 1.59, 1.76, -0.38, 0.000 +20111025, -2.13, -0.89, -0.34, 0.000 +20111026, 1.12, 0.71, 0.78, 0.000 +20111027, 3.54, 1.41, 0.83, 0.000 +20111028, -0.01, -0.55, -0.47, 0.000 +20111031, -2.50, 0.05, -0.79, 0.000 +20111101, -2.86, -0.54, -1.07, 0.000 +20111102, 1.72, 0.77, 0.99, 0.000 +20111103, 1.97, 0.59, -0.13, 0.000 +20111104, -0.53, 0.03, -0.59, 0.000 +20111107, 0.48, -0.71, 0.39, 0.000 +20111108, 1.21, 0.00, 0.47, 0.000 +20111109, -3.78, -0.81, -0.64, 0.000 +20111110, 0.83, 0.05, 0.58, 0.000 +20111111, 1.98, 0.48, -0.22, 0.000 +20111114, -0.92, -0.47, -0.80, 0.000 +20111115, 0.56, 0.88, -0.26, 0.000 +20111116, -1.64, -0.17, -0.18, 0.000 +20111117, -1.65, 0.18, 0.21, 0.000 +20111118, -0.07, 0.07, 0.91, 0.000 +20111121, -1.87, -0.49, -0.07, 0.000 +20111122, -0.44, -0.26, -0.56, 0.000 +20111123, -2.29, -0.70, -0.28, 0.000 +20111125, -0.34, -1.00, 0.47, 0.000 +20111128, 3.10, 1.63, -0.70, 0.000 +20111129, 0.18, -0.49, 0.17, 0.000 +20111130, 4.44, 1.05, 1.08, 0.000 +20111201, -0.22, -0.51, -0.64, 0.000 +20111202, 0.05, 0.44, 0.64, 0.000 +20111205, 1.09, 0.28, 0.30, 0.000 +20111206, 0.04, -0.08, 0.08, 0.000 +20111207, 0.16, -0.31, 0.74, 0.000 +20111208, -2.23, -0.75, -0.99, 0.000 +20111209, 1.83, 1.32, 0.06, 0.000 +20111212, -1.48, 0.04, -0.43, 0.000 +20111213, -1.05, -1.04, 0.12, 0.000 +20111214, -1.21, -0.26, 0.92, 0.000 +20111215, 0.40, 0.66, 0.13, 0.000 +20111216, 0.45, 0.23, -0.11, 0.000 +20111219, -1.31, -0.43, -0.69, 0.000 +20111220, 3.10, 0.80, 0.30, 0.000 +20111221, 0.20, -0.03, 1.31, 0.000 +20111222, 0.83, -0.21, 0.69, 0.000 +20111223, 0.84, -0.58, -0.16, 0.000 +20111227, 0.04, 0.47, -0.52, 0.000 +20111228, -1.34, -0.73, -0.03, 0.000 +20111229, 1.10, 0.19, 0.24, 0.000 +20111230, -0.40, -0.07, -0.14, 0.000 +20120103, 1.50, -0.15, 0.86, 0.000 +20120104, 0.00, -0.65, 0.08, 0.000 +20120105, 0.39, 0.18, 0.13, 0.000 +20120106, -0.19, 0.01, -0.25, 0.000 +20120109, 0.28, 0.22, -0.06, 0.000 +20120110, 0.97, 0.41, 0.39, 0.000 +20120111, 0.13, 0.16, 0.36, 0.000 +20120112, 0.31, 0.31, 0.00, 0.000 +20120113, -0.52, -0.26, -0.44, 0.000 +20120117, 0.36, -0.10, -0.73, 0.000 +20120118, 1.22, 0.56, 0.15, 0.000 +20120119, 0.51, -0.15, -0.22, 0.000 +20120120, 0.03, 0.23, 0.65, 0.000 +20120123, 0.02, -0.26, 0.13, 0.000 +20120124, 0.00, 0.84, -0.40, 0.000 +20120125, 0.91, 0.11, -0.73, 0.000 +20120126, -0.59, 0.25, -0.55, 0.000 +20120127, 0.01, 0.85, -0.10, 0.000 +20120130, -0.31, -0.45, -0.29, 0.000 +20120131, -0.05, -0.05, 0.01, 0.000 +20120201, 1.10, 1.12, 0.35, 0.000 +20120202, 0.17, 0.40, -0.05, 0.000 +20120203, 1.58, 0.60, 0.32, 0.000 +20120206, -0.05, -0.27, -0.19, 0.000 +20120207, 0.16, -0.28, -0.09, 0.000 +20120208, 0.25, -0.13, 0.42, 0.000 +20120209, 0.15, -0.35, -0.38, 0.000 +20120210, -0.75, -0.60, -0.10, 0.000 +20120213, 0.75, 0.58, -0.05, 0.000 +20120214, -0.09, -0.41, -0.41, 0.000 +20120215, -0.50, -0.23, 0.10, 0.000 +20120216, 1.27, 0.69, 0.28, 0.000 +20120217, 0.16, -0.30, 0.50, 0.000 +20120221, -0.05, -0.65, 0.35, 0.000 +20120222, -0.39, -0.38, -0.65, 0.000 +20120223, 0.56, 0.90, -0.07, 0.000 +20120224, 0.15, -0.44, -0.65, 0.000 +20120227, 0.14, -0.21, 0.37, 0.000 +20120228, 0.28, -0.63, -0.15, 0.000 +20120229, -0.55, -1.04, 0.20, 0.000 +20120301, 0.64, -0.23, 0.02, 0.000 +20120302, -0.46, -1.26, 0.00, 0.000 +20120305, -0.40, 0.44, 0.27, 0.000 +20120306, -1.62, -0.33, -0.32, 0.000 +20120307, 0.80, 0.31, 0.22, 0.000 +20120308, 1.07, 0.37, -0.30, 0.000 +20120309, 0.49, 0.90, 0.15, 0.000 +20120312, -0.07, -0.21, -0.03, 0.000 +20120313, 1.86, 0.09, 0.89, 0.000 +20120314, -0.23, -0.62, -0.21, 0.000 +20120315, 0.67, 0.27, 0.51, 0.000 +20120316, 0.06, -0.27, 0.38, 0.000 +20120319, 0.41, 0.52, -0.10, 0.000 +20120320, -0.39, -0.66, 0.31, 0.000 +20120321, -0.10, 0.30, -0.40, 0.000 +20120322, -0.74, -0.13, -0.42, 0.000 +20120323, 0.39, 0.60, 0.31, 0.000 +20120326, 1.45, 0.47, -0.24, 0.000 +20120327, -0.30, -0.35, -0.31, 0.000 +20120328, -0.51, -0.02, 0.42, 0.000 +20120329, -0.16, -0.01, -0.23, 0.000 +20120330, 0.28, -0.71, -0.04, 0.000 +20120402, 0.77, 0.35, 0.03, 0.000 +20120403, -0.34, -0.29, -0.32, 0.000 +20120404, -1.11, -0.58, 0.05, 0.000 +20120405, -0.03, -0.08, -0.47, 0.000 +20120409, -1.21, -0.45, -0.05, 0.000 +20120410, -1.85, -0.41, 0.09, 0.000 +20120411, 0.85, 0.76, 0.28, 0.000 +20120412, 1.44, 0.07, 0.29, 0.000 +20120413, -1.25, -0.15, -0.76, 0.000 +20120416, -0.09, 0.15, 0.86, 0.000 +20120417, 1.55, 0.05, -0.24, 0.000 +20120418, -0.43, -0.48, -0.41, 0.000 +20120419, -0.57, -0.04, 0.30, 0.000 +20120420, 0.11, 0.54, -0.09, 0.000 +20120423, -0.95, -0.57, 0.16, 0.000 +20120424, 0.29, 0.22, 0.98, 0.000 +20120425, 1.44, 0.40, -1.05, 0.000 +20120426, 0.75, -0.04, -0.02, 0.000 +20120427, 0.35, 0.71, -0.18, 0.000 +20120430, -0.49, -0.61, 0.09, 0.000 +20120501, 0.48, -0.84, 0.39, 0.000 +20120502, -0.15, 0.69, -0.59, 0.000 +20120503, -0.92, -0.64, 0.12, 0.000 +20120504, -1.62, -0.21, 0.13, 0.000 +20120507, 0.04, 0.14, 0.50, 0.000 +20120508, -0.41, 0.36, 0.36, 0.000 +20120509, -0.62, 0.17, -0.25, 0.000 +20120510, 0.29, 0.06, 0.56, 0.000 +20120511, -0.29, 0.21, -0.94, 0.000 +20120514, -1.14, -0.07, -0.12, 0.000 +20120515, -0.52, 0.51, -0.20, 0.000 +20120516, -0.44, -0.17, -0.43, 0.000 +20120517, -1.64, -0.52, 0.43, 0.000 +20120518, -0.80, -0.18, 0.16, 0.000 +20120521, 1.69, 0.67, -1.18, 0.000 +20120522, 0.00, -0.87, 0.28, 0.000 +20120523, 0.26, 0.49, -0.27, 0.000 +20120524, 0.16, -0.01, 0.21, 0.000 +20120525, -0.16, 0.23, -0.10, 0.000 +20120529, 1.14, 0.17, -0.02, 0.000 +20120530, -1.47, -0.28, -0.26, 0.000 +20120531, -0.23, 0.13, 0.57, 0.000 +20120601, -2.60, -0.53, 0.21, 0.000 +20120604, -0.05, 0.10, -0.55, 0.000 +20120605, 0.68, 0.26, 0.06, 0.000 +20120606, 2.32, 0.07, 0.21, 0.000 +20120607, -0.10, -0.46, 0.13, 0.000 +20120608, 0.85, 0.21, 0.02, 0.000 +20120611, -1.40, -0.88, -0.05, 0.000 +20120612, 1.16, 0.10, 0.08, 0.000 +20120613, -0.77, -0.51, 0.35, 0.000 +20120614, 1.04, 0.18, 0.37, 0.000 +20120615, 1.07, 0.10, -0.06, 0.000 +20120618, 0.21, 0.12, -0.85, 0.000 +20120619, 1.09, 0.70, 0.16, 0.000 +20120620, -0.14, -0.10, 0.15, 0.000 +20120621, -2.26, -0.09, 0.13, 0.000 +20120622, 0.79, 0.67, 0.08, 0.000 +20120625, -1.62, 0.08, -0.14, 0.000 +20120626, 0.52, -0.13, -0.06, 0.000 +20120627, 0.92, 0.39, 0.48, 0.000 +20120628, -0.24, 0.16, 0.44, 0.000 +20120629, 2.55, 0.39, -0.71, 0.000 +20120702, 0.33, 0.71, -0.04, 0.000 +20120703, 0.76, 0.72, 0.07, 0.000 +20120705, -0.36, 0.58, -0.87, 0.000 +20120706, -0.99, -0.43, 0.36, 0.000 +20120709, -0.23, -0.27, -0.24, 0.000 +20120710, -0.84, -0.38, 0.31, 0.000 +20120711, -0.08, -0.39, 0.74, 0.000 +20120712, -0.50, 0.23, -0.81, 0.000 +20120713, 1.62, -0.40, 0.57, 0.000 +20120716, -0.31, -0.42, -0.25, 0.000 +20120717, 0.67, -0.53, 0.24, 0.000 +20120718, 0.71, 0.30, -0.79, 0.000 +20120719, 0.27, -0.35, -0.97, 0.000 +20120720, -1.06, -0.32, 0.07, 0.000 +20120723, -1.02, -0.69, 0.20, 0.000 +20120724, -0.99, -0.57, 0.26, 0.000 +20120725, -0.01, 0.26, -0.05, 0.000 +20120726, 1.53, -0.82, 0.39, 0.000 +20120727, 1.96, 0.59, 0.08, 0.000 +20120730, -0.13, -0.40, 0.26, 0.000 +20120731, -0.47, 0.00, 0.25, 0.000 +20120801, -0.50, -1.59, 0.29, 0.000 +20120802, -0.69, 0.23, -0.41, 0.000 +20120803, 1.99, 0.55, 0.57, 0.000 +20120806, 0.34, 0.58, 0.07, 0.000 +20120807, 0.64, 0.34, 0.07, 0.000 +20120808, 0.09, -0.25, 0.57, 0.000 +20120809, 0.12, 0.37, 0.11, 0.000 +20120810, 0.17, -0.33, -0.02, 0.000 +20120813, -0.14, -0.16, 0.00, 0.000 +20120814, -0.03, -0.43, -0.05, 0.000 +20120815, 0.27, 0.73, -0.07, 0.000 +20120816, 0.75, 0.47, -0.17, 0.000 +20120817, 0.27, 0.58, 0.11, 0.000 +20120820, -0.06, -0.46, 0.59, 0.000 +20120821, -0.31, 0.10, 0.40, 0.000 +20120822, 0.00, -0.44, -0.35, 0.000 +20120823, -0.78, -0.01, -0.36, 0.000 +20120824, 0.61, -0.27, -0.03, 0.000 +20120827, -0.06, 0.12, -0.12, 0.000 +20120828, 0.01, 0.59, -0.09, 0.000 +20120829, 0.15, 0.25, 0.12, 0.000 +20120830, -0.80, -0.46, 0.00, 0.000 +20120831, 0.52, -0.07, 0.00, 0.000 +20120904, 0.08, 0.96, -0.17, 0.000 +20120905, -0.05, -0.07, 0.32, 0.000 +20120906, 2.07, -0.08, 0.34, 0.000 +20120907, 0.45, 0.00, 0.78, 0.000 +20120910, -0.57, 0.29, -0.06, 0.000 +20120911, 0.28, 0.03, 0.54, 0.000 +20120912, 0.27, 0.12, 0.31, 0.000 +20120913, 1.56, -0.40, 0.56, 0.000 +20120914, 0.54, 0.56, 0.48, 0.000 +20120917, -0.42, -0.18, -0.79, 0.000 +20120918, -0.15, -0.01, -0.24, 0.000 +20120919, 0.18, -0.15, 0.05, 0.000 +20120920, -0.13, -0.42, -0.17, 0.000 +20120921, 0.04, 0.48, -0.04, 0.000 +20120924, -0.26, -0.22, 0.33, 0.000 +20120925, -1.11, -0.35, -0.36, 0.000 +20120926, -0.57, -0.03, 0.03, 0.000 +20120927, 0.99, 0.24, -0.15, 0.000 +20120928, -0.46, -0.31, -0.25, 0.000 +20121001, 0.26, 0.07, 0.24, 0.000 +20121002, 0.10, -0.15, 0.27, 0.000 +20121003, 0.36, -0.66, -0.02, 0.000 +20121004, 0.76, -0.20, 0.77, 0.000 +20121005, -0.03, -0.18, 0.22, 0.000 +20121008, -0.36, -0.23, 0.21, 0.000 +20121009, -1.05, -0.30, 0.35, 0.000 +20121010, -0.58, 0.38, 0.26, 0.000 +20121011, 0.11, 0.33, 0.68, 0.000 +20121012, -0.34, -0.31, -0.90, 0.000 +20121015, 0.79, -0.16, 0.16, 0.000 +20121016, 1.00, -0.22, -0.24, 0.000 +20121017, 0.49, 0.16, 1.13, 0.000 +20121018, -0.31, -0.60, 0.26, 0.000 +20121019, -1.68, -0.41, 0.46, 0.000 +20121022, 0.01, -0.04, 0.18, 0.000 +20121023, -1.29, 0.98, -0.51, 0.000 +20121024, -0.28, -0.15, 0.43, 0.000 +20121025, 0.27, 0.16, -0.09, 0.000 +20121026, -0.07, -0.13, -0.40, 0.000 +20121031, 0.14, 0.50, 0.37, 0.000 +20121101, 1.19, 0.16, 0.21, 0.000 +20121102, -1.04, -0.54, 0.26, 0.000 +20121105, 0.28, 0.42, -0.22, 0.000 +20121106, 0.80, -0.04, 0.54, 0.000 +20121107, -2.31, -0.03, -1.45, 0.000 +20121108, -1.24, -0.28, 0.41, 0.000 +20121109, 0.15, 0.02, -0.14, 0.000 +20121112, 0.00, -0.18, 0.06, 0.000 +20121113, -0.40, -0.20, -0.30, 0.000 +20121114, -1.40, -0.35, -0.25, 0.000 +20121115, -0.24, -0.43, 0.17, 0.000 +20121116, 0.58, 0.07, 0.03, 0.000 +20121119, 1.98, 0.25, -0.01, 0.000 +20121120, 0.11, -0.06, 0.14, 0.000 +20121121, 0.31, 0.37, -0.06, 0.000 +20121123, 1.28, -0.15, 0.07, 0.000 +20121126, -0.14, 0.54, -0.17, 0.000 +20121127, -0.43, 0.44, -0.22, 0.000 +20121128, 0.83, 0.02, -0.28, 0.000 +20121129, 0.54, 0.68, -0.02, 0.000 +20121130, 0.02, -0.14, 0.27, 0.000 +20121203, -0.46, 0.28, 0.21, 0.001 +20121204, -0.16, 0.36, -0.06, 0.001 +20121205, 0.17, -0.66, 0.99, 0.001 +20121206, 0.31, -0.18, -0.15, 0.001 +20121207, 0.27, -0.43, 0.34, 0.001 +20121210, 0.11, 0.46, 0.02, 0.001 +20121211, 0.68, 0.46, -0.06, 0.001 +20121212, -0.02, -0.70, 0.54, 0.001 +20121213, -0.57, 0.03, 0.06, 0.001 +20121214, -0.34, 0.31, 0.25, 0.001 +20121217, 1.16, -0.07, 0.59, 0.001 +20121218, 1.20, 0.32, 0.08, 0.001 +20121219, -0.60, 0.58, 0.24, 0.001 +20121220, 0.53, -0.24, 0.72, 0.001 +20121221, -0.88, 0.43, -0.33, 0.001 +20121224, -0.24, -0.20, 0.00, 0.001 +20121226, -0.54, -0.16, 0.34, 0.001 +20121227, -0.11, 0.01, -0.17, 0.001 +20121228, -1.00, 0.45, 0.00, 0.001 +20121231, 1.71, 0.43, -0.07, 0.001 +20130102, 2.62, 0.16, 0.35, 0.000 +20130103, -0.14, 0.12, 0.04, 0.000 +20130104, 0.55, 0.10, 0.43, 0.000 +20130107, -0.31, -0.09, -0.36, 0.000 +20130108, -0.27, 0.05, -0.07, 0.000 +20130109, 0.34, 0.29, -0.41, 0.000 +20130110, 0.66, -0.66, 0.51, 0.000 +20130111, 0.02, 0.08, -0.45, 0.000 +20130114, -0.06, 0.03, -0.08, 0.000 +20130115, 0.19, 0.24, 0.00, 0.000 +20130116, -0.04, -0.24, 0.23, 0.000 +20130117, 0.61, 0.42, -0.09, 0.000 +20130118, 0.29, 0.03, -0.11, 0.000 +20130122, 0.48, 0.15, 0.46, 0.000 +20130123, 0.10, -0.30, -0.13, 0.000 +20130124, 0.09, 0.27, 0.05, 0.000 +20130125, 0.59, -0.04, -0.28, 0.000 +20130128, -0.14, 0.39, 0.12, 0.000 +20130129, 0.36, -0.45, 0.35, 0.000 +20130130, -0.38, -0.88, 0.12, 0.000 +20130131, -0.08, 0.68, 0.19, 0.000 +20130201, 0.99, 0.07, 0.26, 0.000 +20130204, -1.19, -0.14, -0.15, 0.000 +20130205, 1.07, -0.10, 0.18, 0.000 +20130206, 0.15, 0.30, 0.12, 0.000 +20130207, -0.15, -0.06, 0.02, 0.000 +20130208, 0.58, 0.01, -0.21, 0.000 +20130211, -0.08, -0.05, 0.39, 0.000 +20130212, 0.16, 0.21, 0.72, 0.000 +20130213, 0.14, 0.11, -0.01, 0.000 +20130214, 0.11, 0.34, 0.10, 0.000 +20130215, -0.11, 0.03, -0.10, 0.000 +20130219, 0.74, 0.22, 0.17, 0.000 +20130220, -1.36, -0.55, -0.63, 0.000 +20130221, -0.66, -0.31, -0.06, 0.000 +20130222, 0.94, 0.16, -0.06, 0.000 +20130225, -1.82, -0.21, -0.72, 0.000 +20130226, 0.58, -0.18, 0.02, 0.000 +20130227, 1.29, -0.38, 0.16, 0.000 +20130228, -0.05, 0.10, -0.16, 0.000 +20130301, 0.22, 0.13, -0.33, 0.000 +20130304, 0.47, -0.41, 0.11, 0.000 +20130305, 1.00, 0.22, -0.18, 0.000 +20130306, 0.18, 0.06, 0.47, 0.000 +20130307, 0.27, 0.22, 0.41, 0.000 +20130308, 0.52, 0.40, -0.15, 0.000 +20130311, 0.30, -0.34, 0.23, 0.000 +20130312, -0.22, 0.05, -0.14, 0.000 +20130313, 0.20, 0.19, 0.08, 0.000 +20130314, 0.58, 0.37, 0.40, 0.000 +20130315, -0.19, 0.02, 0.43, 0.000 +20130318, -0.50, 0.11, -0.23, 0.000 +20130319, -0.24, -0.02, 0.03, 0.000 +20130320, 0.76, 0.26, 0.00, 0.000 +20130321, -0.85, 0.17, -0.28, 0.000 +20130322, 0.62, -0.46, -0.30, 0.000 +20130325, -0.29, 0.29, 0.02, 0.000 +20130326, 0.76, -0.37, -0.22, 0.000 +20130327, -0.02, 0.16, -0.31, 0.000 +20130328, 0.39, -0.27, -0.30, 0.000 +20130401, -0.57, -0.93, 0.02, 0.000 +20130402, 0.33, -0.90, -0.32, 0.000 +20130403, -1.16, -0.42, -0.20, 0.000 +20130404, 0.42, 0.18, 0.25, 0.000 +20130405, -0.41, 0.05, 0.35, 0.000 +20130408, 0.70, 0.14, 0.29, 0.000 +20130409, 0.31, -0.40, 0.19, 0.000 +20130410, 1.28, 0.64, -0.10, 0.000 +20130411, 0.35, -0.20, -0.15, 0.000 +20130412, -0.28, -0.14, -0.46, 0.000 +20130415, -2.48, -1.49, -0.28, 0.000 +20130416, 1.47, 0.18, 0.07, 0.000 +20130417, -1.46, -0.29, -0.54, 0.000 +20130418, -0.71, 0.17, 0.02, 0.000 +20130419, 0.97, 0.04, 0.12, 0.000 +20130422, 0.45, -0.15, -0.14, 0.000 +20130423, 1.11, 0.45, 0.63, 0.000 +20130424, 0.06, 0.38, 1.22, 0.000 +20130425, 0.49, 0.20, 0.01, 0.000 +20130426, -0.20, -0.35, -0.22, 0.000 +20130429, 0.67, 0.13, -0.08, 0.000 +20130430, 0.29, 0.37, -0.05, 0.000 +20130501, -1.08, -1.40, -0.27, 0.000 +20130502, 1.04, 0.59, 0.13, 0.000 +20130503, 1.12, 0.64, 0.16, 0.000 +20130506, 0.23, 0.24, 0.84, 0.000 +20130507, 0.54, 0.12, 0.14, 0.000 +20130508, 0.44, -0.21, 0.14, 0.000 +20130509, -0.31, 0.11, -0.30, 0.000 +20130510, 0.54, 0.42, -0.20, 0.000 +20130513, -0.02, -0.23, -0.06, 0.000 +20130514, 1.10, 0.12, 0.31, 0.000 +20130515, 0.51, -0.15, 0.27, 0.000 +20130516, -0.50, 0.15, -0.28, 0.000 +20130517, 1.04, 0.00, 0.38, 0.000 +20130520, -0.06, 0.37, 0.49, 0.000 +20130521, 0.16, -0.10, -0.08, 0.000 +20130522, -0.92, -0.72, -0.17, 0.000 +20130523, -0.19, 0.47, -0.10, 0.000 +20130524, -0.06, 0.15, 0.05, 0.000 +20130528, 0.77, 0.65, 0.22, 0.000 +20130529, -0.70, -0.36, 0.59, 0.000 +20130530, 0.50, 0.31, 0.48, 0.000 +20130531, -1.31, 0.51, -0.24, 0.000 +20130603, 0.48, 0.16, -0.11, 0.000 +20130604, -0.55, -0.29, -0.16, 0.000 +20130605, -1.38, 0.06, -0.26, 0.000 +20130606, 0.89, 0.14, 0.26, 0.000 +20130607, 1.30, -0.47, 0.07, 0.000 +20130610, 0.07, 0.65, 0.22, 0.000 +20130611, -1.04, -0.01, -0.58, 0.000 +20130612, -0.82, 0.02, 0.03, 0.000 +20130613, 1.47, 0.11, 0.31, 0.000 +20130614, -0.59, -0.24, -0.56, 0.000 +20130617, 0.74, -0.09, 0.02, 0.000 +20130618, 0.80, 0.37, -0.06, 0.000 +20130619, -1.28, 0.16, 0.12, 0.000 +20130620, -2.45, -0.03, 0.34, 0.000 +20130621, 0.13, 0.19, -0.08, 0.000 +20130624, -1.19, 0.08, -0.66, 0.000 +20130625, 0.96, -0.02, 0.85, 0.000 +20130626, 0.92, -0.75, -0.13, 0.000 +20130627, 0.77, 0.83, 0.36, 0.000 +20130628, -0.33, 0.32, -0.14, 0.000 +20130701, 0.71, 0.83, -0.13, 0.000 +20130702, -0.10, 0.00, 0.08, 0.000 +20130703, 0.11, 0.19, -0.21, 0.000 +20130705, 1.11, 0.37, 0.45, 0.000 +20130708, 0.53, -0.19, 0.05, 0.000 +20130709, 0.74, 0.04, 0.26, 0.000 +20130710, 0.06, 0.35, -0.41, 0.000 +20130711, 1.32, -0.11, -0.63, 0.000 +20130712, 0.33, -0.01, 0.20, 0.000 +20130715, 0.20, 0.50, 0.34, 0.000 +20130716, -0.41, 0.03, 0.08, 0.000 +20130717, 0.30, -0.04, 0.18, 0.000 +20130718, 0.54, 0.03, 0.96, 0.000 +20130719, 0.09, -0.12, 0.28, 0.000 +20130722, 0.22, 0.11, 0.29, 0.000 +20130723, -0.15, 0.06, 0.28, 0.000 +20130724, -0.39, -0.26, -0.25, 0.000 +20130725, 0.42, 0.59, -0.35, 0.000 +20130726, 0.02, -0.64, -0.22, 0.000 +20130729, -0.37, -0.32, -0.28, 0.000 +20130730, 0.12, 0.19, -0.52, 0.000 +20130731, 0.09, 0.15, 0.09, 0.000 +20130801, 1.40, 0.06, 0.05, 0.000 +20130802, 0.20, -0.21, -0.33, 0.000 +20130805, -0.07, 0.50, -0.17, 0.000 +20130806, -0.68, -0.32, -0.09, 0.000 +20130807, -0.42, -0.34, 0.02, 0.000 +20130808, 0.47, 0.01, -0.01, 0.000 +20130809, -0.29, 0.13, -0.19, 0.000 +20130812, -0.02, 0.58, -0.22, 0.000 +20130813, 0.20, -0.29, -0.05, 0.000 +20130814, -0.50, 0.14, 0.29, 0.000 +20130815, -1.47, -0.37, 0.30, 0.000 +20130816, -0.26, 0.05, 0.10, 0.000 +20130819, -0.62, -0.19, -0.75, 0.000 +20130820, 0.53, 0.84, 0.13, 0.000 +20130821, -0.59, -0.02, -0.46, 0.000 +20130822, 0.93, 0.51, 0.05, 0.000 +20130823, 0.38, -0.22, -0.14, 0.000 +20130826, -0.29, 0.50, -0.50, 0.000 +20130827, -1.75, -0.74, -0.32, 0.000 +20130828, 0.30, 0.10, 0.07, 0.000 +20130829, 0.34, 0.78, -0.41, 0.000 +20130830, -0.47, -1.14, -0.21, 0.000 +20130903, 0.46, 0.05, 0.09, 0.000 +20130904, 0.83, -0.01, -0.15, 0.000 +20130905, 0.19, 0.17, 0.37, 0.000 +20130906, 0.01, 0.04, 0.00, 0.000 +20130909, 1.09, 0.46, -0.21, 0.000 +20130910, 0.80, 0.01, 0.21, 0.000 +20130911, 0.28, -0.22, 0.01, 0.000 +20130912, -0.32, -0.23, -0.34, 0.000 +20130913, 0.29, 0.24, -0.01, 0.000 +20130916, 0.49, -0.44, 0.40, 0.000 +20130917, 0.54, 0.47, -0.14, 0.000 +20130918, 1.10, -0.16, -0.45, 0.000 +20130919, -0.13, 0.16, -0.60, 0.000 +20130920, -0.63, 0.53, 0.18, 0.000 +20130923, -0.45, 0.45, -0.37, 0.000 +20130924, -0.12, 0.53, 0.01, 0.000 +20130925, -0.23, 0.03, 0.58, 0.000 +20130926, 0.42, 0.20, -0.73, 0.000 +20130927, -0.39, -0.01, -0.06, 0.000 +20130930, -0.49, 0.50, 0.06, 0.000 +20131001, 0.90, 0.41, -0.13, 0.000 +20131002, -0.10, -0.37, -0.09, 0.000 +20131003, -0.88, -0.19, 0.20, 0.000 +20131004, 0.74, -0.02, 0.09, 0.000 +20131007, -0.95, -0.27, 0.00, 0.000 +20131008, -1.35, -0.47, 0.76, 0.000 +20131009, -0.05, -0.43, 0.62, 0.000 +20131010, 2.23, 0.16, -0.02, 0.000 +20131011, 0.71, 0.79, -0.01, 0.000 +20131014, 0.44, 0.23, -0.11, 0.000 +20131015, -0.73, -0.19, 0.01, 0.000 +20131016, 1.37, -0.32, 0.14, 0.000 +20131017, 0.70, 0.15, 0.04, 0.000 +20131018, 0.73, 0.34, -0.05, 0.000 +20131021, -0.02, -0.12, 0.06, 0.000 +20131022, 0.50, -0.28, 0.10, 0.000 +20131023, -0.51, 0.16, -0.33, 0.000 +20131024, 0.42, 0.40, -0.32, 0.000 +20131025, 0.33, -0.34, 0.13, 0.000 +20131028, 0.09, -0.06, 0.01, 0.000 +20131029, 0.54, -0.14, -0.12, 0.000 +20131030, -0.61, -0.76, 0.50, 0.000 +20131031, -0.34, -0.09, -0.43, 0.000 +20131101, 0.20, -0.68, 0.22, 0.000 +20131104, 0.47, 0.76, -0.03, 0.000 +20131105, -0.23, 0.00, -0.25, 0.000 +20131106, 0.27, -0.82, 0.39, 0.000 +20131107, -1.46, -0.36, 0.19, 0.000 +20131108, 1.45, 0.52, 0.42, 0.000 +20131111, 0.12, 0.01, -0.13, 0.000 +20131112, -0.19, 0.37, -0.71, 0.000 +20131113, 0.90, 0.09, -0.13, 0.000 +20131114, 0.43, -0.56, 0.31, 0.000 +20131115, 0.43, 0.06, -0.27, 0.000 +20131118, -0.50, -0.45, 0.46, 0.000 +20131119, -0.27, -0.33, 0.26, 0.000 +20131120, -0.33, 0.26, 0.02, 0.000 +20131121, 0.97, 0.79, -0.06, 0.000 +20131122, 0.50, -0.07, 0.12, 0.000 +20131125, -0.11, 0.15, 0.14, 0.000 +20131126, 0.18, 0.85, -0.48, 0.000 +20131127, 0.30, 0.35, -0.06, 0.000 +20131129, -0.02, 0.29, -0.17, 0.000 +20131202, -0.31, -0.97, 0.15, 0.000 +20131203, -0.34, -0.08, -0.10, 0.000 +20131204, -0.07, -0.20, 0.26, 0.000 +20131205, -0.35, 0.69, -0.64, 0.000 +20131206, 1.02, -0.28, 0.20, 0.000 +20131209, 0.17, -0.42, 0.00, 0.000 +20131210, -0.34, -0.56, 0.20, 0.000 +20131211, -1.16, -0.35, 0.05, 0.000 +20131212, -0.23, 0.36, 0.25, 0.000 +20131213, 0.10, 0.25, -0.01, 0.000 +20131216, 0.67, 0.58, -0.14, 0.000 +20131217, -0.26, 0.18, -0.16, 0.000 +20131218, 1.55, -0.47, 0.04, 0.000 +20131219, -0.10, -0.54, 0.16, 0.000 +20131220, 0.69, 1.29, -0.30, 0.000 +20131223, 0.62, 0.50, -0.05, 0.000 +20131224, 0.34, 0.11, 0.11, 0.000 +20131226, 0.44, -0.32, -0.31, 0.000 +20131227, -0.05, -0.07, 0.23, 0.000 +20131230, 0.00, 0.03, -0.30, 0.000 +20131231, 0.44, -0.17, 0.04, 0.000 +20140102, -0.88, -0.27, 0.12, 0.000 +20140103, 0.03, 0.36, 0.05, 0.000 +20140106, -0.34, -0.57, 0.26, 0.000 +20140107, 0.68, 0.40, -0.41, 0.000 +20140108, 0.04, 0.01, -0.11, 0.000 +20140109, 0.02, 0.17, -0.38, 0.000 +20140110, 0.27, 0.52, -0.78, 0.000 +20140113, -1.32, -0.07, 0.11, 0.000 +20140114, 1.15, 0.18, -0.39, 0.000 +20140115, 0.53, 0.22, 0.21, 0.000 +20140116, -0.07, 0.29, -0.68, 0.000 +20140117, -0.39, 0.03, 0.04, 0.000 +20140121, 0.30, 0.47, -0.01, 0.000 +20140122, 0.15, 0.27, 0.21, 0.000 +20140123, -0.86, 0.15, -0.51, 0.000 +20140124, -2.19, -0.39, 0.22, 0.000 +20140127, -0.65, -0.86, 0.46, 0.000 +20140128, 0.73, 0.18, -0.03, 0.000 +20140129, -1.07, -0.41, 0.26, 0.000 +20140130, 1.22, 0.31, -0.42, 0.000 +20140131, -0.66, -0.06, -0.39, 0.000 +20140203, -2.48, -0.89, 0.31, 0.000 +20140204, 0.77, -0.04, -0.10, 0.000 +20140205, -0.23, -0.61, 0.18, 0.000 +20140206, 1.21, -0.48, 0.23, 0.000 +20140207, 1.33, -0.16, -0.67, 0.000 +20140210, 0.16, 0.12, -0.44, 0.000 +20140211, 1.09, -0.19, 0.24, 0.000 +20140212, 0.11, 0.24, -0.09, 0.000 +20140213, 0.72, 0.73, -0.10, 0.000 +20140214, 0.42, -0.37, 0.37, 0.000 +20140218, 0.27, 0.98, -0.25, 0.000 +20140219, -0.74, -0.29, -0.40, 0.000 +20140220, 0.70, 0.53, -0.14, 0.000 +20140221, -0.09, 0.35, -0.04, 0.000 +20140224, 0.65, 0.19, 0.26, 0.000 +20140225, -0.10, 0.12, -0.61, 0.000 +20140226, 0.12, 0.68, -0.09, 0.000 +20140227, 0.54, 0.15, 0.02, 0.000 +20140228, 0.15, -0.71, 0.84, 0.000 +20140303, -0.70, 0.09, 0.15, 0.000 +20140304, 1.67, 1.11, -0.12, 0.000 +20140305, 0.01, -0.27, 0.28, 0.000 +20140306, 0.16, -0.32, 0.76, 0.000 +20140307, 0.04, -0.11, 0.51, 0.000 +20140310, -0.09, -0.10, 0.06, 0.000 +20140311, -0.62, -0.53, -0.19, 0.000 +20140312, 0.13, 0.29, -0.17, 0.000 +20140313, -1.21, -0.13, 0.27, 0.000 +20140314, -0.16, 0.68, -0.05, 0.000 +20140317, 0.90, -0.36, -0.01, 0.000 +20140318, 0.82, 0.74, -0.42, 0.000 +20140319, -0.59, -0.17, 0.61, 0.000 +20140320, 0.52, -0.48, 0.99, 0.000 +20140321, -0.37, -0.27, 0.88, 0.000 +20140324, -0.64, -0.89, 0.96, 0.000 +20140325, 0.30, -0.34, 0.13, 0.000 +20140326, -0.89, -1.19, 0.30, 0.000 +20140327, -0.19, -0.12, -0.25, 0.000 +20140328, 0.41, -0.43, 0.52, 0.000 +20140331, 0.97, 0.99, -0.17, 0.000 +20140401, 0.87, 0.75, -0.40, 0.000 +20140402, 0.29, 0.04, 0.12, 0.000 +20140403, -0.31, -0.89, 0.78, 0.000 +20140404, -1.47, -1.15, 0.74, 0.000 +20140407, -1.26, -0.30, -0.02, 0.000 +20140408, 0.50, 0.31, -0.23, 0.000 +20140409, 1.20, 0.33, -0.93, 0.000 +20140410, -2.24, -0.71, 0.86, 0.000 +20140411, -1.07, -0.41, 0.29, 0.000 +20140414, 0.70, -0.51, 0.20, 0.000 +20140415, 0.59, -0.38, 0.17, 0.000 +20140416, 1.13, 0.04, -0.45, 0.000 +20140417, 0.23, 0.32, 0.24, 0.000 +20140421, 0.36, 0.20, -0.43, 0.000 +20140422, 0.58, 0.72, -0.37, 0.000 +20140423, -0.31, -0.64, 0.89, 0.000 +20140424, 0.08, -0.41, -0.18, 0.000 +20140425, -1.05, -0.96, 0.60, 0.000 +20140428, 0.11, -0.65, -0.54, 0.000 +20140429, 0.56, -0.21, -0.22, 0.000 +20140430, 0.35, 0.24, -0.04, 0.000 +20140501, 0.04, -0.15, -0.17, 0.000 +20140502, -0.07, 0.23, 0.34, 0.000 +20140505, 0.13, -0.30, -0.52, 0.000 +20140506, -1.03, -0.54, 0.16, 0.000 +20140507, 0.45, -0.85, 1.17, 0.000 +20140508, -0.26, -0.99, 0.38, 0.000 +20140509, 0.25, 0.71, -0.37, 0.000 +20140512, 1.20, 1.42, -0.29, 0.000 +20140513, -0.05, -1.06, 0.18, 0.000 +20140514, -0.60, -1.10, -0.43, 0.000 +20140515, -0.90, 0.33, -0.27, 0.000 +20140516, 0.36, 0.26, -0.40, 0.000 +20140519, 0.50, 0.63, 0.00, 0.000 +20140520, -0.78, -0.81, 0.23, 0.000 +20140521, 0.81, -0.26, 0.04, 0.000 +20140522, 0.36, 0.63, -0.27, 0.000 +20140523, 0.49, 0.62, -0.23, 0.000 +20140527, 0.69, 0.70, -0.19, 0.000 +20140528, -0.11, -0.33, 0.27, 0.000 +20140529, 0.54, -0.19, -0.12, 0.000 +20140530, 0.06, -0.68, 0.28, 0.000 +20140602, 0.06, -0.68, 0.41, 0.000 +20140603, -0.05, -0.27, 0.18, 0.000 +20140604, 0.28, 0.23, -0.09, 0.000 +20140605, 0.77, 1.29, -0.18, 0.000 +20140606, 0.54, 0.48, 0.00, 0.000 +20140609, 0.22, 1.01, -0.30, 0.000 +20140610, -0.03, -0.18, -0.04, 0.000 +20140611, -0.34, -0.13, -0.29, 0.000 +20140612, -0.68, 0.10, 0.16, 0.000 +20140613, 0.31, -0.07, -0.19, 0.000 +20140616, 0.13, 0.46, -0.67, 0.000 +20140617, 0.34, 0.55, 0.46, 0.000 +20140618, 0.75, -0.27, -0.09, 0.000 +20140619, 0.12, -0.16, -0.06, 0.000 +20140620, 0.18, 0.18, 0.04, 0.000 +20140623, -0.01, -0.24, 0.08, 0.000 +20140624, -0.72, -0.33, -0.20, 0.000 +20140625, 0.53, 0.36, 0.06, 0.000 +20140626, -0.11, -0.08, 0.05, 0.000 +20140627, 0.26, 0.48, -0.23, 0.000 +20140630, 0.07, 0.26, 0.19, 0.000 +20140701, 0.74, 0.48, -0.37, 0.000 +20140702, -0.03, -0.45, -0.21, 0.000 +20140703, 0.59, 0.22, 0.08, 0.000 +20140707, -0.62, -1.26, 0.38, 0.000 +20140708, -0.82, -0.66, 0.71, 0.000 +20140709, 0.46, -0.39, -0.12, 0.000 +20140710, -0.49, -0.59, 0.02, 0.000 +20140711, 0.12, -0.21, -0.39, 0.000 +20140714, 0.46, 0.00, -0.13, 0.000 +20140715, -0.32, -0.94, 0.98, 0.000 +20140716, 0.32, -0.60, 0.32, 0.000 +20140717, -1.21, -0.39, 0.18, 0.000 +20140718, 1.12, 0.48, -0.47, 0.000 +20140721, -0.25, -0.24, 0.05, 0.000 +20140722, 0.53, 0.25, -0.32, 0.000 +20140723, 0.19, 0.13, -0.74, 0.000 +20140724, 0.05, -0.28, 0.04, 0.000 +20140725, -0.53, -0.36, 0.17, 0.000 +20140728, -0.08, -0.47, 0.28, 0.000 +20140729, -0.33, 0.70, -0.67, 0.000 +20140730, 0.12, 0.43, -0.29, 0.000 +20140731, -2.03, -0.20, 0.47, 0.000 +20140801, -0.32, -0.18, -0.06, 0.000 +20140804, 0.74, 0.02, -0.22, 0.000 +20140805, -0.84, 0.77, -0.19, 0.000 +20140806, 0.02, 0.37, 0.18, 0.000 +20140807, -0.52, -0.04, -0.14, 0.000 +20140808, 1.13, -0.20, -0.18, 0.000 +20140811, 0.40, 0.59, -0.29, 0.000 +20140812, -0.23, -0.60, 0.25, 0.000 +20140813, 0.69, -0.08, -0.24, 0.000 +20140814, 0.44, -0.24, 0.04, 0.000 +20140815, 0.00, -0.15, -0.15, 0.000 +20140818, 0.93, 0.60, -0.20, 0.000 +20140819, 0.49, -0.13, -0.11, 0.000 +20140820, 0.19, -0.64, 0.27, 0.000 +20140821, 0.28, -0.14, 0.82, 0.000 +20140822, -0.10, 0.30, -0.39, 0.000 +20140825, 0.50, -0.24, 0.04, 0.000 +20140826, 0.19, 0.70, -0.33, 0.000 +20140827, 0.00, -0.23, 0.15, 0.000 +20140828, -0.19, -0.42, 0.10, 0.000 +20140829, 0.39, 0.27, 0.09, 0.000 +20140902, 0.06, 0.47, -0.09, 0.000 +20140903, -0.14, -0.54, 0.23, 0.000 +20140904, -0.17, -0.14, -0.15, 0.000 +20140905, 0.45, -0.26, -0.06, 0.000 +20140908, -0.22, 0.52, -0.44, 0.000 +20140909, -0.72, -0.42, -0.02, 0.000 +20140910, 0.45, 0.20, -0.40, 0.000 +20140911, 0.19, 0.49, 0.20, 0.000 +20140912, -0.55, -0.23, 0.14, 0.000 +20140915, -0.28, -1.06, 0.66, 0.000 +20140916, 0.70, -0.39, -0.13, 0.000 +20140917, 0.17, 0.08, -0.20, 0.000 +20140918, 0.50, 0.01, 0.03, 0.000 +20140919, -0.18, -0.97, 0.05, 0.000 +20140922, -0.97, -0.57, 0.13, 0.000 +20140923, -0.62, -0.31, -0.05, 0.000 +20140924, 0.81, 0.08, -0.92, 0.000 +20140925, -1.62, 0.08, 0.15, 0.000 +20140926, 0.85, -0.04, -0.27, 0.000 +20140929, -0.22, 0.16, -0.44, 0.000 +20140930, -0.40, -1.01, 0.14, 0.000 +20141001, -1.39, -0.15, 0.33, 0.000 +20141002, 0.15, 1.01, -0.38, 0.000 +20141003, 1.08, -0.39, -0.41, 0.000 +20141006, -0.26, -0.78, 0.39, 0.000 +20141007, -1.56, -0.12, 0.12, 0.000 +20141008, 1.70, 0.02, -0.06, 0.000 +20141009, -2.17, -0.42, -0.40, 0.000 +20141010, -1.30, -0.16, 0.56, 0.000 +20141013, -1.59, 1.32, 0.50, 0.000 +20141014, 0.28, 0.86, -0.12, 0.000 +20141015, -0.53, 1.81, -1.31, 0.000 +20141016, 0.23, 1.08, 0.17, 0.000 +20141017, 1.14, -1.56, -0.10, 0.000 +20141020, 0.94, 0.20, -0.33, 0.000 +20141021, 1.98, -0.41, 0.03, 0.000 +20141022, -0.85, -0.57, 0.22, 0.000 +20141023, 1.29, 0.52, -0.46, 0.000 +20141024, 0.66, -0.46, -0.11, 0.000 +20141027, -0.17, 0.10, -0.26, 0.000 +20141028, 1.37, 1.58, -0.02, 0.000 +20141029, -0.18, -0.02, 0.43, 0.000 +20141030, 0.60, 0.27, -0.47, 0.000 +20141031, 1.23, 0.29, 0.19, 0.000 +20141103, -0.01, -0.26, -0.06, 0.000 +20141104, -0.35, -0.04, -0.11, 0.000 +20141105, 0.48, -0.53, 0.86, 0.000 +20141106, 0.49, 0.09, -0.48, 0.000 +20141107, 0.09, 0.02, 0.44, 0.000 +20141110, 0.33, 0.20, -0.50, 0.000 +20141111, 0.10, 0.01, -0.29, 0.000 +20141112, 0.07, 0.76, -0.29, 0.000 +20141113, -0.03, -0.91, -0.33, 0.000 +20141114, 0.06, -0.14, 0.14, 0.000 +20141117, -0.05, -0.98, 0.28, 0.000 +20141118, 0.51, 0.05, -0.36, 0.000 +20141119, -0.21, -0.93, -0.06, 0.000 +20141120, 0.31, 0.88, -0.03, 0.000 +20141121, 0.48, -0.39, -0.08, 0.000 +20141124, 0.40, 0.94, -0.58, 0.000 +20141125, -0.08, 0.06, -0.04, 0.000 +20141126, 0.30, 0.09, -0.45, 0.000 +20141128, -0.35, -0.93, -1.02, 0.000 +20141201, -0.90, -0.96, 0.61, 0.000 +20141202, 0.65, 0.41, 0.05, 0.000 +20141203, 0.46, 0.46, 0.30, 0.000 +20141204, -0.17, -0.32, 0.09, 0.000 +20141205, 0.25, 0.57, 0.25, 0.000 +20141208, -0.82, -0.59, 0.27, 0.000 +20141209, 0.13, 1.72, -0.29, 0.000 +20141210, -1.72, -0.62, -0.10, 0.000 +20141211, 0.49, -0.08, -0.20, 0.000 +20141212, -1.55, 0.49, -0.58, 0.000 +20141215, -0.68, -0.26, 0.11, 0.000 +20141216, -0.80, 0.62, 0.59, 0.000 +20141217, 2.15, 0.85, -0.10, 0.000 +20141218, 2.36, -0.88, -0.21, 0.000 +20141219, 0.43, -0.22, 0.19, 0.000 +20141222, 0.37, 0.19, -0.04, 0.000 +20141223, 0.21, -0.26, 1.05, 0.000 +20141224, 0.07, 0.36, -0.17, 0.000 +20141226, 0.39, 0.37, -0.32, 0.000 +20141229, 0.13, 0.16, 0.56, 0.000 +20141230, -0.48, 0.06, 0.34, 0.000 +20141231, -0.93, 0.49, -0.39, 0.000 +20150102, -0.11, -0.59, 0.09, 0.000 +20150105, -1.84, 0.33, -0.63, 0.000 +20150106, -1.04, -0.78, -0.26, 0.000 +20150107, 1.19, 0.17, -0.65, 0.000 +20150108, 1.81, -0.12, -0.28, 0.000 +20150109, -0.85, 0.01, -0.50, 0.000 +20150112, -0.79, 0.37, -0.37, 0.000 +20150113, -0.19, 0.28, 0.03, 0.000 +20150114, -0.60, 0.29, -0.49, 0.000 +20150115, -1.08, -0.95, 0.64, 0.000 +20150116, 1.36, 0.46, -0.15, 0.000 +20150120, 0.11, -0.67, -0.55, 0.000 +20150121, 0.42, -0.95, 0.55, 0.000 +20150122, 1.58, 0.46, 0.41, 0.000 +20150123, -0.47, 0.51, -0.82, 0.000 +20150126, 0.43, 0.56, -0.05, 0.000 +20150127, -1.21, 0.67, 0.23, 0.000 +20150128, -1.39, -0.08, -0.76, 0.000 +20150129, 0.98, 0.24, -0.01, 0.000 +20150130, -1.30, -0.77, 0.03, 0.000 +20150202, 1.25, -0.46, 0.99, 0.000 +20150203, 1.49, 0.18, 0.51, 0.000 +20150204, -0.35, -0.07, -0.21, 0.000 +20150205, 1.10, 0.48, -0.16, 0.000 +20150206, -0.20, 0.07, 0.38, 0.000 +20150209, -0.46, -0.38, 0.10, 0.000 +20150210, 1.04, -0.32, -0.70, 0.000 +20150211, 0.03, -0.11, -0.32, 0.000 +20150212, 1.00, 0.18, -0.10, 0.000 +20150213, 0.47, 0.19, -0.29, 0.000 +20150217, 0.17, -0.02, -0.01, 0.000 +20150218, 0.03, 0.29, -0.81, 0.000 +20150219, -0.01, 0.26, -0.36, 0.000 +20150220, 0.61, -0.41, -0.27, 0.000 +20150223, -0.08, 0.04, -0.37, 0.000 +20150224, 0.32, -0.04, 0.68, 0.000 +20150225, 0.02, 0.22, -0.51, 0.000 +20150226, -0.08, 0.62, -0.49, 0.000 +20150227, -0.36, -0.21, 0.22, 0.000 +20150302, 0.62, 0.24, -0.43, 0.000 +20150303, -0.43, -0.31, 0.30, 0.000 +20150304, -0.41, 0.09, -0.40, 0.000 +20150305, 0.15, 0.24, -0.43, 0.000 +20150306, -1.29, 0.27, 0.43, 0.000 +20150309, 0.37, 0.08, -0.02, 0.000 +20150310, -1.63, 0.42, -0.46, 0.000 +20150311, -0.04, 0.56, 0.52, 0.000 +20150312, 1.28, 0.38, 0.50, 0.000 +20150313, -0.57, 0.20, -0.04, 0.000 +20150316, 1.23, -0.77, -0.42, 0.000 +20150317, -0.20, 0.54, -0.03, 0.000 +20150318, 1.08, -0.51, 0.00, 0.000 +20150319, -0.36, 0.87, -1.11, 0.000 +20150320, 0.81, -0.14, 0.54, 0.000 +20150323, -0.19, 0.21, 0.24, 0.000 +20150324, -0.51, 0.58, -0.29, 0.000 +20150325, -1.56, -0.98, 1.04, 0.000 +20150326, -0.22, 0.11, -0.06, 0.000 +20150327, 0.32, 0.49, -0.70, 0.000 +20150330, 1.24, 0.01, -0.04, 0.000 +20150331, -0.75, 0.42, 0.38, 0.000 +20150401, -0.38, 0.34, 0.43, 0.000 +20150402, 0.35, -0.08, 0.30, 0.000 +20150406, 0.61, -0.27, -0.15, 0.000 +20150407, -0.22, -0.19, -0.16, 0.000 +20150408, 0.37, 0.54, -0.72, 0.000 +20150409, 0.41, -0.70, -0.06, 0.000 +20150410, 0.49, -0.07, -0.28, 0.000 +20150413, -0.38, 0.49, 0.23, 0.000 +20150414, 0.11, -0.19, 0.19, 0.000 +20150415, 0.57, 0.25, 0.32, 0.000 +20150416, -0.08, -0.08, -0.20, 0.000 +20150417, -1.23, -0.46, 0.23, 0.000 +20150420, 0.95, 0.16, -0.27, 0.000 +20150421, -0.10, 0.19, -0.76, 0.000 +20150422, 0.46, -0.37, 0.16, 0.000 +20150423, 0.29, 0.29, -0.22, 0.000 +20150424, 0.17, -0.51, -0.28, 0.000 +20150427, -0.54, -0.70, 0.56, 0.000 +20150428, 0.27, 0.21, 1.02, 0.000 +20150429, -0.38, -0.74, 0.74, 0.000 +20150430, -1.11, -1.06, 0.77, 0.000 +20150501, 1.01, -0.30, -0.63, 0.000 +20150504, 0.32, 0.03, 0.24, 0.000 +20150505, -1.19, -0.16, 0.51, 0.000 +20150506, -0.31, 0.64, -0.14, 0.000 +20150507, 0.39, 0.06, -0.39, 0.000 +20150508, 1.21, -0.57, -0.12, 0.000 +20150511, -0.39, 0.68, -0.03, 0.000 +20150512, -0.27, 0.00, 0.07, 0.000 +20150513, 0.01, 0.00, 0.02, 0.000 +20150514, 1.01, -0.10, -0.35, 0.000 +20150515, 0.05, -0.24, -0.20, 0.000 +20150518, 0.44, 0.74, -0.09, 0.000 +20150519, -0.09, -0.12, 0.23, 0.000 +20150520, -0.05, 0.22, -0.13, 0.000 +20150521, 0.23, -0.29, -0.02, 0.000 +20150522, -0.22, -0.11, -0.14, 0.000 +20150526, -1.01, -0.02, -0.01, 0.000 +20150527, 0.93, 0.32, -0.35, 0.000 +20150528, -0.12, 0.10, 0.13, 0.000 +20150529, -0.58, 0.02, 0.06, 0.000 +20150601, 0.17, -0.04, -0.22, 0.000 +20150602, -0.02, 0.33, 0.33, 0.000 +20150603, 0.39, 0.86, -0.24, 0.000 +20150604, -0.88, -0.10, -0.01, 0.000 +20150605, 0.06, 0.80, 0.05, 0.000 +20150608, -0.66, 0.05, 0.03, 0.000 +20150609, 0.02, -0.31, 0.35, 0.000 +20150610, 1.20, 0.15, 0.19, 0.000 +20150611, 0.21, -0.10, -0.11, 0.000 +20150612, -0.63, 0.33, 0.14, 0.000 +20150615, -0.45, 0.10, -0.13, 0.000 +20150616, 0.57, 0.09, 0.00, 0.000 +20150617, 0.16, -0.29, -0.63, 0.000 +20150618, 0.99, 0.21, -0.43, 0.000 +20150619, -0.43, 0.55, -0.20, 0.000 +20150622, 0.63, 0.08, -0.06, 0.000 +20150623, 0.12, 0.24, 0.27, 0.000 +20150624, -0.79, -0.11, 0.13, 0.000 +20150625, -0.25, 0.37, -0.20, 0.000 +20150626, -0.06, -0.23, 0.45, 0.000 +20150629, -2.15, -0.42, 0.19, 0.000 +20150630, 0.34, 0.29, -0.67, 0.000 +20150701, 0.60, -0.77, -0.07, 0.000 +20150702, -0.11, -0.57, -0.05, 0.000 +20150706, -0.37, 0.16, -0.55, 0.000 +20150707, 0.53, -0.44, -0.25, 0.000 +20150708, -1.68, -0.03, 0.07, 0.000 +20150709, 0.29, 0.16, -0.02, 0.000 +20150710, 1.24, 0.23, -0.55, 0.000 +20150713, 1.14, -0.07, -0.42, 0.000 +20150714, 0.47, 0.15, 0.13, 0.000 +20150715, -0.19, -0.80, -0.08, 0.000 +20150716, 0.78, -0.17, -0.62, 0.000 +20150717, 0.05, -0.60, -0.64, 0.000 +20150720, -0.01, -0.72, -0.57, 0.000 +20150721, -0.47, 0.02, 0.29, 0.000 +20150722, -0.18, 0.18, 0.19, 0.000 +20150723, -0.60, -0.36, -0.34, 0.000 +20150724, -1.08, -0.61, -0.02, 0.000 +20150727, -0.74, -0.25, 0.08, 0.000 +20150728, 1.23, -0.34, -0.12, 0.000 +20150729, 0.74, -0.36, 0.52, 0.000 +20150730, 0.12, 0.17, -0.26, 0.000 +20150731, -0.15, 0.82, -0.98, 0.000 +20150803, -0.35, -0.33, -0.16, 0.000 +20150804, -0.14, 0.09, -0.19, 0.000 +20150805, 0.36, 0.01, -0.45, 0.000 +20150806, -0.88, -0.52, 1.99, 0.000 +20150807, -0.36, -0.46, -0.35, 0.000 +20150810, 1.32, 0.15, 0.69, 0.000 +20150811, -0.98, -0.08, 0.43, 0.000 +20150812, 0.07, -0.09, -0.28, 0.000 +20150813, -0.14, -0.43, 0.02, 0.000 +20150814, 0.43, 0.13, 0.43, 0.000 +20150817, 0.60, 0.44, -0.88, 0.000 +20150818, -0.35, -0.64, 0.35, 0.000 +20150819, -0.85, -0.12, -0.22, 0.000 +20150820, -2.24, -0.28, 0.60, 0.000 +20150821, -2.95, 1.82, 0.15, 0.000 +20150824, -3.90, 0.34, -0.43, 0.000 +20150825, -1.17, 0.69, -0.61, 0.000 +20150826, 3.68, -1.36, -0.38, 0.000 +20150827, 2.40, -0.68, 0.60, 0.000 +20150828, 0.23, 0.98, 0.08, 0.000 +20150831, -0.74, 0.78, 1.41, 0.000 +20150901, -2.91, 0.32, -0.50, 0.000 +20150902, 1.81, -0.16, -0.93, 0.000 +20150903, 0.17, -0.33, 0.73, 0.000 +20150904, -1.39, 0.90, -0.58, 0.000 +20150908, 2.52, -0.37, -0.56, 0.000 +20150909, -1.34, 0.16, 0.12, 0.000 +20150910, 0.49, -0.13, -0.31, 0.000 +20150911, 0.44, -0.20, -0.70, 0.000 +20150914, -0.41, 0.03, 0.01, 0.000 +20150915, 1.22, -0.19, 0.25, 0.000 +20150916, 0.84, 0.02, 0.44, 0.000 +20150917, -0.17, 0.89, -1.49, 0.000 +20150918, -1.62, 0.46, -0.96, 0.000 +20150921, 0.36, -0.94, 1.20, 0.000 +20150922, -1.29, -0.27, 0.14, 0.000 +20150923, -0.27, -0.17, -0.14, 0.000 +20150924, -0.36, 0.25, 0.56, 0.000 +20150925, -0.22, -1.66, 1.87, 0.000 +20150928, -2.63, -0.27, 1.17, 0.000 +20150929, -0.07, -0.72, 0.72, 0.000 +20150930, 1.88, -0.43, -0.48, 0.000 +20151001, 0.13, -0.45, -0.04, 0.000 +20151002, 1.48, 0.34, -0.84, 0.000 +20151005, 1.93, 0.62, 0.77, 0.000 +20151006, -0.43, -0.23, 1.73, 0.000 +20151007, 0.94, 0.70, -0.24, 0.000 +20151008, 0.84, 0.24, 0.76, 0.000 +20151009, 0.12, 0.21, -1.08, 0.000 +20151012, 0.06, -0.40, -0.07, 0.000 +20151013, -0.74, -0.73, 0.69, 0.000 +20151014, -0.60, -0.26, -0.03, 0.000 +20151015, 1.56, 0.65, -0.15, 0.000 +20151016, 0.36, -0.49, -0.35, 0.000 +20151019, 0.00, 0.16, -0.71, 0.000 +20151020, -0.15, 0.02, 1.21, 0.000 +20151021, -0.74, -0.88, -0.18, 0.000 +20151022, 1.50, -0.78, 0.47, 0.000 +20151023, 1.09, -0.01, -0.59, 0.000 +20151026, -0.20, -0.35, -0.71, 0.000 +20151027, -0.42, -0.87, -0.88, 0.000 +20151028, 1.43, 1.41, 0.63, 0.000 +20151029, -0.20, -0.88, 0.10, 0.000 +20151030, -0.41, 0.22, -0.55, 0.000 +20151102, 1.25, 0.85, -0.01, 0.000 +20151103, 0.32, 0.44, 0.22, 0.000 +20151104, -0.26, 0.34, -0.33, 0.000 +20151105, -0.08, 0.04, 0.47, 0.000 +20151106, 0.14, 0.81, 0.28, 0.000 +20151109, -0.95, -0.21, -0.04, 0.000 +20151110, 0.13, -0.01, 0.26, 0.000 +20151111, -0.43, -0.52, -0.18, 0.000 +20151112, -1.45, -0.51, -0.45, 0.000 +20151113, -1.06, 0.31, 0.39, 0.000 +20151116, 1.39, -0.57, 0.46, 0.000 +20151117, -0.11, -0.12, -0.66, 0.000 +20151118, 1.61, 0.00, -0.09, 0.000 +20151119, -0.13, -0.26, -0.11, 0.000 +20151120, 0.35, 0.43, -0.41, 0.000 +20151123, -0.01, 0.66, -0.35, 0.000 +20151124, 0.21, 0.70, 0.26, 0.000 +20151125, 0.09, 0.87, -0.56, 0.000 +20151127, 0.09, 0.22, -0.29, 0.000 +20151130, -0.47, 0.14, 0.69, 0.000 +20151201, 0.97, -0.66, 0.24, 0.000 +20151202, -1.01, 0.25, -0.70, 0.000 +20151203, -1.50, -0.22, 0.42, 0.000 +20151204, 1.87, -1.04, -0.52, 0.000 +20151207, -0.84, -0.87, -0.66, 0.000 +20151208, -0.59, 0.48, -1.23, 0.000 +20151209, -0.83, -0.33, 0.42, 0.000 +20151210, 0.30, 0.11, -0.22, 0.000 +20151211, -2.03, -0.22, -0.06, 0.000 +20151214, 0.29, -1.05, -0.20, 0.000 +20151215, 1.10, 0.03, 0.77, 0.000 +20151216, 1.47, 0.01, -0.64, 0.000 +20151217, -1.46, 0.38, -0.31, 0.000 +20151218, -1.70, 0.76, -0.39, 0.000 +20151221, 0.74, -0.17, -0.06, 0.000 +20151222, 0.89, -0.04, 0.51, 0.000 +20151223, 1.30, 0.13, 0.58, 0.000 +20151224, -0.11, 0.30, -0.03, 0.000 +20151228, -0.29, -0.48, -0.38, 0.000 +20151229, 1.05, 0.09, -0.31, 0.000 +20151230, -0.74, -0.17, -0.14, 0.000 +20151231, -0.92, -0.24, 0.24, 0.000 +20160104, -1.59, -0.83, 0.53, 0.000 +20160105, 0.12, -0.22, 0.01, 0.000 +20160106, -1.35, -0.12, 0.00, 0.000 +20160107, -2.44, -0.29, 0.08, 0.000 +20160108, -1.11, -0.47, -0.03, 0.000 +20160111, -0.06, -0.64, 0.34, 0.000 +20160112, 0.71, -0.40, -0.78, 0.000 +20160113, -2.67, -0.69, 0.78, 0.000 +20160114, 1.65, -0.01, -0.40, 0.000 +20160115, -2.14, 0.42, -0.21, 0.000 +20160119, -0.20, -1.34, -0.07, 0.000 +20160120, -0.94, 1.85, -1.24, 0.000 +20160121, 0.45, -0.50, 0.01, 0.000 +20160122, 2.08, 0.22, -0.19, 0.000 +20160125, -1.71, -0.36, -0.99, 0.000 +20160126, 1.52, 0.38, 1.22, 0.000 +20160127, -1.11, -0.54, 1.71, 0.000 +20160128, 0.49, -0.47, 1.25, 0.000 +20160129, 2.57, 0.46, 0.37, 0.000 +20160201, -0.04, -0.21, -0.96, 0.001 +20160202, -2.00, -0.03, -0.35, 0.001 +20160203, 0.46, -0.31, 0.45, 0.001 +20160204, 0.27, 0.21, 0.33, 0.001 +20160205, -2.06, -1.10, 1.75, 0.001 +20160208, -1.51, -0.03, 0.89, 0.001 +20160209, -0.10, -0.47, -0.28, 0.001 +20160210, 0.01, -0.05, -0.55, 0.001 +20160211, -1.17, 0.50, -1.48, 0.001 +20160212, 1.98, -0.55, 1.14, 0.001 +20160216, 1.78, 0.55, -0.56, 0.001 +20160217, 1.75, -0.06, -0.64, 0.001 +20160218, -0.51, 0.01, 0.23, 0.001 +20160219, 0.06, 0.43, -0.63, 0.001 +20160222, 1.43, -0.27, 0.24, 0.001 +20160223, -1.22, 0.47, -0.52, 0.001 +20160224, 0.53, 0.68, -0.33, 0.001 +20160225, 1.10, -0.43, 0.22, 0.001 +20160226, -0.01, 0.82, 0.26, 0.001 +20160229, -0.69, 0.66, 0.26, 0.001 +20160301, 2.34, -0.63, 0.30, 0.001 +20160302, 0.54, 0.50, 0.70, 0.001 +20160303, 0.51, 0.44, 0.65, 0.001 +20160304, 0.37, 0.27, 0.29, 0.001 +20160307, 0.21, 1.21, 0.55, 0.001 +20160308, -1.27, -1.14, -0.49, 0.001 +20160309, 0.50, 0.04, 0.38, 0.001 +20160310, -0.11, -0.81, 0.63, 0.001 +20160311, 1.69, 0.26, 0.19, 0.001 +20160314, -0.12, -0.07, -0.87, 0.001 +20160315, -0.36, -1.43, 0.66, 0.001 +20160316, 0.63, 0.10, -0.04, 0.001 +20160317, 0.72, 0.83, 0.58, 0.001 +20160318, 0.54, 0.34, -0.19, 0.001 +20160321, 0.10, -0.20, -0.31, 0.001 +20160322, -0.05, -0.01, -0.44, 0.001 +20160323, -0.86, -1.17, -0.09, 0.001 +20160324, 0.00, 0.46, -0.05, 0.001 +20160328, 0.04, -0.03, 0.14, 0.001 +20160329, 1.07, 1.77, -1.18, 0.001 +20160330, 0.41, -0.28, 0.15, 0.001 +20160331, -0.11, 0.44, -0.48, 0.001 +20160401, 0.64, -0.25, -0.62, 0.000 +20160404, -0.41, -0.25, -0.74, 0.000 +20160405, -0.94, -0.08, -0.36, 0.000 +20160406, 1.14, 0.17, -0.82, 0.000 +20160407, -1.23, -0.05, -0.35, 0.000 +20160408, 0.29, 0.02, 0.69, 0.000 +20160411, -0.28, -0.10, 0.95, 0.000 +20160412, 0.99, -0.06, 0.85, 0.000 +20160413, 1.23, 0.84, 0.35, 0.000 +20160414, 0.03, -0.28, 0.18, 0.000 +20160415, -0.04, 0.33, -0.32, 0.000 +20160418, 0.65, 0.09, -0.19, 0.000 +20160419, 0.29, -0.35, 1.49, 0.000 +20160420, 0.15, -0.10, 0.54, 0.000 +20160421, -0.47, 0.11, -0.60, 0.000 +20160422, 0.12, 0.82, 0.49, 0.000 +20160425, -0.24, -0.58, -0.18, 0.000 +20160426, 0.29, 0.66, 0.78, 0.000 +20160427, 0.21, 0.09, 0.68, 0.000 +20160428, -0.96, -0.15, 0.05, 0.000 +20160429, -0.50, -0.14, 0.38, 0.000 +20160502, 0.78, -0.01, -0.36, 0.001 +20160503, -1.05, -0.66, -0.50, 0.001 +20160504, -0.66, -0.15, 0.06, 0.001 +20160505, -0.08, -0.51, 0.08, 0.001 +20160506, 0.38, 0.05, 0.24, 0.001 +20160509, 0.05, 0.36, -1.49, 0.001 +20160510, 1.26, -0.40, 0.48, 0.001 +20160511, -0.89, -0.36, 0.78, 0.001 +20160512, -0.11, -0.60, 0.14, 0.001 +20160513, -0.82, 0.38, -0.66, 0.001 +20160516, 0.99, 0.28, -0.24, 0.001 +20160517, -0.95, -0.78, 0.61, 0.001 +20160518, 0.10, 0.10, 0.83, 0.001 +20160519, -0.33, -0.32, -0.30, 0.001 +20160520, 0.75, 0.90, -0.30, 0.001 +20160523, -0.18, 0.26, -0.32, 0.001 +20160524, 1.43, 0.68, -0.34, 0.001 +20160525, 0.72, -0.21, 0.57, 0.001 +20160526, -0.04, -0.09, -0.51, 0.001 +20160527, 0.49, 0.33, -0.22, 0.001 +20160531, -0.01, 0.50, -0.36, 0.001 +20160601, 0.20, 0.65, -0.24, 0.001 +20160602, 0.35, 0.31, -0.59, 0.001 +20160603, -0.38, -0.14, -0.10, 0.001 +20160606, 0.60, 0.68, 0.32, 0.001 +20160607, 0.12, 0.19, 0.10, 0.001 +20160608, 0.37, 0.45, -0.11, 0.001 +20160609, -0.27, -0.40, -0.21, 0.001 +20160610, -1.05, -0.35, -0.17, 0.001 +20160613, -0.84, -0.36, 0.10, 0.001 +20160614, -0.19, 0.27, -0.71, 0.001 +20160615, -0.11, 0.25, -0.06, 0.001 +20160616, 0.24, -0.34, -0.40, 0.001 +20160617, -0.30, -0.10, 0.94, 0.001 +20160620, 0.71, 0.61, -0.01, 0.001 +20160621, 0.21, -0.62, 0.50, 0.001 +20160622, -0.20, -0.31, 0.08, 0.001 +20160623, 1.45, 0.50, 0.43, 0.001 +20160624, -3.70, 0.15, -1.13, 0.001 +20160627, -2.07, -0.95, -0.66, 0.001 +20160628, 1.76, -0.39, 0.14, 0.001 +20160629, 1.80, 0.27, -0.07, 0.001 +20160630, 1.42, 0.35, 0.45, 0.001 +20160701, 0.24, 0.54, -0.40, 0.001 +20160705, -0.85, -0.63, -1.37, 0.001 +20160706, 0.62, 0.17, -0.12, 0.001 +20160707, 0.02, 0.35, -0.20, 0.001 +20160708, 1.60, 0.89, 0.36, 0.001 +20160711, 0.43, 0.60, 0.26, 0.001 +20160712, 0.75, 0.63, 1.00, 0.001 +20160713, -0.05, -0.53, 0.51, 0.001 +20160714, 0.51, -0.46, 0.45, 0.001 +20160715, -0.05, 0.30, 0.01, 0.001 +20160718, 0.25, -0.02, -0.12, 0.001 +20160719, -0.22, -0.63, 0.04, 0.001 +20160720, 0.48, 0.45, -0.88, 0.001 +20160721, -0.38, -0.05, -0.01, 0.001 +20160722, 0.48, 0.23, -0.08, 0.001 +20160725, -0.27, -0.03, -0.24, 0.001 +20160726, 0.13, 0.57, 0.53, 0.001 +20160727, -0.14, 0.58, -0.42, 0.001 +20160728, 0.18, -0.42, -0.35, 0.001 +20160729, 0.17, -0.02, 0.04, 0.001 +20160801, -0.16, 0.18, -0.86, 0.001 +20160802, -0.70, -0.58, 0.17, 0.001 +20160803, 0.45, 0.47, 0.84, 0.001 +20160804, 0.05, 0.08, -0.34, 0.001 +20160805, 0.93, 0.43, 0.88, 0.001 +20160808, -0.06, 0.02, 0.58, 0.001 +20160809, 0.05, -0.02, -0.32, 0.001 +20160810, -0.29, -0.44, -0.12, 0.001 +20160811, 0.54, 0.15, 0.04, 0.001 +20160812, -0.06, 0.08, -0.18, 0.001 +20160815, 0.39, 0.74, 0.40, 0.001 +20160816, -0.57, -0.26, 0.62, 0.001 +20160817, 0.12, -0.55, 0.25, 0.001 +20160818, 0.32, 0.46, 0.37, 0.001 +20160819, -0.11, 0.12, -0.12, 0.001 +20160822, -0.02, 0.25, -0.41, 0.001 +20160823, 0.27, 0.56, -0.01, 0.001 +20160824, -0.56, -0.48, 0.40, 0.001 +20160825, -0.08, 0.19, 0.48, 0.001 +20160826, -0.15, 0.15, -0.13, 0.001 +20160829, 0.53, -0.07, 0.35, 0.001 +20160830, -0.14, 0.10, 0.31, 0.001 +20160831, -0.24, -0.38, 0.13, 0.001 +20160901, 0.03, 0.12, -0.49, 0.001 +20160902, 0.53, 0.39, 0.36, 0.001 +20160906, 0.26, 0.07, -0.53, 0.001 +20160907, 0.09, 0.62, 0.03, 0.001 +20160908, -0.18, -0.03, 0.57, 0.001 +20160909, -2.47, -0.56, 0.31, 0.001 +20160912, 1.44, 0.00, -0.46, 0.001 +20160913, -1.48, -0.25, -0.47, 0.001 +20160914, -0.08, 0.12, -0.82, 0.001 +20160915, 1.07, 0.31, -0.33, 0.001 +20160916, -0.36, 0.33, -0.45, 0.001 +20160919, 0.05, 0.39, 0.17, 0.001 +20160920, -0.02, -0.21, -0.51, 0.001 +20160921, 1.12, 0.14, 0.33, 0.001 +20160922, 0.70, 0.85, -0.06, 0.001 +20160923, -0.60, -0.11, -0.20, 0.001 +20160926, -0.88, -0.22, -0.35, 0.001 +20160927, 0.64, -0.08, -0.53, 0.001 +20160928, 0.56, 0.22, 1.10, 0.001 +20160929, -0.98, -0.41, 0.54, 0.001 +20160930, 0.88, 0.37, 0.35, 0.001 +20161003, -0.26, -0.03, -0.13, 0.001 +20161004, -0.46, 0.03, 0.09, 0.001 +20161005, 0.58, 0.28, 0.78, 0.001 +20161006, -0.06, -0.27, 0.36, 0.001 +20161007, -0.38, -0.51, 0.16, 0.001 +20161010, 0.52, 0.58, 0.01, 0.001 +20161011, -1.30, -0.60, 0.48, 0.001 +20161012, 0.06, -0.23, 0.37, 0.001 +20161013, -0.42, -0.67, -0.62, 0.001 +20161014, 0.01, -0.37, 0.56, 0.001 +20161017, -0.29, -0.05, 0.15, 0.001 +20161018, 0.60, -0.17, 0.02, 0.001 +20161019, 0.25, 0.05, 0.92, 0.001 +20161020, -0.16, -0.02, -0.11, 0.001 +20161021, 0.02, -0.13, -0.32, 0.001 +20161024, 0.54, 0.05, -0.17, 0.001 +20161025, -0.46, -0.59, 0.23, 0.001 +20161026, -0.23, -0.86, 0.74, 0.001 +20161027, -0.33, -0.95, 0.62, 0.001 +20161028, -0.29, -0.10, 0.10, 0.001 +20161031, 0.02, 0.02, 0.13, 0.001 +20161101, -0.68, -0.35, 0.17, 0.001 +20161102, -0.73, -0.66, 0.36, 0.001 +20161103, -0.40, -0.46, 1.02, 0.001 +20161104, -0.12, 0.85, -0.43, 0.001 +20161107, 2.23, 0.19, -0.16, 0.001 +20161108, 0.40, -0.08, -0.20, 0.001 +20161109, 1.46, 1.83, 1.01, 0.001 +20161110, 0.32, 1.14, 1.82, 0.001 +20161111, 0.18, 2.50, -0.03, 0.001 +20161114, 0.21, 0.58, 1.42, 0.001 +20161115, 0.80, -0.55, 0.13, 0.001 +20161116, -0.12, 0.29, -0.56, 0.001 +20161117, 0.56, 0.13, -0.12, 0.001 +20161118, -0.16, 0.55, 0.38, 0.001 +20161121, 0.77, -0.25, 0.08, 0.001 +20161122, 0.31, 0.54, 0.58, 0.001 +20161123, 0.16, 0.51, 0.17, 0.001 +20161125, 0.40, -0.08, -0.24, 0.001 +20161128, -0.64, -0.76, 0.07, 0.001 +20161129, 0.11, -0.36, -0.06, 0.001 +20161130, -0.25, -0.38, 2.25, 0.001 +20161201, -0.36, -0.67, 2.05, 0.001 +20161202, 0.00, 0.06, -0.31, 0.001 +20161205, 0.75, 1.08, 0.28, 0.001 +20161206, 0.48, 0.63, 0.23, 0.001 +20161207, 1.26, -0.63, 0.53, 0.001 +20161208, 0.36, 1.15, 0.58, 0.001 +20161209, 0.46, -0.27, 0.13, 0.001 +20161212, -0.30, -0.93, -0.10, 0.001 +20161213, 0.60, -0.51, -0.29, 0.001 +20161214, -0.82, -0.36, -0.28, 0.001 +20161215, 0.46, 0.37, 0.28, 0.001 +20161216, -0.22, 0.05, -0.42, 0.001 +20161219, 0.22, 0.32, 0.08, 0.001 +20161220, 0.44, 0.43, 0.68, 0.001 +20161221, -0.24, -0.37, 0.24, 0.001 +20161222, -0.30, -0.75, 0.24, 0.001 +20161223, 0.19, 0.56, -0.51, 0.001 +20161227, 0.27, 0.21, 0.13, 0.001 +20161228, -0.87, -0.27, 0.09, 0.001 +20161229, -0.04, 0.14, -0.31, 0.001 +20161230, -0.52, -0.11, 0.20, 0.001 +20170103, 0.83, -0.11, 0.08, 0.002 +20170104, 0.79, 0.96, -0.15, 0.002 +20170105, -0.21, -0.87, -0.80, 0.002 +20170106, 0.29, -0.62, -0.31, 0.002 +20170109, -0.37, -0.27, -1.04, 0.002 +20170110, 0.16, 0.97, 0.57, 0.002 +20170111, 0.31, -0.31, 0.53, 0.002 +20170112, -0.30, -0.57, -0.88, 0.002 +20170113, 0.29, 0.63, -0.08, 0.002 +20170117, -0.49, -0.86, -0.60, 0.002 +20170118, 0.24, 0.17, 0.23, 0.002 +20170119, -0.38, -0.50, -0.03, 0.002 +20170120, 0.33, 0.06, 0.18, 0.002 +20170123, -0.29, -0.03, -0.31, 0.002 +20170124, 0.83, 0.68, 0.81, 0.002 +20170125, 0.84, 0.15, 0.36, 0.002 +20170126, -0.10, -0.62, 0.38, 0.002 +20170127, -0.12, 0.03, -0.67, 0.002 +20170130, -0.68, -0.72, -0.42, 0.002 +20170131, 0.00, 0.88, -0.55, 0.002 +20170201, 0.04, -0.05, 0.03, 0.002 +20170202, -0.02, -0.26, -0.31, 0.002 +20170203, 0.82, 0.54, 0.64, 0.002 +20170206, -0.27, -0.57, -0.20, 0.002 +20170207, -0.01, -0.31, -0.52, 0.002 +20170208, 0.06, -0.24, -0.53, 0.002 +20170209, 0.72, 0.70, 0.03, 0.002 +20170210, 0.38, 0.38, 0.12, 0.002 +20170213, 0.49, -0.32, 0.33, 0.002 +20170214, 0.45, -0.23, 0.33, 0.002 +20170215, 0.54, 0.18, -0.44, 0.002 +20170216, -0.16, -0.21, -0.04, 0.002 +20170217, 0.20, -0.02, -0.57, 0.002 +20170221, 0.60, -0.03, 0.13, 0.002 +20170222, -0.15, -0.38, 0.12, 0.002 +20170223, -0.11, -0.68, 0.25, 0.002 +20170224, 0.15, 0.04, -0.92, 0.002 +20170227, 0.22, 0.82, -0.35, 0.002 +20170228, -0.42, -1.38, 0.19, 0.002 +20170301, 1.47, 0.42, 0.72, 0.001 +20170302, -0.70, -0.53, -0.89, 0.001 +20170303, 0.09, -0.22, 0.14, 0.001 +20170306, -0.38, -0.35, -0.10, 0.001 +20170307, -0.36, -0.29, -0.05, 0.001 +20170308, -0.19, -0.11, -0.82, 0.001 +20170309, 0.04, -0.46, -0.27, 0.001 +20170310, 0.34, 0.09, -0.39, 0.001 +20170313, 0.13, 0.33, -0.02, 0.001 +20170314, -0.36, -0.23, 0.03, 0.001 +20170315, 0.86, 0.74, -0.40, 0.001 +20170316, -0.06, 0.45, 0.24, 0.001 +20170317, -0.08, 0.62, -0.26, 0.001 +20170320, -0.25, -0.07, -0.75, 0.001 +20170321, -1.48, -1.33, -0.69, 0.001 +20170322, 0.16, -0.31, -0.54, 0.001 +20170323, -0.03, 0.69, 0.46, 0.001 +20170324, -0.05, 0.13, -0.24, 0.001 +20170327, -0.05, 0.56, -0.52, 0.001 +20170328, 0.72, -0.15, 0.71, 0.001 +20170329, 0.18, 0.40, -0.06, 0.001 +20170330, 0.36, 0.33, 0.93, 0.001 +20170331, -0.16, 0.58, -0.30, 0.001 +20170403, -0.28, -1.10, -0.11, 0.003 +20170404, 0.05, -0.22, 0.31, 0.003 +20170405, -0.44, -0.79, -0.31, 0.003 +20170406, 0.32, 0.69, 0.49, 0.003 +20170407, -0.08, 0.13, -0.26, 0.003 +20170410, 0.08, 0.10, 0.10, 0.003 +20170411, -0.05, 0.80, 0.25, 0.003 +20170412, -0.49, -0.84, -0.53, 0.003 +20170413, -0.75, -0.24, -0.80, 0.003 +20170417, 0.89, 0.24, 0.22, 0.003 +20170418, -0.25, 0.35, -0.16, 0.003 +20170419, -0.08, 0.59, -0.38, 0.003 +20170420, 0.83, 0.52, 0.27, 0.003 +20170421, -0.28, 0.10, -0.14, 0.003 +20170424, 1.18, 0.17, 0.52, 0.003 +20170425, 0.66, 0.36, -0.05, 0.003 +20170426, 0.04, 0.71, 0.33, 0.003 +20170427, 0.05, -0.14, -0.96, 0.003 +20170428, -0.30, -0.67, -0.59, 0.003 +20170501, 0.21, 0.26, -0.13, 0.003 +20170502, 0.03, -0.46, -0.21, 0.003 +20170503, -0.19, -0.54, 0.19, 0.003 +20170504, 0.02, -0.07, -0.36, 0.003 +20170505, 0.46, 0.06, 0.04, 0.003 +20170508, -0.04, -0.25, 0.28, 0.003 +20170509, -0.05, 0.50, -0.79, 0.003 +20170510, 0.21, 0.20, 0.02, 0.003 +20170511, -0.26, -0.36, -0.14, 0.003 +20170512, -0.18, -0.29, -0.61, 0.003 +20170515, 0.53, 0.26, 0.19, 0.003 +20170516, -0.03, 0.15, -0.09, 0.003 +20170517, -1.97, -0.89, -0.54, 0.003 +20170518, 0.40, 0.05, -0.40, 0.003 +20170519, 0.70, -0.38, 0.40, 0.003 +20170522, 0.56, 0.28, -0.31, 0.003 +20170523, 0.18, -0.09, 0.60, 0.003 +20170524, 0.24, -0.15, -0.49, 0.003 +20170525, 0.42, -0.28, -0.77, 0.003 +20170526, 0.06, -0.02, 0.10, 0.003 +20170530, -0.19, -0.50, -0.32, 0.003 +20170531, -0.02, 0.03, -0.56, 0.003 +20170601, 0.95, 0.98, 0.04, 0.003 +20170602, 0.35, 0.55, -0.80, 0.003 +20170605, -0.17, -0.46, 0.00, 0.003 +20170606, -0.28, 0.10, -0.07, 0.003 +20170607, 0.15, -0.19, 0.02, 0.003 +20170608, 0.18, 1.16, 0.92, 0.003 +20170609, -0.12, 0.02, 2.39, 0.003 +20170612, -0.11, -0.27, 0.35, 0.003 +20170613, 0.55, 0.09, -0.14, 0.003 +20170614, -0.17, -0.48, -0.56, 0.003 +20170615, -0.30, -0.24, -0.12, 0.003 +20170616, -0.03, -0.21, -0.17, 0.003 +20170619, 0.86, 0.10, -0.76, 0.003 +20170620, -0.73, -0.40, -0.50, 0.003 +20170621, -0.07, -0.05, -1.69, 0.003 +20170622, 0.02, 0.52, -0.42, 0.003 +20170623, 0.24, 0.83, -0.50, 0.003 +20170626, 0.04, -0.05, 0.69, 0.003 +20170627, -0.85, -0.39, 1.33, 0.003 +20170628, 1.02, 0.75, 0.22, 0.003 +20170629, -0.83, -0.11, 1.37, 0.003 +20170630, 0.14, -0.09, -0.24, 0.003 +20170703, 0.24, 0.33, 1.23, 0.004 +20170705, 0.12, -0.69, -0.60, 0.004 +20170706, -0.95, -0.49, 0.10, 0.004 +20170707, 0.70, 0.43, -0.42, 0.004 +20170710, 0.05, -0.42, -0.11, 0.004 +20170711, 0.00, 0.38, -0.53, 0.004 +20170712, 0.72, 0.14, -0.55, 0.004 +20170713, 0.17, -0.06, 0.37, 0.004 +20170714, 0.42, -0.12, -0.51, 0.004 +20170717, 0.00, 0.21, 0.13, 0.004 +20170718, 0.04, -0.28, -0.36, 0.004 +20170719, 0.59, 0.53, 0.04, 0.004 +20170720, -0.01, 0.05, -0.01, 0.004 +20170721, -0.08, -0.42, -0.28, 0.004 +20170724, -0.03, 0.13, -0.21, 0.004 +20170725, 0.38, 0.33, 0.99, 0.004 +20170726, -0.06, -0.35, -0.69, 0.004 +20170727, -0.14, -0.63, 0.47, 0.004 +20170728, -0.17, -0.05, 0.23, 0.004 +20170731, -0.11, -0.35, 0.47, 0.004 +20170801, 0.24, -0.24, 0.18, 0.004 +20170802, -0.08, -1.17, 0.15, 0.004 +20170803, -0.21, -0.35, -0.28, 0.004 +20170804, 0.25, 0.32, 0.34, 0.004 +20170807, 0.16, -0.08, -0.60, 0.004 +20170808, -0.24, -0.08, 0.22, 0.004 +20170809, -0.14, -0.76, -0.09, 0.004 +20170810, -1.49, -0.31, 0.26, 0.004 +20170811, 0.20, 0.25, -0.89, 0.004 +20170814, 1.03, 0.26, 0.08, 0.004 +20170815, -0.11, -0.84, -0.03, 0.004 +20170816, 0.18, -0.12, -0.45, 0.004 +20170817, -1.59, -0.16, -0.15, 0.004 +20170818, -0.15, 0.14, 0.20, 0.004 +20170821, 0.06, -0.27, -0.21, 0.004 +20170822, 1.06, 0.00, -0.27, 0.004 +20170823, -0.32, 0.11, 0.39, 0.004 +20170824, -0.14, 0.59, 0.18, 0.004 +20170825, 0.18, 0.11, 0.60, 0.004 +20170828, 0.08, 0.35, -0.72, 0.004 +20170829, 0.10, 0.14, -0.40, 0.004 +20170830, 0.53, 0.03, -0.32, 0.004 +20170831, 0.62, 0.49, -0.43, 0.004 +20170901, 0.27, 0.40, 0.45, 0.005 +20170905, -0.81, 0.10, -0.95, 0.005 +20170906, 0.28, -0.04, 0.14, 0.005 +20170907, -0.07, 0.18, -0.94, 0.005 +20170908, -0.16, 0.03, 0.37, 0.005 +20170911, 1.08, -0.12, 0.65, 0.005 +20170912, 0.43, 0.24, 0.70, 0.005 +20170913, 0.11, 0.31, 0.35, 0.005 +20170914, -0.12, -0.05, -0.04, 0.005 +20170915, 0.19, 0.28, 0.13, 0.005 +20170918, 0.24, 0.37, 0.22, 0.005 +20170919, 0.15, -0.27, 0.34, 0.005 +20170920, 0.16, 0.23, 0.50, 0.005 +20170921, -0.28, 0.10, 0.36, 0.005 +20170922, 0.12, 0.43, 0.13, 0.005 +20170925, -0.25, 0.29, 0.64, 0.005 +20170926, 0.05, 0.39, 0.11, 0.005 +20170927, 0.63, 1.40, 0.12, 0.005 +20170928, 0.13, 0.16, -0.08, 0.005 +20170929, 0.35, -0.11, -0.28, 0.005 +20171002, 0.50, 0.83, 0.19, 0.004 +20171003, 0.26, -0.03, -0.03, 0.004 +20171004, 0.05, -0.29, -0.42, 0.004 +20171005, 0.55, -0.32, 0.31, 0.004 +20171006, -0.08, -0.06, -0.27, 0.004 +20171009, -0.22, -0.27, -0.04, 0.004 +20171010, 0.24, -0.03, 0.43, 0.004 +20171011, 0.16, -0.17, -0.26, 0.004 +20171012, -0.18, 0.06, -0.50, 0.004 +20171013, 0.04, -0.21, 0.11, 0.004 +20171016, 0.17, -0.28, 0.37, 0.004 +20171017, 0.01, -0.32, -0.27, 0.004 +20171018, 0.14, 0.31, 0.22, 0.004 +20171019, 0.02, -0.40, 0.20, 0.004 +20171020, 0.57, -0.08, 0.28, 0.004 +20171023, -0.45, -0.44, 0.17, 0.004 +20171024, 0.20, -0.18, 0.45, 0.004 +20171025, -0.51, 0.00, 0.09, 0.004 +20171026, 0.20, 0.04, 0.24, 0.004 +20171027, 0.82, 0.03, -1.10, 0.004 +20171030, -0.46, -0.78, -0.06, 0.004 +20171031, 0.23, 0.81, -0.21, 0.004 +20171101, 0.05, -0.79, 0.13, 0.004 +20171102, 0.06, -0.04, 0.48, 0.004 +20171103, 0.31, -0.41, -0.70, 0.004 +20171106, 0.06, 0.21, 0.22, 0.004 +20171107, -0.20, -1.35, -0.39, 0.004 +20171108, 0.12, 0.07, -0.61, 0.004 +20171109, -0.41, -0.03, 0.21, 0.004 +20171110, 0.01, 0.04, -0.37, 0.004 +20171113, 0.09, -0.30, 0.03, 0.004 +20171114, -0.22, -0.13, -0.01, 0.004 +20171115, -0.52, -0.06, 0.22, 0.004 +20171116, 1.01, 0.84, -0.52, 0.004 +20171117, -0.14, 0.74, 0.32, 0.004 +20171120, 0.21, 0.56, 0.01, 0.004 +20171121, 0.67, 0.42, -0.37, 0.004 +20171122, -0.05, 0.10, -0.04, 0.004 +20171124, 0.21, 0.03, -0.45, 0.004 +20171127, -0.06, -0.35, -0.02, 0.004 +20171128, 1.06, 0.36, 0.89, 0.004 +20171129, 0.02, -0.01, 1.48, 0.004 +20171130, 0.82, -0.56, -0.51, 0.004 +20171201, -0.22, -0.39, 0.40, 0.004 +20171204, -0.10, -0.37, 1.24, 0.004 +20171205, -0.43, -0.42, -0.26, 0.004 +20171206, -0.09, -0.44, -0.55, 0.004 +20171207, 0.42, 0.27, -0.18, 0.004 +20171208, 0.51, -0.44, -0.11, 0.004 +20171211, 0.26, -0.40, -0.14, 0.004 +20171212, 0.07, -0.55, 0.52, 0.004 +20171213, 0.02, 0.72, -0.87, 0.004 +20171214, -0.47, -0.68, -0.23, 0.004 +20171215, 0.92, 0.69, 0.02, 0.004 +20171218, 0.67, 0.75, 0.24, 0.004 +20171219, -0.30, -0.36, -0.25, 0.004 +20171220, 0.01, 0.34, 0.07, 0.004 +20171221, 0.24, 0.26, 0.63, 0.004 +20171222, -0.07, -0.24, -0.22, 0.004 +20171226, -0.07, 0.33, -0.05, 0.004 +20171227, 0.05, -0.14, -0.17, 0.004 +20171228, 0.22, 0.11, 0.04, 0.004 +20171229, -0.57, -0.30, 0.00, 0.004 +20180102, 0.85, 0.37, -0.25, 0.005 +20180103, 0.59, -0.37, -0.23, 0.005 +20180104, 0.42, -0.25, 0.25, 0.005 +20180105, 0.66, -0.33, -0.28, 0.005 +20180108, 0.19, -0.16, 0.07, 0.005 +20180109, 0.15, -0.35, -0.01, 0.005 +20180110, -0.07, 0.08, 0.55, 0.005 +20180111, 0.87, 1.14, 0.31, 0.005 +20180112, 0.66, -0.29, 0.15, 0.005 +20180116, -0.49, -1.01, -0.04, 0.005 +20180117, 0.95, -0.02, -0.14, 0.005 +20180118, -0.18, -0.50, -0.25, 0.005 +20180119, 0.57, 0.94, -0.08, 0.005 +20180122, 0.77, -0.33, -0.16, 0.005 +20180123, 0.22, 0.15, -0.35, 0.005 +20180124, -0.13, -0.79, 0.39, 0.005 +20180125, 0.07, 0.18, -0.51, 0.005 +20180126, 1.11, -0.63, -0.48, 0.005 +20180129, -0.62, -0.02, -0.27, 0.005 +20180130, -1.06, 0.12, -0.17, 0.005 +20180131, -0.07, -0.71, 0.04, 0.005 +20180201, 0.03, 0.10, 0.51, 0.006 +20180202, -2.13, 0.00, -0.19, 0.006 +20180205, -4.03, 0.76, -0.54, 0.006 +20180206, 1.67, -0.48, -0.24, 0.006 +20180207, -0.37, 0.46, 0.32, 0.006 +20180208, -3.68, 0.81, 0.48, 0.006 +20180209, 1.36, -0.58, 0.08, 0.006 +20180212, 1.36, -0.44, -0.26, 0.006 +20180213, 0.31, 0.05, -0.23, 0.006 +20180214, 1.52, 0.27, 0.44, 0.006 +20180215, 1.21, -0.12, -0.66, 0.006 +20180216, 0.03, 0.35, 0.12, 0.006 +20180220, -0.62, -0.32, -0.28, 0.006 +20180221, -0.43, 0.79, 0.17, 0.006 +20180222, 0.01, 0.04, -0.37, 0.006 +20180223, 1.54, -0.37, -0.15, 0.006 +20180226, 1.12, -0.48, -0.08, 0.006 +20180227, -1.25, -0.21, 0.05, 0.006 +20180228, -1.10, -0.41, -0.31, 0.006 +20180301, -1.18, 0.99, 0.01, 0.006 +20180302, 0.70, 1.16, -0.51, 0.006 +20180305, 1.06, -0.39, 0.25, 0.006 +20180306, 0.36, 0.67, 0.10, 0.006 +20180307, 0.05, 0.83, -0.49, 0.006 +20180308, 0.37, -0.47, -0.34, 0.006 +20180309, 1.70, -0.25, 0.23, 0.006 +20180312, -0.09, 0.46, -0.07, 0.006 +20180313, -0.67, 0.08, 0.05, 0.006 +20180314, -0.53, 0.25, -0.58, 0.006 +20180315, -0.18, -0.40, 0.30, 0.006 +20180316, 0.25, 0.44, 0.24, 0.006 +20180319, -1.38, 0.31, 0.45, 0.006 +20180320, 0.15, -0.06, -0.36, 0.006 +20180321, -0.06, 0.74, 0.46, 0.006 +20180322, -2.54, 0.47, -0.43, 0.006 +20180323, -2.09, 0.20, -0.18, 0.006 +20180326, 2.67, -0.68, 0.02, 0.006 +20180327, -1.87, -0.29, 0.46, 0.006 +20180328, -0.35, 0.11, 0.64, 0.006 +20180329, 1.41, -0.27, -0.24, 0.006 +20180402, -2.29, -0.14, 0.40, 0.007 +20180403, 1.24, -0.05, 0.19, 0.007 +20180404, 1.17, 0.33, -0.30, 0.007 +20180405, 0.75, 0.03, 0.50, 0.007 +20180406, -2.19, 0.40, -0.06, 0.007 +20180409, 0.30, -0.15, -0.50, 0.007 +20180410, 1.77, 0.39, -0.11, 0.007 +20180411, -0.49, 0.91, -0.29, 0.007 +20180412, 0.84, -0.21, 0.19, 0.007 +20180413, -0.37, 0.02, -0.25, 0.007 +20180416, 0.82, 0.08, -0.05, 0.007 +20180417, 1.09, 0.20, -1.22, 0.007 +20180418, 0.13, 0.23, 0.01, 0.007 +20180419, -0.49, -0.45, 1.01, 0.007 +20180420, -0.81, 0.05, 0.62, 0.007 +20180423, -0.05, -0.09, 0.20, 0.007 +20180424, -1.30, 0.47, 1.05, 0.007 +20180425, 0.10, -0.34, 0.02, 0.007 +20180426, 0.96, -0.36, -0.89, 0.007 +20180427, 0.01, -0.27, 0.10, 0.007 +20180430, -0.80, 0.03, -0.06, 0.007 +20180501, 0.24, 0.25, -0.58, 0.006 +20180502, -0.63, 1.26, -0.25, 0.006 +20180503, -0.25, -0.49, -0.17, 0.006 +20180504, 1.30, 0.04, -0.25, 0.006 +20180507, 0.42, 0.44, -0.36, 0.006 +20180508, 0.07, 0.48, 0.28, 0.006 +20180509, 0.89, -0.17, 0.20, 0.006 +20180510, 0.84, -0.43, -0.06, 0.006 +20180511, 0.19, 0.11, -0.36, 0.006 +20180514, 0.05, -0.35, 0.08, 0.006 +20180515, -0.55, 0.67, 0.44, 0.006 +20180516, 0.49, 0.70, -0.23, 0.006 +20180517, 0.02, 0.90, 0.25, 0.006 +20180518, -0.23, 0.56, -0.55, 0.006 +20180521, 0.72, -0.21, 0.42, 0.006 +20180522, -0.42, -0.76, 0.60, 0.006 +20180523, 0.29, 0.07, -0.72, 0.006 +20180524, -0.16, 0.35, -0.31, 0.006 +20180525, -0.21, 0.22, -0.39, 0.006 +20180529, -1.03, 1.32, -1.01, 0.006 +20180530, 1.31, 0.05, 0.37, 0.006 +20180531, -0.70, 0.11, -0.45, 0.006 +20180601, 1.06, -0.19, -0.17, 0.006 +20180604, 0.48, 0.19, -0.49, 0.006 +20180605, 0.16, 0.83, -0.40, 0.006 +20180606, 0.86, -0.35, 0.19, 0.006 +20180607, -0.14, -0.31, 0.93, 0.006 +20180608, 0.31, 0.08, -0.38, 0.006 +20180611, 0.12, 0.18, -0.16, 0.006 +20180612, 0.23, 0.25, -0.62, 0.006 +20180613, -0.33, 0.11, -0.21, 0.006 +20180614, 0.27, 0.34, -1.01, 0.006 +20180615, -0.08, 0.04, -0.25, 0.006 +20180618, -0.09, 0.78, 0.03, 0.006 +20180619, -0.38, 0.55, -0.18, 0.006 +20180620, 0.23, 0.74, -0.51, 0.006 +20180621, -0.73, -0.63, 0.33, 0.006 +20180622, 0.11, 0.00, 0.44, 0.006 +20180625, -1.48, -0.60, 0.58, 0.006 +20180626, 0.27, 0.60, -0.18, 0.006 +20180627, -1.02, -1.00, 0.40, 0.006 +20180628, 0.58, -0.16, -0.52, 0.006 +20180629, 0.07, -0.19, -0.25, 0.006 +20180702, 0.36, 0.42, -0.32, 0.008 +20180703, -0.44, 0.77, 0.08, 0.008 +20180705, 0.87, 0.42, -0.40, 0.008 +20180706, 0.87, 0.07, -0.37, 0.008 +20180709, 0.93, -0.37, 0.77, 0.008 +20180710, 0.21, -0.81, -0.08, 0.008 +20180711, -0.69, -0.01, -0.52, 0.008 +20180712, 0.86, -0.32, -1.09, 0.008 +20180713, 0.08, -0.12, -0.28, 0.008 +20180716, -0.16, -0.74, 0.85, 0.008 +20180717, 0.48, 0.24, -0.69, 0.008 +20180718, 0.27, -0.25, 0.61, 0.008 +20180719, -0.34, 0.97, -0.37, 0.008 +20180720, -0.10, -0.16, 0.07, 0.008 +20180723, 0.15, -0.24, 0.36, 0.008 +20180724, 0.22, -1.38, 0.52, 0.008 +20180725, 0.83, -0.39, -1.22, 0.008 +20180726, -0.20, 0.63, 0.61, 0.008 +20180727, -0.82, -1.39, 1.17, 0.008 +20180730, -0.70, -0.25, 1.66, 0.008 +20180731, 0.51, 0.77, -0.96, 0.008 +20180801, -0.13, 0.09, -0.29, 0.007 +20180802, 0.67, 0.35, -0.75, 0.007 +20180803, 0.31, -1.07, 0.56, 0.007 +20180806, 0.46, 0.26, -0.33, 0.007 +20180807, 0.29, 0.00, -0.15, 0.007 +20180808, -0.04, -0.13, 0.22, 0.007 +20180809, -0.05, 0.35, -0.32, 0.007 +20180810, -0.60, 0.43, -0.23, 0.007 +20180813, -0.46, -0.16, -0.30, 0.007 +20180814, 0.69, 0.29, 0.23, 0.007 +20180815, -0.91, -0.57, -0.11, 0.007 +20180816, 0.86, -0.08, 0.27, 0.007 +20180817, 0.30, 0.08, 0.04, 0.007 +20180820, 0.25, 0.12, 0.18, 0.007 +20180821, 0.33, 0.88, 0.14, 0.007 +20180822, 0.05, 0.41, -0.47, 0.007 +20180823, -0.19, -0.06, -0.32, 0.007 +20180824, 0.62, -0.04, -0.52, 0.007 +20180827, 0.74, -0.69, -0.12, 0.007 +20180828, -0.01, -0.12, -0.29, 0.007 +20180829, 0.56, -0.04, -0.59, 0.007 +20180830, -0.41, 0.30, -0.43, 0.007 +20180831, 0.08, 0.50, -0.44, 0.007 +20180904, -0.11, -0.34, -0.08, 0.008 +20180905, -0.41, -0.19, 0.70, 0.008 +20180906, -0.44, -0.40, -0.12, 0.008 +20180907, -0.18, 0.09, -0.21, 0.008 +20180910, 0.23, 0.10, -0.33, 0.008 +20180911, 0.37, -0.29, -0.21, 0.008 +20180912, 0.03, -0.09, -0.06, 0.008 +20180913, 0.45, -0.46, -0.36, 0.008 +20180914, 0.12, 0.26, 0.25, 0.008 +20180917, -0.71, -0.47, 0.92, 0.008 +20180918, 0.57, 0.06, -0.54, 0.008 +20180919, 0.06, -0.61, 1.17, 0.008 +20180920, 0.77, 0.29, -0.19, 0.008 +20180921, -0.13, -0.43, 0.39, 0.008 +20180924, -0.31, 0.03, -0.88, 0.008 +20180925, -0.05, 0.30, -0.44, 0.008 +20180926, -0.40, -0.40, -0.58, 0.008 +20180927, 0.27, -0.26, -0.57, 0.008 +20180928, -0.03, 0.41, -0.20, 0.008 +20181001, 0.16, -1.62, 0.38, 0.008 +20181002, -0.21, -1.00, 0.67, 0.008 +20181003, 0.20, 0.88, 0.43, 0.008 +20181004, -0.93, -1.05, 1.55, 0.008 +20181005, -0.64, -0.40, 0.41, 0.008 +20181008, -0.17, -0.38, 1.20, 0.008 +20181009, -0.18, -0.25, 0.16, 0.008 +20181010, -3.33, 0.27, 1.16, 0.008 +20181011, -1.96, 0.42, -0.89, 0.008 +20181012, 1.38, -0.89, -1.70, 0.008 +20181015, -0.48, 0.92, 0.47, 0.008 +20181016, 2.24, 0.68, -1.46, 0.008 +20181017, -0.08, -0.64, 0.18, 0.008 +20181018, -1.54, -0.57, 0.53, 0.008 +20181019, -0.25, -1.32, 0.79, 0.008 +20181022, -0.38, 0.43, -1.19, 0.008 +20181023, -0.62, -0.16, -0.33, 0.008 +20181024, -3.33, -0.89, 0.64, 0.008 +20181025, 1.93, 0.47, -0.73, 0.008 +20181026, -1.65, 0.56, 0.37, 0.008 +20181029, -0.77, -0.30, 1.64, 0.008 +20181030, 1.66, 0.37, 0.10, 0.008 +20181031, 1.22, -0.67, -0.69, 0.008 +20181101, 1.29, 1.31, -1.11, 0.008 +20181102, -0.53, 0.80, 0.65, 0.008 +20181105, 0.40, -0.99, 1.56, 0.008 +20181106, 0.58, -0.17, 0.04, 0.008 +20181107, 2.11, -0.35, -0.98, 0.008 +20181108, -0.28, -0.23, 0.23, 0.008 +20181109, -1.04, -0.86, 0.38, 0.008 +20181112, -2.06, -0.03, 0.98, 0.008 +20181113, -0.13, -0.12, 0.08, 0.008 +20181114, -0.77, -0.01, -0.20, 0.008 +20181115, 1.18, 0.38, -0.56, 0.008 +20181116, 0.15, -0.01, -0.01, 0.008 +20181119, -1.88, -0.66, 2.34, 0.008 +20181120, -1.85, 0.12, -0.63, 0.008 +20181121, 0.51, 0.98, -0.29, 0.008 +20181123, -0.55, 0.79, -0.58, 0.008 +20181126, 1.62, -0.68, -0.18, 0.008 +20181127, 0.11, -1.08, 0.29, 0.008 +20181128, 2.42, 0.48, -1.27, 0.008 +20181129, -0.22, -0.12, -0.17, 0.008 +20181130, 0.78, -0.36, -0.38, 0.008 +20181203, 1.13, -0.07, -0.70, 0.010 +20181204, -3.45, -0.98, -0.10, 0.010 +20181206, -0.16, 0.09, -1.00, 0.010 +20181207, -2.36, 0.21, 1.29, 0.010 +20181210, 0.10, -0.22, -1.57, 0.010 +20181211, -0.08, -0.08, -0.35, 0.010 +20181212, 0.68, 0.55, -0.14, 0.010 +20181213, -0.26, -1.50, -0.17, 0.010 +20181214, -1.89, -0.10, 0.60, 0.010 +20181217, -2.13, -0.26, 0.99, 0.010 +20181218, -0.03, -0.01, -0.55, 0.010 +20181219, -1.58, -0.66, 0.18, 0.010 +20181220, -1.62, -0.23, 0.77, 0.010 +20181221, -2.17, -0.58, 0.84, 0.010 +20181224, -2.55, 0.99, -0.46, 0.010 +20181226, 5.06, -0.01, -1.06, 0.010 +20181227, 0.78, -0.68, -0.09, 0.010 +20181228, -0.03, 0.76, 0.24, 0.010 +20181231, 0.90, -0.09, -0.47, 0.010 +20190102, 0.23, 0.57, 1.16, 0.010 +20190103, -2.45, 0.39, 1.23, 0.010 +20190104, 3.55, 0.44, -0.74, 0.010 +20190107, 0.94, 0.93, -0.67, 0.010 +20190108, 1.01, 0.49, -0.53, 0.010 +20190109, 0.56, 0.50, -0.04, 0.010 +20190110, 0.42, 0.01, -0.41, 0.010 +20190111, -0.01, 0.10, 0.29, 0.010 +20190114, -0.60, -0.58, 0.88, 0.010 +20190115, 1.06, 0.01, -0.89, 0.010 +20190116, 0.28, 0.10, 0.83, 0.010 +20190117, 0.75, 0.10, -0.19, 0.010 +20190118, 1.29, -0.34, 0.11, 0.010 +20190122, -1.53, -0.39, 0.31, 0.010 +20190123, 0.15, -0.41, -0.13, 0.010 +20190124, 0.23, 0.45, -0.10, 0.010 +20190125, 0.90, 0.47, -0.36, 0.010 +20190128, -0.80, -0.17, 0.66, 0.010 +20190129, -0.19, 0.00, 0.17, 0.010 +20190130, 1.51, -0.10, -1.07, 0.010 +20190131, 0.92, 0.14, -1.08, 0.010 +20190201, 0.14, -0.12, 0.34, 0.010 +20190204, 0.72, 0.52, -0.58, 0.010 +20190205, 0.43, -0.09, -0.57, 0.010 +20190206, -0.22, -0.01, 0.01, 0.010 +20190207, -0.93, -0.14, 0.41, 0.010 +20190208, 0.09, 0.02, -0.67, 0.010 +20190211, 0.14, 0.65, 0.20, 0.010 +20190212, 1.36, 0.04, -0.24, 0.010 +20190213, 0.28, 0.09, 0.05, 0.010 +20190214, -0.21, 0.52, -0.56, 0.010 +20190215, 1.13, 0.23, 0.53, 0.010 +20190219, 0.19, 0.28, 0.32, 0.010 +20190220, 0.19, 0.22, 0.59, 0.010 +20190221, -0.37, -0.07, -0.25, 0.010 +20190222, 0.65, 0.51, -1.37, 0.010 +20190225, 0.15, -0.23, -0.20, 0.010 +20190226, -0.16, -0.64, -0.30, 0.010 +20190227, 0.09, 0.22, -0.15, 0.010 +20190228, -0.31, 0.02, -0.27, 0.010 +20190301, 0.72, 0.31, -0.48, 0.009 +20190304, -0.52, -0.39, 0.34, 0.009 +20190305, -0.17, -0.32, -0.22, 0.009 +20190306, -0.84, -1.28, 0.09, 0.009 +20190307, -0.82, -0.08, -0.27, 0.009 +20190308, -0.22, 0.04, -0.13, 0.009 +20190311, 1.49, 0.33, -0.49, 0.009 +20190312, 0.25, -0.27, -0.04, 0.009 +20190313, 0.68, -0.30, 0.01, 0.009 +20190314, -0.10, -0.37, 0.23, 0.009 +20190315, 0.48, -0.27, -0.28, 0.009 +20190318, 0.46, 0.17, 0.35, 0.009 +20190319, -0.09, -0.38, -0.88, 0.009 +20190320, -0.39, -0.01, -0.99, 0.009 +20190321, 1.11, 0.25, -1.12, 0.009 +20190322, -2.17, -1.58, 0.07, 0.009 +20190325, -0.05, 0.65, -0.30, 0.009 +20190326, 0.76, 0.18, 0.42, 0.009 +20190327, -0.50, 0.09, 0.52, 0.009 +20190328, 0.40, 0.38, -0.09, 0.009 +20190329, 0.66, -0.26, -0.84, 0.009 +20190401, 1.19, -0.29, 0.96, 0.010 +20190402, -0.05, -0.13, -0.41, 0.010 +20190403, 0.27, 0.20, -0.37, 0.010 +20190404, 0.19, 0.21, 0.96, 0.010 +20190405, 0.52, 0.51, -0.02, 0.010 +20190408, 0.08, -0.30, 0.13, 0.010 +20190409, -0.65, -0.59, -0.07, 0.010 +20190410, 0.48, 0.94, -0.06, 0.010 +20190411, 0.00, -0.34, 0.43, 0.010 +20190412, 0.65, -0.52, 0.69, 0.010 +20190415, -0.09, -0.21, -0.58, 0.010 +20190416, 0.13, 0.14, 0.64, 0.010 +20190417, -0.32, -0.69, 0.78, 0.010 +20190418, 0.11, -0.26, -0.46, 0.010 +20190422, 0.11, -0.44, -0.56, 0.010 +20190423, 0.97, 0.73, -0.58, 0.010 +20190424, -0.23, 0.31, -0.22, 0.010 +20190425, -0.14, -0.71, -0.26, 0.010 +20190426, 0.53, 0.44, 0.05, 0.010 +20190429, 0.18, 0.11, 0.61, 0.010 +20190430, -0.04, -0.69, 0.25, 0.010 +20190501, -0.83, -0.10, -0.06, 0.009 +20190502, -0.16, 0.49, -0.48, 0.009 +20190503, 1.13, 0.95, -0.27, 0.009 +20190506, -0.39, 0.62, -0.46, 0.009 +20190507, -1.69, -0.30, 0.54, 0.009 +20190508, -0.21, -0.15, -0.31, 0.009 +20190509, -0.28, 0.09, 0.10, 0.009 +20190510, 0.35, -0.37, 0.11, 0.009 +20190513, -2.67, -0.74, 0.36, 0.009 +20190514, 0.93, 0.40, -0.03, 0.009 +20190515, 0.58, 0.04, -0.94, 0.009 +20190516, 0.91, -0.41, -0.24, 0.009 +20190517, -0.73, -0.82, 0.36, 0.009 +20190520, -0.65, -0.23, 0.79, 0.009 +20190521, 0.90, 0.41, -0.34, 0.009 +20190522, -0.40, -0.49, -0.63, 0.009 +20190523, -1.37, -0.71, -0.23, 0.009 +20190524, 0.23, 0.50, 0.29, 0.009 +20190528, -0.78, 0.27, -0.60, 0.009 +20190529, -0.71, -0.27, 0.44, 0.009 +20190530, 0.14, -0.30, -0.77, 0.009 +20190531, -1.37, -0.15, -0.21, 0.009 +20190603, -0.40, 0.39, 1.46, 0.009 +20190604, 2.33, 0.46, -0.16, 0.009 +20190605, 0.70, -1.01, -0.92, 0.009 +20190606, 0.55, -1.03, 0.00, 0.009 +20190607, 1.04, 0.00, -1.15, 0.009 +20190610, 0.53, 0.00, -0.07, 0.009 +20190611, -0.12, -0.26, 0.59, 0.009 +20190612, -0.20, 0.36, -0.90, 0.009 +20190613, 0.52, 0.67, -0.01, 0.009 +20190614, -0.27, -0.76, 0.30, 0.009 +20190617, 0.15, 0.62, -1.09, 0.009 +20190618, 1.04, 0.19, 0.20, 0.009 +20190619, 0.32, 0.11, -0.60, 0.009 +20190620, 0.89, -0.36, -0.23, 0.009 +20190621, -0.21, -0.45, -0.07, 0.009 +20190624, -0.34, -0.92, 0.15, 0.009 +20190625, -0.98, 0.34, 0.74, 0.009 +20190626, -0.06, -0.06, 0.22, 0.009 +20190627, 0.60, 1.41, -0.09, 0.009 +20190628, 0.68, 0.65, 0.60, 0.009 +20190701, 0.75, -0.54, -0.17, 0.009 +20190702, 0.14, -0.81, -0.80, 0.009 +20190703, 0.78, -0.07, -0.31, 0.009 +20190705, -0.10, 0.16, 0.91, 0.009 +20190708, -0.58, -0.44, 0.03, 0.009 +20190709, 0.18, -0.15, -0.52, 0.009 +20190710, 0.40, -0.15, -0.41, 0.009 +20190711, 0.19, -0.80, 0.04, 0.009 +20190712, 0.53, 0.19, 0.43, 0.009 +20190715, -0.04, -0.38, -1.00, 0.009 +20190716, -0.32, 0.34, 0.14, 0.009 +20190717, -0.64, -0.15, -0.65, 0.009 +20190718, 0.35, -0.32, -0.02, 0.009 +20190719, -0.56, 0.15, 0.88, 0.009 +20190722, 0.25, -0.43, -0.49, 0.009 +20190723, 0.65, -0.20, 0.80, 0.009 +20190724, 0.66, 0.76, 0.81, 0.009 +20190725, -0.63, -0.70, -0.21, 0.009 +20190726, 0.82, 0.39, -0.19, 0.009 +20190729, -0.32, -0.33, -0.46, 0.009 +20190730, -0.17, 1.32, 0.84, 0.009 +20190731, -1.09, 0.14, 0.55, 0.009 +20190801, -1.04, -0.46, -1.95, 0.007 +20190802, -0.87, -0.32, 0.04, 0.007 +20190805, -3.07, -0.03, -0.03, 0.007 +20190806, 1.29, -0.43, -0.57, 0.007 +20190807, 0.07, 0.08, -0.91, 0.007 +20190808, 1.97, 0.09, -0.29, 0.007 +20190809, -0.78, -0.39, -0.35, 0.007 +20190812, -1.32, 0.29, -0.29, 0.007 +20190813, 1.47, -0.16, -0.53, 0.007 +20190814, -2.95, 0.21, -0.54, 0.007 +20190815, 0.16, -0.63, -0.56, 0.007 +20190816, 1.55, 0.53, 0.65, 0.007 +20190819, 1.14, -0.01, 0.28, 0.007 +20190820, -0.75, 0.30, -0.52, 0.007 +20190821, 0.85, 0.04, -0.33, 0.007 +20190822, -0.10, -0.55, 0.52, 0.007 +20190823, -2.66, -0.55, -0.21, 0.007 +20190826, 1.08, -0.03, -0.20, 0.007 +20190827, -0.46, -0.88, -0.68, 0.007 +20190828, 0.68, 0.47, 0.64, 0.007 +20190829, 1.35, 0.32, 0.33, 0.007 +20190830, 0.03, -0.38, 0.25, 0.007 +20190903, -0.86, -0.95, 0.07, 0.009 +20190904, 1.08, -0.22, 0.42, 0.009 +20190905, 1.42, 0.41, 0.71, 0.009 +20190906, -0.02, -0.37, 0.06, 0.009 +20190909, 0.07, 0.74, 3.11, 0.009 +20190910, 0.17, 1.02, 1.24, 0.009 +20190911, 0.88, 1.33, -0.03, 0.009 +20190912, 0.22, -0.29, -0.21, 0.009 +20190913, -0.01, 0.00, 0.77, 0.009 +20190916, -0.23, 0.93, 0.52, 0.009 +20190917, 0.17, -0.60, -1.24, 0.009 +20190918, -0.05, -0.74, 0.04, 0.009 +20190919, -0.05, -0.44, -0.45, 0.009 +20190920, -0.48, 0.31, 0.14, 0.009 +20190923, -0.02, -0.18, 0.52, 0.009 +20190924, -1.01, -0.74, -0.01, 0.009 +20190925, 0.69, 0.37, 0.54, 0.009 +20190926, -0.41, -0.96, 0.11, 0.009 +20190927, -0.62, -0.36, 0.91, 0.009 +20190930, 0.50, -0.15, -0.49, 0.009 +20191001, -1.31, -0.47, -0.62, 0.007 +20191002, -1.73, 0.86, -0.39, 0.007 +20191003, 0.80, -0.22, -0.91, 0.007 +20191004, 1.39, -0.50, -0.08, 0.007 +20191007, -0.41, 0.16, -0.05, 0.007 +20191008, -1.61, -0.14, -0.11, 0.007 +20191009, 0.92, -0.53, -0.12, 0.007 +20191010, 0.59, -0.40, 0.29, 0.007 +20191011, 1.23, 0.48, 0.21, 0.007 +20191014, -0.18, -0.32, -0.06, 0.007 +20191015, 1.03, 0.25, -0.23, 0.007 +20191016, -0.24, 0.40, 0.22, 0.007 +20191017, 0.37, 0.80, -0.28, 0.007 +20191018, -0.49, -0.38, 0.88, 0.007 +20191021, 0.71, 0.18, 0.35, 0.007 +20191022, -0.34, 0.22, 0.91, 0.007 +20191023, 0.26, -0.08, 0.23, 0.007 +20191024, 0.25, -0.26, -0.91, 0.007 +20191025, 0.50, 0.28, 0.13, 0.007 +20191028, 0.62, 0.26, -0.23, 0.007 +20191029, -0.13, 0.29, 0.42, 0.007 +20191030, 0.27, -0.38, -1.20, 0.007 +20191031, -0.38, -0.25, -0.42, 0.007 +20191101, 1.08, 0.45, 0.84, 0.006 +20191104, 0.40, 0.05, 1.43, 0.006 +20191105, -0.03, 0.25, 0.51, 0.006 +20191106, -0.05, -0.69, 0.16, 0.006 +20191107, 0.38, -0.11, 0.56, 0.006 +20191108, 0.31, 0.09, -0.36, 0.006 +20191111, -0.19, -0.02, -0.21, 0.006 +20191112, 0.16, -0.11, -0.14, 0.006 +20191113, 0.01, -0.23, -0.81, 0.006 +20191114, 0.07, -0.12, -0.26, 0.006 +20191115, 0.74, -0.21, -0.34, 0.006 +20191118, 0.02, -0.36, -0.52, 0.006 +20191119, 0.02, 0.59, -0.99, 0.006 +20191120, -0.33, -0.01, -0.42, 0.006 +20191121, -0.14, -0.33, 0.13, 0.006 +20191122, 0.24, 0.06, 0.24, 0.006 +20191125, 0.92, 1.30, -0.39, 0.006 +20191126, 0.19, 0.05, -0.82, 0.006 +20191127, 0.44, 0.22, -0.05, 0.006 +20191129, -0.42, -0.05, -0.32, 0.006 +20191202, -0.87, -0.24, 0.51, 0.007 +20191203, -0.66, 0.59, -0.83, 0.007 +20191204, 0.60, 0.11, 0.27, 0.007 +20191205, 0.13, -0.23, 0.47, 0.007 +20191206, 0.91, 0.25, 0.43, 0.007 +20191209, -0.33, 0.36, 0.14, 0.007 +20191210, -0.08, 0.29, -0.09, 0.007 +20191211, 0.28, -0.07, 0.08, 0.007 +20191212, 0.90, -0.11, 1.18, 0.007 +20191213, -0.03, -0.31, -0.53, 0.007 +20191216, 0.74, 0.07, -0.07, 0.007 +20191217, 0.10, 0.42, 0.70, 0.007 +20191218, -0.05, 0.18, 0.09, 0.007 +20191219, 0.43, -0.02, -0.44, 0.007 +20191220, 0.48, -0.30, -0.30, 0.007 +20191223, 0.10, 0.20, -0.29, 0.007 +20191224, 0.01, 0.37, -0.03, 0.007 +20191226, 0.49, -0.53, 0.00, 0.007 +20191227, -0.09, -0.52, -0.08, 0.007 +20191230, -0.57, 0.18, 0.57, 0.007 +20191231, 0.28, 0.00, 0.12, 0.007 +20200102, 0.86, -0.85, -0.37, 0.006 +20200103, -0.67, 0.37, 0.01, 0.006 +20200106, 0.36, -0.07, -0.51, 0.006 +20200107, -0.19, -0.01, -0.20, 0.006 +20200108, 0.47, -0.06, -0.64, 0.006 +20200109, 0.65, -0.63, -0.49, 0.006 +20200110, -0.34, -0.16, -0.36, 0.006 +20200113, 0.73, -0.08, -0.12, 0.006 +20200114, -0.06, 0.37, -0.13, 0.006 +20200115, 0.16, 0.46, -0.84, 0.006 +20200116, 0.88, 0.50, -0.12, 0.006 +20200117, 0.28, -0.64, -0.12, 0.006 +20200121, -0.32, -0.50, -0.63, 0.006 +20200122, 0.08, -0.27, 0.00, 0.006 +20200123, 0.08, -0.06, -0.15, 0.006 +20200124, -0.97, -0.41, -0.35, 0.006 +20200127, -1.56, 0.36, -0.45, 0.006 +20200128, 1.02, -0.13, -0.43, 0.006 +20200129, -0.10, -0.25, -0.97, 0.006 +20200130, 0.34, -0.69, 0.64, 0.006 +20200131, -1.74, -0.44, -0.34, 0.006 +20200203, 0.84, 0.62, -0.69, 0.006 +20200204, 1.57, -0.02, -0.68, 0.006 +20200205, 0.97, 0.30, 1.52, 0.006 +20200206, 0.27, -0.45, -0.85, 0.006 +20200207, -0.55, -0.78, -0.06, 0.006 +20200210, 0.73, -0.02, -0.91, 0.006 +20200211, 0.28, 0.05, 1.07, 0.006 +20200212, 0.66, 0.17, -0.33, 0.006 +20200213, -0.09, 0.17, -0.04, 0.006 +20200214, 0.15, -0.39, -0.71, 0.006 +20200218, -0.19, 0.15, -0.70, 0.006 +20200219, 0.60, 0.22, -0.06, 0.006 +20200220, -0.35, 0.46, 0.66, 0.006 +20200221, -1.12, -0.10, 0.05, 0.006 +20200224, -3.38, 0.17, -0.01, 0.006 +20200225, -3.09, -0.09, -0.74, 0.006 +20200226, -0.52, -0.41, -1.24, 0.006 +20200227, -4.22, 0.75, 0.09, 0.006 +20200228, -0.78, 0.28, -0.79, 0.006 +20200302, 4.31, -1.77, -0.42, 0.006 +20200303, -2.79, 0.78, -0.64, 0.006 +20200304, 4.02, -1.04, -1.10, 0.006 +20200305, -3.38, 0.18, -1.37, 0.006 +20200306, -1.78, 0.04, -1.39, 0.006 +20200309, -7.79, -0.47, -4.73, 0.006 +20200310, 4.74, -2.46, 0.75, 0.006 +20200311, -5.05, -0.86, -0.89, 0.006 +20200312, -9.63, -0.54, -1.24, 0.006 +20200313, 8.96, -2.70, 3.07, 0.006 +20200316, -12.00, -0.35, -0.88, 0.006 +20200317, 5.87, 0.71, -0.97, 0.006 +20200318, -5.56, -3.66, -4.68, 0.006 +20200319, 1.31, 5.53, 0.99, 0.006 +20200320, -4.15, 0.39, -0.86, 0.006 +20200323, -2.56, 2.18, -3.50, 0.006 +20200324, 9.34, -1.16, 2.44, 0.006 +20200325, 1.18, -0.60, 1.89, 0.006 +20200326, 6.02, -0.67, 1.23, 0.006 +20200327, -3.47, -0.81, -0.70, 0.006 +20200330, 3.16, -0.37, -2.20, 0.006 +20200331, -1.44, 1.81, -0.48, 0.006 +20200401, -4.51, -1.58, -1.49, 0.000 +20200402, 2.09, -0.99, -0.27, 0.000 +20200403, -1.64, -1.11, -1.17, 0.000 +20200406, 7.06, 0.76, 0.30, 0.000 +20200407, -0.11, -0.49, 2.15, 0.000 +20200408, 3.40, 0.36, 1.34, 0.000 +20200409, 1.60, 1.96, 3.19, 0.000 +20200413, -0.92, -0.76, -2.44, 0.000 +20200414, 3.02, -0.14, -3.15, 0.000 +20200415, -2.15, -1.20, -2.49, 0.000 +20200416, 0.62, -0.23, -3.01, 0.000 +20200417, 2.72, 0.73, 2.71, 0.000 +20200420, -1.56, 0.77, -0.92, 0.000 +20200421, -3.08, 0.96, 0.06, 0.000 +20200422, 2.31, -0.71, -1.64, 0.000 +20200423, 0.13, 1.17, 0.56, 0.000 +20200424, 1.44, 0.32, -0.07, 0.000 +20200427, 1.73, 1.65, 2.75, 0.000 +20200428, -0.45, 0.89, 2.85, 0.000 +20200429, 2.92, 1.87, 2.07, 0.000 +20200430, -1.18, -1.41, -1.64, 0.000 +20200501, -2.91, -0.57, -1.02, 0.000 +20200504, 0.53, 0.16, -1.40, 0.000 +20200505, 0.95, 0.08, -1.97, 0.000 +20200506, -0.52, 0.56, -2.77, 0.000 +20200507, 1.33, -0.05, 0.41, 0.000 +20200508, 1.90, 1.44, 2.49, 0.000 +20200511, 0.07, 0.44, -3.72, 0.000 +20200512, -2.06, -0.88, -1.35, 0.000 +20200513, -1.89, -0.96, -2.18, 0.000 +20200514, 1.14, -1.48, 0.95, 0.000 +20200515, 0.57, 1.60, -1.23, 0.000 +20200518, 3.24, 1.54, 4.61, 0.000 +20200519, -1.01, -0.56, -1.42, 0.000 +20200520, 1.80, 1.09, 1.28, 0.000 +20200521, -0.70, 0.66, 0.45, 0.000 +20200522, 0.27, 0.48, -0.86, 0.000 +20200526, 1.23, 0.09, 4.62, 0.000 +20200527, 1.54, 0.63, 3.67, 0.000 +20200528, -0.41, -1.48, -2.41, 0.000 +20200529, 0.60, -0.29, -2.00, 0.000 +20200601, 0.52, -0.01, 0.49, 0.000 +20200602, 0.81, -0.03, 0.46, 0.000 +20200603, 1.41, 0.12, 2.67, 0.000 +20200604, -0.34, -0.23, 3.02, 0.000 +20200605, 2.50, 0.75, 2.70, 0.000 +20200608, 1.39, 0.38, 2.18, 0.000 +20200609, -0.85, -0.32, -1.98, 0.000 +20200610, -0.57, -0.84, -4.19, 0.000 +20200611, -5.91, -0.86, -3.09, 0.000 +20200612, 1.29, 0.37, 1.95, 0.000 +20200615, 1.09, 1.41, -0.40, 0.000 +20200616, 1.86, 0.64, 0.47, 0.000 +20200617, -0.40, -0.92, -2.00, 0.000 +20200618, 0.19, 0.10, -0.53, 0.000 +20200619, -0.45, 0.06, -0.65, 0.000 +20200622, 0.71, 0.82, -1.42, 0.000 +20200623, 0.42, 0.14, -0.55, 0.000 +20200624, -2.61, -0.51, -1.32, 0.000 +20200625, 1.12, 0.25, 0.50, 0.000 +20200626, -2.44, 0.18, -1.42, 0.000 +20200629, 1.51, 1.24, 1.81, 0.000 +20200630, 1.58, 0.06, -0.02, 0.000 +20200701, 0.41, -1.23, -2.54, 0.000 +20200702, 0.50, 0.00, -0.09, 0.000 +20200706, 1.65, -0.59, 0.33, 0.000 +20200707, -1.03, -0.55, -1.51, 0.000 +20200708, 0.91, 0.29, -0.47, 0.000 +20200709, -0.53, -0.93, -2.58, 0.000 +20200710, 1.11, -0.09, 3.05, 0.000 +20200713, -1.20, -0.81, 2.00, 0.000 +20200714, 1.35, 0.35, -0.33, 0.000 +20200715, 1.14, 2.43, 1.29, 0.000 +20200716, -0.37, -0.37, 0.81, 0.000 +20200717, 0.30, 0.16, -1.40, 0.000 +20200720, 1.01, -0.47, -2.38, 0.000 +20200721, 0.16, 0.86, 3.24, 0.000 +20200722, 0.49, -0.58, -0.34, 0.000 +20200723, -1.20, 0.72, 1.96, 0.000 +20200724, -0.75, -0.80, 0.47, 0.000 +20200727, 0.88, 0.75, -1.93, 0.000 +20200728, -0.81, -0.72, 1.01, 0.000 +20200729, 1.35, 0.54, 0.84, 0.000 +20200730, -0.29, 0.47, -1.81, 0.000 +20200731, 0.61, -1.54, -0.65, 0.000 + +Copyright 2020 Kenneth R. French diff --git a/Data/F-F_Research_Data_Factors_weekly.CSV b/Data/F-F_Research_Data_Factors_weekly.CSV new file mode 100644 index 0000000..a6741c9 --- /dev/null +++ b/Data/F-F_Research_Data_Factors_weekly.CSV @@ -0,0 +1,4916 @@ +This file was created by CMPT_ME_BEME_RETS_WEEKLY using the 202007 CRSP database. +The Tbill return is the weekly rate that, over four weeks, +compounds to 1-month TBill rate from Ibbotson and Associates Inc. + +,Mkt-RF,SMB,HML,RF +19260702, 1.60, -0.57, -0.90, 0.056 +19260710, 0.36, -0.86, 0.27, 0.056 +19260717, 1.01, 0.83, -1.84, 0.056 +19260724, -2.05, 0.15, -0.25, 0.056 +19260731, 3.04, -1.86, -0.85, 0.056 +19260807, 2.01, 0.08, 0.53, 0.063 +19260814, 0.33, -0.66, 0.76, 0.063 +19260821, -1.11, 0.26, 1.95, 0.063 +19260828, 0.53, 0.07, 0.84, 0.063 +19260903, 1.87, -0.41, 0.55, 0.057 +19260911, -1.27, 0.16, -0.01, 0.057 +19260918, 0.16, -1.10, 0.32, 0.057 +19260925, 0.62, -0.80, -0.39, 0.057 +19261002, 0.48, -0.08, -0.48, 0.080 +19261009, -4.14, -0.31, -0.35, 0.080 +19261016, -1.62, -1.10, 1.02, 0.080 +19261023, 1.05, 0.63, -0.35, 0.080 +19261030, 0.83, 0.87, 0.54, 0.080 +19261106, 1.47, -0.88, 0.37, 0.077 +19261113, 0.71, 0.46, -0.96, 0.077 +19261120, -0.56, 0.67, 0.76, 0.077 +19261127, 1.03, -0.17, -0.13, 0.077 +19261204, 0.90, 0.02, -0.79, 0.069 +19261211, 0.81, 0.47, -0.18, 0.069 +19261218, 1.38, -0.99, 0.94, 0.069 +19261224, 0.25, -0.25, -0.90, 0.069 +19261231, -0.89, 0.37, 0.24, 0.069 +19270108, 0.17, 0.59, -0.03, 0.062 +19270115, 0.06, -1.02, 2.53, 0.062 +19270122, -0.04, 0.16, 1.74, 0.062 +19270129, -0.83, -0.12, 0.52, 0.062 +19270205, 1.66, 1.28, 2.86, 0.064 +19270211, 0.39, -0.09, -0.21, 0.064 +19270219, 1.15, -0.56, 1.66, 0.064 +19270226, 0.96, 0.34, -1.56, 0.064 +19270305, -0.68, 0.15, -1.54, 0.074 +19270312, 0.83, -0.54, 0.00, 0.074 +19270319, 0.05, -1.00, -2.39, 0.074 +19270326, 0.47, 0.17, -0.09, 0.074 +19270402, -0.17, -0.89, 1.17, 0.064 +19270409, 1.83, -0.58, 1.92, 0.064 +19270416, 0.36, 1.71, -1.73, 0.064 +19270423, 0.47, -0.90, 1.21, 0.064 +19270430, -2.01, 0.58, -0.82, 0.064 +19270507, 2.69, 0.59, 0.01, 0.075 +19270514, 0.40, -0.24, 0.64, 0.075 +19270521, 1.10, -0.77, 0.24, 0.075 +19270528, 0.84, 2.43, 3.06, 0.075 +19270604, 0.19, -0.32, 0.39, 0.065 +19270611, 0.03, 0.55, 0.04, 0.065 +19270618, 0.01, 0.69, 1.12, 0.065 +19270625, -1.38, -0.43, -1.06, 0.065 +19270702, 0.17, -0.32, 0.02, 0.075 +19270709, 1.17, -0.30, 0.08, 0.075 +19270716, 1.84, -0.91, -0.08, 0.075 +19270723, 0.96, 0.16, -0.96, 0.075 +19270730, 1.82, -2.53, 0.11, 0.075 +19270806, 0.73, 0.13, -1.56, 0.069 +19270813, -1.62, -0.75, -1.38, 0.069 +19270820, 2.73, 0.30, 0.54, 0.069 +19270827, 0.73, -0.22, -1.11, 0.069 +19270903, 1.34, -0.44, -0.79, 0.052 +19270910, 1.16, -1.12, 0.18, 0.052 +19270917, 1.27, -0.75, -0.86, 0.052 +19270924, 0.08, -0.40, -0.11, 0.052 +19271001, 0.82, -0.92, 0.85, 0.063 +19271008, -1.25, 0.38, -1.01, 0.063 +19271015, 0.22, 1.17, -1.20, 0.063 +19271022, -4.13, 0.34, -0.35, 0.063 +19271029, -0.37, 0.31, -2.24, 0.063 +19271105, 3.44, -0.43, -0.10, 0.052 +19271112, 1.33, 0.51, -1.49, 0.052 +19271119, 1.62, 1.49, 1.03, 0.052 +19271126, 0.36, 0.75, 0.71, 0.052 +19271203, 0.49, -0.62, 0.99, 0.056 +19271210, -0.63, 1.40, -1.11, 0.056 +19271217, 1.82, 0.34, -0.52, 0.056 +19271224, 0.53, -0.90, 0.92, 0.056 +19271231, 0.33, 1.46, -1.59, 0.056 +19280107, 0.28, 1.82, 0.42, 0.063 +19280114, -1.16, 0.43, 0.29, 0.063 +19280121, 0.31, 0.32, -0.68, 0.063 +19280128, 0.12, 1.49, -1.13, 0.063 +19280204, -1.02, -0.07, -0.74, 0.082 +19280211, 0.36, -0.52, -0.74, 0.082 +19280218, -3.09, -1.88, -0.75, 0.082 +19280225, 1.57, 0.09, 1.59, 0.082 +19280303, 1.25, 0.30, -1.58, 0.073 +19280310, 2.00, -0.64, -0.06, 0.073 +19280317, 2.09, -1.18, 1.48, 0.073 +19280324, 1.87, 0.45, -1.52, 0.073 +19280331, 1.74, 1.00, 0.64, 0.073 +19280405, 0.77, 1.08, 0.66, 0.056 +19280414, 1.74, 2.11, -0.16, 0.056 +19280420, -0.91, 0.42, 0.66, 0.056 +19280428, 2.55, -0.42, 3.06, 0.056 +19280504, 1.96, 0.35, -1.50, 0.081 +19280511, 0.76, 0.74, -1.08, 0.081 +19280518, -1.34, 1.17, -0.29, 0.081 +19280525, -0.17, 0.77, -0.59, 0.081 +19280602, 1.28, -0.01, -0.51, 0.078 +19280609, -5.57, -0.30, -1.97, 0.078 +19280616, -1.93, -3.43, 1.87, 0.078 +19280623, -1.81, -0.41, 0.71, 0.078 +19280630, 3.57, -0.19, 0.17, 0.078 +19280707, 1.26, -0.11, 0.54, 0.081 +19280714, -2.57, -0.12, -0.50, 0.081 +19280721, -0.19, -0.12, 0.00, 0.081 +19280728, 2.37, -0.85, -0.54, 0.081 +19280804, -0.01, 0.03, 0.39, 0.080 +19280811, -0.73, 0.15, -0.26, 0.080 +19280818, 2.03, -0.60, 0.24, 0.080 +19280825, 3.03, -0.82, -1.44, 0.080 +19280901, 2.23, -0.72, -0.84, 0.067 +19280908, 0.76, 0.71, 0.17, 0.067 +19280915, 1.22, -0.11, 1.25, 0.067 +19280922, 0.37, 1.77, 0.66, 0.067 +19280929, 0.22, -0.25, -1.16, 0.067 +19281006, -0.92, 2.15, 0.25, 0.102 +19281013, 1.56, 0.89, -2.75, 0.102 +19281020, 1.28, -0.06, 0.05, 0.102 +19281027, 0.20, 0.01, 0.50, 0.102 +19281103, 0.35, -1.18, -0.47, 0.096 +19281110, 3.60, -0.66, 1.93, 0.096 +19281117, 2.80, -0.77, -0.98, 0.096 +19281123, 1.38, -0.72, 2.16, 0.096 +19281201, 1.69, 0.95, 0.45, 0.015 +19281208, -8.67, 0.57, -1.59, 0.015 +19281215, 2.65, 0.40, 1.46, 0.015 +19281222, 3.50, -0.85, -1.09, 0.015 +19281229, 2.78, -0.83, -0.30, 0.015 +19290105, 2.00, 0.20, 0.45, 0.086 +19290112, -0.40, 0.46, 0.52, 0.086 +19290119, 1.10, -0.59, 0.92, 0.086 +19290126, 1.98, -2.26, -2.87, 0.086 +19290202, 1.74, -1.77, 1.81, 0.089 +19290208, -4.90, 0.04, 0.23, 0.089 +19290216, -1.40, -0.76, 0.07, 0.089 +19290221, 2.91, 0.45, -0.05, 0.089 +19290302, 3.51, -0.36, 0.91, 0.086 +19290309, -1.83, -1.19, 0.76, 0.086 +19290316, 2.81, -0.84, -0.37, 0.086 +19290323, -2.93, -0.54, -0.47, 0.086 +19290328, 0.46, -2.07, 0.67, 0.086 +19290406, -1.63, 0.13, 0.41, 0.089 +19290413, 0.27, -0.34, -0.77, 0.089 +19290420, 1.02, 0.36, -1.39, 0.089 +19290427, 0.89, -0.04, 0.61, 0.089 +19290504, 2.42, -1.36, 1.02, 0.110 +19290511, -0.84, -0.09, -0.07, 0.110 +19290518, -1.19, -1.14, -1.38, 0.110 +19290525, -4.39, -1.05, -0.49, 0.110 +19290601, -0.91, -2.90, 1.54, 0.130 +19290608, 1.82, 0.12, 0.20, 0.130 +19290615, 1.73, -0.15, 0.58, 0.130 +19290622, 2.15, -0.84, -0.32, 0.130 +19290629, 2.99, -1.48, -3.13, 0.130 +19290706, 2.44, -0.91, -0.34, 0.084 +19290713, 1.42, -0.51, 1.84, 0.084 +19290720, 0.64, -1.33, 1.77, 0.084 +19290727, -0.92, -0.98, -1.04, 0.084 +19290803, 3.07, -2.39, -0.45, 0.101 +19290810, -3.28, -1.25, 1.98, 0.101 +19290817, 4.72, -1.64, 0.55, 0.101 +19290824, 2.46, -3.16, -1.48, 0.101 +19290830, 1.76, -0.92, -0.20, 0.101 +19290907, 0.24, -0.86, -1.05, 0.088 +19290914, -1.66, 1.54, -0.10, 0.088 +19290921, -0.11, 0.22, -0.38, 0.088 +19290928, -3.15, -0.14, 0.72, 0.088 +19291005, -1.88, -0.83, -0.09, 0.114 +19291011, 2.77, 0.16, 0.66, 0.114 +19291019, -8.13, 1.53, 2.64, 0.114 +19291026, -7.70, -3.07, 2.70, 0.114 +19291031, -7.16, -1.91, 2.72, 0.114 +19291108, -11.74, 1.68, 3.67, 0.094 +19291115, -3.99, -2.52, -0.08, 0.094 +19291122, 5.63, -0.19, 0.50, 0.094 +19291127, -2.45, 0.26, 1.40, 0.094 +19291207, 7.51, -1.36, -2.07, 0.091 +19291214, -3.02, -0.09, 1.61, 0.091 +19291221, -6.32, -1.30, 1.81, 0.091 +19291228, 0.14, -1.48, -0.37, 0.091 +19300104, 3.85, 1.20, -1.83, 0.035 +19300111, -0.27, 2.02, 0.89, 0.035 +19300118, -0.48, -1.42, 1.12, 0.035 +19300125, 3.35, 0.99, -0.46, 0.035 +19300201, 3.22, -0.16, -3.15, 0.074 +19300208, 0.94, -0.33, 1.18, 0.074 +19300215, -0.10, 1.02, 1.05, 0.074 +19300221, -0.72, -0.21, -0.06, 0.074 +19300301, 2.14, 0.39, -1.66, 0.087 +19300308, 0.69, 1.28, -0.66, 0.087 +19300315, -0.95, 1.36, 1.50, 0.087 +19300322, 2.79, -0.03, 0.49, 0.087 +19300329, 3.54, -0.16, -0.62, 0.087 +19300405, 1.91, -0.10, -1.95, 0.053 +19300412, 0.30, 0.14, -0.86, 0.053 +19300417, -0.51, 0.83, -0.95, 0.053 +19300426, -1.68, -0.62, 2.49, 0.053 +19300503, -9.09, -0.67, 2.47, 0.064 +19300510, 4.65, -1.19, -2.93, 0.064 +19300517, 0.86, 0.53, 1.48, 0.064 +19300524, -0.35, -0.85, -0.57, 0.064 +19300529, 1.01, -0.18, -1.04, 0.064 +19300607, -5.29, -0.18, 2.02, 0.067 +19300614, -5.55, -1.30, 0.35, 0.067 +19300621, -9.00, -2.77, 2.43, 0.067 +19300628, 0.41, 0.35, -1.99, 0.067 +19300703, 1.69, 0.53, 1.75, 0.050 +19300712, 2.76, -2.21, -0.51, 0.050 +19300719, 3.57, 2.01, 0.85, 0.050 +19300726, 0.64, -1.43, -1.74, 0.050 +19300802, -2.21, 0.53, -0.72, 0.022 +19300809, -4.82, 0.18, -0.99, 0.022 +19300816, 1.97, -1.65, 1.02, 0.022 +19300823, 0.96, -0.07, -1.51, 0.022 +19300829, 2.20, -1.02, 0.42, 0.022 +19300906, 1.00, -0.03, 0.65, 0.055 +19300913, -0.61, 1.40, -0.56, 0.055 +19300920, -3.23, -0.13, -1.23, 0.055 +19300927, -7.06, -1.73, -2.70, 0.055 +19301004, -0.48, -0.05, -1.62, 0.022 +19301011, -8.00, -1.12, 0.87, 0.022 +19301018, -3.54, -0.97, -1.80, 0.022 +19301025, 3.14, -0.41, -0.36, 0.022 +19301101, -3.07, -0.27, -0.58, 0.033 +19301108, -6.69, 1.68, -2.04, 0.033 +19301115, 6.59, 0.32, -2.41, 0.033 +19301122, -0.09, 0.53, 3.16, 0.033 +19301129, -2.57, 0.85, -1.27, 0.033 +19301206, -1.90, -0.13, -2.17, 0.035 +19301213, -7.62, -1.35, -3.01, 0.035 +19301220, 2.61, -2.71, 0.09, 0.035 +19301227, -4.11, 0.67, -4.07, 0.035 +19310103, 8.96, -2.01, 6.47, 0.036 +19310110, 1.29, 2.19, 6.58, 0.036 +19310117, -3.39, 1.29, -1.38, 0.036 +19310124, 4.12, -1.02, 0.20, 0.036 +19310131, -0.99, 0.87, -0.65, 0.036 +19310207, 2.21, 0.38, -0.64, 0.010 +19310214, 4.10, 0.60, 0.11, 0.010 +19310221, 4.38, 1.93, 0.25, 0.010 +19310228, -0.12, -0.09, 1.77, 0.010 +19310307, -1.75, 0.18, -1.38, 0.032 +19310314, -0.60, 0.65, -0.91, 0.032 +19310321, 1.85, 1.62, 0.35, 0.032 +19310328, -4.99, 0.69, -0.62, 0.032 +19310404, -1.16, -0.13, -0.80, 0.019 +19310411, -1.09, 0.27, -0.57, 0.019 +19310418, -3.54, -0.92, -1.08, 0.019 +19310425, -5.79, 0.57, -3.79, 0.019 +19310502, -1.10, -2.83, 0.15, 0.022 +19310509, 2.42, 0.58, -1.25, 0.022 +19310516, -5.10, 2.35, -2.10, 0.022 +19310523, -3.83, -0.58, 0.12, 0.022 +19310529, -5.85, 1.21, -2.30, 0.022 +19310606, 1.05, -0.36, 3.54, 0.019 +19310613, 4.48, -5.10, 4.67, 0.019 +19310620, 1.64, -0.33, -0.27, 0.019 +19310627, 10.53, -0.03, 4.29, 0.019 +19310703, -1.33, 0.42, -1.61, 0.015 +19310711, -5.16, 2.52, -2.36, 0.015 +19310718, -0.83, -1.15, -0.83, 0.015 +19310725, -2.11, 1.50, 1.02, 0.015 +19310801, -0.52, -0.48, -0.71, 0.009 +19310808, -1.83, 0.91, -3.25, 0.009 +19310815, 5.71, -3.41, 1.96, 0.009 +19310822, -4.10, 1.47, 0.99, 0.009 +19310829, 1.60, -1.92, -0.45, 0.009 +19310904, -5.33, 3.69, -5.17, 0.006 +19310912, -6.21, 1.44, -1.31, 0.006 +19310919, -10.93, -0.12, -5.89, 0.006 +19310926, -2.85, -3.35, 5.66, 0.006 +19311003, -11.99, 0.02, -2.47, 0.026 +19311010, 12.71, -2.76, 4.48, 0.026 +19311017, -2.22, -0.03, -0.78, 0.026 +19311024, 4.61, -0.13, -0.73, 0.026 +19311031, -3.18, 0.31, 1.62, 0.026 +19311107, 7.57, -0.14, 2.38, 0.042 +19311114, -6.30, 4.08, -2.69, 0.042 +19311121, -6.91, 2.01, -1.24, 0.042 +19311128, -6.26, 2.36, -3.17, 0.042 +19311205, 1.74, -6.08, -1.57, 0.031 +19311212, -11.20, 2.11, -5.91, 0.031 +19311219, 1.71, -1.81, -0.76, 0.031 +19311224, -4.70, 2.25, -4.40, 0.031 +19320102, -1.56, 2.03, 4.82, 0.058 +19320109, 7.21, -3.76, 9.73, 0.058 +19320116, 4.09, -1.22, 2.69, 0.058 +19320123, -5.62, 1.94, -1.00, 0.058 +19320130, -3.13, 3.89, -1.99, 0.058 +19320206, -2.34, 0.26, 0.12, 0.057 +19320213, 13.39, -9.16, 0.85, 0.057 +19320220, -2.36, 3.83, -1.87, 0.057 +19320227, -2.24, 0.81, -0.39, 0.057 +19320305, 6.61, -2.59, 1.20, 0.041 +19320312, -3.45, 1.56, 0.94, 0.041 +19320319, -6.70, 2.87, -2.16, 0.041 +19320326, -4.38, 1.87, -0.94, 0.041 +19320402, -5.98, 1.31, -3.67, 0.029 +19320409, -9.57, 1.00, -1.48, 0.029 +19320416, -0.06, -2.73, 4.69, 0.029 +19320423, -4.31, -0.08, 1.60, 0.029 +19320430, -2.79, 1.34, 0.29, 0.029 +19320507, 2.53, -2.27, 1.32, 0.015 +19320514, -7.45, 5.52, -2.19, 0.015 +19320521, -0.08, -2.83, -0.32, 0.015 +19320528, -10.11, 0.90, -2.05, 0.015 +19320604, 6.34, -6.12, 5.34, 0.005 +19320611, -5.31, 5.75, -0.96, 0.005 +19320618, 0.03, -0.66, 4.31, 0.005 +19320625, -4.72, 4.52, -2.50, 0.005 +19320701, -0.93, -1.32, 0.60, 0.006 +19320709, -2.41, 2.45, 3.95, 0.006 +19320716, 9.76, -3.95, 6.92, 0.006 +19320723, 5.50, -1.63, 8.56, 0.006 +19320730, 15.38, 0.75, 9.68, 0.006 +19320806, 17.04, -7.35, 1.66, 0.008 +19320813, -1.96, 8.69, 6.20, 0.008 +19320820, 7.75, -0.32, 2.68, 0.008 +19320827, 13.46, 6.12, 13.79, 0.008 +19320903, 5.27, 4.14, -0.12, 0.008 +19320910, -3.19, 0.14, -2.01, 0.008 +19320917, -12.82, -0.75, -5.68, 0.008 +19320924, 12.50, -1.91, 2.81, 0.008 +19321001, -4.12, -1.96, -0.73, 0.004 +19321008, -15.62, 2.56, -11.92, 0.004 +19321015, 5.62, -2.92, 3.52, 0.004 +19321022, -4.89, -0.50, -0.86, 0.004 +19321029, 2.40, -2.70, -1.05, 0.004 +19321105, -1.79, -0.21, -5.09, 0.005 +19321112, 10.03, 1.46, 2.59, 0.005 +19321119, -5.24, 0.52, -6.03, 0.005 +19321126, -5.58, 0.37, -0.86, 0.005 +19321203, -4.50, 0.24, -8.14, 0.003 +19321210, 7.58, -5.88, 0.97, 0.003 +19321217, -0.33, -1.15, -3.74, 0.003 +19321224, -4.95, -0.94, -5.02, 0.003 +19321231, 3.62, -1.02, 4.99, 0.003 +19330106, 4.75, 1.33, 6.46, 0.003 +19330114, -0.11, -0.67, 0.93, 0.003 +19330121, -1.59, -0.55, -0.35, 0.003 +19330128, -1.40, 0.41, -0.19, 0.003 +19330204, -5.82, 0.26, 2.38, -0.007 +19330211, 3.44, -3.17, 3.49, -0.007 +19330218, -5.64, 0.51, -1.65, -0.007 +19330225, -8.94, 1.34, -4.31, -0.007 +19330303, 3.64, -5.66, 2.99, 0.011 +19330318, 13.08, 5.28, 9.42, 0.011 +19330325, -6.17, -0.11, -1.52, 0.011 +19330401, -4.94, -0.10, -3.08, 0.024 +19330408, 5.49, -0.28, 2.06, 0.024 +19330415, 5.87, 2.57, -2.55, 0.024 +19330422, 15.55, -3.55, 15.32, 0.024 +19330429, 7.08, 6.87, -2.45, 0.024 +19330506, 2.53, 9.33, 0.88, 0.011 +19330513, 5.50, 3.88, 2.27, 0.011 +19330520, -0.30, 9.14, 0.79, 0.011 +19330527, 11.90, 6.30, -1.92, 0.011 +19330603, 3.31, 3.90, 7.59, 0.006 +19330610, 5.63, 3.32, -2.02, 0.006 +19330617, -5.11, -4.05, -0.20, 0.006 +19330624, 6.45, 5.16, -0.31, 0.006 +19330701, 5.64, 1.21, 4.14, 0.005 +19330708, 6.01, -1.42, 9.57, 0.005 +19330715, 0.15, 2.71, -3.25, 0.005 +19330722, -18.85, -4.78, -5.97, 0.005 +19330728, 7.60, 6.25, 7.32, 0.005 +19330804, -2.59, 0.78, -1.41, 0.006 +19330811, 4.88, -1.72, 0.20, 0.006 +19330818, -0.03, 0.51, -3.03, 0.006 +19330825, 6.40, -4.23, 4.01, 0.006 +19330901, -0.53, -0.12, -1.74, 0.004 +19330909, -4.43, 1.45, -3.88, 0.004 +19330916, 4.11, -1.19, 1.33, 0.004 +19330923, -6.24, -0.04, -5.32, 0.004 +19330930, -5.45, -0.67, -4.28, 0.004 +19331007, 2.88, 0.30, 0.60, 0.002 +19331014, -2.75, 1.42, -3.57, 0.002 +19331021, -12.45, -0.49, -9.47, 0.002 +19331028, 9.57, -0.48, 9.52, 0.002 +19331104, 1.00, -3.32, 1.64, 0.005 +19331111, 3.16, -1.27, 0.51, 0.005 +19331118, 1.66, 0.07, -1.54, 0.005 +19331125, 0.73, -1.64, 0.76, 0.005 +19331202, -1.15, -0.96, -2.41, 0.005 +19331209, 3.81, -0.16, 3.93, 0.005 +19331216, -3.86, 2.88, -3.68, 0.005 +19331223, -1.09, -3.54, -0.63, 0.005 +19331230, 2.73, 1.28, -0.17, 0.005 +19340106, -2.82, 1.99, -0.62, 0.012 +19340113, 3.53, 0.99, 3.08, 0.012 +19340120, 8.93, 2.96, 11.32, 0.012 +19340127, 0.90, 2.49, -0.41, 0.012 +19340203, 5.45, 1.37, 6.41, 0.006 +19340210, -3.78, 0.82, -1.88, 0.006 +19340217, 4.20, 2.96, 6.18, 0.006 +19340224, -4.80, 1.18, -4.27, 0.006 +19340303, 1.37, 0.79, 0.05, 0.005 +19340310, -2.49, 1.28, -1.27, 0.005 +19340317, -0.23, 1.68, -1.51, 0.005 +19340324, -0.03, -1.16, -1.66, 0.005 +19340331, 0.25, 0.02, 1.21, 0.005 +19340407, 1.96, 0.60, 0.59, 0.002 +19340414, 0.41, 0.50, -0.14, 0.002 +19340421, 1.94, 1.58, -0.66, 0.002 +19340428, -3.61, 0.51, -1.38, 0.002 +19340505, -5.54, -0.28, -2.40, 0.002 +19340512, -7.09, -1.56, -5.55, 0.002 +19340519, 4.92, 0.38, 4.29, 0.002 +19340526, -0.56, -0.16, -1.59, 0.002 +19340602, -3.54, 0.39, -2.35, 0.002 +19340609, 8.70, -2.28, 5.88, 0.002 +19340616, 1.63, -1.82, -1.13, 0.002 +19340623, -4.64, 0.73, -2.79, 0.002 +19340630, -0.14, -0.10, -1.43, 0.002 +19340707, 0.84, -1.48, -0.61, 0.002 +19340714, 0.59, 1.24, -3.00, 0.002 +19340721, -5.00, -3.37, -3.60, 0.002 +19340728, -7.26, -3.87, -4.06, 0.002 +19340804, 0.26, 4.62, -1.63, 0.002 +19340811, 2.22, 0.46, -0.53, 0.002 +19340818, 1.17, 0.80, 0.44, 0.002 +19340825, 5.40, -1.20, 4.83, 0.002 +19340901, -3.66, 0.82, -2.98, 0.001 +19340908, -1.95, -0.23, -0.85, 0.001 +19340915, -4.25, -1.55, -1.98, 0.001 +19340922, 4.87, 0.39, 1.57, 0.001 +19340929, 1.34, -0.32, 0.00, 0.001 +19341006, -0.87, 1.39, -1.26, 0.003 +19341013, 1.38, 1.47, -0.01, 0.003 +19341020, -0.27, -0.18, -1.01, 0.003 +19341027, -2.21, -0.53, -1.66, 0.003 +19341103, 1.90, 0.76, -2.68, 0.002 +19341110, 4.04, 2.02, 1.64, 0.002 +19341117, -1.38, 3.27, -3.40, 0.002 +19341124, 2.90, 0.16, -0.31, 0.002 +19341201, 1.01, -0.91, 1.50, 0.003 +19341208, -0.41, 1.43, -0.45, 0.003 +19341215, -2.23, 0.36, -0.70, 0.003 +19341222, -1.26, -0.24, -2.65, 0.003 +19341229, 3.87, 1.03, 1.35, 0.003 +19350105, 1.65, 2.15, 1.23, 0.003 +19350112, -3.89, -0.39, -1.09, 0.003 +19350119, 1.05, 0.81, 0.14, 0.003 +19350126, -0.68, 0.32, -1.90, 0.003 +19350202, -0.95, -1.44, -0.62, 0.004 +19350209, 0.07, 0.53, -1.00, 0.004 +19350216, 0.23, 0.95, -2.69, 0.004 +19350223, -1.27, 0.98, -2.04, 0.004 +19350302, -0.26, -1.17, -2.04, 0.003 +19350309, -3.39, -0.20, -2.83, 0.003 +19350316, -2.98, -2.83, -3.35, 0.003 +19350323, 2.40, 0.59, 2.08, 0.003 +19350330, -0.30, -1.31, -0.67, 0.003 +19350406, 3.58, -2.69, 5.22, 0.003 +19350413, 2.71, 1.04, 1.01, 0.003 +19350420, 2.92, 0.86, -1.82, 0.003 +19350427, 0.15, -1.13, 0.78, 0.003 +19350504, 1.49, -0.95, -0.59, 0.003 +19350511, 3.15, -1.34, 0.83, 0.003 +19350518, 0.94, 1.42, 1.30, 0.003 +19350525, 1.03, -1.34, 1.94, 0.003 +19350601, -4.40, -2.58, -0.78, 0.003 +19350608, 4.71, -1.38, -0.25, 0.003 +19350615, 2.86, 0.31, 0.63, 0.003 +19350622, 1.65, -0.82, -0.67, 0.003 +19350629, -2.50, 0.61, -1.06, 0.003 +19350706, 2.20, -0.80, 0.11, 0.003 +19350713, 1.05, 1.22, -0.61, 0.003 +19350720, 0.16, 1.22, -0.04, 0.003 +19350727, 2.51, -0.42, 3.86, 0.003 +19350803, 1.84, 0.23, 4.53, 0.003 +19350810, 3.16, 1.16, 3.17, 0.003 +19350817, 1.56, 2.21, 6.58, 0.003 +19350824, -2.44, 1.86, -3.86, 0.003 +19350831, -0.05, 0.58, -1.49, 0.003 +19350907, 3.24, -0.45, 2.47, 0.003 +19350914, 0.27, 0.28, -1.95, 0.003 +19350921, -3.24, 0.22, -2.13, 0.003 +19350928, 2.29, 1.99, -1.02, 0.003 +19351005, -1.19, 0.49, -2.95, 0.003 +19351011, 2.56, 0.48, 0.57, 0.003 +19351019, 2.32, 0.48, -2.87, 0.003 +19351026, 3.94, 1.01, 0.95, 0.003 +19351102, 0.52, 0.62, 1.66, 0.006 +19351109, 2.21, -1.35, 0.26, 0.006 +19351116, 2.88, 0.40, 3.87, 0.006 +19351123, 0.95, 2.91, 4.39, 0.006 +19351130, -2.27, 1.31, 2.15, 0.006 +19351207, 2.71, 0.14, 3.69, 0.003 +19351214, -2.17, 0.56, -3.12, 0.003 +19351221, 0.32, -0.19, -1.24, 0.003 +19351228, 0.62, -1.16, -0.08, 0.003 +19360104, 4.06, 3.11, 4.30, 0.003 +19360111, 1.88, 2.16, 1.45, 0.003 +19360118, -0.30, 0.78, 1.23, 0.003 +19360125, 2.08, -0.66, 2.17, 0.003 +19360201, 1.95, 0.51, 2.58, 0.003 +19360208, 1.51, 1.30, 1.38, 0.003 +19360215, 2.18, -2.16, 3.31, 0.003 +19360221, 0.50, 0.93, 0.88, 0.003 +19360229, -1.49, 1.10, -0.15, 0.003 +19360307, 2.42, 0.82, -0.82, 0.004 +19360314, -2.45, -0.22, -1.53, 0.004 +19360321, 1.19, 0.11, -0.20, 0.004 +19360328, -0.66, -0.43, 0.95, 0.004 +19360404, 3.34, -0.81, 1.89, 0.004 +19360411, -0.12, -2.76, 2.28, 0.004 +19360418, -2.90, -1.06, -1.09, 0.004 +19360425, -3.08, -0.55, -2.55, 0.004 +19360502, -4.62, -0.01, -3.03, 0.004 +19360509, 1.44, 0.42, 0.03, 0.004 +19360516, 2.48, -0.20, 1.29, 0.004 +19360523, -0.57, -0.36, 0.03, 0.004 +19360529, 1.50, -0.19, 1.68, 0.004 +19360606, -1.30, -0.52, -1.31, 0.008 +19360613, 3.12, -1.36, 0.72, 0.008 +19360620, 0.88, -0.66, -0.01, 0.008 +19360627, 0.19, -0.44, 0.17, 0.008 +19360703, 0.35, -1.07, -0.91, 0.003 +19360711, 2.74, 0.39, 1.06, 0.003 +19360718, 2.24, 0.53, 1.71, 0.003 +19360725, 1.18, 0.42, 0.33, 0.003 +19360801, -0.34, 0.19, 0.05, 0.004 +19360808, 1.99, -0.53, 1.29, 0.004 +19360815, -1.58, 0.43, 0.81, 0.004 +19360822, -2.21, 0.93, -0.99, 0.004 +19360829, 2.67, -0.21, 3.21, 0.004 +19360905, 1.33, 1.50, 0.56, 0.003 +19360912, 0.06, 0.48, -0.08, 0.003 +19360919, 0.48, 0.43, 0.67, 0.003 +19360926, -0.39, 0.05, -0.64, 0.003 +19361003, 2.52, 1.38, 1.26, 0.005 +19361010, 2.49, -0.62, 0.31, 0.005 +19361017, 0.91, 0.12, 1.28, 0.005 +19361024, 0.15, -1.11, -0.72, 0.005 +19361031, 0.69, -1.21, 0.28, 0.005 +19361107, 3.21, 2.66, -0.78, 0.002 +19361114, -1.93, 2.70, -2.72, 0.002 +19361121, 1.47, 0.66, 0.78, 0.002 +19361128, 0.95, 1.69, 1.80, 0.002 +19361205, -1.16, 1.39, -0.03, 0.001 +19361212, 0.56, 2.76, 2.22, 0.001 +19361219, -1.85, -1.37, -0.21, 0.001 +19361224, 1.25, 1.60, 0.48, 0.001 +19370102, 0.22, 0.26, 1.68, 0.003 +19370109, 2.60, 1.84, 2.25, 0.003 +19370116, 1.73, 2.08, 0.32, 0.003 +19370123, 0.28, 0.64, 0.56, 0.003 +19370130, -0.43, -0.12, -0.42, 0.003 +19370206, 1.10, 0.06, 1.44, 0.004 +19370213, 1.16, 0.25, 0.31, 0.004 +19370220, -0.09, -0.14, 2.98, 0.004 +19370227, -1.06, 0.42, -0.38, 0.004 +19370306, 2.90, -1.27, 4.00, 0.004 +19370313, -1.24, 0.07, 1.03, 0.004 +19370320, -2.69, 0.51, 1.32, 0.004 +19370327, -0.25, -0.28, -0.12, 0.004 +19370403, -0.60, -0.78, -0.36, 0.009 +19370410, -2.72, -0.02, -1.42, 0.009 +19370417, 0.70, 0.35, -0.51, 0.009 +19370424, -1.79, -1.40, -0.11, 0.009 +19370501, -1.84, -1.88, -0.97, 0.016 +19370508, 0.85, -0.08, 0.29, 0.016 +19370515, -3.94, -1.78, -1.84, 0.016 +19370522, 3.29, 0.65, -0.09, 0.016 +19370528, -1.08, -0.02, -1.58, 0.016 +19370605, 0.59, -1.11, -0.27, 0.008 +19370612, -3.17, -0.62, -0.64, 0.008 +19370619, -0.92, -1.34, -1.68, 0.008 +19370626, -1.21, 0.38, -1.57, 0.008 +19370702, 2.27, -0.56, 1.55, 0.008 +19370710, 3.61, 2.61, 1.92, 0.008 +19370717, 1.22, -1.31, -1.37, 0.008 +19370724, 2.81, -1.01, 0.13, 0.008 +19370731, -0.79, -0.17, -0.91, 0.008 +19370807, -0.04, 0.40, 0.36, 0.006 +19370814, 1.65, -0.41, -0.57, 0.006 +19370821, -3.57, 0.59, -0.94, 0.006 +19370828, -3.50, -0.02, -0.78, 0.006 +19370904, -1.97, -1.00, -0.36, 0.009 +19370911, -8.30, -6.45, -1.93, 0.009 +19370918, -1.00, 3.32, -0.64, 0.009 +19370925, -7.19, -4.93, -2.05, 0.009 +19371002, 5.36, 2.77, 0.24, 0.004 +19371009, -6.65, -0.91, -2.53, 0.004 +19371016, -7.50, -7.56, -1.73, 0.004 +19371023, -3.68, 5.78, 0.53, 0.004 +19371030, 8.92, 4.51, 2.24, 0.004 +19371106, -8.99, -0.12, -2.14, 0.005 +19371113, 6.63, -1.30, 3.10, 0.005 +19371120, -8.58, -2.43, -0.42, 0.005 +19371127, 3.11, 0.01, 1.22, 0.005 +19371204, 2.51, -1.53, -1.18, 0.001 +19371211, -1.60, -1.02, 0.15, 0.001 +19371218, -0.22, -3.65, 0.03, 0.001 +19371224, -0.55, -2.01, -0.23, 0.001 +19371231, -4.20, -0.80, 0.51, 0.001 +19380108, 9.17, 6.22, -0.12, 0.001 +19380115, 2.53, 2.23, -0.26, 0.001 +19380122, -4.09, -0.18, -1.81, 0.001 +19380129, -7.40, -0.94, 0.22, 0.001 +19380205, 1.01, -1.20, 0.57, 0.001 +19380211, 2.04, 0.14, -0.29, 0.001 +19380219, 2.09, -0.15, -1.33, 0.001 +19380226, 3.02, -0.26, 0.24, 0.001 +19380305, -3.05, 0.20, -1.55, -0.002 +19380312, -4.55, -0.71, -1.18, -0.002 +19380319, -2.27, -2.13, -1.65, -0.002 +19380326, -11.41, -2.78, -1.09, -0.002 +19380402, 1.37, 2.16, 1.80, 0.003 +19380409, 10.41, 1.59, -0.51, 0.003 +19380416, 3.34, 1.15, -0.57, 0.003 +19380423, -2.01, 1.05, -0.19, 0.003 +19380430, -5.27, 0.10, 0.60, 0.003 +19380507, 5.91, -3.18, 0.89, 0.000 +19380514, -0.90, 1.31, -0.20, 0.000 +19380521, -3.69, 0.40, -1.95, 0.000 +19380528, -3.78, -1.13, 0.89, 0.000 +19380604, 2.17, -0.87, -0.45, 0.000 +19380611, 1.59, 0.10, -0.83, 0.000 +19380618, -0.51, 0.49, -1.38, 0.000 +19380625, 16.55, 0.91, 2.16, 0.000 +19380702, 6.16, 2.88, 4.48, -0.001 +19380709, -1.10, 2.20, 0.36, -0.001 +19380716, 1.66, 1.87, 0.04, -0.001 +19380723, 4.86, 1.71, 2.58, -0.001 +19380730, -2.38, 0.41, -2.98, -0.001 +19380806, 2.74, -0.65, -0.25, 0.001 +19380813, -6.62, -3.02, -2.66, 0.001 +19380820, 3.22, 0.60, 0.26, 0.001 +19380827, 0.61, 1.56, -0.49, 0.001 +19380903, -0.37, -1.20, -1.51, 0.005 +19380910, -3.39, -0.51, -0.92, 0.005 +19380917, -6.21, -4.79, -4.75, 0.005 +19380924, 1.62, 0.82, 1.93, 0.005 +19381001, 9.13, 3.53, 4.35, 0.003 +19381008, 4.48, 3.10, 2.84, 0.003 +19381015, 1.87, 0.43, -0.23, 0.003 +19381022, 1.12, 0.96, 1.31, 0.003 +19381029, -1.72, 0.36, -0.29, 0.003 +19381105, 0.52, 0.45, 0.67, -0.016 +19381112, 4.15, 0.44, 1.48, -0.016 +19381119, -5.13, -0.85, -2.16, -0.016 +19381126, -1.40, -0.33, -1.53, -0.016 +19381203, -0.71, -1.13, -1.89, 0.000 +19381210, -0.32, -1.26, -1.93, 0.000 +19381217, 2.65, -1.47, -0.14, 0.000 +19381224, 0.12, -1.90, 2.06, 0.000 +19381231, 3.08, 2.43, 2.69, 0.000 +19390107, -1.77, 1.15, -0.15, -0.001 +19390114, -1.78, -1.15, -0.90, -0.001 +19390121, -0.89, 0.48, -1.07, -0.001 +19390128, -5.21, -2.96, -3.33, -0.001 +19390204, 4.78, 1.71, 2.47, 0.002 +19390211, 0.03, -0.85, -0.78, 0.002 +19390218, 0.97, 0.17, 0.10, 0.002 +19390225, 0.97, 0.75, 1.33, 0.002 +19390304, 1.87, -0.19, 1.49, -0.002 +19390311, 1.57, 0.78, -2.07, -0.002 +19390318, -6.97, -1.42, -3.12, -0.002 +19390325, 0.16, 0.08, 0.25, -0.002 +19390401, -6.66, -4.84, -2.03, -0.001 +19390408, -8.37, -1.58, -3.92, -0.001 +19390415, 7.48, 2.89, 4.21, -0.001 +19390422, -0.48, 0.95, -1.72, -0.001 +19390429, -0.06, 0.20, 0.00, -0.001 +19390506, 2.62, 1.82, 0.43, 0.002 +19390513, 0.54, 0.55, -0.80, 0.002 +19390520, -1.00, -0.35, -0.90, 0.002 +19390527, 4.07, 0.64, 1.51, 0.002 +19390603, -0.15, 0.56, -1.04, 0.003 +19390610, 2.24, 0.31, -1.04, 0.003 +19390617, -3.23, -0.02, -1.72, 0.003 +19390624, 1.32, 0.79, -0.02, 0.003 +19390701, -4.09, -2.54, 0.24, 0.000 +19390708, 1.69, -0.16, -0.26, 0.000 +19390715, 3.52, 1.15, -0.19, 0.000 +19390722, 5.08, 2.76, 1.28, 0.000 +19390729, -0.86, -0.20, -0.87, 0.000 +19390805, -1.01, -0.50, -0.19, -0.001 +19390812, -2.24, -0.89, -0.61, -0.001 +19390819, -2.73, -1.81, -0.82, -0.001 +19390826, 0.37, -2.47, -0.29, -0.001 +19390902, 0.91, 5.43, -0.01, 0.002 +19390909, 11.02, 9.77, 12.10, 0.002 +19390916, 1.09, 1.02, 2.22, 0.002 +19390923, 1.01, 1.05, 1.45, 0.002 +19390930, 0.50, 0.05, 2.04, 0.002 +19391007, -2.41, -1.56, -2.36, 0.001 +19391014, 0.45, -0.16, -0.53, 0.001 +19391021, 2.63, 1.56, -0.71, 0.001 +19391028, -0.12, 1.19, -0.98, 0.001 +19391104, -0.29, 1.12, -1.74, 0.001 +19391110, -2.13, -2.68, -2.24, 0.001 +19391118, 1.58, -0.37, -0.25, 0.001 +19391125, -1.77, -1.62, -1.39, 0.001 +19391202, -1.22, -0.98, -1.73, 0.001 +19391209, 0.98, 1.01, -1.96, 0.001 +19391216, 0.20, -0.71, -1.00, 0.001 +19391223, 0.34, -0.88, -1.56, 0.001 +19391230, 0.64, 0.14, 0.20, 0.001 +19400106, 1.33, 2.04, 1.53, 0.000 +19400113, -3.88, -1.48, -0.87, 0.000 +19400120, 0.35, -0.73, -0.83, 0.000 +19400127, 0.55, 1.37, -0.57, 0.000 +19400203, -0.39, -0.20, -0.46, 0.000 +19400210, 1.92, 0.56, 0.73, 0.000 +19400217, 0.20, 1.13, -0.31, 0.000 +19400224, -0.90, 0.11, -0.58, 0.000 +19400302, -0.39, 0.02, 0.05, 0.000 +19400309, 1.40, 1.05, -0.26, 0.000 +19400316, -1.69, -2.49, -0.60, 0.000 +19400323, 1.16, 2.15, -0.56, 0.000 +19400330, 1.50, 0.25, 0.82, 0.000 +19400406, 2.49, 1.22, 2.12, 0.000 +19400413, -1.43, 1.50, -1.64, 0.000 +19400420, -1.08, 1.48, -0.17, 0.000 +19400427, -0.04, 0.15, -0.45, 0.000 +19400504, -0.34, -0.60, -0.74, -0.004 +19400511, -2.11, -1.42, 0.07, -0.004 +19400518, -16.25, -6.26, -5.27, -0.004 +19400525, -5.18, -0.10, 2.15, -0.004 +19400601, 0.74, 1.21, 0.02, 0.001 +19400608, 0.19, -0.28, 0.27, 0.001 +19400615, 6.72, 1.51, 1.42, 0.001 +19400622, 0.02, -1.74, 1.23, 0.001 +19400629, 0.03, -1.54, 1.49, 0.001 +19400706, 0.16, 0.35, 0.53, 0.003 +19400713, -0.27, -0.04, -0.23, 0.003 +19400720, 0.37, 0.98, -1.15, 0.003 +19400727, 0.20, -0.57, 0.20, 0.003 +19400803, 2.68, 0.42, -0.50, -0.002 +19400810, 0.30, -0.85, -0.36, -0.002 +19400817, -3.43, -0.21, -0.36, -0.002 +19400824, 2.31, -0.16, -0.42, -0.002 +19400831, 3.16, 0.94, 2.16, -0.002 +19400907, 3.11, 1.69, 0.84, 0.000 +19400914, -3.45, -0.74, -1.56, 0.000 +19400921, 2.66, 0.82, 0.43, 0.000 +19400928, 0.04, 1.09, -1.49, 0.000 +19401005, 1.36, 0.88, 2.06, 0.000 +19401011, -1.91, -0.21, -0.31, 0.000 +19401019, 1.14, 0.26, 1.16, 0.000 +19401026, 0.74, -0.14, 1.49, 0.000 +19401102, 2.30, -0.38, 1.20, 0.000 +19401109, 2.87, 3.36, 1.51, 0.000 +19401116, -2.10, -0.68, 0.36, 0.000 +19401123, -1.74, -0.02, -0.24, 0.000 +19401130, -1.02, -0.32, -1.55, 0.000 +19401207, 0.37, -0.28, -1.28, 0.000 +19401214, 0.84, -0.46, 0.68, 0.000 +19401221, -2.10, -0.98, -1.01, 0.000 +19401228, 0.68, -0.67, 0.04, 0.000 +19410104, 2.09, 1.59, 2.29, -0.002 +19410111, 0.96, 1.05, 2.37, -0.002 +19410118, -2.53, -0.12, -0.26, -0.002 +19410125, -0.16, -0.20, 1.20, -0.002 +19410201, -4.13, -1.13, -1.45, -0.002 +19410208, 1.23, 0.00, 0.91, -0.002 +19410215, -4.89, -1.75, -0.80, -0.002 +19410221, 1.35, 0.11, 0.76, -0.002 +19410301, 1.36, 0.90, 0.50, 0.003 +19410308, 0.35, 0.00, 0.66, 0.003 +19410315, 1.43, 1.15, 0.45, 0.003 +19410322, -1.24, -0.31, 0.06, 0.003 +19410329, 0.29, -0.91, 1.56, 0.003 +19410405, 1.67, -0.04, 2.63, -0.002 +19410412, -4.56, -1.05, -1.90, -0.002 +19410419, -1.89, -0.84, 0.37, -0.002 +19410426, 0.19, -0.26, 2.64, -0.002 +19410503, -0.09, -0.14, 2.25, 0.001 +19410510, 2.16, -0.07, 2.12, 0.001 +19410517, -1.31, -0.61, -1.96, 0.001 +19410524, 0.62, -0.59, 0.01, 0.001 +19410531, -0.62, 1.01, -1.01, 0.001 +19410607, 2.59, -0.52, -0.07, 0.001 +19410614, 2.51, 1.43, -0.28, 0.001 +19410621, -0.15, 0.49, -0.22, 0.001 +19410628, 1.07, -0.31, 1.04, 0.001 +19410705, 0.82, -0.41, 1.09, 0.007 +19410712, 3.23, 2.89, 0.74, 0.007 +19410719, -0.05, -0.02, 0.01, 0.007 +19410726, 1.24, 1.72, 3.63, 0.007 +19410802, -0.06, 1.58, 0.80, 0.002 +19410809, -1.29, -0.91, -1.22, 0.002 +19410816, -0.94, -0.93, 0.48, 0.002 +19410823, 0.92, 0.59, 0.26, 0.002 +19410830, 1.48, 0.47, -0.29, 0.002 +19410906, -0.18, 0.26, -0.66, 0.002 +19410913, 0.14, 0.12, 0.89, 0.002 +19410920, 0.04, 0.34, -1.17, 0.002 +19410927, -1.45, -1.94, 0.39, 0.002 +19411004, 0.29, 0.11, 1.15, 0.001 +19411011, -2.49, -0.90, -0.32, 0.001 +19411018, -1.38, -1.04, -0.28, 0.001 +19411025, 0.96, 0.57, 0.81, 0.001 +19411101, -1.83, -0.42, 1.11, 0.001 +19411108, 0.30, -0.72, 0.10, 0.001 +19411115, -1.27, -0.89, -0.56, 0.001 +19411122, 0.85, 0.02, 0.58, 0.001 +19411129, -2.12, 0.38, -1.09, 0.001 +19411206, 2.51, -1.39, -0.40, 0.002 +19411213, -6.41, -1.42, -5.87, 0.002 +19411220, -2.40, -0.93, 2.19, 0.002 +19411227, -1.07, 0.52, -0.54, 0.002 +19420103, 5.83, 3.94, 2.40, 0.004 +19420110, -2.12, 3.20, 1.03, 0.004 +19420117, 1.01, 0.23, 1.77, 0.004 +19420124, -0.64, -0.10, 2.57, 0.004 +19420131, -0.48, 0.43, 0.61, 0.004 +19420207, 0.29, 0.51, 0.77, 0.003 +19420214, -2.13, -0.39, -1.34, 0.003 +19420221, -1.66, 1.36, -0.20, 0.003 +19420228, 1.06, 0.22, -0.23, 0.003 +19420307, -4.14, 0.56, -0.72, 0.003 +19420314, -2.03, 1.52, -0.65, 0.003 +19420321, 0.96, -0.66, 1.11, 0.003 +19420328, -1.17, 0.05, 0.25, 0.003 +19420404, 1.00, 0.25, -0.37, 0.002 +19420411, -1.36, -0.33, -0.02, 0.002 +19420418, -2.50, -0.48, -0.18, 0.002 +19420425, -2.53, 1.52, 0.07, 0.002 +19420502, 2.07, -1.94, 2.41, 0.006 +19420509, 1.87, -0.95, -0.17, 0.006 +19420516, 0.35, -1.03, -0.78, 0.006 +19420523, 0.91, -0.18, -1.56, 0.006 +19420529, 1.31, -0.17, -0.38, 0.006 +19420606, 3.53, -0.25, -0.49, 0.006 +19420613, -0.26, -0.19, -0.50, 0.006 +19420620, 0.18, 0.10, 0.39, 0.006 +19420627, -1.15, -0.26, 0.77, 0.006 +19420703, 1.95, -0.99, 0.69, 0.006 +19420711, 3.95, -0.11, 1.04, 0.006 +19420718, -0.84, 0.32, -0.36, 0.006 +19420725, -0.51, -0.50, 0.63, 0.006 +19420801, -0.57, 0.54, 0.82, 0.007 +19420808, -0.54, -0.23, -1.14, 0.007 +19420815, 1.57, -0.96, 1.08, 0.007 +19420822, 1.42, 0.42, 2.33, 0.007 +19420829, -0.82, 0.35, -1.51, 0.007 +19420905, 0.27, 0.08, 0.71, 0.007 +19420912, -0.58, 0.25, -0.19, 0.007 +19420919, 1.07, 0.11, 1.88, 0.007 +19420926, 2.25, 0.52, 0.22, 0.007 +19421003, 2.01, -0.55, 2.54, 0.008 +19421010, 3.79, -0.06, 2.21, 0.008 +19421017, -0.72, 1.65, -0.50, 0.008 +19421024, 1.65, 0.22, 0.60, 0.008 +19421031, -0.35, -0.37, 0.98, 0.008 +19421107, 2.27, 0.25, -0.36, 0.007 +19421114, -0.50, 0.14, -1.16, 0.007 +19421121, -0.45, -0.58, -1.28, 0.007 +19421128, -0.95, -0.40, -0.93, 0.007 +19421205, 0.55, -1.13, -0.47, 0.007 +19421212, 0.56, -0.50, -0.84, 0.007 +19421219, 2.78, -0.10, 1.61, 0.007 +19421226, 0.80, -0.94, -0.70, 0.007 +19430102, 0.96, 0.78, 1.04, 0.007 +19430109, 0.94, 2.53, 1.69, 0.007 +19430116, 1.97, 2.10, 2.67, 0.007 +19430123, 0.66, 1.07, -0.44, 0.007 +19430130, 2.60, 1.22, 2.86, 0.007 +19430206, 0.53, 0.78, 0.10, 0.007 +19430213, 2.21, 2.41, 2.70, 0.007 +19430220, 0.76, 0.48, 0.52, 0.007 +19430227, 2.54, 1.09, 2.56, 0.007 +19430306, 0.95, 1.46, 1.46, 0.008 +19430313, 0.59, 1.79, 1.91, 0.008 +19430320, -1.34, 0.28, -2.04, 0.008 +19430327, 3.97, 0.87, 1.91, 0.008 +19430403, 1.66, 1.32, 5.04, 0.007 +19430410, -2.95, -1.30, -1.53, 0.007 +19430417, 2.20, 1.78, 2.51, 0.007 +19430424, 0.94, 0.59, 2.07, 0.007 +19430501, 1.46, 0.31, 0.85, 0.006 +19430508, 2.48, 2.41, 1.85, 0.006 +19430515, -1.25, 0.56, -0.74, 0.006 +19430522, 1.60, 1.19, 0.51, 0.006 +19430529, 2.27, -0.20, 0.41, 0.006 +19430605, 1.20, 0.51, -0.16, 0.008 +19430612, -1.35, -0.06, -2.37, 0.008 +19430619, -1.01, -1.02, -0.31, 0.008 +19430626, 2.36, -0.05, 1.68, 0.008 +19430703, 1.00, -0.01, 0.60, 0.007 +19430710, 0.47, -0.65, 0.24, 0.007 +19430717, 1.15, -0.68, 1.16, 0.007 +19430724, -0.38, -0.08, -0.31, 0.007 +19430731, -6.24, -1.23, -3.78, 0.007 +19430807, -0.72, -0.38, -1.58, 0.007 +19430814, 2.00, 0.30, 1.78, 0.007 +19430821, -0.99, 0.06, -1.97, 0.007 +19430828, 0.06, -0.56, 0.45, 0.007 +19430904, 1.47, 0.29, 0.60, 0.007 +19430911, 0.73, 0.66, 0.87, 0.007 +19430918, 2.04, 0.34, 1.89, 0.007 +19430925, -0.45, 0.21, -0.37, 0.007 +19431002, -0.31, 0.23, -0.35, 0.007 +19431009, -2.33, -0.63, -0.45, 0.007 +19431016, 0.65, -0.26, 0.42, 0.007 +19431023, 0.23, 0.70, 0.72, 0.007 +19431030, 0.22, 0.42, 0.72, 0.007 +19431106, -2.53, -0.65, -2.99, 0.007 +19431113, -2.35, -1.31, -1.08, 0.007 +19431120, 1.41, 0.74, 2.35, 0.007 +19431127, -1.65, 0.00, -2.35, 0.007 +19431204, 1.20, 0.28, 1.52, 0.007 +19431211, 2.95, 0.90, 0.75, 0.007 +19431218, 0.65, -0.12, 0.62, 0.007 +19431224, -0.04, 0.76, -0.31, 0.007 +19431231, 0.57, 0.72, 0.17, 0.007 +19440108, 1.55, 1.14, 1.55, 0.007 +19440115, 0.58, 1.04, 1.01, 0.007 +19440122, 0.03, -0.01, -0.02, 0.007 +19440129, -0.65, 0.18, -0.55, 0.007 +19440205, -1.08, 0.72, -0.01, 0.007 +19440211, 0.72, -0.32, 1.76, 0.007 +19440219, 0.53, 0.18, 0.44, 0.007 +19440226, 0.89, -0.03, 0.85, 0.007 +19440304, 0.26, -0.45, -1.64, 0.006 +19440311, 2.32, 0.76, 1.28, 0.006 +19440318, 0.98, 0.26, 2.41, 0.006 +19440325, -0.76, 0.75, 0.10, 0.006 +19440401, -0.74, -0.28, -0.87, 0.007 +19440408, 0.18, -0.01, 0.09, 0.007 +19440415, -0.70, -0.66, 0.07, 0.007 +19440422, -1.41, -0.53, -1.06, 0.007 +19440429, 0.20, -0.08, 0.07, 0.007 +19440506, 1.65, 0.40, -0.20, 0.006 +19440513, -0.32, -0.33, -0.86, 0.006 +19440520, 1.55, 0.76, 1.82, 0.006 +19440527, 1.21, 0.56, 0.15, 0.006 +19440603, 0.84, 0.23, -0.38, 0.007 +19440610, 0.10, 0.46, -0.94, 0.007 +19440617, 4.10, 0.92, 1.90, 0.007 +19440624, 0.32, 1.09, 0.71, 0.007 +19440701, 1.10, 1.91, 1.02, 0.007 +19440708, 1.70, 0.46, 1.79, 0.007 +19440715, 0.14, 0.57, -0.17, 0.007 +19440722, -3.85, -1.84, -2.85, 0.007 +19440729, 0.55, 0.97, 1.18, 0.007 +19440805, -0.65, 0.60, -1.52, 0.007 +19440812, 1.47, 0.82, 0.56, 0.007 +19440818, 1.86, 0.85, 0.07, 0.007 +19440825, -1.44, -0.64, -1.13, 0.007 +19440901, 0.58, 1.13, 0.09, 0.006 +19440909, -3.29, -0.28, -1.95, 0.006 +19440916, 0.66, -0.42, -0.45, 0.006 +19440923, 1.33, 0.47, 0.30, 0.006 +19440930, 1.11, 0.61, 1.26, 0.006 +19441007, 1.61, 0.00, 1.04, 0.008 +19441014, -0.10, 0.13, -0.84, 0.008 +19441021, 0.17, 0.29, -0.13, 0.008 +19441028, -1.43, -0.71, -0.65, 0.008 +19441104, 0.83, 0.07, 0.98, 0.007 +19441110, 0.82, 0.26, 0.87, 0.007 +19441118, -1.60, -0.98, -0.43, 0.007 +19441125, 0.72, 0.47, 0.23, 0.007 +19441202, 1.13, 1.10, 1.36, 0.006 +19441209, 2.49, 0.81, 2.23, 0.006 +19441216, 1.03, 0.28, 1.24, 0.006 +19441223, -0.86, -0.03, 1.12, 0.006 +19441230, 1.13, 0.63, 0.46, 0.006 +19450106, 1.23, 0.02, 0.95, 0.006 +19450113, 1.63, 0.26, 2.52, 0.006 +19450120, -1.80, 0.83, -3.06, 0.006 +19450127, 1.25, 0.66, 1.22, 0.006 +19450203, 1.19, 1.18, 0.95, 0.006 +19450210, 0.63, 0.40, 0.10, 0.006 +19450217, 2.47, -0.03, 1.60, 0.006 +19450224, 0.34, -0.04, -0.02, 0.006 +19450303, 0.92, 0.61, 0.95, 0.006 +19450310, -2.12, -1.95, -1.32, 0.006 +19450317, 1.53, 0.35, 1.19, 0.006 +19450324, -3.11, -0.30, -1.62, 0.006 +19450331, 0.07, -0.06, -0.06, 0.006 +19450407, 1.11, -0.65, 0.30, 0.007 +19450413, 2.42, 0.29, 1.18, 0.007 +19450421, 2.45, 0.59, 1.34, 0.007 +19450428, 1.38, -0.06, 0.70, 0.007 +19450505, 1.06, 0.60, -1.64, 0.007 +19450512, -1.35, 0.68, 0.06, 0.007 +19450519, 1.45, 0.63, 0.69, 0.007 +19450526, -0.10, 0.22, 0.67, 0.007 +19450602, 1.17, -0.01, 1.40, 0.006 +19450609, -0.26, 1.65, 0.43, 0.006 +19450616, 1.13, 0.82, 2.44, 0.006 +19450623, 0.96, 0.53, 1.23, 0.006 +19450630, -1.68, -0.06, -1.04, 0.006 +19450706, -0.53, -0.72, -0.51, 0.008 +19450713, 0.72, -0.17, -0.14, 0.008 +19450720, -2.46, -0.40, -1.51, 0.008 +19450727, -1.25, -0.40, -0.88, 0.008 +19450803, 1.57, -0.04, 0.36, 0.007 +19450810, 0.76, 0.87, -2.42, 0.007 +19450817, -0.56, 0.57, -2.47, 0.007 +19450824, 2.61, -0.09, -0.11, 0.007 +19450831, 3.10, 0.45, 0.81, 0.007 +19450908, 1.54, 0.15, -1.40, 0.007 +19450915, -0.63, 0.04, 0.46, 0.007 +19450922, 2.41, 1.13, 0.97, 0.007 +19450929, 1.40, 0.33, 0.47, 0.007 +19451006, 2.00, 0.21, -0.21, 0.008 +19451011, 1.17, 0.84, 1.02, 0.008 +19451020, 0.37, 0.02, 0.60, 0.008 +19451026, -0.37, 0.79, -0.26, 0.008 +19451103, 2.23, 1.28, 0.81, 0.006 +19451110, 1.74, 0.84, 0.88, 0.006 +19451117, 0.92, 0.39, 1.54, 0.006 +19451124, -2.42, 0.42, 0.71, 0.006 +19451201, 4.19, 2.04, 1.12, 0.008 +19451208, 2.40, 1.99, -0.67, 0.008 +19451215, -1.21, 0.13, -0.47, 0.008 +19451222, -1.34, -0.34, -0.86, 0.008 +19451229, 0.89, 0.01, 0.23, 0.008 +19460105, -0.65, -0.21, -0.69, 0.007 +19460112, 4.16, 1.07, 1.17, 0.007 +19460119, 0.52, 1.40, 0.48, 0.007 +19460126, 0.33, 2.11, 0.68, 0.007 +19460202, 2.90, -0.52, 0.66, 0.007 +19460209, -1.99, -0.28, -0.21, 0.007 +19460216, 1.86, 1.18, -0.63, 0.007 +19460221, -4.40, -0.77, -0.80, 0.007 +19460302, -3.20, -1.11, -0.69, 0.007 +19460309, 2.61, 0.00, -0.39, 0.007 +19460316, -0.16, -0.73, -0.09, 0.007 +19460323, 2.37, 1.05, 0.06, 0.007 +19460330, 1.78, 0.11, 0.52, 0.007 +19460406, 2.69, 1.26, -0.11, 0.007 +19460413, 0.17, -0.06, -0.71, 0.007 +19460420, 1.71, 0.89, 0.80, 0.007 +19460427, -0.75, -0.09, 0.38, 0.007 +19460504, -1.39, 0.08, -0.29, 0.007 +19460511, 3.09, 1.78, 1.33, 0.007 +19460518, -0.93, -0.05, -1.06, 0.007 +19460524, 1.41, 0.11, 1.18, 0.007 +19460531, 2.15, -0.11, 0.03, 0.007 +19460607, -1.63, -0.64, -0.53, 0.007 +19460614, -0.24, 0.13, 0.33, 0.007 +19460621, -3.36, -0.84, -0.56, 0.007 +19460628, 1.34, -0.20, 0.19, 0.007 +19460705, 0.16, -0.49, 0.01, 0.008 +19460712, -0.95, -0.81, -0.16, 0.008 +19460719, -1.91, -0.57, 0.26, 0.008 +19460726, -2.08, -0.66, 0.17, 0.008 +19460802, 2.72, 0.50, -0.25, 0.007 +19460809, 0.23, -0.07, 0.58, 0.007 +19460816, -1.06, -0.81, 0.14, 0.007 +19460823, -1.47, -0.45, -0.24, 0.007 +19460830, -4.86, -0.57, 0.22, 0.007 +19460906, -5.42, -1.79, -1.19, 0.007 +19460913, -3.08, -1.65, -0.30, 0.007 +19460920, -3.72, -1.89, -0.85, 0.007 +19460927, 2.88, 0.93, 0.67, 0.007 +19461005, -2.66, -0.41, -0.33, 0.007 +19461011, -0.83, -1.07, 1.24, 0.007 +19461019, 2.34, 1.16, 0.25, 0.007 +19461026, -1.73, 0.02, 1.09, 0.007 +19461102, 2.93, 1.09, 1.15, 0.007 +19461109, -1.02, -0.12, 0.75, 0.007 +19461116, -1.69, -0.41, -0.23, 0.007 +19461123, -2.65, -0.98, 0.21, 0.007 +19461130, 3.00, 0.10, 0.54, 0.007 +19461207, 1.28, 0.52, 0.06, 0.008 +19461214, 2.79, -0.91, -0.72, 0.008 +19461221, 1.73, 1.26, -0.48, 0.008 +19461228, -1.46, -0.42, -0.10, 0.008 +19470104, 0.43, 0.34, -0.64, 0.007 +19470111, -2.01, -0.65, -0.51, 0.007 +19470118, 0.84, 0.39, -0.01, 0.007 +19470125, -0.10, 0.82, -0.01, 0.007 +19470201, 3.35, 1.31, 1.06, 0.007 +19470208, 2.29, 0.15, -0.21, 0.007 +19470215, -1.49, 0.62, -0.60, 0.007 +19470221, -0.19, -0.22, 0.27, 0.007 +19470301, -2.25, -0.27, -0.02, 0.007 +19470308, -2.37, -0.91, 0.24, 0.007 +19470315, -1.96, -0.68, 0.37, 0.007 +19470322, 2.80, -0.59, -0.05, 0.007 +19470329, 0.61, 0.67, 0.02, 0.007 +19470405, -0.93, -0.52, 0.54, 0.007 +19470412, -3.78, -1.33, -0.75, 0.007 +19470419, -2.04, -2.20, 0.09, 0.007 +19470426, 0.18, 0.19, 0.74, 0.007 +19470503, 2.60, -0.37, -0.16, 0.007 +19470510, -1.52, -1.68, 0.37, 0.007 +19470517, -5.85, -2.13, -1.13, 0.007 +19470524, 3.39, 0.55, 1.18, 0.007 +19470529, 1.73, 0.17, 0.58, 0.007 +19470606, 0.20, -0.80, -0.08, 0.008 +19470613, 3.51, 0.68, -0.39, 0.008 +19470620, 1.17, 0.52, 0.11, 0.008 +19470627, -0.04, -0.50, 0.07, 0.008 +19470703, 3.14, 0.64, 1.70, 0.007 +19470711, 1.91, 1.41, 0.52, 0.007 +19470718, 0.03, 0.05, -0.10, 0.007 +19470725, 1.60, 0.47, 1.58, 0.007 +19470801, -1.90, -1.44, -1.06, 0.007 +19470808, -2.10, -0.73, -0.79, 0.007 +19470815, 1.30, 0.80, 1.67, 0.007 +19470822, -0.48, -0.06, -0.32, 0.007 +19470829, -0.68, 0.54, -0.14, 0.007 +19470905, -1.11, 0.13, -0.41, 0.016 +19470912, -0.20, 0.64, 0.01, 0.016 +19470919, 1.35, 0.76, 0.60, 0.016 +19470926, -1.84, 0.35, 0.25, 0.016 +19471004, 2.66, 0.83, 1.92, 0.016 +19471011, 0.43, 1.34, 0.07, 0.016 +19471018, 2.39, -0.27, 0.41, 0.016 +19471025, -0.76, -0.33, -0.38, 0.016 +19471101, -0.70, -1.17, -0.85, 0.016 +19471108, -0.83, -0.57, -0.39, 0.016 +19471115, -0.33, -0.60, 0.41, 0.016 +19471122, 0.90, 0.40, 1.05, 0.016 +19471129, -1.97, -0.88, 0.12, 0.016 +19471206, -1.93, -0.56, 0.41, 0.020 +19471213, 2.93, 0.06, 2.16, 0.020 +19471220, 1.94, -0.45, 1.86, 0.020 +19471227, -0.87, -0.96, -0.36, 0.020 +19480102, 1.39, 0.21, 0.54, 0.018 +19480110, -0.63, 0.96, 0.08, 0.018 +19480117, -2.42, 0.84, -0.51, 0.018 +19480124, -3.19, 0.15, 0.01, 0.018 +19480131, 1.93, -0.23, 0.73, 0.018 +19480207, -2.69, -0.57, -0.30, 0.018 +19480214, -2.87, -0.78, -0.92, 0.018 +19480221, 0.88, -0.13, 0.32, 0.018 +19480228, 0.29, -0.13, 1.14, 0.018 +19480306, 1.62, -0.18, 0.82, 0.022 +19480313, -0.41, -0.23, 0.97, 0.022 +19480320, 3.60, 0.10, 1.85, 0.022 +19480327, 0.76, 0.59, -0.36, 0.022 +19480403, 2.77, -0.93, 0.05, 0.020 +19480410, 1.01, -0.43, 1.47, 0.020 +19480417, 0.98, 0.28, 0.66, 0.020 +19480424, 2.06, -0.39, 2.51, 0.020 +19480501, -1.12, -0.40, -0.25, 0.019 +19480508, 1.64, -0.05, 0.28, 0.019 +19480515, 4.49, 1.36, -0.15, 0.019 +19480522, 0.87, 0.72, 0.38, 0.019 +19480528, 0.42, -1.11, -1.23, 0.019 +19480604, -0.69, -0.98, -0.44, 0.023 +19480611, 2.06, -0.44, 2.30, 0.023 +19480618, -0.50, -0.78, 0.95, 0.023 +19480625, -0.67, 0.67, 0.33, 0.023 +19480702, 0.18, -0.63, 0.01, 0.020 +19480709, 0.45, 0.10, 0.70, 0.020 +19480716, -3.34, 0.34, -0.71, 0.020 +19480723, -0.32, -0.38, -0.34, 0.020 +19480730, -2.42, -0.18, 0.17, 0.020 +19480806, 1.29, -0.96, 0.78, 0.021 +19480813, -2.14, -0.06, -1.59, 0.021 +19480820, 2.00, -0.75, 0.56, 0.021 +19480827, -0.26, 0.07, 0.12, 0.021 +19480903, 1.27, 0.26, 0.98, 0.009 +19480910, -2.72, -0.26, -1.38, 0.009 +19480917, -0.48, 0.13, -0.04, 0.009 +19480924, -0.87, -0.54, -0.59, 0.009 +19481002, 0.73, -0.81, 0.26, 0.010 +19481009, 0.96, -0.03, -0.02, 0.010 +19481016, 1.39, -0.44, 0.32, 0.010 +19481023, 2.99, 0.32, 1.59, 0.010 +19481030, -0.99, -0.84, -1.82, 0.010 +19481106, -5.74, 0.17, -2.51, 0.010 +19481113, -2.39, -0.19, -1.31, 0.010 +19481120, 2.01, -0.10, 0.68, 0.010 +19481127, -2.41, -0.35, -1.30, 0.010 +19481204, 2.28, -0.71, 1.39, 0.011 +19481211, 0.66, -0.53, -0.72, 0.011 +19481218, -0.98, -0.20, -1.53, 0.011 +19481224, 0.65, -0.57, 0.33, 0.011 +19481231, -0.39, -0.91, -1.40, 0.011 +19490108, 2.88, 2.22, 1.20, 0.024 +19490115, -1.86, -0.05, -0.73, 0.024 +19490122, 1.30, 0.15, 0.37, 0.024 +19490129, -1.88, -0.29, 0.20, 0.024 +19490205, -2.48, 0.02, -1.55, 0.022 +19490211, -1.44, -0.80, 0.32, 0.022 +19490219, 1.63, -0.46, 0.26, 0.022 +19490226, -1.62, -0.30, -0.36, 0.022 +19490305, 2.46, -0.48, 0.70, 0.024 +19490312, 2.06, 0.23, 0.70, 0.024 +19490319, -0.88, 0.22, -0.35, 0.024 +19490326, -0.09, -0.09, -0.01, 0.024 +19490402, 0.97, 2.02, 0.68, 0.023 +19490409, 0.13, -0.57, 0.62, 0.023 +19490416, -0.05, 0.10, -0.60, 0.023 +19490423, -1.42, -0.43, -0.83, 0.023 +19490430, -0.20, -0.11, -0.07, 0.023 +19490507, 1.10, -0.45, -0.49, 0.025 +19490514, 0.37, 0.01, 0.68, 0.025 +19490521, -1.18, 0.31, -1.15, 0.025 +19490527, -1.26, -0.38, -0.32, 0.025 +19490603, -2.69, -0.22, -0.83, 0.024 +19490610, -1.45, -0.05, -0.75, 0.024 +19490617, 0.09, -0.74, -0.58, 0.024 +19490624, 2.00, -0.18, 0.26, 0.024 +19490701, 0.88, -0.05, -0.21, 0.022 +19490708, 1.30, 0.35, -0.20, 0.022 +19490715, 1.60, 0.02, 0.55, 0.022 +19490722, 1.08, -0.05, 0.09, 0.022 +19490729, 0.73, 0.09, -0.77, 0.022 +19490805, 1.95, -0.94, 0.78, 0.023 +19490812, 0.77, 1.62, -0.06, 0.023 +19490819, 1.07, -0.03, -0.31, 0.023 +19490826, -1.05, -0.11, -0.64, 0.023 +19490902, 0.57, -0.58, -0.06, 0.022 +19490909, 0.61, -0.28, -0.62, 0.022 +19490916, 1.97, 0.67, 1.10, 0.022 +19490923, -0.39, 0.17, 0.61, 0.022 +19491001, -0.30, 0.77, -1.15, 0.022 +19491008, 2.26, 1.27, -0.03, 0.022 +19491015, 0.42, 0.38, 0.52, 0.022 +19491022, 0.02, -0.14, -0.08, 0.022 +19491029, 1.24, -0.45, -0.45, 0.022 +19491105, 1.24, -0.81, 0.22, 0.021 +19491112, -0.38, -0.27, -1.44, 0.021 +19491119, 1.26, 0.01, -0.25, 0.021 +19491126, -0.51, -0.12, 0.11, 0.021 +19491203, 2.05, 0.57, 1.88, 0.022 +19491210, 0.48, 0.97, -0.90, 0.022 +19491217, 1.63, 0.53, 0.96, 0.022 +19491223, 0.08, -0.20, -0.55, 0.022 +19491231, 0.59, 0.41, 0.39, 0.022 +19500107, 1.77, 2.60, 1.91, 0.023 +19500114, -1.98, 1.03, -0.51, 0.023 +19500121, 1.39, -0.55, -0.36, 0.023 +19500128, -0.28, 0.40, -0.90, 0.023 +19500204, 2.39, -0.64, 0.01, 0.021 +19500211, -0.38, 0.27, -1.22, 0.021 +19500218, 0.37, 0.80, 0.66, 0.021 +19500225, 0.14, -0.26, -0.08, 0.021 +19500304, 0.82, -0.12, 0.59, 0.024 +19500311, -0.84, -0.90, -0.66, 0.024 +19500318, 2.10, -0.58, 0.30, 0.024 +19500325, 0.77, -0.68, -1.34, 0.024 +19500401, -1.49, 0.81, -1.06, 0.021 +19500408, 2.57, -0.29, 0.12, 0.021 +19500415, -0.01, 0.74, -1.61, 0.021 +19500422, 0.21, 1.11, 1.13, 0.021 +19500429, 0.87, 0.21, 0.91, 0.021 +19500506, 1.26, -1.25, 1.33, 0.026 +19500513, 0.31, -0.10, -0.45, 0.026 +19500520, 2.48, -0.63, 0.79, 0.026 +19500527, -0.32, -0.48, -0.55, 0.026 +19500602, 0.47, 0.17, -1.09, 0.024 +19500609, 1.64, -1.04, -0.16, 0.024 +19500616, -1.21, -0.34, 0.13, 0.024 +19500623, 1.02, -0.01, 0.10, 0.024 +19500630, -7.25, -0.93, -0.41, 0.024 +19500707, -0.17, 0.15, 1.01, 0.025 +19500714, -4.00, 0.40, 5.17, 0.025 +19500721, 4.88, -0.25, 4.61, 0.025 +19500728, 0.42, 0.55, 2.29, 0.025 +19500804, 1.99, 0.14, -0.78, 0.024 +19500811, 1.56, -0.72, -1.11, 0.024 +19500818, 2.29, 0.20, 1.52, 0.024 +19500825, -0.48, 0.63, -0.95, 0.024 +19500901, 0.35, -0.12, 0.21, 0.025 +19500908, 1.07, -0.11, 0.35, 0.025 +19500915, 2.37, -0.19, 1.01, 0.025 +19500922, 0.78, 0.13, -0.15, 0.025 +19500929, 0.03, 0.98, -2.39, 0.025 +19501007, 2.72, -0.60, 1.54, 0.029 +19501014, -1.39, 0.48, 0.38, 0.029 +19501021, 1.41, 0.49, 0.65, 0.029 +19501028, -1.32, -0.23, 0.03, 0.029 +19501104, -0.23, -0.97, -1.10, 0.026 +19501110, 1.33, -0.75, 0.91, 0.026 +19501118, 1.65, -0.23, 2.40, 0.026 +19501125, 1.72, 0.23, -0.05, 0.026 +19501202, -3.07, 0.28, 0.35, 0.028 +19501209, 0.04, -0.21, 2.96, 0.028 +19501216, 1.14, -0.41, 2.39, 0.028 +19501222, 2.32, 1.77, 0.96, 0.028 +19501230, 1.80, 0.25, 0.06, 0.028 +19510106, 1.93, 0.61, 1.19, 0.031 +19510113, 1.10, 0.16, 0.20, 0.031 +19510120, 1.52, 0.78, 0.80, 0.031 +19510127, 0.35, 0.47, 0.64, 0.031 +19510203, 2.43, -0.21, 0.51, 0.026 +19510210, 0.86, -0.04, 0.00, 0.026 +19510217, 0.04, -0.08, -0.88, 0.026 +19510224, -0.49, 0.42, -0.64, 0.026 +19510303, -0.01, -0.09, -0.81, 0.027 +19510310, -0.15, 0.36, -1.09, 0.027 +19510317, -1.48, -0.23, -1.51, 0.027 +19510324, -0.89, -0.34, -1.63, 0.027 +19510331, -0.38, -0.72, -0.31, 0.027 +19510407, 1.37, -0.23, 1.31, 0.032 +19510414, 2.36, -0.38, 1.17, 0.032 +19510421, -0.47, -0.07, 0.02, 0.032 +19510428, 1.60, -0.60, 1.10, 0.032 +19510505, 1.07, -0.62, 0.47, 0.031 +19510512, -1.22, 0.46, -0.80, 0.031 +19510519, -2.48, 0.03, -1.27, 0.031 +19510526, -1.52, 0.62, -1.02, 0.031 +19510601, 1.64, -0.92, 0.87, 0.029 +19510608, 0.40, -0.12, 0.10, 0.029 +19510615, 1.79, -1.22, 0.19, 0.029 +19510622, -1.96, 0.03, -1.29, 0.029 +19510629, -2.67, -0.49, -2.98, 0.029 +19510706, 2.87, -0.34, 0.96, 0.034 +19510713, 1.20, -0.59, 0.00, 0.034 +19510720, 0.10, -0.08, -0.39, 0.034 +19510727, 2.66, -0.86, 1.60, 0.034 +19510803, 1.81, -0.11, 0.33, 0.033 +19510810, -0.08, 0.26, -0.59, 0.033 +19510817, 1.22, 0.22, 0.40, 0.033 +19510824, -0.28, 0.33, -0.74, 0.033 +19510831, 1.48, 0.23, 0.26, 0.033 +19510907, 1.61, -0.38, 0.59, 0.030 +19510914, 0.83, 0.46, 0.26, 0.030 +19510921, -1.22, 1.53, -0.29, 0.030 +19510928, -0.51, 0.26, 0.05, 0.030 +19511006, 1.89, 0.71, 1.21, 0.039 +19511013, -0.09, 0.26, -0.06, 0.039 +19511020, -2.88, -0.23, -0.84, 0.039 +19511027, -3.27, 0.10, -0.02, 0.039 +19511103, 0.96, -0.79, -0.62, 0.027 +19511110, 0.99, -0.34, 0.52, 0.027 +19511117, -0.05, 0.08, 0.40, 0.027 +19511124, -2.02, 0.40, -0.68, 0.027 +19511201, 2.88, -0.74, 0.47, 0.031 +19511208, 2.00, -0.88, -0.10, 0.031 +19511215, -0.12, 0.08, -1.17, 0.031 +19511222, 0.33, -0.77, 0.24, 0.031 +19511229, 0.58, -0.30, -0.39, 0.031 +19520105, 0.81, 0.47, 0.41, 0.039 +19520112, 0.56, -1.11, 0.12, 0.039 +19520119, 0.87, -0.56, 1.30, 0.039 +19520126, 0.89, -0.35, -0.70, 0.039 +19520202, -0.46, 0.31, 0.18, 0.029 +19520209, -0.34, 0.74, -0.58, 0.029 +19520216, -1.30, 0.13, 0.15, 0.029 +19520223, -2.02, 0.19, 0.55, 0.029 +19520301, 0.14, 0.08, -0.88, 0.027 +19520308, 2.29, -1.09, 1.39, 0.027 +19520315, 0.48, -0.67, -0.17, 0.027 +19520322, 0.13, -0.28, 0.49, 0.027 +19520329, 1.31, -0.84, 0.59, 0.027 +19520405, -1.35, 0.31, -0.38, 0.029 +19520412, 0.01, -0.02, 0.25, 0.029 +19520419, -2.35, 0.64, -0.51, 0.029 +19520426, -0.06, -0.32, 0.92, 0.029 +19520503, -0.24, -0.64, -0.43, 0.033 +19520510, 1.39, -0.37, -0.18, 0.033 +19520517, -0.59, 0.18, -0.67, 0.033 +19520524, 1.47, -0.24, 0.54, 0.033 +19520529, -0.13, -0.14, 0.39, 0.033 +19520606, 1.53, -0.64, 0.72, 0.037 +19520613, 0.54, -0.13, -0.34, 0.037 +19520620, 0.60, -0.14, -0.03, 0.037 +19520627, 0.75, -0.58, 0.75, 0.037 +19520703, 0.70, 0.06, -0.37, 0.038 +19520711, -0.30, 0.04, -0.10, 0.038 +19520718, -0.56, -0.04, 0.32, 0.038 +19520725, 0.93, -0.06, -0.37, 0.038 +19520801, 0.54, -0.39, 0.21, 0.037 +19520808, 0.30, 0.15, -0.15, 0.037 +19520815, -0.91, 0.54, -0.13, 0.037 +19520822, -0.66, 0.33, -0.20, 0.037 +19520829, 0.44, 0.03, 0.59, 0.037 +19520905, 0.33, 0.11, -0.77, 0.041 +19520912, -1.99, 0.73, -0.51, 0.041 +19520919, -0.26, 0.31, 0.09, 0.041 +19520926, 0.48, -0.07, -0.10, 0.041 +19521003, -1.05, 0.13, -0.14, 0.035 +19521010, 0.27, 0.11, -0.32, 0.035 +19521017, -1.30, -0.22, -0.12, 0.035 +19521024, -0.72, -0.08, -0.33, 0.035 +19521031, 1.55, -0.99, 0.18, 0.035 +19521107, 1.87, -0.74, -0.76, 0.026 +19521114, -0.06, 0.51, -0.43, 0.026 +19521121, 2.19, -0.03, 1.26, 0.026 +19521128, 1.86, -0.45, 0.87, 0.026 +19521205, 0.18, -0.18, -0.04, 0.041 +19521212, 1.18, -0.66, -0.15, 0.041 +19521219, 0.33, -0.47, 0.72, 0.041 +19521226, 0.26, 0.19, 0.38, 0.041 +19530102, 0.98, 0.20, -0.06, 0.040 +19530109, -1.30, 1.72, 0.56, 0.040 +19530116, -0.27, 0.83, 0.04, 0.040 +19530123, 0.13, 0.63, 0.28, 0.040 +19530130, 1.04, -0.20, -0.26, 0.040 +19530206, -1.46, 0.48, -1.23, 0.035 +19530213, 0.01, 0.45, 0.38, 0.035 +19530220, -0.19, 0.46, 0.43, 0.035 +19530227, 1.40, 0.72, 0.36, 0.035 +19530306, 0.02, 0.16, 0.00, 0.046 +19530313, 1.17, -0.47, 0.44, 0.046 +19530320, 0.40, 0.48, -0.15, 0.046 +19530327, -0.39, 0.05, -0.39, 0.046 +19530402, -2.59, -0.12, -0.62, 0.040 +19530410, -1.72, 0.31, 0.42, 0.040 +19530417, -0.61, -0.19, 0.40, 0.040 +19530424, -1.88, 0.05, 0.35, 0.040 +19530501, 1.74, -0.40, 0.02, 0.043 +19530508, 1.00, -0.40, -0.35, 0.043 +19530515, 0.05, 0.13, 0.34, 0.043 +19530522, 0.83, -0.12, 0.52, 0.043 +19530529, -1.75, 0.36, -0.14, 0.043 +19530605, -1.94, -0.22, -0.41, 0.046 +19530612, -1.07, -0.53, 0.05, 0.046 +19530619, 0.11, -0.53, 0.06, 0.046 +19530626, 1.30, -0.63, -0.02, 0.046 +19530703, 0.72, -0.32, 0.15, 0.036 +19530710, 0.07, -0.15, -0.32, 0.036 +19530717, -0.11, -0.24, 0.01, 0.036 +19530724, -0.36, 0.22, -0.13, 0.036 +19530731, 1.78, -0.56, -0.17, 0.036 +19530807, 0.90, 0.15, -0.87, 0.042 +19530814, -0.05, 0.19, -1.11, 0.042 +19530821, -1.16, -0.08, -0.38, 0.042 +19530828, -2.54, 0.20, -0.80, 0.042 +19530904, -0.68, -0.42, -0.56, 0.040 +19530911, -2.03, -0.19, -1.53, 0.040 +19530918, -0.92, -0.72, -0.30, 0.040 +19530925, 1.73, 0.24, 0.17, 0.040 +19531002, 1.37, -0.16, -1.29, 0.031 +19531009, 0.10, -0.12, -0.14, 0.031 +19531016, 2.01, -0.13, 0.81, 0.031 +19531023, 0.69, -0.21, -0.81, 0.031 +19531030, 0.71, -0.32, 0.18, 0.031 +19531106, 1.30, -0.61, 0.12, 0.019 +19531113, -0.10, 0.00, 0.11, 0.019 +19531120, -0.22, 0.49, -0.67, 0.019 +19531127, 1.27, -1.00, 0.16, 0.019 +19531204, 1.39, -0.22, -0.30, 0.032 +19531211, -0.72, 0.09, -0.61, 0.032 +19531218, 0.85, -0.67, -0.25, 0.032 +19531224, -0.67, 0.39, -0.22, 0.032 +19531231, -0.30, -0.33, -1.71, 0.032 +19540108, 0.85, 1.61, 1.46, 0.027 +19540115, 1.88, -0.32, 0.77, 0.027 +19540122, 1.29, -0.26, 0.68, 0.027 +19540129, 1.03, -0.54, 0.36, 0.027 +19540205, 1.21, -0.64, -0.14, 0.018 +19540212, 0.05, 0.38, 0.47, 0.018 +19540219, -0.48, 0.29, -0.07, 0.018 +19540226, 0.89, -0.28, -0.43, 0.018 +19540305, 1.47, -0.99, 0.23, 0.019 +19540312, 0.66, 0.28, -0.90, 0.019 +19540319, 0.70, 0.01, 0.54, 0.019 +19540326, -0.70, 0.41, -0.96, 0.019 +19540402, 2.30, -0.61, -0.31, 0.022 +19540409, 0.87, 0.05, 0.01, 0.022 +19540415, 1.22, -1.09, -0.36, 0.022 +19540423, 0.02, -0.25, -0.41, 0.022 +19540430, 1.27, -1.46, 0.15, 0.022 +19540507, 0.87, -0.47, 0.03, 0.013 +19540514, 0.73, 0.28, 1.28, 0.013 +19540521, 1.05, 0.22, 0.99, 0.013 +19540528, 0.42, 0.24, 0.09, 0.013 +19540604, -0.14, 0.80, -0.48, 0.015 +19540611, -1.42, 0.78, 0.81, 0.015 +19540618, 1.49, -0.65, 0.29, 0.015 +19540625, 1.10, -0.87, -0.12, 0.015 +19540702, 1.09, -0.10, -0.58, 0.013 +19540709, 1.20, -0.32, 0.32, 0.013 +19540716, 0.02, 1.10, 1.71, 0.013 +19540723, 1.19, -0.11, 1.61, 0.013 +19540730, 1.48, 0.40, 0.43, 0.013 +19540806, -0.87, 1.27, -0.62, 0.012 +19540813, 1.41, 0.78, 1.45, 0.012 +19540820, 1.21, -0.54, -0.47, 0.012 +19540827, -1.67, 0.91, -0.70, 0.012 +19540903, -0.34, 0.16, 0.01, 0.022 +19540910, 1.16, -0.72, 1.30, 0.022 +19540917, 1.79, -0.63, -0.01, 0.022 +19540924, 1.69, -1.39, -0.22, 0.022 +19541001, -0.38, 0.34, -0.94, 0.017 +19541008, 0.84, -0.38, 0.71, 0.017 +19541015, -2.52, 1.19, -0.01, 0.017 +19541022, 1.49, -0.40, 0.76, 0.017 +19541029, -1.56, 0.22, -1.06, 0.017 +19541105, 3.44, -1.52, 0.88, 0.016 +19541112, 2.66, -0.83, 2.15, 0.016 +19541119, 0.62, 0.38, 0.68, 0.016 +19541126, 2.74, -1.00, 1.11, 0.016 +19541203, 0.79, 0.98, -0.10, 0.021 +19541210, 0.41, 0.84, 1.21, 0.021 +19541217, 1.13, -0.72, 1.98, 0.021 +19541223, 0.94, 0.68, 0.52, 0.021 +19541231, 1.74, 0.35, 1.41, 0.021 +19550107, -1.76, 0.62, -0.68, 0.020 +19550114, 0.15, 0.89, 0.28, 0.020 +19550121, 0.16, 0.66, -0.22, 0.020 +19550128, 1.32, -1.30, 2.24, 0.020 +19550204, 2.00, -0.54, -0.48, 0.021 +19550211, 1.50, 0.13, -0.05, 0.021 +19550218, 0.20, 1.49, 0.48, 0.021 +19550225, -0.46, 0.30, 0.31, 0.021 +19550304, 2.30, -1.05, 1.40, 0.025 +19550311, -4.15, 0.19, -0.78, 0.025 +19550318, 0.93, 0.21, 0.48, 0.025 +19550325, 2.30, -0.78, 1.22, 0.025 +19550401, -0.10, 0.02, 1.17, 0.026 +19550407, 0.80, -0.39, 0.16, 0.026 +19550415, 1.42, -0.36, 0.08, 0.026 +19550422, -0.21, -0.60, 0.11, 0.026 +19550429, 0.22, 0.05, -0.06, 0.026 +19550506, 0.16, -0.55, 0.14, 0.035 +19550513, -1.04, 0.29, -0.83, 0.035 +19550520, 1.01, 0.24, 0.26, 0.035 +19550527, 0.79, -0.28, -0.18, 0.035 +19550603, 1.14, -0.93, 0.13, 0.026 +19550610, 1.75, -1.74, 1.32, 0.026 +19550617, 2.00, -1.16, 0.60, 0.026 +19550624, 1.10, -0.42, -0.51, 0.026 +19550701, 0.81, 0.19, -0.55, 0.025 +19550708, 0.59, -1.79, -1.10, 0.025 +19550715, 0.00, 0.48, 1.32, 0.025 +19550722, 0.97, 0.29, 0.60, 0.025 +19550729, -0.09, -0.20, -0.38, 0.025 +19550805, -1.54, 0.90, -0.28, 0.040 +19550812, -0.29, -0.33, 0.15, 0.040 +19550819, -0.59, -0.09, 0.84, 0.040 +19550826, 2.06, -0.87, 0.23, 0.040 +19550902, 1.31, -0.14, -0.57, 0.040 +19550909, 0.90, -0.13, 0.61, 0.040 +19550916, 1.63, -0.50, -0.47, 0.040 +19550923, 0.84, -0.16, -0.06, 0.040 +19550930, -4.34, 1.37, -1.17, 0.040 +19551007, -2.44, 1.03, -0.23, 0.045 +19551014, -2.23, 0.21, 0.45, 0.045 +19551021, 2.60, -0.43, 0.23, 0.045 +19551028, -0.47, 0.47, -0.33, 0.045 +19551104, 2.88, -1.43, -0.24, 0.042 +19551111, 2.10, -0.64, 0.01, 0.042 +19551118, 0.79, -0.23, -0.48, 0.042 +19551125, 0.87, -0.64, 1.19, 0.042 +19551202, 0.27, 1.22, -0.25, 0.045 +19551209, 0.98, 0.91, -0.87, 0.045 +19551216, -0.96, 0.80, -0.18, 0.045 +19551223, 1.01, -0.02, -0.22, 0.045 +19551230, 0.33, -0.38, -0.49, 0.045 +19560106, -0.63, 0.85, 0.15, 0.055 +19560113, -0.85, 0.37, 0.05, 0.055 +19560120, -3.07, 0.72, -0.44, 0.055 +19560127, 0.48, -0.63, 0.80, 0.055 +19560203, 2.76, -1.59, -0.69, 0.048 +19560210, -1.97, 0.59, 0.01, 0.048 +19560217, 1.96, -0.35, 0.73, 0.048 +19560224, 2.01, -0.60, 0.31, 0.048 +19560302, 1.39, -0.45, -0.29, 0.038 +19560309, 2.02, 0.16, -0.16, 0.038 +19560316, 2.01, -1.01, -0.66, 0.038 +19560323, 0.99, -0.67, 0.18, 0.038 +19560329, 0.09, -0.01, 0.24, 0.038 +19560406, 0.75, -0.56, -0.37, 0.046 +19560413, -1.56, 1.57, 0.28, 0.046 +19560420, -0.18, -0.18, 0.17, 0.046 +19560427, 0.61, -0.35, 0.32, 0.046 +19560504, 1.36, -0.30, -1.10, 0.058 +19560511, -1.73, 0.82, 0.04, 0.058 +19560518, -1.36, 0.55, 0.23, 0.058 +19560525, -3.92, 0.44, -0.39, 0.058 +19560601, 1.56, -0.56, -1.17, 0.050 +19560608, -0.97, -0.56, -0.30, 0.050 +19560615, 2.69, -0.44, 0.04, 0.050 +19560622, 0.38, -0.03, -0.40, 0.050 +19560629, 0.88, -0.21, -0.41, 0.050 +19560706, 1.90, -0.81, -0.53, 0.054 +19560713, 1.25, 0.26, 0.48, 0.054 +19560720, 1.21, -0.70, -0.05, 0.054 +19560727, -0.30, -0.20, 0.06, 0.054 +19560803, 1.16, -0.15, -0.81, 0.041 +19560810, -0.40, 0.30, -0.11, 0.041 +19560817, -0.54, 0.44, -0.27, 0.041 +19560824, -1.56, 0.75, 0.22, 0.041 +19560831, -1.22, 0.36, 0.30, 0.041 +19560907, 0.68, 0.22, -0.69, 0.046 +19560914, -1.36, -0.05, 1.08, 0.046 +19560921, -1.49, 0.72, 0.88, 0.046 +19560928, -3.03, 0.73, 0.56, 0.046 +19561005, 1.99, -0.51, -0.35, 0.062 +19561012, 0.97, -0.06, -0.15, 0.062 +19561019, -0.94, 0.26, 1.35, 0.062 +19561026, -0.09, -0.04, -0.37, 0.062 +19561102, 1.17, -0.59, -0.62, 0.051 +19561109, -0.47, 0.43, -0.48, 0.051 +19561116, -0.77, 0.47, 1.91, 0.051 +19561123, -0.93, -0.18, 0.17, 0.051 +19561130, -0.03, -0.15, 0.16, 0.051 +19561207, 3.26, -1.16, -0.86, 0.059 +19561214, -0.52, 1.56, -0.46, 0.059 +19561221, -0.34, -0.03, -0.16, 0.059 +19561228, 0.39, -0.27, -0.50, 0.059 +19570104, 0.56, 0.56, 1.43, 0.067 +19570111, -0.52, 1.91, 1.31, 0.067 +19570118, -3.37, 0.92, 0.03, 0.067 +19570125, 0.27, 0.02, -0.30, 0.067 +19570201, -0.59, -0.17, 0.12, 0.060 +19570208, -2.06, -0.02, -0.25, 0.060 +19570215, 0.53, -0.49, -0.46, 0.060 +19570221, 0.02, -0.06, -0.58, 0.060 +19570301, 0.73, -0.57, 0.66, 0.058 +19570308, 0.80, 0.06, -0.84, 0.058 +19570315, 0.22, 0.57, 0.22, 0.058 +19570322, -0.05, 0.35, 0.23, 0.058 +19570329, 0.23, -0.28, -0.02, 0.058 +19570405, 0.76, -0.14, -0.63, 0.063 +19570412, 1.69, -0.45, -0.44, 0.063 +19570418, 0.84, -0.38, -0.22, 0.063 +19570426, 0.37, -0.65, 0.60, 0.063 +19570503, 1.70, -0.29, -1.34, 0.064 +19570510, 0.66, 0.32, -0.85, 0.064 +19570517, 1.23, -0.31, -0.16, 0.064 +19570524, 0.03, -0.60, 0.16, 0.064 +19570531, 0.22, -0.11, -0.57, 0.064 +19570607, 0.36, -0.34, -0.34, 0.060 +19570614, 0.90, -0.07, 0.07, 0.060 +19570621, -2.33, 1.22, -0.22, 0.060 +19570628, 0.35, -0.28, 0.48, 0.060 +19570705, 2.60, -1.00, -0.88, 0.074 +19570712, 0.79, -0.79, 0.82, 0.074 +19570719, -1.10, 0.65, -0.17, 0.074 +19570726, -0.62, -0.04, 0.73, 0.074 +19570802, -1.33, 0.40, 0.25, 0.063 +19570809, -1.43, 0.34, -0.20, 0.063 +19570816, -2.13, 0.04, 0.37, 0.063 +19570823, -2.69, -0.11, 0.58, 0.063 +19570830, 1.40, -0.20, -1.66, 0.063 +19570906, -1.05, 0.73, 0.12, 0.064 +19570913, 0.20, -0.31, -0.38, 0.064 +19570920, -2.37, 0.24, 0.60, 0.064 +19570927, -2.56, -0.21, 0.11, 0.064 +19571004, 0.56, -0.91, 0.84, 0.072 +19571011, -5.07, -0.85, 0.25, 0.072 +19571018, -1.71, -0.31, -0.60, 0.072 +19571025, 0.42, -0.75, -1.78, 0.072 +19571101, -0.27, 0.49, -0.13, 0.069 +19571108, -0.33, 1.08, -1.21, 0.069 +19571115, 0.52, -0.13, -0.16, 0.069 +19571122, 1.35, -0.50, -0.78, 0.069 +19571129, 2.20, -0.72, -0.81, 0.069 +19571206, -0.89, 0.62, -1.05, 0.060 +19571213, -1.17, -0.79, 0.62, 0.060 +19571220, -3.07, -0.13, -0.01, 0.060 +19571227, 0.71, -0.36, -1.16, 0.060 +19580103, 2.79, 0.66, 1.97, 0.069 +19580110, -1.14, 2.20, 0.21, 0.069 +19580117, 1.88, 0.02, 0.99, 0.069 +19580124, 1.54, 0.95, 0.00, 0.069 +19580131, -0.04, -0.10, 0.64, 0.069 +19580207, 0.33, 0.13, -0.18, 0.030 +19580214, -0.84, 0.06, 0.71, 0.030 +19580221, -1.01, 0.72, -0.03, 0.030 +19580228, -0.02, -0.21, -0.21, 0.030 +19580307, 2.92, -0.45, -0.99, 0.024 +19580314, 0.79, 0.23, 0.34, 0.024 +19580321, 0.21, 0.60, -0.05, 0.024 +19580328, -0.34, 0.21, -0.20, 0.024 +19580403, -1.73, 0.03, 0.44, 0.020 +19580411, 0.72, 0.21, 1.11, 0.020 +19580418, 2.14, -0.81, 0.32, 0.020 +19580425, 1.51, 0.14, -0.48, 0.020 +19580502, 0.69, -0.03, -0.26, 0.027 +19580509, 0.98, 0.00, 0.65, 0.027 +19580516, -1.13, 1.05, -0.04, 0.027 +19580523, 1.32, 1.03, -0.55, 0.027 +19580529, 0.57, -0.06, -0.09, 0.027 +19580606, 1.28, -0.35, 0.11, 0.007 +19580613, 0.95, -0.24, -0.09, 0.007 +19580620, -0.28, 0.11, 0.22, 0.007 +19580627, 0.33, 0.49, 0.49, 0.007 +19580703, 1.18, -0.11, -0.33, 0.017 +19580711, 0.55, -0.54, 0.56, 0.017 +19580718, 0.22, -0.62, 1.10, 0.017 +19580725, 2.57, 0.64, 0.50, 0.017 +19580801, 1.20, 0.81, 1.29, 0.011 +19580808, 1.24, -0.54, 0.38, 0.011 +19580815, -0.89, 0.62, -0.46, 0.011 +19580822, 0.58, 0.54, 0.20, 0.011 +19580829, 0.22, 0.53, -0.14, 0.011 +19580905, 0.60, 0.65, -0.69, 0.048 +19580912, 1.05, 0.13, 0.13, 0.048 +19580919, 1.65, -0.92, 2.44, 0.048 +19580926, 0.44, 0.32, 0.39, 0.048 +19581003, 1.30, -0.28, 0.73, 0.046 +19581010, 1.81, -0.41, -0.14, 0.046 +19581017, 0.10, 0.83, -2.02, 0.046 +19581024, -1.03, 0.64, 1.26, 0.046 +19581031, 1.10, 0.17, -0.36, 0.046 +19581107, 1.94, -0.83, -0.66, 0.027 +19581114, 1.75, 0.68, -0.19, 0.027 +19581121, -0.58, 1.32, -1.16, 0.027 +19581128, -0.11, 0.81, 0.76, 0.027 +19581205, 0.18, 0.59, -0.65, 0.056 +19581212, 1.46, -0.38, -0.23, 0.056 +19581219, 1.35, -1.55, -0.03, 0.056 +19581224, 0.17, -0.18, 0.79, 0.056 +19590102, 2.20, -0.47, 0.94, 0.051 +19590109, 0.70, 0.04, 1.17, 0.051 +19590116, 0.26, 0.96, 1.62, 0.051 +19590123, 0.40, 1.00, -0.28, 0.051 +19590130, -1.06, 0.98, -0.35, 0.051 +19590206, -1.53, 0.07, 0.51, 0.047 +19590213, 0.32, 0.83, 0.61, 0.047 +19590220, 2.17, 0.16, 0.77, 0.047 +19590227, 0.03, 0.46, -0.86, 0.047 +19590306, 1.38, -0.17, -0.38, 0.054 +19590313, 1.00, 0.66, 1.14, 0.054 +19590320, -0.42, 1.15, -0.75, 0.054 +19590326, -1.03, 0.19, -0.42, 0.054 +19590403, 1.04, -1.03, 0.47, 0.050 +19590410, -0.31, 0.03, 0.81, 0.050 +19590417, 2.76, -1.30, -0.50, 0.050 +19590424, -0.08, 1.03, -1.96, 0.050 +19590501, -0.34, 0.61, 0.08, 0.055 +19590508, -0.43, 0.22, -0.82, 0.055 +19590515, 1.35, -1.07, 1.33, 0.055 +19590522, 0.25, -0.93, 1.34, 0.055 +19590529, 0.41, -0.82, 0.06, 0.055 +19590605, -1.98, 0.47, -0.14, 0.061 +19590612, -0.39, 0.05, 1.40, 0.061 +19590619, -0.11, 0.43, 0.25, 0.061 +19590626, 1.32, -0.36, -0.33, 0.061 +19590702, 2.19, -0.23, 0.18, 0.063 +19590710, 0.96, -0.67, 0.90, 0.063 +19590717, -1.15, 1.50, -1.11, 0.063 +19590724, 0.80, 0.42, 0.04, 0.063 +19590731, 1.23, -1.38, 0.01, 0.063 +19590807, -1.09, -0.36, 0.92, 0.046 +19590814, -0.86, 0.22, -0.39, 0.046 +19590821, -0.36, -0.09, -0.31, 0.046 +19590828, 0.71, -0.30, 0.16, 0.046 +19590904, -1.58, -0.62, -0.02, 0.077 +19590911, -2.02, 0.13, 0.29, 0.077 +19590918, -2.46, -0.06, -0.71, 0.077 +19590925, 1.17, 0.05, 0.28, 0.077 +19591002, 0.75, 0.32, 0.59, 0.075 +19591009, -0.21, 0.95, -0.48, 0.075 +19591016, 0.57, -0.11, 0.37, 0.075 +19591023, -1.22, 0.60, -0.51, 0.075 +19591030, 1.57, -0.46, -1.23, 0.075 +19591106, 0.33, -0.07, -0.19, 0.064 +19591113, -1.11, 1.59, -0.90, 0.064 +19591120, 0.22, 0.08, -0.82, 0.064 +19591127, 1.22, -0.18, -1.25, 0.064 +19591204, 1.89, 0.11, -0.28, 0.084 +19591211, 0.09, 0.12, 0.57, 0.084 +19591218, 0.40, -0.41, 0.36, 0.084 +19591224, -0.28, 0.63, -0.34, 0.084 +19591231, 1.24, -1.16, -0.47, 0.084 +19600108, -0.71, 0.91, 1.78, 0.083 +19600115, -1.70, 1.05, 1.13, 0.083 +19600122, -1.62, 0.48, 0.11, 0.083 +19600129, -3.12, -0.24, -0.08, 0.083 +19600205, 0.63, -0.76, -0.51, 0.072 +19600212, -0.77, 0.23, 0.57, 0.072 +19600219, 1.33, 0.01, -0.68, 0.072 +19600226, 0.07, 1.06, -0.80, 0.072 +19600304, -2.85, -0.34, -1.66, 0.087 +19600311, -0.59, 0.30, 0.27, 0.087 +19600318, 1.37, 0.15, -0.53, 0.087 +19600325, 1.61, -1.02, -0.46, 0.087 +19600401, -1.01, 0.44, -1.16, 0.049 +19600408, 1.59, -0.65, -0.40, 0.049 +19600414, 0.04, 0.08, -0.73, 0.049 +19600422, -1.61, 0.73, -0.40, 0.049 +19600429, -1.90, 0.20, -0.57, 0.049 +19600506, 0.80, -0.22, -0.99, 0.068 +19600513, 1.19, 0.61, -0.83, 0.068 +19600520, 0.94, -0.48, 0.36, 0.068 +19600527, -0.03, 1.44, -1.18, 0.068 +19600603, 0.86, -1.05, -0.55, 0.060 +19600610, 3.03, -1.03, 0.58, 0.060 +19600617, -0.70, 1.06, -1.15, 0.060 +19600624, 0.34, -0.36, 1.04, 0.060 +19600701, -1.02, 0.96, -1.02, 0.033 +19600708, 0.51, -0.53, 0.66, 0.033 +19600715, -2.25, 0.19, 1.24, 0.033 +19600722, -2.29, 0.25, 0.77, 0.033 +19600729, 1.45, -0.66, -0.38, 0.033 +19600805, -0.06, -0.10, 0.04, 0.041 +19600812, 2.28, 0.18, 0.50, 0.041 +19600819, 0.82, 0.02, -0.32, 0.041 +19600826, 0.97, 0.02, 0.36, 0.041 +19600902, -0.92, 1.03, -0.95, 0.039 +19600909, -1.57, -0.15, 0.57, 0.039 +19600916, -1.81, -0.45, 0.39, 0.039 +19600923, -2.26, 0.05, 0.10, 0.039 +19600930, -0.61, -0.78, 0.65, 0.039 +19601007, 0.81, -1.10, 0.54, 0.054 +19601014, 1.45, -0.90, 0.59, 0.054 +19601021, -2.86, -0.16, 1.26, 0.054 +19601028, 0.02, -1.43, 0.27, 0.054 +19601104, 2.73, -1.12, 0.23, 0.033 +19601111, 1.79, 0.58, -0.98, 0.033 +19601118, 0.18, -0.14, -0.66, 0.033 +19601125, 0.81, 0.51, -1.47, 0.033 +19601202, -1.19, 0.86, -0.07, 0.039 +19601209, 2.34, -0.59, -0.23, 0.039 +19601216, 1.15, 0.14, -0.95, 0.039 +19601223, 0.31, -0.57, 0.29, 0.039 +19601230, 1.06, -0.95, 0.50, 0.039 +19610106, 0.69, 1.24, 1.85, 0.047 +19610113, 1.86, 0.53, 1.08, 0.047 +19610120, 0.76, 0.52, 0.86, 0.047 +19610127, 1.86, -1.06, -0.25, 0.047 +19610203, 1.71, 0.21, -0.23, 0.036 +19610210, -0.70, 1.46, 0.50, 0.036 +19610217, 1.13, 0.89, 0.57, 0.036 +19610224, 1.31, 0.74, -1.11, 0.036 +19610303, 1.73, 0.27, -1.26, 0.051 +19610310, -0.37, 1.49, -0.41, 0.051 +19610317, 1.79, 0.29, -0.47, 0.051 +19610324, -0.28, 0.08, 1.07, 0.051 +19610330, 0.97, 1.06, -0.39, 0.051 +19610407, 1.27, -0.69, 0.49, 0.044 +19610414, 0.63, -0.01, 0.00, 0.044 +19610421, -0.82, 1.24, 0.67, 0.044 +19610428, -0.78, -0.47, 0.96, 0.044 +19610505, 1.90, 0.32, 0.21, 0.044 +19610512, 0.17, 1.49, -0.56, 0.044 +19610519, 1.15, -0.82, 0.77, 0.044 +19610526, -0.95, 1.30, -0.02, 0.044 +19610602, 0.27, -0.78, -0.82, 0.050 +19610609, -0.10, -0.90, 0.03, 0.050 +19610616, -2.24, -0.38, -0.51, 0.050 +19610623, -0.13, -0.84, 0.23, 0.050 +19610630, -0.82, 0.15, 0.67, 0.050 +19610707, 1.69, 0.28, -0.58, 0.046 +19610714, -0.85, -0.82, 0.63, 0.046 +19610721, -0.77, -0.68, -0.24, 0.046 +19610728, 2.65, -0.58, 0.14, 0.046 +19610804, 1.54, -0.72, 0.34, 0.035 +19610811, 0.87, -0.52, -0.72, 0.035 +19610818, 0.39, -0.17, 0.32, 0.035 +19610825, -0.86, -0.37, 0.23, 0.035 +19610901, 0.92, 0.13, -0.78, 0.042 +19610908, -0.59, -0.99, 0.12, 0.042 +19610915, -0.50, 0.23, -0.30, 0.042 +19610922, -1.36, -0.58, 0.75, 0.042 +19610929, 0.08, 0.06, -0.95, 0.042 +19611006, 1.74, -0.39, 0.18, 0.046 +19611013, 0.10, -0.01, 0.26, 0.046 +19611020, 0.54, -0.52, -0.12, 0.046 +19611027, -0.21, -0.54, -0.40, 0.046 +19611103, 1.68, -0.12, -0.07, 0.039 +19611110, 2.38, 0.40, -0.90, 0.039 +19611117, 0.84, 0.27, -1.19, 0.039 +19611124, 0.40, 0.58, 0.35, 0.039 +19611201, 0.03, -0.08, 0.90, 0.047 +19611208, 0.31, -0.79, 0.62, 0.047 +19611215, -0.24, -0.58, 0.28, 0.047 +19611222, -1.51, 0.79, 0.76, 0.047 +19611229, 0.69, -0.41, -0.01, 0.047 +19620105, -2.73, 1.17, 2.47, 0.060 +19620112, -0.04, 0.24, 0.78, 0.060 +19620119, -1.18, 1.04, 0.70, 0.060 +19620126, -0.94, -0.21, 0.80, 0.060 +19620202, 2.30, -1.28, 0.60, 0.050 +19620209, 1.17, -0.03, -0.27, 0.050 +19620216, 0.12, 0.08, 0.85, 0.050 +19620223, -0.62, -0.33, 0.38, 0.050 +19620302, 0.05, 0.23, -0.41, 0.051 +19620309, 0.35, 0.59, -1.02, 0.051 +19620316, 0.74, -0.28, -0.38, 0.051 +19620323, -0.74, 0.29, -0.29, 0.051 +19620330, -1.29, -0.25, 0.14, 0.051 +19620406, -1.17, -0.04, -0.07, 0.056 +19620413, -1.61, -0.54, 0.11, 0.056 +19620419, 1.13, -0.33, 0.42, 0.056 +19620427, -3.39, 0.22, -0.31, 0.056 +19620504, -0.11, -0.50, -0.02, 0.060 +19620511, -5.30, -0.53, 1.30, 0.060 +19620518, 1.69, -0.35, 0.16, 0.060 +19620525, -6.99, -1.45, 1.34, 0.060 +19620601, -0.02, -0.40, 0.10, 0.049 +19620608, -1.73, -0.17, 0.74, 0.049 +19620615, -4.39, -1.36, 1.61, 0.049 +19620622, -5.89, 0.64, 0.73, 0.049 +19620629, 3.84, -0.07, -0.64, 0.049 +19620706, 2.71, -0.59, -0.46, 0.066 +19620713, 3.17, 2.95, -1.85, 0.066 +19620720, -1.79, -0.46, 0.29, 0.066 +19620727, 0.45, -0.35, -0.48, 0.066 +19620803, 1.46, 0.05, -0.74, 0.059 +19620810, -0.87, 0.09, 0.51, 0.059 +19620817, 2.57, 0.62, -1.70, 0.059 +19620824, 1.15, 0.30, -0.22, 0.059 +19620831, -0.56, 0.12, 0.06, 0.059 +19620907, -1.30, -0.32, 0.74, 0.052 +19620914, 0.80, -0.91, -0.39, 0.052 +19620921, -2.09, -0.60, -0.28, 0.052 +19620928, -2.69, -0.72, 1.22, 0.052 +19621005, 1.29, -1.10, -0.09, 0.064 +19621012, -0.19, -0.17, 0.10, 0.064 +19621019, -2.61, -1.01, 0.67, 0.064 +19621026, -2.16, -1.72, 1.30, 0.064 +19621102, 5.88, -0.12, -1.40, 0.050 +19621109, 2.11, 0.72, 1.12, 0.050 +19621116, 2.43, 0.85, 0.16, 0.050 +19621123, 2.39, -0.49, 0.58, 0.050 +19621130, 1.40, 1.49, -0.36, 0.050 +19621207, 1.36, -0.75, -0.98, 0.058 +19621214, -0.97, -1.28, 0.44, 0.058 +19621221, -0.03, -1.41, 0.24, 0.058 +19621228, 0.42, -0.23, 0.28, 0.058 +19630104, 2.02, 2.46, 0.40, 0.063 +19630111, 1.24, 0.58, 0.34, 0.063 +19630118, 0.45, 0.28, 0.29, 0.063 +19630125, 1.04, 0.36, 0.68, 0.063 +19630201, 0.48, -0.84, 1.03, 0.057 +19630208, -0.05, -0.14, 0.30, 0.057 +19630215, 0.44, 0.36, 1.14, 0.057 +19630221, -0.67, -0.11, 0.35, 0.057 +19630301, -2.62, 0.03, 0.26, 0.057 +19630308, 1.77, -0.89, 0.27, 0.057 +19630315, 0.70, -0.98, 0.44, 0.057 +19630322, 0.36, -0.47, 0.71, 0.057 +19630329, 0.56, 0.06, 0.46, 0.057 +19630405, 2.23, -0.95, 0.05, 0.063 +19630411, 0.63, -0.16, 0.31, 0.063 +19630419, 0.78, -0.36, 0.79, 0.063 +19630426, 0.66, 0.25, -0.10, 0.063 +19630503, 0.44, 0.11, -0.09, 0.061 +19630510, 0.83, 0.73, -0.38, 0.061 +19630517, -0.15, 0.85, 1.34, 0.061 +19630524, -0.33, 0.32, 1.03, 0.061 +19630531, 1.03, -0.98, 0.45, 0.061 +19630607, -0.52, 0.03, 0.30, 0.057 +19630614, -0.17, 0.40, -1.06, 0.057 +19630621, 0.03, 0.31, 0.83, 0.057 +19630628, -1.34, -0.98, 0.65, 0.057 +19630705, 1.14, -0.22, -0.43, 0.067 +19630712, -0.65, 0.40, -0.49, 0.067 +19630719, -1.78, 0.01, 0.27, 0.067 +19630726, 0.07, -0.43, -0.19, 0.067 +19630802, 1.03, -0.70, 0.01, 0.062 +19630809, 1.72, -0.87, 0.26, 0.062 +19630816, 1.39, -0.45, 1.08, 0.062 +19630823, 0.51, 0.60, -0.27, 0.062 +19630830, 1.12, 0.14, 0.47, 0.062 +19630906, 0.41, -0.01, 0.10, 0.068 +19630913, 0.33, -0.18, 0.34, 0.068 +19630920, 0.01, -0.43, 0.27, 0.068 +19630927, -1.72, 0.12, -0.73, 0.068 +19631004, 0.81, -0.42, 1.25, 0.073 +19631011, -0.77, 0.82, 0.40, 0.073 +19631018, 1.33, -0.20, -0.01, 0.073 +19631025, 0.71, -0.07, -1.24, 0.073 +19631101, -0.39, -0.29, -0.13, 0.068 +19631108, -0.34, 0.00, 0.70, 0.068 +19631115, -1.27, 1.13, -0.24, 0.068 +19631122, -4.00, -1.63, -0.14, 0.068 +19631129, 5.14, -0.81, 1.34, 0.068 +19631206, 0.97, -0.81, -0.09, 0.073 +19631213, -0.06, -0.43, 0.17, 0.073 +19631220, -0.03, -1.56, 0.28, 0.073 +19631227, 0.24, 0.77, -0.28, 0.073 +19640103, 1.41, 0.82, 0.68, 0.074 +19640110, 0.86, 0.23, 0.18, 0.074 +19640117, 0.17, -0.10, 0.62, 0.074 +19640124, 0.64, -0.39, 0.28, 0.074 +19640131, -0.29, -0.72, -0.40, 0.074 +19640207, 0.39, -0.12, 0.03, 0.066 +19640214, 0.54, 0.36, -0.01, 0.066 +19640220, 0.24, -0.24, 1.56, 0.066 +19640228, 0.36, 0.12, 1.20, 0.066 +19640306, 0.59, 0.15, 0.19, 0.078 +19640313, 0.95, -0.65, 1.14, 0.078 +19640320, -0.19, 0.28, 0.65, 0.078 +19640326, 0.32, 0.80, 1.51, 0.078 +19640403, 0.83, 0.41, 0.29, 0.073 +19640410, -0.08, 1.09, -0.05, 0.073 +19640417, 0.68, -0.91, -0.70, 0.073 +19640424, -1.06, -0.89, -0.49, 0.073 +19640501, 0.22, -0.93, 0.55, 0.064 +19640508, 1.09, -0.85, 1.41, 0.064 +19640515, 0.07, 0.03, -0.20, 0.064 +19640522, -0.23, 0.27, -0.05, 0.064 +19640528, -0.30, -0.20, 0.47, 0.064 +19640605, -1.73, -0.38, -0.02, 0.076 +19640612, 0.53, 0.08, -0.17, 0.076 +19640619, 1.59, -0.18, 0.73, 0.076 +19640626, 0.67, 0.21, 0.48, 0.076 +19640702, 1.20, -0.31, 0.16, 0.074 +19640710, 0.89, 0.06, 0.39, 0.074 +19640717, 0.76, -0.05, -0.31, 0.074 +19640724, -0.54, 0.53, 0.07, 0.074 +19640731, -0.40, -0.13, 0.43, 0.074 +19640807, -1.52, -0.35, -0.02, 0.071 +19640814, 0.68, 0.57, 0.10, 0.071 +19640821, -0.33, -0.16, -0.14, 0.071 +19640828, -0.08, -0.19, 0.06, 0.071 +19640904, 0.92, 0.09, 0.45, 0.070 +19640911, 0.70, -0.59, 0.86, 0.070 +19640918, 0.03, -0.04, 0.51, 0.070 +19640925, 0.73, 0.18, -0.25, 0.070 +19641002, 0.12, -0.05, 0.03, 0.073 +19641009, 0.83, -0.45, 0.90, 0.073 +19641016, -0.37, 0.28, 0.32, 0.073 +19641023, 0.35, 0.28, 0.52, 0.073 +19641030, -0.34, 0.58, -0.79, 0.073 +19641106, 0.57, -0.49, -0.73, 0.072 +19641113, 0.10, 0.51, -0.16, 0.072 +19641120, 1.21, -0.34, -0.86, 0.072 +19641127, -1.02, 0.72, -0.16, 0.072 +19641204, -1.03, 0.00, -0.39, 0.078 +19641211, -0.87, -0.30, -0.59, 0.078 +19641218, 0.62, 0.20, -0.55, 0.078 +19641224, -0.21, 0.27, -0.54, 0.078 +19641231, 0.61, -0.23, -0.56, 0.078 +19650108, 0.95, 1.55, 0.23, 0.071 +19650115, 1.04, 0.32, 0.34, 0.071 +19650122, 0.57, -0.16, 0.04, 0.071 +19650129, 0.93, 0.87, -0.49, 0.071 +19650205, -0.02, 1.15, -0.57, 0.074 +19650212, -1.18, 0.70, 0.21, 0.074 +19650219, 0.25, 1.52, 0.27, 0.074 +19650226, 1.42, -0.03, 0.19, 0.074 +19650305, -0.52, 1.13, -0.39, 0.090 +19650312, 0.44, 0.19, 0.21, 0.090 +19650319, -0.49, 0.30, 0.24, 0.090 +19650326, -0.79, 0.15, 0.82, 0.090 +19650402, 0.36, 0.22, 0.17, 0.076 +19650409, 1.11, 0.46, -0.12, 0.076 +19650415, 0.66, 0.54, 0.15, 0.076 +19650423, 0.68, 0.21, -0.49, 0.076 +19650430, 0.18, -0.25, 1.05, 0.076 +19650507, 0.75, -1.03, -0.28, 0.078 +19650514, 0.32, 0.95, -1.05, 0.078 +19650521, -1.40, 0.46, 0.23, 0.078 +19650528, -0.45, -0.42, -0.47, 0.078 +19650604, -1.54, -0.23, -0.47, 0.088 +19650611, -2.46, -1.46, 0.83, 0.088 +19650618, 0.12, -0.31, 0.12, 0.088 +19650625, -2.82, -1.32, -0.01, 0.088 +19650702, 2.36, -0.77, 0.06, 0.077 +19650709, 0.66, 0.51, -0.17, 0.077 +19650716, 0.02, 0.50, 0.00, 0.077 +19650723, -1.88, -0.28, 0.66, 0.077 +19650730, 1.34, -0.46, 1.64, 0.077 +19650806, 1.09, 0.70, -0.74, 0.082 +19650813, 0.94, 0.98, -0.02, 0.082 +19650820, -0.03, -0.14, 0.30, 0.082 +19650827, 0.68, 0.65, -0.33, 0.082 +19650903, 1.05, 0.68, -0.16, 0.078 +19650910, 1.05, 0.35, -0.85, 0.078 +19650917, 0.82, -0.54, 0.46, 0.078 +19650924, 0.08, 0.15, 0.75, 0.078 +19651001, -0.27, 0.59, -0.39, 0.079 +19651008, 1.15, 1.33, 0.46, 0.079 +19651015, 0.59, 1.22, 0.59, 0.079 +19651022, 0.46, 0.47, -0.52, 0.079 +19651029, 0.40, -0.79, 0.84, 0.079 +19651105, 0.28, 0.52, -0.51, 0.087 +19651112, 0.08, 1.06, -0.32, 0.087 +19651119, -0.18, 1.19, 0.02, 0.087 +19651126, 0.07, 1.22, 0.52, 0.087 +19651203, -0.51, 1.33, 0.69, 0.083 +19651210, 0.65, 1.34, -0.37, 0.083 +19651217, 0.53, 0.43, 2.39, 0.083 +19651223, -0.22, -1.23, 0.44, 0.083 +19651231, 0.20, 0.73, -0.52, 0.083 +19660107, 0.73, 0.34, 1.67, 0.095 +19660114, 0.47, 1.41, 0.14, 0.095 +19660121, 0.01, 0.75, 0.35, 0.095 +19660128, -0.06, 1.15, 1.25, 0.095 +19660204, -0.10, -0.47, -0.09, 0.087 +19660211, 0.73, 1.48, 0.48, 0.087 +19660218, -1.23, 1.46, 0.18, 0.087 +19660225, -1.19, 1.18, -0.17, 0.087 +19660304, -2.05, 1.52, -0.67, 0.096 +19660311, -0.48, -0.37, -0.57, 0.096 +19660318, -0.56, -1.32, 0.09, 0.096 +19660325, 1.27, 1.78, -0.84, 0.096 +19660401, 0.18, 0.10, -0.15, 0.085 +19660407, 2.03, 0.76, 0.85, 0.085 +19660415, 0.30, 1.75, -0.46, 0.085 +19660422, 0.24, 0.35, 0.62, 0.085 +19660429, -1.21, 0.64, -1.53, 0.085 +19660506, -3.75, -3.22, 0.33, 0.103 +19660513, -2.78, -1.66, -1.31, 0.103 +19660520, -0.20, -1.21, -0.65, 0.103 +19660527, 2.37, 1.28, 0.01, 0.103 +19660603, -1.32, 0.17, 0.01, 0.094 +19660610, 0.50, 0.40, 0.66, 0.094 +19660617, 0.20, 1.65, -0.65, 0.094 +19660624, 0.08, 0.03, 0.77, 0.094 +19660701, -1.31, -0.82, 0.56, 0.088 +19660708, 2.02, -0.11, -0.41, 0.088 +19660715, -0.45, 0.58, 0.04, 0.088 +19660722, -1.89, -0.08, 0.90, 0.088 +19660729, -2.26, -1.10, 0.70, 0.088 +19660805, 0.51, -0.63, -0.31, 0.102 +19660812, -0.64, 0.62, -1.31, 0.102 +19660819, -4.32, -0.60, 0.48, 0.102 +19660826, -4.26, -1.08, 1.48, 0.102 +19660902, 0.92, -2.05, 0.36, 0.100 +19660909, -1.51, -0.29, 0.35, 0.100 +19660916, 4.65, -0.45, -1.91, 0.100 +19660923, -2.92, 0.50, 1.20, 0.100 +19660930, -1.48, -0.55, 0.51, 0.100 +19661007, -4.87, -3.60, 2.86, 0.113 +19661014, 4.54, -0.70, -1.15, 0.113 +19661021, 1.97, -1.13, -0.77, 0.113 +19661028, 2.44, -1.16, 1.66, 0.113 +19661104, 1.00, 0.62, -1.55, 0.099 +19661111, 1.49, 1.33, -1.43, 0.099 +19661118, -0.54, 1.46, -0.19, 0.099 +19661125, -0.36, 0.38, -0.65, 0.099 +19661202, -0.62, 1.06, -1.03, 0.100 +19661209, 2.37, -0.12, -1.55, 0.100 +19661216, -0.35, 1.55, -0.41, 0.100 +19661223, -0.02, 0.40, 1.17, 0.100 +19661230, -1.51, -0.41, 0.01, 0.100 +19670106, 2.25, 2.07, 1.45, 0.108 +19670113, 2.92, 1.25, 1.30, 0.108 +19670120, 1.87, 1.36, 0.22, 0.108 +19670127, 0.34, 2.06, -1.27, 0.108 +19670203, 1.38, 2.02, 0.63, 0.089 +19670210, 0.41, 0.67, -0.76, 0.089 +19670217, 0.52, 0.70, -0.38, 0.089 +19670224, -0.30, 0.82, -0.58, 0.089 +19670303, 0.92, 0.14, -1.22, 0.097 +19670310, 0.84, 0.98, 0.76, 0.097 +19670317, 1.32, -0.47, -0.27, 0.097 +19670323, 0.64, 0.07, -0.04, 0.097 +19670331, -0.58, 0.71, 0.50, 0.097 +19670407, -0.91, -0.10, 0.58, 0.081 +19670414, 1.01, -0.29, -0.83, 0.081 +19670421, 2.07, 0.51, -0.78, 0.081 +19670428, 1.67, 0.25, -1.27, 0.081 +19670505, 0.64, 1.30, -0.17, 0.083 +19670512, -0.69, 0.63, 0.52, 0.083 +19670519, -1.13, 1.27, 0.34, 0.083 +19670526, -1.09, -0.33, 0.03, 0.083 +19670602, -1.39, -0.28, -0.19, 0.066 +19670609, 2.04, 0.55, -0.09, 0.066 +19670616, 1.27, 1.60, -0.16, 0.066 +19670623, -0.38, 1.76, 0.08, 0.066 +19670630, -1.28, 1.35, 1.10, 0.066 +19670707, 1.28, 1.53, -0.60, 0.079 +19670714, 1.29, 0.84, 0.95, 0.079 +19670721, 1.05, -0.91, 2.19, 0.079 +19670728, 0.58, 1.18, 0.11, 0.079 +19670804, 1.32, -0.03, 0.16, 0.078 +19670811, -0.72, -0.01, 0.93, 0.078 +19670818, -0.35, 0.16, 0.16, 0.078 +19670825, -2.09, 0.13, 0.09, 0.078 +19670901, 1.36, 0.92, -0.02, 0.080 +19670908, 0.64, 0.70, -0.48, 0.080 +19670915, 1.83, -0.11, -0.04, 0.080 +19670922, 0.71, 1.05, -0.65, 0.080 +19670929, -0.27, 0.97, -1.24, 0.080 +19671006, 0.56, 1.34, -1.44, 0.098 +19671013, -1.38, 0.31, 0.37, 0.098 +19671020, -0.80, -0.08, -1.09, 0.098 +19671027, -0.47, -0.05, -1.37, 0.098 +19671103, -3.22, 0.54, -0.35, 0.089 +19671110, 0.28, -0.26, -0.04, 0.089 +19671117, 0.67, -1.12, -0.21, 0.089 +19671124, 1.15, 0.32, -1.23, 0.089 +19671201, 1.00, 1.20, 0.04, 0.083 +19671208, 0.93, 0.99, -0.30, 0.083 +19671215, -0.16, 1.94, -0.36, 0.083 +19671222, 0.31, 1.25, 0.08, 0.083 +19671229, 1.40, 0.60, 0.34, 0.083 +19680105, -0.51, 0.62, 3.19, 0.101 +19680112, 1.14, 1.97, 0.25, 0.101 +19680119, -1.17, 2.39, 0.05, 0.101 +19680126, -2.04, 0.06, 0.03, 0.101 +19680202, -1.60, -1.55, 1.76, 0.097 +19680209, -2.83, -2.07, 0.63, 0.097 +19680216, 0.02, -0.01, 0.11, 0.097 +19680223, 0.89, 0.63, -0.80, 0.097 +19680301, -2.24, -1.56, 0.73, 0.095 +19680308, -0.47, -1.20, 0.61, 0.095 +19680315, -0.01, 0.13, -0.46, 0.095 +19680322, -0.88, -0.03, 0.12, 0.095 +19680329, 2.02, 0.52, -1.12, 0.095 +19680405, 3.40, 0.01, -0.70, 0.107 +19680411, 3.41, 0.17, 0.02, 0.107 +19680419, -0.28, 2.47, 0.45, 0.107 +19680426, 1.75, 2.10, -1.00, 0.107 +19680503, 1.47, 0.52, 0.00, 0.111 +19680510, 0.26, 1.57, 0.44, 0.111 +19680517, -1.33, 1.35, 0.94, 0.111 +19680524, 0.61, 1.92, 0.35, 0.111 +19680531, 1.64, 1.22, -0.60, 0.111 +19680607, 2.93, 0.88, 0.03, 0.106 +19680614, -0.27, -0.05, -0.17, 0.106 +19680621, -0.59, -0.73, 0.09, 0.106 +19680628, -1.33, -0.27, 0.68, 0.106 +19680703, 1.40, 0.83, -0.34, 0.119 +19680712, 1.38, 0.50, 0.61, 0.119 +19680719, -1.99, 0.02, 2.07, 0.119 +19680726, -2.71, -1.91, 2.39, 0.119 +19680802, -1.86, -0.56, 0.60, 0.105 +19680809, 0.61, 0.71, 0.23, 0.105 +19680816, 1.63, 0.90, -0.18, 0.105 +19680823, 0.04, 0.85, 0.16, 0.105 +19680830, 0.12, -0.23, 0.76, 0.105 +19680906, 2.11, -0.17, -0.33, 0.106 +19680913, -0.22, 1.28, 0.13, 0.106 +19680920, 0.88, 0.24, 0.43, 0.106 +19680927, 0.81, 1.03, -0.21, 0.106 +19681004, 1.18, 0.07, 1.21, 0.109 +19681011, -0.51, 0.07, 0.10, 0.109 +19681018, 1.52, -0.19, 0.09, 0.109 +19681025, -0.52, 0.45, 1.16, 0.109 +19681101, -1.22, -0.82, 0.65, 0.106 +19681108, 0.98, -0.05, -0.63, 0.106 +19681115, 1.97, 1.18, -0.66, 0.106 +19681122, 0.83, 0.74, 0.54, 0.106 +19681129, 1.91, 0.55, -0.17, 0.106 +19681206, -0.32, 1.26, -0.43, 0.107 +19681213, -0.16, 1.32, 0.48, 0.107 +19681220, -1.13, 0.46, -0.43, 0.107 +19681227, -1.45, 0.56, 0.67, 0.107 +19690103, -0.93, 0.12, -0.30, 0.131 +19690110, -3.28, -1.59, 0.83, 0.131 +19690117, 1.05, 0.24, 0.20, 0.131 +19690124, 0.50, 1.33, -0.17, 0.131 +19690131, 0.41, -0.98, 0.88, 0.131 +19690207, 0.47, -0.76, 0.57, 0.115 +19690214, -0.07, -0.03, -0.71, 0.115 +19690220, -4.20, -1.68, 0.94, 0.115 +19690228, -2.11, -1.61, 0.09, 0.115 +19690307, 0.11, -1.25, 0.75, 0.116 +19690314, -0.77, -0.25, 0.35, 0.116 +19690321, 1.64, 0.84, -0.86, 0.116 +19690328, 1.69, 0.41, -0.66, 0.116 +19690403, -0.99, -0.22, 0.90, 0.133 +19690411, 0.65, -0.42, -0.06, 0.133 +19690418, -0.65, -0.69, 0.53, 0.133 +19690425, 0.35, -0.09, -0.25, 0.133 +19690502, 2.41, 0.92, -1.10, 0.121 +19690509, 1.12, -0.27, -0.09, 0.121 +19690516, 0.59, -0.62, 0.11, 0.121 +19690523, -1.14, 0.13, 0.51, 0.121 +19690529, -1.05, 0.25, -0.06, 0.121 +19690606, -1.53, -0.53, -0.32, 0.128 +19690613, -3.84, -1.23, 0.03, 0.128 +19690620, -2.73, -2.66, 0.59, 0.128 +19690627, 0.26, -1.56, -1.24, 0.128 +19690703, 2.51, 1.15, -1.84, 0.133 +19690711, -4.13, -1.19, 1.55, 0.133 +19690718, -1.01, -0.65, 0.48, 0.133 +19690725, -3.54, -1.00, 1.17, 0.133 +19690801, 1.46, -1.07, -0.79, 0.126 +19690808, 0.60, -0.27, -0.47, 0.126 +19690815, 0.16, -0.24, -1.48, 0.126 +19690822, 2.16, 0.72, -1.41, 0.126 +19690829, -0.27, -0.08, 0.01, 0.126 +19690905, -2.36, -0.28, 0.68, 0.155 +19690912, 0.64, -0.11, -0.84, 0.155 +19690919, 1.06, 1.18, -3.23, 0.155 +19690926, -1.25, 0.31, 0.37, 0.155 +19691003, -0.92, 0.08, -0.63, 0.149 +19691010, 0.36, -0.01, -1.44, 0.149 +19691017, 3.20, 2.31, -0.66, 0.149 +19691024, 2.05, 0.95, -0.79, 0.149 +19691031, -0.82, 0.51, 0.26, 0.149 +19691107, 1.26, -0.57, -0.86, 0.129 +19691114, -1.49, -0.58, 0.64, 0.129 +19691121, -3.20, -1.68, 1.31, 0.129 +19691128, -0.36, 0.27, -2.38, 0.129 +19691205, -2.64, -1.52, -0.54, 0.160 +19691212, -1.18, -1.09, -1.50, 0.160 +19691219, 0.54, -0.74, -1.09, 0.160 +19691226, 0.40, -0.35, 0.47, 0.160 +19700102, 1.34, 1.32, 0.54, 0.151 +19700109, -0.58, 1.51, 0.58, 0.151 +19700116, -1.86, -0.58, -0.74, 0.151 +19700123, -2.03, 0.78, 1.13, 0.151 +19700130, -4.92, 0.05, 1.24, 0.151 +19700206, 1.53, -1.16, 0.00, 0.154 +19700213, 0.38, 0.40, -0.06, 0.154 +19700220, 1.52, -1.35, 1.97, 0.154 +19700227, 1.62, -0.07, 1.75, 0.154 +19700306, -0.27, -0.03, 2.55, 0.142 +19700313, -2.22, -0.87, 2.02, 0.142 +19700320, -1.31, -1.17, 1.04, 0.142 +19700326, 3.09, -0.27, -1.15, 0.142 +19700403, -0.78, 0.14, 0.93, 0.126 +19700410, -1.93, -1.66, 1.92, 0.126 +19700417, -3.51, -2.01, 2.35, 0.126 +19700424, -3.95, -1.97, 1.79, 0.126 +19700501, -1.79, -1.17, 0.08, 0.131 +19700508, -2.50, -0.56, 1.63, 0.131 +19700515, -3.50, -1.86, 1.80, 0.131 +19700522, -6.56, -2.21, 3.34, 0.131 +19700529, 6.02, 0.10, -3.73, 0.131 +19700605, -0.28, 1.85, -1.20, 0.145 +19700612, -2.75, -0.52, 0.66, 0.145 +19700619, 3.56, -1.01, -1.97, 0.145 +19700626, -5.11, -1.60, 2.26, 0.145 +19700702, -1.14, -1.89, 0.37, 0.131 +19700710, 2.19, -1.08, -0.15, 0.131 +19700717, 3.78, -0.66, 0.45, 0.131 +19700724, 0.21, 1.04, 0.43, 0.131 +19700731, 0.43, 1.31, -0.23, 0.131 +19700807, -1.06, -0.76, 1.47, 0.133 +19700814, -2.97, -0.34, 2.29, 0.133 +19700821, 5.06, -2.30, -0.51, 0.133 +19700828, 3.94, 4.19, -2.60, 0.133 +19700904, 1.50, 2.01, -0.75, 0.134 +19700911, -0.21, 2.20, -1.00, 0.134 +19700918, 0.29, 1.53, -1.18, 0.134 +19700925, 1.72, 1.50, -1.77, 0.134 +19701002, 1.58, 1.70, -0.65, 0.115 +19701009, -0.51, -0.95, 1.56, 0.115 +19701016, -1.31, -1.26, 0.79, 0.115 +19701023, -0.89, -1.21, -0.73, 0.115 +19701030, -0.79, -1.13, -0.95, 0.115 +19701106, 1.25, -0.59, 0.63, 0.114 +19701113, -1.16, -1.25, 0.76, 0.114 +19701120, 0.17, -1.92, -0.19, 0.114 +19701127, 2.62, -0.91, 0.33, 0.114 +19701204, 4.27, 1.01, 0.40, 0.106 +19701211, 0.77, -0.28, -0.45, 0.106 +19701218, -0.12, -0.01, 0.48, 0.106 +19701224, 0.63, 1.63, 0.08, 0.106 +19701231, 1.70, 1.17, 0.35, 0.106 +19710108, 0.48, 2.23, 2.23, 0.095 +19710115, 1.37, 2.16, 0.78, 0.095 +19710122, 1.86, 0.98, -0.74, 0.095 +19710129, 1.04, 1.60, -0.83, 0.095 +19710205, 1.64, 1.81, -0.87, 0.083 +19710212, 1.57, 1.26, 0.41, 0.083 +19710219, -1.86, -0.90, 0.58, 0.083 +19710226, 0.08, -0.29, -1.34, 0.083 +19710305, 2.48, 1.43, -1.05, 0.074 +19710312, 0.63, 0.55, -1.00, 0.074 +19710319, 1.54, 0.48, -1.17, 0.074 +19710326, -0.94, 0.05, -0.29, 0.074 +19710402, 0.63, -0.12, -1.02, 0.069 +19710408, 1.32, -0.16, 0.50, 0.069 +19710416, 1.21, -0.29, 1.32, 0.069 +19710423, 0.42, -0.52, -0.22, 0.069 +19710430, -0.13, 0.51, -0.34, 0.069 +19710507, -0.95, -0.14, -0.49, 0.073 +19710514, -0.59, -0.12, -0.10, 0.073 +19710521, -1.34, -0.80, -0.22, 0.073 +19710528, -1.17, -0.09, -0.66, 0.073 +19710604, 1.87, 0.83, -0.59, 0.093 +19710611, -0.41, -0.80, -0.48, 0.093 +19710618, -2.19, -1.80, -0.73, 0.093 +19710625, -1.05, 0.01, 0.01, 0.093 +19710702, 1.91, 0.50, -0.31, 0.100 +19710709, 1.07, 0.23, -0.58, 0.100 +19710716, -1.53, 0.17, 0.43, 0.100 +19710723, -0.38, -0.70, 0.09, 0.100 +19710730, -3.85, -1.58, 0.40, 0.100 +19710806, -1.25, -0.26, 0.39, 0.117 +19710813, 1.54, -0.41, -0.36, 0.117 +19710820, 2.58, 0.77, 1.43, 0.117 +19710827, 2.02, -0.62, 1.06, 0.117 +19710903, 0.24, 0.67, 0.26, 0.092 +19710910, -0.17, 0.75, -0.79, 0.092 +19710917, -0.65, -0.27, -0.80, 0.092 +19710924, -1.81, -0.13, -0.66, 0.092 +19711001, 0.70, 0.16, -1.21, 0.092 +19711008, 0.45, -0.11, 0.30, 0.092 +19711015, -1.72, -0.30, 0.05, 0.092 +19711022, -2.36, -0.46, -0.47, 0.092 +19711029, -1.44, -1.14, -0.14, 0.092 +19711105, 0.19, -0.86, -0.58, 0.093 +19711112, -2.57, -0.53, -0.43, 0.093 +19711119, -0.74, -1.19, -0.10, 0.093 +19711126, 0.13, -1.52, -0.52, 0.093 +19711203, 5.86, 1.82, -0.57, 0.092 +19711210, 0.94, 1.49, -0.31, 0.092 +19711217, 2.40, 0.32, -0.20, 0.092 +19711223, 0.39, -0.04, 0.18, 0.092 +19711231, 1.44, 0.82, 0.30, 0.092 +19720107, 1.42, 2.13, 1.62, 0.072 +19720114, 0.08, 1.18, -0.03, 0.072 +19720121, 0.29, 0.94, -0.23, 0.072 +19720128, 0.74, 1.17, 0.49, 0.072 +19720204, 1.03, 1.59, -1.27, 0.062 +19720211, 0.14, -0.03, 0.16, 0.062 +19720218, 0.25, 0.51, -0.54, 0.062 +19720225, 0.87, 0.01, -0.55, 0.062 +19720303, 1.91, -0.06, -1.18, 0.068 +19720310, 0.52, 0.80, -0.34, 0.068 +19720317, -0.61, -0.80, 0.40, 0.068 +19720324, -0.43, -0.90, -0.31, 0.068 +19720330, -0.32, 0.40, -0.48, 0.068 +19720407, 2.34, 0.17, -0.26, 0.072 +19720414, 0.31, 0.98, -0.25, 0.072 +19720421, -1.05, -0.52, 1.12, 0.072 +19720428, -1.28, -0.41, -0.53, 0.072 +19720505, -1.15, -1.60, -0.27, 0.075 +19720512, -0.17, -0.37, -0.06, 0.075 +19720519, 2.33, -0.09, -1.30, 0.075 +19720526, 1.36, -0.33, -1.56, 0.075 +19720602, -0.76, -0.08, 0.09, 0.073 +19720609, -2.62, 0.10, -0.47, 0.073 +19720616, 1.10, -0.23, -0.84, 0.073 +19720623, -0.23, -0.14, -0.53, 0.073 +19720630, -0.99, 0.25, -0.32, 0.073 +19720707, 1.33, -0.23, -0.61, 0.078 +19720714, -1.98, -0.83, 1.05, 0.078 +19720721, -0.41, -1.03, 1.06, 0.078 +19720728, 0.35, -0.61, -0.59, 0.078 +19720804, 2.80, -1.51, -1.52, 0.071 +19720811, 1.33, -0.57, -0.16, 0.071 +19720818, -0.11, -0.59, 2.80, 0.071 +19720825, -1.09, -0.77, 2.85, 0.071 +19720901, 0.61, -0.74, 0.29, 0.085 +19720908, -1.38, -0.43, 1.00, 0.085 +19720915, -1.40, -0.81, 0.41, 0.085 +19720922, -0.46, -0.79, 0.44, 0.085 +19720929, 1.72, -0.77, -1.26, 0.085 +19721006, -1.00, -1.36, 1.46, 0.099 +19721013, -1.65, 0.04, 0.59, 0.099 +19721020, 1.00, -1.11, -0.10, 0.099 +19721027, 1.26, 0.02, -0.39, 0.099 +19721103, 3.27, -1.20, -0.22, 0.093 +19721110, -0.31, -0.21, 2.17, 0.093 +19721117, 1.41, -1.04, 0.83, 0.093 +19721124, 1.33, -0.36, 1.75, 0.093 +19721201, 0.37, 1.66, -0.40, 0.094 +19721208, 1.03, 0.29, -1.47, 0.094 +19721215, -0.69, -1.35, -0.11, 0.094 +19721222, -1.96, -0.28, 0.08, 0.094 +19721229, 1.66, -0.80, -0.59, 0.094 +19730105, 1.27, 1.18, 0.17, 0.109 +19730112, -0.69, -1.54, 1.34, 0.109 +19730119, -0.90, -1.20, -0.17, 0.109 +19730126, -2.45, -1.17, 0.46, 0.109 +19730202, -2.11, -1.04, 0.99, 0.104 +19730209, 0.13, -0.68, -1.29, 0.104 +19730216, -0.18, -0.87, 0.54, 0.104 +19730223, -1.88, -1.41, 1.69, 0.104 +19730302, -1.26, -1.82, 1.12, 0.114 +19730309, 1.42, 0.43, -0.81, 0.114 +19730316, -0.59, -1.28, 1.06, 0.114 +19730323, -4.47, -1.02, 2.64, 0.114 +19730330, 2.27, -0.10, -0.59, 0.114 +19730406, -2.58, -0.87, 1.37, 0.130 +19730413, 2.26, -1.49, 1.01, 0.130 +19730419, -0.31, -0.96, 1.27, 0.130 +19730427, -4.80, -0.59, 2.12, 0.130 +19730504, 3.21, -1.69, -0.93, 0.127 +19730511, -2.22, 0.78, -0.04, 0.127 +19730518, -4.62, -2.61, 1.66, 0.127 +19730525, 3.39, -3.21, -1.53, 0.127 +19730601, -3.70, -0.19, 1.69, 0.128 +19730608, 2.32, -1.83, -0.73, 0.128 +19730615, -1.71, 1.16, 0.72, 0.128 +19730622, -1.58, -1.02, 0.55, 0.128 +19730629, 0.37, -1.16, 0.22, 0.128 +19730706, -2.74, 0.90, 2.03, 0.159 +19730713, 3.22, 2.22, -2.03, 0.159 +19730720, 3.65, 3.20, -3.62, 0.159 +19730727, 2.06, 1.11, -1.95, 0.159 +19730803, -2.70, -0.02, 0.44, 0.174 +19730810, -1.71, -0.27, 0.07, 0.174 +19730817, -2.29, -0.52, 1.37, 0.174 +19730824, -0.90, -0.81, 0.17, 0.174 +19730831, 2.55, -0.41, -0.48, 0.174 +19730907, 0.84, 0.37, 0.98, 0.170 +19730914, -0.53, 0.51, -0.76, 0.170 +19730921, 3.12, 0.88, 0.29, 0.170 +19730928, 1.25, 1.05, 1.67, 0.170 +19731005, 1.27, 2.10, 1.39, 0.163 +19731012, 1.17, 0.09, -1.26, 0.163 +19731019, -1.31, -0.57, 0.28, 0.163 +19731026, 0.40, -1.61, 0.47, 0.163 +19731102, -3.77, -0.49, 0.75, 0.139 +19731109, -2.10, -1.62, 1.48, 0.139 +19731116, -2.14, -3.25, 0.46, 0.139 +19731123, -4.39, -2.03, 1.83, 0.139 +19731130, -3.69, -1.57, 1.03, 0.139 +19731207, 0.14, -2.22, 0.43, 0.159 +19731214, -3.43, -1.21, 2.03, 0.159 +19731221, -0.09, -1.11, 1.78, 0.159 +19731228, 3.91, -1.17, -0.44, 0.159 +19740104, 2.17, 4.99, 3.93, 0.156 +19740111, -4.90, 2.78, 2.41, 0.156 +19740118, 2.13, 0.51, -0.61, 0.156 +19740125, 0.83, 0.87, -0.67, 0.156 +19740201, -1.33, 1.21, 0.98, 0.145 +19740208, -2.88, 0.23, 1.75, 0.145 +19740215, -0.48, -0.34, 1.03, 0.145 +19740222, 3.17, -1.23, 0.09, 0.145 +19740301, 0.47, 1.44, -0.29, 0.139 +19740308, 2.14, 0.75, -1.62, 0.139 +19740315, 1.48, 0.43, -1.12, 0.139 +19740322, -2.20, 0.44, 0.46, 0.139 +19740329, -3.57, 0.30, 1.72, 0.139 +19740405, -1.47, 0.27, 0.48, 0.188 +19740411, -1.08, -0.28, 0.80, 0.188 +19740419, 1.35, -0.47, -0.10, 0.188 +19740426, -4.33, -0.30, 0.43, 0.188 +19740503, 1.17, -0.31, -0.87, 0.188 +19740510, -0.56, -0.78, -0.50, 0.188 +19740517, -3.66, 0.21, 0.13, 0.188 +19740524, -0.02, -2.08, -1.75, 0.188 +19740531, -1.52, -0.09, 0.31, 0.188 +19740607, 5.83, -0.88, -0.58, 0.150 +19740614, -1.51, 0.77, -0.77, 0.150 +19740621, -4.52, 0.69, 0.89, 0.150 +19740628, -2.37, -0.93, 1.10, 0.150 +19740705, -3.07, -0.58, 1.27, 0.176 +19740712, -1.01, -1.39, 0.53, 0.176 +19740719, 0.87, 1.05, 1.07, 0.176 +19740726, -1.30, 1.00, 1.81, 0.176 +19740802, -4.70, 0.71, 1.30, 0.148 +19740809, 3.00, 0.49, 0.15, 0.148 +19740816, -6.32, 1.42, 2.16, 0.148 +19740823, -5.47, -0.31, 2.37, 0.148 +19740830, 0.26, -2.16, -2.69, 0.148 +19740906, -1.36, -1.30, 1.15, 0.201 +19740913, -8.48, 0.25, 1.74, 0.201 +19740920, 7.23, -2.65, -0.87, 0.201 +19740927, -6.62, 3.28, 3.04, 0.201 +19741004, -4.10, 0.95, 1.23, 0.126 +19741011, 13.46, -3.22, -3.83, 0.126 +19741018, 1.61, 0.82, -2.61, 0.126 +19741025, -2.44, 1.05, -1.05, 0.126 +19741101, 4.96, -2.79, -2.52, 0.134 +19741108, 2.00, -0.50, -0.97, 0.134 +19741115, -3.80, 0.94, 2.03, 0.134 +19741122, -4.10, -0.63, 0.25, 0.134 +19741129, 1.49, -0.98, -1.69, 0.134 +19741206, -7.29, -0.18, 1.22, 0.174 +19741213, 2.45, -3.72, -0.80, 0.174 +19741220, -0.68, -0.94, 0.00, 0.174 +19741227, 0.22, -0.30, -0.04, 0.174 +19750103, 5.45, 0.92, 2.40, 0.145 +19750110, 3.34, 2.82, 3.38, 0.145 +19750117, -1.57, 3.59, 0.77, 0.145 +19750124, 2.42, -0.14, 1.20, 0.145 +19750131, 5.26, 2.35, -0.93, 0.145 +19750207, 2.39, 1.07, -1.86, 0.109 +19750214, 3.30, -0.79, -2.69, 0.109 +19750221, 1.14, -0.56, -0.21, 0.109 +19750228, -1.34, 0.40, 0.27, 0.109 +19750307, 3.31, 0.09, 1.32, 0.103 +19750314, 0.93, 2.92, 0.76, 0.103 +19750321, -1.33, 0.79, 0.44, 0.103 +19750327, 0.32, -0.53, -0.20, 0.103 +19750404, -3.20, 1.66, -0.05, 0.109 +19750411, 3.52, -1.52, -0.51, 0.109 +19750418, 2.44, 0.20, -0.16, 0.109 +19750425, 0.42, 0.54, 0.60, 0.109 +19750502, 2.60, -1.79, -1.70, 0.109 +19750509, 2.04, 1.30, -0.93, 0.109 +19750516, -0.11, 0.78, -0.30, 0.109 +19750523, 0.20, 1.16, -1.53, 0.109 +19750530, 0.83, 1.12, -0.16, 0.109 +19750606, 1.55, 0.65, -0.38, 0.102 +19750613, -1.99, -0.22, 1.01, 0.102 +19750620, 2.37, -1.00, 0.37, 0.102 +19750627, 2.36, 0.67, -0.03, 0.102 +19750703, -0.42, 1.55, 0.26, 0.121 +19750711, 0.54, 0.68, 2.05, 0.121 +19750718, -1.25, 2.12, 1.16, 0.121 +19750725, -4.44, -0.32, -0.95, 0.121 +19750801, -1.70, -0.65, -0.23, 0.120 +19750808, -2.51, -1.38, -0.93, 0.120 +19750815, 0.04, -0.82, -0.23, 0.120 +19750822, -2.56, -0.58, -0.14, 0.120 +19750829, 3.25, -0.40, 0.21, 0.120 +19750905, -1.61, 0.39, 0.38, 0.131 +19750912, -3.00, 0.35, 0.68, 0.131 +19750919, 2.72, -1.79, -0.46, 0.131 +19750926, 0.28, 0.24, -0.83, 0.131 +19751003, -0.62, -1.04, -0.20, 0.139 +19751010, 2.43, -1.01, -0.83, 0.139 +19751017, 0.77, -0.48, 0.16, 0.139 +19751024, 1.02, -0.65, 1.25, 0.139 +19751031, -1.16, -0.19, 0.42, 0.139 +19751107, 0.56, -0.05, 0.39, 0.102 +19751114, 1.91, -0.27, 0.08, 0.102 +19751121, -1.58, 0.01, 1.05, 0.102 +19751128, 1.77, -0.87, 0.42, 0.102 +19751205, -5.08, 0.60, -0.07, 0.121 +19751212, 0.78, -1.49, -0.11, 0.121 +19751219, 1.12, -0.12, 0.27, 0.121 +19751226, 1.57, -0.83, 1.04, 0.121 +19760102, 0.85, 0.95, 1.93, 0.117 +19760109, 4.68, 0.57, 1.55, 0.117 +19760116, 2.14, 0.75, 1.88, 0.117 +19760123, 2.18, 1.97, 2.32, 0.117 +19760130, 1.81, 1.12, 0.62, 0.117 +19760206, -0.74, 1.97, 0.49, 0.084 +19760213, 0.71, 2.40, 2.11, 0.084 +19760220, 2.52, 1.80, 2.34, 0.084 +19760227, -2.11, 0.55, 0.52, 0.084 +19760305, -0.52, 0.66, 1.15, 0.100 +19760312, 1.57, -0.70, -0.16, 0.100 +19760319, -0.51, -0.08, -0.43, 0.100 +19760326, 1.94, -0.90, -0.47, 0.100 +19760402, -0.61, 0.39, -0.64, 0.105 +19760409, -2.14, -0.17, -0.88, 0.105 +19760415, 0.15, -0.92, 0.38, 0.105 +19760423, 1.63, 0.53, 0.91, 0.105 +19760430, -0.72, -0.04, 0.05, 0.105 +19760507, 0.32, -0.33, -0.78, 0.093 +19760514, -0.36, 0.14, 1.06, 0.093 +19760521, -0.12, -0.42, -0.06, 0.093 +19760528, -1.19, -0.65, -1.49, 0.093 +19760604, -0.95, -0.22, -0.02, 0.109 +19760611, 1.50, -1.07, -0.55, 0.109 +19760618, 2.76, -0.27, 0.69, 0.109 +19760625, 0.07, 0.34, 0.16, 0.109 +19760702, 0.38, 0.26, 0.28, 0.116 +19760709, 0.78, 0.48, 0.41, 0.116 +19760716, -0.29, 0.75, 0.03, 0.116 +19760723, -0.66, -0.32, 0.25, 0.116 +19760730, -0.74, -1.01, 0.97, 0.116 +19760806, 0.48, -0.55, 0.66, 0.105 +19760813, 0.39, -0.59, -0.03, 0.105 +19760820, -1.81, -0.14, 0.13, 0.105 +19760827, -0.85, -0.29, 0.00, 0.105 +19760903, 2.59, -0.56, -0.48, 0.109 +19760910, 0.26, 0.16, -0.12, 0.109 +19760917, 1.34, -0.51, -0.28, 0.109 +19760924, 0.48, 0.30, 0.72, 0.109 +19761001, -2.33, 0.44, 0.08, 0.102 +19761008, -1.57, 0.06, -0.15, 0.102 +19761015, -1.68, 0.26, -0.14, 0.102 +19761022, -0.85, 0.47, 0.63, 0.102 +19761029, 2.62, -0.85, -0.72, 0.102 +19761105, -1.40, 1.21, 1.45, 0.099 +19761112, -1.55, 0.34, -0.22, 0.099 +19761119, 2.81, -0.31, 0.11, 0.099 +19761126, 1.43, 0.45, -0.20, 0.099 +19761203, -0.20, 0.85, 0.96, 0.101 +19761210, 2.12, 1.02, 0.50, 0.101 +19761217, -0.20, 0.47, 1.72, 0.101 +19761223, 0.37, 0.16, -0.68, 0.101 +19761231, 2.51, 0.98, -0.04, 0.101 +19770107, -1.77, 2.70, 1.34, 0.090 +19770114, -0.69, 1.07, 0.57, 0.090 +19770121, -0.38, 1.10, 1.26, 0.090 +19770128, -1.24, 0.45, 1.28, 0.090 +19770204, 0.16, 0.50, -0.13, 0.088 +19770211, -1.47, 1.07, -0.33, 0.088 +19770218, 0.29, -0.47, 0.88, 0.088 +19770225, -1.13, 0.00, -0.08, 0.088 +19770304, 1.62, -0.66, -0.17, 0.094 +19770311, -0.39, 0.64, 0.02, 0.094 +19770318, 0.94, -0.26, 0.42, 0.094 +19770325, -2.49, 1.27, 0.19, 0.094 +19770401, -0.11, -0.76, 0.61, 0.094 +19770407, -0.95, -0.05, 0.15, 0.094 +19770415, 2.62, -0.61, 0.95, 0.094 +19770422, -2.23, 1.35, 1.34, 0.094 +19770429, 0.00, -0.52, 0.90, 0.094 +19770506, 1.42, 0.15, 0.11, 0.093 +19770513, -0.18, 0.63, 0.37, 0.093 +19770520, 0.44, 0.42, 0.09, 0.093 +19770527, -2.88, 0.40, 0.28, 0.093 +19770603, 1.20, -0.72, -0.37, 0.100 +19770610, 0.81, 0.56, -0.05, 0.100 +19770617, 1.55, 0.06, -0.73, 0.100 +19770624, 1.33, 0.53, 0.26, 0.100 +19770701, -0.82, 1.51, 0.52, 0.104 +19770708, -0.16, 0.94, 0.02, 0.104 +19770715, 0.40, 0.29, -0.40, 0.104 +19770722, 1.19, 0.11, -0.32, 0.104 +19770729, -2.84, 0.22, -0.17, 0.104 +19770805, 0.00, 0.26, -0.71, 0.110 +19770812, -0.68, 0.81, -0.85, 0.110 +19770819, -0.43, 0.64, -1.46, 0.110 +19770826, -1.28, 0.36, 0.40, 0.110 +19770902, 1.35, -0.15, -0.19, 0.108 +19770909, -1.08, 0.74, 0.31, 0.108 +19770916, 0.06, 0.28, -0.58, 0.108 +19770923, -1.41, 0.37, 0.36, 0.108 +19770930, 1.36, -0.21, -0.46, 0.108 +19771007, -0.35, 0.68, 0.54, 0.123 +19771014, -2.71, 0.14, 0.55, 0.123 +19771021, -1.22, 0.54, 0.49, 0.123 +19771028, 0.03, -0.37, -0.04, 0.123 +19771104, -0.69, 0.78, 0.50, 0.125 +19771111, 4.77, -0.35, -0.87, 0.125 +19771118, -0.16, 1.98, 0.37, 0.125 +19771125, 1.66, 0.48, -0.24, 0.125 +19771202, -1.72, 1.57, 1.00, 0.121 +19771209, -1.14, 0.39, 0.29, 0.121 +19771216, -0.20, 0.69, -0.25, 0.121 +19771223, 1.05, -0.75, -0.55, 0.121 +19771230, 0.46, 0.23, -0.12, 0.121 +19780106, -3.65, 0.32, 1.84, 0.122 +19780113, -2.18, 0.22, 1.05, 0.122 +19780120, 0.30, 0.84, 0.16, 0.122 +19780127, -1.27, 0.91, 0.96, 0.122 +19780203, 1.50, 1.07, -0.93, 0.115 +19780210, 0.79, 0.74, 0.03, 0.115 +19780217, -2.18, 1.32, 0.58, 0.115 +19780224, 0.68, 0.18, -0.18, 0.115 +19780303, -1.05, 0.46, 0.90, 0.132 +19780310, 1.65, 0.28, -0.43, 0.132 +19780317, 1.48, 0.59, -0.05, 0.132 +19780323, -0.74, 1.11, 0.51, 0.132 +19780331, -0.08, 1.41, 0.78, 0.132 +19780407, 1.19, 0.68, -0.54, 0.134 +19780414, 2.93, 0.01, -0.86, 0.134 +19780421, 1.33, -0.09, -0.72, 0.134 +19780428, 2.20, -0.25, -1.18, 0.134 +19780505, 0.46, 1.80, 0.02, 0.127 +19780512, 1.62, 1.10, -1.30, 0.127 +19780519, 0.35, 1.21, 0.21, 0.127 +19780526, -1.34, 0.37, 0.35, 0.127 +19780602, 1.45, -0.12, -0.33, 0.134 +19780609, 1.95, 1.04, -0.27, 0.134 +19780616, -2.08, 1.63, 0.23, 0.134 +19780623, -1.87, -0.59, 0.85, 0.134 +19780630, -0.57, -0.37, -0.02, 0.134 +19780707, -0.67, -0.14, -0.15, 0.139 +19780714, 2.56, -0.59, -0.57, 0.139 +19780721, 0.22, 1.08, 0.33, 0.139 +19780728, 2.17, 0.04, -0.34, 0.139 +19780804, 3.86, -1.44, -0.71, 0.138 +19780811, 0.54, 2.16, -0.19, 0.138 +19780818, 0.99, 1.56, -0.17, 0.138 +19780825, 0.40, 1.38, -0.03, 0.138 +19780901, -0.99, 0.86, 0.32, 0.154 +19780908, 2.74, -0.17, -0.45, 0.154 +19780915, -2.27, 1.33, 0.97, 0.154 +19780922, -2.75, -1.57, 0.96, 0.154 +19780929, 0.48, 0.18, 0.30, 0.154 +19781006, 0.83, -0.21, 0.21, 0.170 +19781013, 0.85, 0.11, -0.28, 0.170 +19781020, -7.43, -4.11, 0.92, 0.170 +19781027, -4.70, -4.00, 0.75, 0.170 +19781103, 1.85, -0.65, -1.60, 0.175 +19781110, -1.35, 0.27, 0.33, 0.175 +19781117, -0.47, -1.06, -0.38, 0.175 +19781124, 1.81, 1.29, -0.66, 0.175 +19781201, 0.48, 0.31, -0.47, 0.195 +19781208, 0.60, 0.97, 0.12, 0.195 +19781215, -1.46, 0.21, 0.19, 0.195 +19781222, 0.57, -0.76, -1.19, 0.195 +19781229, -0.44, 0.59, -0.59, 0.195 +19790105, 3.29, 1.27, 0.39, 0.192 +19790112, 0.83, 1.04, -0.29, 0.192 +19790119, -0.21, 0.79, 1.02, 0.192 +19790126, 1.87, -0.45, 0.43, 0.192 +19790202, -2.00, 1.04, 0.64, 0.183 +19790209, -1.52, -0.16, 0.65, 0.183 +19790216, 0.83, 0.60, -0.12, 0.183 +19790223, -0.87, 0.45, 0.33, 0.183 +19790302, -1.00, -0.44, 0.36, 0.203 +19790309, 2.56, -0.02, 0.72, 0.203 +19790316, 1.21, 0.66, -0.44, 0.203 +19790323, 0.83, 0.78, -0.46, 0.203 +19790330, 0.07, 1.26, -0.41, 0.203 +19790406, 1.44, 0.01, 0.06, 0.198 +19790412, -1.03, 0.84, 0.93, 0.198 +19790420, -0.83, 0.76, -0.06, 0.198 +19790427, 0.42, 0.63, 0.12, 0.198 +19790504, -1.00, 0.42, 0.05, 0.203 +19790511, -2.30, -1.18, 0.63, 0.203 +19790518, 1.34, -0.16, 0.37, 0.203 +19790525, 0.77, 1.06, -0.14, 0.203 +19790601, -1.05, 0.05, 0.29, 0.202 +19790608, 2.40, 0.09, 0.25, 0.202 +19790615, 0.65, 0.60, 0.64, 0.202 +19790622, 0.42, 0.52, 0.37, 0.202 +19790629, 0.16, -0.26, 0.25, 0.202 +19790706, 0.59, -0.13, 0.59, 0.191 +19790713, -1.24, 0.82, 1.00, 0.191 +19790720, -0.63, -0.01, 0.29, 0.191 +19790727, 1.30, 0.52, -0.18, 0.191 +19790803, 1.02, 0.69, -0.35, 0.191 +19790810, 2.21, -0.14, -1.27, 0.191 +19790817, 1.73, 0.18, 0.06, 0.191 +19790824, 0.34, 0.52, 0.37, 0.191 +19790831, 0.71, 0.73, -0.38, 0.191 +19790907, -1.67, -0.49, 0.63, 0.207 +19790914, 1.06, 0.63, -0.94, 0.207 +19790921, 0.97, -1.11, -0.50, 0.207 +19790928, -1.14, 0.75, -0.09, 0.207 +19791005, 1.71, 0.38, -0.50, 0.217 +19791012, -6.81, -2.48, -0.38, 0.217 +19791019, -3.06, -0.38, 0.34, 0.217 +19791026, -1.32, -1.08, -0.79, 0.217 +19791102, 2.23, 0.21, -1.00, 0.246 +19791109, -0.80, 0.19, -0.20, 0.246 +19791116, 2.27, -0.04, -0.84, 0.246 +19791123, 0.71, 0.34, -1.10, 0.246 +19791130, 1.89, 1.99, -0.55, 0.246 +19791207, 1.37, 1.11, -0.88, 0.237 +19791214, 1.26, 0.77, -1.20, 0.237 +19791221, -1.10, 1.35, 0.24, 0.237 +19791228, 0.18, 0.52, 0.01, 0.237 +19800104, -1.47, 0.14, 0.93, 0.199 +19800111, 3.50, 1.10, -0.21, 0.199 +19800118, 0.85, 1.14, 0.84, 0.199 +19800125, 1.96, -0.39, -0.24, 0.199 +19800201, 1.18, -0.43, 0.33, 0.221 +19800208, 2.29, -1.16, 1.32, 0.221 +19800215, -2.21, 0.57, -0.66, 0.221 +19800222, -0.77, -0.98, 0.09, 0.221 +19800229, -1.17, -0.05, -0.18, 0.221 +19800307, -6.62, -1.29, 0.07, 0.300 +19800314, -1.63, -0.67, -0.20, 0.300 +19800321, -3.38, -0.88, 0.24, 0.300 +19800328, -3.23, -4.68, -1.07, 0.300 +19800403, 2.15, 1.83, -0.45, 0.312 +19800411, 1.39, -0.40, 1.30, 0.312 +19800418, -3.29, 0.53, 1.20, 0.312 +19800425, 4.15, -1.24, -1.44, 0.312 +19800502, 0.53, 0.74, 0.60, 0.202 +19800509, -0.14, 1.84, 1.16, 0.202 +19800516, 2.41, 0.68, -1.13, 0.202 +19800523, 2.90, -0.64, -0.34, 0.202 +19800530, 0.43, -0.34, 0.19, 0.202 +19800606, 1.84, 0.25, -0.94, 0.152 +19800613, 2.31, -0.34, -0.42, 0.152 +19800620, -1.34, 0.82, 0.78, 0.152 +19800627, 1.70, 0.24, -0.48, 0.152 +19800703, 1.09, 0.40, -1.06, 0.132 +19800711, 0.53, 1.33, -0.55, 0.132 +19800718, 3.23, 0.91, -2.03, 0.132 +19800725, -0.96, 0.99, -0.28, 0.132 +19800801, 0.69, 1.78, -1.66, 0.159 +19800808, 2.02, 0.26, -1.16, 0.159 +19800815, 1.78, 0.57, -1.02, 0.159 +19800822, 0.61, 0.31, -0.41, 0.159 +19800829, -2.42, 1.64, 0.40, 0.159 +19800905, 2.18, 0.57, -0.46, 0.188 +19800912, 0.72, 2.08, -1.89, 0.188 +19800919, 2.73, 0.15, -2.65, 0.188 +19800926, -2.51, -1.18, 0.03, 0.188 +19801003, 2.16, -0.81, -2.55, 0.237 +19801010, 0.86, 1.43, -0.95, 0.237 +19801017, 0.46, -0.33, -0.25, 0.237 +19801024, -1.45, 0.70, 0.96, 0.237 +19801031, -2.06, 0.55, 0.06, 0.237 +19801107, 1.07, -1.02, -2.07, 0.238 +19801114, 5.93, -1.74, -3.24, 0.238 +19801121, 1.44, -0.15, -2.41, 0.238 +19801128, 0.86, -0.31, -0.02, 0.238 +19801205, -4.60, 2.22, 0.91, 0.325 +19801212, -4.31, -2.58, 2.13, 0.325 +19801219, 3.34, -0.97, 0.60, 0.325 +19801226, 1.69, 0.23, 0.11, 0.325 +19810102, -0.03, 1.20, -0.29, 0.258 +19810109, -2.68, 0.06, 3.73, 0.258 +19810116, 0.95, 0.73, -0.40, 0.258 +19810123, -3.37, 1.60, 0.97, 0.258 +19810130, -0.54, 0.42, 1.77, 0.258 +19810206, 0.74, -0.31, 0.55, 0.266 +19810213, -2.79, 1.21, 1.60, 0.266 +19810220, -0.84, -0.65, 0.48, 0.266 +19810227, 3.59, -0.66, -1.76, 0.266 +19810306, -0.81, 1.88, 0.67, 0.301 +19810313, 2.17, -1.05, 0.33, 0.301 +19810320, 0.89, 1.69, 1.33, 0.301 +19810327, 0.45, 0.76, -1.53, 0.301 +19810403, 0.66, 1.27, 0.22, 0.268 +19810410, -0.44, 1.44, 0.94, 0.268 +19810416, -0.23, 0.88, 0.23, 0.268 +19810424, 0.18, 1.20, 0.24, 0.268 +19810501, -1.87, -0.18, 0.10, 0.287 +19810508, -0.77, -0.65, -0.54, 0.287 +19810515, 0.35, 0.10, 1.21, 0.287 +19810522, -0.18, 1.34, -0.70, 0.287 +19810529, 0.84, 1.15, 0.04, 0.287 +19810605, -0.76, 0.01, 0.91, 0.335 +19810612, 0.82, -0.11, 1.79, 0.335 +19810619, -1.30, -0.36, 2.12, 0.335 +19810626, 0.01, -0.07, -0.02, 0.335 +19810702, -3.30, 0.23, 0.80, 0.309 +19810710, 0.01, -1.35, 0.01, 0.309 +19810717, 0.79, -0.20, -0.90, 0.309 +19810724, -2.09, -0.59, 0.31, 0.309 +19810731, 1.58, -0.45, -0.61, 0.309 +19810807, 0.76, -0.96, -0.21, 0.319 +19810814, 0.29, -0.41, 0.08, 0.319 +19810821, -2.82, 0.24, 1.64, 0.319 +19810828, -4.27, -0.95, 2.65, 0.319 +19810904, -3.69, -0.05, 2.14, 0.310 +19810911, 0.82, -1.16, -0.07, 0.310 +19810918, -4.56, 0.77, 3.46, 0.310 +19810925, -3.98, -2.27, 3.42, 0.310 +19811002, 5.79, -0.09, -5.12, 0.300 +19811009, 2.07, 1.92, -1.79, 0.300 +19811016, -1.85, 1.21, 1.32, 0.300 +19811023, -0.59, 0.36, -0.70, 0.300 +19811030, 2.46, -1.26, -1.05, 0.300 +19811106, 1.23, 0.73, -0.26, 0.266 +19811113, -0.90, 0.26, 3.47, 0.266 +19811120, 0.03, -1.13, 0.45, 0.266 +19811127, 2.11, -0.57, -1.00, 0.266 +19811204, 0.50, -0.16, -0.75, 0.218 +19811211, -1.24, 0.16, 0.00, 0.218 +19811218, -0.92, 0.31, -0.58, 0.218 +19811224, -1.10, 0.43, 0.82, 0.218 +19811231, -0.24, 0.18, 0.40, 0.218 +19820108, -2.49, 0.80, 2.89, 0.198 +19820115, -3.07, 0.05, 1.03, 0.198 +19820122, -1.06, -0.09, 1.48, 0.198 +19820129, 3.45, -2.11, -2.35, 0.198 +19820205, -1.88, 1.69, 1.28, 0.230 +19820212, -2.68, -0.56, 2.73, 0.230 +19820219, -1.09, 0.04, -0.29, 0.230 +19820226, -0.28, -0.52, 2.48, 0.230 +19820305, -3.43, -0.54, 6.44, 0.244 +19820312, -1.37, -1.46, 1.89, 0.244 +19820319, 1.66, 0.33, -2.69, 0.244 +19820326, 1.39, 1.11, -2.00, 0.244 +19820402, 2.31, -0.36, -2.38, 0.281 +19820408, 0.84, 0.46, -0.87, 0.281 +19820416, 0.39, 0.29, -0.13, 0.281 +19820423, 1.22, -0.02, 0.08, 0.281 +19820430, -1.84, 1.52, 0.07, 0.281 +19820507, 2.52, -1.09, -0.30, 0.264 +19820514, -1.03, 0.95, -0.15, 0.264 +19820521, -2.91, -0.20, 1.60, 0.264 +19820528, -2.47, 0.48, 0.60, 0.264 +19820604, -1.88, -0.02, 0.67, 0.238 +19820611, 0.59, -1.15, -0.19, 0.238 +19820618, -3.64, 0.85, 2.11, 0.238 +19820625, 1.42, 0.00, -1.83, 0.238 +19820702, -1.21, 0.69, 1.14, 0.262 +19820709, 0.40, -0.96, -0.23, 0.262 +19820716, 1.60, -0.80, -1.43, 0.262 +19820723, -0.04, 0.98, 0.15, 0.262 +19820730, -3.64, 0.73, 0.60, 0.262 +19820806, -2.75, 0.58, 2.79, 0.190 +19820813, -0.53, -2.68, 2.64, 0.190 +19820820, 8.10, -2.82, 0.05, 0.190 +19820827, 4.35, 1.66, -3.93, 0.190 +19820903, 4.34, -1.47, -1.49, 0.128 +19820910, -1.04, 1.81, 0.33, 0.128 +19820917, 1.34, 0.24, -0.85, 0.128 +19820924, 0.63, 0.12, 0.05, 0.128 +19821001, -1.04, 0.62, 1.38, 0.147 +19821008, 7.00, -2.23, -1.36, 0.147 +19821015, 2.03, 2.06, -0.72, 0.147 +19821022, 3.97, 0.74, -1.88, 0.147 +19821029, -3.10, 2.01, 0.57, 0.147 +19821105, 6.49, 0.16, -0.91, 0.158 +19821112, -0.94, 3.66, -0.43, 0.158 +19821119, -1.72, 0.64, 0.80, 0.158 +19821126, -1.39, 1.14, -0.02, 0.158 +19821203, 2.57, 0.16, -1.97, 0.168 +19821210, 0.14, -0.42, -0.52, 0.168 +19821217, -1.85, -0.90, 1.23, 0.168 +19821223, 1.32, -0.24, -0.42, 0.168 +19821231, 0.63, 0.24, 0.23, 0.168 +19830107, 3.08, 0.01, 0.67, 0.171 +19830114, 1.30, 1.57, -0.55, 0.171 +19830121, -1.76, 0.78, 0.09, 0.171 +19830128, 0.36, 0.33, -0.69, 0.171 +19830204, 1.43, 0.51, 0.37, 0.154 +19830211, 1.09, 1.30, -0.38, 0.154 +19830218, 0.51, 1.16, -0.88, 0.154 +19830225, 1.11, -0.84, 0.64, 0.154 +19830304, 2.32, -0.27, 1.40, 0.158 +19830311, -1.32, 1.89, 0.82, 0.158 +19830318, -1.02, 0.39, 1.04, 0.158 +19830325, 1.80, 0.43, -0.44, 0.158 +19830331, -0.05, -0.02, -0.37, 0.158 +19830408, -0.43, -0.34, 1.52, 0.178 +19830415, 3.81, 0.55, -1.10, 0.178 +19830422, 1.07, 1.06, 0.07, 0.178 +19830429, 2.07, -0.67, 0.07, 0.178 +19830506, 1.55, 1.66, -0.27, 0.172 +19830513, -0.28, 2.10, 0.02, 0.172 +19830520, -1.33, 0.90, -0.63, 0.172 +19830527, 1.81, 1.06, -0.74, 0.172 +19830603, -0.06, 0.64, -0.91, 0.166 +19830610, -0.60, 1.45, -0.68, 0.166 +19830617, 3.50, -0.18, -1.24, 0.166 +19830624, 0.73, 0.22, -1.41, 0.166 +19830701, -1.24, -0.27, 0.89, 0.185 +19830708, -1.11, 0.85, 1.00, 0.185 +19830715, -1.95, 0.30, 1.94, 0.185 +19830722, 2.41, -0.66, -1.01, 0.185 +19830729, -3.97, 0.68, 3.64, 0.185 +19830805, -1.03, -1.70, 1.37, 0.190 +19830812, 0.16, -0.96, 0.93, 0.190 +19830819, 0.70, -0.36, 1.60, 0.190 +19830826, -1.57, -0.43, 2.19, 0.190 +19830902, 1.73, -0.39, -1.35, 0.190 +19830909, 1.32, 0.41, 0.53, 0.190 +19830916, -0.81, -0.02, 0.75, 0.190 +19830923, 1.89, -0.68, -0.36, 0.190 +19830930, -2.10, 0.45, 0.78, 0.190 +19831007, 2.20, -2.14, -1.08, 0.190 +19831014, -1.12, -0.50, 2.14, 0.190 +19831021, -2.84, -0.20, 2.78, 0.190 +19831028, -1.58, -0.47, 0.53, 0.190 +19831104, -0.56, -0.45, 0.91, 0.175 +19831111, 1.97, -0.89, -1.11, 0.175 +19831118, -0.13, 1.96, -1.06, 0.175 +19831125, 1.08, -0.04, 1.35, 0.175 +19831202, -1.00, 1.25, 0.71, 0.181 +19831209, -0.48, -0.21, 0.76, 0.181 +19831216, -1.80, 0.35, 0.58, 0.181 +19831223, 0.19, -0.39, -0.56, 0.181 +19831230, 0.85, -0.32, 0.22, 0.181 +19840106, 2.65, 0.15, -0.34, 0.189 +19840113, -1.17, 1.35, 2.01, 0.189 +19840120, -0.87, 0.36, 0.85, 0.189 +19840127, -1.91, -0.97, 3.53, 0.189 +19840203, -2.26, -1.01, 2.17, 0.178 +19840210, -3.27, -1.28, 1.08, 0.178 +19840217, -0.68, -0.37, 0.62, 0.178 +19840224, 0.65, -1.13, -0.13, 0.178 +19840302, 1.30, 0.60, 0.97, 0.182 +19840309, -3.04, 1.42, 1.43, 0.182 +19840316, 2.79, -1.00, -2.18, 0.182 +19840323, -1.68, 0.80, 1.20, 0.182 +19840330, 1.25, -1.05, 0.11, 0.182 +19840406, -2.63, 0.04, 1.85, 0.203 +19840413, 0.80, -0.98, 0.14, 0.203 +19840419, 0.28, 0.11, -0.41, 0.203 +19840427, 0.97, -0.47, -0.30, 0.203 +19840504, 0.11, 1.27, -0.43, 0.195 +19840511, -0.46, -0.22, 0.04, 0.195 +19840518, -2.12, -0.08, 0.78, 0.195 +19840525, -2.96, -0.85, 0.59, 0.195 +19840601, 0.95, -0.53, -1.43, 0.188 +19840608, 1.25, 0.48, -1.22, 0.188 +19840615, -3.30, 1.41, 0.41, 0.188 +19840622, 3.01, -2.13, -1.96, 0.188 +19840629, -0.73, 0.39, 0.73, 0.188 +19840706, -0.78, -0.02, 0.81, 0.204 +19840713, -1.11, 0.09, 0.96, 0.204 +19840720, -1.33, -0.54, 1.78, 0.204 +19840727, 0.62, -1.99, -1.99, 0.204 +19840803, 7.19, -1.16, -5.61, 0.207 +19840810, 2.07, 0.03, 0.36, 0.207 +19840817, -0.90, 0.61, 0.94, 0.207 +19840824, 1.71, -0.36, 0.59, 0.207 +19840831, -0.41, 0.74, 0.72, 0.207 +19840907, -1.25, 0.63, 0.93, 0.214 +19840914, 2.24, -1.18, 0.07, 0.214 +19840921, -1.55, 1.37, 2.27, 0.214 +19840928, -0.20, -0.69, 2.02, 0.214 +19841005, -2.18, 0.68, 1.42, 0.248 +19841012, 0.69, -0.78, 0.29, 0.248 +19841019, 2.06, -0.61, -2.44, 0.248 +19841026, -1.79, 0.31, 1.30, 0.248 +19841102, 1.10, -1.12, 0.51, 0.183 +19841109, 0.22, 0.35, 1.03, 0.183 +19841116, -2.09, 0.23, 0.84, 0.183 +19841123, 1.12, -1.51, 0.24, 0.183 +19841130, -1.81, 0.58, 1.47, 0.183 +19841207, -0.99, -0.60, 1.21, 0.160 +19841214, 0.25, -0.10, -0.63, 0.160 +19841221, 1.80, -0.24, -0.77, 0.160 +19841228, 0.29, 0.29, 0.23, 0.160 +19850104, -1.26, 1.72, 0.02, 0.161 +19850111, 2.46, -0.33, -0.90, 0.161 +19850118, 2.26, 1.46, -1.36, 0.161 +19850125, 3.40, -0.29, -2.50, 0.161 +19850201, 0.83, 0.88, -0.04, 0.144 +19850208, 2.42, 0.76, -1.03, 0.144 +19850215, -0.23, 0.69, 0.72, 0.144 +19850222, -1.08, 0.25, 0.31, 0.144 +19850301, 1.63, -1.47, -0.79, 0.154 +19850308, -2.10, 1.19, 1.94, 0.154 +19850315, -1.38, 0.06, 1.34, 0.154 +19850322, 0.81, -1.51, 0.02, 0.154 +19850329, 0.81, -0.67, 1.10, 0.154 +19850404, -0.96, 0.30, 0.93, 0.179 +19850412, 0.76, -0.09, 0.48, 0.179 +19850419, 0.19, 0.07, 0.53, 0.179 +19850426, 0.35, -0.39, 0.59, 0.179 +19850503, -1.31, -0.17, 1.88, 0.165 +19850510, 2.48, -0.46, -1.38, 0.165 +19850517, 1.57, -0.46, -0.01, 0.165 +19850524, 0.36, -0.32, -0.47, 0.165 +19850531, 0.45, -0.51, 0.32, 0.165 +19850607, 0.31, 0.13, -0.47, 0.138 +19850614, -1.34, 0.37, 2.18, 0.138 +19850621, 0.89, -0.58, 0.51, 0.138 +19850628, 1.43, 0.49, -1.86, 0.138 +19850705, 0.45, 0.64, 0.24, 0.156 +19850712, 0.43, 0.49, 0.45, 0.156 +19850719, 0.92, 1.33, -0.96, 0.156 +19850726, -1.73, 0.75, -1.39, 0.156 +19850802, -0.42, 0.17, -0.28, 0.137 +19850809, -1.56, -0.54, 0.83, 0.137 +19850816, -1.07, 0.10, 0.94, 0.137 +19850823, 0.36, -0.19, 0.65, 0.137 +19850830, 0.77, -0.13, 0.23, 0.137 +19850906, -0.42, -0.36, -0.10, 0.151 +19850913, -3.05, -0.28, 0.16, 0.151 +19850920, -0.56, -0.30, 0.41, 0.151 +19850926, -0.83, -0.42, 0.73, 0.151 +19851004, 0.80, -0.57, 1.63, 0.162 +19851011, 0.52, -0.40, -0.17, 0.162 +19851018, 1.52, -0.09, -1.34, 0.162 +19851025, 0.14, -0.19, 0.51, 0.162 +19851101, 1.87, -0.88, 0.06, 0.152 +19851108, 1.54, 0.22, -0.63, 0.152 +19851115, 2.08, -0.22, -0.48, 0.152 +19851122, 1.59, 0.16, -0.71, 0.152 +19851129, 0.34, 0.34, -0.72, 0.152 +19851206, 0.35, 0.50, -0.79, 0.162 +19851213, 3.19, -1.28, -1.70, 0.162 +19851220, 0.11, -0.34, 1.10, 0.162 +19851227, -0.57, 0.73, -0.19, 0.162 +19860103, 0.59, 0.63, 0.65, 0.139 +19860110, -2.05, 0.50, 0.55, 0.139 +19860117, 1.36, 0.82, -0.11, 0.139 +19860124, -0.82, 0.51, -0.22, 0.139 +19860131, 2.26, -1.44, -0.25, 0.139 +19860207, 1.51, -0.15, -1.92, 0.132 +19860214, 2.31, -0.73, 0.27, 0.132 +19860221, 2.02, -0.28, -0.13, 0.132 +19860228, 1.09, 0.46, 1.00, 0.132 +19860307, -0.19, 1.57, 0.04, 0.149 +19860314, 4.03, -2.08, -0.49, 0.149 +19860321, -0.90, 1.70, 0.08, 0.149 +19860327, 1.80, -2.00, 0.11, 0.149 +19860404, -3.50, 2.36, 0.35, 0.130 +19860411, 2.68, -1.17, -1.27, 0.130 +19860418, 2.65, 0.12, -1.39, 0.130 +19860425, -0.27, 0.88, -1.06, 0.130 +19860502, -2.94, 0.69, 0.71, 0.123 +19860509, 1.36, 0.10, 0.67, 0.123 +19860516, -1.85, 0.81, 0.16, 0.123 +19860523, 3.10, -1.86, -0.60, 0.123 +19860530, 2.20, -0.37, -0.80, 0.123 +19860606, -0.70, 0.72, -0.32, 0.131 +19860613, -0.03, -0.19, -0.09, 0.131 +19860620, 0.07, -1.66, 1.09, 0.131 +19860627, 1.17, 0.12, 0.63, 0.131 +19860703, 1.08, 0.10, -0.59, 0.130 +19860711, -3.90, -0.46, 3.20, 0.130 +19860718, -2.47, -0.57, 1.89, 0.130 +19860725, 1.17, -2.06, 0.16, 0.130 +19860801, -2.36, -0.25, 0.76, 0.115 +19860808, 0.48, -1.54, 1.56, 0.115 +19860815, 4.14, -1.20, -0.75, 0.115 +19860822, 0.95, -1.04, 1.53, 0.115 +19860829, 0.82, -0.57, 0.52, 0.115 +19860905, -1.18, 0.75, 0.87, 0.112 +19860912, -7.95, 1.27, 1.48, 0.112 +19860919, 0.46, -0.67, 0.42, 0.112 +19860926, 0.38, 0.79, 0.41, 0.112 +19861003, 0.50, -0.29, 0.11, 0.116 +19861010, 0.54, -0.73, -0.14, 0.116 +19861017, 1.11, -0.55, -0.89, 0.116 +19861024, -0.10, 0.15, -0.29, 0.116 +19861031, 2.08, -0.85, 0.10, 0.116 +19861107, 0.77, -0.27, 0.34, 0.097 +19861114, -0.68, 0.36, 0.58, 0.097 +19861121, -0.05, -1.66, -0.03, 0.097 +19861128, 1.13, -0.39, -0.89, 0.097 +19861205, 0.78, -0.65, -0.86, 0.122 +19861212, -1.68, -0.07, 0.93, 0.122 +19861219, 0.31, -0.74, 0.17, 0.122 +19861226, -0.94, 0.11, 0.26, 0.122 +19870102, -0.06, 1.17, -0.22, 0.104 +19870109, 5.51, 1.04, -1.81, 0.104 +19870116, 2.43, -0.26, -0.56, 0.104 +19870123, 1.06, -1.48, -0.84, 0.104 +19870130, 1.09, -0.67, 0.20, 0.104 +19870206, 2.66, 1.81, -0.99, 0.108 +19870213, 0.03, 1.33, -2.31, 0.108 +19870220, 1.74, -1.09, -0.42, 0.108 +19870227, -0.08, 1.31, -2.02, 0.108 +19870306, 1.81, -0.65, 0.34, 0.117 +19870313, -0.07, 1.10, -0.08, 0.117 +19870320, 2.12, -0.95, -0.04, 0.117 +19870327, -0.65, 0.39, 0.87, 0.117 +19870403, 0.77, -0.77, -0.36, 0.111 +19870410, -2.54, 1.36, -0.33, 0.111 +19870416, -2.08, -0.76, 0.50, 0.111 +19870424, -1.87, 0.30, 0.10, 0.111 +19870501, 1.92, -1.45, 0.51, 0.094 +19870508, 1.63, -0.37, 0.91, 0.094 +19870515, -1.92, 1.32, -0.28, 0.094 +19870522, -2.18, -0.53, -0.05, 0.094 +19870529, 2.77, -1.06, -0.66, 0.094 +19870605, 1.03, -0.51, 0.09, 0.120 +19870612, 2.44, -1.45, -0.29, 0.120 +19870619, 1.39, -0.85, 0.10, 0.120 +19870626, -0.04, -0.29, 0.10, 0.120 +19870702, -0.64, 0.66, 0.88, 0.114 +19870710, 0.68, 0.06, 1.24, 0.114 +19870717, 1.69, -0.02, 0.26, 0.114 +19870724, -1.65, 0.48, -0.22, 0.114 +19870731, 2.68, -1.09, -0.67, 0.114 +19870807, 1.50, -0.01, -0.77, 0.118 +19870814, 3.00, -2.28, 0.79, 0.118 +19870821, 0.48, 0.06, -0.82, 0.118 +19870828, -2.17, 1.71, -0.24, 0.118 +19870904, -2.88, 1.76, 0.13, 0.113 +19870911, 1.17, -1.24, -1.21, 0.113 +19870918, -2.04, 1.03, 0.69, 0.113 +19870925, 1.29, -1.40, 0.34, 0.113 +19871002, 2.31, -0.89, -0.10, 0.149 +19871009, -4.68, 1.45, 0.88, 0.149 +19871016, -8.82, 0.56, 2.16, 0.149 +19871023, -13.86, -6.96, 4.24, 0.149 +19871030, 0.83, -3.99, -2.06, 0.149 +19871106, -0.28, 1.32, 1.50, 0.086 +19871113, -1.69, 0.89, 0.17, 0.086 +19871120, -1.79, -1.23, 0.90, 0.086 +19871127, -0.21, 1.41, -0.15, 0.086 +19871204, -7.06, -0.68, 2.57, 0.098 +19871211, 4.47, -2.24, -2.73, 0.098 +19871218, 6.02, 2.54, -3.49, 0.098 +19871224, 1.31, 0.29, -0.19, 0.098 +19871231, -1.76, 1.03, -0.05, 0.098 +19880108, -0.32, 3.10, 1.65, 0.073 +19880115, 2.60, -2.95, 0.08, 0.073 +19880122, -1.74, 1.10, 2.29, 0.073 +19880129, 3.70, -2.21, 0.88, 0.073 +19880205, -1.42, 2.04, 1.43, 0.114 +19880212, 2.29, 0.05, -1.36, 0.114 +19880219, 1.32, -0.20, -0.39, 0.114 +19880226, 0.71, 1.78, -0.87, 0.114 +19880304, 1.98, 0.75, -0.96, 0.110 +19880311, -0.65, 2.46, 0.20, 0.110 +19880318, 2.02, -0.65, -0.11, 0.110 +19880325, -3.84, 2.41, 0.74, 0.110 +19880331, -0.01, 0.53, 0.45, 0.110 +19880408, 3.33, -2.07, 0.33, 0.115 +19880415, -3.26, 1.34, 0.78, 0.115 +19880422, -0.08, 0.33, 0.62, 0.115 +19880429, 0.67, 1.23, -0.13, 0.115 +19880506, -1.14, 1.13, 0.69, 0.126 +19880513, -0.60, -1.19, 1.20, 0.126 +19880520, -1.47, -0.26, 0.49, 0.126 +19880527, 0.26, -0.28, 0.25, 0.126 +19880603, 4.41, -2.33, -0.41, 0.121 +19880610, 1.84, 0.48, -0.45, 0.121 +19880617, -0.15, 0.30, 0.42, 0.121 +19880624, 1.19, 0.12, 0.08, 0.121 +19880701, -0.32, 1.92, -0.34, 0.127 +19880708, -0.63, 0.56, 0.50, 0.127 +19880715, 0.34, -0.30, 0.18, 0.127 +19880722, -2.84, 1.58, 1.37, 0.127 +19880729, 2.30, -2.57, 0.15, 0.127 +19880805, -0.08, 0.13, 0.57, 0.148 +19880812, -2.99, 0.63, 0.63, 0.148 +19880819, -0.65, -0.06, 0.17, 0.148 +19880826, -0.42, -0.52, 0.59, 0.148 +19880902, 1.50, -1.04, 0.31, 0.154 +19880909, 0.94, 0.27, -1.07, 0.154 +19880916, 1.02, -0.57, 0.12, 0.154 +19880923, -0.21, 0.12, -0.11, 0.154 +19880930, 0.68, -0.13, 0.17, 0.154 +19881007, 1.59, -2.05, 0.14, 0.152 +19881014, -0.92, 0.48, 0.36, 0.152 +19881021, 2.14, -1.72, -0.33, 0.152 +19881028, -1.72, 0.31, 1.41, 0.152 +19881104, -0.59, -0.06, 0.62, 0.141 +19881111, -2.80, 1.14, 0.36, 0.141 +19881118, -0.95, -1.11, 0.30, 0.141 +19881125, 0.06, -0.70, 0.90, 0.141 +19881202, 1.67, -0.16, -1.48, 0.158 +19881209, 1.46, -0.80, 0.24, 0.158 +19881216, -0.40, 0.67, 0.00, 0.158 +19881223, 0.53, -0.28, -0.65, 0.158 +19881230, 0.21, 1.46, -0.55, 0.158 +19890106, 0.94, 0.59, 0.92, 0.138 +19890113, 0.84, -0.67, 0.46, 0.138 +19890120, 0.86, -0.14, 0.20, 0.138 +19890127, 2.15, -1.46, -0.61, 0.138 +19890203, 1.20, 0.82, -1.39, 0.153 +19890210, -1.31, 1.00, 1.19, 0.153 +19890217, 1.46, -0.34, -0.16, 0.153 +19890224, -2.83, 1.21, 0.43, 0.153 +19890303, 1.21, -0.04, 0.25, 0.167 +19890310, 0.51, 0.47, 0.01, 0.167 +19890317, -0.39, -0.40, 0.32, 0.167 +19890323, -1.24, 0.93, 0.25, 0.167 +19890331, 1.76, -0.66, -0.15, 0.167 +19890407, 0.77, 0.00, -0.34, 0.168 +19890414, 1.15, 0.07, -0.57, 0.168 +19890421, 2.08, -1.44, -0.06, 0.168 +19890428, 0.26, 0.75, -0.38, 0.168 +19890505, -0.42, 1.25, -0.49, 0.196 +19890512, 1.57, -1.16, -0.84, 0.196 +19890519, 2.06, -1.05, -0.05, 0.196 +19890526, 0.25, 0.35, 0.27, 0.196 +19890602, 1.17, 0.06, 0.16, 0.177 +19890609, 0.35, -0.10, 0.12, 0.177 +19890616, -1.72, 0.62, 0.93, 0.177 +19890623, 1.46, -1.62, -0.46, 0.177 +19890630, -2.86, 0.45, 1.61, 0.177 +19890707, 1.89, -0.54, -0.48, 0.173 +19890714, 1.75, -0.87, 0.09, 0.173 +19890721, 0.80, -0.24, -1.20, 0.173 +19890728, 1.54, -1.33, -1.14, 0.173 +19890804, 0.61, 0.02, 0.74, 0.184 +19890811, 0.41, 0.58, 0.26, 0.184 +19890818, 0.03, -0.68, -0.14, 0.184 +19890825, 1.08, -0.51, -0.59, 0.184 +19890901, 0.76, -0.10, 0.51, 0.163 +19890908, -1.19, 1.33, 0.37, 0.163 +19890915, -1.29, -0.28, 0.00, 0.163 +19890922, 0.46, -0.58, -0.39, 0.163 +19890929, 0.65, 0.15, -1.29, 0.163 +19891006, 2.47, -1.38, -0.47, 0.169 +19891013, -6.49, 2.34, 0.66, 0.169 +19891020, 2.94, -3.24, -1.83, 0.169 +19891027, -3.60, -0.18, 0.58, 0.169 +19891103, 0.70, -0.65, 0.43, 0.171 +19891110, 0.32, -0.13, -1.13, 0.171 +19891117, 0.56, -0.50, -0.28, 0.171 +19891124, 0.32, -0.70, -0.48, 0.171 +19891201, 1.41, -1.42, 0.23, 0.151 +19891208, -0.52, 0.33, 0.34, 0.151 +19891215, -0.24, -1.65, 0.40, 0.151 +19891222, -0.78, -0.21, 0.18, 0.151 +19891229, 1.62, 0.10, -0.68, 0.151 +19900105, -0.23, 1.27, -0.86, 0.141 +19900112, -3.56, 0.52, 0.64, 0.141 +19900119, -0.47, -0.35, -0.24, 0.141 +19900126, -4.21, -0.28, 0.93, 0.141 +19900202, 1.22, -1.71, -0.11, 0.142 +19900209, 1.06, 0.68, -0.42, 0.142 +19900216, -0.32, 0.05, 0.57, 0.142 +19900223, -2.48, 0.64, 1.30, 0.142 +19900302, 3.16, -1.45, -0.68, 0.161 +19900309, 0.77, 1.03, -1.29, 0.161 +19900316, 0.83, 0.09, -0.89, 0.161 +19900323, -1.41, 0.95, -0.55, 0.161 +19900330, 0.51, -0.43, 0.27, 0.161 +19900406, -0.25, -0.76, -1.13, 0.171 +19900412, 1.05, -0.93, -1.12, 0.171 +19900420, -2.69, 1.00, 0.25, 0.171 +19900427, -1.92, 0.45, 0.00, 0.171 +19900504, 2.48, -1.26, -0.95, 0.169 +19900511, 3.46, -2.26, -0.05, 0.169 +19900518, 0.86, 0.45, -0.98, 0.169 +19900525, 0.26, 1.08, -1.58, 0.169 +19900601, 2.00, -0.89, -0.52, 0.156 +19900608, -1.00, 0.78, 0.95, 0.156 +19900615, 0.86, 0.17, -1.68, 0.156 +19900622, -1.94, 0.55, -0.34, 0.156 +19900629, 0.46, 0.00, -0.99, 0.156 +19900706, -0.05, -0.49, -0.70, 0.169 +19900713, 2.04, -0.81, -1.62, 0.169 +19900720, -1.76, -0.34, 0.49, 0.169 +19900727, -2.48, -0.08, 1.20, 0.169 +19900803, -2.93, -2.60, 1.49, 0.164 +19900810, -2.65, 0.34, -0.46, 0.164 +19900817, -2.59, -0.90, 0.61, 0.164 +19900824, -5.45, -2.39, 2.03, 0.164 +19900831, 3.55, 0.25, -1.59, 0.164 +19900907, 0.14, -0.16, 0.02, 0.149 +19900914, -1.98, 0.21, 0.01, 0.149 +19900921, -2.11, -1.10, 1.00, 0.149 +19900928, -2.27, -2.80, -0.30, 0.149 +19901005, 1.44, -1.66, -0.04, 0.170 +19901012, -4.11, -1.27, 1.68, 0.170 +19901019, 3.44, -2.41, -2.02, 0.170 +19901026, -2.13, 0.95, -0.24, 0.170 +19901102, 1.86, -2.64, 0.53, 0.141 +19901109, 0.87, -0.12, -0.31, 0.141 +19901116, 1.41, 1.04, -0.55, 0.141 +19901123, -0.73, 0.53, -0.64, 0.141 +19901130, 2.24, 0.18, -1.34, 0.141 +19901207, 1.98, 0.98, -0.08, 0.149 +19901214, -0.36, -0.17, -0.70, 0.149 +19901221, 1.22, -1.09, 0.01, 0.149 +19901228, -0.84, 0.27, -0.16, 0.149 +19910104, -2.04, 1.77, 1.77, 0.129 +19910111, -1.93, -0.02, -0.36, 0.129 +19910118, 4.68, -3.29, -1.91, 0.129 +19910125, 1.70, 3.32, -0.81, 0.129 +19910201, 2.70, 3.74, -0.76, 0.119 +19910208, 4.69, -0.46, -0.29, 0.119 +19910215, 2.66, 1.04, 0.02, 0.119 +19910222, -0.74, 1.15, -1.09, 0.119 +19910301, 1.36, 0.70, 0.39, 0.110 +19910308, 1.56, 2.75, -1.31, 0.110 +19910315, -0.72, -1.11, 0.92, 0.110 +19910322, -1.30, 1.53, -0.05, 0.110 +19910328, 2.23, 0.77, -0.62, 0.110 +19910405, 0.52, 1.66, -0.82, 0.133 +19910412, 1.06, -0.07, 0.24, 0.133 +19910419, 0.80, -0.49, 1.16, 0.133 +19910426, -1.53, 0.14, 0.07, 0.133 +19910503, 0.28, -0.58, 0.31, 0.118 +19910510, -1.04, 1.22, -0.25, 0.118 +19910517, -1.23, -1.09, 0.60, 0.118 +19910524, 1.45, -0.21, -0.64, 0.118 +19910531, 3.00, -0.44, 0.19, 0.118 +19910607, -2.21, 1.82, 1.26, 0.104 +19910614, 0.33, -1.28, -0.26, 0.104 +19910621, -1.33, -0.21, 0.36, 0.104 +19910628, -1.79, -0.28, -0.07, 0.104 +19910705, 0.64, -1.03, -0.63, 0.122 +19910712, 1.74, 0.39, -0.73, 0.122 +19910719, 0.99, 0.50, 0.82, 0.122 +19910726, -0.99, -0.33, 0.51, 0.122 +19910802, 1.70, -0.04, -1.42, 0.115 +19910809, 0.17, 0.27, 0.01, 0.115 +19910816, -0.20, 0.55, 0.64, 0.115 +19910823, 1.85, -0.58, -0.49, 0.115 +19910830, 0.48, 0.96, -0.70, 0.115 +19910906, -1.70, 0.58, 0.16, 0.114 +19910913, -1.27, 0.90, -0.57, 0.114 +19910920, 1.30, 0.19, -1.05, 0.114 +19910927, -0.45, -0.19, 0.44, 0.114 +19911004, -1.06, 0.48, 0.01, 0.106 +19911011, -0.28, -0.51, 0.09, 0.106 +19911018, 2.99, 0.51, -0.30, 0.106 +19911025, -2.19, 0.34, 0.25, 0.106 +19911101, 2.07, 0.37, -0.78, 0.098 +19911108, 0.60, 0.15, -0.08, 0.098 +19911115, -2.55, 0.13, 0.20, 0.098 +19911122, -1.74, -0.48, -1.30, 0.098 +19911129, -0.25, -0.42, -0.53, 0.098 +19911206, 1.14, -0.18, -2.55, 0.095 +19911213, 1.09, -1.21, -0.33, 0.095 +19911220, 0.35, -0.85, -1.39, 0.095 +19911227, 5.18, -0.53, 0.90, 0.095 +19920103, 3.12, 1.12, 0.46, 0.085 +19920110, 0.02, 3.86, -1.01, 0.085 +19920117, 0.93, 1.66, 3.56, 0.085 +19920124, -0.74, 0.71, 0.03, 0.085 +19920131, -1.26, 1.59, 1.15, 0.085 +19920207, 0.96, 1.13, 1.21, 0.071 +19920214, 0.31, 0.09, 2.51, 0.071 +19920221, -0.47, -0.49, 2.68, 0.071 +19920228, 0.29, 0.14, -0.19, 0.071 +19920306, -2.06, 0.21, 0.82, 0.084 +19920313, 0.28, -0.56, 0.13, 0.084 +19920320, 1.11, -0.62, 1.97, 0.084 +19920327, -1.91, -0.05, 0.27, 0.084 +19920403, -1.06, -1.16, 0.02, 0.081 +19920410, 0.31, -1.43, 0.60, 0.081 +19920416, 2.35, -2.36, 2.10, 0.081 +19920424, -1.95, -0.60, 2.65, 0.081 +19920501, 0.91, -0.04, -0.66, 0.069 +19920508, 1.01, -0.03, 0.35, 0.069 +19920515, -1.43, 0.13, 1.16, 0.069 +19920522, 0.80, -0.20, 0.14, 0.069 +19920529, 0.39, -0.07, -0.37, 0.069 +19920605, -0.46, 0.46, 1.62, 0.080 +19920612, -1.30, -1.36, 1.34, 0.080 +19920619, -1.85, -1.73, 0.66, 0.080 +19920626, -0.24, -1.00, 0.25, 0.080 +19920702, 2.23, -0.10, -1.07, 0.077 +19920710, 0.62, -0.62, 0.45, 0.077 +19920717, 0.21, 0.80, -0.95, 0.077 +19920724, -0.83, 0.19, 0.47, 0.077 +19920731, 2.95, -0.31, -0.53, 0.077 +19920807, -0.99, 0.75, -0.77, 0.065 +19920814, 0.09, -0.51, 0.16, 0.065 +19920821, -1.20, -0.06, -0.13, 0.065 +19920828, -0.19, -0.41, -0.44, 0.065 +19920904, 0.75, 0.53, -0.97, 0.064 +19920911, 0.67, 0.31, -1.25, 0.064 +19920918, 0.70, -0.29, 0.03, 0.064 +19920925, -1.88, 0.37, 1.66, 0.064 +19921002, -0.94, -0.22, 0.98, 0.057 +19921009, -1.46, 0.86, -0.69, 0.057 +19921016, 1.99, -0.40, -0.90, 0.057 +19921023, 0.95, 1.29, -0.39, 0.057 +19921030, 1.29, 0.27, -0.60, 0.057 +19921106, 0.28, 1.16, -0.25, 0.059 +19921113, 1.47, 1.69, -1.82, 0.059 +19921120, 1.00, 0.20, -0.37, 0.059 +19921127, 0.96, 0.32, 0.42, 0.059 +19921204, 0.64, 1.16, 0.64, 0.070 +19921211, 0.18, -0.61, 0.58, 0.070 +19921218, 1.24, -1.24, 0.29, 0.070 +19921224, -0.11, 0.41, 1.15, 0.070 +19921231, -0.11, 2.08, 0.31, 0.070 +19930108, -1.52, 1.15, 1.35, 0.058 +19930115, 2.01, 0.09, 0.57, 0.058 +19930122, 0.15, 0.95, 2.67, 0.058 +19930129, 0.31, -0.18, 1.31, 0.058 +19930205, 2.16, -1.39, 2.22, 0.055 +19930212, -0.98, 0.08, 1.24, 0.055 +19930219, -2.89, -0.98, 2.83, 0.055 +19930226, 1.92, -1.20, 0.14, 0.055 +19930305, 0.93, 0.75, -0.12, 0.063 +19930312, 1.03, 0.40, -0.35, 0.063 +19930319, -0.32, -0.80, 2.00, 0.063 +19930326, -0.37, -0.11, 0.74, 0.063 +19930402, -1.41, 0.55, 0.02, 0.059 +19930408, -0.25, -1.25, 2.62, 0.059 +19930416, 1.38, -1.36, 2.23, 0.059 +19930423, -2.38, 1.93, -2.38, 0.059 +19930430, 0.58, -0.58, -0.81, 0.059 +19930507, 1.00, 1.68, -2.02, 0.054 +19930514, -0.66, 0.71, -0.20, 0.054 +19930521, 1.53, -0.12, -2.01, 0.054 +19930528, 1.00, -0.33, 0.82, 0.054 +19930604, -0.02, 0.44, 0.91, 0.063 +19930611, -0.93, -0.59, -0.06, 0.063 +19930618, -0.59, 0.35, 1.03, 0.063 +19930625, 0.86, -1.03, 0.56, 0.063 +19930702, 0.26, 1.45, 0.15, 0.060 +19930709, 0.40, -0.35, 1.02, 0.060 +19930716, -0.39, 0.92, 0.94, 0.060 +19930723, -0.09, -0.95, 0.45, 0.060 +19930730, 0.40, 0.14, 0.63, 0.060 +19930806, 0.44, 0.39, -0.73, 0.063 +19930813, 0.32, -0.07, 0.90, 0.063 +19930820, 1.40, 0.09, -1.32, 0.063 +19930827, 0.76, -0.31, 0.89, 0.063 +19930903, 0.61, 1.33, -0.61, 0.064 +19930910, -0.21, -0.90, 0.60, 0.064 +19930917, -0.56, 0.48, 0.65, 0.064 +19930924, 0.19, 0.97, -1.46, 0.064 +19931001, 0.89, 0.97, 0.51, 0.055 +19931008, -0.23, 0.77, -0.26, 0.055 +19931015, 1.98, 0.62, -2.74, 0.055 +19931022, -1.55, -0.05, 1.16, 0.055 +19931029, 0.88, 0.49, -0.10, 0.055 +19931105, -1.97, -0.18, -1.10, 0.062 +19931112, 1.48, 0.45, -0.65, 0.062 +19931119, -1.30, -1.40, 1.19, 0.062 +19931126, 0.18, -0.84, 0.47, 0.062 +19931203, 0.68, 0.89, -0.63, 0.057 +19931210, -0.25, -0.38, 1.12, 0.057 +19931217, 0.24, -0.69, 0.27, 0.057 +19931223, 0.09, -0.62, 0.13, 0.057 +19931231, 0.57, 2.50, -0.66, 0.057 +19940107, 0.41, 0.01, 0.50, 0.063 +19940114, 1.05, -0.31, 0.11, 0.063 +19940121, -0.07, 1.08, 0.16, 0.063 +19940128, 0.88, -0.59, 0.66, 0.063 +19940204, -1.82, 0.60, 0.81, 0.053 +19940211, 0.19, 0.64, -0.49, 0.053 +19940218, -0.29, 1.02, -0.82, 0.053 +19940225, -0.42, -0.21, -0.27, 0.053 +19940304, -0.06, 0.37, -0.02, 0.067 +19940311, 0.30, 0.17, 0.34, 0.067 +19940318, 1.23, 0.88, -0.54, 0.067 +19940325, -2.04, 0.56, 0.82, 0.067 +19940331, -3.90, -2.26, 0.63, 0.067 +19940408, 0.57, 0.92, -0.15, 0.068 +19940415, -0.75, -1.46, 1.92, 0.068 +19940422, -0.09, -1.72, -0.02, 0.068 +19940429, 0.95, 1.46, -0.14, 0.068 +19940506, -0.67, 0.62, -0.60, 0.079 +19940513, -1.31, -0.77, 0.12, 0.079 +19940520, 2.16, -1.66, 0.54, 0.079 +19940527, 0.66, -0.17, 0.12, 0.079 +19940603, 0.70, 0.37, -0.64, 0.078 +19940610, -0.43, -0.21, 1.14, 0.078 +19940617, -0.17, 0.03, 0.83, 0.078 +19940624, -3.79, -0.58, 0.85, 0.078 +19940701, 0.92, 0.24, -0.31, 0.069 +19940708, 0.58, -0.72, 0.07, 0.069 +19940715, 1.21, 0.43, -0.26, 0.069 +19940722, -0.39, -0.46, 0.70, 0.069 +19940729, 0.95, -0.64, -0.14, 0.069 +19940805, -0.21, 0.12, 0.54, 0.092 +19940812, 1.13, 0.11, -1.41, 0.092 +19940819, 0.51, 0.76, -1.08, 0.092 +19940826, 2.06, -0.32, -1.08, 0.092 +19940902, -0.39, 1.12, 0.36, 0.091 +19940909, -0.48, 0.86, -0.33, 0.091 +19940916, 0.73, 0.63, -0.65, 0.091 +19940923, -2.54, 0.54, -0.18, 0.091 +19940930, 0.79, 0.21, -0.85, 0.091 +19941007, -1.75, -0.31, -0.06, 0.096 +19941014, 2.56, -1.20, -0.74, 0.096 +19941021, -0.86, 0.25, -0.33, 0.096 +19941028, 1.61, -1.25, -0.78, 0.096 +19941104, -1.87, 1.53, -0.28, 0.092 +19941111, -0.32, -0.84, -0.60, 0.092 +19941118, -0.33, 0.07, -1.17, 0.092 +19941125, -2.15, -0.70, 1.09, 0.092 +19941202, 0.03, 0.10, 0.12, 0.111 +19941209, -1.89, -1.66, 1.02, 0.111 +19941216, 2.44, -0.72, -0.32, 0.111 +19941223, 0.51, 0.89, -0.28, 0.111 +19941230, 0.16, 1.95, -0.05, 0.111 +19950106, 0.17, -1.21, 1.84, 0.104 +19950113, 1.07, -0.30, 0.13, 0.104 +19950120, -0.22, 0.47, -0.96, 0.104 +19950127, 0.79, -1.22, 0.09, 0.104 +19950203, 1.76, -1.22, 0.14, 0.099 +19950210, 0.83, 1.09, -0.77, 0.099 +19950217, -0.03, -0.37, 0.66, 0.099 +19950224, 0.95, -0.65, 0.87, 0.099 +19950303, -0.33, 0.75, -1.05, 0.115 +19950310, 0.47, -0.84, -0.76, 0.115 +19950317, 0.95, -0.43, -0.56, 0.115 +19950324, 0.90, -0.53, -0.23, 0.115 +19950331, 0.09, 0.53, 1.36, 0.115 +19950407, 0.71, -1.17, 1.41, 0.111 +19950413, 0.73, 0.69, -0.25, 0.111 +19950421, -0.49, -0.38, 1.54, 0.111 +19950428, 1.15, 0.25, -0.50, 0.111 +19950505, 0.68, -1.17, 0.18, 0.134 +19950512, 1.28, -0.11, 0.65, 0.134 +19950519, -1.06, 1.35, 0.26, 0.134 +19950526, 0.68, -0.58, 0.41, 0.134 +19950602, 1.36, -1.24, 0.72, 0.118 +19950609, -0.58, 2.14, -1.42, 0.118 +19950616, 2.16, -0.13, -1.33, 0.118 +19950623, 1.78, -0.75, -0.29, 0.118 +19950630, -0.83, 1.13, 0.20, 0.118 +19950707, 2.21, -0.68, 0.37, 0.113 +19950714, 0.84, 1.46, -1.11, 0.113 +19950721, -1.41, 0.28, 0.02, 0.113 +19950728, 2.14, 0.65, -0.95, 0.113 +19950804, -0.80, 0.50, 1.36, 0.116 +19950811, -0.32, 0.99, -0.40, 0.116 +19950818, 1.16, 0.68, -0.50, 0.116 +19950825, 0.00, 0.00, 0.68, 0.116 +19950901, 0.64, -0.45, 2.00, 0.108 +19950908, 1.91, 0.61, -1.06, 0.108 +19950915, 1.31, -1.32, 0.15, 0.108 +19950922, -0.35, -0.11, -1.71, 0.108 +19950929, 0.15, -1.08, 1.45, 0.108 +19951006, -0.98, -2.20, 1.42, 0.118 +19951013, 0.42, -0.76, 0.63, 0.118 +19951020, 0.34, 0.10, -1.39, 0.118 +19951027, -1.66, -1.21, -0.52, 0.118 +19951103, 2.23, 0.17, -1.07, 0.105 +19951110, 0.25, 0.34, -0.15, 0.105 +19951117, 0.71, -1.03, 0.45, 0.105 +19951124, -0.30, -0.80, 1.57, 0.105 +19951201, 1.46, 0.67, -0.58, 0.122 +19951208, 1.14, -0.79, -0.38, 0.122 +19951215, -0.70, 0.16, 0.59, 0.122 +19951222, -0.34, 0.76, 0.53, 0.122 +19951229, 0.78, 0.29, -0.18, 0.122 +19960105, -0.48, -0.20, 0.58, 0.107 +19960112, -2.32, 0.12, 0.79, 0.107 +19960119, 1.28, -1.64, -0.12, 0.107 +19960126, 1.67, 0.16, -1.02, 0.107 +19960202, 2.27, -0.41, -0.83, 0.098 +19960209, 2.70, -1.78, -0.71, 0.098 +19960216, -0.82, 1.11, 0.61, 0.098 +19960223, 1.61, -0.41, -1.34, 0.098 +19960301, -2.02, 1.61, 1.59, 0.098 +19960308, -1.55, 0.11, -0.27, 0.098 +19960315, 1.42, 0.63, -1.03, 0.098 +19960322, 1.14, 0.00, 0.67, 0.098 +19960329, -0.52, 1.18, 0.91, 0.098 +19960404, 1.40, -0.08, -0.34, 0.114 +19960412, -2.70, 2.02, -0.53, 0.114 +19960419, 1.49, 1.17, -1.41, 0.114 +19960426, 1.79, 1.32, -1.51, 0.114 +19960503, -1.38, 2.01, -0.05, 0.106 +19960510, 1.37, -0.29, -0.22, 0.106 +19960517, 2.62, 0.23, -0.95, 0.106 +19960524, 1.12, 0.42, -0.10, 0.106 +19960531, -1.27, 0.86, 0.07, 0.106 +19960607, 0.17, -1.35, -0.16, 0.100 +19960614, -1.05, 0.16, 0.96, 0.100 +19960621, -0.86, -2.46, 0.58, 0.100 +19960628, 0.58, 0.03, 0.21, 0.100 +19960705, -1.98, 0.47, 0.80, 0.112 +19960712, -2.62, -2.91, 2.93, 0.112 +19960719, -1.07, 0.40, -0.19, 0.112 +19960726, -0.87, -1.92, 0.85, 0.112 +19960802, 3.88, -1.28, -0.90, 0.103 +19960809, -0.06, 0.77, -0.01, 0.103 +19960816, 0.61, -0.33, 0.77, 0.103 +19960823, 0.30, 0.42, 0.19, 0.103 +19960830, -1.54, 2.47, -0.14, 0.103 +19960906, 0.28, 0.00, 0.17, 0.109 +19960913, 3.40, -1.50, -1.43, 0.109 +19960920, 0.86, -0.20, -1.11, 0.109 +19960927, 0.19, 0.79, -0.90, 0.109 +19961004, 1.88, -1.42, 0.77, 0.106 +19961011, -0.33, -0.02, 0.60, 0.106 +19961018, 0.94, -1.31, 0.77, 0.106 +19961025, -1.66, -0.28, 2.12, 0.106 +19961101, 0.04, -1.66, 1.09, 0.102 +19961108, 3.32, -2.04, -0.89, 0.102 +19961115, 0.78, -0.48, 0.49, 0.102 +19961122, 1.12, -1.01, 1.47, 0.102 +19961129, 1.06, 0.01, -0.01, 0.102 +19961206, -1.83, 2.09, -0.02, 0.115 +19961213, -1.44, 1.31, 0.30, 0.115 +19961220, 2.02, -1.85, 0.61, 0.115 +19961227, 0.83, -0.62, -0.12, 0.115 +19970103, -0.69, 1.93, -0.53, 0.112 +19970110, 1.52, 0.04, -0.47, 0.112 +19970117, 1.79, -1.21, 0.19, 0.112 +19970124, -0.57, 0.54, -0.01, 0.112 +19970131, 1.48, -0.90, -0.67, 0.112 +19970207, 0.02, -1.05, 1.31, 0.096 +19970214, 1.99, -2.04, 1.09, 0.096 +19970221, -1.05, 0.24, 1.63, 0.096 +19970228, -1.41, -0.13, 1.21, 0.096 +19970307, 1.64, -0.82, 0.58, 0.107 +19970314, -1.54, 0.14, 0.95, 0.107 +19970321, -1.63, -1.11, 1.58, 0.107 +19970327, -1.31, 0.69, -0.20, 0.107 +19970404, -2.16, 0.16, -0.23, 0.108 +19970411, -2.31, 1.75, 1.10, 0.108 +19970418, 2.88, -2.72, 0.36, 0.108 +19970425, -0.82, -1.14, 0.51, 0.108 +19970502, 6.10, -1.58, -1.81, 0.123 +19970509, 1.57, 0.77, -0.95, 0.123 +19970516, 0.63, 0.47, -0.13, 0.123 +19970523, 2.05, 0.73, -1.12, 0.123 +19970530, 0.42, 1.01, -0.26, 0.123 +19970606, 1.18, 0.53, 0.74, 0.092 +19970613, 3.34, -2.52, 0.62, 0.092 +19970620, 0.70, 0.03, -0.13, 0.092 +19970627, -1.06, 1.58, 0.62, 0.092 +19970703, 2.82, -1.31, -0.48, 0.107 +19970711, 0.38, 1.24, -0.29, 0.107 +19970718, 0.13, 1.34, -0.70, 0.107 +19970725, 2.05, -1.46, 0.06, 0.107 +19970801, 1.00, -0.19, 1.82, 0.103 +19970808, -1.22, 1.96, -0.14, 0.103 +19970815, -2.82, 1.61, 1.41, 0.103 +19970822, 2.04, -0.44, -0.81, 0.103 +19970829, -1.56, 3.62, 0.61, 0.103 +19970905, 2.91, -0.68, -0.11, 0.111 +19970912, -0.09, 2.00, 0.69, 0.111 +19970919, 2.51, -1.12, -0.17, 0.111 +19970926, -0.40, 1.56, -0.45, 0.111 +19971003, 1.96, 0.10, 0.09, 0.105 +19971010, 0.47, 1.22, -0.58, 0.105 +19971017, -2.56, -1.01, 1.54, 0.105 +19971024, -0.26, -0.17, 0.40, 0.105 +19971031, -3.14, -0.19, 0.40, 0.105 +19971107, 1.07, -0.95, -0.15, 0.098 +19971114, -0.41, -1.14, 0.00, 0.098 +19971121, 3.15, -2.17, -0.10, 0.098 +19971128, -0.82, -0.77, 1.12, 0.098 +19971205, 2.76, -1.76, 0.21, 0.119 +19971212, -3.35, -0.80, 2.83, 0.119 +19971219, -0.67, -0.62, 0.43, 0.119 +19971226, -0.93, 0.91, 1.06, 0.119 +19980102, 3.81, -0.13, -1.73, 0.107 +19980109, -4.93, 0.36, 0.30, 0.107 +19980116, 3.37, -0.90, -0.32, 0.107 +19980123, -0.43, 0.28, -0.50, 0.107 +19980130, 2.11, -0.89, -0.40, 0.107 +19980206, 3.32, -0.10, -0.83, 0.098 +19980213, 0.99, 0.83, 0.51, 0.098 +19980220, 1.09, -0.95, 0.06, 0.098 +19980227, 1.46, 0.24, 0.15, 0.098 +19980306, 0.55, -0.47, 1.44, 0.099 +19980313, 1.29, -0.19, -0.04, 0.099 +19980320, 2.44, -1.75, 0.81, 0.099 +19980327, -0.20, 1.26, -0.76, 0.099 +19980403, 2.19, -0.21, -0.94, 0.107 +19980409, -1.07, -0.36, 1.73, 0.107 +19980417, 1.24, 0.02, 0.52, 0.107 +19980424, -1.42, 1.06, -0.58, 0.107 +19980501, 0.94, -0.50, -0.38, 0.101 +19980508, -1.04, -0.01, 0.57, 0.101 +19980515, -0.41, -1.37, 1.35, 0.101 +19980522, -0.50, -1.75, 1.07, 0.101 +19980529, -1.75, -0.22, 1.01, 0.101 +19980605, 1.50, -2.47, 0.52, 0.102 +19980612, -1.57, -0.93, -0.23, 0.102 +19980619, 0.09, -0.46, -0.79, 0.102 +19980626, 2.82, -0.15, -1.35, 0.102 +19980702, 1.25, -0.31, 0.27, 0.100 +19980710, 1.37, -1.09, -1.05, 0.100 +19980717, 1.70, -0.33, -1.84, 0.100 +19980724, -4.17, -0.73, 0.56, 0.100 +19980731, -2.20, -2.28, 0.85, 0.100 +19980807, -2.53, 1.19, 0.59, 0.107 +19980814, -2.55, -0.57, 0.60, 0.107 +19980821, 0.79, -2.98, -0.73, 0.107 +19980828, -6.03, -3.76, 1.12, 0.107 +19980904, -5.21, 0.91, 0.56, 0.114 +19980911, 3.13, -1.83, -1.05, 0.114 +19980918, 1.62, -0.15, 0.67, 0.114 +19980925, 2.10, -1.12, -0.87, 0.114 +19981002, -4.25, -0.61, 1.80, 0.081 +19981009, -3.35, -6.69, 0.63, 0.081 +19981016, 7.61, -0.58, -2.77, 0.081 +19981023, 1.96, 6.49, -1.77, 0.081 +19981030, 2.95, 0.50, -0.32, 0.081 +19981106, 4.21, 2.09, -1.09, 0.077 +19981113, -1.42, -0.92, 0.60, 0.077 +19981120, 3.06, -1.84, -1.59, 0.077 +19981127, 2.52, 0.47, -1.52, 0.077 +19981204, -1.34, 0.14, 0.38, 0.094 +19981211, -1.08, 0.38, -0.88, 0.094 +19981218, 1.62, -1.41, -0.74, 0.094 +19981224, 3.21, -0.62, -2.09, 0.094 +19981231, 1.21, 2.69, -0.40, 0.094 +19990108, 3.42, -0.97, 0.31, 0.088 +19990115, -2.31, 2.02, -0.54, 0.088 +19990122, -1.46, 0.94, -0.33, 0.088 +19990129, 3.95, -1.89, -3.31, 0.088 +19990205, -3.19, -0.45, 0.57, 0.089 +19990212, -1.22, -2.05, 0.02, 0.089 +19990219, 0.33, -2.89, 1.03, 0.089 +19990226, -0.01, -0.36, -0.36, 0.089 +19990305, 2.68, -2.41, -0.31, 0.106 +19990312, 1.35, -1.18, -0.67, 0.106 +19990319, 0.16, -1.39, 0.34, 0.106 +19990326, -1.23, 0.83, -0.44, 0.106 +19990401, 0.99, 0.32, -1.75, 0.093 +19990409, 3.76, -0.83, -2.07, 0.093 +19990416, -1.53, 3.38, 3.73, 0.093 +19990423, 2.84, -0.45, -0.78, 0.093 +19990430, -1.27, 1.71, 1.41, 0.093 +19990507, 0.35, -1.10, 1.99, 0.085 +19990514, -0.13, 2.41, -0.59, 0.085 +19990521, -0.37, 1.94, 0.59, 0.085 +19990528, -2.28, 0.01, 0.71, 0.085 +19990604, 1.44, -0.58, -0.86, 0.099 +19990611, -2.38, 1.92, 0.73, 0.099 +19990618, 3.25, -1.87, -0.93, 0.099 +19990625, -1.82, 2.34, -0.03, 0.099 +19990702, 5.73, -0.12, -2.86, 0.095 +19990709, 0.68, 0.62, -1.07, 0.095 +19990716, 1.13, 1.13, -1.09, 0.095 +19990723, -4.36, 0.02, 2.23, 0.095 +19990730, -2.21, 1.48, 0.08, 0.095 +19990806, -2.87, -1.54, 1.96, 0.097 +19990813, 2.10, -1.27, -0.18, 0.097 +19990820, 0.56, 0.16, -0.83, 0.097 +19990827, 0.94, 0.42, -2.17, 0.097 +19990903, 0.74, 0.60, -1.49, 0.097 +19990910, -0.17, 1.78, -0.18, 0.097 +19990917, -1.44, 0.11, 0.11, 0.097 +19990924, -4.15, 0.80, -0.62, 0.097 +19991001, 0.13, 1.36, -1.82, 0.097 +19991008, 4.06, -3.13, -1.77, 0.097 +19991015, -6.10, 2.60, 1.72, 0.097 +19991022, 3.90, -2.97, -1.99, 0.097 +19991029, 4.69, -3.09, -1.22, 0.097 +19991105, 1.42, 2.17, -1.70, 0.090 +19991112, 1.81, 1.34, -1.81, 0.090 +19991119, 2.26, 2.15, -2.20, 0.090 +19991126, -0.20, 1.29, -1.62, 0.090 +19991203, 1.31, -0.16, -0.63, 0.109 +19991210, -0.14, 3.23, -3.47, 0.109 +19991217, 0.12, 0.10, -0.08, 0.109 +19991223, 2.99, 0.48, -2.03, 0.109 +19991231, 1.23, 3.50, -0.58, 0.109 +20000107, -2.49, -0.85, 1.77, 0.103 +20000114, 2.07, 1.94, -1.21, 0.103 +20000121, 0.02, 6.99, -2.86, 0.103 +20000128, -5.71, 0.00, 2.01, 0.103 +20000204, 4.46, 1.52, -3.04, 0.108 +20000211, -1.45, 6.85, -3.67, 0.108 +20000218, -1.89, 4.92, -0.65, 0.108 +20000225, 0.29, 2.59, -1.52, 0.108 +20000303, 6.46, 3.16, -2.30, 0.117 +20000310, -0.33, 2.01, 0.05, 0.117 +20000317, 1.76, -10.72, 3.64, 0.117 +20000324, 3.12, -4.02, 0.88, 0.117 +20000331, -3.29, -5.17, 4.19, 0.117 +20000407, 0.00, -1.34, 0.85, 0.115 +20000414, -13.74, -9.42, 9.05, 0.115 +20000420, 6.13, 2.31, -2.93, 0.115 +20000428, 2.29, 2.21, 0.76, 0.115 +20000505, -1.35, 1.87, -0.25, 0.126 +20000512, -2.05, -4.23, 3.58, 0.126 +20000519, -1.50, -1.76, 1.37, 0.126 +20000526, -3.05, -2.37, -0.04, 0.126 +20000602, 9.26, 3.90, -6.35, 0.099 +20000609, -0.65, 4.60, -1.06, 0.099 +20000616, -0.17, 0.29, -0.78, 0.099 +20000623, -1.15, 1.66, -0.79, 0.099 +20000630, 1.20, 4.43, -2.62, 0.099 +20000707, 1.59, -1.56, 1.76, 0.120 +20000714, 2.77, 0.09, -0.92, 0.120 +20000721, -2.41, 0.19, 1.45, 0.120 +20000728, -5.40, -2.18, 6.06, 0.120 +20000804, 3.23, -2.67, 1.56, 0.126 +20000811, 0.46, -0.28, 1.89, 0.126 +20000818, 1.42, 0.32, -1.11, 0.126 +20000825, 1.24, 1.28, -2.38, 0.126 +20000901, 1.91, 1.11, -1.41, 0.127 +20000908, -2.25, -0.63, 3.52, 0.127 +20000915, -1.88, 0.26, 1.81, 0.127 +20000922, -1.11, -0.52, -0.63, 0.127 +20000929, -0.71, -0.65, 1.99, 0.127 +20001006, -3.73, -1.58, 3.44, 0.140 +20001013, -2.67, -0.11, 1.00, 0.140 +20001020, 1.94, -0.51, -2.36, 0.140 +20001027, -1.73, -0.64, 3.30, 0.140 +20001103, 4.07, 1.36, -1.88, 0.127 +20001110, -5.48, -1.07, 5.33, 0.127 +20001117, -0.39, -0.02, 2.07, 0.127 +20001124, -2.63, -0.42, 2.10, 0.127 +20001201, -2.72, -2.12, 3.74, 0.126 +20001208, 5.30, -0.84, -1.74, 0.126 +20001215, -4.76, -0.09, 3.29, 0.126 +20001222, -1.14, -1.50, 4.83, 0.126 +20001229, 1.53, 1.90, 1.26, 0.126 +20010105, -2.67, 1.26, 0.54, 0.134 +20010112, 2.59, 3.73, -4.01, 0.134 +20010119, 1.63, 0.97, -2.71, 0.134 +20010126, 0.97, -0.77, 1.73, 0.134 +20010202, -0.71, 0.42, 2.84, 0.094 +20010209, -2.73, 0.94, 3.67, 0.094 +20010216, -0.86, 0.48, 1.70, 0.094 +20010223, -4.57, -0.41, 2.47, 0.094 +20010302, -1.28, -0.90, 3.58, 0.104 +20010309, -0.51, -0.97, 2.84, 0.104 +20010316, -6.91, 0.24, 2.52, 0.104 +20010323, -0.87, 0.89, -1.69, 0.104 +20010330, 1.51, -0.02, 1.95, 0.104 +20010406, -3.24, -1.28, 1.47, 0.098 +20010412, 5.26, -0.02, -3.55, 0.098 +20010420, 5.20, -1.27, -3.31, 0.098 +20010427, 0.68, 2.43, 1.19, 0.098 +20010504, 1.58, 1.42, -1.25, 0.081 +20010511, -1.75, 0.91, 2.20, 0.081 +20010518, 3.72, 0.06, -0.69, 0.081 +20010525, -0.67, 1.72, -0.57, 0.081 +20010601, -1.55, -0.13, 2.47, 0.070 +20010608, 0.51, 1.43, -1.72, 0.070 +20010615, -4.37, 0.48, 2.67, 0.070 +20010622, 0.60, -1.78, 0.43, 0.070 +20010629, 0.86, 5.35, -2.39, 0.070 +20010706, -3.18, -2.66, 2.76, 0.075 +20010713, 1.86, -1.19, 1.94, 0.075 +20010720, -0.65, 0.90, 0.22, 0.075 +20010727, -0.49, -1.06, 0.54, 0.075 +20010803, 0.69, -0.15, 0.40, 0.077 +20010810, -2.30, -0.48, 1.32, 0.077 +20010817, -2.25, 1.73, 1.07, 0.077 +20010824, 1.70, -0.27, -1.38, 0.077 +20010831, -4.00, 1.30, 1.40, 0.077 +20010907, -4.35, -0.35, 1.05, 0.069 +20010910, 0.32, -1.08, -0.49, 0.069 +20010921, -11.95, -2.82, -0.29, 0.069 +20010928, 7.43, -2.31, 1.75, 0.069 +20011005, 2.92, 0.90, -3.58, 0.056 +20011012, 2.18, 1.03, -0.94, 0.056 +20011019, -1.54, 2.22, -1.68, 0.056 +20011026, 2.92, 1.22, -3.04, 0.056 +20011102, -1.68, 0.77, 1.03, 0.044 +20011109, 2.79, -1.35, -0.36, 0.044 +20011116, 1.88, 0.24, 2.05, 0.044 +20011123, 1.02, 0.75, -0.49, 0.044 +20011130, -0.64, 1.33, 0.92, 0.044 +20011207, 2.02, 1.70, 0.12, 0.037 +20011214, -2.87, 2.01, 0.21, 0.037 +20011221, 1.96, -0.04, 0.44, 0.037 +20011228, 1.62, 0.49, -0.47, 0.037 +20020104, 1.05, 0.62, 0.72, 0.035 +20020111, -2.14, 0.74, 1.49, 0.035 +20020118, -1.83, -1.07, 0.97, 0.035 +20020125, 0.58, -0.08, 0.63, 0.035 +20020201, -0.85, 1.58, -0.01, 0.032 +20020208, -2.34, -0.76, 0.89, 0.032 +20020215, 0.66, 0.71, -1.06, 0.032 +20020222, -1.41, -0.14, 1.61, 0.032 +20020301, 3.79, -1.94, 1.16, 0.033 +20020308, 3.15, 1.15, 0.02, 0.033 +20020315, 0.09, 0.38, 0.12, 0.033 +20020322, -1.19, 2.07, 0.51, 0.033 +20020328, -0.04, 0.91, 0.80, 0.033 +20020405, -2.15, 0.20, 1.82, 0.038 +20020412, -0.51, 3.54, 1.50, 0.038 +20020419, 1.26, -0.34, 0.42, 0.038 +20020426, -4.13, 1.20, 0.66, 0.038 +20020503, -0.13, 1.65, 1.27, 0.036 +20020510, -1.79, -2.03, 0.99, 0.036 +20020517, 4.65, -0.54, -2.80, 0.036 +20020524, -2.20, -1.45, 1.74, 0.036 +20020531, -1.47, 0.57, -0.04, 0.036 +20020607, -3.51, -0.36, 1.18, 0.032 +20020614, -2.11, 0.75, -1.41, 0.032 +20020621, -1.77, 1.96, 1.40, 0.032 +20020628, 0.01, 1.90, -0.73, 0.032 +20020705, -0.75, -3.26, -0.50, 0.039 +20020712, -6.47, 1.10, 0.13, 0.039 +20020719, -7.25, 1.32, -0.59, 0.039 +20020726, 0.11, -0.96, -2.64, 0.039 +20020802, 1.22, -2.97, 0.25, 0.035 +20020809, 4.80, -1.99, -0.83, 0.035 +20020816, 2.33, -0.87, 0.01, 0.035 +20020823, 1.22, -0.24, 0.82, 0.035 +20020830, -2.58, -0.64, 2.03, 0.035 +20020906, -2.04, 1.67, 0.74, 0.036 +20020913, -0.47, 0.37, -0.08, 0.036 +20020920, -5.05, -0.66, 1.05, 0.036 +20020927, -1.92, 0.01, 0.05, 0.036 +20021004, -3.48, 0.97, -0.86, 0.034 +20021011, 3.80, -4.08, -3.33, 0.034 +20021018, 5.80, -0.03, -1.95, 0.034 +20021025, 1.51, 0.04, 1.21, 0.034 +20021101, 0.63, 2.57, -1.24, 0.029 +20021108, -0.79, 0.10, 0.11, 0.029 +20021115, 1.77, 0.02, -1.05, 0.029 +20021122, 2.36, 0.88, -0.54, 0.029 +20021129, 0.72, 0.88, 1.06, 0.029 +20021206, -2.51, 0.59, 0.24, 0.028 +20021213, -2.39, 0.01, 1.17, 0.028 +20021220, 0.59, -1.15, 0.20, 0.028 +20021227, -2.00, 1.36, 0.09, 0.028 +20030103, 3.50, -2.19, 0.39, 0.024 +20030110, 2.06, -0.28, -0.43, 0.024 +20030117, -2.63, 0.72, 1.46, 0.024 +20030124, -4.23, 1.58, -0.88, 0.024 +20030131, -0.66, 0.55, -0.84, 0.024 +20030207, -3.12, 0.17, -0.31, 0.022 +20030214, 0.35, -0.28, -1.03, 0.022 +20030221, 1.73, 0.01, -0.33, 0.022 +20030228, -0.78, -0.22, 0.22, 0.022 +20030307, -1.42, -0.29, -0.27, 0.025 +20030314, 0.58, -0.01, -1.48, 0.025 +20030321, 7.21, -1.60, -0.85, 0.025 +20030328, -3.29, 1.92, 0.09, 0.025 +20030404, 1.68, -0.19, 0.24, 0.024 +20030411, -1.14, 0.34, 1.14, 0.024 +20030417, 2.92, 0.21, -0.26, 0.024 +20030425, 0.70, 0.46, 0.31, 0.024 +20030502, 3.70, 1.46, -0.85, 0.022 +20030509, 0.53, 1.23, 0.17, 0.022 +20030516, 1.22, -1.09, 1.11, 0.022 +20030523, -0.81, 0.79, 0.56, 0.022 +20030530, 3.48, 2.51, -1.31, 0.022 +20030606, 2.57, 0.62, -0.91, 0.025 +20030613, 0.07, -0.42, 1.11, 0.025 +20030620, 0.65, 0.00, 0.03, 0.025 +20030627, -1.65, 1.51, -0.02, 0.025 +20030703, 1.11, 1.03, 0.05, 0.017 +20030711, 1.65, 2.27, 0.13, 0.017 +20030718, -0.70, -0.84, -0.45, 0.017 +20030725, 0.56, 0.64, -0.88, 0.017 +20030801, -1.52, 1.55, 0.11, 0.017 +20030808, -0.70, -2.20, -0.11, 0.017 +20030815, 1.74, 2.22, 0.40, 0.017 +20030822, 0.71, 2.15, 1.29, 0.017 +20030829, 1.66, 0.82, 0.48, 0.017 +20030905, 1.42, 1.17, 0.21, 0.021 +20030912, -0.26, 1.07, -0.75, 0.021 +20030919, 1.80, 0.44, 0.44, 0.021 +20030926, -4.13, -2.27, -0.01, 0.021 +20031003, 3.55, 1.66, 0.34, 0.018 +20031010, 0.99, 0.29, 1.42, 0.018 +20031017, 0.12, 0.58, 0.30, 0.018 +20031024, -1.09, -1.21, -0.83, 0.018 +20031031, 2.45, 1.77, 0.64, 0.018 +20031107, 0.68, 2.09, 1.10, 0.018 +20031114, -0.44, -1.15, -0.68, 0.018 +20031121, -1.40, -0.13, 0.47, 0.018 +20031128, 2.54, 1.15, 0.79, 0.018 +20031205, -0.03, -1.12, 0.15, 0.020 +20031212, 1.04, -0.06, 0.75, 0.020 +20031219, 1.12, -1.59, 0.73, 0.020 +20031226, 0.73, 0.66, 0.54, 0.020 +20040102, 1.17, 0.03, 0.57, 0.017 +20040109, 1.46, 1.42, 0.97, 0.017 +20040116, 1.73, 1.16, 0.87, 0.017 +20040123, 0.32, 0.38, 0.83, 0.017 +20040130, -1.19, -1.15, -1.22, 0.017 +20040206, 0.91, -0.63, -0.34, 0.016 +20040213, 0.47, -0.25, 0.26, 0.016 +20040220, -0.27, -0.78, 0.22, 0.016 +20040227, 0.29, 0.31, 0.48, 0.016 +20040305, 1.25, 0.83, 0.29, 0.022 +20040312, -3.07, 0.28, -0.44, 0.022 +20040319, -1.12, -1.20, 0.47, 0.022 +20040326, -0.13, 0.64, -0.21, 0.022 +20040402, 3.40, 2.31, 0.30, 0.020 +20040408, -0.15, -0.04, -0.17, 0.020 +20040416, -0.80, -0.84, -1.30, 0.020 +20040423, 0.75, 0.49, -0.18, 0.020 +20040430, -3.15, -2.54, -0.95, 0.020 +20040507, -0.98, -0.72, -1.26, 0.015 +20040514, -0.49, -0.81, -0.37, 0.015 +20040521, -0.11, 0.28, 0.59, 0.015 +20040528, 2.79, 1.13, 0.72, 0.015 +20040604, 0.11, -0.13, -0.17, 0.021 +20040610, 0.94, -0.78, 0.70, 0.021 +20040618, -0.15, 0.41, 0.09, 0.021 +20040625, 0.39, 2.11, 0.69, 0.021 +20040702, -0.82, 0.16, 1.28, 0.024 +20040709, -1.43, -2.00, 1.33, 0.024 +20040716, -1.09, -0.93, 1.78, 0.024 +20040723, -1.66, -1.51, 0.82, 0.024 +20040730, 1.43, 0.74, -0.70, 0.024 +20040806, -3.77, -2.34, 2.30, 0.028 +20040813, 0.03, -0.60, 0.07, 0.028 +20040820, 3.50, 1.98, -1.39, 0.028 +20040827, 0.83, -0.09, -0.49, 0.028 +20040903, 0.55, 0.11, 0.41, 0.029 +20040910, 1.11, 1.35, -1.00, 0.029 +20040917, 0.53, 0.05, 0.00, 0.029 +20040924, -1.45, 0.26, 0.81, 0.029 +20041001, 1.96, 1.40, -0.15, 0.028 +20041008, -0.90, -0.82, 0.96, 0.028 +20041015, -1.22, 0.15, -0.79, 0.028 +20041022, -0.93, 0.88, -0.92, 0.028 +20041029, 3.06, -0.47, 0.25, 0.028 +20041105, 3.20, 0.30, -0.07, 0.039 +20041112, 1.66, 0.97, 0.04, 0.039 +20041119, -1.03, 0.14, 0.66, 0.039 +20041126, 1.25, 1.27, 1.19, 0.039 +20041203, 0.86, 1.02, -1.28, 0.041 +20041210, -0.42, -1.17, 0.20, 0.041 +20041217, 0.80, 0.89, 0.99, 0.041 +20041223, 1.26, -0.13, 0.00, 0.041 +20041231, 0.29, 0.49, -0.09, 0.041 +20050107, -2.64, -3.17, 0.49, 0.041 +20050114, 0.00, 0.53, 0.61, 0.041 +20050121, -1.33, 0.23, 0.48, 0.041 +20050128, 0.25, 0.23, 0.21, 0.041 +20050204, 2.90, 0.90, 0.44, 0.041 +20050211, 0.08, -0.69, 0.28, 0.041 +20050218, -0.33, -0.34, 0.69, 0.041 +20050225, 0.84, 0.18, 0.24, 0.041 +20050304, 0.84, 0.25, 1.02, 0.053 +20050311, -1.77, -1.01, 0.17, 0.053 +20050318, -0.86, -0.05, 0.99, 0.053 +20050324, -1.41, 0.58, -0.88, 0.053 +20050401, -0.02, -1.00, 0.89, 0.051 +20050408, 0.59, -0.65, -0.19, 0.051 +20050415, -3.41, -1.37, -0.85, 0.051 +20050422, 0.70, 0.37, 0.22, 0.051 +20050429, 0.16, -2.40, -0.03, 0.051 +20050506, 1.53, 1.35, -0.09, 0.060 +20050513, -1.55, -0.49, -1.57, 0.060 +20050520, 3.20, 1.09, 0.03, 0.060 +20050527, 0.95, 0.43, 0.53, 0.060 +20050603, -0.04, 0.57, 0.56, 0.057 +20050610, 0.20, 0.53, 1.05, 0.057 +20050617, 1.64, 0.89, 0.67, 0.057 +20050624, -1.99, -0.43, 0.23, 0.057 +20050701, 0.58, 1.53, 0.47, 0.059 +20050708, 1.63, 1.31, -0.93, 0.059 +20050715, 1.18, -0.61, -0.63, 0.059 +20050722, 0.56, 1.84, 0.46, 0.059 +20050729, 0.16, 0.14, 0.26, 0.059 +20050805, -0.82, -1.51, 0.27, 0.075 +20050812, 0.23, -0.63, 0.37, 0.075 +20050819, -0.96, -0.34, 0.19, 0.075 +20050826, -1.13, 0.51, 0.35, 0.075 +20050902, 1.20, 0.76, 0.27, 0.071 +20050909, 1.84, 0.15, -0.53, 0.071 +20050916, -0.50, -0.44, 0.39, 0.071 +20050923, -1.90, -0.30, 0.54, 0.071 +20050930, 1.29, 0.43, 0.14, 0.071 +20051007, -2.72, -0.35, -0.06, 0.068 +20051014, -1.02, -0.65, -0.64, 0.068 +20051021, -0.43, 0.50, -0.36, 0.068 +20051028, 1.21, -1.46, 1.24, 0.068 +20051104, 2.28, 1.37, -0.08, 0.078 +20051111, 1.11, 0.04, -0.84, 0.078 +20051118, 1.00, -0.43, -0.36, 0.078 +20051125, 1.56, 0.01, -0.24, 0.078 +20051202, -0.12, 1.23, 0.33, 0.079 +20051209, -0.44, 0.23, 0.31, 0.079 +20051216, 0.36, -1.22, -0.60, 0.079 +20051223, 0.10, 0.23, -0.09, 0.079 +20051230, -1.59, -0.28, 0.76, 0.079 +20060106, 2.92, 0.54, -0.23, 0.087 +20060113, 0.29, 1.06, -0.14, 0.087 +20060120, -1.94, 1.33, 0.93, 0.087 +20060127, 1.87, 1.84, 0.34, 0.087 +20060203, -1.35, 0.53, 0.17, 0.084 +20060210, -0.10, -0.98, -0.14, 0.084 +20060217, 1.54, 0.17, 0.14, 0.084 +20060224, 0.23, 0.42, 0.06, 0.084 +20060303, -0.13, 0.53, -0.24, 0.092 +20060310, -0.84, -0.92, 0.29, 0.092 +20060317, 2.02, 0.37, 0.19, 0.092 +20060324, -0.12, 1.32, -0.11, 0.092 +20060331, -0.23, 2.08, 0.09, 0.092 +20060407, -0.13, -1.11, 0.92, 0.089 +20060413, -0.56, -0.11, -0.10, 0.089 +20060421, 1.67, 0.80, 0.82, 0.089 +20060428, -0.24, -0.88, 0.93, 0.089 +20060505, 1.21, 0.92, 0.86, 0.108 +20060512, -2.86, -2.34, 0.98, 0.108 +20060519, -2.06, -0.91, 0.34, 0.108 +20060526, 0.85, -0.25, 0.02, 0.108 +20060602, 0.70, 0.32, 0.54, 0.099 +20060609, -3.20, -1.73, -0.08, 0.099 +20060616, -0.32, -1.16, -0.12, 0.099 +20060623, -0.47, -0.02, 0.41, 0.099 +20060630, 2.23, 1.98, 0.56, 0.099 +20060707, -0.76, -1.53, 0.89, 0.099 +20060714, -2.82, -1.49, 0.88, 0.099 +20060721, -0.10, -1.90, 1.04, 0.099 +20060728, 3.07, 0.65, 0.22, 0.099 +20060804, 0.07, 0.01, -0.30, 0.105 +20060811, -1.30, -1.70, 0.00, 0.105 +20060818, 2.97, 1.87, -1.59, 0.105 +20060825, -0.88, -0.98, 0.35, 0.105 +20060901, 1.55, 1.83, -0.34, 0.102 +20060908, -1.11, -0.74, 0.57, 0.102 +20060915, 1.65, 1.19, -0.69, 0.102 +20060922, -0.66, -0.98, 0.48, 0.102 +20060929, 1.47, -0.51, -0.31, 0.102 +20061006, 1.09, 0.68, -0.33, 0.101 +20061013, 1.40, 1.49, 0.09, 0.101 +20061020, 0.05, -0.20, 0.08, 0.101 +20061027, 0.62, -0.40, 0.28, 0.101 +20061103, -1.05, -0.61, 0.08, 0.106 +20061110, 1.36, 0.95, 0.24, 0.106 +20061117, 1.53, 1.00, -0.63, 0.106 +20061124, 0.01, 0.41, -0.19, 0.106 +20061201, -0.50, -1.13, 0.55, 0.101 +20061208, 1.02, 0.37, 0.41, 0.101 +20061215, 0.95, -1.30, 1.57, 0.101 +20061222, -1.27, -0.21, 0.72, 0.101 +20061229, 0.47, 0.41, 0.29, 0.101 +20070105, -0.66, -0.62, -0.70, 0.111 +20070112, 1.73, 0.90, -0.87, 0.111 +20070119, -0.31, -1.12, 0.62, 0.111 +20070126, -0.57, 0.81, 0.36, 0.111 +20070202, 1.94, 0.60, 0.51, 0.096 +20070209, -0.65, 0.36, 0.25, 0.096 +20070216, 1.22, -0.05, -0.05, 0.096 +20070223, -0.05, 1.46, -0.78, 0.096 +20070302, -4.62, -1.49, 0.84, 0.106 +20070309, 1.00, 0.08, -0.05, 0.106 +20070316, -1.18, 0.48, -0.37, 0.106 +20070323, 3.48, 0.04, -0.22, 0.106 +20070330, -1.08, 0.05, -0.03, 0.106 +20070405, 1.55, -0.03, -0.57, 0.109 +20070413, 0.58, 0.25, -0.05, 0.109 +20070420, 1.82, -1.05, 0.50, 0.109 +20070427, 0.41, -0.30, -1.01, 0.109 +20070504, 0.69, -0.59, 0.37, 0.101 +20070511, -0.09, -0.68, 0.53, 0.101 +20070518, 0.82, -1.58, -0.04, 0.101 +20070525, -0.33, 1.21, -0.57, 0.101 +20070601, 1.56, 1.09, -0.36, 0.099 +20070608, -1.99, -0.08, -0.08, 0.099 +20070615, 1.58, -0.03, -0.32, 0.099 +20070622, -1.98, 0.56, -0.14, 0.099 +20070629, 0.01, -0.04, -0.54, 0.099 +20070706, 1.88, 0.01, -0.68, 0.099 +20070713, 1.25, -0.87, -0.77, 0.099 +20070720, -1.34, -0.44, -1.30, 0.099 +20070727, -5.18, -1.35, -0.62, 0.099 +20070803, -1.90, -0.88, -1.41, 0.104 +20070810, 1.40, 2.05, -1.08, 0.104 +20070817, -0.74, -0.39, 1.59, 0.104 +20070824, 2.33, -0.74, -0.31, 0.104 +20070831, -0.44, -0.03, -1.12, 0.104 +20070907, -1.34, -0.47, -0.28, 0.081 +20070914, 1.84, -1.25, -0.52, 0.081 +20070921, 2.65, 0.36, 0.08, 0.081 +20070928, 0.07, -0.88, -1.09, 0.081 +20071005, 2.28, 1.88, 0.05, 0.080 +20071012, 0.29, -0.94, -0.55, 0.080 +20071019, -3.86, -0.92, -1.07, 0.080 +20071026, 2.17, 0.46, -0.35, 0.080 +20071102, -1.64, -0.82, -1.87, 0.085 +20071109, -3.68, 0.47, 1.25, 0.085 +20071116, 0.19, -0.87, -0.54, 0.085 +20071123, -1.49, -0.24, -0.20, 0.085 +20071130, 2.79, -1.46, -0.51, 0.085 +20071207, 1.73, 0.21, 0.12, 0.068 +20071214, -2.63, -1.16, -0.60, 0.068 +20071221, 1.23, 2.46, -0.51, 0.068 +20071228, -0.49, -1.24, 0.07, 0.068 +20080104, -4.76, -1.53, 0.08, 0.054 +20080111, -1.12, -1.59, -0.55, 0.054 +20080118, -5.18, 1.36, -0.10, 0.054 +20080125, 0.64, 0.89, 2.56, 0.054 +20080201, 5.05, 0.74, 2.48, 0.033 +20080208, -4.30, 0.55, 0.07, 0.033 +20080215, 1.26, -1.25, -0.15, 0.033 +20080222, 0.08, -0.73, 0.05, 0.033 +20080229, -1.53, 0.52, -1.01, 0.033 +20080307, -2.96, -0.58, -0.39, 0.043 +20080314, -0.45, 0.91, -0.55, 0.043 +20080320, 2.70, -0.95, 1.25, 0.043 +20080328, -0.71, 1.51, -0.98, 0.043 +20080404, 4.18, -0.21, -0.03, 0.044 +20080411, -2.65, -0.85, 0.22, 0.044 +20080418, 3.96, 0.20, -0.22, 0.044 +20080425, 0.45, -0.72, -0.88, 0.044 +20080502, 1.16, -0.71, 0.86, 0.045 +20080509, -1.51, 1.11, -0.43, 0.045 +20080516, 2.71, 0.42, -0.48, 0.045 +20080523, -3.22, 1.21, -0.16, 0.045 +20080530, 2.10, 1.10, -0.55, 0.045 +20080606, -2.41, 1.58, -0.57, 0.043 +20080613, -0.17, -0.40, -0.99, 0.043 +20080620, -2.80, 2.02, -0.66, 0.043 +20080627, -3.26, -0.63, -0.71, 0.043 +20080703, -1.95, -3.10, -0.95, 0.038 +20080711, -1.31, 2.53, -2.38, 0.038 +20080718, 1.64, 0.04, 6.25, 0.038 +20080725, -0.03, 2.75, 0.26, 0.038 +20080801, 0.39, -0.34, 2.80, 0.032 +20080808, 2.55, 0.96, 0.57, 0.032 +20080815, 0.63, 2.90, -0.43, 0.032 +20080822, -0.68, -1.42, -1.73, 0.032 +20080829, -0.49, 0.30, 2.24, 0.032 +20080905, -3.16, 0.17, 4.68, 0.038 +20080912, 0.48, -0.70, 0.61, 0.038 +20080919, 0.88, 1.74, 5.37, 0.038 +20080926, -4.02, -2.49, -2.47, 0.038 +20081003, -9.60, -1.77, 0.75, 0.020 +20081010, -18.00, 3.60, -4.22, 0.020 +20081017, 4.61, -3.69, 0.93, 0.020 +20081024, -7.24, -3.22, -1.24, 0.020 +20081031, 10.78, 2.77, 0.43, 0.020 +20081107, -4.01, -1.67, -1.91, 0.007 +20081114, -6.45, -2.52, -2.96, 0.007 +20081121, -8.76, 1.17, -8.73, 0.007 +20081128, 12.61, -0.58, 9.95, 0.007 +20081205, -2.14, -0.43, 2.72, 0.000 +20081212, 0.66, 1.22, -3.83, 0.000 +20081219, 1.34, 1.94, 0.08, 0.000 +20081226, -1.63, 0.17, -0.91, 0.000 +20090102, 6.84, -0.69, 1.32, 0.000 +20090109, -4.11, 1.26, -2.18, 0.000 +20090116, -4.25, 2.69, -5.77, 0.000 +20090123, -2.53, -2.31, -2.60, 0.000 +20090130, -0.58, -0.24, -1.37, 0.000 +20090206, 5.40, 1.00, -1.54, 0.003 +20090213, -4.42, 0.77, -3.34, 0.003 +20090220, -6.87, 0.10, -5.60, 0.003 +20090227, -4.20, -1.57, 2.67, 0.003 +20090306, -7.03, -0.54, -6.90, 0.004 +20090313, 10.69, -1.48, 8.86, 0.004 +20090320, 1.76, 0.45, 2.26, 0.004 +20090327, 6.42, -0.59, 3.95, 0.004 +20090403, 3.49, 2.78, 0.30, 0.003 +20090409, 1.75, -0.03, 3.66, 0.003 +20090417, 1.56, 0.93, 1.95, 0.003 +20090424, -0.44, 1.31, -2.15, 0.003 +20090501, 1.65, 0.34, -1.34, 0.001 +20090508, 5.65, -2.94, 7.57, 0.001 +20090515, -5.09, -0.06, -5.44, 0.001 +20090522, 0.72, 0.06, -0.71, 0.001 +20090529, 3.71, 0.96, -0.53, 0.001 +20090605, 2.60, 3.62, -1.14, 0.002 +20090612, 0.60, -1.34, 0.10, 0.002 +20090619, -2.70, 0.18, -1.02, 0.002 +20090626, -0.06, 1.10, -0.61, 0.002 +20090702, -2.30, -0.03, -0.74, 0.003 +20090710, -2.15, -1.12, -1.40, 0.003 +20090717, 7.04, 0.43, 3.88, 0.003 +20090724, 4.38, 1.25, 1.24, 0.003 +20090731, 0.92, 0.55, 2.44, 0.003 +20090807, 2.47, -0.61, 5.58, 0.003 +20090814, -0.63, -0.70, 0.45, 0.003 +20090821, 2.16, 1.14, 0.64, 0.003 +20090828, 0.19, -0.17, 1.56, 0.003 +20090904, -1.08, 0.00, -1.97, 0.002 +20090911, 2.80, 1.51, 1.70, 0.002 +20090918, 2.59, 1.16, 1.97, 0.002 +20090925, -2.30, -0.55, -1.85, 0.002 +20091002, -1.89, -1.16, -0.77, 0.001 +20091009, 4.72, 1.16, 2.83, 0.001 +20091016, 1.37, -0.57, -0.47, 0.001 +20091023, -0.87, -1.52, -1.37, 0.001 +20091030, -4.48, -2.37, -3.49, 0.001 +20091106, 3.37, 0.07, 0.10, 0.000 +20091113, 2.12, -1.49, 0.81, 0.000 +20091120, -0.19, 0.05, -0.56, 0.000 +20091127, -0.09, -0.71, -1.16, 0.000 +20091204, 1.58, 2.64, 0.55, 0.001 +20091211, 0.12, -0.37, 0.03, 0.001 +20091218, -0.01, 1.87, 0.40, 0.001 +20091224, 2.35, 1.58, 0.08, 0.001 +20091231, -1.01, -0.24, -0.15, 0.001 +20100108, 2.89, 0.26, 3.89, 0.001 +20100115, -0.91, 0.11, -1.51, 0.001 +20100122, -3.57, 0.84, -1.85, 0.001 +20100129, -1.70, -0.75, 0.08, 0.001 +20100205, -0.81, -0.72, -0.19, 0.000 +20100212, 1.41, 2.32, 0.77, 0.000 +20100219, 3.18, 0.02, 1.67, 0.000 +20100226, -0.37, -0.37, 0.74, 0.000 +20100305, 3.46, 2.53, 1.24, 0.002 +20100312, 1.18, 0.36, 0.45, 0.002 +20100319, 0.61, -1.18, -0.72, 0.002 +20100326, 0.66, 0.03, 1.17, 0.002 +20100401, 1.02, -0.33, 0.68, 0.003 +20100409, 1.63, 1.17, 2.22, 0.003 +20100416, 0.10, 2.72, -0.55, 0.003 +20100423, 2.19, 1.75, 1.85, 0.003 +20100430, -2.62, -0.69, -1.48, 0.003 +20100507, -6.78, -2.16, -2.20, 0.003 +20100514, 2.80, 3.74, 0.07, 0.003 +20100521, -4.49, -2.37, -1.07, 0.003 +20100528, 0.62, 1.37, 0.97, 0.003 +20100604, -2.43, -1.42, -2.19, 0.003 +20100611, 2.46, -0.49, -0.14, 0.003 +20100618, 2.41, 0.38, 0.40, 0.003 +20100625, -3.52, 0.19, -0.39, 0.003 +20100702, -5.26, -1.52, -2.06, 0.004 +20100709, 5.39, -0.82, 1.16, 0.004 +20100716, -1.36, -1.22, -1.17, 0.004 +20100723, 3.91, 2.84, -0.14, 0.004 +20100730, -0.13, -0.01, 0.94, 0.004 +20100806, 1.68, -1.60, -0.67, 0.003 +20100813, -4.01, -2.48, -0.60, 0.003 +20100820, -0.42, 1.02, -0.98, 0.003 +20100827, -0.51, 1.09, -0.24, 0.003 +20100903, 3.85, 0.11, 0.77, 0.003 +20100910, 0.31, -1.33, -0.19, 0.003 +20100917, 1.69, 1.07, -1.83, 0.003 +20100924, 2.16, 1.18, -0.87, 0.003 +20101001, 0.11, 1.41, -0.06, 0.003 +20101008, 1.69, 0.57, 0.15, 0.003 +20101015, 1.01, 1.24, -2.12, 0.003 +20101022, 0.46, -0.62, 0.28, 0.003 +20101029, 0.24, -0.03, -1.07, 0.003 +20101105, 3.66, 0.98, 1.52, 0.003 +20101112, -2.01, 0.05, -0.61, 0.003 +20101119, 0.26, 0.77, -0.63, 0.003 +20101126, -0.50, 2.01, -1.55, 0.003 +20101203, 3.00, -0.25, 1.09, 0.003 +20101210, 1.48, 1.02, 1.46, 0.003 +20101217, 0.37, 0.10, -0.86, 0.003 +20101223, 1.05, 0.07, 1.55, 0.003 +20101231, 0.04, -0.60, 0.66, 0.003 +20110107, 1.14, -0.61, 0.43, 0.002 +20110114, 1.76, 0.81, 0.38, 0.002 +20110121, -1.25, -3.16, 0.33, 0.002 +20110128, -0.38, 0.68, -0.18, 0.002 +20110204, 2.77, 0.44, -0.81, 0.003 +20110211, 1.67, 1.05, 0.70, 0.003 +20110218, 1.08, 0.41, 0.58, 0.003 +20110225, -1.73, 0.00, -0.07, 0.003 +20110304, 0.19, 0.30, -0.61, 0.002 +20110311, -1.43, -1.56, 0.96, 0.002 +20110318, -1.81, 0.78, 0.10, 0.002 +20110325, 2.94, 1.38, -1.16, 0.002 +20110401, 1.59, 1.21, -0.38, 0.001 +20110408, -0.30, -0.28, -0.15, 0.001 +20110415, -0.69, -0.17, -1.19, 0.001 +20110421, 1.36, 0.18, -1.20, 0.001 +20110429, 2.01, 0.12, -0.32, 0.001 +20110506, -1.88, -1.89, -0.35, 0.000 +20110513, -0.06, 0.58, -1.46, 0.000 +20110520, -0.37, -0.71, 0.01, 0.000 +20110527, 0.03, 1.01, -0.26, 0.000 +20110603, -2.49, -0.92, -0.05, 0.001 +20110610, -2.38, -0.98, 0.06, 0.001 +20110617, 0.01, 0.01, 0.88, 0.001 +20110624, 0.22, 2.36, -1.12, 0.001 +20110701, 5.58, -0.42, -0.37, -0.001 +20110708, 0.52, 1.13, -1.74, -0.001 +20110715, -2.15, -0.28, -0.26, -0.001 +20110722, 2.06, -0.79, -0.06, -0.001 +20110729, -4.11, -1.27, 0.63, -0.001 +20110805, -7.74, -2.25, -0.03, 0.002 +20110812, -1.59, -1.11, -3.44, 0.002 +20110819, -5.05, -1.62, 1.80, 0.002 +20110826, 5.01, 1.13, -1.25, 0.002 +20110902, -0.21, -0.87, -1.16, 0.000 +20110909, -1.56, 0.41, -0.24, 0.000 +20110916, 5.47, 0.27, -0.31, 0.000 +20110923, -6.77, -1.58, -1.62, 0.000 +20110930, -0.62, -0.90, 2.40, 0.000 +20111007, 2.27, 0.23, -1.61, 0.000 +20111014, 6.28, 2.19, -0.30, 0.000 +20111021, 0.95, -1.75, 2.22, 0.000 +20111028, 4.09, 2.42, 0.39, 0.000 +20111104, -2.28, 0.83, -1.66, 0.000 +20111111, 0.61, -1.04, 0.53, 0.000 +20111118, -3.69, 0.45, -0.10, 0.000 +20111125, -4.86, -2.39, -0.39, 0.000 +20111202, 7.68, 2.22, 0.57, 0.000 +20111209, 0.86, 0.44, 0.11, 0.000 +20111216, -2.88, -0.41, 0.63, 0.000 +20111223, 3.66, -0.53, 1.49, 0.000 +20111230, -0.62, -0.19, -0.44, 0.000 +20120106, 1.70, -0.58, 0.84, 0.000 +20120113, 1.18, 0.87, 0.17, 0.000 +20120120, 2.13, 0.59, -0.19, 0.000 +20120127, 0.33, 1.81, -1.70, 0.000 +20120203, 2.50, 1.65, 0.33, 0.001 +20120210, -0.23, -1.62, -0.36, 0.001 +20120217, 1.60, 0.34, 0.38, 0.001 +20120224, 0.26, -0.58, -1.00, 0.001 +20120302, 0.05, -3.37, 0.44, 0.001 +20120309, 0.32, 1.67, 0.05, 0.001 +20120316, 2.29, -0.77, 1.53, 0.001 +20120323, -0.44, 0.61, -0.30, 0.001 +20120330, 0.74, -0.63, -0.39, 0.001 +20120405, -0.71, -0.64, -0.68, 0.001 +20120413, -2.05, -0.19, -0.16, 0.001 +20120420, 0.56, 0.18, 0.43, 0.001 +20120427, 1.87, 0.66, -0.05, 0.001 +20120504, -2.68, -1.58, 0.10, 0.002 +20120511, -0.99, 0.82, 0.18, 0.002 +20120518, -4.47, -0.48, -0.13, 0.002 +20120525, 1.95, 0.49, -1.04, 0.002 +20120601, -3.15, -0.53, 0.50, 0.001 +20120608, 3.73, 0.15, -0.14, 0.001 +20120615, 1.07, -1.06, 0.68, 0.001 +20120622, -0.35, 1.16, -0.20, 0.001 +20120629, 2.10, 0.89, 0.02, 0.001 +20120706, -0.26, 1.56, -0.48, 0.001 +20120713, -0.05, -1.18, 0.58, 0.001 +20120720, 0.26, -1.33, -1.69, 0.001 +20120727, 1.45, -1.26, 0.88, 0.001 +20120803, 0.17, -1.23, 0.94, 0.001 +20120810, 1.37, 0.70, 0.82, 0.001 +20120817, 1.13, 1.20, -0.18, 0.001 +20120824, -0.55, -1.07, 0.24, 0.001 +20120831, -0.18, 0.43, -0.08, 0.001 +20120907, 2.55, 0.82, 1.29, 0.002 +20120914, 2.09, 0.61, 1.86, 0.002 +20120921, -0.48, -0.27, -1.17, 0.002 +20120928, -1.41, -0.66, -0.40, 0.002 +20121005, 1.46, -1.13, 1.50, 0.002 +20121012, -2.21, -0.13, 0.59, 0.002 +20121019, 0.26, -1.24, 1.79, 0.002 +20121026, -1.37, 0.82, -0.38, 0.002 +20121102, 0.27, 0.11, 0.84, 0.002 +20121109, -2.33, 0.09, -0.89, 0.002 +20121116, -1.46, -1.07, -0.28, 0.002 +20121123, 3.72, 0.42, 0.15, 0.002 +20121130, 0.83, 1.56, -0.42, 0.002 +20121207, 0.13, -0.62, 1.33, 0.003 +20121214, -0.14, 0.56, 0.83, 0.003 +20121221, 1.40, 1.06, 1.30, 0.003 +20121228, -1.88, 0.09, 0.16, 0.003 +20130104, 4.80, 0.85, 0.80, 0.000 +20130111, 0.44, -0.33, -0.79, 0.000 +20130118, 0.98, 0.48, -0.06, 0.000 +20130125, 1.27, 0.08, 0.10, 0.000 +20130201, 0.73, -0.21, 1.04, 0.001 +20130208, 0.45, 0.01, -0.04, 0.001 +20130215, 0.23, 0.65, 1.10, 0.001 +20130222, -0.36, -0.50, -0.58, 0.001 +20130301, 0.20, -0.55, -1.04, 0.001 +20130308, 2.47, 0.51, 0.69, 0.001 +20130315, 0.67, 0.29, 1.01, 0.001 +20130322, -0.21, 0.05, -0.78, 0.001 +20130328, 0.85, -0.19, -0.81, 0.001 +20130405, -1.39, -1.99, 0.10, 0.001 +20130412, 2.38, 0.04, -0.25, 0.001 +20130419, -2.24, -1.40, -0.61, 0.001 +20130426, 1.92, 0.53, 1.51, 0.001 +20130503, 2.05, 0.29, -0.11, 0.000 +20130510, 1.44, 0.68, 0.62, 0.000 +20130517, 2.14, -0.12, 0.63, 0.000 +20130524, -1.07, 0.16, 0.19, 0.000 +20130531, -0.76, 1.09, 1.05, 0.000 +20130607, 0.73, -0.40, -0.21, 0.000 +20130614, -0.93, 0.51, -0.58, 0.000 +20130621, -2.08, 0.59, 0.35, 0.000 +20130628, 1.11, 0.48, 0.26, 0.000 +20130705, 1.84, 1.41, 0.19, 0.000 +20130712, 3.02, 0.09, -0.55, 0.000 +20130719, 0.72, 0.41, 1.85, 0.000 +20130726, 0.12, -0.16, -0.24, 0.000 +20130802, 1.44, -0.13, -1.01, 0.000 +20130809, -0.98, -0.03, -0.43, 0.000 +20130816, -2.04, 0.10, 0.40, 0.000 +20130823, 0.61, 0.91, -1.18, 0.000 +20130830, -1.87, -0.51, -1.33, 0.000 +20130906, 1.49, 0.26, 0.31, 0.000 +20130913, 2.16, 0.27, -0.35, 0.000 +20130920, 1.36, 0.56, -0.62, 0.000 +20130927, -0.77, 1.20, -0.56, 0.000 +20131004, 0.17, 0.33, 0.14, 0.001 +20131011, 0.55, -0.26, 1.38, 0.001 +20131018, 2.51, 0.22, 0.02, 0.001 +20131025, 0.72, -0.17, -0.36, 0.001 +20131101, -0.12, -1.73, 0.18, 0.001 +20131108, 0.47, 0.09, 0.72, 0.001 +20131115, 1.71, -0.02, -0.94, 0.001 +20131122, 0.36, 0.19, 0.82, 0.001 +20131129, 0.35, 1.65, -0.56, 0.001 +20131206, -0.07, -0.85, -0.13, 0.001 +20131213, -1.46, -0.73, 0.49, 0.001 +20131220, 2.56, 1.06, -0.41, 0.001 +20131227, 1.35, 0.22, -0.02, 0.001 +20140103, -0.42, -0.06, -0.08, 0.001 +20140110, 0.67, 0.54, -1.43, 0.001 +20140117, -0.12, 0.64, -0.70, 0.001 +20140124, -2.60, 0.47, -0.09, 0.001 +20140131, -0.44, -0.85, -0.11, 0.001 +20140207, 0.56, -2.19, -0.03, 0.001 +20140214, 2.53, 0.54, -0.02, 0.001 +20140221, 0.14, 1.56, -0.84, 0.001 +20140228, 1.37, 0.44, 0.43, 0.001 +20140307, 1.17, 0.48, 1.62, 0.001 +20140314, -1.94, 0.20, -0.08, 0.001 +20140321, 1.28, -0.55, 2.08, 0.001 +20140328, -1.01, -2.93, 1.61, 0.001 +20140404, 0.33, -0.31, 1.10, 0.000 +20140411, -2.87, -0.79, -0.01, 0.000 +20140417, 2.68, -0.53, 0.17, 0.000 +20140425, -0.34, -1.10, 0.52, 0.000 +20140502, 0.99, -0.54, -0.62, 0.000 +20140509, -0.47, -1.95, 0.80, 0.000 +20140516, 0.00, -0.20, -1.21, 0.000 +20140523, 1.39, 0.81, -0.22, 0.000 +20140530, 1.18, -0.51, 0.25, 0.000 +20140606, 1.60, 1.04, 0.33, 0.001 +20140613, -0.52, 0.73, -0.66, 0.001 +20140620, 1.51, 0.77, -0.33, 0.001 +20140627, -0.06, 0.18, -0.24, 0.001 +20140703, 1.38, 0.50, -0.39, 0.000 +20140711, -1.35, -3.05, 0.60, 0.000 +20140718, 0.37, -1.44, 0.89, 0.000 +20140725, -0.01, -0.49, -0.82, 0.000 +20140801, -2.63, 0.26, -0.25, 0.000 +20140808, 0.51, 0.94, -0.56, 0.000 +20140815, 1.31, -0.47, -0.38, 0.000 +20140822, 1.79, 0.00, 0.38, 0.000 +20140829, 0.89, 0.12, 0.01, 0.000 +20140905, 0.18, -0.51, -0.04, 0.000 +20140912, -0.86, 0.54, -0.52, 0.000 +20140919, 0.90, -2.33, 0.41, 0.000 +20140926, -1.58, -0.77, -0.89, 0.000 +20141003, -0.79, -0.40, -0.70, 0.000 +20141010, -3.59, -1.42, 0.61, 0.000 +20141017, -0.51, 3.56, -0.89, 0.000 +20141024, 4.06, -0.76, -0.66, 0.000 +20141031, 2.87, 2.28, -0.14, 0.000 +20141107, 0.69, -0.74, 0.66, 0.000 +20141114, 0.54, -0.07, -1.27, 0.000 +20141121, 1.05, -1.41, -0.24, 0.000 +20141128, 0.26, 0.12, -2.02, 0.000 +20141205, 0.29, 0.13, 1.31, 0.000 +20141212, -3.44, 0.87, -0.87, 0.000 +20141219, 3.47, 0.16, 0.57, 0.000 +20141226, 1.03, 0.64, 0.55, 0.000 +20150102, -1.38, 0.10, 0.56, 0.000 +20150109, -0.78, -0.38, -2.30, 0.000 +20150116, -1.32, 0.42, -0.32, 0.000 +20150123, 1.64, -0.68, -0.41, 0.000 +20150130, -2.50, 0.60, -0.55, 0.000 +20150206, 3.32, 0.20, 1.52, 0.000 +20150213, 2.10, -0.47, -1.33, 0.000 +20150220, 0.80, 0.12, -1.42, 0.000 +20150227, -0.19, 0.64, -0.49, 0.000 +20150306, -1.36, 0.52, -0.52, 0.000 +20150313, -0.61, 1.65, 0.49, 0.000 +20150320, 2.59, 0.00, -1.03, 0.000 +20150327, -2.16, 0.40, 0.23, 0.000 +20150402, 0.45, 0.71, 1.08, 0.001 +20150410, 1.67, -0.70, -1.37, 0.001 +20150417, -1.02, 0.02, 0.74, 0.001 +20150424, 1.77, -0.26, -1.38, 0.001 +20150501, -0.77, -2.57, 2.42, 0.000 +20150508, 0.41, -0.01, 0.12, 0.000 +20150515, 0.41, 0.32, -0.47, 0.000 +20150522, 0.32, 0.41, -0.13, 0.000 +20150529, -0.79, 0.42, -0.17, 0.000 +20150605, -0.29, 1.85, -0.09, 0.000 +20150612, 0.11, 0.11, 0.60, 0.000 +20150619, 0.83, 0.67, -1.38, 0.000 +20150626, -0.35, 0.35, 0.62, 0.000 +20150702, -1.33, -1.57, -0.70, 0.000 +20150710, -0.02, 0.12, -1.31, 0.000 +20150717, 2.27, -1.47, -1.70, 0.000 +20150724, -2.33, -1.44, -0.40, 0.000 +20150731, 1.19, 0.01, -0.75, 0.000 +20150807, -1.36, -1.21, 0.88, 0.001 +20150814, 0.69, -0.34, 1.25, 0.001 +20150821, -5.69, 1.21, 0.00, 0.001 +20150828, 1.07, 0.00, -0.81, 0.001 +20150904, -3.08, 1.48, 0.14, 0.000 +20150911, 2.09, -0.47, -1.53, 0.000 +20150918, -0.15, 1.19, -1.76, 0.000 +20150925, -1.77, -2.69, 3.64, 0.000 +20151002, 0.73, -1.58, 0.62, 0.000 +20151009, 3.44, 1.53, 2.04, 0.000 +20151016, 0.62, -1.23, 0.08, 0.000 +20151023, 1.70, -1.53, 0.23, 0.000 +20151030, 0.17, -0.42, -1.45, 0.000 +20151106, 1.38, 2.64, 0.56, 0.001 +20151113, -3.72, -0.88, -0.01, 0.001 +20151120, 3.14, -0.53, -0.91, 0.001 +20151127, 0.38, 2.41, -0.92, 0.001 +20151204, -0.19, -1.53, 0.13, 0.003 +20151211, -3.93, -0.86, -1.68, 0.003 +20151218, -0.35, 0.14, -0.79, 0.003 +20151224, 2.83, 0.23, 0.99, 0.003 +20151231, -0.90, -0.78, -0.58, 0.003 +20160108, -6.22, -1.75, 0.53, 0.002 +20160115, -2.55, -1.34, -0.20, 0.002 +20160122, 1.38, 0.20, -1.59, 0.002 +20160129, 1.71, -0.63, 3.72, 0.002 +20160205, -3.36, -1.38, 1.19, 0.005 +20160212, -0.82, -0.51, -0.39, 0.005 +20160219, 3.09, 0.96, -1.63, 0.005 +20160226, 1.84, 1.26, -0.11, 0.005 +20160304, 3.08, 1.21, 2.43, 0.005 +20160311, 1.00, -0.50, 1.30, 0.005 +20160318, 1.41, -0.29, 0.21, 0.005 +20160324, -0.80, -0.87, -0.96, 0.005 +20160401, 2.06, 1.64, -2.00, 0.002 +20160408, -1.17, -0.12, -1.58, 0.002 +20160415, 1.94, 0.74, 2.09, 0.002 +20160422, 0.74, 0.62, 1.76, 0.002 +20160429, -1.19, -0.10, 1.71, 0.002 +20160506, -0.63, -1.22, -0.53, 0.003 +20160513, -0.52, -0.58, -0.77, 0.003 +20160520, 0.55, 0.18, 0.62, 0.003 +20160527, 2.43, 1.01, -0.87, 0.003 +20160603, 0.16, 1.31, -1.32, 0.005 +20160610, -0.25, 0.56, -0.08, 0.005 +20160617, -1.20, -0.30, -0.14, 0.005 +20160624, -1.60, 0.32, -0.20, 0.005 +20160701, 3.14, -0.62, -0.64, 0.005 +20160708, 1.38, 0.81, -1.39, 0.005 +20160715, 1.60, 0.58, 2.30, 0.005 +20160722, 0.60, -0.01, -1.08, 0.005 +20160729, 0.07, 0.76, -0.31, 0.005 +20160805, 0.56, 0.46, 0.67, 0.005 +20160812, 0.18, -0.32, -0.09, 0.005 +20160819, 0.15, 0.39, 1.50, 0.005 +20160826, -0.53, 0.64, 0.36, 0.005 +20160902, 0.70, 0.15, 0.65, 0.005 +20160909, -2.30, 0.10, 0.31, 0.005 +20160916, 0.56, 0.52, -2.65, 0.005 +20160923, 1.26, 1.13, -0.23, 0.005 +20160930, 0.21, -0.18, 1.22, 0.005 +20161007, -0.57, -0.52, 1.22, 0.004 +20161014, -1.12, -1.21, 0.66, 0.004 +20161021, 0.42, -0.30, 0.68, 0.004 +20161028, -0.77, -2.37, 1.45, 0.004 +20161104, -1.89, -0.55, 1.16, 0.004 +20161111, 4.67, 6.06, 2.51, 0.004 +20161118, 1.29, 0.99, 1.39, 0.004 +20161125, 1.64, 0.80, 0.64, 0.004 +20161202, -1.13, -2.11, 3.92, 0.006 +20161209, 3.35, 2.02, 1.84, 0.006 +20161216, -0.29, -1.37, -0.82, 0.006 +20161223, 0.32, 0.19, 0.71, 0.006 +20161230, -1.16, -0.10, 0.12, 0.006 +20170106, 1.69, -0.62, -1.20, 0.009 +20170113, 0.09, 0.45, -1.05, 0.009 +20170120, -0.31, -1.13, -0.18, 0.009 +20170127, 1.16, 0.21, 0.56, 0.009 +20170203, 0.15, 0.40, -0.64, 0.009 +20170210, 0.88, 0.10, -1.23, 0.009 +20170217, 1.52, -0.56, -0.39, 0.009 +20170224, 0.48, -1.07, -0.45, 0.009 +20170303, 0.65, -0.94, -0.09, 0.008 +20170310, -0.55, -1.13, -1.62, 0.008 +20170317, 0.48, 1.85, -0.28, 0.008 +20170324, -1.65, -0.88, -1.83, 0.008 +20170331, 1.05, 1.64, 0.83, 0.008 +20170407, -0.44, -1.35, 0.15, 0.014 +20170413, -1.20, -0.22, -1.04, 0.014 +20170421, 1.11, 1.82, -0.17, 0.014 +20170428, 1.64, 0.32, -0.96, 0.014 +20170505, 0.53, -0.76, -0.47, 0.016 +20170512, -0.32, -0.25, -1.25, 0.016 +20170519, -0.40, -0.79, -0.46, 0.016 +20170526, 1.46, -0.29, -0.86, 0.016 +20170602, 1.09, 1.05, -1.66, 0.015 +20170609, -0.24, 0.59, 3.35, 0.015 +20170616, -0.08, -1.07, -0.71, 0.015 +20170623, 0.31, 1.08, -3.85, 0.015 +20170630, -0.49, 0.05, 3.43, 0.015 +20170707, 0.08, -0.43, 0.32, 0.018 +20170714, 1.36, -0.09, -1.34, 0.018 +20170721, 0.55, 0.09, -0.48, 0.018 +20170728, -0.03, -0.58, 0.79, 0.018 +20170804, 0.09, -1.80, 0.86, 0.021 +20170811, -1.52, -0.97, -1.07, 0.021 +20170818, -0.67, -0.72, -0.35, 0.021 +20170825, 0.82, 0.56, 0.70, 0.021 +20170901, 1.61, 1.45, -1.44, 0.024 +20170908, -0.77, 0.27, -1.37, 0.024 +20170915, 1.70, 0.67, 1.83, 0.024 +20170922, 0.39, 0.86, 1.56, 0.024 +20170929, 0.91, 2.17, 0.53, 0.024 +20171006, 1.28, 0.14, -0.20, 0.021 +20171013, 0.03, -0.63, -0.26, 0.021 +20171020, 0.91, -0.78, 0.80, 0.021 +20171027, 0.25, -0.54, -0.14, 0.021 +20171103, 0.19, -1.21, -0.37, 0.021 +20171110, -0.41, -1.05, -0.94, 0.021 +20171117, 0.21, 1.09, 0.04, 0.021 +20171124, 1.04, 1.13, -0.87, 0.021 +20171201, 1.62, -0.98, 2.27, 0.022 +20171208, 0.30, -1.40, 0.13, 0.022 +20171215, 0.81, -0.24, -0.71, 0.022 +20171222, 0.54, 0.75, 0.46, 0.022 +20171229, -0.37, 0.00, -0.17, 0.022 +20180105, 2.54, -0.59, -0.53, 0.028 +20180112, 1.81, 0.41, 1.08, 0.028 +20180119, 0.84, -0.62, -0.51, 0.028 +20180126, 2.05, -1.43, -1.12, 0.028 +20180202, -3.81, -0.51, -0.09, 0.028 +20180209, -5.09, 0.99, 0.10, 0.028 +20180216, 4.51, 0.12, -0.61, 0.028 +20180223, 0.48, 0.15, -0.63, 0.028 +20180302, -1.74, 1.03, -0.83, 0.029 +20180309, 3.60, 0.39, -0.26, 0.029 +20180316, -1.21, 0.81, -0.06, 0.029 +20180323, -5.82, 1.60, -0.07, 0.029 +20180329, 1.80, -1.14, 0.90, 0.029 +20180406, -1.38, 0.56, 0.72, 0.036 +20180413, 2.05, 0.98, -1.00, 0.036 +20180420, 0.73, 0.11, 0.39, 0.036 +20180427, -0.29, -0.57, 0.49, 0.036 +20180504, -0.16, 1.09, -1.31, 0.035 +20180511, 2.43, 0.44, -0.31, 0.035 +20180518, -0.22, 2.49, 0.01, 0.035 +20180525, 0.22, -0.33, -0.41, 0.035 +20180601, 0.61, 1.32, -1.29, 0.034 +20180608, 1.68, 0.43, -0.15, 0.034 +20180615, 0.21, 0.93, -2.26, 0.034 +20180622, -0.85, 1.42, 0.12, 0.034 +20180629, -1.60, -1.34, 0.06, 0.034 +20180706, 1.65, 1.72, -1.02, 0.040 +20180713, 1.39, -1.63, -1.20, 0.040 +20180720, 0.14, 0.05, 0.47, 0.040 +20180727, 0.17, -2.76, 1.46, 0.040 +20180803, 0.65, -0.11, 0.25, 0.041 +20180810, 0.05, 0.91, -0.81, 0.041 +20180817, 0.46, -0.44, 0.12, 0.041 +20180824, 1.06, 1.33, -0.99, 0.041 +20180831, 0.96, -0.05, -1.88, 0.041 +20180907, -1.14, -0.83, 0.29, 0.038 +20180914, 1.20, -0.49, -0.71, 0.038 +20180921, 0.54, -1.16, 1.77, 0.038 +20180928, -0.52, 0.07, -2.65, 0.038 +20181005, -1.42, -3.17, 3.38, 0.047 +20181012, -4.26, -0.76, -0.04, 0.047 +20181019, -0.15, -0.97, 0.56, 0.047 +20181026, -4.06, 0.37, -1.15, 0.047 +20181102, 2.87, 1.54, 0.64, 0.044 +20181109, 1.75, -2.60, 1.21, 0.044 +20181116, -1.65, 0.20, 0.31, 0.044 +20181123, -3.74, 1.17, 0.84, 0.044 +20181130, 4.78, -1.83, -1.76, 0.044 +20181207, -4.83, -0.75, -0.46, 0.048 +20181214, -1.45, -1.35, -1.58, 0.048 +20181221, -7.32, -1.64, 2.11, 0.048 +20181228, 3.14, 1.11, -1.38, 0.048 +20190104, 2.14, 1.34, 1.27, 0.051 +20190111, 2.95, 2.09, -1.43, 0.051 +20190118, 2.80, -0.73, 0.78, 0.051 +20190125, -0.28, 0.10, -0.27, 0.051 +20190201, 1.57, -0.28, -0.94, 0.046 +20190208, 0.09, 0.29, -1.38, 0.046 +20190215, 2.73, 1.57, -0.04, 0.046 +20190222, 0.64, 0.94, -0.70, 0.046 +20190301, 0.50, -0.32, -1.40, 0.048 +20190308, -2.55, -1.99, -0.18, 0.048 +20190315, 2.83, -0.90, -0.58, 0.048 +20190322, -1.11, -1.57, -2.50, 0.048 +20190329, 1.27, 1.06, -0.29, 0.048 +20190405, 2.14, 0.50, 1.14, 0.052 +20190412, 0.55, -0.83, 1.11, 0.052 +20190418, -0.18, -1.02, 0.37, 0.052 +20190426, 1.24, 0.31, -1.59, 0.052 +20190503, 0.27, 0.76, 0.04, 0.051 +20190510, -2.22, -0.10, -0.01, 0.051 +20190517, -1.02, -1.53, -0.46, 0.051 +20190524, -1.30, -0.52, -0.12, 0.051 +20190531, -2.71, -0.44, -1.11, 0.051 +20190607, 4.27, -1.25, -0.79, 0.045 +20190614, 0.45, 0.00, -0.08, 0.045 +20190621, 2.21, 0.12, -1.82, 0.045 +20190628, -0.11, 1.41, 1.63, 0.045 +20190705, 1.56, -1.26, -0.37, 0.048 +20190712, 0.72, -1.36, -0.42, 0.048 +20190719, -1.22, -0.36, -0.64, 0.048 +20190726, 1.75, -0.20, 0.72, 0.048 +20190802, -3.45, 0.31, -0.98, 0.041 +20190809, -0.61, -0.67, -2.10, 0.041 +20190816, -1.17, 0.24, -1.28, 0.041 +20190823, -1.57, -0.77, -0.27, 0.041 +20190830, 2.70, -0.53, 0.34, 0.041 +20190906, 1.61, -1.16, 1.26, 0.044 +20190913, 1.33, 2.86, 5.05, 0.044 +20190920, -0.64, -0.55, -1.00, 0.044 +20190927, -1.36, -1.86, 2.00, 0.044 +20191004, -0.40, -0.46, -2.46, 0.038 +20191011, 0.69, -0.43, 0.22, 0.038 +20191018, 0.47, 0.76, 0.55, 0.038 +20191025, 1.38, 0.34, 0.70, 0.038 +20191101, 1.47, 0.38, -0.60, 0.031 +20191108, 1.01, -0.41, 2.31, 0.031 +20191115, 0.78, -0.68, -1.76, 0.031 +20191122, -0.19, -0.06, -1.56, 0.031 +20191129, 1.13, 1.53, -1.59, 0.031 +20191206, 0.10, 0.47, 0.85, 0.035 +20191213, 0.74, 0.16, 0.77, 0.035 +20191220, 1.71, 0.36, -0.02, 0.035 +20191227, 0.49, -0.49, -0.40, 0.035 +20200103, -0.12, -0.29, 0.33, 0.032 +20200110, 0.94, -0.92, -2.20, 0.032 +20200117, 2.00, 0.64, -1.34, 0.032 +20200124, -1.14, -1.23, -1.12, 0.032 +20200131, -2.05, -1.13, -1.53, 0.032 +20200207, 3.13, -0.37, -0.77, 0.030 +20200214, 1.73, -0.02, -0.93, 0.030 +20200221, -1.06, 0.74, -0.04, 0.030 +20200228, -11.50, 0.63, -2.40, 0.030 +20200306, 0.10, -1.66, -4.86, 0.031 +20200313, -9.71, -5.94, -3.56, 0.031 +20200320, -14.57, 1.63, -5.82, 0.031 +20200327, 10.32, -0.97, 1.01, 0.031 +20200403, -2.49, -2.20, -5.46, 0.001 +20200409, 12.35, 2.84, 7.88, 0.001 +20200417, 3.24, -1.67, -8.58, 0.001 +20200424, -0.85, 2.54, -2.01, 0.001 +20200501, 0.01, 2.31, 4.85, 0.002 +20200508, 4.24, 2.26, -3.52, 0.002 +20200515, -2.20, -1.25, -7.30, 0.002 +20200522, 3.59, 3.29, 4.01, 0.002 +20200529, 2.98, -1.12, 3.73, 0.002 +20200605, 4.97, 0.59, 9.93, 0.003 +20200612, -4.73, -1.27, -5.23, 0.003 +20200619, 2.29, 1.27, -3.21, 0.003 +20200626, -2.83, 0.84, -4.13, 0.003 +20200702, 4.04, 0.67, -1.66, 0.003 +20200710, 2.10, -1.86, -1.38, 0.003 +20200717, 1.20, 1.76, 2.38, 0.003 +20200724, -0.31, -0.23, 2.91, 0.003 +20200731, 1.73, -0.51, -2.53, 0.003 + +Copyright 2020 Kenneth R. French diff --git a/README.md b/README.md index f49f107..c9846d7 100644 --- a/README.md +++ b/README.md @@ -6,28 +6,24 @@ This repository is a collection of WordPress and Jupyter notebook tutorials for LEAN demonstrating financial concepts and LEAN. Tutorials are categorized into folders with each Category and Tutorial Series. The Jupyter notebook and the associated HTML webpage must use matching file names. The HTML is generated and displayed with wordpress. -Lean Engine is an open-source fully managed C# algorithmic trading engine built for desktop and cloud usage. It was designed in Mono and operates in Windows, Linux and Mac platforms. For more information about the LEAN Algorithmic Trading engine see the [Lean Engine Repository][4]. +Lean Engine is an open-source fully managed C# algorithmic trading engine built for desktop and cloud usage. It was designed in Mono and operates in Windows, Linux and Mac platforms. For more information about the LEAN Algorithmic Trading engine see the [Lean][4] Engine repository. +## Contributors and Pull Requests ## -## New Tutorial Requests and Edits ## - -Please submit new tutorial requests as an issue to the [Tutorial Repository][5]. Before submitting an issue please read others to ensure it is not a duplicate. Edits and fixes for clarity are warmly welcomed! - -We've made a simple editor to help with drafting HTML tutorials: https://www.quantconnect.com/tutorials/editor. Once you've drafted the content there copy the code into a pull-request for the tutorials website. +Contributions are warmly very welcomed but we ask you read the existing code to see how it is formatted, commented and ensure contributions match the existing style. All code submissions must include accompanying tests. Please see the [contributor guide lines][7]. -## Mailing List ## +## Strategy Library Development Workflow ## -The mailing list for the project can be found on [Google Groups][6] +To publish a strategy to our [Strategy Library](https://www.quantconnect.com/tutorials/strategy-library/strategy-library), follow the steps on the [documentation page](https://www.quantconnect.com/docs/v2/writing-algorithms/strategy-library#03-Contribute-Tutorials) -## Contributors and Pull Requests ## +## New Tutorial Requests and Edits ## -Contributions are warmly very welcomed but we ask you read the existing code to see how it is formatted, commented and ensure contributions match the existing style. All code submissions must include accompanying tests. Please see the [contributor guide lines][7]. +Please submit new tutorial requests as an issue to the [Tutorials][5] repository. Before submitting an issue please read others to ensure it is not a duplicate. Edits and fixes for clarity are warmly welcomed! [1]: https://www.quantconnect.com/tutorials "Tutorials Viewer" [2]: https://www.quantconnect.com/lean/docs "Lean Documentation" [3]: https://github.com/QuantConnect/Lean/archive/master.zip -[4]: https://github.com/QuantConnect/Lean/archive/master.zip +[4]: https://github.com/QuantConnect/Lean [5]: https://github.com/QuantConnect/Tutorials/issues -[6]: https://groups.google.com/forum/#!forum/lean-engine [7]: https://github.com/QuantConnect/Lean/blob/master/CONTRIBUTING.md [8]: https://www.quantconnect.com/slack diff --git a/Strategy Tutorials/Tutorial01 CAPM Alpha Ranking Strategy on Dow 30 Companies.html b/Strategy Tutorials/Tutorial01 CAPM Alpha Ranking Strategy on Dow 30 Companies.html deleted file mode 100644 index 26e26e9..0000000 --- a/Strategy Tutorials/Tutorial01 CAPM Alpha Ranking Strategy on Dow 30 Companies.html +++ /dev/null @@ -1,126 +0,0 @@ -

      Abstract

      -This tutorial performs a simple linear regression to build the Capital Asset Pricing Model(CAPM) [ref]Sharpe, William, 1990 http://www.nobelprize.org/nobel_prizes/economic-sciences/laureates/1990/sharpe-lecture.pdf[/ref], a classical model developed by William F. Sharpe and Harry Markowitz. This model yields alpha and beta for each asset and is traded by going long on the stocks ranked with the highest alpha. This tutorial will demonstrate the following: -
        -
      1. How to use historical data
      2. -
      3. Set an event handler
      4. -
      5. Conduct linear regression
      6. -
      7. Build your own functions in the QuantConnect Algorithm Lab
      8. -
      - The implementation of the strategy demonstrates that stocks beat the market last month are likely to beat the market again in the subsequent month. This algorithm performs well when the market is smooth. However when the market volatility increases the model fails to capture alpha and it performs poorly. What we learn from this is that market fluctuations decrease the significance level of the linear regression coefficients, especially when we are using daily returns to fit the model. -

      CAPM Theory

      -The capital asset pricing model (CAPM) describes the relationship between systematic risk and expected return for assets, typically stocks. The formula for calculating the expected return of an asset given its risk is as follows: - -\[r_a = r_f + \beta_a*(r_m - r_f) + \epsilon \] - -where: - -\[r_f = Risk Free Rate\] -\[\beta = Beta of the security\] - -\[r_m = Expected market return\] - -\[\epsilon = Tracking error\] - -This formula can be better understood if we refactor the formula as seen below: - -\[(r_a - r_f ) = \beta_a*(r_m - r_f) + \epsilon \] - -The left side of the equation gives us the difference between the asset return and risk free rate, the "excess return". If we regress the market excess return against the asset excess return the slope represents the "beta" of the asset. Therefore, beta can also be calculated by the equation: - -\[\beta = \frac{Cov(r_a,r_b)}{var(r_b)}\] - -So beta can be described as: - -\[\beta = \rho _a,_b*\frac{\sigma _a}{\sigma_b}\] - -The formula above indicates that beta can be explained as "correlated relative volatility". To make this simpler, beta can be calculated by doing a simple linear regression which can be viewed as a factor to explain the return, and the tracking error can represent alpha. - -To make this theory more convenient for our algorithm, we change the above formula into the following form: - -\[r_a = \beta*r_m + r_f*(1-\beta) + \epsilon\] - -r*(1-β) on the right hand side of the equation is a very small item, making it negligible in the context of the Dow 30 companies. If we regress the stocks return with the return of the benchmark, the slope and intercept will be beta and alpha. - -

      Method

      -Our investment logic is simple and straightforward. We assume that stocks which beat the market last month will continue to beat the market. We rank stocks according to their alpha, and each month we "long" the top two stocks. For this strategy to work, we need to do the following at the start of each month: -
        -
      1. Get the historical price of Dow 30 stocks in the past 21 trading days and calculate their daily rates of return.
      2. -
      3. Conduct simple linear regression on the return of each stock against a benchmark (S&P 500 index, SPY).
      4. -
      5. Rank the stocks by their intercepts.
      6. -
      7. Liquidate all our positions and purchase the first 2 stocks in our sorted list.
      8. -
      -Dow Jones components change very infrequently, with the last change being on March 19th, 2015 [ref] https://en.wikipedia.org/wiki/Dow_Jones_Industrial_Average[/ref]. To make the implementation easier we have simply listed the current Dow components in this algorithm. This means that the earliest start date of this algorithm is March 19th, 2015. -

      Step 1: Setup Event Handler

      -In the initialize method we define a Scheduled Event to trigger a monthly re-balancing of the portfolio. For more details about how to use Scheduled Events, you can read the Documentation or see the example ScheduledEventsAlgorithm. -
      def Initialize(self):
      -    self.Schedule.On(self.DateRules.MonthStart(self.benchmark), self.TimeRules.AfterMarketOpen(self.benchmark), Action(self.rebalance))
      -

      Step 2: Linear Regression Function

      -In order to conduct linear regression, we need to write a function to take the price data and output the regression results. The function takes a list of the "asset prices" (x) and a list of the "benchmark prices" (y). It then calculates the percentage change and conducts a linear regression. The output is a tuple which contains the intercept and slope. -
      def regression(self,x,y):
      -    x = np.array(x)
      -    x = np.diff(x)/x[:-1]
      -    y = np.array(y)
      -    y = np.diff(y)/y[:-1]
      -    A = np.vstack([x, np.ones(len(x))]).T
      -    result = np.linalg.lstsq(A, y)[0]
      -    beta = result[0]
      -    alpha = result[1]
      -    return(alpha,beta)
      -

      Step 3: History Function

      -Each month we get the historical prices of the DOW30 components using the History API. The data is returned from the API as complex Slice objects. To make this useful in the algorithm we extract the asset prices, and benchmark prices to a list. -
      def get_regression_data(self,symbol,history):
      -    symbol_price = []
      -    benchmark_price = []
      -    for i in history:
      -        bar = i[symbol]
      -        benchmark = i[self.benchmark]
      -        symbol_price.append(bar.Close)
      -        benchmark_price.append(benchmark.Close)
      -
      -    result = self.regression(symbol_price,benchmark_price)
      -    return result
      -

      Step 4: Rebalance Function:

      -This function is where all the action happens, it will be executed on the first trading day of each month as a scheduled event. The second argument of SetHoldings is a decimal, setting this to "1" tells the algorithm to set the portfolio as "long 100%" with no leverage. More information on the function can be read on this link: SetHoldings. -
      def rebalance(self):
      -    # get historical stock symbols and prices, then put them in tuples
      -    history = self.History(self.regression_dates, Resolution.Daily)
      -    filter = []
      -    for i in self.symbols:
      -        filter.append((i,self.get_regression_data(i, history)[0]))
      -    # sort the filter by alpha
      -    filter.sort(key = lambda x : x[1],reverse = True)
      -    sorted_symbols = []
      -    for i in range(2):
      -    	sorted_symbols.append(filter[i][0])
      -    # get the symbols of our holding stocks
      -    holding_list = []
      -    for i in self.Portfolio:
      -    	if i.Value.Invested:
      -    		holding_list.append(i.Value.Symbol)
      -    # if we have holdings and we are not going to hold them anymore, sell them
      -    if holding_list:
      -    	for i in holding_list:
      -    		if i not in sorted_symbols:
      -    			self.Liquidate(i)
      -    # Long the 2 stock in our list.
      -    for i in sorted_symbols:
      -    	self.SetHoldings(i,1)
      -

      Conclusion

      -We have demonstrated that during a smooth market, the stocks that beat the market last month are likely to beat the market again in the subsequent month. When there is market fluctuation, the significance level of linear regression will reduce and the model performance will decrease. - -We can understand this by looking at the covariance of the asset(x) and the benchmark (y). As the covariance reduces to zero, the beta will decrease. - -\[\hat{\beta} = \frac{Cov[x,y]}{\sum (x_i - \b{x})^2}\] - -As an experiment, we tested the algorithm on market data from 2015. This was a much more volatile period for the market with a fluctuation that returned a mean close to zero and dropped neaerly 10% from Aug 18th to Aug 25th of that year. The algorithm performed quite poorly in this year with a return rate of -11.58%. - -The risks associated with this strategy include a high drawdown, lack of hedging and not stop-loss. Since we are using leverage, the risk is increased and it has a margin call in January as a result. - -We can improve the performance by applying the following techniques: - -
        -
      1. Conduct optimizations: we can implement mean-variance analysis to determine the asset allocation each month and select more stocks to trade. This will lower our risk and manage the portfolio more scientifically.
      2. -
      3. Take beta into consideration: If we want to be more aggressive, we can select targets by a combination of alpha and beta. This means we choose stocks with a high alpha that are more volatile than the market. If we are conservative investors however, we can make the strategy market-neutral, which means the portfolio would not be affected by the market performance. For example, if we long two stocks with beta 1 and -1 respectively at the same position size, our portfolio becomes market-neutral.
      4. -
      -

      Algorithm

      - diff --git a/Strategy Tutorials/Tutorial02 Combining Mean Reversion and Momentum in Forex Market.html b/Strategy Tutorials/Tutorial02 Combining Mean Reversion and Momentum in Forex Market.html deleted file mode 100644 index 9c2d533..0000000 --- a/Strategy Tutorials/Tutorial02 Combining Mean Reversion and Momentum in Forex Market.html +++ /dev/null @@ -1,195 +0,0 @@ -

      Abstract

      -In this tutorial we build a strategy combining momentum and mean reversion for the foreign exchange markets from Alina F. Serban's research [ref]Alina F. Serban, Combining mean reversion and momentum trading strategies in foreign exchange markets Online Copy[/ref] which was based on research in the equity market by Ronald J. Balvers and Yangru Wu [ref]Ronald J. Balvers, Yangru Wu, Momentum and mean reversion across national equity markets Online Copy[/ref]. Serban creates a momentum factor using returns of the last 3 months, and a mean reversion factor as a deviation from the mean price. Using these factors we use regression to predict the returns of the coming month. We apply the strategy from Serban's paper and update the mean reversion factor for to improve its significance level. - -In theory when trading foreign exchange the expected return accrued in each currency should be the same when adjusted for exchange rates (uncovered interest parity, UIP [ref]Investopedia, Uncovered Interest Rate Parity. Online Copy[/ref]). This suggests the markets should predominately be mean reverting, however in practice we see short term momentum trends and long term mean reversion. This was phenomenon was first noticed by Chiang and Jiang [ref]Chiang, T., Jiang, C., 1995. Foreign exchange returns over short and long horizons. International Review of Economics and Finance 4, 267–282. Online Copy[/ref]. - -We tested the theory on EURUSD, GBPUSD, USDCAD and USDJPY and re-balanced monthly. The model significance level and coefficients are close to those in paper, but the returns and Sharpe Ratios obtained are not as good as what the paper claimed. The algorithm achieved a fairly stable annual return of 11%, 0.8 Sharpe Ratio and 11% drawdown. -

      Introduction

      -The strategy is centered on uncovered interest parity (UIP) theory. UIP states that the change in the exchange rate should incorporate any interest rate differentials between the two currencies. By looking for patterns in the deviation from UIP we can potential generate abnormal returns. -

      Interest Parity Conditions

      -UIP states that an investor who borrows money in their home country and lends it in another country with a higher interest rate should expect a zero return due to the changes in exchange rate. In other words: - -\[1+r_t = (1+r^{i}_t)(\frac{F^{i}_t}{S^{i}_t})\] -Where \(r_t\) is the domestic interest rate, \(r^{i}\) is the foreign interest rate, \(S^{i}\) is the spot exchange rate and \(F^{i}\) is the forward rate. We can also replace F forward rate with expected spot rate: - -\[1+r_t = (1+r^{i}_t)(\frac{E(S^{i}_{t+1})}{S^{i}_t})\] - -Taking logs of the above two equations, we obtain: - -\[r_t - r^{i}_t = \ln F^{i}_t - \ln S^{i}_t\] - -\[r_t - r^{i}_t =\ln S^{i}_{t+1} - \ln S^{i}_t\] - -The deviation from UIP is denoted by y and defined as follows: - -\[y^{i}_{t+1} =\ln S^{i}_{t+1} -\ln F^{i}_t\] -

      Model and Parameter Estimation

      -Fama and French and Summers [ref]Fama, E., 1984. Forward and spot exchange rates. Journal of Monetary Economics Online Copy 14, 319–338.[/ref] constructed a simple model for stock price that is the sum of a random walk and a stationary component - they represent the natural log of the stock price with x. The stationary component represents the temporary swings in stock price (characterized by coefficient \(\delta \)), the parameter \(\mu \) captures the random walk drift component and a coefficient accounts for the momentum effect \(\rho \). Balvers and Wu construct the log of stock prices as: - -\[x^{i}_t = (1 - \delta ^{i})\mu ^{i} + \delta ^{i}x^{i}_{t-1} + \sum_{j=1}^{J}\rho ^{i}(x^{i}_{t-1} - x^{i}_{t-j-1}) + \epsilon ^{u}_t\] - -Using the equation above Serban adapts it to find the abnormal return in the forex market. The \(\delta \) represents the speed of mean reversion and can differ by country, while the \(\rho \) represents the momentum strength and can vary by country and by lag. The parameter \(\mu \) also varies by country. Accounting for these changes: - -\[y^{i}_t = -(1 - \delta ^{i})(x^{i}_{t-1} - \mu ^{i}) + \sum_{j=1}^{J}\rho ^{i}(x^{i}_{t-1} - x^{i}_{t-j-1}) + \epsilon ^{u}_t\] -

      Trading Strategy

      -The trading strategy from the paper allows \(\mu \) to change by country, while let \(\rho \) and \(\delta \) stay fixed. By applying Ordinary Least Squared(OLS) regression, the model estimates the return y for each currency. We construct the portfolio by taking a long position on the currency with the highest expected return and taking a short position on the currency with the lowest expected return. We hold these positions for one month, and repeat the process each month. There are two exceptions to this strategy: if all expected returns are positive, we take a long position only, and vice versa. - -To limit the number of parameters we need to estimate and find a solution easily we only allow \(\mu \) to change by country. According to the paper if we let ρ stay fixed and J =3, we can obtain the highest return for this strategy. If so the equation can be simplified as: - -\[y^{i}_t = -(1-\delta )(x^{i}_{t-1} - \mu ^{i}) + \rho (x^{i}_{t-1} - x^{i}_{t-4}) + \epsilon ^{i}_t\] - -When applying the above equation, we found that the scale of the mean reversion for each currency are very different, and this difference in scale is large enough to affect the accuracy of our rank. We made an adjustment to standardize the mean-reversion. While calculating \(\mu \) (the mean of the log prices) we also calculated standard deviation σ. In this tutorial we replace \(x-\mu \) with \(\frac{x - \mu}{\sigma } \). This captures the mean reversion factor better than the author's technique. -

      Data Description

      -The paper used monthly exchange rate data for the Canadian Dollar/USD, German Mark/Euro, UK Pound/USD and Japanese Yen/USD, from 1978 to 2008. Due to data availability, we used Euro/USD instead of German Mark/Euro, and the earliest data available starts from 2004. Each time we launch the strategy we use all of the available historical data prior to the start date to build the OLS model and uses that model for the entire backtest. The paper used 1/3 of their data as the training dataset and the rest of the test set. We directly test our model on backtesting, because QuantConnect makes this easier. -

      Method

      -In order to apply the model, we need to first pull history data to build it. The project can be briefly divided into four parts: the historical data request, model training, prediction and execution. -

      Step 1: Request Historical Data

      -The first function takes two arguments: symbol and number of daily data points requested. This function requests historical QuoteBars and builds it into a pandas DataFrame. For more information about pandas DataFrame, please refer to the help documentation DataFrame. The calculate_return function takes a DataFrame as an argument to calculate the mean and standard deviation of the log prices, and create new columns for the DataFrame (return, reversal factor and momentum) - it prepares the DataFrame for multiple linear regression. -
      def get_history(self,symbol, num):
      -    data = {}
      -    dates = []
      -    history = self.History([symbol], num, Resolution.Daily).loc[symbol]['close'] #request the historical data for a single symbol
      -    for time in history.index:
      -        t = time.to_pydatetime().date()
      -        dates.append(t)
      -    dates = pd.to_datetime(dates)
      -    df = pd.DataFrame(history)
      -    df.reset_index(drop=True)
      -    df.index = dates
      -    df.columns = ['price']
      -    return df
      -
      -def calculate_return(self,df):
      -    #calculate the mean for further use
      -    mean = np.mean(df.price)
      -    # cauculate the standard deviation
      -    sd = np.std(df.price)
      -    # pandas method to take the last datapoint of each month.
      -    df = df.resample('BM',how = lambda x: x[-1])
      -    # the following three lines are for further experiment purpose
      -    # df['j1'] = df.price.shift(1) - df.price.shift(2)
      -    # df['j2'] = df.price.shift(2) - df.price.shift(3)
      -    # df['j3'] = df.price.shift(3) - df.price.shift(4)
      -    # take the return as depend variable
      -    df['log_return'] = df.price - df.price.shift(1)
      -    # calculate the reversal factor
      -    df['reversal'] = (df.price.shift(1) - mean)/sd
      -    # calculate the momentum factor
      -    df['mom'] = df.price.shift(1) - df.price.shift(4)
      -    df = df.dropna() #remove nan value
      -    return (df,mean,sd)
      -

      Step 2: Build Predictive Model

      -The concat function requests history and joins the results into a single DataFrame. As \(\mu \) varies by country so we assign the mean and standard deviation to the symbol for each currency for future use. The OLS function takes the resulting DataFrame to conduct an OLS regression. We write it into a function because it's easier to change the formula here if we need. -
      def concat(self):
      -    # we requested as many daily tradebars as we can
      -    his = self.get_history(self.quoted[0].Value,20*365)
      -    # get the clean DataFrame for linear regression
      -    his = self.calculate_return(his)
      -    # add property to the symbol object for further use.
      -    self.quoted[0].mean = his[1]
      -    self.quoted[0].sd = his[2]
      -    df = his[0]
      -    # repeat the above procedure for each symbols, and concat the dataframes
      -    for i in range(1,len(self.quoted)):
      -        his = self.get_history(self.quoted[i].Value,20*365)
      -        his = self.calculate_return(his)
      -        self.quoted[i].mean = his[1]
      -        self.quoted[i].sd = his[2]
      -        df = pd.concat([df,his[0]])
      -    df = df.sort_index()
      -    # remove outliers that outside the 99.9% confidence interval
      -    df = df[df.apply(lambda x: np.abs(x - x.mean()) / x.std() < 3).all(axis=1)]
      -    return df
      -
      -def OLS(self,df):
      -    res = sm.ols(formula = 'return ~ reversal + mom',data = df).fit()
      -    return res
      -

      Step 3: Apply Predictive Model

      -The predict function uses the history for the last 3 months, merges it into a DataFrame and then calculates the updated factors. Using these updated factors (together with the model we built) we calculate the expected return. -
      def predict(self,symbol):
      -    # get current month in string
      -    month = str(self.Time).split(' ')[0][5:7]
      -    # request the data in the last three months
      -    res = self.get_history(symbol.Value,33*3)
      -    # pandas method to take the last datapoint of each month
      -    res = res.resample('BM',how = lambda x: x[-1])
      -    # remove the data points in the current month
      -    res = res[res.index.month != int(month)]
      -    # calculate the variables
      -    res = self.calculate_input(res,symbol.mean,symbol.sd)
      -    res = res.ix[0]
      -    # take the coefficient. The first one will not be used for sum-product because it's the intercept
      -    params = self.formula.params[1:]
      -    # calculate the expected return
      -    re = sum([a*b for a,b in zip(res[1:],params)]) + self.formula.params[0]
      -    return re
      -
      -def calculate_input(self, df, mean, sd):
      -    df['reversal'] = (df.price - mean)/sd
      -    df['mom'] = df.price - df.price.shift(3)
      -    df = df.dropna()
      -    return df
      -
      -There are a few points of note: -
        -
      1. We need historical TradeBars for the last three months. To do this we requested 99 bars and use a pandas DataFrame to extract a data point for the end of each month.
      2. -
      3. We use event schedule to execute the strategy at the first trading day, however, sometimes the first day of the month could be on the 2nd if the 1st falls on a weekend. To fix this we remove the data from the current month, leaving only the last 3 months of data.
      4. -
      5. We start from the second element of res (res[1:]) because res and params are different lengths. This was hard to detect because Python would not throw error when running [a*b for a,b in zip(res,params)] even if the length of the two lists are different.
      6. -
      7. This function also used pandas DataFrame methods extensively. For more information please refer to pandas.
      8. -
      -

      Step 4: Initializing the Model

      -In the Initialize function we prepare the data and conduct a linear regression. The class property 'self.formula' is the result of the OLS regression. We will use this object each time we rebalance the portfolio. -
      def Initialize(self):
      -    self.SetStartDate(2013,6,1)
      -    self.SetEndDate(2016,6,1)
      -    self.SetCash(10000)
      -    self.syls = ['EURUSD','GBPUSD','USDCAD','USDJPY']
      -    self.quoted = []
      -    for i in range(len(self.syls)):
      -        self.quoted.append(self.AddForex(self.syls[i],Resolution.Daily,Market.Oanda).Symbol)
      -    df = self.concat()
      -    self.Log(str(df))
      -    self.formula = self.OLS(df)
      -    self.Log(str(self.formula.summary()))
      -    self.Log(str(df))
      -    self.Log(str(df.describe()))
      -    for i in self.quoted:
      -        self.Log(str(i.mean) + '   ' + str(i.sd))
      -    self.Schedule.On(self.DateRules.MonthStart(), self.TimeRules.At(9,31), Action(self.action))
      -

      Step 5: Performing Monthly Rebalancing

      -Every month we rebalance the portfolio using the Schedule Event helper method. The predicted returns are added to the rank array and then sorted by return. The first element in the list is the best return paired with the associated symbol. When all the expected returns in the rank array are positive we only go long the pair with the highest expected return. When all returns are negative, we only go short the pair with the lowest expected return. -
      def action(self):
      -    rank = []
      -    long_short = []
      -    for i in self.quoted:
      -        rank.append((i,self.predict(i)))
      -# rank the symbols by their expected return
      -    rank.sort(key = lambda x: x[1],reverse = True)
      -# the first element in long_short is the one with the highest expected return, which we are going to long, and the second one is going to be shorted.
      -    long_short.append(rank[0])
      -    long_short.append(rank[-1])
      -    self.Liquidate()
      -
      -# the product < 0 means the expected return of the first one is positive and that of the second one is negative--we are going to long and short.
      -    if long_short[0][1]*long_short[1][1] < 0:
      -        self.SetHoldings(long_short[0][0],1)
      -        self.SetHoldings(long_short[1][0],-1)
      -        # this means we long only because all of the expected return is positive
      -    elif long_short[0][1] > 0 and long_short[1][1] > 0:
      -        self.SetHoldings(long_short[0][0],1)
      -# short only
      -    else:
      -        self.SetHoldings(long_short[1][0],-1)
      -

      Results

      -The following regression output is obtained by backtesting the time period from Jun 2013 to Jun 2016. We can see the results are fairly close to those from the source paper with a R-squared value of 3.1% compared to the paper's 3.89%. Our momentum coefficient, ρ, is 0.0344 compared to the paper's 0.042. We obtained 0.9955 mean reversion coefficient (1 - 0.0045), and the paper got 0.9859. - - -From these results we can say the limited sample size does not impair the feasibility of this model. The t-stats of the coefficients are -4.074 and 1.417 for the reversal factor and momentum factor respectively. The p-value of the reversal factor is very small which means this factor has a very high significance level. -

      Backtest Sensitivity Results

      -We performed some rough period sensitivity analysis in different time periods and summarized the results as the following table: - -The compound annual returns are quite stable, however, the paper claimed that the average return is 27.5% vs our 11% achieved. This difference can be accounted for by the data time span and currency pairs. -

      Conclusion

      -The paper demonstrates there are inefficiencies in the UIP which can be exploited with a hybrid momentum and mean reversion strategy. Although the sample size of the paper is much larger than ours the parameter and significance level of the two models are very close. The strategies we discussed above keep \(\rho \) fixed and only allow \(\mu \) to change by country. If we let \(\rho \) change by lag the significance level of the model might increase, but this could potentially make modeling more difficult by introducing multicollinearity. To test this we wrote this implementation in the algorithm and commented out the lines. If you are interested in exploring this extension to the model you can change these lines to test your strategy. -

      Algorithm

      - diff --git a/Strategy Tutorials/Tutorial03 Pairs Trading - Copula vs Cointegration.html b/Strategy Tutorials/Tutorial03 Pairs Trading - Copula vs Cointegration.html deleted file mode 100644 index 63892b8..0000000 --- a/Strategy Tutorials/Tutorial03 Pairs Trading - Copula vs Cointegration.html +++ /dev/null @@ -1,452 +0,0 @@ -

      Abstract

      -We investigate two pairs trading methods and compare the results. Pairs trading involves in investigating the dependence structure between two highly correlated assets. With the assumption that mean reversion will occur, long or short positions are entered in the opposite direction when there is a price divergence. Typically the asset price distribution is modeled by a  Gaussian distribution of return series but the joint normal distribution may fail to catch some key features of the dependence of stock pairs' price like tail dependence. We investigate using copula theory to identify these trading opportunities. - -In this tutorial, we will discuss the basic framework of copula from the mathematical perspective and explain how to apply the approach in pairs trading. The implementation of the algorithm is based on based on the paper Trading strategies with copulas [ref]Stander Y, Marais D, Botha I. Trading strategies with copulas[J]. Journal of Economic and Financial Sciences, 2013, 6(1): 83-107. Online Copy [/ref]  from Stander Y, Marais D, Botha I(2013). We compare the performance of the copula pairs trading strategy with the co-integration pairs trading method based on the paper Statistical arbitrage trading strategies and high-frequency trading from Hanson T A, Hall J R. (2012)[ref]Hanson T A, Hall J R. Statistical arbitrage trading strategies and high-frequency trading[J]. 2012.[/ref]. The co-integration technique assumes a co-integration relationship between paired equities to identify profitable trading opportunities. The empirical results suggest that the copula-based strategy is more profitable than the traditional pairs trading techniques. -

      Framework of Copula

      -

      1. Definition

      -Given a random vector \(X_1,X_2,...,X_p\), its marginal cumulative distribution functions (CDFs) are \(F_i(x) = P[X_i \leq x]\). By applying the probability integral transform to each component, the marginal distributions of \((U_1,U_2,...,U_p) = (F_1(X_1),F_2(X_2),...,F_p(X_p))\) are uniform (from Wikipedia). - -Then the copula of \(X_1,X_2,...,X_p\) is defined as the joint cumulative distribution function of \(U_1,U_2,...,U_p\), for which the marginal distribution of each variable U is uniform as  \(U(0,1)\). - -\[C(u_1,u_2,...,u_p) = P[U_1\leq u_1,U_2\leq u_2,..., U_1\leq u_1]\] - -Copulas function contains all the dependency characteristics of the marginal distributions and will better describe the linear and non-linear relationship between variables, using probability. They allow the marginal distributions to be modeled independently from each other, and no assumption on the joint behavior of the marginals is required.[ref]Rad H, Low R K Y, Faff R. The profitability of pairs trading strategies: distance, cointegration and copula methods[J]. Quantitative Finance, 2016, 16(10): 1541-1558.online copy[/ref] -

      2. Bivariate Copulas

      -Since this research focuses on bivariate copulas (for pairs trading we have 2 random variables) some probabilistic properties are specified. - -Let X and Y be two random variables with cumulative probability function \(F_1(X)\) and \(F_2(Y)\). \(U=F_1(X), V=F_2(Y)\) which are uniformly distributed.  Then the copula function is \(C(u,v)=P(U\leq u,V\leq v)\). Taking the partial derivative of the copula function over U and V would give the conditional distribution function as follows: - -\[P(U\leq u\mid V= v)=\frac{\partial C(u,v)}{\partial v}\] - -\[P(V\leq v\mid U= u)=\frac{\partial C(u,v)}{\partial u}\] -

      3. Archimedean Copulas

      -There are many copula functions that enable us to describe dependence structures between variables, other than the Gaussian assumption. Here we will focus three of these; the Clayton, Gumbel and Frank copula formulas from the Archimedean class. - -Archimedean copulas[ref]Mahfoud M, Michael M. Bivariate Archimedean copulas: an application to two stock market indices[J]. BMI Paper, 2012.  Online Copy[/ref] are based on the Laplace transforms φ of univariate distribution functions. They are constructed by a particular generator function \(\phi\) [ref]LANDGRAF N, SCHOLTUS K, DIRIS D R B. High-Frequency copula-based pairs trading on US Goldmine Stocks[J]. 2016.[/ref]. - -\[C(u,v)=\phi^{-1}( \phi(u),\phi(v) )\] - -The probability density function is: - -\[c(u,v)=\phi_{(2)}^{-1}(\phi(u)+\phi(v))\phi^{'}(u)\phi^{'}(v)\] - -Where \(\phi_{(2)}^{-1}\) is the inverse of the second derivative of the generator function. - - - - - - - - - - - - - - - - - - - - - -
      CopulaCopula function C(u,v;θ)
      Clayton Copula\[(u^{-\theta}+v^{-\theta}-1)^{-1/\theta}\]
      Gumbel Copula\[exp(-[(-\ln u)^{\theta}+(-\ln v)^{\theta}]^{1/\theta})\]
      Frank Copula\[-\theta^{-1}\ln\left[1+\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)}{exp(-\theta)-1}\right]\]
      -  - -Genest and MacKay (1986) [ref]Genest, C. and MacKay, J., 1986, The Joy of Copulas: Bivariate Distributions with Uniform Marginals, The American Statistician, 40, 280-283[/ref] proved that the relation between the copula generator function and Kendall rank correlation tau in the bivariate case can be given by: - -\[\tau=1+4\int_{0}^{1} \frac{\partial \phi (v)}{\partial \phi^{'}(v)}dv\] - -So we can easily estimate the parameter in Archimedean copulas if we know Kendall’s tau rank measure and the generator function. Please refer to step 3 to see the formulas. -

      Part I: Copula Method

      -ETFs have many different stock sectors and asset classes which provide us a wide range of pairs trading candidates. Our data set consists of daily data of the ETFs traded on the NASDAQ or the NYSE. - -We use the first 3 years of data to choose the best fitting copula and asset pair ("training formation period"). Next, we use a period of 5 years from 2011 to 2017 ("the trading period"), to execute the strategy. During the trading period we use a rolling 12 month window of data to get the copula parameters ("rolling formation period"). -

      Step 1: Selecting the Paired Stocks

      -The general method of pair selection is based on both fundamental and statistical analysis.[ref]Jean Folger. Pairs Trading Example Online Copy[/ref] -

      1) Assemble a list of potentially related pairs

      -Any random pairs could be correlated. It is possible that those variables are not causally related to each other, but because of a spurious relationship due to either coincidence or the presence of a certain third, unseen factor. Thus, it is important for us to start with a list of securities that have something in common. For this demonstration, we choose some of the most liquid ETFs traded on the Nasdaq or the NYSE.  The relationship for those potentially related pairs could be due to an index, sector or asset class overlap. e.g. QQQ and XLK are two ETFs which track the market leading indices. -

      2) Filter the trading pair with statistical correlation

      -
      -
      -
      -
      - -To determine which stock pairs to include in the analysis, correlations between the pre-selected ETF pairs are analyzed. Below are three types of correlation measures we usually use in statistics: - - - - - - - - - - - - - - - - - - - - - - - -
      Correlation Measurement Techniques
      Pearson correlation\[r = \frac{\sum (x_i- \bar{x})(y_i- \bar{y})}{\sqrt{\sum (x_i- \bar{x})^2)\sum (y_i- \bar{y})^2)} }\]
      Kendall rank correlation\[\tau=\frac{n_c-n_d}{\frac{1}{2}n(n-1)}\]
      Spearman rank correlation\[\rho=1-\frac{6\sum d_i^2}{n(n^2-1)}\]
       \(n\) = number of value in each data set -\(n_c\) = number of concordant -\(n_d\) = number of discordant -\(d_i\) = the difference between the ranks of corresponding values \(x_i\) and \(y_i\)
      -
      -We can get these coefficients in Python using functions from the stats library in SciPy. The correlations have been calculated using daily log stock price returns during the training formation period. We found the 3 correlation techniques give the paired ETFs the same correlation coefficient ranking. The Pearson correlation assumes that both variables should be normally distributed. Thus here we use Kendall rank as the correlation measure and choose the pairs with the highest Kendall rank correlation to implement the pairs trading. - -We get the daily historical closing price of our ETFs pair by using the History function and converting the prices to a log return series. Let \(P_x\) and \(P_y\) denote the historical stock price series for stock x and stock y. The log returns for the ETFs pair are given by: - -\[R_x = ln(\frac{P_{x,t}}{P_{x,t-1}}),   R_y = ln(\frac{P_{y,t}}{P_{y,t-1}})\]   t = 1,2,...,n where n is the number of price data -
      def _pair_selection(self):
      -    tick_syl =  [["QQQ","AGG","XME","TNA","FAS","XLF","EWC","QLD"],["XLK","JNK","EWG","TLT","FAZ","XLU","EWA","QID"]]
      -    logreturn={}
      -    for i in range(2):
      -        syl = [self.AddSecurity(SecurityType.Equity, x, Resolution.Daily).Symbol for x in tick_syl[i]]
      -        history = self.History(self.lookbackdays,Resolution.Daily)
      -        # generate the log return series of different ETFs
      -        for j in range(len(tick_syl[i])):
      -            close_price = []
      -            for slice in history:
      -                bar = slice[syl[j]]
      -                close_price.append(bar.Close)
      -            logreturn[tick_syl[i][j]] = np.diff(np.log([float(z) for z in close_price]))
      -    # estimate coefficients of different correlation measures
      -    tau_coef,pr_coef,sr_coef= [],[],[]
      -    for i in range(len(tick_syl[i])):
      -        tik_x, tik_y= logreturn[tick_syl[0][i]], logreturn[tick_syl[1][i]]
      -        tau_coef.append(kendalltau(tik_x, tik_y)[0])
      -        pr_coef.append(pearsonr(tik_x, tik_y)[0])
      -        sr_coef.append(spearmanr(tik_x, tik_y)[0])
      -    index_max = tau_coef.index(max(tau_coef))
      -    self.ticker = [tick_syl[0][index_max],tick_syl[1][index_max]]
      -
      -

      Step 2: Estimating Marginal Distributions of log-return

      -In order to construct the copula, we need to transform the log-return series \(R_x\) and \(R_y\) to two uniformly distributed values u and v. This can be done by estimating the marginal distribution functions of \(R_x\) and \(R_y\) and plugging the return values into a distribution function. As we make no assumptions about the distribution of the two log-return series, here we use the empirical distribution function to approach the marginal distribution \(F_1(R_x)\) and \(F_2(R_y)\). The Python ECDF function from the statsmodel library gives us the Empirical CDF as a step function. -

      Step 3: Estimating Copula Parameters

      -As discussed above, we estimate the copula parameter theta by the relationship between the copula and the dependence measure Kendall’s tau, for each of the Archimedean copulas. - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      CopulaKendall's tauparameter θ
      Clayton Copula\[\frac{\theta}{\theta +2}\]\[\theta=2\tau(1-\tau)^{-1}\]
      Gumbel Copula\[1-\theta^{-1}\]\[\theta=(1-\tau)^{-1}\]
      Frank Copula\[1+4[D_1(\theta)-1]/\theta\]\[arg min\left(\frac{\tau-1}{4}-\frac{D_1(\theta)-1}{\theta}\right)^2\]
      \[D_1(\theta)=\frac{1}{\theta}\int_{0}^{\theta}\frac{t}{exp(t)-1}dt \]
      -
      -
      def _parameter(self, family, tau):
      -    if  family == 'clayton':
      -        return 2*tau/(1-tau)
      -    elif family == 'frank':
      -        # debye = quad(integrand, sys.float_info.epsilon, theta)[0]/theta  is first order Debye function
      -    	# frank_fun is the squared difference
      -    	# Minimize the frank_fun would give the parameter theta for the frank copula
      -      integrand = lambda t: t/(np.exp(t)-1)
      -    	frank_fun = lambda theta: ((tau - 1)/4.0  - (quad(integrand, sys.float_info.epsilon, theta)[0]/theta - 1)/theta)**2
      -      return minimize(frank_fun, 4, method='BFGS', tol=1e-5).x
      -    elif family == 'gumbel':
      -        return 1/(1-tau)
      -
      -
      -

      Step 4: Selecting the Best Fitting Copula

      -Once we get the parameter estimation for the copula functions, we use the AIC criteria to select the copula that provides the best fit in algorithm initialization. - -\[AIC=-2L(\theta)+2k\] - -where \(L(\theta)=\sum_{t=1}^T\log c(u_t,v_t;\theta)\) is the log-likelihood function and k is the number of parameters, here k=1. - -The density functions of each copula function are as follows: - - - - - - - - - - - - - - - - - - - - - - - - -
      CopulaDensity function c(u,v;θ)
      Clayton Copula\[(\theta+1)(u^{-\theta}+v^{-\theta}-1)^{-2-1/\theta}u^{-\theta-1}v^{-\theta-1}\]
      Gumbel Copula\[C(u,v;\theta)(uv)^{-1}A^{-2+2/\theta}[(\ln u)(\ln v)]^{\theta -1}[1+(\theta-1)A^{-1/\theta}]\]
      Frank Copula\[\frac{-\theta(exp(-\theta)-1)(exp(-\theta(u+v)))}{((exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1))^2}\]
      \[A=(-\ln u)^{\theta}+(-\ln v)^{\theta}\]
      -
      -
      -
      -
      def _lpdf_copula(self, family, theta, u, v):
      -    ''' estimate the log probability density function of three kinds of Archimedean copulas '''
      -    if  family == 'clayton':
      -        pdf = (theta+1) * ((u**(-theta)+v**(-theta)-1)**(-2-1/theta)) * (u**(-theta-1)*v**(-theta-1))
      -    elif family == 'frank':
      -        num = -theta * (np.exp(-theta)-1) * (np.exp(-theta*(u+v)))
      -        denom = ((np.exp(-theta*u)-1) * (np.exp(-theta*v)-1) + (np.exp(-theta)-1))**2
      -        pdf = num/denom
      -    elif family == 'gumbel':
      -        A = (-np.log(u))**theta + (-np.log(v))**theta
      -        c = np.exp(-A**(1/theta))
      -        pdf = c * (u*v)**(-1) * (A**(-2+2/theta)) * ((np.log(u)*np.log(v))**(theta-1)) * (1+(theta-1)*A**(-1/theta))
      -    return np.log(pdf)
      -
      -The copula that provides the best fit is the one that corresponds to the lowest value of AIC criterion. The chosen pair is "QQQ" & "XLK". -
      self.family = ['clayton', 'frank', 'gumbel']
      -tau = kendalltau(x, y)[0]  # estimate Kendall'rank correlation
      -AIC ={}  # generate a dict with key being the copula family, value = [theta, AIC]
      -for i in self.family:
      -    lpdf = [self._lpdf_copula(i, self._parameter(i,tau), x, y) for (x, y) in zip(u, v)]
      -    # Replace nan with zero and inf with finite numbers in lpdf list
      -    lpdf = np.nan_to_num(lpdf)
      -    loglikelihood = sum(lpdf)
      -    AIC[i] = [self._parameter(i,tau), -2*loglikelihood + 2]
      -    # choose the copula with the minimum AIC
      -    self.copula = min(AIC.items(), key = lambda x: x[1][1])[0]
      -
      -  -

      Step 5: Generating the Trading Signals

      -The copula functions include all the information about the dependence structures of two return series. According to Stander Y, Marais D, Botha I(2013)[ref]Stander Y, Marais D, Botha I. Trading strategies with copulas[J]. Journal of Economic and Financial Sciences, 2013, 6(1): 83-107. Online Copy [/ref], the fitted copula is used to derive the confidence bands for the conditional marginal distribution function of \(C(v\mid u)\) and \(C(u\mid v)\), that is the mispricing indexes. When the market observations fall outside the confidence band, it is an indication that pairs trading opportunity is available. Here we choose 95%  as the upper confidence band, 5% as the lower confidence band as indicated in the paper. The confidence level was selected based on a back-test analysis in the paper that shows using 95% seems to lead to appropriate trading opportunities to be identified. - -Given current returns \(R_x, R_y\) of stock X and stock Y, we define the "mis-pricing indexes" are: - -\[MI_{X|Y}=P(U\leq u\mid V\leq v)=\frac{\partial C(u,v)}{\partial v}\] - -\[MI_{Y|X}=P(V\leq v\mid U\leq u)=\frac{\partial C(u,v)}{\partial u}\] - -For further mathematical proof, please refer to Xie W, Wu Y(2013)[ref]Xie W, Wu Y. Copula-based pairs trading strategy[C]//Asian Finance Association (AsFA) 2013 Conference. doi. 2013, 10.[/ref] - -The conditional probability formulas of bivariate copulas can be derived by taking partial derivatives of copula functions shown in Table 1. The results are as follows: - -Gumbel Copula - -\[C(v\mid u)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln u)^{\theta-1}\frac{1}{u}\] - -\[C(u\mid v)=C(u,v;\theta)[(-\ln u)^\theta+(-\ln v)^\theta]^{\frac{1-\theta}{\theta}}(-\ln v)^{\theta-1}\frac{1}{v}\] - -
      -
      -
      -Clayton Copula - -\[C(v\mid u)=u^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] - -\[C(u\mid v)=v^{-\theta-1}(u^{-\theta}+v^{-\theta}-1)^{-\frac{1}{\theta}-1}\] - -Frank Copula - -\[C(v\mid u)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta v)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)}  \] - -\[C(u\mid v)=\frac{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta u)-1)}{(exp(-\theta u)-1)(exp(-\theta v)-1)+(exp(-\theta)-1)} \] - -After selection of trading pairs and the best-fitted copulas, we take the following steps for trading. Please note we implement the Steps 1, 2, 3 and 4 on the first day of each month using the daily data for the last 12 months, which means our empirical distribution functions and copula parameters theta estimation are updated once a month. In summary each month: -
        -
      1. During the 12 months' rolling formation period, daily close prices are used to calculate the daily log returns for the pair of ETFs and then compute Kendall's rank correlation.
      2. -
      3. Estimate the marginal distribution functions of log returns of X and Y, which are ecdf_x and ecdf_y separately.
      4. -
      5. Plug Kendall's tau into copula parameter estimation functions to get the value of theta.
      6. -
      7. Run linear regression over the two price series. The coefficient is used to determine how many shares of stock X and Y to buy and sell. For example, if the coefficient is 2, for every X share that is bought or sold, 2 units of Y are sold or bought.
      8. -
      -
      def _set_signal(self):
      -	history = self.History(self.lookbackdays,Resolution.Daily)
      -	# generate the log return series of paired stocks
      -    # logreturn_trade is a dictionary to store the history log return series of paired stocks each trading day
      -    price = {}
      -    logreturn_trade = {}
      -    for j in range(len(self.syl)):
      -        close = []
      -        for slice in history:
      -            bar = slice[self.syl[j]]
      -            close.append(bar.Close)
      -        price[self.ticker[j]] = close
      -        logreturn_trade[self.ticker[j]] = np.diff(np.log([float(z) for z in close]))
      -
      -    x, y = logreturn_trade[self.ticker[0]], logreturn_trade[self.ticker[1]]
      -
      -    # estimate Kendall'rank correlation each trading day
      -    tau = kendalltau(x, y)[0]
      -
      -    # etstimate the copula parameter: theta
      -    self.theta = self._parameter(self.copula, tau)
      -
      -    # simulate the empirical distribution function for returns of two paired stocks
      -    self.ecdf_x, self.ecdf_y  = ECDF(x), ECDF(y)
      -    # run linear regression over the two history return series
      -    ols = linear_model.LinearRegression()
      -    self.coef = ols.fit(np.array(price[self.ticker[0]]).reshape(-1,1), np.array(price[self.ticker[1]])).coef_
      -
      -
      -Finally during the trading period, each day we convert today's returns to u and v by using empirical distribution functions ecdf_x and ecdf_y. After that, two mispricing indexes are calculated every trading day by using the estimated copula C.  The algorithm constructs short positions in X and long positions in Y on the days that \(MI_{Y|X}<0.05\) and \(MI_{X|Y}>0.95\). It constructs short position in Y and long positions in X on the days that \(MI_{Y|X}>0.95\) and \(MI_{X|Y}<0.05\). -
      def OnData(self,data):
      -    for i in self.syl:
      -        self.price_list[i].append(self.Portfolio[i].Price)
      -    # compute today's log return of 2 stocks
      -    if len(self.price_list[self.syl[0]]) < 2 or len(self.price_list[self.syl[1]]) < 2: return
      -    else:
      -        return_x = np.log(float(self.price_list[self.syl[0]][-1]/self.price_list[self.syl[0]][-2]))
      -        return_y = np.log(float(self.price_list[self.syl[1]][-1]/self.price_list[self.syl[1]][-2]))
      -    # Convert the two returns to uniform values u and v using the empirical distribution functions
      -    u_value = self.ecdf_x(return_x)
      -    v_value = self.ecdf_y(return_y)
      -    # Compute the mispricing indices for u and v by using estimated copula
      -    self._misprice_index(self.copula, self.theta, u_value, v_value)
      -    quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      -    if self.MI_u_v < self.floor_CL and self.MI_v_u > self.cap_CL:
      -        if self.Portfolio[self.syl[0]].Quantity < 0 and self.Portfolio[self.syl[1]].Quantity > 0:
      -            self.Liquidate(self.syl[0])
      -            self.Liquidate(self.syl[1])
      -            quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      -            self.Sell(self.syl[1], 1 * quantity )
      -            self.Buy(self.syl[0], self.coef * quantity)
      -        else:
      -            self.Sell(self.syl[1], 1 * quantity )
      -            self.Buy(self.syl[0], self.coef * quantity)
      -    elif self.MI_u_v > self.cap_CL and self.MI_v_u < self.floor_CL:
      -        if self.Portfolio[self.syl[0]].Quantity > 0 and self.Portfolio[self.syl[1]].Quantity < 0:
      -            self.Liquidate(self.syl[0])
      -            self.Liquidate(self.syl[1])
      -            quantity = self.CalculateOrderQuantity(self.syl[1],0.4)
      -            self.Buy(self.syl[1], 1 * quantity )
      -            self.Sell(self.syl[0], self.coef * quantity)
      -        else:
      -            self.Buy(self.syl[1], 1 * quantity )
      -            self.Sell(self.syl[0], self.coef * quantity)
      -

      Part II: Cointegration Method

      -For the cointegration pairs trading method, we choose the same ETF pair "GLD" & "DGL".  There is no need to choose a copula function so there is only a 12 month rolling formation period. The trading period is 5 years from January 2011 to  May 2017. -

      Step 1: Generate the Spread Series

      -At the start of each month, we generate the log price series of two ETFs with the daily close. Then the spread series is estimated using regression analysis based on log price series data. - -For equities X and Y, we run linear regression over the log price series and get the coefficient β. - -\[spread_t=\log(price_t^y)-\beta \log(price_t^x)\] -

      Step 2: Compute the Threshold

      -
      -
      -
      - -Using the standard deviation of spread during the rolling formation period, a threshold of two standard deviations is set up for the trading strategy as indicated in the paper. - -
      -
      def _set_signal(self):
      -    history = self.History(self.numdays,Nullable[Resolution](Resolution.Daily))
      -    logprice = {}
      -    for j in range(len(self.syl)):
      -        close = []
      -        for slice in history:
      -            bar = slice[self.syl[j]]
      -            close.append(bar.Close)
      -        logprice[self.ticker[j]] = np.log([float(z) for z in close])    # generate the log return series of stock price
      -    # run linear regression over the two history log price series
      -    reg = linear_model.LinearRegression()
      -    x,y = logprice[self.ticker[0]],logprice[self.ticker[1]]
      -    reg.fit([[n] for n in x],y)
      -    self.coef = reg.coef_    # reg.intercept_
      -    self.spread = y - self.coef * x  #compute the spread series based on regression result
      -    self.mean, self.std = np.mean(self.spread),np.std(self.spread)
      -
      -    logprice_x = np.log(float(self.Portfolio[self.syl[0]].Price))
      -    logprice_y = np.log(float(self.Portfolio[self.syl[1]].Price))
      -
      -    syl_x, syl_y = self.syl[0],self.syl[1]
      -    quantity = float(self.CalculateOrderQuantity(syl_x,0.4))
      -
      -    current_spread = float(logprice_y) - self.coef * float(logprice_x)
      -
      -    if current_spread > self.mean + self.threshold * self.std:
      -        self.Sell(syl_y, np.exp(self.coef) * quantity)
      -        self.Buy(syl_x,  quantity)
      -    elif current_spread < self.mean - self.threshold * self.std:
      -        self.Buy(syl_y, np.exp(self.coef) * quantity )
      -        self.Sell(syl_x,  quantity)
      -    if self.Portfolio[self.syl[0]].Quantity != 0 and self.Portfolio[self.syl[1]].Quantity != 0:
      -        if  current_spread < 0.5 * self.std and current_spread > -0.5 * self.std:
      -            self.Liquidate()
      -
      -
      -
      -
      -
      -
      -

      Step 3: Set up the Trading Signals

      -On each trading day, we enter a trade whenever the spread moves more than two standard deviations away from its mean. In other words, we construct short positions in X and long positions in Y on the day that spread>mean+2*std. We construct short positions in Y and long positions in X on the day that spread<mean-2*std. The trade is exited if the spread reverts to its equilibrium (defined as less than half a standard deviation from zero spread). - -The value of mean and standard deviation are calculated from the rolling formation period and will be updated once a month. - -
      -
      -
      -

      Conclusion

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      methodTransactionsProfitSharpe RatioDrawdown
      Copula347325.4%1.00520.2%
      Cointegration3371.2%0.78115.6%
      -Ultimately pairs trading intends to capture the price divergence of two correlated assets through mean reversion. Our results demonstrate that the copula approach for pairs trading is superior to the conventional cointegration method because it is based on the probability of the dependence structure, vs cointegration which relies on simple linear regression variance from normal pricing. We found through testing the performance of the copula method less sensitive to the starting parameters. Because the cointegration method relies on standard distribution and the ETF pairs had low volatility there were few trading opportunities. - -Generally, ETFs are not very volatile and so mean-reversion did not provide many trading opportunities. There are only 39 trades during 5 years for cointegration method. - -It is observed that the use of copula in pairs trading provides more trading opportunities as it does not require any rigid assumptions[ref]Liew R Q, Wu Y. Pairs trading: A copula approach[J]. Journal of Derivatives & Hedge Funds, 2013, 19(1): 12-30.[/ref]. -

      Backtest

      -Backtest for copula method - -Backtest for cointegration method - diff --git a/Strategy Tutorials/Tutorial04 The Dynamic Breakout II Strategy.html b/Strategy Tutorials/Tutorial04 The Dynamic Breakout II Strategy.html deleted file mode 100644 index 6f79c26..0000000 --- a/Strategy Tutorials/Tutorial04 The Dynamic Breakout II Strategy.html +++ /dev/null @@ -1,64 +0,0 @@ -

      Abstract

      -In this tutorial we will take a close look at the Dynamic Breakout II strategy based on the book Building Winning Trading Systems [ref]George Pruitt, John R. Hill, Michael Russak (September 2012). Building Winning Trading Systems, page 126,  Online Copy[/ref]. - -First we decide the look-back period based on the change rate of volatility, then we make trading decisions based on the highest high and lowest low from the look back period as well as a Bollinger Bands indicator. It is an auto adaptive trading system that can adjust its buy and sell rules depending on the performance of these rules in the past. In addition to Forex markets it is widely used in future and equity markets. You can refer to this video to learn more about dynamic break out II. - -The original Dynamic Break Out system was developed by George Pruitt for Futures Magazine in 1996. The logic behind the dynamic breakout system is that the volatility component changes the lookback period, then the enter and exit points are decided by the highest high and lowest low price over the lookback period.  The newer version of the Dynamic Break Out is just like the original, except we introduce the Bollinger Band and adjust the number of look back days using the market volatility, so different market conditions perform better with different parameters. In addition, the stop loss signal is fixed in version one, but in version two the liquidate point is based on the moving average indicator and the length of moving average is dynamically changed with the look-back period. - -We backtested the strategy on EURUSD and GBPUSD over 6 years period.  The result suggests a drawdown of 20% and the strategy caught the market turning points. It is especially profitable in a trending market. -

      Method

      -

      Step 1: Determine the look back periods

      - -The lookback period is the number of bars back from the most recent bar that the price or indicator looks at to make the momentum calculations.[ref]Robert C. Miner(October 20, 2008). High Probability Trading Strategies: Entry to Exit Tactics for the Forex, Futures, and Stock Markets, page 37,  Online Copy[/ref]     - -To start the look back period is set to 20 days to determine its buy and sell levels. We change the number of look back days in proportion to changes in market volatility. Through this method the number of look back days changes on a daily basis. At the end of each day, the current market volatility is calculated by the standard deviation of the past 30 day's closing prices. -
      close = self.History(self.syl, 31, Resolution.Daily)['close']
      -   todayvol = np.std(close[1:self.numdays+1])
      -   yesterdayvol = np.std(close[0:self.numdays])
      -   deltavol = (todayvol - yesterdayvol) / todayvol
      -   self.numdays = round(self.numdays * (1 + deltavol)) # the number of days must be integer
      -
      - -Though the look back days are dynamic, it needs to be restricted within an acceptable range of 20 to 60. - -

      Step 2: Choose the algorithm buy/sell point

      - -For a buy setup, the close price of the previous day must be above the upper Bollinger Band. In addition the ask price must be above the highest high of the most recent N days. Where N is the look back days from Step-1. - -For a sell setup, the close price of previous day must be below the lower Bollinger Band and the ask price must be below the lowest low of the most recent N days. The length of the Bollinger Band calculation is the same number of look back days that is generated by Step-1. - -Bollinger Band is a popular technical indicator. k is a constant. Here we choose k=2. -\[ Upper Band = moving\ average + k\times standard\  deviation \] - -\[ Lower Band = moving\ average - k\times standard\  deviation \] - -  - -QuantConnect provides more than 100 technical indicators for you to use in your algorithm. These are provided as class objects in Python. A full list of the indicators and their properties can be found in the reference table of the documentation page. -
      self.bolband = self.BB(self.syl,self.numdays,decimal.Decimal(2),MovingAverageType.Exponential,Resolution.Daily)
      -     self.upband = self.bolband.UpperBand
      -     self.lowband = self.bolband.LowerBand
      -
      -

      Step 3: Choose the algorithm liquidation point

      -The exit signal for an existing holding is determined by calculating a simple moving average of closing prices for the past look back days. That is to say, we liquidate a long position if the current price is lower than the moving average of the close price over the look back period, and vice versa for selling a short position. -
      self.buypoint = max(self.high)
      -self.sellpoint = min(self.low)
      -historyclose = self.History(self.syl, self.numdays, Resolution.Daily)['close']
      -self.longLiqPoint = np.mean(historyclose)
      -self.shortLiqPoint = np.mean(historyclose)
      -self.yesterdayclose = historyclose.iloc[-1]
      -
      -

      Conclusion

      -For six years backtesting of EURUSD, the overall statistics show an annual rate of return of 2.3% and with a Sharpe Ratio of 0.31. EURUSD has a significant uptrend from 2010 to 2012. This momentum strategy outperforms the market and seems to be profitable from 2010 to 2014.  The maximum drawdown occurs in May 2015 to December 2015 and is roughly 14%. From our results we find the strategy works best in an trending forex market. - -In contrast, GBPUSD is pretty volatile during the tested period from 2010 to 2016. Our testing demonstrated a negative annual rate of return with a drawdown of approximately 19%. - -When the volatility decreases, the price tends to continue following the current trend. Volatility causes the the look back days to decrease when computing the bollinger bands, making it easier to enter a trade.  If the market volatility increases we increase the look back days in order to filter the fake signals, making it harder to enter a trade. - -Here we use the standard deviation of price as a measure of market volatility. To improve the model we could choose other measures of volatility like standard deviation of logarithm return series or other stochastic volatility measures. - -

      Algorithm

      -Backtest for EURUSD - -Backtest for GBPUSD - diff --git a/Strategy Tutorials/Tutorial05 Dual Thrust Trading Algorithm.html b/Strategy Tutorials/Tutorial05 Dual Thrust Trading Algorithm.html deleted file mode 100644 index e586713..0000000 --- a/Strategy Tutorials/Tutorial05 Dual Thrust Trading Algorithm.html +++ /dev/null @@ -1,49 +0,0 @@ -

      Abstract

      -The Dual Thrust trading algorithm  [ref]Gang Wei(May 2012). Dual Thrust Intraday Strategy,  Online Copy[/ref] is a famous strategy developed by Michael Chalek. It has been commonly used in futures, forex and equity markets. The idea of Dual Thrust is similar to a typical breakout system, however dual thrust uses the historical price to construct update the look back period - theoretically making it more stable in any given period. - -In this tutorial we give a brief introduction to the strategy and show how to implement this algorithm on QuantConnect. After pulling in the historical price of the chosen stock, the range is calculated based on the close, high and low over the most recent N-days.  A position is opened when the market moves a certain range from the opening price. We tested the strategy on individual stocks under two market states: a trending market and range bound market.  The results suggest this momentum trading system works better in trending market but will trigger some fake buy and sell signals in much more volatile market. Under the range bound market, we can adjust the parameters to get better return. As a comparison of individual stocks, we also implemented the strategy on SPY. The result suggested that the strategy beat the market. -

      Method

      -

      Step 1 : Initialization of algorithm

      -Firstly we need to initialize the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must be initialized. -
      def Initialize(self):
      -    self.SetStartDate(2016, 4, 12)
      -    self.SetEndDate(2017, 3, 19)
      -    self.SetCash(100000)
      -    equity = self.AddSecurity(SecurityType.Equity, "AAON", Resolution.Hour)
      -
      -Although this is an intraday strategy, we still want to test the strategy within a long period not just within one day. The scheduling methods sets up an event to fire at a specific date or time and will execute the scheduled event function. -
      self.Schedule.On(self.DateRules.EveryDay(self.syl),self.TimeRules.AfterMarketOpen(self.syl,0),Action(self.SetSignal))
      -
      -Here Schedule.On(DateRules, TimeRules, Action()) will trigger every trading day for our stock, at market open. Events are scheduled using date and time rules. Date rules specify on what dates and event will fire. Time rules specify at what time on those dates the event will fire. Inside of the scheduled function, we can pull the recent historical data and current open price each trading day. -

      Step 2:  Implementation of algorithm

      -dual thrust price range”/>
-
-In order to calculate the range, each trading day we need the close, high and low price data over the most recent N days. In addition, the open price of the current day is required in order to generate the signals. QuantConnect provides History(Symbol, TimeSpan, Resolution) method to get the history data like open, close, high and low for all configured securities over the requested N-days time span. Then the range is calculated by \[range = max(HH-LC, HC-LL)\]. In this implementation we choose N=4. It is less than one week and the range would reflect the recent price change.
-<pre class=history = self.History([self.syl.Value], 4, Resolution.Daily) - self.high = history.loc[self.syl.Value]['high'] - self.low = history.loc[self.syl.Value]['low'] - self.close = history.loc[self.syl.Value]['close'] -
-

Step 3: Trading Implementation

-The long signal is calculated by \[cap = open + K_1 \times Range\]. The short signal is calculated by \[floor = open – K_2 \times  Range\] where K1 and K2 are the parameters. When K1 is greater than K2, it is much easier to trigger the long signal and vice versa. For demonstration, here we choose K1 = K2 = 0.5. In live trading, we can still use historical data to optimize those parameters or adjust the parameters according to the market trend. K1 should be small than k2 if you are bullish on the market and k1 should be much bigger if you are bearish on the market. -dual thrust trading”/>
-
-This system is a reversal system, so if the investor holds a short position when the price breaks the cap line, the short margin should be liquidated first before opening a long position. If the investor holds a long position when the price breaks the floor line, the long margin should be liquidated first before opening a new short position.
-<pre class= holdings = self.Portfolio[self.syl].Quantity - if self.Portfolio[self.syl].Price >= self.selltrig: - if holdings >= 0: - self.SetHoldings(self.syl, 1) - else: - self.Liquidate(self.syl) - self.SetHoldings(self.syl, 1) - elif self.Portfolio[self.syl].Price < self.selltrig: if holdings >= 0: - self.Liquidate(self.syl) - self.SetHoldings(self.syl, -1) - else: - self.SetHoldings(self.syl, -1)
-

Conclusion

-We tested this strategy on the S&P 500 ETF SPY from 2004 to 2017. During the backtesting period, SPY resulted in a Sharpe Ratio of 0.906 and the drawdown is 25%.  As expected the strategy works well in a trending market. The strategy seemed to detect most of the market turning points and beat the market from 2009 to 2017. -This is just a basic implementation and the parameters K1 and K2 are fixed. The strategy can be further extended to Futures and Forex markets. When K1 is smaller than k2, buy signals are prone to trigger and vice versa. To improve the model we can apply technical indicators to judge the trend of price and adjust the value of two parameters dynamically and apply risk control in the position sizing. -

Algorithm

-Backtest result for ETF: SPY from 2004 to 2017 - diff --git a/Strategy Tutorials/Tutorial06 Can Crude Oil Predict Equity Returns.html b/Strategy Tutorials/Tutorial06 Can Crude Oil Predict Equity Returns.html deleted file mode 100644 index 49e0446..0000000 --- a/Strategy Tutorials/Tutorial06 Can Crude Oil Predict Equity Returns.html +++ /dev/null @@ -1,94 +0,0 @@ -

Abstract

-In this tutorial we use regression to predict the return from the stock market and compare it to the short-term U.S. T-bill rate. It is based on the paper?"Striking Oil: Another Puzzle?". [ref]Gerben, Driesprong (2007). Striking Oil: Another Puzzle? page 1, Online Copy[/ref] by?by Gerben, Ben and Benjamin (2007). - -If the predicted return is larger than the risk-free rate, the portfolio is fully invested in stock; if the predicted return is lower than the risk-free rate, the portfolio is invested in short-term U.S T-bills. The backtesting period starts in 1980 and is divided into an in-sample period where regression analysis is made and an out?of sample period where the regression result is embedded "statically" into the strategy. - -In our implementation of the strategy we adapt the method of the original paper to make it more applicable to the current market. We have set our backtesting period to be from 2010 to 2017 and we refresh our regression analysis each month to form a rolling dynamic projection. This is because?empirical evidence shows?us the correlation between oil and stocks is not as strong as in the 1980's. We use?the price of S&P GSCI? Crude Oil Total Return Index ETNs to represent spot oil price, and import T-bill data from Quandl by defining a custom class.?We use the "Schedule" API to trigger an event every month automatically?and the "History" function to retrieve data for regression analysis. - -Our analysis shows this strategy under performs the market in recent years. In the 9 year analysis period the algorithm was mostly long the S&P500 index and only 9 trades were performed as the markets were strongly bullish. The trades could potentially simply be due to the weakening of the relationship between stocks and oil. -

Background

-We assume the predicted return of the stock is proportional to the return of oil. This can be represented by the regression equation: - -\[r^{stock}_t=a_0+a_1r^{oil}_{t-1}+e_t\] - -with - -\[e_t=r^{stock}_t-E_{t-1}[r^{stock}_t]\]. - -The independent variable is the return of the oil and the dependent variable is the return of the stock. We use the monthly returns over a regression period of 2 years, giving us 22 observations to regress.?Every month regression analysis is conducted, and we use the estimated coefficient from the regression to compute the expected stock return with the given return of oil. -

Method

-The algorithm implementation consists of mainly three parts: Defining the custom imported data, initialization of the strategy parameters, and monthly re-balancing of the portfolio. -

Step 1: Defining Custom Imported Data

-We import T-Bill data from Quandl - a marketplace for financial, economic and alternative data. This requires defining a small class that tells QuantConnect how to interpret?the Quandl data. -
class TBill(PythonData):
-    def GetSource(self, config, date, isLiveMode):
-        return SubscriptionDataSource("https://www.quandl.com/api/v3/datasets/USTREASURY/BILLRATES.csv?api_key=XXXXXXXXX&order=asc", SubscriptionTransportMedium.RemoteFile)
-    def Reader(self, config, line, date, isLiveMode):
-        tbill = TBill()
-        tbill.Symbol = config.Symbol
-        # Example Line Format:
-        # Date      4 Wk Bank Discount Rate   
-        # 2017-06-01 		0.8    
-        if not (line.strip() and line[0].isdigit()): return None
-        try:
-            data = line.split(',')
-            value = float(data[1])*0.01
-            value = decimal.Decimal(value)
-            if value == 0: return None
-            tbill.Time = datetime.strptime(data[0], "%Y-%m-%d")
-            tbill.Value = value
-            tbill["Close"] = float(value)
-            return tbill;
-        except ValueError:
-            return None
-
-We first provide the source of the data as a URL to Quandl's API in the GetSource method. We need to make sure the data is?organized in ascending order which is done with the?"order=asc" parameter.?You need to substitute the API key in the URL for your personal Quandl API token. - -The Reader method parses a line of the data file. When using custom data you need to minimally set?the Time property?and Value property. In this example we find the value property from the headings in the spreadsheet is the second column and we reference it with data[1]. We set the Close property to the same value. - -In our "Initialize" function we use the following commands to add the custom data into our portfolio. -
self.AddData(TBill, "tbill")
-self.tbill = self.Securities["tbill"].Symbol
-
-

Step 2: Initialization of the Strategy Parameters

-In our?"Initialize" function we set the cash amount, start-end date as well as other parameters that are specific to this strategy.?We set two parameters for the regression analysis period: -
self.regPeriod = 24
-self.daysInMonth = 21
-
-The variable "regPeriod" indicates how many months we are going to take into consideration in our regression analysis. We assume 21 days per month and request a historical period of approximately 2 years. We jump back in steps of 21 days and assume it is roughly 1 month of return. - -We need to set up "Schedule" function in "Initialize" so as to trigger the monthly re-balancing function every month. -
self.Schedule.On(self.DateRules.MonthStart(self.spy), self.TimeRules.AfterMarketOpen(self.spy),Action(self.MonthlyReg))
-
-

Step 3: Monthly Re-balancing of the Portfolio

-Every month we reconstruct the regression analysis to determine whether to be 100% long stocks or T-Bill contracts. We perform this re-balancing in the MonthlyReg function at the start of each month.?We use the History function to retrieve historical data for oil and stocks?and then divide the T-Bill rate by 12 to make it comparable to the monthly expected return of stocks. -
oilHist = self.History(self.oil, self.regPeriod*self.daysInMonth, Resolution.Daily)
-spyHist = self.History(self.spy, self.regPeriod*self.daysInMonth, Resolution.Daily)
-oilSeries = [float(x.Close) for x in oilHist][self.daysInMonth-1:self.regPeriod*self.daysInMonth:self.daysInMonth]
-spySeries = [float(x.Close) for x in spyHist][self.daysInMonth-1:self.regPeriod*self.daysInMonth:self.daysInMonth]
-rf = float(self.Securities[self.tbill].Price)/12.0
-
-Then we make an OLS regression by using "numpy" to make the prediction on next month's stock return. -
x = np.array(oilSeries)
-x = (np.diff(x)/x[:-1])
-y = np.array(spySeries)
-y = (np.diff(y)/y[:-1])
-A = np.vstack([x[:-1],np.ones(len(x[:-1]))]).T
-beta, alpha = np.linalg.lstsq(A,y[1:])[0]
-yPred = alpha + x[-1]*beta
-
-Finally, we compare the expected return of stocks with risk-free rate. If the former is larger than the latter, we invest fully in stocks; otherwise we liquidate our holdings. Because we cannot purchase T-Bill contracts the performance is likely slightly underestimated. -
if yPred > rf:
-	self.SetHoldings(self.spy, 1)
-else:
-	self.Liquidate(self.spy)
-

Conclusion

-We backtested this strategy over the period beginning in 2010 and ending in 2017. It has a sharpe ratio of 0.72 beating the benchmark's 0.6 over a similar period. - -Although the annual return closely matches that of the paper,?it is largely a coincidence of the strong bull market in recent years.?If we look at the monthly regression results, we could find that in most cases, the p-value is not small enough to reject the null hypothesis that there is no correlation between oil and stocks. So the investment decisions based on the insignificant statistical results are almost meaningless. The performance of this strategy cannot effectively beat the benchmark, mostly?due to?the weakened correlation between oil and stocks. - -Further research and backtesting could be conducted on assets other than oil that have a stronger relationship with stocks. -

Algorithm

-Strategy code, as well as backtesting result, is attached below. We also put other choices of implementation in the comments. - - \ No newline at end of file diff --git a/Strategy Tutorials/Tutorial07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach.html b/Strategy Tutorials/Tutorial07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach.html deleted file mode 100644 index 35884ce..0000000 --- a/Strategy Tutorials/Tutorial07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach.html +++ /dev/null @@ -1,328 +0,0 @@ -

Abstract

-In this tutorial we implement a high frequency and dynamic pairs trading strategy based on market-neutral statistical arbitrage strategy using a two-stage correlation and cointegration approach. This strategy is based on George J. Miao's work.[ref]George J. Miao High Frequency and Dynamic Pairs Trading Based on Statistical Arbitrage Using a Two-Stage Correlation and Cointegration Approach Online Copy[/ref]We applied this trading strategy to the U.S. bank sector stocks, backtested this strategy with 10-minute stock data from 2012 to 2013. Our trading strategy yields a compounding annual return up to 29.4% and a 0.968 sharpe ratio. - -This strategy is especially profitable when the market is performing poorly. The profit is resulted from mispricing, and mispricings are likely to happen when the market goes down or volatility increases. - -To explore this strategy further, we design this strategy to be flexible. We can change the data resolution into 5 minutes, 10 minutes or even 30 minutes by simply changing a parameter. It's also essential to choose optimized entering, closing and stop loss threshold. Everyone can has his/her own version of this strategy. -

Introduction

-High Frequency Trading(HFT) is a type of quantitative trading characterized by short holding period and the use of sophisticated computer method to trade securities rapidly. It aims to capture small profit on every short-term trade.(Cartea & Penalva, 2012[ref]Cartea & Penalva, 2012 Where is the value in high frequency trading? Online Copy[/ref]). -
-
-
- -Statistical arbitrage is a situation where there is a statistical mispricing of one or more assets based on the expected values of these assets. When a profit situation takes place from pricing inefficiencies between securities, traders can identify the statistical arbitrage situation through mathematical models. Statistical arbitrage depends heavily on the ability of market prices to return to a historical or predicted mean. The Law of One Price(LOP) lays the foundation for this assumption. LOP states that two stocks with the same payoff in every state of nature must have the same current value (Gatev, Goetzmann, & Rouwenhorst, 2006[ref]Gatev, Goetzmann, & Rouwenhorst, 2006 Pairs trading: Performance of a relative-value arbitrage rule. The Review of Financial Studies, 19(3), 797–827. Online Copy[/ref]) Thus, two stock prices spread between close substitute assets should have a stable, long-term equilibrium price over time. - -
-

Data Description

-In order to have more pairs with high correlation, we select stocks in a specific industry. Economically, we prefer traditional sectors because the companies in these sector are more likely to be close substitutes. If we selected N stocks, the number of pairs can be calculated by \(\textrm{C}_{n}^{2} = \frac{n*(n-1)}{2}\). In the demonstrated strategy we used 80 stocks, so we have 3160 pairs in total. We used minute data and aggregate them into lower resolution, thus 1 minute is the highest resolution for this strategy. -

Correlation Approach

-Correlations measure the relationship between two stocks that have price trends. They tend to move together, and thus are correlated. Correlation filter is the first step to screen the candidate pairs. - -Consider two stocks A and B, a correlation coefficient between the stocks was a statistic that provide a measure of how the two stocks A and B were associated. The correlation coefficient \(\rho\) of stock A and stock B was obtained by - -\[\rho = \frac{\sum_{i}^{N}(A_i - \bar{A})(B_i - \bar{B}))}{[\sum_{i}^{N}(A - \bar{A})^2\sum_{i}^{N}(B_i - \bar{B})^2]^\frac{1}{2}}}\] - -Where \(\bar{A}\) and \(\bar{B}\) are the mean prices of stock A and stock B respectively, N denoted a trading data range. \(\rho\) is in the range of [-1,1]. The more positive \(\rho\) is, the more positive the association of stock A and stock B is. - -However, the pairs trading based on a correlation approach alone would have a disadvantage of instabilities over time. Correlation coefficients do not necessarily imply  mean-reversion between the prices of the two stock pairs. In order to overcome the above issue, a cointegration approach was further used as the second-step of the selection process for the pairs. -

Cointegration Approach

-The Cointegration concept, an innovative mathematical model in economics developed by Nobel laureates Engle and Granger[ref]Engle and Granger Co-integration and error correction: Representation, estimation, and testing. Econometrica, 55(2), 251–276. Online Copy[/ref]Cointegration states that, in some instances, despite two given non-stationary time series, a specific linear combination of the two time series is actually stationary. In other word, the two time series move together in a lockstep pattern. - -The definition of cointegration is the following: assume that \(x_t\) and \(y_t\) are two time series that were non-stationary. If there exists a parameter \(\gamma\) such that the following equation: - -\[z_t = y_t - \gamma x_t\] - -was a stationary process, then \(x_t\) and \(y_t\) would be cointegrated. This process is a powerful tool for investigating common asset trends in multivariate time series. - -In our case, Let \(p_t^A\) and \(p_t^B\) be the prices of two stocks A and B respectively. If it is assumed that {\({p_t^A, p_t^B}\)} is individually non-stationary, there exists the parameter \(\gamma\) such that the following equation was a stationary process - -\[P_t^A - \gamma P_t^B = \mu + \epsilon_t\] - -where \(\mu\) is a mean of the cointegration model. \(\epsilon_t\) is a stationary, mean-revering process and was referred to as a cointegration residual. The parameter \(\gamma\) is known as a cointegration coefficient. The equation above represents a model of cointegrated pair for stocks A and B. - -It's essential to understand how the conitegration residual together with the cointegration coefficient determines our trading direction. If \(\epsilon\) is positive, in a given confidence interval, this is a signal that stock A is relatively overpriced and stock B is relatively underpriced, and we are going to long B and short A; If If \(\epsilon\) is negative, we are going to long A and short B. -

Cointegration Verification(optional reading part)

-
-
-
- -In the Engle-Granger method(Engle & Granger, 1987), we first set up a cointegration regression between stock A and stock B as stated in the equation above, and then estimate the regression parameters \(\mu\) and \(\gamma\) using an ordinary least squares(OLS). Subsequently, we tested the regression residual \(epsilon_t\) to determine whether or not it was stationary. - -The most popular stationary test in the area of cointegration, the Augmented Dickey Fuller (ADF) test, was used on the regression residual \(\epsilon\) to determine whether it had a unit root. -
-
-
- -Testing for the presence of the unit root in the regression residual using the ADF test was given by - -\[\Delta Z_t = \alpha + \beta t + \gamma Z_{t-1} + \sum_{i = 1}^{p -1}\delta_i \DeltaZ_{t-i} + \mu_t\] - -where \(\alpha\) is a constant, \(\beta\) is the coefficient on a time trend, p is the lag of order of the autoregressive process, \(\mu_t\) is an error term and serially uncorrelated. - -The number of lag order p in the equation is usually unknown and therefore had to be estimated. To determine the number of lag p, the information criteria for lag order selection was used. Here we choose Bayesian Information Criterion(BIC) - -\[BIC = (T-p)\ln\frac{T\hat{\sigma}_p^2}{T-p} + T[1+ln(\sqrt{2\pi})] + p\ln[\frac{\sum_{t=1}^{T}(\Delta Z_t)^2 -T\hat{\sigma}_p^2}{p}]\] - -Where T is the sample size. - -The unit root test for the regression residual \(\epsilon\) using the ADF test was then carried out under the null hypothesis \(H_0 : \gamma = 0\) versus the alternative hypothesis \(H_1 : \gamma < 0\). A statistical value of the ADF test was obtained by - -\[ADF  test = \frac{\hat{\gamma }}{SE(\hat{\gamma })}\] - -The test result in the equation above is compared with the critical value of the ADF test. If the test result is less than the critical value, then the null hypothesis is rejected. This means the regression residual \(\epsilon\) is stationary. Thus, the two stock prices {\({p_t^A, p_t^B}\)} are cointegrated. -

Pairs Trading Strategy

-The pairs trading strategy uses trading signals based on the regression residual \(\epsilon\) and were modeled as a mean-reverting process. - -In order to select potential stocks for pairs trading, the two-stage correlation and cointegration approach was used. The first step is to identify potential stock pairs from the same sector, where the stock pairs are selected with correlation coefficient of at least 0.9 using the correlation approach. The second step is to check the the cointegration of the pairs passed the correlation test. If the test value of cointegration is equal or less than -3.34, which is the critical value at a 95% confidence lever, the null hypothesis \(H_0 : \gamma = 0\) is rejected, thus the residual \(\epsilon\) is stationary, and the pair passed the cointegration test. The third step is to rank all of the stock pairs that passed the two-stage test according to their cointegration test values. The smaller the cointegration test value is, the higher rank the stock pair is assigned to. Financial selection of the stock pairs from the top rank is used for pairs trading. - -The final step of the strategy is to define trading rules. To open a pairs trading, the regression residual \(\epsilon_t\) must cross over and down the positive \(\sigma\) standard deviation above the mean or cross down and over the negative \(\sigma\) standard deviation below the mean. If the residual is positive, we short stock B and long stock A; if the residual is negative, we short Stock A and long Stock B. When the regression residual (\epsilon_t\) returned to a certain level, the pairs trading is closed. Further more, in order to prevent the loss of too much on a single pairs trading, a stop-loss is used to close the pairs when the residual hit \(4\epsilon\) positive or negative standard deviation. - -In the training period, each of the training data contained a 3-month period, which is a dynamic rolling window size. Immediately after the training period, we begin our one-month trading period, and the dynamic rolling window automatically shift ahead to record the new prices of the stocks in each pair. After the first trading period, we use the updated stock prices to select our pairs for trading again, and begin another trading period. -

Parameter Adjustment

-The performance of the strategy is sensitive to the parameters. There are  mainly four parameter to adjust: Opening Threshold, Closing Threshold, Stop-loss Threshold and data resolution. - -Opening threshold represents by how many times the residual \(\epsilon\) exceed the standard deviation, which is calculated by \(\frac{\epsilon - \bar{\epsilon}}{\sigma}\). By default we set it to 2.32 and -2.32, which is the critical value for 99% confidence interval if we assume the residual follows normal distribution. - -Closing threshold is calculated in the same way as opening threshold, we set it to 0.5 by default to close early to prevent further divergence. - -Stop-loss Threshold is set to 4.5. This depends on the level of mispricing we can bear. The higher degree our tolerance to risk is, the higher we can set this parameter. However, if we set this number too low, we may have too many pairs closed before reversion to stop loss. - -
-  -

Method

-In this trading strategy we would define a class named 'pairs'. We manage pairs instead of stocks directly to make it's more convenient for us to calculate correlation and cointegration, update stock prices in the pair and trade on the selected pairs. -

Step 1: Pairs Class Definition

-The pairs is made up of two stocks, stock A and stock B. This class has several properties. The basic properties include symbols of stock A and stock B, the pandas DataFrame that contains time and prices of the two stocks, the current error, the error of the last datapoint, and the lists to record stock prices for update purpose. Instead of updating the DataFrame every 5 minutes, we record the prices in lists to update the DataFrame monthly. This would speed up the algorithm at least 10 times because manipulating DataFrame is very time consuming. -The cor_update method is used every month to update the correlation between the two stocks in this pair. The cointegration_test method is also used monthly to do OLS regression, conduct ADF test, and calculate the mean and standard deviation of the residual. The method also assign these calculated values as properties to the pair object. -
class pairs(object):
-    def __init__(self, a, b):
-        self.a = a
-        self.b = b
-        self.name = str(a) + ':' + str(b)
-        self.df = pd.concat([a.df,b.df],axis = 1).dropna()
-    # The number of bars in the rolling window would be determined by the resolution, so we get this
-      information from the shape of the DataFrame here.
-        self.num_bar = self.df.shape[0]
-        self.cor = self.df.corr().ix[0][1]
-    # Set the initial signals to be 0
-        self.error = 0
-        self.last_error = 0
-        self.a_price = []
-        self.a_date = []
-        self.b_price = []
-        self.b_date = []
-
-    def cor_update(self):
-        self.cor = self.df.corr().ix[0][1]
-
-    def cointegration_test(self):
-        self.model = sm.ols(formula = '%s ~ %s'%(str(self.a),str(self.b)), data = self.df).fit()
-    # This line conduct ADF test on the residual. ts.adfuller() returns a tuple and the first element in
-      the tuple is the test value.
-        self.adf = ts.adfuller(self.model.resid,autolag = 'BIC')[0]
-        self.mean_error = np.mean(self.model.resid)
-        self.sd = np.std(self.model.resid)
-
-    def price_record(self,data_a,data_b):
-        self.a_price.append(float(data_a.Close))
-        self.a_date.append(data_a.EndTime)
-        self.b_price.append(float(data_b.Close))
-        self.b_date.append(data_b.EndTime)
-
-    def df_update(self):
-        new_df = pd.DataFrame({str(self.a):self.a_price,str(self.b):self.b_price},index =
-                 [self.a_date]).dropna()
-        self.df = pd.concat([self.df,new_df])
-        self.df = self.df.tail(self.num_bar)
-    # after updating the DataFrame, we empty the lists for the incoming data
-        for list in [self.a_price,self.a_date,self.b_price,self.b_date]:
-            list = []
-
-

Step 2: Generate and Clean Pairs

-The function generate_pairs generates pairs using the stock symbols. self.pair_threshold and self.pair_num are pre-determined to control the number of candidate pairs. The pairs in self.pair_list would be kept and updated throughout our backtesting period. we set self.pair_threshold to 0.88 and self.pair_num to 120 to limit the number of pairs in the list. If we put too many pairs in the list, the backtesting would be too time consuming. -The function pair_clean is called after the two-stage screen. If the first pair contains stock A and stock B, and the second pair contains stock B and stock C, we would remove the second pair because the overlapped signal would disturb the balance of our portfolio. -
def generate_pairs(self):
-    for i in range(len(self.symbols)):
-        for j in range(i+1,len(self.symbols)):
-            self.pair_list.append(pairs(self.symbols[i],self.symbols[j]))
-
-    self.pair_list = [x for x in self.pair_list if x.cor > self.pair_threshold]
-
-    self.pair_list.sort(key = lambda x: x.cor, reverse = True)
-
-    if len(self.pair_list) > self.pair_num:
-        	self.pair_list = self.pair_list[:self.pair_num]
-
-def pair_clean(self,list):
-    l = []
-    l.append(list[0])
-    for i in list:
-        symbols = [x.a for x in l] + [x.b for x in l]
-        if i.a not in symbols and i.b not in symbols:
-            l.append(i)
-        else:
-            pass
-    return l
-
-

Step 3: Warming up Period

-This part is under the OnData step. We set self.num_bar equals to the number of TradeBar in three months, which is determined by the resolution. During this period we fill the stock prices in lists, and assign each stock's price list to the symbol as a property. We would also remove the symbol from the symbol list if it has no data. -
if len(self.symbols[0].prices) < self.num_bar:
-    for symbol in self.symbols:
-        if data.ContainsKey(i) is True:
-    	    symbol.prices.append(float(data[symbol].Close))
-            symbol.dates.append(data[symbol].EndTime)
-        else:
-            self.Log('%s is missing'%str(symbol))
-            self.symbols.remove(symbol)
-    self.data_count = 0
-    return
-

Step 4: Pairs Selection

-This process is also under the OnData step. This step would generate pairs if it is the first trading period of this algorithm. If it's not, it will update the DataFrame and correlation coefficient of each pair in self.pair_list. After that the pairs have a correlation coefficient higher than 0.9 would be selected into self.selected_pair. Then all the pairs in self.selected_pair would be tested on their cointegration, and the pairs with a test value less than -3.34 would be selected to the final list. This step will also limit the number of stocks in the final list, by default we set self.selected_num to 10. self.count is a flag to count the number of datapoint we received. Once it reach 1-month amount, that means one trading period is passed and it would be set to 0. -
if self.count == 0 and len(self.symbols[0].prices) == self.num_bar:
-    if self.generate_count == 0:
-        for symbol in self.symbols:
-        symbol.df = pd.DataFrame(symbol.prices, index = symbol.dates, columns = ['%s'%str(symbol)])
-
-        self.generate_pairs()
-        self.generate_count +=1
-        self.Log('pair list length:'+str(len(self.pair_list)))
-
-        for pair in self.pair_list:
-            pair.cor_update()
-    # Update the DataFrame and correlation selection
-    if len(self.pair_list[0].a_price) != 0:
-        for pair in self.pair_list:
-    	    pair.df_update()
-            pair.cor_update()
-
-    self.selected_pair = [x for x in self.pair_list if x.cor > 0.9]
-    # Cointegration test
-    for pair in self.selected_pair:
-        pair.cointegration_test()
-
-    self.selected_pair = [x for x in self.selected_pair if x.adf < self.BIC]
-    self.selected_pair.sort(key = lambda x: x.adf)
-    # If no pair passed the two-stage test, return.
-    if len(self.selected_pair) == 0:
-        self.Log('no selected pair')
-        self.count += 1
-        return
-    # clean the pair to avoid overlapping stocks.
-    self.selected_pair = self.pair_clean(self.selected_pair)
-    # assign a property to the selected pair, this is a signal that would be used for trading.
-    for pair in self.selected_pair:
-        pair.touch = 0
-        self.Log(str(pair.adf) + pair.name)
-    # limit the number of selected pairs.
-    if len(self.selected_pair) > self.selected_num:
-        self.selected_pair = self.selected_pair[:self.selected_num]
-
-    self.count +=1
-    self.data_count = 0
-    return
-
-

Step 5: Trade Period

-It would be too long to read if we paste all the code in trading period together. Thus we would separate the code into three part: updating pairs, opening pairs trading and closing pairs trading. But all those lines are under OnData step and are under the condition: if self.count != 0 and self.count < self.one_month. This means it's in the trading period. -

Updating Pairs

-This step would update the stock prices in each pair. It would also update the signal called 'last_error' and immediately after this the pairs would receive new signals. -
num_select = len(self.selected_pair)
-for pair in self.pair_list:
-    if data.ContainsKey(pair.a) is True and data.ContainsKey(pair.b) is True:
-        i.price_record(data[i.a],data[i.b])
-    else:
-        self.Log('%s has no data'%str(pair.name))
-        self.pair_list.remove(pair)
-
-for pair in self.selected_pair:
-    pair.last_error = pair.error
-
-for pair in self.trading_pairs:
-    pair.last_error = pair.error
-

Opening Pairs Trading

-This is most complex part. For each pair in self.selected_pair, we receive the current prices of the stocks, and then use the cointegration model to calculate the residual \(\epsilon\), which is assigned to the pair as a property named 'error'. self.trading.pairs is a list to store the trading pairs. Once a pairs trading is open, this pair would be add to the list, and it would be removed when the trading is closed. The property 'touch' is signal. If the residual \(\epsilon\) cross over the positive threshold standard deviation(we set \(\ 2.23*sigma\) here), the signal would become +1; while if it cross down the negative threshold deviation(\(\ -2.23*sigma\), the signal would become -1. For those pairs with +1 signal, if the error cross down positive threshold, there is a signal to open a trade. We long stock B and short stock A. For those pairs with -1 signal, if the error cross over negative threshold, we long Stock A and short stock B. -When we opening a trade, we need to record the current model, current mean and standard deviation of the residual. This is necessary because if we enter a new trading period and the trade has not been closed yet, the cointegration model, mean and standard deviation of the pairs would be changed. We need to use the original thresholds to close the trades. while adding the pairs into self.trading_pairs, we also need to set the signal 'touch' to 0 for further use. -
for i in self.selected_pair:
-    price_a = float(data[i.a].Close)
-    price_b = float(data[i.b].Close)
-    i.error = price_a - (i.model.params[0] + i.model.params[1]*price_b)
-    if (self.Portfolio[i.a].Quantity == 0 and self.Portfolio[i.b].Quantity == 0) and i not in
-    self.trading_pairs:
-        if i.touch == 0:
-            if i.error < i.mean_error - self.open_size*i.sd and i.last_error > i.mean_error -
-            self.open_size*i.sd:
-                i.touch += -1
-            elif i.error > i.mean_error + self.open_size*i.sd and i.last_error < i.mean_error + self.open_size*i.sd: i.touch += 1 else: pass elif i.touch == -1: if i.error > i.mean_error - self.open_size*i.sd and i.last_error < i.mean_error -
-            self.open_size*i.sd:
-                self.Log('long %s and short %s'%(str(i.a),str(i.b)))
-                i.record_model = i.model
-                i.record_mean_error = i.mean_error
-                i.record_sd = i.sd
-                self.trading_pairs.append(i)
-                self.SetHoldings(i.a, 5.0/(len(self.selected_pair)))
-                self.SetHoldings(i.b, -5.0/(len(self.selected_pair)))
-                i.touch = 0
-         elif i.touch == 1:
-             if i.error < i.mean_error + self.open_size*i.sd and i.last_error > i.mean_error +
-             self.open_size*i.sd:
-             self.Log('long %s and short %s'%(str(i.b),str(i.a)))
-             i.record_model = i.model
-             i.record_mean_error = i.mean_error
-             i.record_sd = i.sd
-             self.trading_pairs.append(i)
-             self.SetHoldings(i.b, 5.0/(len(self.selected_pair)))
-             self.SetHoldings(i.a, -5.0/(len(self.selected_pair)))
-             i.touch = 0
-         else:
-             pass
-    else:
-        pass
-
-

Closing Pairs Trading

-This part controls pairs trading exit. It works similar to the opening part. It uses the recorded original model and thresholds to determine whether or not we should close the position. If the residual \(\epsilon\) reaches our closing threshold, we liquidate stock A and stock B to close. If the residual continue to deviate from the mean and goes too far, we would also close the position to stop loss. When we close a pairs trading, we also remove the pairs from self.trading_pairs. -
for i in self.trading_pairs:
-    price_a = float(data[i.a].Close)
-    price_b = float(data[i.b].Close)
-    i.error = price_a - (i.record_model.params[0] + i.record_model.params[1]*price_b)
-    if ((i.error < i.record_mean_error + self.close_size*i.record_sd and i.last_error >i.record_mean_error + self.close_size*i.record_sd) or (i.error > i.record_mean_error -
-    self.close_size*i.record_sd and i.last_error  i.record_mean_error +
-    self.stop_loss*i.record_sd:
-        self.Log('close %s to stop loss'%str(i.name))
-        self.Liquidate(i.a)
-        self.Liquidate(i.b)
-        self.trading_pairs.remove(i)
-    else:
-        pass
-

Result

-We used 10-minute resolution data to backtest the strategy from Jan 2013 to Dec 2016. To demonstrate the in sample training results, we randomly selected a training period that from 2016-09-07 to 2013-11-30. -

Training Result

-The following table demonstrates the top 10 selected pairs in the training period mentioned above. We can see that the pairs with the highest correlation coefficient doesn't not necessarily has the best ADF test value. We made the rank by ADF test value because it's more robust. - - - -The upper part of the following chart plots the stock prices of pair ING vs TCB. The lower part plots by how many times standard deviation the residual deviate from its mean. There are 5 trading opportunities if we set the opening threshold to be 2.32. - - - -The following chart is the density plot of the residual error. From the shape we can see the error is approximately normal distributed. - - - -Backtesting Result - -The strategy is considered to be market neutral strategy because it a long/short strategy betting on price convergence. Out backtested beta is -0.112, which is within our expectation. - -Theoretically, the higher resolution we use, the higher win rate is because on one hand the higher resolution would increase the number of datapoint in our training period, which would make it's harder to past the two-stage test; on the other hand the higher resolution data would let us capture minor profit more accurately. However, there is a trade off between performance and backtesting time. The higher resolution will lead backtesting time to increase drastically. - -The number of stocks in the initialize step would also affect our performance. Theoretically, the more stock we have, we better pairs we are likely to pick. But too many stocks would also be time consuming. - -what's worth mentioning is that the optimized parameters are different for each sector. It depends on the features of the price patterns in the specific industry. Plotting the pairs prices and the residual to observe is good option to adjust the thresholds. -

Algorithm

- - -
-
-
-
-
-
-
diff --git a/Strategy Tutorials/Tutorial08 The Momentum Strategy Based on the Low Frequency Compoment of Forex Market.html b/Strategy Tutorials/Tutorial08 The Momentum Strategy Based on the Low Frequency Compoment of Forex Market.html deleted file mode 100644 index 3f08ca8..0000000 --- a/Strategy Tutorials/Tutorial08 The Momentum Strategy Based on the Low Frequency Compoment of Forex Market.html +++ /dev/null @@ -1,182 +0,0 @@ -

Abstract

-Trend estimation is a family of methods to detect and predict tendencies and trends in price series just using the history information. Moving average is a commonly used trend following trading tool. Lots of momentum trading strategies in the Forex market are based on the moving average rule, in which signals are triggered if the close is above or below the moving average. But MA has the time lag, therefore can't be used to predict the turning points of market price changes. - -In this tutorial, I developed a trend following strategy which is proposed in the paper Harris R D F, Yilmaz F(2009) [ref]Harris R D F, Yilmaz F. A momentum trading strategy based on the low-frequency component of the exchange rate[J]. Journal of Banking & Finance, 2009, 33(9): 1575-1585. online copy[/ref]. - -This strategy exploits short-term momentum in the non-linear trend component of the exchange rate which is generated by Hodrick-Prescott Filter (rather than the exchange rate itself) and uses the MA(1, 2) rule to measure this momentum. The strategy was tested on seven kinds of exchange rates and the results shows less robustness and the performance is sensitive to the change of model parameters. - -

Introduction

-Hodrick-Prescott Filter decomposes a time series\(y_t\) into two components: the cyclical part(which is short-term) and the trend part(which is long term). - -\[y_t=\x _t +c_t\] - -The filter is the solution to the following optimization problem for \(x_t\) - -\[\min _{x_t}\left[\sum_{t=1}^n(y_t-x_t)^2+\lambda\sum_{t=2}^{n-1}[(x_{t+1}-x_t)-(x_{t}-x_{t-1})^2] \right]\] - -[ref]Dao T L. Momentum Strategies with L1 Filter[J]. Browser Download This Paper, 2014. online copy[/ref]The second term is the discrete derivative of the trend xt which characterizes the smoothness of the curve. We can rewrite the above formula in vector form: - -\[\min_{\bf x}{\parallel {\bf{y}}-{\bf{x}}\parallel}_2^2+\lambda {\parallel D\bf x\parallel}_2^2\] - -where \({\bf y}=(y_1,y_2,...,y_n),{\bf x}=(x_1,x_2,...,x_n)\in {\rm I\!R}^n\),\(\parallel\cdot\parallel_2\) is the Euclidean norm. D is the (n-2)*n matrix: - -\[ - -\left[ -\begin{matrix} -1 & -2 & 1 & \\ -& 1 & -2 & 1 \\ -& & & \ddots &\\ -& & & 1 & -2 & 1 \\ -& & & & 1 & -2 & 1 \\ -\end{matrix} -\right] - -\] - -The solution of this optimization problem is given by solving the following linear system: - -\[y=(I+2\lambda D^TD)^{-1}x\] -
def hpfilter(self,X, lamb=1600):
-    X = np.asarray(X, float)
-    if X.ndim > 1:
-    X = X.squeeze()
-    nobs = len(X)
-    I = sparse.eye(nobs,nobs)
-    offsets = np.array([0,1,2])
-    data = np.repeat([[1.],[-2.],[1.]], nobs, axis=1)
-    K = sparse.dia_matrix((data, offsets), shape=(nobs-2,nobs))
-    use_umfpack = True
-    self.trend = spsolve(I+lamb*K.T.dot(K), X,use_umfpack=use_umfpack)
-    cycle = X - self.trend
-
- -

Method

- -This low-frequency momentum trading strategies are applied to daily data on seven kinds of exchange rates. We use five years history data before January 2011 for initial estimation of the trend model. Daily exchange rates for the period January 2011 to May 2017 is used for out of sample trading. -
def Initialize(self):
-    self.SetStartDate(2011,1,1)
-    self.SetEndDate(2017,5,30)
-    self.SetCash(100000)
-    self.numdays = 360*5  # set the length of training period
-    self.syl = self.AddSecurity(SecurityType.Forex, "EURUSD", Resolution.Daily).Symbol
-    self.n,self.m = 2, 1
-    self.trend = None
-    self.SetBenchmark(self.syl)
-    self.MA_rules = None
-    history = self.History(self.numdays,Resolution.Daily)
-    self.close = [slice[self.syl].Close for slice in history]
- -

Step 1: Calibrating the Filter Smoothing Parameter λ

-The Ravn–Uhlig rule is commonly used to set the smoothing parameter λ in HP filter and must be greater than 0. It is adjusted by the changing frequency of observations and must be greater than 0. Hodrick and Prescott (1997) recommended setting λ to 1,600 for quarterly data. The Ravn–Uhlig rule sets  \(\lambda = 1600p^4\) , where p is the number of periods per quarter. As for our daily exchange rate data, we should have set λ to be \(\1600\times (30 \times 4)^4\). But when we use this value as the λ, the curve is almost a straight line since the trend becomes smoother as λ → ∞. In order to avoid excessive smoothing, we gradually decrease the λ and draw the smoothing curve. Below is the chart of EURUSD daily price from the year 2010 to 2011. t100 denotes the trend component after filter with the parameter λ=100. - -low-frequency-component-more” />
-
-If we just plot the curve for the first 100 days, we find that the smaller the λ, the more apparent the trend. The curve does not change too much as the λ  smaller than 100. Thus here we choose  λ=100 to extract the trend of daily price data. This trend is our low-frequency component.
-<p style=low-frequency-component-less”/>
-</p>
-
-<p style=Out-of-sample EUR/USD Trend Estimation

- -

out-of-sample-trend-estimation”/> Step 2: Setting up the Moving Average Rule</h3>
-
-Moving average (MA) rules are very commonly used to generate buy and sell signals from data on the spot exchange rate. The MA rule compares a short-run moving average of the current and lagged exchange rate with a long-run moving average.
-
-\[MA(m,n)=\frac{1}{m}\sum_{i=0}^{m-1}S_{t-i}-\frac{1}{n}\sum_{i=0}^{n-1}S_{t-i}\]
-
-
-For HP filter, the non-linear trend is estimated recursively as the paper did. The initial estimation was undertaken using 3 years history data before 2011. The estimation period is then rolled forward each day through the trading period from January 2011 to May 2017.
- 
-<h3>Step 3: Generating the Trading Signals</h3>
-We generate buy and sell signals by applying an MA(1, 2) rule to the estimated low-frequency component. For MA(m,n), m must be 1 which denotes the current value of low-frequency component. n should be small since large n would generate large time lag, the judgment of turning points is not accurate.
-
-A buy signal is generated when the current day’s low-frequency trend is higher than the last day’s low-frequency trend and a sell signal is generated when it is lower.
-<pre class=def OnData(self,data): - self.close.append(self.Portfolio[self.syl].Price) - self.hpfilter(self.close[-self.numdays:len(self.close)+1], 100) - self.MA_rules_today = (np.mean(self.trend[-self.m : len(self.trend)]) - np.mean(self.trend[-self.n : len(self.trend)])) - self.MA_rules_yesterday = (np.mean(self.trend[-self.m-1: len(self.trend)-1]) - np.mean(self.trend[-self.n-1 : len(self.trend)-1])) - holdings = self.Portfolio[self.syl].Quantity - - if self.MA_rules_today > 0 and self.MA_rules_yesterday < 0: - self.SetHoldings(self.syl, 1) - elif self.MA_rules_today < 0 and self.MA_rules_yesterday > 0: - self.SetHoldings(self.syl, -1) - -

Trading Signals when λ=1600

- -trading-signal.jpg”/>
-
-<p style=Trading Signals when λ=100

-trading-signal-100.jpg - -The above charts are the in-sample trading signals after applying MA rules on the low-frequency component. The trend curve is more smooth with larger λ. Thus when we applied MA rules, a less smooth trend will trigger more trading opportunities. -

Conclusion

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Strategy Performance for different currencies in Forex
CurrencyUSDCADEURUSD USDCHF EURGBPCADUSDUSDNOKUSDZAR
Sharp Ratio0.3610.375 0.131 0.337 0.052 0.054 0.195
 Total Trades 14 11 12 11 6 16 9
 Annual Return 3.128% 3.272% 1.162% 2.689% 0.043% 0.093% 2.201%
 Max Drawdown 10.3% 8.3% 24.8% 17.6% 22.5% 30.3% 23%
- -The table reports the strategy performance statistics during six and a half years backtesting period. From the table we can see, most of them have the higher maximum drawdown. The number of total trades is small because we applied MA rules on the smoothed trend component.  As the author indicated in the paper, we still find that the performance of this strategy is very sensitive to the choice of lag parameters in MA rules and in a non-monotonic way. - -The strategy does not generate more stable profits in Forex market generally. That might because that the HP filter technique was designed to be viewed as a trend curve through the entire set of data. When we applied it in trading strategy, the entry of new data into the filter model can cause the trend line to change the trend through past data, makes it harder to identify the trend accurately. - -We also tried the kernel regression method in the paper. However, because the distribution parameter in the Python kernel regression package can not be adjusted. The appropriate trend component is not being extracted well from kernel regression. The smoothing effect of the regression is not good as expected. Thus here we choose not to move on to the trading part of kernel regression method. -

Algorithm

- - diff --git a/Strategy Tutorials/Tutorial10 Short-Term Reversal Strategy in Stocks.html b/Strategy Tutorials/Tutorial10 Short-Term Reversal Strategy in Stocks.html deleted file mode 100644 index 60ab3e3..0000000 --- a/Strategy Tutorials/Tutorial10 Short-Term Reversal Strategy in Stocks.html +++ /dev/null @@ -1,81 +0,0 @@ -

Abstract

-This strategy is called Short-Term Reversal Strategy which is discussed in detail in the paper written by Wilma de Groot, Joop Huij and Weili Zhou (2011) titled "Another look at trading costs and short-term reversal profits". [ref]Groot, Wilma (2011). Another look at trading costs and short-term reversal profit, page 1,? Online Copy[/ref] The standard reversal strategy takes the whole universe of stocks into consideration, while this paper limits the stock universe only to large cap stocks so that trading costs could be significantly reduced. - -One simple version of this strategy could be described like this: The investment universe consists of 100 biggest companies by market capitalization. We go long on the 10% stocks which have the?lowest performances in the last month while going short on the 10% stocks with the highest ones. The portfolio is rebalanced weekly. - -In the paper, however, strategies with different investment universes and different rebalancing frequencies are all backtested. The results show that, the larger the size of the investment universe, the larger the trading costs caused by extensively trading in small cap stocks which are less liquid; and trading costs become substantially lower when the rebalancing frequency is decreased from daily to weekly, but so do gross returns. - -In this tutorial, we only use 100 stocks with weekly rebalancing for illustration. -

Method

-The strategy code mainly consists of three parts: Initialization, Warm Up, and Weekly Rebalancing. -

Step 1:?Initialization

-In the Initialize function, we set up look-back period, beginning cash balance, the size of the investment universe, the number of traded stocks, etc. We use self._numOfWeeks to count?the number of weeks that have passed since the start date, and self._LastDay to indicate whether it is a new week. self._ifWarmUp is true when the self._numOfWeeks is 3, which means as long as next week's data come, we can make our investment decisions.??self._stocks is a list containing all the symbols of the 100 stocks that are taken into consideration. self._values is a dictionary with keys the stock symbols and values the lists containing the prices of stock each week since 4 weeks ago. -
def Initialize(self):
-        self.SetStartDate(2002, 1, 3)
-        self.SetEndDate(2016, 12, 1)
-        self.SetCash(1000000)
-
-        self.UniverseSettings.Resolution = Resolution.Daily
-        self.AddUniverse(self.CoarseSelectionFunction)
-        self._numberOfSymbols = 100
-        self._numberOfTradings = 0.1 * self._numberOfSymbols
-
-        self._numOfWeeks = 0
-        self._LastDay = -1
-        self._ifWarmUp = False
-
-        self._stocks = []
-        self._values = {}
-Also, we need to use?CoarseSelectionFunction to select 100 qualified stocks from the total stock universe. Here, we sort the total stock universe by each stock's DollarVolume in decreasing order. Then, we select the first 100 stocks that have the largest DollarVolume among all the stocks in the universe. -
def CoarseSelectionFunction(self, coarse):
-        sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
-        top100 = sortedByDollarVolume[:self._numberOfSymbols]
-        list = List[Symbol]()
-        for x in top100:
-                list.Add(x.Symbol)
-        return list
-
-

Step 2:?Warm Up

-Before we are able to make our investment decisions, we must have at least 4 weeks' data to calculate the performance, i.e. the monthly return, of each stock. Hence, we need a warm up period as long as 3 weeks to accumulate price series, so that once the fourth week's data come we can calculate?the return of the whole month. -
self._stocks = []
-self.uni_symbol = None
-symbols = self.UniverseManager.Keys
-for i in symbols:
-        if str(i.Value) == "QC-UNIVERSE-COARSE-USA":
-                self.uni_symbol = i
-        for i in self.UniverseManager[self.uni_symbol].Members:
-                self._stocks.append(i.Value.Symbol)
-                self._values[i.Value.Symbol] = [self.Securities[i.Value.Symbol].Price]
-
-
-We get all the symbols of qualified stocks from UniverseManager and keep them in self._stocks which is a list. Then we create for each key in the dictionary self._values a list where its first week's price is stored. And every time new data come, we append the new price to the end of the list of each stock. -
for stock in self._stocks:
-        self._values[stock].append(self.Securities[stock].Price)
-

Step 3:?Weekly Rebalancing

-After the warm-up period, we calculate monthly returns every week and based on the returns, we make our investment decisions. -
returns = {}
-for stock in self._stocks:
-        newPrice = self.Securities[stock].Price
-        oldPrice = self._values[stock].pop(0)
-        self._values[stock].append(newPrice)
-        returns[stock] = newPrice/oldPrice
-
-Every week when new data come, we use them along with the data four weeks ago to calculate the monthly returns. At the same time, we remove the oldest data from our lists. This step is essential to prevent memory size exceeding the limit. -
newArr = [(v,k) for k,v in returns.items()]
-newArr.sort()
-for ret, stock in newArr[self._numberOfTradings:-self._numberOfTradings]:
-        self.SetHoldings(stock, 0)
-for ret, stock in newArr[0:self._numberOfTradings]:
-        self.SetHoldings(stock, 0.5/self._numberOfTradings)
-for ret, stock in newArr[-self._numberOfTradings:]:
-        self.SetHoldings(stock, -0.5/self._numberOfTradings)
-
-Finally, we sort the returns in increasing order. For the stocks whose monthly returns fall into the first 10% (performed badly in last month), we long them; For those fall into the last 10% (performed well in last month), we short them. Others (between 10% and 90%) will be set to 0. -

Conclusion

-In the paper, the look-back period is from 1990 to 2009. However, we want to test whether the strategy is still profitable in the new time period. Hence we use different look-back periods instead. - -If we begin from 2005 and end in 2017, there will be a total return of 131.50%. Although to some extent the performance of this strategy is dependent on different market situations,?nevertheless, in either situation mentioned above, this strategy could significantly beat the S&P 500 benchmark. - -Further research and backtesting could be done on different look-back periods, rebalancing frequencies, investment universes, numbers of traded stocks, etc. -

Algorithm

- \ No newline at end of file diff --git a/Strategy Tutorials/Tutorial11 Fundamental Factor Long:Short Strategy.html b/Strategy Tutorials/Tutorial11 Fundamental Factor Long:Short Strategy.html deleted file mode 100644 index 53eabaf..0000000 --- a/Strategy Tutorials/Tutorial11 Fundamental Factor Long:Short Strategy.html +++ /dev/null @@ -1,111 +0,0 @@ -

Introduction

-In this tutorial we implemented a long/short equity strategy based on fundamental factors. The idea comes from AQR white book: A New Core Equity Paradigm[ref]A New Core Equity ParadigmOnline Copy[/ref]. The original version is a long only strategy. We developed it into a long/short version. The paper strategy used some fundamental data as measures of value, quality and momentum, and then ranked all the stocks in the universe according to the factors. The strategy only long the stocks ranking at the top, but our algorithm would at the same time short the stocks ranking at the bottom. This strategy consistently beats the market and has solid economic intuition. - -

Factors

-The paper strategy used three factors together to rank stocks: value, quality and momentum. - -Value: The most commonly used measure for value is P/B ratio(price-to-book value). Intuitively, the stocks with high P/B ratio are likely to be overpriced, and those stocks are labeled as growth stock. On the other hand, the stocks with low P/B value are considered to be value stocks. Following this logic, we use book value per share as a measure for value in our algorithm: the stocks with high book value per share rank high. - -Quality: Quality is a comprehensive factor. The paper used total profits over asset, gross margins, and free cash flow over assets. For simplicity, we used only operation margin as our quality factor. Here we assume that the companies with high operation margin are profitable, and their stocks are the quality ones. - -Momentum: The paper strategy is quarterly rebalanced, so it used recent one-year return, three-month and returns around earning events as measures for momentum. While our algorithm is monthly rebalanced, we simply use recent monthly return as our momentum factor. - -

Ranking

-Ranking is the core process for stock selection. We first rank all the stocks according to each factor, then assign weights to each factor to get the final rank. - -Specifically, in our algorithm we have 250 stocks in total. We rank them according to their book values per share, operation margins and one-month returns by descending order. For each stock, its index in each sorted list is its score on each factor. e.g. If stock A ranks 1st by value, 10th by quality and 30th by momentum, its scores on the value, quality and momentum are 1, 10 and 30 respectively. - -The last step is to calculate the final score of each stocks. We use the same weight as the paper does: 40% on value, 40% on quality and 20% on momentum. In this way, stock A's final score is 1*0.4 + 10*0.4 + 30*0.2 = 10.4. Finally, we can rank all the stocks by their scores by ascending order. It worth attention that the stock with the lowest score is the best and it ranks 1st, and the one with the highest score is the worst. - -

Implementation

-In this implementation, the FineSelectionFunction would be the core part because we have to rank the stocks in this process. We also need a ScheduledEvent handler to rebalance the portfolio every month. We would introduce the process step by step. - -

CoarseSelectionFunction

-This function is a filter for the whole asset universe(around 8000 stocks). We select the top 250 with highest dollar volume to ensure liquidity. We also filter out the stocks without fundamental information or with a too low price(less than $5). -
-def CoarseSelectionFunction(self, coarse):
-    # if the rebalance flag is not 1, return null list to save time.
-    if self.reb != 1:
-        return []
-
-    # make universe selection once a month
-    # drop stocks which have no fundamental data or have too low prices
-    selected = [x for x in coarse if (x.HasFundamentalData)
-                and (float(x.Price) > 5)]
-
-    sortedByDollarVolume = sorted(selected, key=lambda x: x.DollarVolume, reverse=True)
-    top = sortedByDollarVolume[:self.num_coarse]
-    return [i.Symbol for i in top]
-
- -

FineSelectionFunction

-Here is the core function. The process is that we make three sorted list to store the stocks, and then use a dictionary to store the score information. For the dictionary, the keys are Symbols and the values are their scores. Finally we sort the dictionary to get the final rank. we store the top 20 stocks to long in the list self.long and the bottom 20 stocks to short in the list self.short. -
-  def FineSelectionFunction(self, fine):
-  # return null list if it's not time to rebalance
-      if self.reb != 1:
-          return []
-
-      self.reb = 0
-
-  # drop stocks which don't have the information we need.
-  # you can try replacing those factor with your own factors here
-
-      filtered_fine = [x for x in fine if x.OperationRatios.OperationMargin.Value
-                                      and x.ValuationRatios.PriceChange1M
-                                      and x.ValuationRatios.BookValuePerShare]
-
-      self.Log('remained to select %d'%(len(filtered_fine)))
-
-      # rank stocks by three factor.
-      sortedByfactor1 = sorted(filtered_fine, key=lambda x: x.OperationRatios.OperationMargin.Value, reverse=True)
-      sortedByfactor2 = sorted(filtered_fine, key=lambda x: x.ValuationRatios.PriceChange1M, reverse=True)
-      sortedByfactor3 = sorted(filtered_fine, key=lambda x: x.ValuationRatios.BookValuePerShare, reverse=True)
-
-      stock_dict = {}
-
-      # assign a score to each stock, you can also change the rule of scoring here.
-      for i,ele in enumerate(sortedByfactor1):
-          rank1 = i
-          rank2 = sortedByfactor2.index(ele)
-          rank3 = sortedByfactor3.index(ele)
-          score = sum([rank1*0.2,rank2*0.4,rank3*0.4])
-          stock_dict[ele] = score
-
-      # sort the stocks by their scores
-      self.sorted_stock = sorted(stock_dict.items(), key=lambda d:d[1],reverse=False)
-      sorted_symbol = [x[0] for x in self.sorted_stock]
-
-      # sotre the top stocks into the long_list and the bottom ones into the short_list
-      self.long = [x for x in sorted_symbol[:self.num_fine]]
-      self.short = [x for x in sorted_symbol[-self.num_fine:]]
-
-      topFine = self.long + self.short
-      return [i.Symbol for i in topFine]
-

Rebalance

-Our portfolio is rebalanced monthly, so first of all we should write a ScheduledEvent handler in the Initialize function: -
-def Initialize(self):
-# Use SPY as a benchmark for market open
-    self.Schedule.On(self.DateRules.MonthStart(self.spy), self.TimeRules.AfterMarketOpen(self.spy,5), Action(self.rebalance))
-Our rebalanced method is straightforward: We first liquidate the stocks that are no longer in the long/short list, and then assign equal weight to the stocks we are going to long or short.
-def rebalance(self):
-# if this month the stock are not going to be long/short, liquidate it.
-    long_short_list = self.long + self.short
-    for i in self.Portfolio.Values:
-        if (i.Invested) and (i.Symbol not in long_short_list):
-            self.Liquidate(i.Symbol)
-
-    # Assign each stock equally. Always hold 10% cash to avoid margin call
-    for i in self.long:
-        self.SetHoldings(i,0.9/self.num_fine)
-
-    for i in self.short:
-        self.SetHoldings(i,-0.9/self.num_fine)
-
-

Summary

-The paper strategy was backtest at a 60-year timespan. It's persistent, systematic and intuitive. Although our version is very different from the paper one, the logic and intuition behind are the same. It has a better performance than the paper strategy because we added short positions. -For further development, we can try to rank a large number of stocks, and do some portfolio optimization instead of holding stocks equally. - -

Algorithm

- diff --git a/Strategy Tutorials/images/dual thrust price range.png b/Strategy Tutorials/images/dual thrust price range.png deleted file mode 100644 index a13c45c..0000000 Binary files a/Strategy Tutorials/images/dual thrust price range.png and /dev/null differ diff --git a/Strategy Tutorials/images/dual thrust trading.png b/Strategy Tutorials/images/dual thrust trading.png deleted file mode 100644 index 8ce1598..0000000 Binary files a/Strategy Tutorials/images/dual thrust trading.png and /dev/null differ diff --git a/Strategy Tutorials/images/low-frequency-component-less.jpg b/Strategy Tutorials/images/low-frequency-component-less.jpg deleted file mode 100644 index 146433d..0000000 Binary files a/Strategy Tutorials/images/low-frequency-component-less.jpg and /dev/null differ diff --git a/Strategy Tutorials/images/low-frequency-component-more.jpg b/Strategy Tutorials/images/low-frequency-component-more.jpg deleted file mode 100644 index 6f7af87..0000000 Binary files a/Strategy Tutorials/images/low-frequency-component-more.jpg and /dev/null differ diff --git a/Strategy Tutorials/images/out-of-sample-trend-estimation.jpg b/Strategy Tutorials/images/out-of-sample-trend-estimation.jpg deleted file mode 100644 index 48db485..0000000 Binary files a/Strategy Tutorials/images/out-of-sample-trend-estimation.jpg and /dev/null differ diff --git a/Strategy Tutorials/images/trading-signal-100.jpg b/Strategy Tutorials/images/trading-signal-100.jpg deleted file mode 100644 index 845f358..0000000 Binary files a/Strategy Tutorials/images/trading-signal-100.jpg and /dev/null differ diff --git a/Strategy Tutorials/images/trading-signal-1600.jpg b/Strategy Tutorials/images/trading-signal-1600.jpg deleted file mode 100644 index 62d6ea2..0000000 Binary files a/Strategy Tutorials/images/trading-signal-1600.jpg and /dev/null differ diff --git a/Tutorial Series/Applied Options/Tutorial00 Applied Options.html b/Tutorial Series/Applied Options/Tutorial00 Applied Options.html deleted file mode 100644 index 2109b2d..0000000 --- a/Tutorial Series/Applied Options/Tutorial00 Applied Options.html +++ /dev/null @@ -1,101 +0,0 @@ -

About

-

The goal of this series is to introduce the common options strategies to those who already have basic knowledge of options markets and most importantly, we will teach users how to start your simple options trading algorithm on QuantConnect. These strategies will demonstrate a few of the ways in which options can be used to produce an interesting relationship between profit and stock price. We will primarily talk about the strategies like the Covered Call which involves a single option and the undelying stock, the spreads which involve either taking a position in two or more calls or puts, the conbinations like straddle or strangle which involve taking a position in both calls and puts on the same stocks. For each strategy, except for the description of strategy itself, we will demonstrate the QuantConnect algorithm implemented in Python.

- -  - -  - -
-
- -

-

8 Tutorials

-
-
- -

-

10 Backtests

-
-
- -

-

45 Code Snippets

-
-
- -  - -  - -

What Will I Learn?

-
-
Common Options Strategies
-
Using Options API
-
Payoff Analysis
-
Risk Profile of Options Trading
- -  - -  - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1 -

Covered Call

-A brief introduction to Covered Call Strategy and the algorithm implemented in python. - Read Tutorial
2 -

Bull Call Spread

-A brief introduction to Bull Call Spread strategy and the algorithm implemented in python. - Read Tutorial
3 -

Long Straddle

-A brief introduction to Long Straddle strategy and the algorithm implemented in python. - Read Tutorial
4 -

Long Strangle

-A brief introduction to Long Strangle strategy and the algorithm implemented in python. - Read Tutorial
5 -

Butterfly Spread

-A brief introduction to Butterfly Spread strategy and the algorithm implemented in python. - Read Tutorial
6 -

Iron Condor

-A brief introduction to Iron Condor strategy and the algorithm implemented in python. - Read Tutorial
7 -

Iron Butterfly

-A brief introduction to Iron Butterfly strategy and the algorithm implemented in python. - Read Tutorial
8 -

Protective Collar

-A brief introduction to Protective Collar strategy and the algorithm implemented in python. - Read Tutorial
diff --git a/Tutorial Series/Applied Options/Tutorial01 Covered Call.html b/Tutorial Series/Applied Options/Tutorial01 Covered Call.html deleted file mode 100644 index 9b4f714..0000000 --- a/Tutorial Series/Applied Options/Tutorial01 Covered Call.html +++ /dev/null @@ -1,86 +0,0 @@ -

Definition

-A Covered Call is an options strategy that involves both underlying stock and an options contract. The trader buys (or already owns) a stock, then sells call options for the same amount of stock. The aim of the Covered Call is to gain profits from option premium by selling calls written on the stock you already owned. At any time for US options or at expiration for European options, if the stock moves below the strike price, you can keep the premium and still maintain the stock position. If the price moves above the strike, the options contract is exercised you will sell the stock at the strike price but still keep the premium. The risk of a Covered Call also comes from the long stock position, which could drop. - -The payoff  is as follows: -
import numpy as np
-import matplotlib.pyplot as plt
-%pylab inline
-price = np.arange(110,230,1) # the stock price at expiration date
-strike = 160 # the strike price
-premium = 7.5 # the option premium
-# the payoff of short call position
-payoff_short_call = [min(premium, -(i - strike-premium)) for i in price]
-# the payoff of long stock postion
-payoff_long_stock = [i-strike for i in price]
-# the payoff of covered call
-payoff_covered_call = np.sum([payoff_short_call, payoff_long_stock], axis=0)
-plt.figure(figsize=(20,11))
-plt.plot(price, payoff_short_call, label = 'short call')
-plt.plot(price, payoff_long_stock, label = 'long stock')
-plt.plot(price, payoff_covered_call, label = 'covered call')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Covered Call Strategy Payoff at Expiration',fontsize = 20)
-plt.grid(True)
-
-covered call strategy payoff -

Implementation

-

Step 1: Initialize the Algorithm

-At the beginning of your algorithm, you need to set the start date, the end date and the cash required for the algorithm. For options algorithm, you need to add the equity and the options written on this equity. -
def Initialize(self):
-   self.SetStartDate(2016, 1, 1)
-   self.SetEndDate(2016, 3, 1)
-   self.SetCash(100000)
-   equity = self.AddEquity("IBM", Resolution.Minute)
-   option = self.AddOption("IBM", Resolution.Minute)
-   self.symbol = option.Symbol
-   # set our strike/expiry filter for this option chain
-   option.SetFilter(-3, +3, timedelta(0), timedelta(30))
-   # use the underlying equity as the benchmark
-   self.SetBenchmark(equity.Symbol)
-   self.call = "IBM" # Initialize the call contract
-
-Second, in the initialization process, you need to add a coarse selection for the options contracts. Here we use option.SetFilter(-3, +3, timedelta(0), timedelta(60)) to implement the coarse selection process. If today's market price of underlying stock is $159, the strike prices of IBM options are spaced $5. Then SetFilter will look up the most at the money contract with the strike being K=$160 (Here K might not be $159 since rarely will option be ATM exactly). The filter will look for options with strikes between and including (160-5*3, 160+5*3). The time to expiration of these options is restricted within 60 days from now on. -

Step 2: Choose the Call Options Contract

-First, purchase the underlying stock for 100 shares or an integral multiple of 100 shares. For options contract, one contract represents 100 shares of stock. - -Second, filter out the call options from candidate contracts.call = [x for x in chain if x.Right == 0] For call options, the right is 0, for put options, the right is 1. - -Third, select the most ATM contract with the furthest expiration date from call options contracts. Sell this call contract for each 100 shares of stock you own. Here you can also choose ITM or OTM contract based on your expected level of profit and the level of risk you can take. -
def TradeOptions(self,slice):
-		if slice.OptionChains.Count == 0: return
-    for i in slice.OptionChains:
-        if i.Key != self.symbol: continue
-        chain = i.Value
-        call = [x for x in chain if x.Right == 0] # filter the call options contracts
-        # sorted the contracts according to their expiration dates and choose the ATM options
-        contracts = sorted(sorted(call, key = lambda x: abs(chain.Underlying.Price - x.Strike)),
-                                        key = lambda x: x.Expiry, reverse=True)
-        if len(contracts) == 0: return
-        contract = contracts[0]
-        self.call = contract.Symbol
-        self.Sell(self.call, 1) # short the call options
-        if self.Portfolio["IBM"].Quantity == 0:
-            self.Buy("IBM",100)     # buy 100 the underlying stock
-            self.Log("The stock price at time 0 S(0): {}".format(self.Securities["IBM"].Price))
-
-Fourth, at the expiration date we print out the price and position information -
def OnData(self,slice):
-    if not self.Portfolio[self.call].Invested and self.Time.hour != 0 and self.Time.minute == 1:
-        self.TradeOptions(slice) # sell the call option
-
-    # if the option contract expires, print out the price and position information
-    if slice.Delistings.Count > 0:
-        if [x.Key == self.call for x in slice.Delistings]:
-            self.Log("stock IBM quantity: {0}".format(self.Portfolio["IBM"].Quantity))
-            self.Log("{0} quantity: {1}".format(self.call.Value, self.Portfolio[self.call].Quantity))
-            self.Log("The stock price at Expiry S(T): {}".format(self.Securities["IBM"].Price))
-
-

Summary

-From the above strategy we can see,  the share price of IBM had been increasing during the backtesting period from January 2016 to June 2016. The drawdown is small. The Covered Call strategy performs better than a simple buy-and-hold strategy of underlying stock in a bearish market. The benefit of Covered Call is that you keep the premium, stock gains up to the strike price, and accrued dividends during the stock holding period. But in a bullish market, you will lose the potential gains over the strike price. -

Algorithm

-Backtest using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/Tutorial02 Bull Call Spread.html b/Tutorial Series/Applied Options/Tutorial02 Bull Call Spread.html deleted file mode 100644 index 33189d1..0000000 --- a/Tutorial Series/Applied Options/Tutorial02 Bull Call Spread.html +++ /dev/null @@ -1,75 +0,0 @@ -

Definition

-Bull Call Spread is an option strategy involved with two call option contracts with the same expiration but different strikes. The strategy buys the call options with a lower strike and sells the same amount of call options with a higher strike price. - -This strategy creates a ceiling and floor for the profit. By purchasing a call and selling a call with higher strike simultaneously, traders can reduce the cost of just one long call option with the premium of a short call option. But the premium of ITM call is more expensive than the OTM call. The strategy limits the loss from the dropping price of the stock but still create a ceiling to the profit while the price is increasing. - -Take GOOG as an example. If the share price of GOOG is $950 at time 0, the premium of ITM call option is 20 with strike 900, the premium of OTM call option is 2 with strike 1000. If we ignore the commission, dividends and other transaction fees, the payoff of Bull Call Spread strategy is as follows: -
price = np.arange(800,1100,1)
-k_low = 900 # lower strike price for call
-k_high = 1000 # higher strike price for call
-premium_low = 20 # premium of call option with lower strike
-premium_high = 2 # premium of call option with higher strike
-# long call with lower strike
-payoff_long_call = [max(-premium, i-k_low-premium_low ) for i in price]
-# short call with higher strike
-payoff_short_call = [min(premium, -(i-k_high-premium_high)) for i in price]
-payoff = np.sum([payoff_long_call, payoff_short_call], axis=0)
-plt.figure(figsize=(20,11))
-plt.plot(price, payoff_long_call, label = 'long call')
-plt.plot(price, payoff_short_call, label = 'short call')
-plt.plot(price, payoff, label = 'Bull Call Spread')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Bull Call Spread Payoff at Expiration',fontsize = 20)
-plt.grid(True)
-
- - -From the payoff plot we can see, the maximum profit of the strategy is the difference between call option strike price sold and call option strike price purchased minus the difference between buying lower strike call premium and selling higher strike call premium. -

Implementation

-Step 1: First, you need to initialize the algorithm including set the start date, end date and the cash required. Then use option.SetFilter(-6, 6, timedelta(30), timedelta(60)) to filter the candidate contracts which expire in 30 days to 60 days from now on. The strike price range involves both ITM and OTM options. Then we get the option chains of GOOG. -
def Initialize(self):
-	self.SetStartDate(2016, 5, 1)
-	self.SetEndDate(2016, 10, 1)
-	self.SetCash(200000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	# set our strike/expiry filter for this option chain
-	option.SetFilter(-6, 6, timedelta(30), timedelta(60))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Choose the contracts with the same expiration date. For demonstration purpose here we sorted the contracts by their expiration dates and choose the options with the furthest expiration date in the option chain. -
def TradeOptions(self,optionchain):
-	for i in optionchain:
-		if i.Key != self.symbol: continue
-		chain = i.Value
-		# sorted the optionchain by expiration date and choose the furthest date
-		expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
-
-Step 3: Filter the call options from the contracts which expire on the furthest expiration date in the option chain. -
call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
-
-Step 4: Sort the call options with the same expiration date according to their strike price. Then buy the call option with the lowest strike price and sell the call with the highest strike price. -
call_contracts = sorted(call,key = lambda x: x.Strike)
-	if len(call_contracts) == 0: continue
-	# call option contract with lower strike
-	self.call_low = call_contracts[0]
-	# call option contract with higher strike
-	self.call_high = call_contracts[-1]
-	self.Buy(self.call_low.Symbol, 1)
-	self.Sell(self.call_high.Symbol ,1)
-
-Note here you need to add the following rules in OnData(self,slice) method because you only need to trade options once and wait until the contracts expire. If you already had securities invested in the portfolio, then you do not need to trade new options. -
if not self.Portfolio.Invested:
-	self.TradeOptions(optionchain)
-
-

Summary

-This strategy can be implemented when you have a moderate outlook on the stock because the payoff reaches its maximum when the price is between the strike price range of two traded options. The strategy protects the downside move of the stock price. But when the price is above the higher strike, the profit is capped. -

Algorithm

-Backtest (SetFilter) - -Backtest (OptionChainProvider) - diff --git a/Tutorial Series/Applied Options/Tutorial03 Long Straddle.html b/Tutorial Series/Applied Options/Tutorial03 Long Straddle.html deleted file mode 100644 index bea2081..0000000 --- a/Tutorial Series/Applied Options/Tutorial03 Long Straddle.html +++ /dev/null @@ -1,64 +0,0 @@ -

Definition

-Long Straddle is an option strategy involved with the long position of a call option and a put option. Both of them have the same strike price and the same expiration date. This strategy aims to gain profit when you feel that a stock was about to make a big move, but are not sure which way the price will move. -

Payoff

-
price = np.arange(750,1000,1)
-strike = 900 # strike price for both call and put
-premium_call = 20 # premium of call option
-premium_put = 10 # premium of put option
-# payoff for the long call
-payoff_long_call = [max(-premium_call, i-strike-premium_call) for i in price]
-# payoff for the long put
-payoff_long_put = [max(-premium_put, strike-i-premium_put) for i in price]
-payoff = np.sum([payoff_long_call, payoff_long_put], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_long_call, label = 'Long Call')
-plt.plot(price, payoff_long_put, label = 'long put')
-plt.plot(price, payoff, label = 'Long Straddle')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Long Straddle Payoff',fontsize = 20)
-plt.grid(True)
-
-long straddle strategy payoff -Given this plot, if the stock price moves sharply at the expiration either up or down, the Long Straddle will collect positive profit. the potential profit is unlimited on the upside because the stock price can rise indefinitely. On the downside, the potential profit is substantial, because the stock price can fall to zero. The potential loss is limited to the premium of both call and put options. The maximum loss will be reached if the stock price is exactly equal to the strike price at expiration. Both options will expire worthless. -

Implementation

-Step 1: Initialize your algorithm and filter the contract. Here we choose the time to expiration between 30 to 60 days from now on. -
def Initialize(self):
-	self.SetStartDate(2017, 4, 01)
-	self.SetEndDate(2017, 6, 30)
-	self.SetCash(100000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	# set our strike/expiry filter for this option chain
-	option.SetFilter(-5, 5, timedelta(30), timedelta(60))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-Step 2: Sorted the option chain by expiration and choose the furthest date to filter the call contract. Then sorted those call contracts by their strike price and choose the call contracts with the highest strike price to trade. -
for i in optionchain:
-	if i.Key != self.symbol: continue
-	chain = i.Value
-	# sorted the optionchain by expiration date and choose the furthest date
-	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
-	# filter the call options from the contracts expires on that date
-	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
-	# sorted the contracts according to their strike prices
-	call_contracts = sorted(call,key = lambda x: x.Strike)
-	if len(call_contracts) == 0: continue
-	self.call = call_contracts[0]
-
-Step 3: According to the call option contract, choose the put option with the same strike price and the same expiration date. Then buy the call option and the put option at the same time and wait until expiration. -
 for i in chain:
-	if i.Expiry == expiry and i.Right == 1 and i.Strike ==call_contracts[0].Strike:
-	    self.put = i
-self.Buy(self.call.Symbol ,1)
-self.Buy(self.put.Symbol ,1)
-
-

Summary

-There are three possible outcomes at expiration for the Long Straddle strategy. If the stock price is at the strike price at expiration, then both the call and the put become worthless and no stock position is created. If the stock price is above the strike price at expiration, the put option expires worthless, the long call is exercised, the stock is purchased at the strike price and a long stock position for is created. If the stock price is below the strike price at expiration, the call expires worthless, the long put is exercised, the stock is sold at the strike price and a short stock position is created. In this algorithm, the undelying asset is GOOG stock. We purchase both the $820 put and the $820 call at time 0. At the expiration, the share price of GOOG rises to 930 then the call option is exercised and the put options become worthless. After expiration, we hold long position for 100 shares of GOOG stock. -

Algorithm

-Backtest (Using SetFilter) - -Backtest (Using OptionChainProvider) - diff --git a/Tutorial Series/Applied Options/Tutorial04 Long Strangle.html b/Tutorial Series/Applied Options/Tutorial04 Long Strangle.html deleted file mode 100644 index cf44671..0000000 --- a/Tutorial Series/Applied Options/Tutorial04 Long Strangle.html +++ /dev/null @@ -1,77 +0,0 @@ -

Definition

-Long Strangle is an options trading strategy that involves the simultaneous buying of an out-of-the-money put and an out-of-the-money call of the same underlying stock and expiration date. Similar to Long Straddle, Long Strangle has unlimited profit and limited risk and can be applied if traders think some major news events may cause the stock to make a sharp move either up or down during the life of the options. But it differs from Long Straddle in that the call strike is above the put strike. -

Payoff

-
price = np.arange(700,1000,1)
-# Suppose the undelying price at time 0 is 830
-k_call = 870 # The strike price of OTM call
-k_put = 795 # The strike price of OTM put
-premium_call = 8 # premium of call option
-premium_put = 10 # premium of put option
-# payoff for the long call
-payoff_long_call = [max(-premium_call, i-k_call-premium_call) for i in price]
-# payoff for the long put
-payoff_long_put = [max(-premium_put, k_put-i-premium_put) for i in price]
-payoff = np.sum([payoff_long_call, payoff_long_put], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_long_call, label = 'Long Call')
-plt.plot(price, payoff_long_put, label = 'long put')
-plt.plot(price, payoff, label = 'Long Strangle')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Long Strangle Payoff',fontsize = 20)
-plt.grid(True)
-
-long strangle strategy payoff -
- -From the payoff plot, the most that you can lose in a Long Strangle is the total premium you pay for holding the long position of both a put and a call option. The maximum loss occurs when the stock price falls between the strike price of two options. All options are worthless on expiration. The maximum gain of Long Strangle is unlimited for upside move because a stock's price has no maximum threshold. -

Implementation

-Step 1: Initialize your algorithm including setting the start and end date, setting the cash and filtering the options contracts. Note here in SetFilter, the strike price should range from negative to positive because we need to choose out-of-the-money put and call options from candidate contracts. The strike price of OTM call should be greater than ATM options and the strike price of OTM put should be lower than ATM options. -
def Initialize(self):
-	self.SetStartDate(2017, 4, 1)
-	self.SetEndDate(2017, 5, 30)
-	self.SetCash(100000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	# set our strike/expiry filter for this option chain
-	option.SetFilter(-15, 15, timedelta(30), timedelta(60))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Sort the option chain by expiration date and choose an expiration date you want to trade. For demonstration purpose, here we choose options with the furthest expiration date in candidate contracts. Then filter out the call options which expire on that date. -
for i in optionchain:
-	if i.Key != self.symbol: continue
-	chain = i.Value
-	# sorted the option chain by expiration date and choose the furthest date
-	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
-	# filter the call options from the contracts expires on that date
-	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
-
-Step 3: Sort the call options by their expiration date and choose the deep OTM contract which has the largest strike price. -
call_contracts = sorted(call,key = lambda x: x.Strike)
-if len(call_contracts) == 0: continue
-# choose the deep OTM call option
-self.call = call_contracts[-1]
-
-Step 4: Select the put options which have the same expiration date with the call option and sort the put options by strike price. Then choose the deep out-of-the-money put which has the minimum strike price among all the available put options. -
put_contracts = sorted([i for i in chain if i.Expiry == expiry and i.Right == 1], key = lambda x: x.Strike)
-# choose the deep OTM put option
-self.put = put_contracts[0]
-
-Step 5: Buy the call and the put options at the same time and wait until expiration. -
self.Buy(self.call.Symbol ,1)
-self.Buy(self.put.Symbol ,1)
-
-

Summary

-In this algorithm, at time 0, we buy OTM call with strike price 870 and OTM put with strike price 795. The share price of GOOG at time 0 is $832.8. At the expiry, the share price of GOOG is $930.16. Therefore we conclude the call option is exercised then we get 100 long stocks position. The put option expires worthless. - -You can enter into Long Strangle if you have no clear idea of market direction but forecast there will be a great movement in the underlying asset. As the options you buy are all out of the money, that reduces the cost of this strategy. But because the call and the put options are all out of the money, the stock will need to move even more significantly than long straddle to gain positive profit from this strategy. - -
-

Algorithm

-Backtest using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/Tutorial05 Butterfly Spread.html b/Tutorial Series/Applied Options/Tutorial05 Butterfly Spread.html deleted file mode 100644 index 6ddde24..0000000 --- a/Tutorial Series/Applied Options/Tutorial05 Butterfly Spread.html +++ /dev/null @@ -1,105 +0,0 @@ -

 Definition

-Butterfly Spread strategy involves four option contracts with the same expiration but three different strike prices. There are four kinds of Butterfly Spread: - - - - - - - - - - - - - - - - - - - - - - - - - -
 Name Strategy
 Long butterfly spread with calls Buy 1 ITM call, sell 2 ATM call, buy 1 OTM call
 Long butterfly spread with puts Buy 1 ITM put, sell 2 ATM put, buy 1 OTM put
 Short butterfly spread with calls Sell 1 ITM call, buy 2 ATM call, sell 1 OTM call
 Short butterfly spread with puts Buy 1 ITM put, sell 2 ATM put, buy 1 OTM put
-Butterfly Spread strategy consists of three legs with a total of four options. In this tutorial, we take Long Butterfly Spread as an example: long one ITM call, short two ATM calls and long one OTM call. All the calls have the same expiration. On the other hand, the middle strike is halfway between the lower and the higher strikes. - -The aim of Butterfly Spread strategy is to gain profits when traders think that the underlying stock will not rise or fall much by expiration. -

Payoff

-
price = np.arange(800,1100,1)
-# Suppose the undelying price at time 0 is 935
-k_itm = 915 # the strike price of ITM call
-k_otm = 955 # the strike price of OTM call
-k_atm = 935 # the strike price of ATM call
-premium_itm = 45 # the premium of ITM call
-premium_otm = 15 # the premium of OTM call
-premium_atm = 25 # the premium of ATM call
-# payoff for the long ITM call position
-payoff_itm_long = [max(-premium_itm, i-k_itm-premium_itm) for i in price]
-# payoff for the long OTM call position
-payoff_otm_long = [max(-premium_otm, i-k_otm-premium_otm) for i in price]
-# payoff for the 2 short ATM call position
-payoff_atm_short = [min(2*premium_atm, -2*(i-k_atm-premium_atm)) for i in price]
-# payoff for Butterfly Spread Strategy
-payoff = np.sum([payoff_itm_long,payoff_otm_long,payoff_atm_short], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_itm_long, label = 'Long ITM Call')
-plt.plot(price, payoff_otm_long, label = 'Long OTM Call')
-plt.plot(price, payoff_atm_short, label = 'Short 2 ATM Call')
-plt.plot(price, payoff, label = 'Long Call Butterfly Spread')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Long Call Butterfly Spread Payoff',fontsize = 20)
-plt.grid(True)
-
-butterfly strategy strategy payoff -

Implementation

-Step 1: Initialize your algorithm including setting the start date and the end date, setting the cash and implement a coarse selection of option contract. SetFilter(-9, 9, timedelta(30), timedelta(60)) helps us choose the contracts which expire in 30 to 60 days from now on. Since ITM call strike and OTM call strike are symmetrical with ATM call strike. For the strike parameter, the first parameter is the minimum strike rank relative to market price,  the second parameter is the maximum strike rank relative to market price. The rank of ATM contract is 0. Here we need to choose 2 numbers which are symmetrical with 0. -
def Initialize(self):
-	self.SetStartDate(2017, 4, 1)
-	self.SetEndDate(2017, 5, 30)
-	self.SetCash(150000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	option.SetFilter(-9, 9, timedelta(30), timedelta(60))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Second we need to choose an expiration date for all the contracts in Butterfly Spread strategy. Then filter out all the call options expire on that date. -
for i in optionchain:
-	if i.Key != self.symbol: continue
-	chain = i.Value
-	# sorted the optionchain by expiration date and choose the furthest date
-	expiry = sorted(chain,key = lambda x: x.Expiry, reverse=True)[0].Expiry
-	# filter the call options from the contracts expires on that date
-	call = [i for i in chain if i.Expiry == expiry and i.Right == 0]
-
-Step 3: Sort the call options by their strike price in ascending order. Then the ATM option is the one which has the smallest absolute value of the difference between the strike price and the underlying asset price. The OTM option is the last one in this call options list which has the highest strike price. The corresponding ITM option is the first one in the list which has the lowest strike price. -
# sorted the contracts according to their strike prices
-call_contracts = sorted(call,key = lambda x: x.Strike)
-if len(call_contracts) == 0: continue
-# choose OTM call
-self.otm_call = call_contracts[-1]
-# choose ITM call
-self.itm_call = call_contracts[0]
-# choose ATM call
-self.atm_call = sorted(call_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
-
-Step 4: Purchase 1 ITM call option and 1 OTM call option, then sell 2 ATM call option. -
self.Sell(self.atm_call.Symbol ,2)
-self.Buy(self.itm_call.Symbol ,1)
-self.Buy(self.otm_call.Symbol ,1)
-
-

Summary

-From the following algorithm, at time 0, the GOOG share price is $832.8. We purchase 1 OTM call option strike at $855, 1 ITM call option strike at $810 and sell 2 ATM options strike at 835. At the expiry 05/19/2017, the share price is $930, then the long positions of the ITM option and the OTM option are all exercised, we buy 100 GOOG  shares at $810 and buy another 100 shares at $855. At the same time, the 2 short positions of the ATM option are also exercised. We have to sell 200  GOOG shares to option holder at $835. Then we no longer hold positions after the expiration of this Long Call Butterfly Spread. Since the stock price had a sharp increase during the life of options, we make no profits from this strategy. -

Algorithm

-Backtest using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/Tutorial06 Iron Condor.html b/Tutorial Series/Applied Options/Tutorial06 Iron Condor.html deleted file mode 100644 index 6b44e08..0000000 --- a/Tutorial Series/Applied Options/Tutorial06 Iron Condor.html +++ /dev/null @@ -1,110 +0,0 @@ -

Definition

-Iron Condor is an option strategy which involves four option contracts.All options have the same expiration date. The order of strike for four contracts is A > B > C > D. - - - - - - - - - - - - - - - - - - - - - - - - - -
 PositionStrike
long 1 OTM put A
short 1 OTM put B
short 1 OTM call C
long 1 OTM call D
-The Iron Condor is the combination of a bear put spread and a bull call spread in which the strike price of the long put is lower than the strike price of the long call. If the stock price is between the two short strike prices when the options expire, the strategy will be profitable. -

Payoff

-
price = np.arange(700,950,1)
-k_call_higher = 850 # the strike price of OTM call(Higher k)
-k_call_lower = 840 # the strike price of OTM call(Lower k)
-k_put_higher = 760 # the strike price of OTM put(Higher k)
-k_put_lower = 750 # the strike price of OTM put(Lower k)
-premium_call_higher = 1 # the premium of OTM call(Higher k)
-premium_call_lower = 10 # the premium of OTM call(Lower k)
-premium_put_higher = 11 # the premium of oTM put(Higher k)
-premium_put_lower = 1 # the premium of OTM put(Lower k)
-# payoff for the long put position
-payoff_long_put = [max(premium_put_lower, k_put_lower-i-premium_put_lower) for i in price]
-# payoff for the short put position
-payoff_short_put = [min(premium_put_higher, -(k_put_higher-i+premium_put_higher)) for i in price]
-# payoff for the short call position
-payoff_short_call = [min(premium_call_lower, -(i-k_call_lower+premium_call_lower)) for i in price]
-# payoff for the long call position
-payoff_long_call = [max(premium_call_higher, i-k_call_higher-premium_call_higher) for i in price]
-# payoff for Long Iron Condor Strategy
-payoff = np.sum([payoff_long_put,payoff_short_put,payoff_short_call,payoff_long_call], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
-plt.plot(price, payoff_short_put, label = 'Short Put',linestyle='--')
-plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
-plt.plot(price, payoff_long_call, label = 'Long Call',linestyle='--')
-plt.plot(price, payoff, label = 'Long Iron Condor',c='black')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Long Iron Condor Strategy Payoff',fontsize = 20)
-plt.grid(True)
-
-iron condor strategy payoff -Here the strike price is A(750), B(760), C(850) and D(860). From the payoff plot, the maximum profit all come from the options premium because the deeper OTM options are cheaper than the less deep ones. It is reached when the stock price is between higher put strike and lower call strike. They are two short positions. In this condition, all the options expire worthless.  The maximum loss of Iron Condor is reached when the stock price is lower than the lowest strike A, then the two call options become worthless, the two puts are in the money. For the other condition, the stock price is higher than the highest strike D.Consequently, The two call options are in the money but the two puts expire worthless. -

Implementation

-Step 1: Initialize your algorithm which involves setting the start date and the end date, setting the cash for your algorithm and implement the coarse selection of option contracts. -
def Initialize(self):
-	self.SetStartDate(2017, 2, 1)
-	self.SetEndDate(2017, 3, 31)
-	self.SetCash(150000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	option.SetFilter(-20, 20, timedelta(0), timedelta(40))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Break the candidate options into two parts: call and put options. -
for i in optionchain:
-	if i.Key != self.symbol: continue
-	chain = i.Value
-	# filter the call and put options on the contracts
-	call = [i for i in chain if i.Right == 0]
-	put = [i for i in chain if i.Right == 1]
-
-Step 3: Sort the call and put options by their strike price respectively. -
call_contracts = sorted(call,key = lambda x: x.Strike)
-put_contracts = sorted(put,key = lambda x: x.Strike)
-
-Step 4: Choose the corresponding options and trade them. In this algorithm, according to criteria,SetFilter(-20, 20, timedelta(0), timedelta(40)) for put option list, there are 41 contracts in total: 1 ATM put, 20 OTM puts and 20 ITM puts. we choose the first in the put option list as the OTM put with the lower strike, choose the 15 contract as the OTM put with the higher strike. -
if len(call_contracts) == 0 or len(put_contracts) == 0 : continue
-# Buy 1 OTM Put (Lower Strike)
-self.otm_put_lower = put_contracts[0]
-self.Buy(self.otm_put_lower.Symbol ,1)
-# Sell 1 OTM Put
-self.otm_put = put_contracts[15]
-self.Sell(self.otm_put.Symbol ,1)
-# Sell 1 OTM Call
-self.otm_call = call_contracts[-15]
-self.Sell(self.otm_call.Symbol ,1)
-# Buy 1 OTM Call (Higher Strike)
-self.otm_call_higher = call_contracts[-1]
-self.Buy(self.otm_call_higher.Symbol ,1)
-
-

Summary

-The iron condor is an option strategy that earns money as long as the underlying asset price does move out of a predetermined price range. In this algorithm, that range is $775 to $827.5. At 02/01/2017, we long $750 put at $1.25 and short $775 put at $3.5. At the same time, we short $827.5 call at$2.3 and long $850 call at $0.75. At this moment, the GOOG share price is $799.55 all the options are out the money. At expiration date 02/17/2017, the share price of GOOG is $828.07. The long put, short put and long call expire worthless. The short call is exercised. Thus we get the short position of 100 GOOG shares. -

Algorithm

-Backtesing using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/Tutorial07 Iron Butterfly.html b/Tutorial Series/Applied Options/Tutorial07 Iron Butterfly.html deleted file mode 100644 index e2afa5a..0000000 --- a/Tutorial Series/Applied Options/Tutorial07 Iron Butterfly.html +++ /dev/null @@ -1,112 +0,0 @@ -

Definition

-Iron Butterfly is an option strategy which involves four option contracts. All options have the same expiration date. The order of strike for four contracts is A > B > C. - - - - - - - - - - - - - - - - - - - - - - - - - -
 PositionStrike
Buy 1 OTM put A
Sell 1 ATM put B
Sell 1 ATM call B
Buy 1 OTM call C
-Similar to the Iron Condor, Iron Butterfly is a limited risk, limited profit trading strategy. It profits from lower volatility meaning that traders gain profits from this strategy if the stock price changes within a small range. Iron Butterfly has a more narrow range for the price to move up or down compared with Iron Condor. -

Payoff

-
price = np.arange(700,950,1)
-k_atm = 830 # the strike price of ATM call & put
-k_otm_put = 800 # the strike price of OTM put
-k_otm_call = 860 # the strike price of OTM call
-premium_otm_put = 2 # the premium of OTM put
-premium_atm_put = 7 # the premium of ATM put
-premium_atm_call = 8 # the premium of ATM call
-premium_otm_call = 1 # the premium of OTM call
-# payoff for the long put position
-payoff_long_put = [max(-premium_otm_put, k_otm_put-i-premium_otm_put) for i in price]
-# payoff for the short put position
-payoff_short_put = [min(premium_atm_put, -(k_atm-i-premium_atm_put)) for i in price]
-# payoff for the short call position
-payoff_short_call = [min(premium_atm_call, -(i-k_atm-premium_atm_call)) for i in price]
-# payoff for the long call position
-payoff_long_call = [max(-premium_otm_call, i-k_otm_call-premium_otm_call) for i in price]
-# payoff for Iron Butterfly Strategy
-payoff = np.sum([payoff_long_put,payoff_short_put,payoff_short_call,payoff_long_call], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
-plt.plot(price, payoff_short_put, label = 'Short Put',linestyle='--')
-plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
-plt.plot(price, payoff_long_call, label = 'Long Call',linestyle='--')
-plt.plot(price, payoff, label = 'Iron Butterfly',c='black')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Iron Butterfly Strategy Payoff',fontsize = 20)
-plt.grid(True)
-
-iron butterfly strategy payoff -From the payoff plot, the maximum gain is simply the net credit you received when you buy and sell 4 options. This occurs if the stock price is exactly the same as the strike price of ATM options. In this condition, all options expire worthless and you keep all premiums received. We can see the Iron Butterfly has more narrow structures than the Iron Condor. However, the profit can be higher than with the Iron Condor as you receive more premium by selling ATM options than OTM options. - -The maximum loss occurs if the underlying price is either below the OTM put strike or above the OTM call strike. In these two conditions, two puts or two calls are exercised and the other two options expire worthless. -

Implementation

-Step 1: Initialize your algorithm which includes setting the start date and end date, setting the cash and implement the coarse selection of option contracts. -
def Initialize(self):
-	self.SetStartDate(2017, 2, 1)
-	self.SetEndDate(2017, 3, 31)
-	self.SetCash(300000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	option.SetFilter(-10, 10, timedelta(0), timedelta(30))
-	# use the underlying equity GOOG as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Break the candidate contracts into the call and put options. -
def TradeOptions(self,optionchain):
-    for i in optionchain:
-        if i.Key != self.symbol: continue
-	chain = i.Value
-	# filter the call and put options from the contracts
-	call = [i for i in chain if i.Right == 0]
-	put = [i for i in chain if i.Right == 1]
-
-Step 3: Sort the call and put options according to their strike price respectively. option.SetFilter(-10, 10, timedelta(0), timedelta(30)) helps us choose 21 call options and 21 put options which expire within 30 days from now on.Then for call option, the first 10 contracts are in the money, the last 10 contracts are out of the money. The middle one is at the money option. For put options, the first 10 contracts are out of the money, the last 10 contracts are in the money. -
call_contracts = sorted(call,key = lambda x: x.Strike)
-put_contracts = sorted(put,key = lambda x: x.Strike)
-if len(call_contracts) == 0 or len(put_contracts) == 0 : continue
-
-Step 4: Find the specific contracts to trade. At the money options have the minimum absolute value of the difference between the underlying price and the strike price. -
# Sell 1 ATM Put
-self.atm_put = sorted(put_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
-self.Sell(self.atm_put.Symbol ,1)
-# Sell 1 ATM Call
-self.atm_call = sorted(call_contracts,key = lambda x: abs(chain.Underlying.Price - x.Strike))[0]
-self.Sell(self.atm_call.Symbol ,1)
-# Buy 1 OTM Call
-self.otm_call = call_contracts[-1]
-self.Buy(self.otm_call.Symbol ,1)
-# Buy 1 OTM Put
-self.otm_put = put_contracts[0]
-self.Buy(self.otm_put.Symbol ,1)
-
-

Summary

-In this algorithm, on 04/03/2017, the share price of Google is $832.8. We buy OTM put(strike = $805) at $2, OTM call(strike = $860) and sell an ATM call and an ATM put. At the expiry 04/21/2017, the share price is $841.53. The ATM call is exercised and the other 3 options expire worthless. As we hold the short position of ATM call, after expiration we hold 100 short positions of GOOG stock. -

Algorithm

-Backtest using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/Tutorial08 Protective Collar.html b/Tutorial Series/Applied Options/Tutorial08 Protective Collar.html deleted file mode 100644 index dbd06eb..0000000 --- a/Tutorial Series/Applied Options/Tutorial08 Protective Collar.html +++ /dev/null @@ -1,85 +0,0 @@ -

Definition

-Protective Collar is an option strategy that involves both the underlying stock and two option contracts. The trader buys (or already owns) a stock, then buys an out-the-money put option and sells an out-the-money call option.  It is similar to the covered call strategy with the purchase of an additional put option. It is being used if the trader is writing covered calls but wish to protect himself from an unexpected downside sharp move in the price of the underlying security. As a tradeoff, the profit will become limited compared with the covered call strategy. -

Payoff

-
# Protective Collar
-price = np.arange(700,950,1)
-# assume at time 0, the price of the undelying stock is 830
-k_otm_put = 800 # the strike price of OTM put
-k_otm_call = 860 # the strike price of OTM call
-premium_otm_put = 6 # the premium of OTM put
-premium_otm_call = 2 # the premium of OTM call
-# payoff for the long put position
-payoff_long_put = [max(-premium_otm_put, k_otm_put-i-premium_otm_put) for i in price]
-# payoff for the short call position
-payoff_short_call = [min(premium_otm_call, -(i-k_otm_call-premium_otm_call)) for i in price]
-# payoff for the underlying stock
-payoff_stock = price - 830
-# payoff for the Protective Collar Strategy
-payoff = np.sum([payoff_long_put,payoff_short_call,payoff_stock], axis=0)
-plt.figure(figsize=(20,15))
-plt.plot(price, payoff_long_put, label = 'Long Put',linestyle='--')
-plt.plot(price, payoff_short_call, label = 'Short Call',linestyle='--')
-plt.plot(price, payoff_stock, label = 'Underlying Stock',linestyle='--')
-plt.plot(price, payoff, label = 'Protective Collar',c='black')
-plt.legend(fontsize = 20)
-plt.xlabel('Stock Price at Expiry',fontsize = 15)
-plt.ylabel('payoff',fontsize = 15)
-plt.title('Protective Collar Strategy - Payoff',fontsize = 20)
-plt.grid(True)
-
-protective collar strategy payoff - -According to the payoff plot, the maximum profit is the strike price of short call minus the purchase price of the underlying asset add the net credit from the premium. It occurs when the stock price is beyond the strike price of the short call option. The maximum loss is the purchase price of the underlying asset minus the strike price of the long put minus the net credit from the premium. It occurs when the stock price is below the strike price of the long put. It is a strategy with limit risk and limit profit. -

Implementation

-Step 1: Initialize your algorithm that involves setting the start date and the end date, setting the cash and implement the coarse selection of option contracts. -
def Initialize(self):
-	self.SetStartDate(2017, 4, 1)
-	self.SetEndDate(2017, 5, 30)
-	self.SetCash(1000000)
-	equity = self.AddEquity("GOOG", Resolution.Minute)
-	option = self.AddOption("GOOG", Resolution.Minute)
-	self.symbol = option.Symbol
-	# set our strike/expiry filter for this option chain
-	option.SetFilter(-10, +10, timedelta(0), timedelta(30))
-	# use the underlying equity as the benchmark
-	self.SetBenchmark(equity.Symbol)
-
-Step 2: Choose the expiration date for your options traded and break the options into the call and put contracts. The choice of expiration date depends on the holding period of stocks in your portfolio. -
def TradeOptions(self,optionchain):
-    for i in optionchain:
-	if i.Key != self.symbol: continue
-	chain = i.Value
-	# choose the furthest expiration date within 30 days from now on
-	expiry = sorted(chain, key = lambda x: x.Expiry)[-1]
-	# filter the call options contracts
-	call = [x for x in chain if x.Right == 0 and x.Expiry == expiry]
-	# filter the put options contracts
-	put = [x for x in chain if x.Right == 1 and x.Expiry == expiry]
-
-Step 3: Choose the deep in-the-money call and put options in the list and then sell the call options and buy the put options. -
self.otm_call = sorted(call, key = lambda x: x.Strike)[-1]
-self.otm_put = sorted(put, key = lambda x: x.Strike)[0]
-if (self.otm_call is None) or (self.otm_put is None): continue
-self.Sell(self.otm_call.Symbol, 1) # sell the OTM call
-self.Buy(self.otm_put.Symbol, 1) # buy the OTM put
-
-Step 4: In Ondata, if there is no assets in portfolio, we buy the undelying stocks. After that, we trade the options which equivalent to the amount of your stocks holding. (one option contracts equals 100 undelying shares). -
def OnData(self,slice):
-    optionchain = slice.OptionChains
-    for i in slice.OptionChains:
-    if i.Key != self.symbol: continue
-    chains = i.Value
-    contract_list = [x for x in chains]
-    if (slice.OptionChains.Count == 0) or (len(contract_list) == 0): return
-    # if you don't hold options and stocks, buy the stocks and trade the options
-    if not self.Portfolio.Invested:
-	self.Buy("GOOG",100)	 # buy 100 shares of the underlying stock
-	self.TradeOptions(optionchain)   # sell OTM call and buy OTM put
-
-

Summary

-In this algorithm, at the beginning  01/04/2016, we purchased 100 GOOG shares. At the same time, we purchased a $715 put at $6 and sells a $772.5 call at $2.45. The share price of GOOG is $739.32, which is between the strike prices of two out-the-money options. At the expiry 01/15/2016, the share price of GOOG drops to $714.32. The call option expire worthless but the put option is exercised. Then we sell 100 GOOG shares at $715. Then we hold neither option positions and stock positions. -

Algorithm

-Backtest using SetFilter - -Backtest using OptionChainProvider - diff --git a/Tutorial Series/Applied Options/images/bull_call_spread.png b/Tutorial Series/Applied Options/images/bull_call_spread.png deleted file mode 100644 index f400947..0000000 Binary files a/Tutorial Series/Applied Options/images/bull_call_spread.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/butterfly_spread.png b/Tutorial Series/Applied Options/images/butterfly_spread.png deleted file mode 100644 index 493de25..0000000 Binary files a/Tutorial Series/Applied Options/images/butterfly_spread.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/covered_call.png b/Tutorial Series/Applied Options/images/covered_call.png deleted file mode 100644 index 18b5a69..0000000 Binary files a/Tutorial Series/Applied Options/images/covered_call.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/iron_butterfly.png b/Tutorial Series/Applied Options/images/iron_butterfly.png deleted file mode 100644 index 6fccbf3..0000000 Binary files a/Tutorial Series/Applied Options/images/iron_butterfly.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/iron_condor.png b/Tutorial Series/Applied Options/images/iron_condor.png deleted file mode 100644 index 065d06a..0000000 Binary files a/Tutorial Series/Applied Options/images/iron_condor.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/long_straddle.png b/Tutorial Series/Applied Options/images/long_straddle.png deleted file mode 100644 index 9e0ab28..0000000 Binary files a/Tutorial Series/Applied Options/images/long_straddle.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/long_strangle.png b/Tutorial Series/Applied Options/images/long_strangle.png deleted file mode 100644 index bbf0ce8..0000000 Binary files a/Tutorial Series/Applied Options/images/long_strangle.png and /dev/null differ diff --git a/Tutorial Series/Applied Options/images/protective_collar.png b/Tutorial Series/Applied Options/images/protective_collar.png deleted file mode 100644 index 8d85b34..0000000 Binary files a/Tutorial Series/Applied Options/images/protective_collar.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial01 Data Types and Data Structures-checkpoint.ipynb b/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial01 Data Types and Data Structures-checkpoint.ipynb deleted file mode 100644 index 751aa6e..0000000 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial01 Data Types and Data Structures-checkpoint.ipynb +++ /dev/null @@ -1,512 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Welcome to QuantConnect\n" - ] - } - ], - "source": [ - "my_string1 = 'Welcome to'\n", - "my_string2 = \"QuantConnect\"\n", - "print my_string1 + ' ' + my_string2" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "10\n", - "\n" - ] - } - ], - "source": [ - "my_int = 10\n", - "print my_int\n", - "print type(my_int)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n" - ] - } - ], - "source": [ - "my_string = \"100\"\n", - "print type(my_string)\n", - "my_int = int(my_string)E\n", - "print type(my_int)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - } - ], - "source": [ - "my_string = \"100\"\n", - "my_float = float(my_string)\n", - "print type(my_float)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "False\n", - "\n" - ] - } - ], - "source": [ - "my_bool = False\n", - "print my_bool\n", - "print type(my_bool)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Addition 2\n", - "Subtraction 3\n", - "Multiplication 6\n", - "Division 5\n", - "exponent 8\n" - ] - } - ], - "source": [ - "print \"Addition \", 1+1\n", - "print \"Subtraction \", 5-2\n", - "print \"Multiplication \", 2*3\n", - "print \"Division \", 10/2\n", - "print 'exponent', 2**3" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0\n", - "0.333333333333\n" - ] - } - ], - "source": [ - "print 1/3\n", - "print 1.0/3" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Quant', 'Connect', 1, 2, 3]\n" - ] - } - ], - "source": [ - "my_list = ['Quant', 'Connect', 1,2,3]\n", - "print my_list" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "5\n", - "Quant\n", - "3\n" - ] - } - ], - "source": [ - "my_list = ['Quant', 'Connect', 1,2,3]\n", - "print len(my_list)\n", - "print my_list[0]\n", - "print my_list[len(my_list) -1]" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Quant', 'Connect', 'go', 2, 3]\n" - ] - } - ], - "source": [ - "my_list = ['Quant','Connect',1,2,3]\n", - "my_list[2] = 'go'\n", - "print my_list" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Quant', 'Connect']\n", - "['Connect']\n" - ] - } - ], - "source": [ - "my_list = ['Quant']\n", - "my_list.append('Connect')\n", - "print my_list\n", - "my_list.remove('Quant')\n", - "print my_list" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Connect', 1]\n" - ] - } - ], - "source": [ - "my_list = ['Quant','Connect',1,2,3]\n", - "print my_list[1:3]" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Connect', 1, 2, 3]\n" - ] - } - ], - "source": [ - "print my_list[1:]" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['Quant', 'Connect', 1]\n" - ] - } - ], - "source": [ - "print my_list[:3]" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "my_tuple = ('Welcome','to','QuantConnect')" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "('to', 'QuantConnect')\n" - ] - } - ], - "source": [ - "my_tuple = ('Welcome','to','QuantConnect')\n", - "print my_tuple[1:]" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "set(['GOOG', 'FB', 'AAPL', 'IBM', 'F'])\n" - ] - } - ], - "source": [ - "stock_list = ['AAPL','GOOG','IBM','AAPL','IBM','FB','F','GOOG']\n", - "stock_set = set(stock_list)\n", - "print stock_set" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "my_dic = {'AAPL':'AAPLE', 'FB':'FaceBook', 'GOOG':'Alphabet'}" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Alphabet\n" - ] - } - ], - "source": [ - "print my_dic['GOOG']" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Alphabet Company\n" - ] - } - ], - "source": [ - "my_dic['GOOG'] = 'Alphabet Company'\n", - "print my_dic['GOOG']" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['GOOG', 'AAPL', 'FB']\n" - ] - } - ], - "source": [ - "print my_dic.keys()" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "to QuantConnect\n" - ] - } - ], - "source": [ - "my_str = 'Welcome to QuantConnect'\n", - "print my_str[8:]" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "7\n", - "2\n", - "ell the e in this sentence now becomes e\n" - ] - } - ], - "source": [ - "print 'Counting the number of e appears in this sentence'.count('e')\n", - "print 'The first time e appears in this sentence'.find('e')\n", - "print 'all the a in this sentence now becomes e'.replace('a','e')" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2016-04-01 09:43:00\n", - "09\n" - ] - } - ], - "source": [ - "Time = '2016-04-01 09:43:00'\n", - "splited_list = Time.split(' ')\n", - "date = splited_list[0]\n", - "time = splited_list[1]\n", - "print date, time\n", - "hour = time.split(':')[0]\n", - "print hour" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Hour: 09, Minute:43\n" - ] - } - ], - "source": [ - "my_time = 'Hour: {}, Minute:{}'.format('09','43')\n", - "print my_time" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "the pi number is 3.140000\n", - "Welcome to Quantconnect\n" - ] - } - ], - "source": [ - "print 'the pi number is %f'%3.14\n", - "print '%s to %s'%('Welcome','Quantconnect')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial05 Pandas-Resampling and DataFrame-checkpoint.ipynb b/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial05 Pandas-Resampling and DataFrame-checkpoint.ipynb deleted file mode 100644 index 4fc8445..0000000 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial05 Pandas-Resampling and DataFrame-checkpoint.ipynb +++ /dev/null @@ -1,1079 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import quandl\n", - "import numpy as np\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'\n", - "aapl_table = quandl.get('WIKI/AAPL')" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "aapl = aapl_table['Adj. Close']['2017']" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 120.932434\n", - "2017-02-28 136.551200\n", - "2017-03-31 143.532630\n", - "2017-04-30 144.179981\n", - "2017-05-31 156.100000\n", - "2017-06-30 155.450000\n", - "2017-07-31 153.460000\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "aapl.resample('M').max()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "by_week = aapl.resample('W').mean()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 1.788740\n", - "2017-03-31 4.341378\n", - "2017-05-31 5.476627\n", - "2017-07-31 3.927178\n", - "Freq: 2M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "twomon = aapl.resample('2M').std()\n", - "twomon" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 120.337440\n", - "2017-02-28 136.431689\n", - "2017-03-31 143.074505\n", - "2017-04-30 143.064546\n", - "2017-05-31 152.760000\n", - "2017-06-30 144.020000\n", - "2017-07-31 149.500000\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "last_day = aapl.resample('M').agg(lambda x: x[-1])\n", - "last_day" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 0.045940\n", - "2017-02-28 0.070409\n", - "2017-03-31 0.033823\n", - "2017-04-30 -0.007736\n", - "2017-05-31 0.039829\n", - "2017-06-30 -0.073528\n", - "2017-07-31 0.037546\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "monthly_return = aapl.resample('M').agg(lambda x: x[-1]/x[1] - 1)\n", - "monthly_return" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.0208974076157\n", - "0.0476398315185\n", - "0.0704090212384\n" - ] - } - ], - "source": [ - "print monthly_return.mean()\n", - "print monthly_return.std()\n", - "print monthly_return.max()" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Date\n", - "2017-01-31 NaN\n", - "2017-02-28 16.094249\n", - "2017-03-31 6.642816\n", - "2017-04-30 -0.009959\n", - "2017-05-31 9.695454\n", - "2017-06-30 -8.740000\n", - "2017-07-31 5.480000\n", - "Freq: M, Name: Adj. Close, dtype: float64\n", - "Date\n", - "2017-01-31 NaN\n", - "2017-02-28 0.133743\n", - "2017-03-31 0.048690\n", - "2017-04-30 -0.000070\n", - "2017-05-31 0.067770\n", - "2017-06-30 -0.057214\n", - "2017-07-31 0.038050\n", - "Freq: M, Name: Adj. Close, dtype: float64\n" - ] - } - ], - "source": [ - "print last_day.diff()\n", - "print last_day.pct_change()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "count 144.000000\n", - "mean 140.532385\n", - "std 10.956590\n", - "min 115.051914\n", - "25% 136.314668\n", - "50% 143.064944\n", - "75% 147.915726\n", - "max 156.100000\n", - "Name: Adj. Close, dtype: float64\n" - ] - } - ], - "source": [ - "print aapl.describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-02-28 0.133743\n", - "2017-03-31 0.048690\n", - "2017-04-30 -0.000070\n", - "2017-05-31 0.067770\n", - "2017-06-30 -0.057214\n", - "2017-07-31 0.038050\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "daily_return = last_day.pct_change()\n", - "daily_return.dropna()" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2017-01-31 5.880519\n", - "2017-02-28 9.093671\n", - "2017-03-31 5.417829\n", - "2017-04-30 4.073331\n", - "2017-05-31 10.167192\n", - "2017-06-30 13.180000\n", - "2017-07-31 10.730000\n", - "Freq: M, Name: Adj. Close, dtype: float64" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "aapl.resample('M').agg(lambda x: max(x) - min(x))" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " AAPL GOOG IBM\n", - "2017-07-03 143.50 898.70 155.58\n", - "2017-07-04 144.09 911.71 153.67\n", - "2017-07-05 142.73 906.69 152.36\n", - "2017-07-06 144.18 918.59 152.94\n", - "2017-07-07 143.77 926.99 153.49\n" - ] - } - ], - "source": [ - "dict = {'AAPL': [143.5, 144.09, 142.73, 144.18, 143.77],'GOOG':[898.7, 911.71, 906.69, 918.59, 926.99],\n", - " 'IBM':[155.58, 153.67, 152.36, 152.94, 153.49]}\n", - "data_index = pd.date_range('2017-07-03',periods = 5, freq = 'D')\n", - "df = pd.DataFrame(dict, index = data_index)\n", - "print df" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " AAPL GOOG\n", - "0 143.50 898.70\n", - "1 144.09 911.71\n", - "2 142.73 906.69\n", - "3 144.18 918.59\n", - "4 143.77 926.99\n" - ] - } - ], - "source": [ - "s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')\n", - "s2 = pd.Series([898.7, 911.71, 906.69, 918.59, 926.99], name = 'GOOG')\n", - "data_frame = pd.concat([s1,s2], axis = 1)\n", - "print data_frame" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Index([u'AAPL', u'GOOG', u'IBM'], dtype='object')\n", - "2017-07-03 143.50\n", - "2017-07-04 144.09\n", - "2017-07-05 142.73\n", - "2017-07-06 144.18\n", - "2017-07-07 143.77\n", - "Freq: D, Name: AAPL, dtype: float64\n", - "2017-07-03 898.70\n", - "2017-07-04 911.71\n", - "2017-07-05 906.69\n", - "2017-07-06 918.59\n", - "2017-07-07 926.99\n", - "Freq: D, Name: GOOG, dtype: float64\n" - ] - } - ], - "source": [ - "print df.columns\n", - "print df.AAPL\n", - "print df['GOOG']" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Date\n", - "2017-07-24 152.09\n", - "2017-07-25 152.74\n", - "2017-07-26 153.46\n", - "2017-07-27 150.56\n", - "2017-07-28 149.50\n", - "Name: Close, dtype: float64\n", - "Date\n", - "2017-07-24 21122730.0\n", - "2017-07-25 18612649.0\n", - "2017-07-26 15172136.0\n", - "2017-07-27 32175875.0\n", - "2017-07-28 16832947.0\n", - "Name: Adj. Volume, dtype: float64\n" - ] - } - ], - "source": [ - "df = aapl_table\n", - "print df.Close.tail(5)\n", - "print df['Adj. Volume'].tail(5)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close Volume Ex-Dividend \\\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34 64416504.0 0.0 \n", - "2016-02-29 96.86 98.2300 96.65 96.69 35216277.0 0.0 \n", - "2016-03-31 109.72 109.9000 108.88 108.99 25888449.0 0.0 \n", - "2016-04-30 93.99 94.7200 92.51 93.74 68531478.0 0.0 \n", - "2016-05-31 99.60 100.4000 98.82 99.86 42307212.0 0.0 \n", - "2016-06-30 94.44 95.7700 94.30 95.60 35836356.0 0.0 \n", - "2016-07-31 104.19 104.5500 103.68 104.21 27733688.0 0.0 \n", - "2016-08-31 105.66 106.5699 105.64 106.10 29662406.0 0.0 \n", - "2016-09-30 112.46 113.3700 111.80 113.05 36379106.0 0.0 \n", - "2016-10-31 113.65 114.2300 113.20 113.54 26419398.0 0.0 \n", - "2016-11-30 111.56 112.2000 110.27 110.52 36162258.0 0.0 \n", - "2016-12-31 116.65 117.2000 115.43 115.82 30586265.0 0.0 \n", - "\n", - " Split Ratio Adj. Open Adj. High Adj. Low Adj. Close \\\n", - "Date \n", - "2016-01-31 1.0 91.952819 94.426495 91.525989 94.426495 \n", - "2016-02-29 1.0 94.466655 95.802804 94.261844 94.300856 \n", - "2016-03-31 1.0 107.008893 107.184446 106.189649 106.296931 \n", - "2016-04-30 1.0 91.667571 92.379533 90.224141 91.423748 \n", - "2016-05-31 1.0 97.732787 98.517789 96.967410 97.987913 \n", - "2016-06-30 1.0 92.669522 93.974588 92.532147 93.807775 \n", - "2016-07-31 1.0 102.236738 102.589989 101.736299 102.256363 \n", - "2016-08-31 1.0 104.237384 105.135033 104.217653 104.671460 \n", - "2016-09-30 1.0 110.945828 111.843576 110.294715 111.527885 \n", - "2016-10-31 1.0 112.119806 112.691997 111.675865 112.011287 \n", - "2016-11-30 1.0 110.629129 111.263789 109.349893 109.597807 \n", - "2016-12-31 1.0 115.676657 116.222068 114.466837 114.853583 \n", - "\n", - " Adj. Volume \n", - "Date \n", - "2016-01-31 64416504.0 \n", - "2016-02-29 35216277.0 \n", - "2016-03-31 25888449.0 \n", - "2016-04-30 68531478.0 \n", - "2016-05-31 42307212.0 \n", - "2016-06-30 35836356.0 \n", - "2016-07-31 27733688.0 \n", - "2016-08-31 29662406.0 \n", - "2016-09-30 36379106.0 \n", - "2016-10-31 26419398.0 \n", - "2016-11-30 36162258.0 \n", - "2016-12-31 30586265.0 \n" - ] - } - ], - "source": [ - "aapl_2016 = df['2016']\n", - "aapl_month = aapl_2016.resample('M').agg(lambda x: x[-1])\n", - "print aapl_month" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34\n", - "2016-02-29 96.86 98.2300 96.65 96.69\n", - "2016-03-31 109.72 109.9000 108.88 108.99\n", - "2016-04-30 93.99 94.7200 92.51 93.74\n", - "2016-05-31 99.60 100.4000 98.82 99.86\n", - "2016-06-30 94.44 95.7700 94.30 95.60\n", - "2016-07-31 104.19 104.5500 103.68 104.21\n", - "2016-08-31 105.66 106.5699 105.64 106.10\n", - "2016-09-30 112.46 113.3700 111.80 113.05\n", - "2016-10-31 113.65 114.2300 113.20 113.54\n", - "2016-11-30 111.56 112.2000 110.27 110.52\n", - "2016-12-31 116.65 117.2000 115.43 115.82\n" - ] - } - ], - "source": [ - "aapl_bar = aapl_month[['Open', 'High', 'Low', 'Close']]\n", - "print aapl_bar" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close\n", - "Date \n", - "2016-03-31 109.72 109.90 108.88 108.99\n", - "2016-04-30 93.99 94.72 92.51 93.74\n", - "2016-05-31 99.60 100.40 98.82 99.86\n", - "2016-06-30 94.44 95.77 94.30 95.60\n" - ] - } - ], - "source": [ - "print aapl_month.loc['2016-03':'2016-06',['Open', 'High', 'Low', 'Close']]" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close\n", - "Date \n", - "2016-03-31 109.72 109.9000 108.88 108.99\n", - "2016-08-31 105.66 106.5699 105.64 106.10\n", - "2016-09-30 112.46 113.3700 111.80 113.05\n", - "2016-10-31 113.65 114.2300 113.20 113.54\n", - "2016-11-30 111.56 112.2000 110.27 110.52\n", - "2016-12-31 116.65 117.2000 115.43 115.82\n" - ] - } - ], - "source": [ - "above = aapl_bar[aapl_bar.Close > np.mean(aapl_bar.Close)]\n", - "print above" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34 NaN\n", - "2016-02-29 96.86 98.2300 96.65 96.69 -0.006678\n", - "2016-03-31 109.72 109.9000 108.88 108.99 0.127211\n", - "2016-04-30 93.99 94.7200 92.51 93.74 -0.139921\n", - "2016-05-31 99.60 100.4000 98.82 99.86 0.065287\n", - "2016-06-30 94.44 95.7700 94.30 95.60 -0.042660\n", - "2016-07-31 104.19 104.5500 103.68 104.21 0.090063\n", - "2016-08-31 105.66 106.5699 105.64 106.10 0.018136\n", - "2016-09-30 112.46 113.3700 111.80 113.05 0.065504\n", - "2016-10-31 113.65 114.2300 113.20 113.54 0.004334\n", - "2016-11-30 111.56 112.2000 110.27 110.52 -0.026599\n", - "2016-12-31 116.65 117.2000 115.43 115.82 0.047955\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/usr/local/lib/python2.7/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", - " \"\"\"Entry point for launching an IPython kernel.\n" - ] - } - ], - "source": [ - "aapl_bar['rate_return'] = aapl_bar.Close.pct_change()\n", - "print aapl_bar" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 False False False False True\n", - "2016-02-29 False False False False False\n", - "2016-03-31 False False False False False\n", - "2016-04-30 False False False False False\n", - "2016-05-31 False False False False False\n", - "2016-06-30 False False False False False\n", - "2016-07-31 False False False False False\n", - "2016-08-31 False False False False False\n", - "2016-09-30 False False False False False\n", - "2016-10-31 False False False False False\n", - "2016-11-30 False False False False False\n", - "2016-12-31 False False False False False\n", - "\n", - "------------------ separate line -----------------\n", - "\n", - " Open High Low Close rate_return\n", - "count 12 12 12 12 12\n", - "unique 1 1 1 1 2\n", - "top False False False False False\n", - "freq 12 12 12 12 11\n" - ] - } - ], - "source": [ - "missing = aapl_bar.isnull()\n", - "print missing\n", - "print '\\n------------------ separate line -----------------\\n'\n", - "print missing.describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 False False False False True\n" - ] - } - ], - "source": [ - "print missing[missing.rate_return == True]" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return\n", - "Date \n", - "2016-02-29 96.86 98.2300 96.65 96.69 -0.006678\n", - "2016-03-31 109.72 109.9000 108.88 108.99 0.127211\n", - "2016-04-30 93.99 94.7200 92.51 93.74 -0.139921\n", - "2016-05-31 99.60 100.4000 98.82 99.86 0.065287\n", - "2016-06-30 94.44 95.7700 94.30 95.60 -0.042660\n", - "2016-07-31 104.19 104.5500 103.68 104.21 0.090063\n", - "2016-08-31 105.66 106.5699 105.64 106.10 0.018136\n", - "2016-09-30 112.46 113.3700 111.80 113.05 0.065504\n", - "2016-10-31 113.65 114.2300 113.20 113.54 0.004334\n", - "2016-11-30 111.56 112.2000 110.27 110.52 -0.026599\n", - "2016-12-31 116.65 117.2000 115.43 115.82 0.047955\n", - "\n", - "---------------------- separate line--------------------\n", - "\n", - " Open High Low Close rate_return\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34 0.000000\n", - "2016-02-29 96.86 98.2300 96.65 96.69 -0.006678\n", - "2016-03-31 109.72 109.9000 108.88 108.99 0.127211\n", - "2016-04-30 93.99 94.7200 92.51 93.74 -0.139921\n", - "2016-05-31 99.60 100.4000 98.82 99.86 0.065287\n", - "2016-06-30 94.44 95.7700 94.30 95.60 -0.042660\n", - "2016-07-31 104.19 104.5500 103.68 104.21 0.090063\n", - "2016-08-31 105.66 106.5699 105.64 106.10 0.018136\n", - "2016-09-30 112.46 113.3700 111.80 113.05 0.065504\n", - "2016-10-31 113.65 114.2300 113.20 113.54 0.004334\n", - "2016-11-30 111.56 112.2000 110.27 110.52 -0.026599\n", - "2016-12-31 116.65 117.2000 115.43 115.82 0.047955\n" - ] - } - ], - "source": [ - "drop = aapl_bar.dropna()\n", - "print drop\n", - "print '\\n---------------------- separate line--------------------\\n'\n", - "fill = aapl_bar.fillna(0)\n", - "print fill" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " AAPL GOOG\n", - "0 143.50 898.70\n", - "1 144.09 911.71\n", - "2 142.73 906.69\n", - "3 144.18 918.59\n", - "4 143.77 926.99\n" - ] - } - ], - "source": [ - "s1 = pd.Series([143.5, 144.09, 142.73, 144.18, 143.77], name = 'AAPL')\n", - "s2 = pd.Series([898.7, 911.71, 906.69, 918.59, 926.99], name = 'GOOG')\n", - "data_frame = pd.concat([s1,s2], axis = 1)\n", - "print data_frame" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Date\n", - "2016-01-31 4.578210\n", - "2016-02-29 4.571510\n", - "2016-03-31 4.691256\n", - "2016-04-30 4.540525\n", - "2016-05-31 4.603769\n", - "2016-06-30 4.560173\n", - "2016-07-31 4.646408\n", - "2016-08-31 4.664382\n", - "2016-09-30 4.727830\n", - "2016-10-31 4.732155\n", - "2016-11-30 4.705197\n", - "2016-12-31 4.752037\n", - "Freq: M, Name: log_price, dtype: float64\n", - "\n", - "---------------------- separate line--------------------\n", - "\n", - " Open High Low Close rate_return log_price\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34 NaN 4.578210\n", - "2016-02-29 96.86 98.2300 96.65 96.69 -0.006678 4.571510\n", - "2016-03-31 109.72 109.9000 108.88 108.99 0.127211 4.691256\n", - "2016-04-30 93.99 94.7200 92.51 93.74 -0.139921 4.540525\n", - "2016-05-31 99.60 100.4000 98.82 99.86 0.065287 4.603769\n", - "2016-06-30 94.44 95.7700 94.30 95.60 -0.042660 4.560173\n", - "2016-07-31 104.19 104.5500 103.68 104.21 0.090063 4.646408\n", - "2016-08-31 105.66 106.5699 105.64 106.10 0.018136 4.664382\n", - "2016-09-30 112.46 113.3700 111.80 113.05 0.065504 4.727830\n", - "2016-10-31 113.65 114.2300 113.20 113.54 0.004334 4.732155\n", - "2016-11-30 111.56 112.2000 110.27 110.52 -0.026599 4.705197\n", - "2016-12-31 116.65 117.2000 115.43 115.82 0.047955 4.752037\n" - ] - } - ], - "source": [ - "log_price = np.log(aapl_bar.Close)\n", - "log_price.name = 'log_price'\n", - "print log_price\n", - "print '\\n---------------------- separate line--------------------\\n'\n", - "concat = pd.concat([aapl_bar, log_price], axis = 1)\n", - "print concat" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Volume Split Ratio\n", - "Date \n", - "2016-10-31 26419398.0 1.0\n", - "2016-11-30 36162258.0 1.0\n", - "2016-12-31 30586265.0 1.0\n", - "2017-01-31 49200993.0 1.0\n", - "2017-02-28 23482860.0 1.0\n", - "2017-03-31 19661651.0 1.0\n", - "2017-04-30 20247187.0 1.0\n", - "\n", - "---------------------- separate line--------------------\n", - "\n", - " Open High Low Close\n", - "Date \n", - "2016-10-31 113.65 114.230 113.20 113.54\n", - "2016-11-30 111.56 112.200 110.27 110.52\n", - "2016-12-31 116.65 117.200 115.43 115.82\n", - "2017-01-31 121.15 121.390 120.62 121.35\n", - "2017-02-28 137.08 137.435 136.70 136.99\n", - "2017-03-31 143.72 144.270 143.01 143.66\n", - "2017-04-30 144.09 144.300 143.27 143.65\n" - ] - } - ], - "source": [ - "df_volume = aapl_table.loc['2016-10':'2017-04',['Volume', 'Split Ratio']].resample('M').agg(lambda x: x[-1])\n", - "print df_volume\n", - "print '\\n---------------------- separate line--------------------\\n'\n", - "df_2017 = aapl_table.loc['2016-10':'2017-04',['Open', 'High', 'Low', 'Close']].resample('M').agg(lambda x: x[-1])\n", - "print df_2017" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return Volume \\\n", - "Date \n", - "2016-01-31 94.79 97.3400 94.35 97.34 NaN NaN \n", - "2016-02-29 96.86 98.2300 96.65 96.69 -0.006678 NaN \n", - "2016-03-31 109.72 109.9000 108.88 108.99 0.127211 NaN \n", - "2016-04-30 93.99 94.7200 92.51 93.74 -0.139921 NaN \n", - "2016-05-31 99.60 100.4000 98.82 99.86 0.065287 NaN \n", - "2016-06-30 94.44 95.7700 94.30 95.60 -0.042660 NaN \n", - "2016-07-31 104.19 104.5500 103.68 104.21 0.090063 NaN \n", - "2016-08-31 105.66 106.5699 105.64 106.10 0.018136 NaN \n", - "2016-09-30 112.46 113.3700 111.80 113.05 0.065504 NaN \n", - "2016-10-31 113.65 114.2300 113.20 113.54 0.004334 26419398.0 \n", - "2016-11-30 111.56 112.2000 110.27 110.52 -0.026599 36162258.0 \n", - "2016-12-31 116.65 117.2000 115.43 115.82 0.047955 30586265.0 \n", - "2017-01-31 NaN NaN NaN NaN NaN 49200993.0 \n", - "2017-02-28 NaN NaN NaN NaN NaN 23482860.0 \n", - "2017-03-31 NaN NaN NaN NaN NaN 19661651.0 \n", - "2017-04-30 NaN NaN NaN NaN NaN 20247187.0 \n", - "\n", - " Split Ratio \n", - "Date \n", - "2016-01-31 NaN \n", - "2016-02-29 NaN \n", - "2016-03-31 NaN \n", - "2016-04-30 NaN \n", - "2016-05-31 NaN \n", - "2016-06-30 NaN \n", - "2016-07-31 NaN \n", - "2016-08-31 NaN \n", - "2016-09-30 NaN \n", - "2016-10-31 1.0 \n", - "2016-11-30 1.0 \n", - "2016-12-31 1.0 \n", - "2017-01-31 1.0 \n", - "2017-02-28 1.0 \n", - "2017-03-31 1.0 \n", - "2017-04-30 1.0 \n" - ] - } - ], - "source": [ - "concat = pd.concat([aapl_bar,df_volume],axis = 1)\n", - "print concat" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open High Low Close rate_return Volume \\\n", - "Date \n", - "2016-10-31 113.65 114.23 113.20 113.54 0.004334 26419398.0 \n", - "2016-11-30 111.56 112.20 110.27 110.52 -0.026599 36162258.0 \n", - "2016-12-31 116.65 117.20 115.43 115.82 0.047955 30586265.0 \n", - "\n", - " Split Ratio \n", - "Date \n", - "2016-10-31 1.0 \n", - "2016-11-30 1.0 \n", - "2016-12-31 1.0 \n" - ] - } - ], - "source": [ - "concat = pd.concat([aapl_bar,df_volume],axis = 1, join = 'inner')\n", - "print concat" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Close High Low Open rate_return\n", - "Date \n", - "2016-01-31 97.34 97.3400 94.35 94.79 NaN\n", - "2016-02-29 96.69 98.2300 96.65 96.86 -0.006678\n", - "2016-03-31 108.99 109.9000 108.88 109.72 0.127211\n", - "2016-04-30 93.74 94.7200 92.51 93.99 -0.139921\n", - "2016-05-31 99.86 100.4000 98.82 99.60 0.065287\n", - "2016-06-30 95.60 95.7700 94.30 94.44 -0.042660\n", - "2016-07-31 104.21 104.5500 103.68 104.19 0.090063\n", - "2016-08-31 106.10 106.5699 105.64 105.66 0.018136\n", - "2016-09-30 113.05 113.3700 111.80 112.46 0.065504\n", - "2016-10-31 113.54 114.2300 113.20 113.65 0.004334\n", - "2016-11-30 110.52 112.2000 110.27 111.56 -0.026599\n", - "2016-12-31 115.82 117.2000 115.43 116.65 0.047955\n", - "2016-10-31 113.54 114.2300 113.20 113.65 NaN\n", - "2016-11-30 110.52 112.2000 110.27 111.56 NaN\n", - "2016-12-31 115.82 117.2000 115.43 116.65 NaN\n", - "2017-01-31 121.35 121.3900 120.62 121.15 NaN\n", - "2017-02-28 136.99 137.4350 136.70 137.08 NaN\n", - "2017-03-31 143.66 144.2700 143.01 143.72 NaN\n", - "2017-04-30 143.65 144.3000 143.27 144.09 NaN\n" - ] - } - ], - "source": [ - "append = aapl_bar.append(df_2017)\n", - "print append" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Close High Low Open rate_return\n", - "Date \n", - "2016-01-31 97.34 97.3400 94.35 94.79 NaN\n", - "2016-02-29 96.69 98.2300 96.65 96.86 -0.006678\n", - "2016-03-31 108.99 109.9000 108.88 109.72 0.127211\n", - "2016-04-30 93.74 94.7200 92.51 93.99 -0.139921\n", - "2016-05-31 99.86 100.4000 98.82 99.60 0.065287\n", - "2016-06-30 95.60 95.7700 94.30 94.44 -0.042660\n", - "2016-07-31 104.21 104.5500 103.68 104.19 0.090063\n", - "2016-08-31 106.10 106.5699 105.64 105.66 0.018136\n", - "2016-09-30 113.05 113.3700 111.80 112.46 0.065504\n", - "2016-10-31 113.54 114.2300 113.20 113.65 0.004334\n", - "2016-11-30 110.52 112.2000 110.27 111.56 -0.026599\n", - "2016-12-31 115.82 117.2000 115.43 116.65 0.047955\n", - "2016-10-31 113.54 114.2300 113.20 113.65 NaN\n", - "2016-11-30 110.52 112.2000 110.27 111.56 NaN\n", - "2016-12-31 115.82 117.2000 115.43 116.65 NaN\n", - "2017-01-31 121.35 121.3900 120.62 121.15 NaN\n", - "2017-02-28 136.99 137.4350 136.70 137.08 NaN\n", - "2017-03-31 143.66 144.2700 143.01 143.72 NaN\n", - "2017-04-30 143.65 144.3000 143.27 144.09 NaN\n" - ] - } - ], - "source": [ - "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Change Close High Low Open rate_return\n", - "Date \n", - "2016-01-31 NaN 97.34 97.3400 94.35 94.79 NaN\n", - "2016-02-29 NaN 96.69 98.2300 96.65 96.86 -0.006678\n", - "2016-03-31 NaN 108.99 109.9000 108.88 109.72 0.127211\n", - "2016-04-30 NaN 93.74 94.7200 92.51 93.99 -0.139921\n", - "2016-05-31 NaN 99.86 100.4000 98.82 99.60 0.065287\n", - "2016-06-30 NaN 95.60 95.7700 94.30 94.44 -0.042660\n", - "2016-07-31 NaN 104.21 104.5500 103.68 104.19 0.090063\n", - "2016-08-31 NaN 106.10 106.5699 105.64 105.66 0.018136\n", - "2016-09-30 NaN 113.05 113.3700 111.80 112.46 0.065504\n", - "2016-10-31 NaN 113.54 114.2300 113.20 113.65 0.004334\n", - "2016-11-30 NaN 110.52 112.2000 110.27 111.56 -0.026599\n", - "2016-12-31 NaN 115.82 117.2000 115.43 116.65 0.047955\n", - "2016-10-31 113.65 113.54 114.2300 113.20 NaN NaN\n", - "2016-11-30 111.56 110.52 112.2000 110.27 NaN NaN\n", - "2016-12-31 116.65 115.82 117.2000 115.43 NaN NaN\n", - "2017-01-31 121.15 121.35 121.3900 120.62 NaN NaN\n", - "2017-02-28 137.08 136.99 137.4350 136.70 NaN NaN\n", - "2017-03-31 143.72 143.66 144.2700 143.01 NaN NaN\n", - "2017-04-30 144.09 143.65 144.3000 143.27 NaN NaN\n" - ] - } - ], - "source": [ - "df_2017.columns = ['Change', 'High','Low','Close']\n", - "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Change Close High Low Open rate_return\n", - "Date \n", - "2016-01-31 NaN 97.34 97.3400 94.35 94.79 NaN\n", - "2016-02-29 NaN 96.69 98.2300 96.65 96.86 -0.006678\n", - "2016-03-31 NaN 108.99 109.9000 108.88 109.72 0.127211\n", - "2016-04-30 NaN 93.74 94.7200 92.51 93.99 -0.139921\n", - "2016-05-31 NaN 99.86 100.4000 98.82 99.60 0.065287\n", - "2016-06-30 NaN 95.60 95.7700 94.30 94.44 -0.042660\n", - "2016-07-31 NaN 104.21 104.5500 103.68 104.19 0.090063\n", - "2016-08-31 NaN 106.10 106.5699 105.64 105.66 0.018136\n", - "2016-09-30 NaN 113.05 113.3700 111.80 112.46 0.065504\n", - "2016-10-31 NaN 113.54 114.2300 113.20 113.65 0.004334\n", - "2016-11-30 NaN 110.52 112.2000 110.27 111.56 -0.026599\n", - "2016-12-31 NaN 115.82 117.2000 115.43 116.65 0.047955\n", - "2016-10-31 113.65 113.54 114.2300 113.20 NaN NaN\n", - "2016-11-30 111.56 110.52 112.2000 110.27 NaN NaN\n", - "2016-12-31 116.65 115.82 117.2000 115.43 NaN NaN\n", - "2017-01-31 121.15 121.35 121.3900 120.62 NaN NaN\n", - "2017-02-28 137.08 136.99 137.4350 136.70 NaN NaN\n", - "2017-03-31 143.72 143.66 144.2700 143.01 NaN NaN\n", - "2017-04-30 144.09 143.65 144.3000 143.27 NaN NaN\n" - ] - } - ], - "source": [ - "concat = pd.concat([aapl_bar, df_2017], axis = 0)\n", - "print concat" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial06 Rate of Return, Mean and Variance-checkpoint.ipynb b/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial06 Rate of Return, Mean and Variance-checkpoint.ipynb deleted file mode 100644 index 3980d14..0000000 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial06 Rate of Return, Mean and Variance-checkpoint.ipynb +++ /dev/null @@ -1,155 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.02\n" - ] - } - ], - "source": [ - "import numpy as np\n", - "rate_return = 102.0/100 - 1\n", - "print rate_return" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Open Close log_price log_return\n", - "Date \n", - "2017-03-01 137.890 139.79 4.940141 NaN\n", - "2017-03-02 140.000 138.96 4.934186 -0.005955\n", - "2017-03-03 138.780 139.78 4.940070 0.005884\n", - "2017-03-06 139.365 139.34 4.936917 -0.003153\n", - "2017-03-07 139.060 139.52 4.938208 0.001291\n", - "2017-03-08 138.950 139.00 4.934474 -0.003734\n", - "2017-03-09 138.740 138.68 4.932169 -0.002305\n", - "2017-03-10 139.250 139.14 4.935481 0.003311\n", - "2017-03-13 138.850 139.20 4.935912 0.000431\n", - "2017-03-14 139.300 138.99 4.934402 -0.001510\n", - "2017-03-15 139.410 140.46 4.944923 0.010521\n", - "2017-03-16 140.720 140.69 4.946559 0.001636\n", - "2017-03-17 141.000 139.99 4.941571 -0.004988\n", - "2017-03-20 140.400 141.46 4.952017 0.010446\n", - "2017-03-21 142.110 139.84 4.940499 -0.011518\n", - "2017-03-22 139.845 141.42 4.951734 0.011235\n", - "2017-03-23 141.260 140.92 4.948192 -0.003542\n", - "2017-03-24 141.500 140.64 4.946203 -0.001989\n", - "2017-03-27 139.390 140.88 4.947908 0.001705\n", - "2017-03-28 140.910 143.80 4.968423 0.020515\n", - "2017-03-29 143.680 144.12 4.970646 0.002223\n", - "2017-03-30 144.190 143.93 4.969327 -0.001319\n", - "2017-03-31 143.720 143.66 4.967449 -0.001878\n" - ] - } - ], - "source": [ - "import numpy as np\n", - "import quandl\n", - "quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'\n", - "#get quandl data\n", - "aapl_table = quandl.get('WIKI/AAPL')\n", - "aapl = aapl_table.loc['2017-3',['Open','Close']]\n", - "#take log return\n", - "aapl['log_price'] = np.log(aapl.Close)\n", - "aapl['log_return'] = aapl.log_price.diff()\n", - "print aapl" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.0273081001636\n" - ] - } - ], - "source": [ - "month_return = aapl.log_return.sum()\n", - "print month_return" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4.94597446551\n" - ] - } - ], - "source": [ - "print np.mean(aapl.log_price)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.000142032804482\n" - ] - } - ], - "source": [ - "print np.var(aapl.log_price)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial10 Multiple Linear Regression-checkpoint.ipynb b/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial10 Multiple Linear Regression-checkpoint.ipynb deleted file mode 100644 index e02840b..0000000 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial10 Multiple Linear Regression-checkpoint.ipynb +++ /dev/null @@ -1,816 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import quandl\n", - "import matplotlib.pyplot as plt\n", - "import statsmodels.formula.api as sm" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'\n", - "spy_table = quandl.get('BCIW/_SPXT')\n", - "amzn_table = quandl.get('WIKI/AMZN')\n", - "ebay_table = quandl.get('WIKI/EBAY')\n", - "wal_table = quandl.get('WIKI/WMT')\n", - "aapl_table = quandl.get('WIKI/AAPL')" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
spyamznebaywalaapl
Date
2016-12-230.001351-0.0075310.008427-0.0007190.001976
2016-12-270.0022540.0141130.0149930.0022980.006331
2016-12-28-0.0082180.000946-0.007635-0.005611-0.004273
2016-12-29-0.000247-0.009081-0.001000-0.000722-0.000257
2016-12-30-0.004601-0.020172-0.009720-0.002023-0.007826
\n", - "
" - ], - "text/plain": [ - " spy amzn ebay wal aapl\n", - "Date \n", - "2016-12-23 0.001351 -0.007531 0.008427 -0.000719 0.001976\n", - "2016-12-27 0.002254 0.014113 0.014993 0.002298 0.006331\n", - "2016-12-28 -0.008218 0.000946 -0.007635 -0.005611 -0.004273\n", - "2016-12-29 -0.000247 -0.009081 -0.001000 -0.000722 -0.000257\n", - "2016-12-30 -0.004601 -0.020172 -0.009720 -0.002023 -0.007826" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "spy = spy_table.loc['2016',['Close']]\n", - "amzn = amzn_table.loc['2016',['Close']]\n", - "ebay = ebay_table.loc['2016',['Close']]\n", - "wal = wal_table.loc['2016',['Close']]\n", - "aapl = aapl_table.loc['2016',['Close']]\n", - "spy_log = np.log(spy.Close).diff().dropna()\n", - "amzn_log = np.log(amzn.Close).diff().dropna()\n", - "ebay_log = np.log(ebay.Close).diff().dropna()\n", - "wal_log = np.log(wal.Close).diff().dropna()\n", - "aapl_log = np.log(aapl.Close).diff().dropna()\n", - "df = pd.concat([spy_log,amzn_log,ebay_log,wal_log,aapl_log],axis = 1).dropna()\n", - "df.columns = ['spy','amzn','ebay','wal','aapl']\n", - "df.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: amzn R-squared: 0.254\n", - "Model: OLS Adj. R-squared: 0.242\n", - "Method: Least Squares F-statistic: 20.94\n", - "Date: Tue, 22 Aug 2017 Prob (F-statistic): 7.21e-15\n", - "Time: 10:14:46 Log-Likelihood: 684.88\n", - "No. Observations: 251 AIC: -1360.\n", - "Df Residuals: 246 BIC: -1342.\n", - "Df Model: 4 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 0.0001 0.001 0.134 0.894 -0.002 0.002\n", - "spy 1.0468 0.170 6.155 0.000 0.712 1.382\n", - "ebay -0.0795 0.058 -1.364 0.174 -0.194 0.035\n", - "wal -0.0865 0.089 -0.976 0.330 -0.261 0.088\n", - "aapl 0.1529 0.084 1.831 0.068 -0.012 0.317\n", - "==============================================================================\n", - "Omnibus: 70.404 Durbin-Watson: 1.979\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 1938.463\n", - "Skew: -0.310 Prob(JB): 0.00\n", - "Kurtosis: 16.600 Cond. No. 179.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "model = sm.ols(formula = 'amzn ~ spy+ebay+wal+aapl',data = df).fit()\n", - "print model.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: amzn R-squared: 0.234\n", - "Model: OLS Adj. R-squared: 0.231\n", - "Method: Least Squares F-statistic: 76.13\n", - "Date: Tue, 22 Aug 2017 Prob (F-statistic): 3.88e-16\n", - "Time: 10:14:49 Log-Likelihood: 681.59\n", - "No. Observations: 251 AIC: -1359.\n", - "Df Residuals: 249 BIC: -1352.\n", - "Df Model: 1 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 9.876e-05 0.001 0.097 0.923 -0.002 0.002\n", - "spy 1.0796 0.124 8.725 0.000 0.836 1.323\n", - "==============================================================================\n", - "Omnibus: 68.122 Durbin-Watson: 2.011\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 2089.718\n", - "Skew: -0.110 Prob(JB): 0.00\n", - "Kurtosis: 17.134 Cond. No. 122.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "simple = sm.ols(formula = 'amzn ~ spy',data = df).fit()\n", - "print simple.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "ename": "NotFoundError", - "evalue": "(Status 404) (Quandl Error QECx02) You have submitted an incorrect Quandl code. Please check your Quandl codes and try again.", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNotFoundError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mfama_table\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mquandl\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'KFRENCH/FACTORS5_D'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/get.pyc\u001b[0m in \u001b[0;36mget\u001b[0;34m(dataset, **kwargs)\u001b[0m\n\u001b[1;32m 46\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mdataset_args\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'column_index'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 47\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupdate\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m{\u001b[0m\u001b[0;34m'column_index'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mdataset_args\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'column_index'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 48\u001b[0;31m \u001b[0mdata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mDataset\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdataset_args\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'code'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mparams\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhandle_column_not_found\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 49\u001b[0m \u001b[0;31m# Array\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 50\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0misinstance\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdataset\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/model/dataset.pyc\u001b[0m in \u001b[0;36mdata\u001b[0;34m(self, **options)\u001b[0m\n\u001b[1;32m 45\u001b[0m \u001b[0mupdated_options\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mUtil\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmerge_options\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'params'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mparams\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0moptions\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 46\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 47\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mData\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mall\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mupdated_options\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 48\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mNotFoundError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 49\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mhandle_not_found_error\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/operations/list.pyc\u001b[0m in \u001b[0;36mall\u001b[0;34m(cls, **options)\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0moptions\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'params'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[0mpath\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mUtil\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mconstructed_path\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcls\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlist_path\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0moptions\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'params'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 14\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mConnection\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'get'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpath\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0moptions\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 15\u001b[0m \u001b[0mresponse_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjson\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0mUtil\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mconvert_to_dates\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mresponse_data\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/connection.pyc\u001b[0m in \u001b[0;36mrequest\u001b[0;34m(cls, http_verb, url, **options)\u001b[0m\n\u001b[1;32m 34\u001b[0m \u001b[0mabs_url\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m'%s/%s'\u001b[0m \u001b[0;34m%\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mApiConfig\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapi_base\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 35\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 36\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mcls\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mexecute_request\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhttp_verb\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mabs_url\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0moptions\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 37\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 38\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mclassmethod\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/connection.pyc\u001b[0m in \u001b[0;36mexecute_request\u001b[0;34m(cls, http_verb, url, **options)\u001b[0m\n\u001b[1;32m 42\u001b[0m \u001b[0mresponse\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0moptions\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 43\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstatus_code\u001b[0m \u001b[0;34m<\u001b[0m \u001b[0;36m200\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstatus_code\u001b[0m \u001b[0;34m>=\u001b[0m \u001b[0;36m300\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 44\u001b[0;31m \u001b[0mcls\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mhandle_api_error\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mresponse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 45\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 46\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresponse\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/quandl/connection.pyc\u001b[0m in \u001b[0;36mhandle_api_error\u001b[0;34m(cls, resp)\u001b[0m\n\u001b[1;32m 83\u001b[0m \u001b[0mklass\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0md_klass\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcode_letter\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mQuandlError\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 84\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 85\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mklass\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmessage\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstatus_code\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcode\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;31mNotFoundError\u001b[0m: (Status 404) (Quandl Error QECx02) You have submitted an incorrect Quandl code. Please check your Quandl codes and try again." - ] - } - ], - "source": [ - "fama_table = quandl.get('KFRENCH/FACTORS5_D')" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "fama = fama_table['2016']\n", - "fama = fama.rename(columns = {'Mkt-RF':'MKT'})\n", - "fama = fama.apply(lambda x: x/100)\n", - "fama_df = pd.concat([fama,amzn_log],axis = 1)" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: Close R-squared: 0.387\n", - "Model: OLS Adj. R-squared: 0.375\n", - "Method: Least Squares F-statistic: 30.97\n", - "Date: Mon, 31 Jul 2017 Prob (F-statistic): 2.21e-24\n", - "Time: 11:25:10 Log-Likelihood: 709.59\n", - "No. Observations: 251 AIC: -1407.\n", - "Df Residuals: 245 BIC: -1386.\n", - "Df Model: 5 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 0.0010 0.001 1.028 0.305 -0.001 0.003\n", - "MKT 0.9612 0.125 7.691 0.000 0.715 1.207\n", - "SMB -0.5890 0.182 -3.235 0.001 -0.948 -0.230\n", - "HML -0.1335 0.211 -0.632 0.528 -0.549 0.282\n", - "RMW -0.4851 0.264 -1.840 0.067 -1.005 0.034\n", - "CMA -1.5555 0.324 -4.801 0.000 -2.194 -0.917\n", - "==============================================================================\n", - "Omnibus: 69.457 Durbin-Watson: 1.937\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 2012.675\n", - "Skew: 0.241 Prob(JB): 0.00\n", - "Kurtosis: 16.864 Cond. No. 399.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "fama_model = sm.ols(formula = 'Close~MKT+SMB+HML+RMW+CMA',data = fama_df).fit()\n", - "print fama_model.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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\niEiphHwhqsJdnDhrfHeGT1M6RYqrLDN8V//hBV58e0dBzzljnzFc+fGD+nz8oYceYp999uHBBx8E\noLW1dZc2sViMo446ihtuuIFTTz2Vyy+/nJUrV/Liiy+yZMkSTj75ZADWrVvHxo0biUQizJs3j5NO\nOom5c+d2n+fhhx9m06ZNrFu3DmstJ598Mn/961/5yEc+ssv1FixYwPe//31SqRQLFy7k/vvvZ9y4\ncdx9991cdtll3H777Xz+85/nl7/8JUcccQSXXnppr3Ns2LCB5557jvr6+j6vu23btl1+9sbGRn7/\n+9/z8ssvY4yhpaVll9fjc5/7HD/5yU9YuHAhV1xxBVdffTU//OEPASejuG7dOlasWMHVV1/NqlWr\nBjNMIiIiMoKEvCE6085Ga62JVkLeEGFfuMS9EqksyvAVyKxZs1i5ciWXXHIJa9asoaZm16KigUCA\n448/vrv9woUL8fv9zJo1i82bN3e3W7x4MQ0NDYTDYU477TQee+yxXud5+OGHefjhhznkkEM49NBD\nefnll9m0adMu1/N6vZx++ukAvPLKK2zcuJHFixdz8MEHc+2117JlyxZaWlpoa2vjiCOOAODf/u3f\nep1j8eLF1NfX93vdfD97TU0NoVCIc889l3vvvZdIJNLrvK2trbS0tLBw4UIAlixZwl//+tfux087\n7TQADjvssF6vjYiIiIweIV9PwNfc2azsnkgJlGWGr79M3HDZf//92bBhAytWrODyyy/n6KOP5oor\nrujVxu/3d+8w6fF4CAaD3bfT6XR3u513odz5vrWWr3/963zxi1/st0+hUKh73Z61loMOOoi1a9f2\napMv85YrGo0O6rr5fvZ169bxyCOPsHz5cn7605/yl7/8pd9r5cq+Nl6vt9drIyIiIqNHyBeiJeH8\nrdGSaNGGLSIloAxfgbz99ttEIhHOOussli5dyoYNG/b4XCtXrqSpqYmOjg7uu+8+jjzyyF6PH3fc\ncdx+++20t7cD8NZbb/Hee+/1e84DDjiAbdu2dQd8qVSKF154gdraWqqrq3niiScA+N3vftfnOfq6\nbr6fvb29ndbWVk488UR+8IMf8Oyzz/Y6V01NDXV1dd3r8+66667ubJ+IiIiUh7A33JPhSzRTE9x1\nBpSIDK+yzPCVwvPPP8/SpUvxeDz4/X5+/vOf7/G55s+fz+mnn86WLVs466yzeq3fAzj22GN56aWX\n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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "result = pd.DataFrame({'simple regression':simple.predict(),'fama_french':fama_model.predict(),'sample':df.amzn},index = df.index)\n", - "plt.figure(figsize = (15,7.5))\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','simple regression'])\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','fama_french'])\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','sample'])\n", - "plt.legend()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure()\n", - "simple.resid.plot.density()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "residual mean: -2.31112163493e-16\n", - "residual variance: 0.000205113416293\n" - ] - } - ], - "source": [ - "print 'residual mean: ', np.mean(fama_model.resid)\n", - "print 'residual variance: ', np.var(fama_model.resid)" - ] - }, - { - "cell_type": "code", - "execution_count": 35, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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\n2eGuZEwr1zb0RwgFAGNAcdPBGMTIl3ajdPopTF1a1T5f/tIzfQUiVdtodX12Ot7N7Z06fyk29o1W\nyhEHgqhmwLe2Xm878mm/rZx3thtxcArhfvtrU3UqTt7qOmq17x98+Imd5+3l2utm2mW313ZViLrR\n2Nw5B61+98LFqy1DwXbP2Y1hTimFYXJtQ3/ahlAppb/R7vGc82cG2xwAmD3jMmVoGoKwQdToWF0+\nHqu/+1hsvni9Sz5/JMWFn/rhodfn6UbVPg9qWlW767Pb410VYuSImEsptnKOuZTiJ199vZB1lYXa\nfPzlN1+IrX2FoJrbfe5bL3Q9nbJq3244eqRyNNHu0KbTdtpde/uvi5989WLb0LDbY90uRG33u+2C\npsOM7Bj1lNJhmob30Hamff96NUvXNgxSp5FQv9zmsRwRbxxgWwBgJo1DcdNxCcIOa2A1OlKHn7s0\njOPaLuDZrd9rqt312e3xbheMNMOkrZzjo4/U4/ce+7PKcKc2Pxf3vuWOeNd9j7Z8vJvwZfdIhap9\nq9r+RmNzZ9pft9dUq/VaXRcffaQe506fqDw/3R7rVqMzumlb1TlK2895GIeZ0jkIwwhPpuU9tMo0\n7d+7167Ehz/15E74/fbX3hrvWznR13ON090oYVIcafdgzvkNbf4IoABgAMahuOm9DzxeGTRMkqoR\nG62Wr63X49T5S3H7mQfj1PlLsbZej4hrwcTm1t4IZ3Mr93Us2gU4g9LLKJVerqnm8WlXQPyltfmu\n2rS6fLyrHK+xuXVg2t5uzZCmap/nUvutNEdbdTP6p0rz3HV73Fut18910enabp6vd933aNxw9Ejc\neGw+UlybQnrjsc7naXX5eNTm5/Y8niLiZ173iqKd7Ga4Ud9oRI7r4Ubz9Tjuz980jNf6KE3L/r17\n7Up88OEn9oTfH3z4iXj3WvXoS2Cw2oZQu6WU/lpK6e+klP7r5p/Dbjyl9KaU0tWU0udSSmdaPH5D\nSum+7cc/lVK6bddjZ7eXX00pLR+2LQAwKr0EJyWsrdcrO/6TdpefVh3pVjU62nVMBxkKDiNgrAoP\nWun2mtp9fKo0i43vN38kHTjeK0uLlfWGurW4UNsJQ6rO8/4pevs1R1s1A4iq41EV2kRcP3et2rBf\nVX2Yfq6Ldtf2/ut5o7EZX3/+hXhpbT6e2mhEzhHzc6nl7zatLC3GudMnYnGhthNevf/uO/seIdKt\n0uHGsMKTbs9pVfi9X7frDcs4fFkyCB/+1JM9LQcGr6sQKqV0T0T88+0/b4iIX4qItxxmwymluYj4\nlYj42xHxQxHx9pTSD+1b7eci4tmc8w9ExPsj4p9u/+4PRcRPR8QdEfGmiPg/tp8PACZOt8FJKf2M\nvhhXrTrSraY4teuYDjIULB0wNqcZNTa3dkYBLS7U4mde94pDXVOd6h3V5ucipTgwYiwi4ju+7WjL\nkTOLXe7zjcfmO7a96jx3s43dAUTVa++eu+7oOHqoVRt+9nWv6Hjt7X6Obpe32+eVpcWW52tzK8dG\nY3MnlIoce0ZHtWrbytJiPHTmjfHF82+Oh868sasRUIcNS0qHG8MKT7o5p92OyhrW6K1ejPrLkkGp\nCqo7BdjA4HR7d7y3RcQPR8R6zvm/SSl9T0R88JDbfk1EfC7n/IWIiJTSb0fEWyPiP+xa560Rce/2\nvz8SEf97SiltL//tnPPzEfHFlNLntp/v3x6yTQAwdKMubtpp9MWk6aZGR7uO6fvvvnNgdzwqefek\n/TVatnLeee6VpcU4+X039X1NtbsmmncIrKrL9Oxzm3Hq/KUD2+2mVlEzAIro/HqoOs+rH3msZTjW\nav86vfY6nbt+68EM+rroJlDZfDHHsZccjfV/9ON9baOVw9QJagaoVWdqUOFGVa2rQYcn3ZzTbuv/\njUOdwP2m5U5wzRshtFoODEfKXaS+KaV/l3N+TUrpkbg2EuovI+I/5px/sO8Np/S2iHhTzvm/2/75\n70bEa3POP79rnX+/vc6Xt3/+fES8Nq4FUw/nnD+4vfzXIuJf55w/0m6b3/md35lf/epX99tkAJhK\n609sxPMvHAwGjs4diZPfd+PQ2/OVrz8fTz7TiOdf2Iobjs7FrTfV4uXfccNAt1G1zzccnYulVywM\ntA2l9qfTPpR+7qp19juSUnz/zd8eL/+OGw4ci4Vj87Hx3ObAjs1Xvv58fP7pb0Snz7fdHqOS12Kv\nz/2Vrz8fX3j6G/Hirn1rHtvm83Tjdd//skO3panfa7DTedp9zRxWu+M26PeVTsfx4S98tfJ3d5+X\nbtcbtkG/HobxXr/fF7/yjfhPf/HNA8u/57u+LW5/+bcX3TZMuz/6oz96JOd8stN63Y6EupxSWoiI\nfxkRj0TE12NCRh2llN4ZEe+MiLjhhrJvagAwiW69qdayk3bby44NvS37O4zPv7AVX3j6GxERA+2c\nVO3zrTfVdrY1qO0N8rl2qwodnn9hK77y9ecPtc1Ox6dqnVZezDmefKaxcxxKdjKffKbRMYDavx+7\nteoUHzYq209nAAAgAElEQVTQq9I8Fs1tfu7Pvx5PPtOo7Ig/+UzjwLFuHttuz8UNRw9WrzjMa67d\nNdjOn37lucrzNOgwovk8wwg7Ol3fNxydqwzt+llv2Ab5+h3We/1+zaDpz//i+ciRI0WK7/6uGwRQ\nMERdhVA557+//c9fTSn9QUR8V875jw+57XpE3Lrr5+/dXtZqnS+nlI5GxEsj4qtd/m6z7R+IiA9E\nRJw8eTJ/8pOfPGSzAWD6DOMW5t04df5SfHeLqTMvXajFJ88M9sa847LP/Wp357qt+bn4hYp6RN3q\n5vjsX6eqPSkiPnn+zX23pVu3n3mwcnpXimh7nptTy27cNd1oEMexnapt/hevXoxPfPbpPcf+Xfc9\n2nLfUkT8+/Nv3nMuFo7Nx9e/+UJsvnj9N2rzcy3rQHX7mmt1PVy4eLXlOV/s8Hq97cyDlY/9aZvr\nZNJfs/unL0a0Pi/drjfJhvleDwxH6nJaa1chVErpR1styzn/Pz22a7dPR8SrUkq3x7UA6acj4r/a\nt84DEfGOuDbq6m0RcSnnnFNKD0TEb6WU/llE3BIRr4qIf3eItgDATOu3ts2gDfMOTPvrATWLVY/D\ncehGuxpLg6gf0801sXudtfV6ZVDST/2dfgKHqiBscaEWD3Xo2I6iDk/VNj/08BM7x7FZZ+mltfmW\nd7HcXSh9f5DRzfGrem3VNxo7tb32h1rNNv3kqxfjo4/Uh1In6DD1p8ZFt/X/Rl0ncBim5W57QO+6\nnY63uuvf3xbXioA/EhF9x9Q55xdSSj8fERcjYi4ifj3n/HhK6b0RcTnn/EBE/FpE/OZ24fFn4lpQ\nFdvr/U5cK2L+QkT8g5xzdxPhAYCxNawiwhHj0ak9zMiO5nq/UFEgfJidubX1evzi7zxWOVKn11Ci\n33NzmOLJo+gUVz33/uPY2NyKb5s/ErX5ua73rdtgeeHYfDz73MFwKyJ2XoutHm9sbsUnPvt0nDt9\nYmdE1FxKe+4+WLX9Gyu2WXVHwojhhITDGGnV7XkZly8GShnmez0wXo50s1LO+a5df34sIv5aRDx7\n2I3nnH8/5/xXc86vzDn/k+1l/2g7gIqc8zdzzj+Vc/6BnPNrmnfS237sn2z/3vGc878+bFsAgNFb\nXT4etfm9dU9Kjaxo16kdhkHchn1laTEWR3zr9OZ+VN3iPEfvod57PvZ4y3Pzno89HqfOX4rbzzwY\np85fOnCsVpYW49zpE7G4UIsU10ZAdTuFaRS3oO/luTee2+x739p5vs3dCjt5aqOxc+fD2vzczjXQ\n6Vq+5647Yn5u77SN+bm0c2fEqm31srxXg3g90r1hvtcD46XbkVD7fTki/vNBNgQAYBDTUA47DWlY\nI4gGNbJj1LdOb7Ufu1WFZFXW1uuVI3OefW5z57Gq0VH9jiAZxXFsN6Vyv1sWakVGxzy3+WLfv7uw\nPXKp12u5n9d56ZEzo5iOOctmYcoh0Fq3NaH+eVwfGXwkIu6MiM+UahQAMLsO09HuZRrXqKeDDCoE\nG3Vnrl17+wlxehmJNsiQoOo4RsRObaRBH9tOUyp3G1QYtj+kPYyvf/OFWFuv93Ut9/o6Lx0SjjqU\nnlSHnVLcbt1JL0QPtNbtSKjLu/79QkR8OOf8UIH2AIwNH35g8vQymmHUI4gGGYKNsn5Mu7vi/eSr\ne29Xr53+w4YE7d7rh1E3bGVpsfIuc003HpsfyPZa7c9hbL6Y48LFq0MJdEuHraMOpSdRydfHONTs\nA8roKoTKOf9G6YYAjBMffmCvSQllexnNMOoRRKMOwQZldfl45V3xPvHZp3t+vnahVtX6/Wr3Xh8R\n8Yu/89iBWlclpmi1m5ZXm59rWyupF52mTvbjqY1GvP/uO7u6lg/7PlIybJ2W1+MwlZzCaHokTK+2\nIVRK6UocvEHHjpzzXx94iwDGgA8/cN0khbK9jmYY5QiiUYdgg7KytDjQO/StLh+vfL4Uez+YHjYk\nqHqvv/eBx+P5F16sLLY+6Clau6+F5l3mtnKOxQFfE+3avbhQ27kON577VnzjW92FVc1aVc32V13L\n4/4+Mi2vx2EqOYXR9EiYXp1GQv3E9t//YPvv39z++2ejTTgFMOl8+IHrJimUnbTRDJN2G/aqkSyL\nA57KdCQiWpXL/pFX3hR/+tXGwEKCqvf0jUbrwuhN7far39E+w7gWqkLaxYVaPHTmjTs/337mwa6e\nb/drq1P7J+F9ZNJej6NWcgqj6ZEwvdqGUDnnL0VEpJR+LOe8tOuhf5hS+kxEnCnZOIBR8eEHrpuk\nUNZohnLajWR5ww/eHB98+IkDv/OGH7y56+dunrMjKbUMoCIiPvPE1+Lc6RPF6wC1k6J6v9bW67H6\nkcdic+vad7X1jUasfuSxiBiP0T7dhrRVx+XGY/Nx7CVH+3ptTdL7CN0pGfpP2hcKQPe6LUyeUkqn\nmsXIU0o/Ete+pAKYSj78wHWTFsoazVBGu5EsVbqpCbW2Xo/V330sNl+8FtxUTYHbvb1Bnd92tZiq\n5Ij46CP1OPl9Nx1ox3s+9vhOANW0uZXjPR97vKs2l6691m1IW/V/4D133dF3eybtfYTOSob+vlCA\n6dVtCPVzEfHrKaWXxrUvgJ6NiP+2WKsARsyHH7hOKEtEfyNZuhnlcu8Dj+8EUIdpRz8BTvPxqhpU\nVarCsGefaz2Nr2r5bsOqmdRNSNvL/4HdHnfvI5Ov6lyX+mzkCwWYTim3+bbpwMrXQqjIOX+tWIsK\nOnnyZL58+fKomwEAE2dS7o5HOafOX6qsJxQRXdUaauW2LusPtXvO/QFOxLWAo9upe1X71kmK2PN6\naLcv+9dttnv3NMRWo8C6OYaj0utx9z4yufp5jTnfMFtSSo/knE92Wq/T3fF+Nuf8wZTS/7RveURE\n5Jz/2aFaCQBMBN9I02kkyzBGudTm5+K2l9XilWd/P7ZyjrmU4u2vvTU+8dmnD1X0up9peRHXpubt\nHrG0UJuvLGq+f92IvcdsEHfiG3anv93dBVtt1/vI5Oq1sPy43w2xiuAMyus0He/bt//+ztINAQBg\nfHUzRaufztuNx+ZbTle78dh83HPXHXue87aX1eKhzz+zs85Wzi0Lojd1G+CsLC3G5S89U/lcVXfr\na2p2xu99yx176lu1W7f5705a1Uxq1VGOiKF3+tvdXXBtvT7yzrtAYXB6nY47CXdD3G9SgzOYNJ3u\njvcvtv9+z3CaAwDAuGo3kqXfUS733HXHnjvKRUTMz6WdIti7n/OVZ3+/p+fuNsBZWVpsW0T9pbvu\nClcVLz210TgQ1LVbtxutRpNVdZRvOHqkZaf/F3/nsXjXfY92HcL0Ety0u7vgqMMGgcJg9VpYfhLv\nhjiJwRlMoq7ucJdS+qWU0nellOZTSn+YUno6pfSzpRsHADBIa+v1OHX+Utx+5sE4df5SrK3XR92k\nqdHvsV1ZWowLb/vhWFyoRYprNZAuvO2HW3b62t05rzY/d+DnqgCnvh0QNYOJtfV6287xxnOb8dCZ\nN8YXz795pwbWfs3O+MrSYqwuH29717dbFmqVj8+ltHMcWtXbqeooV00D3Mr5wL5WaXd8Wmk33XLU\nYUM/d3Ok2ury8a5eY01V1/c43w1xEoMzmERdhVAR8eM557+IiJ+IiD+NiB+IiNVSjQIAGLReO9h0\n77DHdmVpcSfkeejMGytHHcxt1yVttfzc6RN7gqxeApwLF692DI2aOnXGdx+LVprrVj3PL/+dH257\nHA7TIe4UwvQa3KwsLcaNx+ZbPjbqsGEcAoVpCr1Xlha7eo019RpajYNJDM5gEnUbQjWn7b05In53\nUu+OBwDMLiMjyhnWsX37a29tufzb5o/Eu+57NCIi3n/3nT0HOE9tNGJ1+XjMzx0MueaPpD0d506d\n8VbHomn3ur126puqOsQ3Hps/0Omv2tdeH2v3O/fcdcdYhg2jDhSmMfTuNixurtvP9T1KkxicwSTq\nVJi86fdSSp+NiEZE/A8ppZsj4pvlmgUAMFjjMDJiWg3r2L5v5URERHz4U0/GVs6RIuLIkRTf+FZ3\ndX/a1bVprv+ejz2+Uyh9oTYf977ljgPP1a7+VdU+p4h46Mwbu36eKlV3Kbznrjsi4no9qiMptZy+\n2GnEVy91fyK6K1g/Cp3u5ljasOoLjXPx9Um7G+K4XsswbboKoXLOZ1JKvxQRX8s5b6WUnouIt5Zt\nGgDA4PTTwaY7wzy271s5sRNGnTp/6cB223X0OwUTg+g0lz4WnTrKzb/3F+aO6BzC9BvctDpuow5H\nRh0oDCOYVXx98CYtOINJ1FUIlVI6FhF/PyJeERHvjIhbIuJ4RPxeuaYBAAzOqEdGTLNRHdteO/rD\nCCaGcSy66Sj3s6+DOj7jEo6MMlAYRjDrbm7AJOp2Ot6/iohHIuJHtn+uR8TvhhAKAJgQox4ZMc1G\ndWz7nT5Wsl3jcJ3tH4X0/rvv7Hr7gzg+wpHhhJGmGAOTqNsQ6pU557tTSm+PiMg5P5dSxe1JAABG\nqN00oGmeatFp+tOgp0e1er79NY9K67ajP+ypYaO8zsZhFJJwZDhhpCnGwCTqNoT6VkqpFhE5IiKl\n9MqIeL5YqwAA+jAOHfBR6LTfgz4u43Kcu+noj0tbh2UcRiEJR64pHUaaYgxMoo4h1PaIp1+NiD+I\niFtTSh+KiFMR8ffKNg0AiBh9gd9JMg4d8FHotN+DPi79Pl+Ja7lTR3/WrolxGIUkHBmOcZj6CdCr\njiFUzjmnlFYj4vUR8bq4dofZ/zHn/JXCbQOAmTdrozgOaxw64KPQab8HfVz6eb5er+VBBVazdk2M\nwygk4cjwTPMUY2A6dTsd7zMR8f055wdLNgZg0hmxwqDN2iiOwxqHDvgodNrvQR+Xfp6vl2u5VWD1\nrvsejctfeibet3KieFsn2biMQhKOANDKkS7Xe21E/NuU0udTSn+cUrqSUvrjkg0DmDTNTlN9oxE5\nrn/Lv7ZeH3XTmGCzNorjsFaXj0dtfm7PslmYBtRpvwd9XPp5vl6u5VaBVY6IDz38RM/vqbN2Taws\nLca50ydicaEWKSIWF2px7vSJnUBobb0ep85fitvPPBinzl/yfxR9cR0B/ep2JNRy0VYATAEjVihh\n1kZxHNasTgPqtN+DPi79PF8v13JVYJW3t9lLu2fxmqgahWR6L4PgOhouo+yZNl2FUDnnL5VuCMCk\nM2KFEsZlas0kmdVpQMPe716318u1XBVYRfT3njqt10SvndNJ/7JEZ3w8TPp1NEkEfkyjbqfjAdBB\n1ciUYY9YMUR+unSaWgPdGIfpwr1cy6vLxyNVPI9RgNf0c04n+cuScbiGuWaSr6NJ0y7wg0nV7XQ8\nADoYhxErvjGbTtM6ioPhGZeRC91eyytLi3H5S8/Ehx5+IvKu5UYBXtfPOZ3k6b3jcg0z2dfRpBH4\nMY2MhAIYkHEYseIbM6CVSezIvG/lRLz/7juNAqzQzzmd5CLtk3gNT6tJvo4mzbiMsodBMhIKYIBG\nPWLFh3SglUkduTCs99Rh1xoaxPb6OaeTXKR9Uq/haTTJ19GkGYdR9jBoQiiAKeJDOtCKjky1YU9j\nHtT2+j2no/6ypF+u4fEyqdfRpBH4MY2EUABTxId0oBUdmWr3PvD4UGsNDaq20ayd01nbX2gS+DFt\nhFAAU8SHdKCKjsxBa+v12Ghstnys1DTmQU6bHvQ5Hfa0xF65hgEmnxAKYMr4kM64GvcO7rA5HqPX\n7qYNg57G3DzfueLxUU+bdndVAIbB3fEAgOKaHdz6RiNyXO/grq3XR920kXA8xkOnO8kNyu7z3co4\nTJt2d1UAhkEIBQAUp4O7l+MxHqpGH914bH6go39ane+mxYVanDt9YuSjjdxdFYBhMB0PgJEzLWn6\n6eDu5XiMh6qbOdxz1x0D3U7VeU0R8dCZNw50W/1yd1UAhsFIKABGyrSk2VDVkZ3VDq7jMXxr6/U4\ndf5S3H7mwTh1/lKsrddjZWkxzp0+EYsLtUhRblTSJJzv1eXjUZuf27NsHKYJAjBdjIQCYKQGdbty\nxlvViJNZ7eA6HsPVqeh26feaSTjf7q4KwDAIoQAYKdOSZoMO7l6Ox3CNOuyelPPt7qoAlCaEAmCk\n1CGZHTq4ezkewzMOYbfzDQBqQgEwYuqQAKVNQk0mAJgFQigARmpYhYGB2VUq7G5V7BwAqGY6HgAj\nZ5oKUFKJmkydip0DAAcJoQAAmHqDDrtHXewcACaR6XgAANCjcSh2DgCTRggFAAA9UuwcAHonhAIA\ngB65sycA9E5NKAAA6FGJYucAMO2EUAAA0Ad39gSA3piOBwAAAEBxQigAAAAAihNCAQAAAFCcmlAA\nAMy0tfW6AuMAMARCKAAAZtbaej3O3n8lGptbERFR32jE2fuvREQIogBgwEzHAwBgZl24eHUngGpq\nbG7FhYtXR9QiAJheQigAAGbWUxuNnpYDAP0TQgEAMLNuWaj1tBwA6J8QCgCAmbW6fDxq83N7ltXm\n52J1+fiIWgQA00thcgAAZlaz+Li74wFAeUIoAABm2srSotAJAIbAdDwAAAAAihNCAQAAAFCcEAoA\nAACA4oRQAAAAABSnMDkAAMCYWluvu3sjMDWEUADhAx4AMH7W1utx9v4r0djcioiI+kYjzt5/JSLC\n5xRgIgmhgJnnAx4AjA9fDF134eLVnc8nTY3Nrbhw8erMHhNgsqkJBcy8dh/wAIDhaX4xVN9oRI7r\nXwytrddH3bSReGqj0dNygHEnhAJmng94ADAefDG01y0LtZ6WA4w7IRQw83zAA4Dx4IuhvVaXj0dt\nfm7Pstr8XKwuHx9RiwAORwgFzDwf8ABgPPhiaK+VpcU4d/pELC7UIkXE4kItzp0+oR4UMLEUJgdm\nXvODnCKoADBaq8vH99wsJMIXQytLiz6TAFNDCAUQPuABwDjwxRDAdBNCAQAAY8MXQwDTS00oAAAA\nAIoTQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigA\nAAAAihNCAQAAAFDc0VE3AAAAZtHaej0uXLwaT2004paFWqwuH4+VpcVRNwsAihFCAQDAkK2t1+Ps\n/VeisbkVERH1jUacvf9KRIQgCoCpZToeAAAM2YWLV3cCqKbG5lZcuHh1RC0CgPKEUAAAMGRPbTR6\nWg4A00AIBQAAQ3bLQq2n5QAwDYRQAAAwZKvLx6M2P7dnWW1+LlaXj4+oRQBQnsLkAAAwZM3i4+6O\nB8AsEUIBAMAIrCwtCp0AmClCKAAAoG9r63UjugDoihAKAADoy9p6Pc7efyUam1sREVHfaMTZ+69E\nRAiiADhAYXIAAKAvFy5e3QmgmhqbW3Hh4tURtQiAcWYkFABjx9QOgMnw1Eajp+UAzDYjoQAYK82p\nHfWNRuS4PrVjbb0+6qYBsM8tC7WelgMw24RQAIwVUzsAJsfq8vGozc/tWVabn4vV5eMjahEA48x0\nPADGiqkdAJOjOVXaFGoAuiGEAmCs3LJQi3qLwMnUDoDxtLK0KHQCoCum4wEwVkztAACA6WQkFABj\nxdQOAACYTkIoAMaOqR0AADB9hFAAABzK2nrd6EUAoKOR1IRKKd2UUvp4SulPtv++sWK9d2yv8ycp\npXfsWv7JlNLVlNKj23++e3itBwCgaW29HmfvvxL1jUbkiKhvNOLs/Vdibb0+6qYBAGNmVIXJz0TE\nH+acXxURf7j98x4ppZsi4p6IeG1EvCYi7tkXVv1MzvnO7T9/PoxGAwCw14WLV6OxubVnWWNzKy5c\nvDqiFgEA42pU0/HeGhGv3/73b0TEJyPiH+5bZzkiPp5zfiYiIqX08Yh4U0R8uO+tXr0a8frXd1wN\nAIDu/PIXvlr94B+8bHgNAQDG3qhGQn1PzvnPtv/9/0XE97RYZzEintz185e3lzX9q+2peP9LSilV\nbSil9M6U0uWU0uXNzc1DNxwAgOtecnSup+UAwOwqNhIqpfRvIuI/a/HQ/7z7h5xzTinlHp/+Z3LO\n9ZTSd0bERyPi70bE/9VqxZzzByLiAxERJ0+ezPHJT/a4KQAAqjyxXRNq95S82vxcnDt9Iv6G4uQA\nMBuqxwbtUSyEyjn/rarHUkr/KaX0V3LOf5ZS+isR0aqmUz2uT9mLiPjeuDZtL3LO9e2//zKl9Ftx\nrWZUyxAKAIBymnfBc3c8AKCTUdWEeiAi3hER57f//r9brHMxIv7XXcXIfzwizqaUjkbEQs75Kyml\n+Yj4iYj4N0NoMwAALawsLQqdAICORlUT6nxE/FhK6U8i4m9t/xwppZMppf8zImK7IPk/johPb/95\n7/ayGyLiYkrpjyPi0bg2YupfDn8XAAAAAOhWyrnXckyT6+TJk/ny5cujbgYAAADA1EgpPZJzPtlp\nvVGNhAIAAABghgihAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QC\nAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAAABQn\nhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQCgAAAIDihFAAAAAA\nFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAA\nAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQ\nAAAAABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQCgAAAIDi\nhFAAAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAA\ngOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoA\nAACA4oRQAAAAABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQ\nCgAAAIDihFAAAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQ\nnBAKAAAAgOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAA\nAFCcEAoAAACA4oRQAAAAABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IB\nAAAAUJwQCgAAAIDihFAAAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoT\nQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxIwmhUko3\npZQ+nlL6k/+/vbuPseys6wD+/aYttFBDoZbSFwONNMW2RpC1hIgG2kIhBilaCcZISSDGCDFKIJYQ\nhCCYQkUIomIDJo2iFAhCgcimFDC+RGxpC+0KtZWX0KVAgVZ5KVDw8Y85S6ab2XZ375w7e3c/n2Qz\n9zznOXN/J/vLnTvfec6509cH72Heh9re2fYDu42f0vbjbW9pe3nb+y2ncgAAAAD2x1athLooyVVj\njFOTXDVtb+SSJL+5wfhrk7xhjPHIJHcked4sVQIAAACwKbYqhHpGksumx5clOX+jSWOMq5J8c/1Y\n2yY5O8m77+t4AAAAAA4MWxVCHT/GuG16/OUkx+/DsccmuXOM8YNp+9YkJ+1pctvfantN22tuv/32\n/asWAAAAgIUcPtc3bvvhJA/bYNfL1m+MMUbbMVcdY4xLk1yaJNu2bZvteQAAAADYs9lCqDHGuXva\n1/YrbU8YY9zW9oQkX92Hb/31JMe0PXxaDXVykp0LlgsAAADAjLbqcrwrklw4Pb4wyfv29sAxxkjy\n0SQX7M/xAAAAACzfVoVQFyd5ctubk5w7bafttrZv3TWp7T8neVeSc9re2va8adcfJHlR21uydo+o\nty21egAAAAD2yWyX492bMcbXk5yzwfg1SZ6/bvsX9nD8Z5OcNVuBAAAAAGyqrVoJBQAAAMAhRAgF\nAAAAwOyEUAAAAADMTggFAAAAwOy25MbkAAAAAJvtvdftzCXbb8qX7rwrJx5zVF5y3mk5/zEnbXVZ\nTIRQAAAAwMp773U789L33JC77v5hkmTnnXflpe+5IUkEUQcIl+MBAAAAK++S7Tf9KIDa5a67f5hL\ntt+0RRWxOyEUAAAAsPK+dOdd+zTO8gmhAAAAgJV34jFH7dM4yyeEAgAAAFbeS847LUcdcdg9xo46\n4rC85LzTtqgidufG5AAAAMDK23XzcZ+Od+ASQgEAAAAHhfMfc5LQ6QDmcjwAAAAAZieEAgAAAGB2\nQigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAA\nAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieE\nAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAA\nZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigAAAAAZieEAgAAAGB2QigA\nAAAAZtcxxlbXsDRtb0/yha2uYw9+PMnXtroIDmp6jLnpMeakv5ibHmNueoy56THmdF/99fAxxnH3\n9U0OqRDqQNb2mjHGtq2ug4OXHmNueow56S/mpseYmx5jbnqMOW1Wf7kcDwAAAIDZCaEAAAAAmJ0Q\n6sBx6VYXwEFPjzE3Pcac9Bdz02PMTY8xNz3GnDalv9wTCgAAAIDZWQkFAAAAwOyEUEvU9iFtr2x7\n8/dObT8AAAdnSURBVPT1wXuYd+E05+a2F26w/4q2N85fMatm0R5r+6G2n2y7o+1b2h62vOpZBYv0\nWNsHtP1g289MPXbxcqvnQLcJr2GvafvFtt9aXtWsgrZPbXtT21vaXrTB/vu3vXza//G2j1i376XT\n+E1tz1tm3ayG/e2vtse2/Wjbb7V987LrZnUs0GNPbvuJtjdMX89edu2shgV67Ky210//Ptn2mff1\nXEKo5booyVVjjFOTXDVt30PbhyR5RZLHJTkrySvWvwlv+ytJvLlmTxbtsWeNMX4myZlJjkvya0up\nmlWyaI/9yRjjUUkek+Tn2z5tOWWzIhbtr/dPY/Aj0x9U/jzJ05KcnuTX256+27TnJbljjPHIJG9I\n8trp2NOTPDvJGUmemuQv/IGG9RbpryTfTfLyJC9eUrmsoAV77GtJnj7G+OkkFyb5m+VUzSpZsMdu\nTLJtjPHorP2c/Ku2h9/b8wmhlusZSS6bHl+W5PwN5pyX5MoxxjfGGHckuTJr/5lpe3SSFyV59RJq\nZTUt1GNjjP+d5hye5H5J3DSO3e13j40xvjPG+GiSjDG+n+TaJCcvoWZWx6KvYf8+xrhtKZWySs5K\ncssY47PTa887stZr663vvXcnOadtp/F3jDG+N8b4XJJbIujknva7v8YY3x5j/EvWwijYk0V67Lox\nxpem8R1Jjmp7/6VUzSpZpMe+M8b4wTR+ZPbi90ch1HIdv+7N8ZeTHL/BnJOSfHHd9q3TWJL8UZLX\nJ/nObBWy6hbtsbTdnuSrSb6ZtRcYWG/hHkuStsckeXrWVrvALpvSX7CbvemZH82Z3kz/T5Jj9/JY\nDm2L9Bfsjc3qsV9Ncu0Y43sz1cnqWqjH2j6u7Y4kNyT57XWh1IbudZkU+67th5M8bINdL1u/McYY\nbfd6lUnbRyf5yTHG76+/TwGHnrl6bN1x57U9Msnbk5ydtVUGHELm7rFpie7fJ3nTGOOz+1clq2ru\n/gIA7qntGVm7fOopW10LB58xxseTnNH2p5Jc1vYfxxh7XOEphNpkY4xz97Sv7VfanjDGuK3tCVlb\nbbK7nUmeuG775CQfS/L4JNvafj5r/28PbfuxMcYTwyFlxh5b/xzfbfu+rC27FEIdYpbQY5cmuXmM\n8cZNKJcVs4zXMNjNziQ/sW775Glsozm3TkH5g5J8fS+P5dC2SH/B3liox9qenOQfkjxnjPHf85fL\nCtqU17ExxqenD4c5M8k1e3oyl+Mt1xVZuyFcpq/v22DO9iRPafvg6UarT0myfYzxl2OME8cYj0jy\nhCT/JYBiA/vdY22Pnn7p27VS5ZeSfGYJNbNa9rvHkqTtq7P2Q+v3llArq2eh/oI9uDrJqW1PaXu/\nrN1o/Ird5qzvvQuSfGSMMabxZ0+fCnRKklOT/MeS6mY1LNJfsDf2u8em2x98MMlFY4x/XVrFrJpF\neuyUXTcib/vwJI9K8vl7ezIh1HJdnOTJbW9Ocu60nbbb2r41ScYY38javZ+unv69ahqDvbFIjz0w\nyRVtP5Xk+qytQHjL8k+BA9x+99j0l7iXZe1TN66dPsr1+VtxEhywFvo52fZ1bW9N8oC2t7Z95Rac\nAweY6d4UL8xaWPnpJO8cY+xo+6q2vzxNe1uSY9vekrUPgbloOnZHkncm+c8kH0rygjHGD5d9Dhy4\nFumvJJmucvjTJM+dXrd2/0QqDnEL9tgLkzwyyR9O77uub/vQJZ8CB7gFe+wJST7Z9vqsrbj7nTHG\n1+7t+SqEBwAAAGBuVkIBAAAAMDshFAAAAACzE0IBAAAAMDshFAAAAACzE0IBAAAAMDshFADACmj7\nra2uAQBgEUIoAAAAAGYnhAIA2ERtf67tp9oe2faBbXe0PXO3ORe3fcG67Ve2fXHbo9te1fbatje0\nfcYG3/+JbT+wbvvNbZ87PX5s239q+4m229ueMOOpAgDsEyEUAMAmGmNcneSKJK9O8rokfzvGuHG3\naZcneda67WdNY99N8swxxs8meVKS17ft3jxv2yOS/FmSC8YYj03y10les8i5AABspsO3ugAAgIPQ\nq5JcnbVQ6Xd33znGuK7tQ9uemOS4JHeMMb44BUl/3PYXk/xfkpOSHJ/ky3vxnKclOTPJlVNudViS\n2zbjZAAANoMQCgBg8x2b5OgkRyQ5Msm3N5jzriQXJHlY1lZBJclvZC2UeuwY4+62n5+OX+8Huedq\n9l37m2THGOPxm3ECAACbzeV4AACb76+SvDzJ25O8dg9zLk/y7KwFUe+axh6U5KtTAPWkJA/f4Lgv\nJDm97f3bHpPknGn8piTHtX18snZ5XtszNuVsAAA2gZVQAACbqO1zktw9xvi7tocl+be2Z48xPrJ+\n3hhjR9sfS7JzjLHrsrm3J3l/2xuSXJPkM7t//+myvXcmuTHJ55JcN41/v+0FSd7U9kFZe5/3xiQ7\n5jlTAIB90zHGVtcAAAAAwEHO5XgAAAAAzE4IBQAAAMDshFAAAAAAzE4IBQAAAMDshFAAAAAAzE4I\nBQAAAMDshFAAAAAAzE4IBQAAAMDs/h84UeftmjysBQAAAABJRU5ErkJggg==\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize = (20,10))\n", - "plt.scatter(df.spy,simple.resid)\n", - "plt.axhline(0.05,color = 'r')\n", - "plt.axhline(-0.05,color = 'r')\n", - "plt.axhline(0,color = 'black')\n", - "plt.xlabel('x value')\n", - "plt.ylabel('residual')\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 36, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "from statsmodels.stats import diagnostic as dia" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "p-value of Heteroskedasticity: 0.144075842844\n" - ] - } - ], - "source": [ - "het = dia.het_breuschpagan(fama_model.resid,fama_df[['MKT','SMB','HML','RMW','CMA']][1:])\n", - "print 'p-value of Heteroskedasticity: ', het[-1]" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(2.8288103783041767, nan, 2.8496563023857964, 0.092640488871836887)" - ] - }, - "execution_count": 38, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "dia.het_breuschpagan(simple.resid,pd.DataFrame(df.spy))" - ] - }, - { - "cell_type": "code", - "execution_count": 39, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(251,)" - ] - }, - "execution_count": 39, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "simple.resid.shape" - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(251,)" - ] - }, - "execution_count": 40, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df.spy.shape" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 41, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# fama-french factor explore##\n", - "fama_table = quandl.get('KFRENCH/FACTORS5_M')\n", - "fama = fama_table['2008':'2016']" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'fama' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mfama\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfama\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;32mlambda\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m/\u001b[0m\u001b[0;36m100\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mfama\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtail\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mNameError\u001b[0m: name 'fama' is not defined" - ] - } - ], - "source": [ - "fama = fama.apply(lambda x: x/100)\n", - "fama.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 98, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Date\n", - "2016-08-31 0.013548\n", - "2016-09-30 0.084895\n", - "2016-10-31 -0.058389\n", - "2016-11-30 -0.050972\n", - "2016-12-31 -0.000933\n", - "Freq: M, Name: Close, dtype: float64" - ] - }, - "execution_count": 98, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "amzn = amzn_table.loc['2008':'2016',['Close']]\n", - "amzn = amzn.resample('M').agg(lambda x: x[-1])\n", - "amzn_log = np.log(amzn.Close).diff().dropna()\n", - "amzn_log.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 100, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MKTSMBHMLRMWCMARFClose
Date
2016-08-310.00500.01520.0318-0.0124-0.00560.00020.013548
2016-09-300.00250.0172-0.0134-0.0185-0.00050.00020.084895
2016-10-31-0.0202-0.03970.04150.01360.00220.0002-0.058389
2016-11-300.04860.07030.0844-0.00680.03830.0001-0.050972
2016-12-310.01820.00320.03520.0095-0.00210.0003-0.000933
\n", - "
" - ], - "text/plain": [ - " MKT SMB HML RMW CMA RF Close\n", - "Date \n", - "2016-08-31 0.0050 0.0152 0.0318 -0.0124 -0.0056 0.0002 0.013548\n", - "2016-09-30 0.0025 0.0172 -0.0134 -0.0185 -0.0005 0.0002 0.084895\n", - "2016-10-31 -0.0202 -0.0397 0.0415 0.0136 0.0022 0.0002 -0.058389\n", - "2016-11-30 0.0486 0.0703 0.0844 -0.0068 0.0383 0.0001 -0.050972\n", - "2016-12-31 0.0182 0.0032 0.0352 0.0095 -0.0021 0.0003 -0.000933" - ] - }, - "execution_count": 100, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "new_df = pd.concat([fama,amzn_log],axis = 1).dropna()\n", - "new_df = new_df.rename(columns = {'Mkt-RF':'MKT'})\n", - "new_df.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 128, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: Close R-squared: 0.022\n", - "Model: OLS Adj. R-squared: 0.012\n", - "Method: Least Squares F-statistic: 2.333\n", - "Date: Wed, 19 Jul 2017 Prob (F-statistic): 0.130\n", - "Time: 15:40:51 Log-Likelihood: 102.72\n", - "No. Observations: 107 AIC: -201.4\n", - "Df Residuals: 105 BIC: -196.1\n", - "Df Model: 1 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 0.0198 0.009 2.184 0.031 0.002 0.038\n", - "SMB 0.5555 0.364 1.527 0.130 -0.166 1.277\n", - "==============================================================================\n", - "Omnibus: 2.017 Durbin-Watson: 1.703\n", - "Prob(Omnibus): 0.365 Jarque-Bera (JB): 1.503\n", - "Skew: -0.149 Prob(JB): 0.472\n", - "Kurtosis: 3.499 Cond. No. 40.2\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "m = sm.ols(formula = 'Close ~ MKT + SMB + HML',data = new_df).fit()\n", - "print m.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial11 Linear Algebra-checkpoint.ipynb b/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial11 Linear Algebra-checkpoint.ipynb deleted file mode 100644 index 36f6ff6..0000000 --- a/Tutorial Series/Introduction to Financial Python/.ipynb_checkpoints/Tutorial11 Linear Algebra-checkpoint.ipynb +++ /dev/null @@ -1,281 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "a = np.array([1,2,3])\n", - "b = np.array([2,2,2])\n", - "c = np.array([3,1,1])" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 1]\n", - " [3 2 1]]\n", - "\n" - ] - } - ], - "source": [ - "matrix = np.column_stack((a,b,c))\n", - "print matrix\n", - "print type(matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 2]\n", - " [3 1 1]]\n" - ] - } - ], - "source": [ - "matrix2 = np.array([a,b,c])\n", - "print matrix2" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "A = np.array([[2,3],[4,2],[2,2]])\n", - "B = np.array([[4,2],[4,6]])" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[20 22]\n", - " [24 20]\n", - " [16 16]]\n" - ] - } - ], - "source": [ - "x = np.dot(A,B)\n", - "print x" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "ename": "ValueError", - "evalue": "shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mB\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;31mValueError\u001b[0m: shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)" - ] - } - ], - "source": [ - "x = np.dot(B,A)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 1]\n", - " [3 2 1]]\n", - "\n", - "-------------seperation line------------\n", - "\n", - "[[ 0. -1. 1. ]\n", - " [-0.25 2. -1.25]\n", - " [ 0.5 -1. 0.5 ]]\n" - ] - } - ], - "source": [ - "print matrix\n", - "print '\\n-------------seperation line------------\\n'\n", - "print np.linalg.inv(matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 1.00000000e+00 -6.66133815e-16 6.66133815e-16]\n", - " [ 0.00000000e+00 1.00000000e+00 1.11022302e-16]\n", - " [ 0.00000000e+00 -2.22044605e-16 1.00000000e+00]]\n", - "\n", - "-------------seperation line------------\n", - "\n", - "[[ 1.00000000e+00 -4.44089210e-16 -2.22044605e-16]\n", - " [ 6.66133815e-16 1.00000000e+00 0.00000000e+00]\n", - " [ 0.00000000e+00 0.00000000e+00 1.00000000e+00]]\n" - ] - } - ], - "source": [ - "inverse = np.linalg.inv(matrix)\n", - "print np.dot(matrix,inverse)\n", - "print '\\n-------------seperation line------------\\n'\n", - "print np.dot(inverse,matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [1 2 3]\n", - " [3 3 3]]\n" - ] - }, - { - "ename": "LinAlgError", - "evalue": "Singular matrix", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mLinAlgError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0maa\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0maa\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0minv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlinalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maa\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.pyc\u001b[0m in \u001b[0;36minv\u001b[0;34m(a)\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[0msignature\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m'D->D'\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0misComplexType\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mt\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32melse\u001b[0m \u001b[0;34m'd->d'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 525\u001b[0m \u001b[0mextobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_linalg_error_extobj\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_raise_linalgerror_singular\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 526\u001b[0;31m \u001b[0mainv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_umath_linalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msignature\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0msignature\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextobj\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mextobj\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 527\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mwrap\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mainv\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mresult_t\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 528\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.pyc\u001b[0m in \u001b[0;36m_raise_linalgerror_singular\u001b[0;34m(err, flag)\u001b[0m\n\u001b[1;32m 88\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_raise_linalgerror_singular\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflag\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 90\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mLinAlgError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Singular matrix\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 91\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 92\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_raise_linalgerror_nonposdef\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflag\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mLinAlgError\u001b[0m: Singular matrix" - ] - } - ], - "source": [ - "aa = np.array([[1,2,3],[1,2,3],[3,3,3]])\n", - "print aa\n", - "inv = np.linalg.inv(aa)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 2.]\n", - " [ 3.]\n", - " [-1.]]\n" - ] - } - ], - "source": [ - "A = np.array([[2,1,-1],[-3,-1,2],[-2,1,2]])\n", - "B = np.array([[8],[-11],[-3]])\n", - "inv_A = np.linalg.inv(A)\n", - "print np.dot(inv_A,B)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 2.]\n", - " [ 3.]\n", - " [-1.]]\n" - ] - } - ], - "source": [ - "print np.linalg.solve(A,B)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial00 Introduction to Financial Python.html b/Tutorial Series/Introduction to Financial Python/Tutorial00 Introduction to Financial Python.html deleted file mode 100644 index fc6801a..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial00 Introduction to Financial Python.html +++ /dev/null @@ -1,119 +0,0 @@ -

About

-

This tutorial series introduces basic Python applied to financial concepts. If you have great investment ideas but don't know how to write them, or if you think you need to learn some basic skills in quantitative finance, then this is a good starting point. The series is broken into four parts: python, math and statistics, basic financial concepts related to investment and financial time series analysis.

- -

We not only introduce the concepts but also show you how to apply the introduced techniques step by step using Python code snippets. We use real financial datasets as examples and after each chapter we design a QuantConnect algorithm applying what we learned.

- -
-
-   -

-

14 Tutorials

-
-
-   -

-

8 Backtests

-
-
-   -

-

167 Code Snippets

-
-
-

What Will I Learn ?

-
-
Python
-
Statistics
-
Linear Algebra
-
Modern Portfolio Theory
-
Multi-factor Models
-
-

Tutorials

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1 -

Python: Data Types and Data Structures

-First glimpse of Python. - Read Tutorial
2 -

Python: Logical Operations and Loop

-The essential of programming. - Read Tutorial
3 -

Python: Functions and Object-Oriented Programming

-The Python magic. - Read Tutorial
4 -

NumPy and Basic Pandas

-The power scientific calculation package for Python. - Read Tutorial
5 -

Pandas: Resampling and DataFrame

-The magical Data manipulation tool for Python. - Read Tutorial
6 -

Rate of Return, Mean and Variance

-The basic mathematical concepts for quantitative finance. - Read Tutorial
7 -

Random Variable and Distributions

-Point estimation vs interval estimation - Read Tutorial
8 -

Confidence Interval and Hypothesis Testing

-Test your ideas rigorously. - Read Tutorial
9 -

Simple Linear Regression

-Find the relationship between two random variables. - Read Tutorial
10 -

Multiple Linear Regression and residual analysis

-Explain a random variable using the power of multi-variables. - Read Tutorial
11 -

Linear Algebra

-Mathematic tool for large scale calculation - Read Tutorial
12 -

Modern Portfolio Theory

-Don't put all the eggs in one basket. - Read Tutorial
13 -

Market Risk

-Beta and Alpha. - Read Tutorial
14 -

Fama-French Multi-factor Model

-The most popular asset pricing model since 1992. - Read Tutorial
diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.html b/Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.html deleted file mode 100644 index 4f0da86..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial01 Data Types and Data Structures.html +++ /dev/null @@ -1,230 +0,0 @@ -This tutorial provides a basic introduction to the Python programming language. If you are new to Python, you should run the code snippets while reading this tutorial. If you are an advanced Python user, please feel free to skip this chapter. - -

Basic Variable Types

- -The basic types of variables in Python are: strings, integers, floating point numbers and booleans. - -Strings in python are identified as a contiguous set of characters represented in either single quotes (' ') or double quotes (" "). -
my_string1 = 'Welcome to'
-my_string2 = "QuantConnect"
-print my_string1 + ' ' + my_string2
-[out]: Welcome to QuantConnect
-
- -An integer is a round number with no values after the decimal point. -
my_int = 10
-print my_int
-[out]: 10
-print type(my_int)
-[out]: type 'int'
-
- -The built-in function int() can convert a string into an integer. -
my_string = "100"
-print type(my_string)
-[out]: type 'str'
-my_int = int(my_string)
-print type(my_int)
-[out]: type 'int'
-
- -A floating point number, or a float, is a real number in mathematics. In Python we need to include a value after a decimal point to define it as a float. -
my_float = 1.0
-print type(my_float)
-[out]: type 'float'
-my_int = 1
-print type(my_int)
-[out]: type 'int'
-
- -As you can see above, if we don't include a decimal value, the variable would be defined as an integer. The built-in function float() can convert a string or an integer into a float. -
my_string = "100"
-my_float = float(my_string)
-print type(my_float)
-[out]: type 'float'
-
- -A boolean, or bool, is a binary variable. Its value can only be True or False. It is useful when we do some logic operations, which would be covered in our next chapter. -
my_bool = False
-print my_bool
-[out]: False
-print type(my_bool)
-[out]: type 'bool'
-
- -

Basic Math Operations

- -The basic math operators in python are demonstrated below: -
-print "Addition ", 1+1
-print "Subtraction ", 5-2
-print "Multiplication ", 2*3
-print "Division", 10/2
-print "exponent", 2**3
-[out]:
-Addition  2
-Subtraction  3
-Multiplication  6
-Division  5
-exponent 8
-
- -In Python 2, if you divide an integer by another integer, you will get an integer. -
-print 1/3
-[out]: 0
-print 1.0/3
-[out]: 0.3333333333
-
- -To get a float instead of an integer, either the numerator or denominator must be a float as shown above. This isn't a problem in Python 3 since 1/3 will return 0.3333333333 - -

Data Collections

- -

List

- -A list is an ordered collection of values. A list is mutable, which means you can change a list's value without changing the list itself. Creating a list is simply putting different comma-separated values between square brackets. -
my_list = ['Quant', 'Connect', 1,2,3]
-print my_list
-[out]: ['Quant', 'Connect', 1, 2, 3]
-
- -The values in a list are called "elements". We can access list elements by indexing. Python index starts from 0. So if you have a list of length n, the index of the first element will be 0, and that of the last element will be n − 1. By the way, the length of a list can be obtained by the built-in function len(). -
my_list = ['Quant', 'Connect', 1,2,3]
-print len(my_list)
-[out]: 5
-print my_list[0]
-[out]: Quant
-print my_list[len(my_list) - 1]
-[out]: 3
-
- -You can also change the elements in the list by accessing an index and assigning a new value. -
my_list = ['Quant','Connect',1,2,3]
-my_list[2] = 'go'
-print my_list
-[out]: ['Quant', 'Connect', 'go', 2, 3]
-
- -A list can also be sliced with a colon: -
my_list = ['Quant','Connect',1,2,3]
-print my_list[1:3]
-[out]: ['Connect', 1]
-
- -The slice starts from the first element indicated, but excludes the last element indicated. Here we select all elements starting from index 1, which refers to the second element: -
print my_list[1:]
-[out]: ['Connect', 1, 2, 3]
-
- -And all elements up to but excluding index 3: -
print my_list[:3]
-[out]: ['Quant', 'Connect', 1]
-
- -If you wish to add or remove an element from a list, you can use the append() and remove() methods for lists as follows: -
my_list = ['Hello', 'Quant']
-my_list.append('Hello')
-print my_list
-[out]: ['Hello', 'Quant', 'Hello']
-my_list.remove('Hello')
-print my_list
-[out]: ['Quant', 'Hello']
-
- -When there are repeated instances of "Hello", the first one is removed. - -

Tuple

- -A tuple is a data structure type similar to a list. The difference is that a tuple is immutable, which means you can't change the elements in it once it's defined. We create a tuple by putting comma-separated values between parentheses. -
my_tuple = ('Welcome','to','QuantConnect')
-
- -Just like a list, a tuple can be sliced by using index. -
my_tuple = ('Welcome','to','QuantConnect')
-print my_tuple[1:]
-[out]: ('to', 'QuantConnect')
-
- -

Set

- -A set is an unordered collection with no duplicate elements. The built-in function set() can be used to create sets. -
stock_list = ['AAPL','GOOG','IBM','AAPL','IBM','FB','F','GOOG']
-stock_set = set(stock_list)
-print stock_set
-[out]: set(['GOOG', 'FB', 'AAPL', 'IBM', 'F'])
-
-Set is an easy way to remove duplicate elements from a list. - -

Dictionary

- -A dictionary is one of the most important data structures in Python. Unlike sequences which are indexed by integers, dictionaries are indexed by keys which can be either strings or floats. - -A dictionary is an unordered collection of key : value pairs, with the requirement that the keys are unique. We create a dictionary by placing a comma-separated list of key : value pairs within the braces. -
my_dic = {'AAPL': 'Apple', 'FB': 'FaceBook', 'GOOG': 'Alphabet'}
-
- -After defining a dictionary, we can access any value by indicating its key in brackets. -
print my_dic['GOOG']
-[out]: Alphabet
-
- -We can also change the value associated with a specified key: -
my_dic['GOOG'] = 'Alphabet Company'
-print my_dic['GOOG']
-[out]: Alphabet Company
-
- -The built-in method of the dictionary object dict.keys() returns a list of all the keys used in the dictionary. -
print my_dic.keys()
-[out]: ['GOOG', 'AAPL', 'FB']
-
- -

Common String Operations

- -A string is an immutable sequence of characters. It can be sliced by index just like a tuple: -
my_str = 'Welcome to QuantConnect'
-print my_str[8:]
-[out]: to QuantConnect
-
- -There are many methods associated with strings. We can use string.count() to count the occurrences of a character in a string, use string.find() to return the index of a specific character, and use string.replace() to replace characters. -
-print "Counting the number of e's in this sentence".count('e')
-[out]: 6
-print 'The first time e appears in this sentence'.find('e')
-[out]: 2
-print 'all the a in this sentence now becomes e'.replace('a','e')
-[out]: ell the e in this sentence now becomes e
-
- -The most commonly used method for strings is string.split(). This method will split the string by the indicated character and return a list: -
Time = '2016-04-01 09:43:00'
-splited_list = Time.split(' ')
-date = splited_list[0]
-time = splited_list[1]
-print date, time
-[out]: 2016-04-01 09:43:00
-hour = time.split(':')[0]
-print hour
-[out]: 09
-
- -We can replace parts of a string by our variable. This is called string formatting. -
my_time = 'Hour: {}, Minute: {}'.format(9, 43)
-print my_time
-[out]: Hour: 9, Minute: 43
-
- -Another way to format a string is to use the % symbol. -
print 'pi is %f' % 3.14
-[out]: pi is 3.140000
-print '%s to %s' % ('Welcome', 'Quantconnect')
-[out]: Welcome to Quantconnect
-
- -%s is a placeholder that takes in a string. Similarly %f takes a float and %d takes an integer. - -

Summary

- -We have seen the basic data types and data structures in Python. It's important to keep practicing to become familiar with these data structures. In the next tutorial, we will cover for and while loops and logical operations in Python. \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.html b/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.html deleted file mode 100644 index abd7ba1..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.html +++ /dev/null @@ -1,194 +0,0 @@ -We discussed the basic data types and data structures in Python in the last tutorial. This chapter covers logical operations and loops in Python, which are very common in programming. - -

Logical Operations

- -Like most programming languages, Python has comparison operators: -
print 1 == 0    # 1 equals 0
-print 1 == 1    # 1 equals 1
-print 1 != 0    # 1 is not equal to 0
-print 5 >= 5    # 5 is greater than or equal to 5
-print 5 >= 6    # 5 is greater than or equal to 6
-[out]:
-False
-True
-True
-True
-False
-
- -Each statement above has a boolean value, which must be either True or False, but not both. - -We can combine simple statements P and Q to form complex statements using logical operators: -
    -
  • The statement "P and Q" is true if both P and Q are true, otherwise it is false.
  • -
  • The statement "P or Q" is false if both P and Q are false, otherwise it is true.
  • -
  • The statement "not P" is true if P is false, and vice versa.
  • -
- -
print 2 > 1 and 3 > 2
-print 2 > 1 and 3 < 2
-print 2 > 1 or  3 < 2
-print 2 < 1 and 3 < 2
-[out]:
-True
-False
-True
-False
-
- -When dealing with a very complex logical statement that involves in several statements, we can use brackets to separate and combine them. -
print (3 > 2 or 1 < 3) and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))
-print 3 > 2 or 1 < 3 and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))
-[out]:
-False
-True
-
- -Comparing the above two statements, we can see that it's wise to use brackets when we make a complex logical statement. - -

If Statement

- -An if statement executes a segment of code only if its condition is true. A standard if statement consists of 3 segments: if, elif and else. -
if condition1:
-    # if condition1 is true, execute the code here
-    # and ignore the rest of this if statement
-elif condition2:
-    # if condition1 is false, and condition2 is true, execute the code here
-    # and ignore the rest of this if statement
-else:
-    # if none of the above conditions is True, execute the code here
-
- -An if statement doesn't necessarily has elif and else part. If it's not specified, the indented block of code will be executed when the condition is true, otherwise the whole if statement will be skipped. -
i = 0
-if i == 0: print 'i == 0 is True'
-[out]: i==0 is True
-
- -As we mentioned above, we can write some complex statements here: -
p = 1 > 0
-q = 2 > 3
-if p and q:
-    print 'p and q is true'
-elif p and not q:
-    print 'q is false'
-elif q and not p:
-    print 'p is false'
-else:
-    print 'None of p and q is true'
-[out]: q is false
-
- -

Loop Structures

- -Loops are an essential part of programming. The "for" and "while" loops run a block of code repeatedly. - -

While Loop

- -A "while" loop will run repeatedly until a certain condition has been met. -
i = 0
-while i < 5:
-    print i
-    i += 1
-[out]:
-0
-1
-2
-3
-4
-
- -When making a while loop, we need to ensure that something changes from iteration to iteration so that the while loop will terminate, otherwise it will run forever. Here we used i += 1 (short for i = i + 1) to make i larger after each iteration. This is the most commonly used method to control a while loop. - -

For Loop

- -A "for" loop will iterate over a sequence of value and terminate when the sequence has ended. -
for x in [1,2,3,4,5]: print x
-[out]:
-1
-2
-3
-4
-5
-
- -We can also add if statements in a for loop. Here is a real example from our pairs trading algorithm: -
stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
-selected = ['AAPL','IBM']
-new_list = []
-for stock in stocks:
-    if stock not in selected:
-        new_list.append(stock)
-print new_list
-[out]: ['GOOG', 'FB', 'F', 'V', 'G', 'GE']
-
- -Here we iterated all the elements in the list 'stocks'. Later in this chapter we will introduce a smarter way to do this, which is just an one-line code. - -

Break and continue

- -These are two commonly used commands in a for loop. If "break" is triggered while a loop is executing, the loop will terminate immediately: -
stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
-for stock in stocks:
-    print stock
-    if stock == 'FB': break
-[out]:
-AAPL
-GOOG
-IBM
-FB
-
- -The "continue" command tells the loop to end this iteration and skip to the next iteration: -
stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
-for stock in stocks:
-    if stock == 'FB': continue
-    print stock
-[out]:
-AAPL
-GOOG
-IBM
-F
-V
-G
-GE
-
- -

List Comprehension

- -List comprehension is a Pythonic way to create lists. Common applications are to make new lists where each element is the result of some operations applied to each member of another sequence. For example, if we want to create a list of squares using for loop: -
squares = []
-for i in [1,2,3,4,5]:
-    squares.append(i**2)
-print squares
-[out]: [1, 4, 9, 16, 25]
-
- -Using list comprehension: -
foo = [1,2,3,4,5]
-squares = [x**2 for x in foo]
-print squares
-[out]: [1, 4, 9, 16, 25]
-
- -Recall the example above where we used a for loop to select stocks. Here we use list comprehension: -
stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']
-selected = ['AAPL','IBM']
-new_list = [x for x in stocks if x not in selected]
-print new_list
-[out]: ['GOOG', 'FB', 'F', 'V', 'G', 'GE']
-
- -A list comprehension consists of square brackets containing an expression followed by a "for" clause, and possibly "for" or "if" clauses. For example: -
print [(x, y) for x in [1,2,3] for y in [3,1,4] if x != y]
-print [str(x) + ' vs ' + str(y) for x in ['AAPL','GOOG','IBM','FB']
-                                for y in ['F','V','G','GE'] if x != y]
-[out]:
-[(1, 3), (1, 4), (2, 3), (2, 1), (2, 4), (3, 1), (3, 4)]
-['AAPL vs F', 'AAPL vs V', 'AAPL vs G', 'AAPL vs GE', 'GOOG vs F', 'GOOG vs V', 'GOOG vs G', 'GOOG vs GE', 'IBM vs F', 'IBM vs V', 'IBM vs G', 'IBM vs GE', 'FB vs F', 'FB vs V', 'FB vs G', 'FB vs GE']
-
- -List comprehension is an elegant way to organize one or more for loops when creating a list. - -

Summary

-This chapter has introduced logical operations, loops and list comprehension. In the next chapter we will introduce functions and object-oriented programming, which will enable us to make our codes clean and versatile. \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.ipynb b/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.ipynb deleted file mode 100644 index 4270da9..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial02 Logical Operations and Loops.ipynb +++ /dev/null @@ -1,372 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "False\n", - "True\n", - "True\n", - "True\n", - "False\n" - ] - } - ], - "source": [ - "print 1 == 0\n", - "print 1 == 1\n", - "print 1 != 0\n", - "print 5 >= 5\n", - "print 5 >= 6" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "True\n", - "False\n", - "True\n", - "False\n" - ] - } - ], - "source": [ - "print 2 > 1 and 3 > 2\n", - "print 2 > 1 and 3 < 2 \n", - "print 2 > 1 or 3 < 2\n", - "print 2 < 1 and 3 < 2" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "False\n", - "True\n" - ] - } - ], - "source": [ - "print (3 > 2 or 1 < 3) and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))\n", - "print 3 > 2 or 1 < 3 and (1!=3 and 4>3) and not ( 3 < 2 or 1 < 3 and (1!=3 and 4>3))" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "ename": "IndentationError", - "evalue": "expected an indented block (, line 5)", - "output_type": "error", - "traceback": [ - "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m5\u001b[0m\n\u001b[0;31m elif statement2:\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mIndentationError\u001b[0m\u001b[0;31m:\u001b[0m expected an indented block\n" - ] - } - ], - "source": [ - "if statement1:\n", - " # if the statement1 is true, execute the code here.\n", - " # code.....\n", - " # code.....\n", - "elif statement2:\n", - " # if the statement 1 is false, skip the codes above to this part.\n", - " # code......\n", - " # code......\n", - "else:\n", - " # if none of the above statements is True, skip to this part\n", - " # code......" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "i==0 is True\n" - ] - } - ], - "source": [ - "i = 0\n", - "if i == 0:\n", - " print 'i==0 is True'" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "q is false\n" - ] - } - ], - "source": [ - "p = 1 > 0\n", - "q = 2 > 3\n", - "if p and q:\n", - " print 'p and q is true'\n", - "elif p and not q:\n", - " print 'q is false'\n", - "elif q and not p:\n", - " print 'p is false'\n", - "else:\n", - " print 'None of p and q is true'" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0\n", - "1\n", - "2\n", - "3\n", - "4\n" - ] - } - ], - "source": [ - "i = 0\n", - "while i < 5:\n", - " print i\n", - " i += 1 " - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1\n", - "2\n", - "3\n", - "4\n", - "5\n" - ] - } - ], - "source": [ - "for i in [1,2,3,4,5]:\n", - " print i" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['AAPL', 'GOOG', 'IBM', 'FB', 'F', 'V', 'G', 'GE']\n" - ] - } - ], - "source": [ - "stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "selected = ['AAPL','IBM']\n", - "new_list = []\n", - "for i in stocks:\n", - " if i not in selected:\n", - " new_list.append(i)\n", - "print stocks" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "AAPL\n", - "GOOG\n", - "IBM\n", - "FB\n" - ] - } - ], - "source": [ - "stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "for i in stocks:\n", - " print i\n", - " if i == 'FB':\n", - " break" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "AAPL\n", - "GOOG\n", - "IBM\n", - "F\n", - "V\n", - "G\n", - "GE\n" - ] - } - ], - "source": [ - "stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "for i in stocks:\n", - " if i == 'FB':\n", - " continue\n", - " print i" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[1, 4, 9, 16, 25]\n" - ] - } - ], - "source": [ - "squares = []\n", - "for i in [1,2,3,4,5]:\n", - " squares.append(i**2)\n", - "print squares" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[1, 4, 9, 16, 25]\n" - ] - } - ], - "source": [ - "list = [1,2,3,4,5]\n", - "squares = [x**2 for x in list]\n", - "print squares" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['AAPL', 'IBM']\n" - ] - } - ], - "source": [ - "stocks = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "selected = ['AAPL','IBM']\n", - "new_list = [x for x in stocks if x in selected]\n", - "print new_list" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[(1, 3), (1, 4), (2, 3), (2, 1), (2, 4), (3, 1), (3, 4)]\n", - "['AAPL vs F', 'AAPL vs V', 'AAPL vs G', 'AAPL vs GE', 'GOOG vs F', 'GOOG vs V', 'GOOG vs G', 'GOOG vs GE', 'IBM vs F', 'IBM vs V', 'IBM vs G', 'IBM vs GE', 'FB vs F', 'FB vs V', 'FB vs G', 'FB vs GE']\n" - ] - } - ], - "source": [ - "print [(x, y) for x in [1,2,3] for y in [3,1,4] if x != y]\n", - "print [str(x)+' vs '+str(y) for x in ['AAPL','GOOG','IBM','FB'] for y in ['F','V','G','GE'] if x!=y]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.html b/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.html deleted file mode 100644 index 295e09f..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.html +++ /dev/null @@ -1,194 +0,0 @@ -In the last tutorial we introduced logical operations, loops and list comprehension. We will introduce functions and object-oriented programming in this chapter, which will enable us to build complex algorithms in more flexible ways. - -

Functions

- -A function is a reusable block of code. We can use a function to output a value, or do anything else we want. We can easily define our own function by using the keyword "def". - -
def product(x,y):
-    return x*y
-print product(2,3)
-[out]: 6
-print product(5,10)
-[out]: 50
-
- -The keyword "def" is followed by the function name and the parenthesized list of formal parameters. The statements that form the body of the function start at the next line, and must be indented. The product() function above has "x" and "y" as its parameters. A function doesn't necessarily have parameters: - -
def say_hi():
-    print "Welcome to QuantConnect'
-say_hi()
-[out]: Welcome to QuantConnect
-
- -

Built-in Function

- -range() is a function that creates a list containing an arithmetic sequence. It's often used in for loops. The arguments must be integers. If the "step" argument is omitted, it defaults to 1. -
-print range(10)
-[out]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
-print range(1, 11)
-[out]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
-print range(1, 11, 2)
-[out]: [1, 3, 5, 7, 9]
-
- -len() is another function used together with range() to create a for loop. This function returns the length of an object. The argument must be a sequence or a collection. -
-tickers = ['AAPL', 'GOOGL', 'IBM', 'FB', 'F', 'V', 'G', 'GE']
-print "The number of tickers is {}".format(len(tickers))
-for k in range(len(tickers)):
-    print k + 1, tickers[k]
-[out]:
-The number of tickers is 8
-1 AAPL
-2 GOOGL
-3 IBM
-4 FB
-5 F
-6 V
-7 G
-8 GE
-
- -Note: If you want to print only the tickers without those numbers, then simply write "for ticker in tickers: print ticker" - -map() is a function that applies a specific function to every item of a sequence or collection, and returns a list of the results. -
tickers = ['AAPL', 'GOOGL', 'IBM', 'FB', 'F', 'V', 'G', 'GE']
-print map(len, tickers)
-[out]: [4, 5, 3, 2, 1, 1, 1, 2]
-
- -The lambda operator is a way to create small anonymous functions. These functions are just needed where they have been created. For example: -
map(lambda x: x**2, range(10))
-[out]: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
-
- -map() can be applied to more than one list. The lists have to have the same length. -
map(lambda x, y: x+y, [1,2,3,4,5], [5,4,3,2,1])
-[out]: [6, 6, 6, 6, 6]
-
- -sorted() takes a list or set and returns a new sorted list: -
sorted([5,2,3,4,1])
-[out]: [1, 2, 3, 4, 5]
-
- -We can add a "key" parameter to specify a function to be called on each list element prior to making comparisons. For example: -
price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
-sorted(price_list, key = lambda x: x[1])
-[out]:
-[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOGL', 911.71)]
-
- -By default the values are sorted by ascending order. We can change it to descending by adding an optional parameter "reverse'. -
price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
-sorted(price_list, key = lambda x: x[1], reverse = True)
-[out]:
-[('GOOGL', 911.71), ('FB', 150), ('AAPL', 144.09), ('WMT', 75.32), ('MSFT', 69)]
-
- -Lists also have a function list.sort(). This function takes the same "key" and "reverse" arguments as sorted(), but it doesn't return a new list. -
price_list = [('AAPL', 144.09), ('GOOGL', 911.71), ('MSFT', 69), ('FB', 150), ('WMT', 75.32)]
-price_list.sort(key = lambda x: x[1])
-print price_list
-[out]:
-[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOGL', 911.71)]
-
- -

Object-Oriented Programming

- -Python is an object-oriented programming language. It's important to understand the concept of "objects" because almost every kind of data from QuantConnect API is an object. - -

Class

-A class is a type of data, just like a string, float, or list. When we create an object of that data type, we call it an instance of a class. - -In Python, everything is an object - everything is an instance of some class. The data stored inside an object are called attributes, and the functions which are associated with the object are called methods. - -For example, as mentioned above, a list is an object of the "list" class, and it has a method list.sort(). - -We can create our own objects by defining a class. We would do this when it's helpful to group certain functions together. For example, we define a class named "Stock" here: -
class Stock:
-    def __init__(self, ticker, open, close, volume):
-        self.ticker = ticker
-        self.open = open
-        self.close = close
-        self.volume = volume
-        self.rate_return = float(close)/open - 1
-
-    def update(self, open, close):
-        self.open = open
-        self.close = close
-        self.rate_return = float(self.close)/self.open - 1
-
-    def print_return(self):
-        print self.rate_return
-
- -The "Stock" class has attributes "ticker", "open", "close", "volume" and "rate_return". Inside the class body, the first method is called __init__, which is a special method. When we create a new instance of the class, the __init__ method is immediately executed with all the parameters that we pass to the "Stock" object. The purpose of this method is to set up a new "Stock" object using data we have provided. - -Here we create two Stock objects named "apple" and "google". -
apple  = Stock('AAPL', 143.69, 144.09, 20109375)
-google = Stock('GOOGL', 898.7, 911.7, 1561616)
-
- -Stock objects also have two other methods: update() and print_return(). We can access the attribues of a Stock object and call its methods: -
apple.ticker
-[out]: 'AAPL'
-google.print_return()
-[out]: 0.0144653388227
-google.update(912.8,913.4)
-google.print_return()
-[out]: 0.000657318141981
-
- -By calling the update() function, we updated the open and close prices of a stock. Please note that when we use the attributes or call the methods inside a class, we need to specify them as self.attribute or self.method(), otherwise Python will deem them as global variables and thus raise an error. - -We can add an attribute to an object anywhere: -
-apple.ceo = 'Tim Cook'
-apple.ceo
-[out]: 'Tim Cook'
-
- -We can check what names (i.e. attributes and methods) are defined on an object using the dir() function: -
dir(apple)
-[out]:
-['__doc__',
- '__init__',
- '__module__',
- 'ceo',
- 'close',
- 'open',
- 'print_return',
- 'rate_return',
- 'ticker',
- 'update',
- 'volume']
-
- -

Inheritance

- -Inheritance is a way of arranging classes in a hierarchy from the most general to the most specific. A "child" class is a more specific type of a "parent" class because a child class will inherit all the attribues and methods of its parent. For example, we define a class named "Child" which inherits "Stock": -
class Child(Stock):
-    def __init__(self, name):
-        self.name = name
-
- -Then we create an object: -
aa = Child('AA')
-print aa.name
-[out]: 'AA'
-aa.update(100, 102)
-print aa.open
-[out]: 100
-print aa.close
-[out]: 102
-print aa.print_return()
-[out]: 0.02
-As seen above, the new class Child has inherited the methods from Stock. - -

Summary

- -In this chapter we have introduced functions and classes. When we write a QuantConnect algorithm, we would define our algorithm as a class (QCAlgorithm). This means our algorithm inherited the QC API methods from QCAlgorithm class. - -In the next chapter, we will introduce NumPy and Pandas, which enable us to conduct scientific calculations in Python. \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.ipynb b/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.ipynb deleted file mode 100644 index 08b35ef..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial03 Functions and Objective-Oriented Programming.ipynb +++ /dev/null @@ -1,410 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "6\n", - "50\n" - ] - } - ], - "source": [ - "def product(x,y):\n", - " return x*y\n", - "print product(2,3)\n", - "print product(5,10)" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Welcome to QuantConnect\n" - ] - } - ], - "source": [ - "def say_hi():\n", - " print 'Welcome to QuantConnect'\n", - "say_hi()" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n", - "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\n", - "[1, 3, 5, 7, 9]\n" - ] - } - ], - "source": [ - "print range(10)\n", - "print range(1,11)\n", - "print range(1,11,2)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "The length of tickers is 8\n", - "AAPL\n", - "GOOG\n", - "IBM\n", - "FB\n", - "F\n", - "V\n", - "G\n", - "GE\n" - ] - } - ], - "source": [ - "tickers = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "print 'The length of tickers is {}'.format(len(tickers))\n", - "for i in range(len(tickers)):\n", - " print tickers[i]" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[4, 4, 3, 2, 1, 1, 1, 2]\n" - ] - } - ], - "source": [ - "tickers = ['AAPL','GOOG','IBM','FB','F','V', 'G', 'GE']\n", - "print map(len,tickers)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map(lambda x: x**2, range(10))" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[6, 6, 6, 6, 6]" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "map(lambda x, y: x+y, [1,2,3,4,5],[5,4,3,2,1]) " - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[1, 2, 3, 4, 5]" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sorted([5,2,3,4,1])" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOG', 911.71)]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "price_list = [('AAPL',144.09),('GOOG',911.71),('MSFT',69),('FB',150),('WMT',75.32)]\n", - "sorted(price_list, key = lambda x: x[1])" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[('GOOG', 911.71), ('FB', 150), ('AAPL', 144.09), ('WMT', 75.32), ('MSFT', 69)]" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "price_list = [('AAPL',144.09),('GOOG',911.71),('MSFT',69),('FB',150),('WMT',75.32)]\n", - "sorted(price_list, key = lambda x: x[1],reverse = True)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[('MSFT', 69), ('WMT', 75.32), ('AAPL', 144.09), ('FB', 150), ('GOOG', 911.71)]\n" - ] - } - ], - "source": [ - "price_list = [('AAPL',144.09),('GOOG',911.71),('MSFT',69),('FB',150),('WMT',75.32)]\n", - "price_list.sort(key = lambda x: x[1])\n", - "print price_list" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "class stock:\n", - " def __init__(self, ticker, open, close, volume):\n", - " self.ticker = ticker\n", - " self.open = open\n", - " self.close = close\n", - " self.volume = volume\n", - " self.rate_return = float(close)/open - 1\n", - " \n", - " def update(self, open, close):\n", - " self.open = open\n", - " self.close = close\n", - " self.rate_return = float(self.close)/self.open - 1\n", - " \n", - " def print_return(self):\n", - " print self.rate_return" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "apple = stock('AAPL', 143.69, 144.09, 20109375)\n", - "google = stock('GOOG', 898.7, 911.7, 1561616)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0.0144653388227\n", - "0.000657318141981\n" - ] - } - ], - "source": [ - "apple.ticker\n", - "google.print_return()\n", - "google.update(912.8,913.4)\n", - "google.print_return()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'Tim Cook'" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "apple.ceo = 'Tim Cook'\n", - "apple.ceo" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['__doc__',\n", - " '__init__',\n", - " '__module__',\n", - " 'ceo',\n", - " 'close',\n", - " 'open',\n", - " 'print_return',\n", - " 'rate_return',\n", - " 'ticker',\n", - " 'update',\n", - " 'volume']" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "dir(apple)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "class child(stock):\n", - " def __init__(self,name):\n", - " self.name = name" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "aa\n", - "100\n", - "102\n", - "0.02\n", - "None\n" - ] - } - ], - "source": [ - "aa = child('aa')\n", - "print aa.name\n", - "aa.update(100,102)\n", - "print aa.open\n", - "print aa.close\n", - "print aa.print_return()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.html b/Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.html deleted file mode 100644 index 31ef442..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial04 NumPy and Basic Pandas.html +++ /dev/null @@ -1,229 +0,0 @@ -Now that we have introduced the fundamentals of Python, it's time to learn about NumPy and Pandas. - -NumPy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays. It also has strong integration with Pandas, which is another powerful tool for manipulating financial data. - -Python packages like NumPy and Pandas contain classes and methods which we can use by importing the package: -
import numpy as np
- -

NumPy

- -

Basic NumPy Arrays

- -A NumPy array is a grid of values, all of the same type, and is indexed by a tuple of nonnegative integers. Here we make an array by passing a list of Apple stock prices: -
price_list = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]
-price_array = np.array(price_list)
-print price_array, type(price_array)
-[out]: [ 143.73  145.83  143.68  144.02  143.5   142.62]
-<class 'numpy.ndarray'>
- -Notice that the type of array is "ndarray" which is a multi-dimensional array. If we pass np.array() a list of lists, it will create a 2-dimensional array. -
Ar = np.array([[1,3], [2,4]])
-print Ar, type(Ar)
-[out]: [[1 3]
-        [2 4]]
-<class 'numpy.ndarray'>
- -We get the dimensions of an ndarray using the .shape attribute: -
print Ar.shape
-[out]: (2, 2)
- -If we create an 2-dimensional array (i.e. matrix), each row can be accessed by index: -
print Ar[0]
-[out]: [1 3]
-print Ar[1]
-[out]: [2 4]
- -If we want to access the matrix by column instead: -
print 'First column:', Ar[:,0]
-[out]: First column: [1 2]
-print 'Second column:', Ar[:,1]
-[out]: Second column: [3 4]
- -

Array Functions

- -Some functions built in NumPy that allow us to perform calculations on arrays. For example, we can apply the natural logarithm to each element of an array: -
np.log(price_array)
-[out]: [4.96793654  4.98244156  4.9675886   4.96995218  4.96633504  4.96018375]
- -Other functions return a single value: -
np.mean(price_array)
-[out]: 143.896666667
-print np.std(price_array)
-[out]: 0.967379047852
-print np.sum(price_array)
-[out]: 863.38
-print np.max(price_array)
-[out]: 145.83
-
-The functions above return the mean, standard deviation, total and maximum value of an array. - -

Pandas

- -Pandas is one of the most powerful tools for dealing with financial data. First we need to import Pandas: -
import pandas as pd
- -

Series

- -Series is a one-dimensional labeled array capable of holding any data type (integers, strings, float, Python object, etc.) - -We create a Series by calling pd.Series(data), where data can be a dictionary, an array or just a scalar value. -
price = [143.73, 145.83, 143.68, 144.02, 143.5, 142.62]
-s = pd.Series(price)
-print s
-
-0    143.73
-1    145.83
-2    143.68
-3    144.02
-4    143.50
-5    142.62
- -We can customize the indices of a new Series: -
s = pd.Series(price, index = ['a', 'b', 'c', 'd', 'e', 'f'])
-print s
-
-a    143.73
-b    145.83
-c    143.68
-d    144.02
-e    143.50
-f    142.62
- -Or we can change the indices of an existing Series: -
s.index = [6,5,4,3,2,1]
-print s
-
-6    143.73
-5    145.83
-4    143.68
-3    144.02
-2    143.50
-1    142.62
- -Series is like a list since it can be sliced by index: -
print s[1:]
-print s[:-2]
-
-5    145.83
-4    143.68
-3    144.02
-2    143.50
-1    142.62
-dtype: float64
-6    143.73
-5    145.83
-4    143.68
-3    144.02
-dtype: float64
- -Series is also like a dictionary whose values can be set or fetched by index label: -
print s[4]
-s[4] = 0
-print s
-
-143.68
-6    143.73
-5    145.83
-4      0.00
-3    144.02
-2    143.50
-1    142.62
-dtype: float64
- -Series can also have a name attribute, which will be used when we make up a Pandas DataFrame using several series. -
s = pd.Series(price, name = 'Apple Prices')
-print s
-print s.name
-
-0    143.73
-1    145.83
-2    143.68
-3    144.02
-4    143.50
-5    142.62
-Name: Apple Prices, dtype: float64
-Apple Prices
- -We can get the statistical summaries of a Series: -
print s.describe()
-
-count      6.000000
-mean     143.896667
-std        1.059711
-min      142.620000
-25%      143.545000
-50%      143.705000
-75%      143.947500
-max      145.830000
- -

Time Index

- -Pandas has a built-in function specifically for creating date indices: pd.date_range(). We use it to create a new index for our Series: -
time_index = pd.date_range('2017-01-01', periods = len(s), freq = 'D')
-print time_index
-s.index = time_index
-print s
-
-DatetimeIndex(['2017-01-01', '2017-01-02', '2017-01-03', '2017-01-04',
-               '2017-01-05', '2017-01-06'],
-              dtype='datetime64[ns]', freq='D')
-2017-01-01    143.73
-2017-01-02    145.83
-2017-01-03    143.68
-2017-01-04    144.02
-2017-01-05    143.50
-2017-01-06    142.62
-Freq: D, Name: Apple Prices, dtype: float64
- -Series are usually accessed using the iloc[] and loc[] methods. iloc[] is used to access elements by integer index, and loc[] is used to access the index of the series. - -iloc[] is necessary when the index of a series are integers, take our previous defined series as example: -
s.index = [6,5,4,3,2,1]
-print s
-print s[1]
-
-6    143.73
-5    145.83
-4    143.68
-3    144.02
-2    143.50
-1    142.62
-Name: Apple Prices, dtype: float64
-142.62
- -If we intended to take the second element of the series, we would make a mistake here, because the index are integers. In order to access to the element we want, we use iloc[] here: -
print s.iloc[1]
-[out]: 145.83
-
- -While working with time series data, we often use time as the index. Pandas provides us with various methods to access the data by time index. -
s.index = time_index
-print s['2017-01-03']
-[out]: 143.68
- -We can even access to a range of dates: -
print s['2017-01-02':'2017-01-05']
-
-2017-01-02    145.83
-2017-01-03    143.68
-2017-01-04    144.02
-2017-01-05    143.50
-Freq: D, Name: Apple Prices, dtype: float64
- -Series[] provides us a very flexible way to index data. We can add any condition in the square brackets: -
print s[s < np.mean(s)]
-print s[(s > np.mean(s)) & (s < np.mean(s) + 1.64*np.std(s))]
-
-2017-01-01    143.73
-2017-01-03    143.68
-2017-01-05    143.50
-2017-01-06    142.62
-Name: Apple Prices, dtype: float64
-2017-01-04    144.02
-Freq: D, Name: Apple Price List, dtype: float64
- -As demonstrated, we can use logical operators like & (and), | (or) and ~ (not) to group multiple conditions. - -

Summary

- -Here we have introduced NumPy and Pandas for scientific computing in Python. In the next chapter, we will dive into Pandas to learn resampling and manipulating Pandas DataFrame, which are commonly used in financial data analysis. \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.html b/Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.html deleted file mode 100644 index e1da695..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial06 Rate of Return, Mean and Variance.html +++ /dev/null @@ -1,122 +0,0 @@ -

Introduction

-In this chapter we are going to introduce some basic concepts in quantitative finance. We start with rate of return, mean and variance. You may think it's simple to calculate these values, however, there are number of different methods to calculate them. It's important to choose the appropriate calculation methods case by case. -

Rate of Return

-

Single-period Return

-The single-period rate of return can be calculated as following: -\[r = \frac{p_t}{p_0} - 1 = \frac{p_t - p_0}{p_0}\] -Where \(r\) is the rate of return, \(p_t\) is the asset price at time \(t\), and \(p_0\) is the asset price at time 0. -
-import numpy as np
-rate_return = 102.0/100 - 1
-print rate_return
-[out]: 0.02
-
-Let's say we bought a stock at $100, and half a year later it will grow to $102. A year later the price will come to $104. How to calculate our total return? -Well, we can either deem it as a single-period: -\[r = 104/100 - 1 = 0.04\] -or as a two-stage period: -\[ r = (1+r_1)*(1+r_2) - 1 = \frac{102}{100} * \frac{104}{102} -1 = 0.04\] -Here we make calculations twice a year. It's called semi-annual compounding. How about quarterly compounding? -Let's assume the stock prices at the end of each quarter are \(p_1, p_2, p_3, p_4\) respectively. -\[r = (1+r_1)*(1+r_2)*(1+r_3)*(1+r_4) -1\] -The rate of return we calculate here is called cumulative return or overall return. It measures the total return of this asset over a period of time. -Now consider the following situation: we have two strategies: strategy A and strategy B. We backtested strategy A for 1 years and the cumulative return is 20%, while we backtested strategy B and the cumulative return is 65%. Which strategy has a high rate of return? Our commonly used method is to convert all the returns into compounding annual return, regardless of the investing horizon of each strategy. We can compare the returns of strategies with different time horizon now! -\[(1+r)^3 = 1+0.65\] -\[ r = \sqrt[3]{1.65} - 1\ = 0.18167\] -Strategy A has an higher compounding annual return! -

Logarithm Return

-We introduced compounding annual return above, which is a kind of effective rate of return. You can regard it as a 'hypothetical return'. Strategy B might never have a 18.167% rate of rate annually during the 3-year backtesting period. However, if we assume that the strategy has a 18.167% rate of return every year, it has the same cumulative return over the 3 years. -As we mentioned previously, if we assume a strategy is quarterly compounding, the relation between quarterly effective rate of return and annual return is: -\[(1+\frac{r}{4})^4 = 1+r\] -More generally, if the times of compounding in one year is \(n\) and the annual rate of return is \(r\), the relation is given by: -\[(1+\frac{r}{n})^n = 1+r\] -Now imagine the stock markets. The prices of your assets is changing every second, or even every millisecond. If the times of compounding, or n, approach to infinite, this is called continuous compounding. The calculation formula is given below: -\[\lim_{n \to \infty }(1+\frac{r}{n})^n = e^r\] -From the above limitation equation, we know that if we assume continuous compounding: -\[e^r = 1 + r = \frac{p_t}{p_0}\] -Then we take \(ln\) on both side of the equation: -\[r = ln\frac{p_t}{p_0} = lnp_t - lnp_0\] -Here we got the logarithmic return, or continuously compounded return. -This is frequently used when calculating returns, because once we take logarithm of asset prices, we can calculate the logarithm return by simply doing a subtraction. Here we use Apple stock prices as a example: -
import quandl
-import numpy as np
-import quandl
-quandl.ApiConfig.api_key = 'zNXvSaz2oX5afVGKjf6o'
-#get quandl data
-aapl_table = quandl.get('WIKI/AAPL')
-aapl = aapl_table.loc['2017-3',['Open','Close']]
-#take log return
-aapl['log_price'] = np.log(aapl.Close)
-aapl['log_return'] = np.log_price.diff()
-print aapl
-
-The output is: -
-Date          Open   Close  log_price  log_return
-2017-03-01  137.890  139.79   4.940141         NaN
-2017-03-02  140.000  138.96   4.934186   -0.005955
-2017-03-03  138.780  139.78   4.940070    0.005884
-2017-03-06  139.365  139.34   4.936917   -0.003153
-2017-03-07  139.060  139.52   4.938208    0.001291
-2017-03-08  138.950  139.00   4.934474   -0.003734
-2017-03-09  138.740  138.68   4.932169   -0.002305
-2017-03-10  139.250  139.14   4.935481    0.003311
-2017-03-13  138.850  139.20   4.935912    0.000431
-2017-03-14  139.300  138.99   4.934402   -0.001510
-2017-03-15  139.410  140.46   4.944923    0.010521
-2017-03-16  140.720  140.69   4.946559    0.001636
-2017-03-17  141.000  139.99   4.941571   -0.004988
-2017-03-20  140.400  141.46   4.952017    0.010446
-2017-03-21  142.110  139.84   4.940499   -0.011518
-2017-03-22  139.845  141.42   4.951734    0.011235
-2017-03-23  141.260  140.92   4.948192   -0.003542
-2017-03-24  141.500  140.64   4.946203   -0.001989
-2017-03-27  139.390  140.88   4.947908    0.001705
-2017-03-28  140.910  143.80   4.968423    0.020515
-2017-03-29  143.680  144.12   4.970646    0.002223
-2017-03-30  144.190  143.93   4.969327   -0.001319
-2017-03-31  143.720  143.66   4.967449   -0.001878
-
- -Here we calculated the daily logarithmic return of Apple stock. Given that we know the daily logarithm return of in this month, we can calculate the monthly return by simply sum all the daily returns up. -
month_return = aapl.log_return.sum()
-print month_return
-[out]: 0.0273081001636
-
-It may sounds incorrect to sum up the daily returns, but we can prove that it's mathematically correct. Let's assume the stock prices in a period of time are represented by \([p_0, p_1, p_2, p_3.....p_n]\). Then the cumulative rate of return is given by: -\[1+r = ln\frac{p_t}{p_0} = ln\frac{p_t}{p_{t-1}} + ln\frac{p_{t-1}}{p_{t-2}}+......+ln\frac{p_1}{p_0}\] -According to the equation above, we can simple sum up each logarithmic return in a period to get the cumulative return. The convenience of this method is also one of the reasons why we use logarithmic return in quantitative finance. -

Mean

-

Arithmetic Mean

-Mean is a measure of the central tendency of a data series. It capture the key character of the distribution of the data series. When we talk about mean, by default it refers to arithmetic mean. It's defined as the sum of the values divided by the number of observations: -\[\mu = \frac{\sum_{i = 1}^{n}x_i}{n}\] -Where \((x_1,x_2,x_3.....x_n)\) is our data series. -In python we can use NumPy.mean() to do the calculation: -
print np.mean(aapl.log_price)
-[out]: 4.94597446551
-
-

Geometric Mean

-The geometric mean is an average that is useful for data series of positive numbers that are better interpreted according to their product, such as growth rate. It's calculated by: -\[\bar{x} = \sqrt[n]{x_1x_2x_3...x_n}\] -Let's calculate the geometric mean of a series of single-period return: -\[1+\bar{r} = \sqrt[n]{\frac{p_t}{p_{t-1}}*\frac{p_{t-1}}{p_{t-2}}*...*\frac{p_2}{p_1}}\] -\[(1+\bar{r}) = \sqrt[n]{\frac{p_t}{p_0}}\] -Now the equation becomes the form which we are familiar with: -\[(1+\bar{r})^n = \frac{p_t}{p_0}\] -This is why we said it make sense when applied to growth rates. -

Variance and Standard Deviation

-

Variance

-Variance is a measure of dispersion. In finance, most of the time variance is a synonym for risk. The higher the variance of an asset price is, the higher risk the asset bears. Variance is usually represented by \(\sigma\), and it's calculated by -\[\sigma^2 = \frac{\sum_{i = 1}^{n}(x_i- \mu)^2}{n}\] -In python we can use NumPy.var to calculate it: -
print np.var(aapl.log_price)
-
-

Standard Deviation

-The most commonly used measure of dispersion in finance is standard deviation. It's usually represented by \(\sigma\). It's obvious to see the relation between standard deviation and variance: -\[\sigma = \sqrt{\sigma^2} = \sqrt{\frac{\sum_{i = 1}^{n}(x_i- \mu)^2}{n}}\] -NumPy also provides us a method to calculate standard deviation. -
print np.std(aapl.log_price)
-[out]: 0.000142032804482
-
-

Summary

-We introduced different types of rate of return in this chapter, which could be a little bit tricky when we calculate them. Mean and standard deviation are also very important concepts when we conduct hypothesis test or measure the risk associated with a asset. We will use those comcepts intensively in our later chapter. diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial07 Random Variables and Distributions.html b/Tutorial Series/Introduction to Financial Python/Tutorial07 Random Variables and Distributions.html deleted file mode 100644 index 8b10dee..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial07 Random Variables and Distributions.html +++ /dev/null @@ -1,167 +0,0 @@ -

Introduction

-In the last chapter we learned the definition of mean and variance, which are kind of point estimation. Point estimation means using sample data to calculate a single value which is to serve as a 'best estimation' of an unknown population. However, this it not enough because point estimations can be deceiving. We need to use more rigorous methods to test our ideas. That's why we consider distribution and hypothesis testing. Random variable distribution is the basis for almost all quantitative finance topics: linear regression, CAPM, Black-Scholes, binomial tree pricing, etc. -

Random Variables

-First let's start with the concept of random variable. A random variable can be thought of as a drawing from a distribution whose outcome prior to the draw is uncertain. Imaging rolling a dice, you know that your chance of getting each is 1/6, but you don't know what's the number of your next roll is. If we roll the dice N times and record the number of each roll, a collection of those numbers is called discrete random variable. A discrete variable can take on a finite number of values. For our example, we can only take numbers from{1,2,3,4,5,6}. -The other kind of variable is continuous random variable. A continuous variable can take on any value in a given range. You can think the rate of return as a continuous variable, it theoretically can take any value from \((-\infty, +\infty)\). -

Distributions

-Each random variable follows a probability distribution, which is a function that can be thought of as providing the probabilities of occurrence of different possible outcomes in an experiment. In our dice example, the probability distribution of each number is 1/6. We usually use \(P(X)\) to represents probability distribution function, where X is the outcome value. In our example, \(P(1) = P(2) = p(3) = 1/6\). -However, we can't use this for a continuous distribution, because the the probability that draw a specific number from a continuous variable is 0, due to the infinity possible outcomes we have. Instead, we use probability density function(PDF) function to describe the probability that a value is in a specific range. We we cover this later. -For each probability distribution function, we have a cumulative distribution function(CDF). It defines as \(P(X<x)\), which models the probability that the random variable X will take a value less than or equal to x. For discrete random variables, we just sum up the values less than or equal to x and then divide it with number of observations. -

Uniform Distribution

-Uniform distribution is the simplest type of probability distribution. A discrete uniform distribution has equal weight assigned to all outcomes. Both rolling a dice and toss a fare coin are classical uniform distributions. -Here we use python to simulate rolling a dice 10000 times. -
import random
-import matplotlib.pyplot as plt
-import numpy as np
-import pandas as pd
-#define a function to simulate rolling a dice
-def dice():
-    number=  [1,2,3,4,5,6]
-    return random.choice(number)
-
-series = np.array([dice() for x in range(10000)])
-print series
-
-We create a series of random variable here. We can plot the values on the x-axis and put their number of occurrences on the y-axis to have a direct view of the distribution: -
plt.figure(figsize = (20,10))
-plt.hist(series,bins = 11,align = 'mid')
-plt.xlabel('Dice Number')
-plt.ylabel('Occurences')
-plt.grid()
-plt.show()
-
- -Let's say we want to know the frequency that the observations are less than or equal to 3. In other words we want to seek the value of \(P(X<3)\). -
print len([x for x in series if x <= 3])/float(len(series))
-[out]: 0.4956
-print np.mean(series)
-[out]: 3.5103
-
-\(P(X<3)\) is very close to 0.5. This is not surprising because we rolled the dice 1000 times, and the frequency that the observations less than or equal to 3 should be close to the real probability, which is 0.5. -For a given uniform distribution, it's straightforward to calculate it's mean: it's the center of the distribution because everyone outcome is equal weight. For our dice example, we can think it as -\[\mu = (1+2+3+4+5+6)/6 = 3.5\] -Or -\[E(x) = 1*\frac{1}{6} + 2*\frac{1}{6}+...+6*\frac{1}{6} = 3.5\] -More generally, if we a assume the minimum value in a uniform distribution is a and the maximum value is b, the mean can be given by: -\[\bar{u} = \frac{a+b}{2}\] -Usually we use \(\bar{u}\) to represents the population mean, or the 'real mean'. Here we create a sample with 1000 observations, the mean we calculated above is the sample mean. Sample mean usually doesn't equal to the theoretical population mean unless the number of observation approaches to infinity. -The variance is given by: -\[\sigma^2 = \frac{(b-a)^2}{12}\] -Deducing the formula is out of our lecture scope. It's useful to realize for a given standard distribution, we can formularize its mean and variance. -

Binomial Distribution

-A binomial distribution is a discrete probability distribution of the number of successes in a sequence of n independent experiments. Let's assume that the market has 50% probability goes up and 50% probability goes down, and we observe it in the next 10 days, what's the distribution of the number of days it goes up? This is a binomial distribution example. -In general, if we carry out the experiment n times, and each outcome is independent, with the same probability of success p, the probability of getting exactly k successes is given by the function: -\[P(X = K) = C_n^k p^k (1-p)^{n-k}\] -Where -\[C_n^k = \frac{n!}{(n-k)!k!}\] -Under such circumstance we say X follows the binomial distribution \(X \sim B(n,p)\). -Let's simulate a binomial experiment with success rate p = 0.7 and experiment times n = 10 -
def trial():
-    number = [1,2,3,4,5,6,7,8,9,10]
-    a = random.choice(number)
-    if a<= 7:
-        return 1
-    else:
-        return 0
-
-Each time we execute trial(), we did an experiment. If it succeed, it will return 1, otherwise it will return 0. Now we are going to do the experiment 10 times: -
res = [trial() for x in range(10)]
-print sum(res)
-[out]: 7
-
-Now we did the experiment 10 times, and the number of success is sum(res). However, it just means during these 10 experiments we succeed sum(res) times. If we want to see the binomial distribution, we need experiment N times. When n is large enough, our frequency will approach the theoretical probability. Here we simulate each outcome 10000 times: -
def binomial(number):
-    l = []
-    for i in range(10000):
-        res = [trial() for x in range(10)]
-        l.append(sum(res))
-    return len([x for x in l if x == number])/float(len(l))
-
-print binomial(8)
-[out]: 0.2367
-
-The number printed above is the simulated probability that we succeed 8 times if we experiment 10 times. -for each possible outcome, we simulate the probability: -
prob = []
-for i in range(1,11):
-    prob.append(binomial(i))
-prob_s = pd.Series(prob,index = range(1,11))
-print prob_s
-[out]: 1     0.0002
-       2     0.0013
-       3     0.0087
-       4     0.0373
-       5     0.1041
-       6     0.2000
-       7     0.2674
-       8     0.2342
-       9     0.1153
-       10    0.0283
-
-Here we got the simulated result of the binomial distribution. Now we are going to check if the simulated frequencies close enough to the theoretical probabilities. Let's take X = 7 and X = 8 as example: -
print (float(factorial(10))/(factorial(7)*factorial(10-7)))*(0.7**7)*(0.3**3)
-[out]: 0.266827932
-print (float(factorial(10))/(factorial(8)*factorial(10-8)))*(0.7**8)*(0.3**2)
-[out]: 0.2334744405
-
-As we can see, the simulated results are pretty close to the real probability! -we can plot the results as follows: -
plt.figure(figsize = (20,10))
-plt.bar(range(1,11),prob)
-plt.grid()
-plt.show()
-
- -Another good property of binomial distribution is that its mean and variance are simple enough: -\[\bar{u} = np\] -\[\sigma^2 = np(1-P)\] -We will not introduce the deduction here, but if you are interested in it, we encourage you to do it yourself, based on the probability functions we provided above. -

Normal Distribution

-Before looking at normal distribution, let's first talk about continues distribution. As we mentioned above, we use a probability density function(PDF) to model the probability that our value is taken our a specific range. We define it as: -\[P(a<X<b) = \int_{a}^{b}f_x(x)dx\] -Now we can talk about the normal distribution. The normal distribution is most commonly used distribution in natural sciences, of course also in financial research. The PDF of normal distribution is given as follows: -\[f(x) = \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{(x-\mu)^2}{2\sigma^2}}\] -Where \(\mu\) is the mean of the normal distribution, and \(\sigma\) is the standard deviation. -Generally, if a random variable X follows normal distribution, we represent it by \(X\sim N(\mu, \sigma^2)\). -Specifically, if a normal distribution has a 0 mean and 1 standard deviation, we called it standard normal distribution. -Now let's simulate a standard normal distribution using Python packages to see what it looks like: -
plt.figure(figsize = (20,10))
-norm.plot.density()
-plt.show()
-
- -Financial data is highly disordered and is considered to has lots of noise. Most of the time we believe those noise follows normal distribution. It's also widely believed that the return on an asset over a short period of time follows normal distribution. Let's check it with the daily logarithm rates of return on SPY: -
import quandl
-quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'
-spy_table = quandl.get('BCIW/_SPXT')
-spy = spy_table.loc['2009':'2017',['Open','Close']]
-spy['log_return'] = np.log(spy.Close).diff()
-spy = spy.dropna()
-
-we calculated the logarithm daily return of S&P 500 index from 2009 to present. -Let's first have a look at the what the time-series return data looks like: -
plt.figure(figsize = (20,10))
-spy.log_return.plot()
-plt.show()
-
- -This is a classic daily return chart. Let's now plot the density chart of the returns: -
plt.figure(figsize = (20,10))
-spy.log_return.plot.density()
-plt.show()
-
- -If we observe the x-axis and y-axis carefully, we can see the return of asset is not a standard normal distribution. The peak of the standard normal distribution plot is around 0.4, while it's over 0.6 for this chart. This is because the standard deviation \(\sigma\) of the return is obviously not 1. -We can demonstrate the normal distribution with different mean and variance by simulation: -
de_2 = pd.Series(np.random.normal(0,2,10000),name = 'μ = 0, σ = 2')
-de_3 = pd.Series(np.random.normal(0,3,10000),name = 'μ = 0, σ = 3')
-de_0 = pd.Series(np.random.normal(0,0.5,10000), name ='μ = 0, σ = 0.5')
-mu_1 = pd.Series(np.random.normal(-2,1,10000),name ='μ = -2, σ = 1')
-df = pd.concat([de_2,de_3,de_0,mu_1],axis = 1)
-plt.figure(figsize=(20,10))
-df.plot.density()
-plt.show()
-
- -

Summary

-In this chapter we introduced random variable, the difference between discrete random distribution and continuous random distribution, and most importantly, normal distribution. In the next chapter we will introduce how to use these distributions to test our idea or generating trading signals. diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial08 Confidence Interval and Hypothesis Testing.html b/Tutorial Series/Introduction to Financial Python/Tutorial08 Confidence Interval and Hypothesis Testing.html deleted file mode 100644 index c9c23cc..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial08 Confidence Interval and Hypothesis Testing.html +++ /dev/null @@ -1,134 +0,0 @@ -

Introduction

-In the last chapter we discussed random variables and random distributions. Now we are going to use the distributions we learned to test our hypothesis and also to model the financial data. When building a trading strategy, it's essential to do some research. However, you won't be able to test your idea using all the data, because it's infinity. You can only use a sample to do your experiment. That's why we need to understand the difference between population and sample, and then use confidence interval to test our hypothesis. - -As we mentioned before, both mean and standard deviation are point estimation, and they can be deceiving because sample means are different from population means. Financial data is generated every day now and in the future, thus even though we can use all the data available, it's still just a sample. This is why we need to use confidence interval to attempt to determine how accurate our sample mean estimation is. -

Confidence Interval

-

Sample Error

-Let's use the daily return on S&P 500 index from Aug 2010 to present is our population. If we take the recent 10 daily returns to calculate the mean, will it be the same as the population mean? How about increasing the sample size to 1000? -
import matplotlib.pyplot as plt
-import numpy as np
-import pandas as pd
-import quandl
-quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'
-#get data from quandl
-spy_table = quandl.get('BCIW/_SPXT')
-spy_total = spy_table[['Open','Close']]
-#calculate log returns
-spy_log_return = np.log(spy_total.Close).diff().dropna()
-print 'Population mean:', np.mean(spy_log_return)
-[out]: Population mean: 0.000443353825615
-print 'Population standard deviation:',np.std(spy_log_return)
-[out]: Population standard deviation: 0.00784267293815
-
-Now let's check the recent 10 days sample and recent 1000 days sample: -
-print '10 days sample returns:', np.mean(spy_log_return.tail(10))
-[out]: 10 days sample returns: 0.000845189915474
-print '10 days sample standard deviation:', np.std(spy_log_return.tail(10))
-[out]: 10 days sample standard deviation: 0.00313558001122
-print '1000 days sample returns:', np.mean(spy_log_return.tail(1000))
-[out]: 1000 days sample returns: 0.000462827047221
-print '1000 days sample standard deviation:', np.std(spy_log_return.tail(1000))
-[out]: 1000 days sample standard deviation: 0.00766589174299
-
-As we expected, the two samples has different means and variances. -

Confidence Interval

-In order to estimate the range of population mean, we define standard error of the mean as follows: -\[SE = \frac{\sigma}{\sqrt{n}}\] -Where \(\sigma \) is the sample standard deviation and \(n\) is the sample size. -Generally, if we want to estimate an interval of the population so that 95% of the time the interval will contain the population mean, the interval is calculated as: -\[(\mu - 1.96*SE, \mu + 1.96*SE)\] -Where \(\mu\) is the sample mean and SE is the standard error. -This interval is called confidence interval. We usually use 1.96 to calculate a 95% confidence interval because we assume that the sample mean follows normal distribution. We will cover this in detail later. -Let's try to calculate the confidence interval using the samples above: -
-#apply the formula above to calculate confidence interval
-bottom_1 = np.mean(spy_log_return.tail(10))-1.96*np.std(spy_log_return.tail(10))/(np.sqrt(len((spy_log_return.tail(10)))))
-upper_1 = np.mean(spy_log_return.tail(10))+1.96*np.std(spy_log_return.tail(10))/(np.sqrt(len((spy_log_return.tail(10)))))
-bottom_2 = np.mean(spy_log_return.tail(1000))-1.96*np.std(spy_log_return.tail(1000))/(np.sqrt(len((spy_log_return.tail(1000)))))
-upper_2 = np.mean(spy_log_return.tail(1000))+1.96*np.std(spy_log_return.tail(1000))/(np.sqrt(len((spy_log_return.tail(1000)))))
-#print the outcomes
-print '10 days 95% confidence inverval:', (bottom_1,upper_1)
-[out]: 10 days 95% confidence inverval: (-0.0010982627102681939, 0.002788642541217079)
-print '1000 days 95% confidence inverval:', (bottom_2,upper_2)
-[out]: 1000 days 95% confidence inverval: (-1.230984558013321e-05, 0.00093796394002165957)
-
-As we can see, the 95% confidence interval became much narrower if we increase the sample size from 10 to 1000. Imagine that if N goes positive infinite, then we have \(\lim_{n\rightarrow \infty}\frac{\sigma}{\sqrt{n}} = 0\). The confidence interval would become a certain value, which is the sample mean! -

Confidence Interval of Normal Distribution

-Normal Distribution is so commonly used that we should be able to remember some critical values of it. Specifically, we usually use 90%, 95% and 99% as the confidence level of a confidence interval. The critical values for these three confidence levels are 1.64, 1.96, and 2.32 respectively. in other words: -\[\%90 upperabnd = \mu + 1.64*SE\] -\[\%90 lowerband = \mu + 1.64*SE\] -The same for other confidence intervals. -It's also important to remember the famous 'Three sigma rule' or '68-95-99.7' rule associated with normal distribution. This is used to remember the confidence level of the intervals with a width of two, four and six standard deviation. Mathematically: -\[P(\mu - \sigma \leq X \leq \mu+\sigma)\approx 0.6827\] -\[P(\mu - 2\sigma \leq X \leq \mu+2\sigma)\approx 0.9545\] -\[P(\mu - 3\sigma \leq X \leq \mu+3\sigma)\approx 0.9973\] -This can also be remembered by using the chart: - -

Central Limit Theory

-As we mentioned, if we use the sample to estimate the confidence interval of the population, the 95% confidence interval is: -\[(\mu - 1.96*SE, \mu + 1.96*SE)\] -Now you may have some sense to the number 1.96. It's the 95% critical value of a normal distribution. Does this means we assume the mean of sample follows a normal distribution? -The answer is yes. This assumption is supported by central limit theorem. This theorem tells us that given a sufficiently large sample size from a population with a finite level of variance, the mean of all samples from the same population will be approximately equal to the mean of the population, and the means of the samples will be approximately normal distributed. -This is the foundation of population mean confidence interval estimation. -

Hypothesis testing

-Now we can talk about hypothesis testing. Hypothesis test is essentially test your inference based on a sample. Let's use our dataset, the daily return of S&P 500 us our population. Assume that we don't know the mean of this population. I guess that the mean of this population is 0. Is my guess correct? I need to test this hypothesis with my sample. -Let's start from observing our sample: -
mean_1000 = np.mean(spy_log_return.tail(1000))
-std_1000 = np.std(spy_log_return.tail(1000))
-mean_10 = np.mean(spy_log_return.tail(10))
-std_10 = np.std(spy_log_return.tail(10))
-s = pd.Series([mean_10,std_10,mean_1000,std_1000],index = ['mean_10', 'std_10','mean_1000','std_1000'])
-print s
-
-[out]: mean_10      0.000845
-       std_10       0.003136
-       mean_1000    0.000463
-       std_1000     0.007666
-
-We know how to calculate the confidence interval now. If I were right, i.e. the population mean is 0, then the 90% confidence interval of the sample with 1000 observations should be: -
bottom = 0 - 1.64*std_1000/np.sqrt(1000)
-upper = 0 + 1.64*std_1000/np.sqrt(1000)
-print (bottom, upper)
-[out]: (-0.00039756352254768874, 0.00039756352254768874)
-
-Our mean of the sample is out of the 90% confidence interval. This means on a 90% confidence level, we can claim that the mean of our population is not 0. In other word, we rejected the hypothesis that the daily return on S&P500 from aug 2010 is zero. -Can we claim that with 95% confidence level? -
bottom = 0 - 1.96*std_1000/np.sqrt(1000)
-upper = 0 + 1.96*std_1000/np.sqrt(1000)
-print (bottom, upper)
-[out]: (-0.00047513689280089639, 0.00047513689280089639)
-
-This time the sample mean is within the confidence interval. Thus we can't reject my hypothesis. In other words, we can't claim with 95% confidence level that the mean return is positive. Even though we can claim it with 90% confidence level. -We have actually already finished a hypothesis testing above! In general, we have null hypothesis \(H_0\) and alternative hypothesis. They are usually in the following forms: -\[H_0:\bar{\mu} = 0\] -\[H_0:\bar{\mu} \neq 0\] -If the tested value is outside the confidence interval, we reject the null hypothesis, or accept the alternative hypothesis; If the tested value is within the confidence interval, we can't reject the null hypothesis. -Although the hypothesis testing method we used above is straightforward, it's not so convenient to implement. Instead, we reverse the process to calculate the critical value, or Z-score. Z-score is defined as: -\[Z = \frac{X - \mu}{\frac{\sigma}{\sqrt{n}}}\] -Let's calculate the Z score from our sample: -
print np.sqrt(1000)*(mean_1000 - 0)/std_1000
-[out]: 1.90922032428
-
-We know that the critical value for the 90% confidence level is 1.64 and that for the 95% confidence level is 95%. The higher the Z score is, the further the tested value is from the hypothesized value(which is 0 in this example). Thus with 90% confidence level, we are far away enough from zero and we reject the null hypothesis. However with 95% confidence level, we are not far away enough from zero, so we can't reject the null hypothesis. -one reason of doing in this way is that we can know how wide our confidence interval is. In our example, the z-score is 1.8488. We can know the width is the confidence interval referring to a normal distribution table. Of course we can do this in Python: -
import scipy.stats as st
-print (1 - st.norm.cdf(1.9488))
-[out]: 0.025659656888
-
-It's worth noting that st.norm.cdf will return the probability that a value take from the distribution is less than our tested value. In other words, 1 - st.norm.cdf(1.9488) will return the probability that the value is greater than our tested value, which is 0.025659 in this example. This calculated number is called p-value. If our confidence level our confidence interval is 95%, then we have 2.5% on the left side and 2.5% on the right side. This is called two-tail test. If our null hypothesis is \(\mu = 0\), we are conducting two-tail test because the tested sample mean can be either positive enough or negative enough to reject the null hypothesis. We can see it from the chart: - -If we use 95% confidence interval, we need a p-value less than 0.025 to reject the null hypothesis. However, now our p-value is 0.025659, which is greater than 0.025, thus we can't reject the null hypothesis. It's obviously less than 0.05, so we can still reject the null hypothesis with 90% confidence level. -Now let's test the hypothesis that population mean = 0 again with a large sample, which has 1200 observations: -
mean_1200 = np.mean(spy_log_return.tail(1200))
-std_1200 = np.std(spy_log_return.tail(1200))
-z_score = np.sqrt(1200)*(mean_1200 - 0)/std_1200
-print 'z-score = ',z_score
-[out]: z-score =  2.19793023185
-p_value = (1 - st.norm.cdf(z_score))
-print 'p_value = ',p_value
-[out]: p_value =  0.0139770390655
-
-Using the a larger sample, now we can reject the null hypothesis with a higher confidence interval! our p-value is 0.0105, and it's a two-tail test, so our confidence level of the interval is 1-(0.0105*2) = 0.979. We can say at most with 97.9% confidence interval, we can claim that the population mean is not zero. We already know that the population mean is not 0. As our sample size increasing, the accurate rate of our hypothesis goes up. -

Summary

-In this chapter we introduced confidence interval, especially that for the normal distribution, and hypothesis test. Now we know how to test our idea rigorously. Normal distribution and it's confidence interval can be applied to many quantitative finance theories, we will see it frequently in our following tutorials. diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.html b/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.html deleted file mode 100644 index d53dd0e..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.html +++ /dev/null @@ -1,126 +0,0 @@ -

Introduction

-In finance and economics filed, most of the models are linear ones. We can see linear regression everywhere, from the foundation of the model portfolio theory to the nowadays popular Fama-French asset pricing model. It's very important to understand how linear regression works in order to have a comprehensive understanding of those theories. - -If we are holding a stock, we must be curious about the relationship between our stock return and the market return. Let's say we hold Amazon stock on the first day of this year. In order to see the relation directly, we plot the daily return of our stock on the y-axis and plot the S&P 500 index daily return on the x-axis. -
import numpy as np
-import pandas as pd
-import quandl
-quandl.ApiConfig.api_key = '_fgkxjSbt5389zGt4crC'
-#get data from quandl
-spy_table = quandl.get('BCIW/_SPXT')
-amzn_table = quandl.get('WIKI/AMZN')
-#fetch data from Jan 2017 to Jun 2017
-spy = spy_table.loc['2017':'2017-6',['Close']]
-amzn = amzn_table.loc['2017':'2017-6',['Close']]
-#calculate log return
-spy_log = np.log(spy.Close).diff().dropna()
-amzn_log = np.log(amzn.Close).diff().dropna()
-df = pd.concat([spy_log,amzn_log],axis = 1).dropna()
-df.columns = ['spx','amzn']
-print df.tail()
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 spyamzn
2016-12-22-0.004462-0.005543
2016-12-230.001372-0.007531
2016-12-230.0009280.000946
2016-12-23-0.005671-0.009081
2016-12-230.002086-0.020172
-We successfully create a DataFrame contains the daily logarithm return of Amazon stock and S&P500. Now let's plot it: -
import matplotlib.pyplot as plt
-plt.figure(figsize = (15,10))
-plt.scatter(df.spy,df.amzn)
-plt.show()
-
- -The plot is scattered, but we can see they are approximately correlated: generally the higher SPX's daily return is, the higher Amazon stock's return is. This is called positively correlated. We will cover it in the following tutorials. -

Slope and Intercept

-It's natural that we want to model the relation between these two rates of return. Intuitively we use a straight line to model it, this is called Linear Regression. In order to find the best straight line, it's natural to think that the vertical distances between the points of the data set and the fitted line should be minimized. Those vertical distances are called residual. Our objective is to make the sum of squared residuals as small as possible. This method is called ordinary least square, or OLS method. -We use x and y to represent the two variable, S&P 500 daily returns and AMZN daily returns. The linear relation is: -\[Y = Y = \alpha + \beta*X + \epsilon\] -Where \(\alpha\) is called intercept, \(\beta\) is called slope. -Generally, if the scatter points can be represented by\(\left\{\right (x_1,y_1),(x_2, y_2),(x_3,y_3)...(x_n,y_n) \left\}\right\), then the intercept and slope are given by: -\[\beta = \frac{\sum_{i=1}^{n}(x-\bar{x})(y-\bar{y})}{\sum_{i=1}^{n}(x-\bar{x})^2}\] -\[\alpha = \bar{y} - \hat{\beta}\bar{x}\] -Where \(\bar{x}\) is the mean of X, \(\bar{y}\) is the mean of Y. -In python, we don't need to do the above calculation manually because we have package for it. But it still very important to understand the calculation process of \(\beta\) in order the understand the modern portfolio theory and CAPM, which we will cover in the future. -

Python Implementation

-In python, we have a very power package for mathematical models, which is named 'statsmodels'. -
import statsmodels.formula.api as sm
-model = sm.ols(formula = 'amzn~spy',data = df).fit()
-print model.summary()
-
- -We built a simple linear regression model above by using the ols() function in statsmodels. The 'model' instance has lots of properties. The most commonly used one is parameters, or slope and intercept. We can access to them by: -
print 'pamameters: ',model.params
-[out]: pamameters:  Intercept    0.000012
-                   spy          0.492112
-print 'residual: ', model.resid.tail()
-[out]: residual:  Date
-2016-12-22   -0.003360
-2016-12-23   -0.008219
-2016-12-28    0.000477
-2016-12-29   -0.006303
-2016-12-30   -0.021211
-print 'fitted values: ',model.predict()
-[out]: fitted values:  [-0.00070299 -0.00218348  0.00068734  0.00046907 -0.00277819  0.00103882]
-
-Now let's have a look at our fitted line: -
plt.figure(figsize = (15,10))
-plt.scatter(df.spy,df.amzn)
-plt.xlabel('spx_return')
-plt.ylabel('amzn_return')
-plt.plot(df.spy,model.predict(),color = 'red')
-plt.show()
-
- -The red line is the fitted linear regression straight line. -As we can see there are lot of statistical results in the summary table. Now let's talk about some important statistical parameters. -

Parameter Significance

-From the summary table we can see 'std err'. This means standard errors of the intercept and slope. The null hypothesis here is \(H_0: \beta = 0\), and the alternative hypothesis is \(H_1: \beta \neq 0\). This hypothesis score is calculated by: -\[t = \frac{\beta - 0}{SE}\] -Where SE is given by: -\[SE = \sqrt\frac{\frac{1}{n-2}\sum_{i = 1}^{n}\hat{\epsilon}^2}{\sum_{i = i}^{n}(x_i - \bar{x})^2}\] -The distribution used here is 'Student's t-distribution'. It's different from normal distribution but used in the similar way. The column 't' in this table is the test score, and 'p>|t|' is the p-value. By observing the p-value, we can see that the significance level of spy, or the slope, is very high because the p-value is close to zero. In other words, we have 99.999 confidence to claim that the slope is not 0, and there exists linear relation between X and Y. However, regarding the intercept, the p-value is 0.923, which means we have only 7.7% confidence level that the value of intercept is not 0. We can also see from the plot that the line crosses the origin. -The following 2 columns are the lower band and upper band of the parameters at 95% confidence interval. At 95% confidence level, we can claim that the true value of the parameter is within this range. -

Model Significance

-

R-square

-Sum of Squared Errors, or SSE, is used to measure the difference between the fitted value and the actual value. It's given by: -\[SSE = \sum_{i=1}^{n}(y_i - \hat{y_i})^2 = \sum_{i = 1}^{n}\hat{\epsilon_i}^2\] -If the linear model perfectly fitted the sample, the SSE would be zero. -The reason we use squared error here is that the positive and negative errors would offset each other if we simply summed them up. -Another measurement of the dispersion of the sample is called total sum of squares, or SS.. it's given by: -\[SS = \sum_{i = i}^{n}(y_i - \bar{y}_i)^2\] -If you are familiar with variance, we can see that SS divided by the number of sample n is the sample variance. -From SSE and SS, we can calculate the Coefficient of Determination, or r-square for short. R-square means the proportion of variation that 'explained' by the linear relationship between X and Y, it's calculated by: -\[r^2 =1 = \frac{SSE}{SS} =1 - \frac{\sum_{i=1}^{n}(y_i - \hat{y_i})^2}{\sum_{i = i}^{n}(y_i - \bar{y}_i)^2}\] -Let's assume that the model perfectly fitted the sample, which means all of the sample points lie on the straight line. Then the SSE would become zero, and the r-square would become 1. This means perfect fitness. The higher r-square is, the more parts of variation can be explained by the linear relation, the higher significance level the model is. -Some other parameters, such as F-statistic, AIC and BIC, are related to multiple linear regression, with would be cover in the next chapter. -

Summary

-In this chapter we introduced how to implement simple linear in python, and focused on how to read the summary table. In next chapter we will introduced multiple linear regression, which are commonly used to built models in finance and economics. diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.ipynb b/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.ipynb deleted file mode 100644 index 345940d..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial09 Simple Linear Regression.ipynb +++ /dev/null @@ -1,245 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import quandl\n", - "spy_table = quandl.get('LSE/SPY5')\n", - "amzn_table = quandl.get('WIKI/AMZN')" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "spy = spy_table.loc['2016',['Last Close']]\n", - "amzn = amzn_table.loc['2016',['Close']]\n", - "spy_log = np.log(spy['Last Close']).diff().dropna()\n", - "amzn_log = np.log(amzn.Close).diff().dropna()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
spyamzn
Date
2016-12-22-0.004462-0.005543
2016-12-230.001372-0.007531
2016-12-280.0009280.000946
2016-12-29-0.005671-0.009081
2016-12-300.002086-0.020172
\n", - "
" - ], - "text/plain": [ - " spy amzn\n", - "Date \n", - "2016-12-22 -0.004462 -0.005543\n", - "2016-12-23 0.001372 -0.007531\n", - "2016-12-28 0.000928 0.000946\n", - "2016-12-29 -0.005671 -0.009081\n", - "2016-12-30 0.002086 -0.020172" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = pd.concat([spy_log,amzn_log],axis = 1).dropna()\n", - "df.columns = ['spy','amzn']\n", - "df.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA5cAAAJQCAYAAAAaD5BdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3X+UpNddH+jPnVZbbjlBLdmCWO0fUoIzPnYm0cQd2xst\nbBDgMcfYnpUhtuMDYg/gZRM2wTmZ7OiEIGGcaNjZjVlOONkYSNYmBgS2dhBHZAeZAXaPNjYeMTJj\nAbMWdvyj5QRhaRyw23LPzN0/pmpU01NVXdVvVVdV1/Oc02e6365669ZbVT3v573fe2+ptQYAAACa\n2DPpBgAAADD7hEsAAAAaEy4BAABoTLgEAACgMeESAACAxoRLAAAAGhMuAQAAaEy4BAAAoDHhEgAA\ngMaumnQDpsHznve8etNNN026GQAAABPx8MMP/0mt9YYm+xAuk9x00005efLkpJsBAAAwEaWUTzfd\nh7JYAAAAGhMuAQAAaEy4BAAAoDHhEgAAgMaESwAAABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAa\nEy4BAABoTLgEAACgsYmHy1LKa0spZ0opj5VSDnf5/TeWUn63lHKulPIdm353RynlE62vOzq2v6KU\ncrq1z58spZSdeC4AAADzaqLhspSykOSnknxbkpcleWsp5WWbbvaZJN+T5Oc33ff6JHcleVWSVya5\nq5RyXevX/yrJ9yd5SevrtWN6CgAAAGTyPZevTPJYrfWTtdavJvnFJG/svEGt9T/WWn8vyYVN9z2Q\n5MFa65O11qeSPJjktaWU5yf5mlrrh2utNcn7khwc+zMBAACYY5MOlytJPtvx8+da25rcd6X1fd99\nllLeXko5WUo5+cQTTwzVaAAAAC436XA5MbXW99RaV2utqzfccMOkmwMAADDTJh0u15K8sOPnF7S2\nNbnvWuv77ewTAACAbZh0uPxokpeUUm4upTwryVuS3D/gfY8neU0p5brWRD6vSXK81vr5JP+llPLq\n1iyx353kV8bReAAAAC6aaListZ5L8oO5GBT/IMkv1VofLaW8s5TyhiQppfyNUsrnknxnkn9dSnm0\ndd8nk/xYLgbUjyZ5Z2tbkvzdJD+T5LEkf5Tk3+/g0wIAAJg75eKEqvNtdXW1njx5ctLNAAAAmIhS\nysO11tUm+5h0WSwAAAC7gHAJAABAY8IlAAAAjQmXAAAANCZcAgAA0JhwCQAAQGPCJQAAAI0JlwAA\nADQmXAIAANCYcAkAAEBjwiUAAACNCZcAAAA0JlwCAADQmHAJAABAY8IlAAAAjV016QYADOLYqbUc\nPX4mj59dz43LSzl0YG8O7l+ZdLMAAGgRLoGpd+zUWu6873TWN84nSdbOrufO+04niYAJADAllMUC\nU+/o8TOXgmXb+sb5HD1+ZkItAgBgM+ESmHqPn10fajsAADtPuASm3o3LS0NtBwBg5wmXwNQ7dGBv\nlhYXLtu2tLiQQwf2TqhFAABsZkIfYOq1J+0xWywAwPQSLoGZcHD/ijAJADDFlMUCAADQmHAJAABA\nY8IlAAAAjQmXAAAANCZcAgAA0JhwCQAAQGPCJQAAAI0JlwAAADR21aQbAADMl2On1nL0+Jk8fnY9\nNy4v5dCBvTm4f2XSzQKgIeESANgxx06t5c77Tmd943ySZO3seu6873SSCJgAM05ZLACwY44eP3Mp\nWLatb5zP0eNnJtQiAEZFuAQAdszjZ9eH2g7A7BAuAYAdc+Py0lDbAZgdwiUAsGMOHdibpcWFy7Yt\nLS7k0IG9E2oRAKNiQh8AYMe0J+0xWyzA7iNcAgA76uD+FWESYBdSFgsAAEBjwiUAAACNCZcAAAA0\nJlwCAADQmHAJAABAY8IlAAAAjQmXAAAANCZcAgAA0JhwCQAAQGPCJQAAAI0JlwAAADQmXAIAANCY\ncAkAAEBjwiUAAACNCZcAAAA0JlwCAADQmHAJAABAY8IlAAAAjQmXAAAANCZcAgAA0NjEw2Up5bWl\nlDOllMdKKYe7/P7qUsq9rd9/pJRyU2v720opj3R8XSil3NL63W+19tn+3dfu7LMCAACYLxMNl6WU\nhSQ/leTbkrwsyVtLKS/bdLPvTfJUrfXrk7w7yY8nSa31/bXWW2qttyT5riSfqrU+0nG/t7V/X2v9\n47E/GQAAgDk26Z7LVyZ5rNb6yVrrV5P8YpI3brrNG5O8t/X9B5J8cymlbLrNW1v3BQAAYAImHS5X\nkny24+fPtbZ1vU2t9VySLyZ57qbbvDnJL2za9m9bJbH/tEsYTSnl7aWUk6WUk0888UST5wAAADD3\nJh0uGyulvCrJl2utH+/Y/LZa674k39D6+q7N96u1vqfWulprXb3hhht2qLUAAAC706TD5VqSF3b8\n/ILWtq63KaVcleTaJF/o+P1bsqnXsta61vr3T5P8fC6W3wIAADAmkw6XH03yklLKzaWUZ+ViULx/\n023uT3JH6/vvSHKi1lqTpJSyJ8nfTsd4y1LKVaWU57W+X0zy7Uk+HgAAAMbmqkk+eK31XCnlB5Mc\nT7KQ5N/UWh8tpbwzycla6/1JfjbJz5VSHkvyZC4G0LZvTPLZWusnO7ZdneR4K1guJPlQkp/egacD\nAAAwt0qrE3Cura6u1pMnT066GQAAABNRSnm41rraZB+TLosFAABgFxAuAQAAaEy4BAAAoDHhEgAA\ngMaESwAAABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAaEy4BAABoTLgEAACgMeESAACAxoRLAAAA\nGhMuAQAAaEy4BAAAoDHhEgAAgMaESwAAABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAaEy4BAABo\nTLgEAACgMeESAACAxoRLAAAAGhMuAQAAaEy4BAAAoDHhEgAAgMaESwAAABoTLgEAAGhMuAQAAKAx\n4RIAAIDGhEsAAAAaEy4BAABoTLgEAACgMeESAACAxoRLAAAAGhMuAQAAaEy4BAAAoDHhEgAAgMaE\nSwAAABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAaEy4BAABoTLgEAACgMeESAACAxoRLAAAAGhMu\nAQAAaEy4BAAAoDHhEgAAgMaESwAAABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAaEy4BAABoTLgE\nAACgsYmHy1LKa0spZ0opj5VSDnf5/dWllHtbv/9IKeWm1vabSinrpZRHWl//e8d9XlFKOd26z0+W\nUsrOPSMAAID5M9FwWUpZSPJTSb4tycuSvLWU8rJNN/veJE/VWr8+ybuT/HjH7/6o1npL6+sHOrb/\nqyTfn+Qlra/Xjus5AAAAMPmey1cmeazW+sla61eT/GKSN266zRuTvLf1/QeSfHO/nshSyvOTfE2t\n9cO11prkfUkOjr7pAAAAtE06XK4k+WzHz59rbet6m1rruSRfTPLc1u9uLqWcKqX8dinlGzpu/7kt\n9plSyttLKSdLKSefeOKJ5s8EAABgjk06XDbx+SQvqrXuT/IPk/x8KeVrBr1zrfU9tdbVWuvqDTfc\nMLZGAgAAzINJh8u1JC/s+PkFrW1db1NKuSrJtUm+UGt9utb6hSSptT6c5I+S/OXW7V+wxT4BAAAY\noUmHy48meUkp5eZSyrOSvCXJ/Ztuc3+SO1rff0eSE7XWWkq5oTUhUEopfzEXJ+75ZK3180n+Synl\n1a2xmd+d5Fd24skAAADMq6sm+eC11nOllB9McjzJQpJ/U2t9tJTyziQna633J/nZJD9XSnksyZO5\nGECT5BuTvLOUspHkQpIfqLU+2frd303yfyRZSvLvW18AAACMSbk4oep8W11drSdPnpx0MwAAACai\nlPJwrXW1yT4m2nMJADBqx06t5ejxM3n87HpuXF7KoQN7c3D/FRPHAzBiwiUAsGscO7WWO+87nfWN\n80mStbPrufO+00kiYAKM2aQn9AEAGJmjx89cCpZt6xvnc/T4mQm1CGB+CJcAwK7x+Nn1obYDMDrC\nJQCwa9y4vDTUdgBGR7gEAHaNQwf2Zmlx4bJtS4sLOXRg74RaxCQdO7WWW4+cyM2HH8itR07k2Km1\nSTcJdjUT+gAAu0Z70h6zxWJyJ9h5wiUAsKsc3L8iPNB3cifvDxgPZbEAAOw6JneCnSdcAgCw65jc\nCXaecAkAwK5jcifYecZcAgCw65jcCXaecAkAwK5kcifYWcpiAQAAaEy4BAAAoDHhEgAAgMaESwAA\nABoTLgEAAGhMuAQAAKAx4RIAAIDGhEsAAAAaEy4BAABo7KpJNwAAAIZx7NRajh4/k8fPrufG5aUc\nOrA3B/evTLpZMPeESwAAZsaxU2u5877TWd84nyRZO7ueO+87nSQCJkyYslgAAGbG0eNnLgXLtvWN\n8zl6/MyEWgS0CZcAAMyMx8+uD7Ud2DnCJQAAM+PG5aWhtgM7R7gEAGBmHDqwN0uLC5dtW1pcyKED\neyfUIqDNhD4AAMyM9qQ9u2G2WLPestsIlwAAzJSD+1dmPoSZ9ZbdSFksAADsMLPeshsJlwAAsMPM\nestuJFwCAMAOM+stu5FwCQAAO8yst+xGJvQBAIAdtptmvYU24RIAgC1ZNmP0dsOst9BJuAQAoC/L\nZgCDEC4BALZpXnrz+i2bsRufL7A9wiUAwDbMU2+eZTOAQZgtFgBgG/r15u02ls0ABiFcAgBswzz1\n5lk2AxiEcAkAsA3z1Jt3cP9K7rl9X1aWl1KSrCwv5Z7b9+268l+gGWMuAQC24dCBvZeNuUx2d2+e\nZTOArQiXAADb0A5a8zBbLMAghEsAgG3SmwfwDGMuAQAAaEy4BAAAoDHhEgAAgMaESwAAABoTLgEA\nAGhMuAQAAKAx4RIAAIDGhEsAAAAau2rSDQAAdtaxU2s5evxMHj+7nhuXl3LowN4c3L8y6WYBMOOE\nS2BHOJmF6XDs1FruvO901jfOJ0nWzq7nzvtOX/q9zykA2yVcAmPX72TWiSvsrKPHz1z6LLatb5zP\n3fc/mqfPXfA5BWDbjLkExq7XyezR42cm1CKYX4+fXe+6/ez6hs8pAI3ouQTGrtfJbK/twPjcuLyU\ntSE+ez6nl1PiD9Cbnktg7G5cXhpqOzA+hw7szdLiwmXblhYXct01i11v73P6jHaJ/9rZ9dRcLB1+\nx72P5IePnd7yvgDzYOLhspTy2lLKmVLKY6WUw11+f3Up5d7W7z9SSrmptf1bSykPl1JOt/69reM+\nv9Xa5yOtr6/duWcEbNbrZPbQgb0TahHMr4P7V3LP7fuysryUkmRleSn33L4vd73+5T6nW+hW4l+T\nvP/Dn8mxU2uTaRTAFJloWWwpZSHJTyX51iSfS/LRUsr9tdbf77jZ9yZ5qtb69aWUtyT58SRvTvIn\nSV5fa328lPJXkhxP0lmX8rZa68kdeSJAX+2SMaVkMB0O7l/p+fnzOe2tV4lwzcXj5lgxz5SMk0x+\nzOUrkzxWa/1kkpRSfjHJG5N0hss3Jrm79f0HkvzLUkqptZ7quM2jSZZKKVfXWp8ef7OBYfU7mQWm\ng89pf/3GqxqbyjwzKzxtky6LXUny2Y6fP5fLex8vu02t9VySLyZ57qbbvCnJ724Klv+2VRL7T0sp\nZfMDl1LeXko5WUo5+cQTTzR9HgBMyLFTa7n1yIncfPiB3HrkhPJExubQgb254oSixdhU5plZ4Wmb\ndLhsrJTy8lwslf3vOza/rda6L8k3tL6+a/P9aq3vqbWu1lpXb7jhhp1pLAAj1W2ClTvvOy1gMhYH\n96/kba9+0RUBczeMTXWRhibMCk/bpMPlWpIXdvz8gta2rrcppVyV5NokX2j9/IIk/2eS7661/lH7\nDrXWtda/f5rk53Ox/BaAXcbVcnbauw7uy7vffMsVEyLtdOnfKMOgizQ0ZVZ42iY95vKjSV5SSrk5\nF0PkW5L8nU23uT/JHUn+Q5LvSHKi1lpLKctJHkhyuNb6UPvGrQC6XGv9k1LKYpJvT/Kh8T8VAHaa\nq+VMwqTHpo56fFu/izTGyzGIQwf2XvaeTHZHjz7Dm2jPZWsM5Q/m4kyvf5Dkl2qtj5ZS3llKeUPr\nZj+b5LmllMeS/MMk7eVKfjDJ1yf5kU1Ljlyd5Hgp5feSPJKLofWnd+5ZAbBTXC1nHo26x95FGprq\ntcSRixPzZ9I9l6m1/lqSX9u07Uc6vv9Kku/scr93JXlXj92+YpRtBGA6uVren6UBdqdRh8Fes+C6\nSMMwJt2jz3SY9JhLANg2V8t7M45u9xp1j/2hA3uztLhw2TYXaYDtmHjPJQA04Wp5d8bR7V6j7rFv\nvx/0cgNNCZcAsAvNwji6Ycp2lfg+Yxxh0EUaYBSESwDYhaZ9HN0wM56OenbU3UAYBKaRMZcAsAtN\n+zi6YWY8tZ4pwGzQcwkAu9C0j6Mbpmx3Fkp8ARAuAWDXmubSyWHKdqe9xBeAi5TFAkzQsVNrufXI\nidx8+IHceuSEZSKYG8OU7U57ie+88vcL2EzPJcCEmKSEabUTM7MOU7Y77SW+82ha/36ZVbg7x4Wd\nUmqtk27DxK2urtaTJ09OuhnAnLn1yImupX4ry0t56PBtE2gRXBkakou9hPfcvs/J6ADm5SR+Gv9+\nee9257gwqFLKw7XW1Sb7UBYLMCEmKWEamZl1+9on8Wtn11PzTG/ebiwXnca/X9673Tku7CThEmBC\nek1GYpISJmkaQ8OsmKeT+Gn8++W9253jwk4SLgEmZJYnKTGRx87ayeM9jaFhVszTSfw0/v3y3u3O\ncWEnCZcAE3Jw/0ruuX1fVpaXUnJxrNIsjIGZp9K/abDTx3saQ8OsWL5mcajts2wa/35573bnuLCT\nzBYLMEHTvA5hL/1K/2btucyCnT7eZmbdvl5zJO7WuROn7e+X9253jgs7SbgEYCjzVPo3DSZxvKct\nNMyKL65vDLWd0fPe7c5xYacIlwAM5cblpa5LEBi/Mx6O92iNc6kQrxUw7wYac1lK+ZullL9TSvnu\n9te4GwbAdDJ+Z2fttuM9ycmgxj1+dbe9VgDD2rLnspTyc0n+UpJHkrQHfdQk7xtjuwCYUsbv7Kzd\ndLw3L+beDndJxvZ8Onsq95SS85sGQI5y/Opueq0AtqPULUaZl1L+IMnL6lY3nGGrq6v15MmTk24G\nAJuMs4SRndN+HbuVjCYXZxp96PBtY3nczjDbS0nyqSOvG/njA8ySUsrDtdbVJvsYZMzlx5P8hSSf\nb/JAADCMSfRyMXqDBLxeobOpbjPtdmNMJMBoDBIun5fk90spv5Pk6fbGWusbxtYqAOaeJU92h0EC\nXsnFEDrq13WQGXWNidyaCgJgUIOEy7vH3QgA2MySJ7vDIK9XTcZy0aDX7K0LpeRCrYLSAFQQAMPo\nGy5LKQtJ7q61ftMOtQcAkljWYbfo9Tpu1uSiQa+etUMH9l5Rkru0uJB7bt8nGA1IBQEwjL7hstZ6\nvpRyoZRyba31izvVKADoFQyUME6/zrC3fM1iFveUbFzoPy/gdi8aDNKz1hk8v+mlN+To8TN5x72P\n6LkcgAoCYBiDlMX+WZLTpZQHk3ypvbHW+vfH1ioA5p5lHWbT5rD31Jc3srhQsry0mC+ub2T5msX8\n2VfOXRY2m1w02Kpnrf3VrW1KPLc2rgoC4zhhdxokXN7X+gKAHdUZDJgN3cLexvma51x9VR656zVJ\nLgaLu+9/NGfXN5JcDIN33/9oklwWBNvLlyy01qdc6RJChulZU+I5vHFUEAj5sHttGS5rre/diYYA\nALNv0LD3pa+eu+zns+sbOfTLH8vJTz+ZB37v83nqyxuXfne+tdR2txAyTM/asCWeetfGU0Eg5MPu\ntWW4LKV8KhcncrtMrfUvjqVFAMBQpikEDRL2jh4/k43zV47B3LhQ8/4Pf+bKk44Om0PIMD1rwwRR\nvWvPGHUFgXGcsHvtGeA2q0n+RuvrG5L8ZJJ/N85GAQCDaYegtbPrqXkmBB07tTaR9hw6sDdLiwuX\nbdsc9vqFiP7T/lx5/4P7V3LP7fuysryUkmRleannbLCDtK2tX+9aU8dOreXWIydy8+EHcuuRExN7\nrSal13hNM0HD7BukLPYLmzb9RCnl4SQ/Mp4mAQCDGnWJYZNe0PZ91zfO9x0nOejyJL1sDiGD9qwN\nU+I5rt61UfWITlNv9bDMBM0ozfJnYTcapCz2r3f8uCcXezIHmQgIABizUYagJsFn833P13opMGy+\n76EDe3PoAx/rWhq7laYhZNAgOq5ZUkdxMWDWS3bNBM2ozPpnYTcaJCT+rx3fn0vyqSR/ezzNAQCG\nMcoQ1CT4DHPf9s8/+quPXpq4Z3lpMd/+156fDz68dsV+2hZKyZtesTMzCI+rd20UFwN2w4Q4ZoJm\nFHbDZ2G3GSRcfm+t9ZOdG0opN4+pPQDAEEYZgpoEn2Hv2ytcrL74+ks9WtcuLeZLXz13qYfzfK35\n4MNrWX3x9UOfOA5bOjeu3rVRXAyYpQlxlCwyTrP0WZgXg4TLDyT56122vWL0zQEAhjHKEDTsbKqd\nj7l8zeJly4f0uu9WYaMzdN565MSltTDbttMrsd3SuXH0ro3iYsC4SnZHTcki4zYrn4V50jNcllJe\nmuTlSa4tpdze8auvSfLscTcMABjMqELQoMGnW2hY3FOyuFAuG0e5+b7Dho1R9UpMU+ncKC4GzMqE\nONN03NmdZuWzME/69VzuTfLtSZaTvL5j+58m+f5xNgoA2HmDBp9uoWHjQs3y0mKec/VVPe87bNgY\nVa/EqELqqEo8m14MmJUJcZQsMm6z8lmYJz3DZa31V5L8Sinlv6q1/ocdbBMAMCHt4NMOUu+495Ec\nPX7mshO2XuHg7PpGnnN17+vWw4aNJr0SnUGwlz2l5NiptYFORKetxHMWJsSZdMmi8Z7zYRY+C/Nk\nzwC3+UIp5TdKKR9PklLKXy2l/PCY2wUATEg7SK2dXU/NM0Hq2Km1JL3DQWndttt9+t2v1/aD+1dy\nz+37srK8lJJkZXkp99y+L8nF8Zg3H34gtx45cdljdGt/rwVPztd6RRt76dfrOgrHTq31fU6z6NCB\nvVlaXLhs206VLG71HgbGY5Bw+dNJ7kyykSS11t9L8pZxNgoAmJytglS30FByZYjbHL62EzYO7l/J\nQ4dvy6eOvC4PHb4tSbYMDd3a30u7jVuFu3GWeA4ThGYphPa6OLATvUzjvhgAdDfIbLHX1Fp/p5TS\nue3cmNoDAEzYVkGq2zinbuWPm/c1ivFRg4zbHDbwtcNcv5LXcZZ4DjoWddpKcwcxqZJF4z1hMgYJ\nl39SSvlLaV2QLKV8R5LPj7VVANCFMVSj0+9YDhKkNoeGW370169YNiRJrl1avOznXmFj0Ne2VzhY\nO7t+afxkv7DbTUm2DHfjnJVy0CC0VQj1+XjGpMd7wrwapCz27yX510leWkpZS/JDSX5grK0CgE2M\noRqdrY7ldspXLy9w2nr7MO3p1C8ctO/Trf29LO4pPcdkbu51HVeJ56BjUfuFUJ+Py01yvOc4zFI5\nNPOtb7gspexJslpr/ZYkNyR5aa31v661fnpHWgcALcZQjc5Wx3I7Qersl6/stey3fZj2dOoXHDt7\n8Trbv7y0mOuuWUxJct01i1leWrz0vP7cs3sXcW0Od5vHf46qV3DQINQvhPp8XK7be+DZi3vyjnsf\nmZlw1g6UNx1+IO+49xEXDpgJfctia60XSin/OMkv1Vq/tENtAoArGEM1OoMcy2HHyjUpQxzmtW23\n6YfufaTvfQZt/82HH+j5u3H3cnWWsS5fs5irr9qTL65v9Cxp7Vea+44tjsc86lxWZ9bGqm5uc6/J\nsrbbfiXUjMsgZbEfKqX8o1LKC0sp17e/xt4yAOgw7DIW9NbrmNVk2706TcoQt7NEycqI3g+9bn/d\nNYtjPdneXMb61Jc38vS5C3n3m2/p2Svar0fZ56O3WezVHWTG4+1eOFBCzTgNEi7fnIvjLv/vJA+3\nvk6Os1EAsNluG0M1Sf1KS7d7otkv+Gw1Xmw7r+2o3g/f9NIbum5/3V99/lD7GdZ2A0+v0lyfj95m\nsephkLZt98LBLIZtZseWs8XWWm/u9/tSyrfWWh8cXZMA4EqDLGOh1GswnceyWynrdkvuupWiDlKS\nuJ0lSkaxrEmS/OYfPjHU9lEZdeAZ1fHYjWZx5titZjxucuFgFsM2s2OQpUi28uNJhEsAxq7fOLpZ\nHFc1Se1jefPhB7rOljqqE81B13DcznqIW91nkIsNvU7gh1nKZDvGEXgmtabktBvnMjLj0q3NJRdL\n11caXjiYxbDN7BhFuBxgknEAGK9BQwwXtYNXr2U4RnWiOalekkEvNiyUkvP1yqOwMMgaKkO2p91T\n3H7Mdlhom/bAM6tmsVd3nG2exbDN7BhFuOz1/xIA7Jit1gCcpRPLcdscvDYb5YnmpHpJBr3Y0C1Y\n9tu+HZuPd3vfnY+wUEre9Ao9j+Myi72642rzLIZtZscowiUATNy1S4s5u37lmopLi3vmsly2X6Du\nNxPl8tJiSknece8jOXr8TOOTzkn1kgzaY7rSI/z2mo12OwaZ+fN8rfngw2tZffH1u/p9yXSYxbDN\nbBhkttit/McR7AMAGulVxbh+7sLczYzYb6mBY6fW+o4nfPrchTz15Y2RLVHQbxbZcRp0aY6dmGV1\n0BLg7bwvt5qJF2AnDdRzWUr5m0lu6rx9rfV9rX9vH0vLAGAIZ798Za9lkvSqbtzNMyP2Kgm9+/5H\n8/S5Cz3vt1DKyMatTqIUufMxl69ZzOKeko0Lz7wBuoXGnSgR3Grmz07DTCQ0yLhSJeHATtoyXJZS\nfi7JX0rySJL2/zg1yfvG2C4AWpwcDqbXCXyvCVumZWbEUb2+nfvpNVqwW9lw29LiQs/SzWGD+CRm\n7t38mE99eSOLCyXLS4v54vpG32M7TIngdl6vbqXBvQwzkdBW40q38zr4e7M7eB2ZlEF6LleTvKzW\nEY5sB2Ag07a8xjSfsPQa2/emV6zkgw+vTeXMiKN6fbeaoGcQ99y+r+e6l72CeK/3wyhn7h30Pdft\nMTfO1zzn6qvyyF2vGeox+7VlO6/X5nVFe13wSIabSGircaX9Xof27zuPa5Kp+nvD9kzb/xvMl0HC\n5ceT/IUjmc2TAAAgAElEQVQknx9zWwDYZJqW15j2E5Z+5Y2rL75+KkPxqF7fQSaM6WdleenS4w06\n+c4PHzud93/4M5d6STvfD6NafmSY99xOLHnS5PXa3Dt665ETjScS2mom3l7PvX0cNx/Xq6/aMzV/\nb9i+afp/g/kzSLh8XpLfL6X8TpKn2xtrrW8YW6sASDK5NQK7mYUTll7ljaOcGXGUvbejen2bvB9K\ncik8Djr+8NiptcuCZVv7/dAr9Fy7tJhbj5zouu9ux3WY91yvx9xTSo6dWhvJ6z/Kz+MoZtHdah/9\nSsW7HddRlUUzWdP0/wbzZ5Bwefe4GwFAd5NaI7AbJyzD995uFURH9foOM2HMZpsD4iBB/OjxMz3H\ndT5+dj3vfvMtV4SexT0lX/rquUvjPjuPXZIc+sDHsnG+Xvpd58/dHmOzXuMaz9c6sh72Ubxene+J\na5cW8+zFPTn75f5jQnvZ6mJAr/A5bC/3tIxPZjDT9P8G82eQpUi+Mckna62/3f5KMrKBKqWU15ZS\nzpRSHiulHO7y+6tLKfe2fv+RUspNHb+7s7X9TCnlwKD7BJgVO7FMwqAGXdphN9tqDFunfsuBtI3q\n9e22n2G8495H8sPHTm99w5Z+FxRubJXYbl5+5M89+6orwmL72P3orz56xe82zteey8t0e8+1H7Pb\nhDjtmXKb6nacFxdKvvT0uYGWAtn8nji7vpGvbFzIu998Sx46fNu2wu/B/St56PBt+dSR112xj17L\nwPQqvb3umsVG78dRLItiaZXmpun/DebPID2X/2OSt5RSfrDW+putbT+Q5D1NH7yUspDkp5J8a5LP\nJfloKeX+Wuvvd9zse5M8VWv9+lLKW5L8eJI3l1JeluQtSV6e5MYkHyql/OXWfbbaJ8BM2IllEgY1\nijK+WTdM7+0gJZ2jen037+fapcWUkks9Yl96+lzfmWJrkvd/+DNZffH1Az12r56RzSW2nfu6+fAD\nXffVb3bbWq/saev3nju4fyXvuPeRrr87u77RuDx283FevmYxf/aV7r2xg0461KS0fJAS7V490d0+\ny3e9/uWXPb9h3o+jGJM97eO6Z8U0/b/B/BkkXK4leWOSXy6lfKDWejQX//8YhVcmeazW+skkKaX8\nYuuxOoPgG/NMae4HkvzLUkppbf/FWuvTST5VSnmstb8MsE+AmTHK8YJN25HM9wnLMOVmgwbRbq9v\nt9CQ9D/2/d4ng8wmW1v7by9h0e+xul1oKEne9uoX9WxDvzGR/WZIbc9iO+h7rl+J8CjGB3ce51uP\nnMhTm9ZX7RcWR1la3iSIbfVZ3s4xGkVwnoVx3bNiWv7fYP4MEi5Ta/1MKeW/SfKvSim/nGRUNVAr\nST7b8fPnkryq121qredKKV9M8tzW9g9vum/7U7TVPlNKeXuStyfJi170ou0/A4A5Mu8nLMP03vYK\nOcvXLPZ9jG6h4dAHPpbUZOPCM2MSh+nR2bwURi+Pn10fKLRs50JDvzGRvSwvLQ79njt0YG9+qEfv\n5ajHBw8bFkc5Fq5pEBv1Z3kUwdm4bph9g4y5PJkktdav1Fr/uyS/leRZ42zUTqi1vqfWulprXb3h\nhhsm3RxgzhlnNBt6jWHrdpJ+6MDeLC5cWejzZ1851/f17bVeYztYtvUa69mv7Q8dvi0/8eZbepYf\n3bi8NPC40n5j/Xo9fq8xkd0s7im5+w0vH+i2yTOfoXfc+8hQYzWbGHYc8nbGwvX62zBtQWwUY7KN\n64bZt2W4rLV+/6aff6rW+hdH9PhrSV7Y8fMLWtu63qaUclWSa5N8oc99B9knwNQYZOIXJqPbif2g\noerg/pU851lXFghtXKh9Q+Eoenr6Obh/JW979YuuCJjtkDPO0HJw/0ou9Omp7AztR7/zrw09Vq/9\nGer2EOMYHzxsWBzm4kTS/29Drx7wSQWxUUwiYyIamH1blsWWUr49yY8leXHr9iVJrbV+zQge/6NJ\nXlJKuTkXA+BbkvydTbe5P8kdSf5Dku9IcqLWWksp9yf5+VLKv8jFCX1ekuR3Wu3bap8AU8M4o+k0\nislFvthjEp2tZlsddFmR7QaJdx3cl9UXX9+1rPVHf/XRK8YRJluX8w6q1/NbWV7KQ4dv29Y+u32G\nkovrOV6odWzjg7dTHjxMOWqvvw133/9ovvT0uStuv7hQJhbERjEm27humH2DjLn8iSS3Jzlda5/L\njdvQGkP5g0mOJ1lI8m9qrY+WUt6Z5GSt9f4kP5vk51oT9jyZi2Exrdv9Ui5O1HMuyd+rtZ5Pkm77\nHGW7AUZp2srbuGgUoX87Y+y6jU1cXCiXjblMmvfo9Ao5vf6nH+YMoN+EQOOYdbjXZ+VCrfnUkddt\ne7+DGOc45F7Pq9fMv8951lUTDWKjOBbzPq4bZt0g4fKzST4+6mDZVmv9tSS/tmnbj3R8/5Uk39nj\nvv8syT8bZJ8A08qC19NpFKF/O0GqV+9Nt23jOAnv1dvaa/tmW/X4jqN3ard+hobpxU4Gf40AxmWQ\ncPmPk/xaKeW3kzzd3lhr/RdjaxXAHLF+5HQaRWDZbpDq1XszTADbajmRXr/f6nlvtd9B1/ccZTDe\nrZ+hXs/r2Yt7upYuz3qYBmbfIOHynyX5syTPzi6YJRZg2hhnNJ1GFVjGVebXGfKuXVpMKcnZL2/k\nxuWlfNNLb8gHH17r2Xt47NRaDv3yxy5b2uTQL38sSf/nPcg41EmUeQ/yGdoqFE+jfr3YuzFMA7Ov\nbFXtWkr5eK31r+xQeyZidXW1njx5ctLNAGDKTGsg2RzyNitJuv3v3p4055Yf/fWu4/aWlxbzyF2v\n6fm8bz1yYsvJeAa5zU7rdryWFhf6ztQ67ab1vTkKTZ7bbj4uMG6llIdrratN9jFIz+WvlVJeU2v9\n9SYPBACzZhS9juM42e01O2pbr8vG7d7DXhPCtLf3et79eiXbz3Pt7PoV4XYcvWrDHNfdOCPzbp34\npskszaOY4RloZpBw+T8k+UellKeTbGS0S5GwC7hKCMyTYf7mDXKyu52/odstMW06Jq/XeMxrlxYv\ne56dwXJlDP8vDBsizMg8O5pcCNiNFxFg1mwZLmutf76Ucn0uriP57PE3iVniKiEwT4b9m7fVye52\n/4Zeu7TYs/exrVfv4bFTaz3vc90Wa1ne9Nzu4XJ943yePnehaxsGDZbj7IncrbPJTotRXmRuciHA\nRQSYvC3DZSnl+5L8gyQvSPJIklcn+X+TfPN4m8YscJUQ2GmTrJYY9m/eVie7vfZ39/2P9u0N/dJX\nz/Vt59LiQt70ipX85h8+0XXcZC93vf7lfff74U8+1XV7t2CZXAy33Z7L5tew1wREJz/9ZNfnMGyI\nGHRyJpU4wxv1ReYmFwJcRIDJG6Qs9h8k+RtJPlxr/aZSykuT/PPxNotZ4SohsJMmXS3Ra83BXn/z\ntjrZ7XW/s+sbOXZqrWdv6Mb5K0dV7ilJrdkyFPX7+7zVMTy/jSWvNz+Xbq/h+z/8mSvGia5vnL9s\ne+drPWyIGHQ2WZU4wxv1ReYmszTv1iVpYJbsGeA2X6m1fiVJSilX11r/MIlPKUl6/0fuKiEwDv1O\nZMft2Km1lB6/6/U379CBvVlaXLhsW+fJbr+/lT/6q4923d4rHNaafOrI6/LQ4dv6ntT3esyVAf5u\nL5TuR6C0vnrpfH26vYa9Imu3wHn0+Jktj2s3B/ev5KHDt/U8RpN8b82yUV9kPrh/Jffcvi8ry0sp\nufi+HHRW3yb3BUZjkJ7Lz5VSlpMcS/JgKeWpJJ8eb7OYFa4SAjtpktUSR4+f6RqC2uMKu9mqx+zQ\ngb35oXsf6Xrfp77cfUxl09K/Jn+33/qqF+bfffgzV2x/26tflCRdf5dc/vo0fa0eP7s+lrVhVeJs\nzzhKUZvMhLtbZ9GFWTHIhD7/bevbu0spv5nk2iT/11hbxcyw+Duwk8Y9pqrfmLuePYbpXzbZ72T3\n4P6VnuGyV9uaLvXR6+92cnGNyn5/y991cF+S5Bc+8tmcrzULpeStr3rhpe0P/N7nu4bizten12u4\n+Tn1Wquzva9Rhwjj9bbHRWag0yA9l5fUWn97XA1hdrlKCOyUcZ7IbjXmrlf4GKSctJ/lHjO/Li89\nM3Pr5rbVPBO+trPUx+a/28OMN3zXwX2XwmT7vu1QunzNYhb3lGxceCYWbn59er2Gmycg2jzJT7d9\njdK43lvHTq3l7vsfvfQaX3fNYu56/ct3zf+bLjIDnYYKlwAwSeM8kd1qYpJxhY+73/DyHPrlj10W\nyBb3lNz9hmdmbu01TnFleSkPHb6t7/4HmQF1u5OybA6l7V7Laxb3ZH3jQtfHG/Y17OwlfdMrxncx\nc1Tvrc7jfe3SYv7LVzbS8dLmqS9v5NAHPnbZYw6zz2kMby4yA23CJQAzZVwnsluNuRtXsB1kv9sd\nDzhoj+R2998tlCbJ+saFvPvNt/QtB97quB07tZYPPrx2aYba87Xmgw+vZfXF12+5tMl2X5em763N\nx7vXWqQb5+vAs6maxRaYJcIlAGMx7b0tmw0y5m5cwXar/W53POCgPZLb3X+/cahN1zsetO3TFL56\nhe1uBp0oyHrSwCwZZCkSABhK+4R/7ex6ap454T92am3STetpO8tb7JTttm3QHsmt9t8eV3nz4Qdy\n65ETl17HfuGz6SyrvdYU3bx9mpYQGeY5DzpRkFlsgVmi5xKAkZvF3pamZa+j6qntt59h9z9Ij2T7\n8dY3zmehlJyv9bJJgvr1DB46sDfvuPeRvrO6ble7Ld22d5qm8NXreG+2uFAGvmhhFltglgiXAIzc\n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\nJzno/bYAAAAASUVORK5CYII=\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "import matplotlib.pyplot as plt\n", - "plt.figure(figsize = (15,10))\n", - "plt.scatter(df.spy,df.amzn)\n", - "plt.xlabel('spx_return')\n", - "plt.ylabel('amzn_return')\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: amzn R-squared: 0.044\n", - "Model: OLS Adj. R-squared: 0.040\n", - "Method: Least Squares F-statistic: 10.63\n", - "Date: Mon, 31 Jul 2017 Prob (F-statistic): 0.00128\n", - "Time: 11:00:50 Log-Likelihood: 608.99\n", - "No. Observations: 235 AIC: -1214.\n", - "Df Residuals: 233 BIC: -1207.\n", - "Df Model: 1 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 1.234e-05 0.001 0.010 0.992 -0.002 0.002\n", - "spy 0.4921 0.151 3.261 0.001 0.195 0.789\n", - "==============================================================================\n", - "Omnibus: 51.597 Durbin-Watson: 2.255\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 570.651\n", - "Skew: 0.405 Prob(JB): 1.22e-124\n", - "Kurtosis: 10.591 Cond. No. 127.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "import statsmodels.formula.api as sm\n", - "model = sm.ols(formula = 'amzn~spy',data = df).fit()\n", - "print model.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pamameters: Intercept 0.000012\n", - "spy 0.492112\n", - "dtype: float64\n", - "residual: Date\n", - "2016-12-22 -0.003360\n", - "2016-12-23 -0.008219\n", - "2016-12-28 0.000477\n", - "2016-12-29 -0.006303\n", - "2016-12-30 -0.021211\n", - "dtype: float64\n", - "fitted values: [-0.00070299 -0.00218348 0.00068734 0.00046907 -0.00277819 0.00103882]\n" - ] - } - ], - "source": [ - "print 'pamameters: ',model.params\n", - "print 'residual: ', model.resid.tail()\n", - "print 'fitted values: ',model.predict()[-6:]" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA5cAAAJQCAYAAAAaD5BdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3X+cHHWd7/v3J5MGO6xmQCOSJkD4NfwaTGD4EfPQXVEJ\nHhFmgwrKUXYPu9y9R49HvHf2JvfsLizL3sSTXXX3rA/PQd1df6EgcMZo2J1Foz7OcgCZOMEQIRJA\nSDroRpJBIEOYH9/7R3fPdPdUdVd3VXVVd7+ej8c8kqnuqv529Y+pd30/32+Zc04AAAAAAISxIOkG\nAAAAAADaH+ESAAAAABAa4RIAAAAAEBrhEgAAAAAQGuESAAAAABAa4RIAAAAAEBrhEgAAAAAQGuES\nAAAAABAa4RIAAAAAENrCpBuQBm94wxvcSSedlHQzAAAAACAR27Zt+7VzbkmYbRAuJZ100kkaHR1N\nuhkAAAAAkAgzeybsNiiLBQAAAACERrgEAAAAAIRGuAQAAAAAhEa4BAAAAACERrgEAAAAAIRGuAQA\nAAAAhEa4BAAAAACERrgEAAAAAIRGuAQAAAAAhEa4BAAAAACERrgEAAAAAISWeLg0s8vMbJeZ7Taz\ndR63v83MfmJmU2b2vqrbrjOzJ4o/15UtP9/MdhS3+bdmZq14LgAAAADQrRINl2bWI+lzkt4t6SxJ\nHzSzs6ru9qyk35N0e9W6x0i6SdJFki6UdJOZHV28+fOS/lDSacWfy2J6CgAAAAAAJd9zeaGk3c65\np5xzr0r6pqQry+/gnPuFc+6nkmaq1l0j6T7n3AHn3EFJ90m6zMyOk/Q659yDzjkn6SuSBmN/JgAA\nAADQxZIOlzlJe8p+31tcFmbdXPH/NbdpZjeY2aiZje7fv7+hRgMAAAAAKiUdLhPjnLvNOTfgnBtY\nsmRJ0s0BAAAAgLaWdLjMS1pW9vvxxWVh1s0X/9/MNgEAAAAATUg6XD4s6TQzW25mR0i6RtLmgOuO\nSLrUzI4uTuRzqaQR59xzkn5jZhcXZ4n9iKRvx9F4AAAAAEBBouHSOTcl6WMqBMXHJN3pnNtpZreY\n2RWSZGYXmNleSe+X9D/MbGdx3QOS/kKFgPqwpFuKyyTpP0r6oqTdkp6U9E8tfFoAAAAA0HWsMKFq\ndxsYGHCjo6NJNwMAAAAAEmFm25xzA2G2kXRZLAAAAACgAxAuAQAAAAChES4BAAAAAKERLgEAAAAA\noREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAACh\nES4BAAAAAKERLgEAAAAAoREuAQAAAAChES4BAAAAAKEtTLoBABDE8Fhem0Z2ad/4hJb2ZjW0pk+D\nK3NJNwsAAABFhEsAqTc8ltf6e3ZoYnJakpQfn9D6e3ZIEgETAAAgJSiLBZB6m0Z2zQbLkonJaW0a\n2ZVQiwAAAFCNcAkg9faNTzS0HAAAAK1HuASQekt7sw0tBwAAQOsRLgGk3tCaPmUzPRXLspkeDa3p\nS6hFAAAAqMaEPgBSrzRpD7PFAgAApBfhEkBbGFyZI0wCAACkGGWxAAAAAIDQCJcAAAAAgNAIlwAA\nAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAWJt0AAADQXYbH8to0\nskv7xie0tDeroTV9GlyZS7pZAICQCJcAAKBlhsfyWn/PDk1MTkuS8uMTWn/PDkkiYAJAm6MsFgAA\ntMymkV2zwbJkYnJam0Z2JdQiAEBUCJcAAKBl9o1PNLQcANA+CJcAAKBllvZmG1oOAGgfhEsAANAy\nQ2v6lM30VCzLZno0tKYvoRYBAKLChD4AAKBlSpP2MFssAHQewiUAAGipwZU5wiQAdCDKYgEAAAAA\noREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAACh\nES4BAAAAAKERLgEAAAAAoREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAAChES4BAAAAAKER\nLgEAAAAAoREuAQAAAAChES4BAAAAAKERLgEAAAAAoREuAQAAAAChJR4uzewyM9tlZrvNbJ3H7Uea\n2R3F2x8ys5OKy681s+1lPzNmtqJ42w+L2yzd9sbWPisAAAAA6C6Jhksz65H0OUnvlnSWpA+a2VlV\nd7te0kHn3KmSPiPpU5LknPu6c26Fc26FpA9Leto5t71svWtLtzvn/i32JwMAAAAAXSzpnssLJe12\nzj3lnHtV0jclXVl1nyslfbn4/7skvcPMrOo+HyyuCwAAAABIQNLhMidpT9nve4vLPO/jnJuS9IKk\n11fd52pJ36ha9g/Fktg/9QijMrMbzGzUzEb3798f5jkAAAAAQNdLOlyGZmYXSTrknHu0bPG1zrl+\nSW8t/ny4ej3n3G3OuQHn3MCSJUta1FoAAAAA6ExJh8u8pGVlvx9fXOZ5HzNbKGmxpOfLbr9GVb2W\nzrl88d8XJd2uQvktAAAAACAmSYfLhyWdZmbLzewIFYLi5qr7bJZ0XfH/75O01TnnJMnMFkj6gMrG\nW5rZQjN7Q/H/GUmXS3pUAAAAAIDYLEzywZ1zU2b2MUkjknok/b1zbqeZ3SJp1Dm3WdKXJH3VzHZL\nOqBCAC15m6Q9zrmnypYdKWmkGCx7JH1P0hda8HQAAAAAoGtZsROwqw0MDLjR0dGkmwEAAAAAiTCz\nbc65gTDbSLosFgAAAADQAQiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAI\nlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiX\nAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcA\nAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAA\nAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAA\nAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAA\ngNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA\n0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQ\nCJcAAAAAgNAIlwAAAACA0AiXAAAAAIDQEg+XZnaZme0ys91mts7j9iPN7I7i7Q+Z2UnF5SeZ2YSZ\nbS/+/Peydc43sx3Fdf7WzKx1zwgAAAAAuk+i4dLMeiR9TtK7JZ0l6YNmdlbV3a6XdNA5d6qkz0j6\nVNltTzrnVhR//qhs+ecl/aGk04o/l8X1HAAAAAAAyfdcXihpt3PuKefcq5K+KenKqvtcKenLxf/f\nJekdtXoizew4Sa9zzj3onHOSviJpMPqmAwAAAABKkg6XOUl7yn7fW1zmeR/n3JSkFyS9vnjbcjMb\nM7Mfmdlby+6/t842ZWY3mNmomY3u378//DMBAAAAgC6WdLgM4zlJJzjnVkr6pKTbzex1QVd2zt3m\nnBtwzg0sWbIktkYCAAAAQDdIOlzmJS0r+/344jLP+5jZQkmLJT3vnDvsnHtekpxz2yQ9Ken04v2P\nr7NNAAAAAECEkg6XD0s6zcyWm9kRkq6RtLnqPpslXVf8//skbXXOOTNbUpwQSGZ2sgoT9zzlnHtO\n0m/M7OLi2MyPSPp2K54MAAAAAHSrhUk+uHNuysw+JmlEUo+kv3fO7TSzWySNOuc2S/qSpK+a2W5J\nB1QIoJL0Nkm3mNmkpBlJf+ScO1C87T9K+kdJWUn/VPwBAAAAAMTEChOqdreBgQE3OjqadDMAAAAA\nIBFmts05NxBmG4n2XAIAAERteCyvTSO7tG98Qkt7sxpa06fBlfMmjgcARIxwCQAAOsbwWF7r79mh\niclpSVJ+fELr79khSQRMAIhZ0hP6AAAARGbTyK7ZYFkyMTmtTSO7EmoRAHQPwiUAAOgY+8YnGloO\nAIgO4RIAAHSMpb3ZhpYDAKJDuAQAAB1jaE2fspmeimXZTI+G1vQl1CIkaXgsr9Ubt2r5ui1avXGr\nhsfySTcJ6GhM6AMAADpGadIeZosFkzsBrUe4BAAAHWVwZY7wgJqTO/H+AOJBWSwAAAA6DpM7Aa1H\nuAQAAEDHYXInoPUIlwAAAOg4TO4EtB5jLgEAANBxmNwJaD3CJQAAADoSkzsBrUVZLAAAAAAgNMIl\nAAAAACA0wiUAAAAAIDTCJQAAAAAgNMIlAAAAACA0wiUAAAAAIDTCJQAAAAAgNMIlAAAAACA0wiUA\nAAAAILSFSTcAAAAAaMTwWF6bRnZp3/iElvZmNbSmT4Mrc0k3C+h6hEsAAAC0jeGxvNbfs0MTk9OS\npPz4hNbfs0OSCJhAwiiLBQAAQNvYNLJrNliWTExOa9PIroRaBKCEcAkAAIC2sW98oqHlAFqHcAkA\nAIC2sbQ329ByAK1DuAQAAEDbGFrTp2ymp2JZNtOjoTV9CbUIQAkT+gAAAKBtlCbt6YTZYpn1Fp2G\ncAkAAIC2Mrgy1/YhjFlv0YkoiwUAAABajFlv0YkIlwAAAECLMestOhHhEgAAAGgxZr1FJyJcAgAA\nAC3GrLfoREzoAwAAALRYJ816C5QQLgEAAFAXl82IXifMeguUI1wCAACgJi6bASAIwiUAAECTuqU3\nr9ZlMzrx+QJoDuESAACgCd3Um8dlMwAEwWyxAAAATajVm9dpuGwGgCAIlwAAAE3opt48LpsBIAjC\nJQAAQBO6qTdvcGVOG9b2K9eblUnK9Wa1YW1/x5X/AgiHMZcAAABNGFrTVzHmUurs3jwumwGgHsIl\nAABAE0pBqxtmiwWAIAiXAAAATaI3DwDmMOYSAAAAABAa4RIAAAAAEBrhEgAAAAAQGuESAAAAABAa\n4RIAAAAAEBrhEgAAAAAQGuESAAAAABAa4RIAAAAAENrCpBsAAABaa3gsr00ju7RvfEJLe7MaWtOn\nwZW5pJsFAGhzhEsALcHBLJAOw2N5rb9nhyYmpyVJ+fEJrb9nx+ztfE4BAM0iXAKIXa2DWQ5cgdba\nNLJr9rNYMjE5rZs379ThqRk+pwCApjHmEkDs/A5mN43sSqhFQPfaNz7huXx8YpLPKQAgFHouAcTO\n72DWbzmA+CztzSrfwGePz2klSvwBwB89lwBit7Q329ByAPEZWtOnbKanYlk206OjF2U878/ndE6p\nxD8/PiGnQunwjXds158M76i7LgB0g8TDpZldZma7zGy3ma3zuP1IM7ujePtDZnZScfm7zGybme0o\n/ntJ2To/LG5ze/Hnja17RgCq+R3MDq3pS6hFQPcaXJnThrX9yvVmZZJyvVltWNuvm957Np/TOrxK\n/J2krz/4rIbH8sk0CgBSJNGyWDPrkfQ5Se+StFfSw2a22Tn3s7K7XS/poHPuVDO7RtKnJF0t6deS\n3uuc22dm50gakVRel3Ktc260JU8EQE2lkjFKyYB0GFyZ8/388Tn151ci7FTYb+wrdDNKxiElP+by\nQkm7nXNPSZKZfVPSlZLKw+WVkm4u/v8uSX9nZuacGyu7z05JWTM70jl3OP5mA2hUrYNZAOnA57S2\nWuNVGZuKbsas8ChJuiw2J2lP2e97Vdn7WHEf59yUpBckvb7qPldJ+klVsPyHYknsn5qZVT+wmd1g\nZqNmNrp///6wzwMAkJDhsbxWb9yq5eu2aPXGrZQnIjZDa/o074CiiLGp6GbMCo+SpMNlaGZ2tgql\nsv9H2eJrnXP9kt5a/Plw9XrOuduccwPOuYElS5a0prEAgEh5TbCy/p4dBEzEYnBlTtdefMK8gNkJ\nY1M5SYMwmBUeJUmHy7ykZWW/H19c5nkfM1soabGk54u/Hy/pf0r6iHPuydIKzrl88d8XJd2uQvkt\nAKDDcLYcrXbrYL8+c/WKeRMitbr0L8owyEkahMWs8ChJeszlw5JOM7PlKoTIayR9qOo+myVdJ+kB\nSe+TtNU558ysV9IWSeucc/eX7lwMoL3OuV+bWUbS5ZK+F/9TAQC0GmfLkYSkx6ZGPb6t1kkaxssh\niKE1fRXvSakzevTRuER7LotjKD+mwkyvj0m60zm308xuMbMrinf7kqTXm9luSZ+UVLpcyccknSrp\nz6ouOXKkpBEz+6mk7SqE1i+07lkBAFqFs+XoRlH32HOSBmH5XeKIkxPdJ+meSznn7pV0b9WyPyv7\n/yuS3u+x3q2SbvXZ7PlRthEAkE6cLa+NSwN0pqjDoN8suJykQSOS7tFHOiQ95hIAgKZxttwf4+g6\nV9Q99kNr+pTN9FQs4yQNgGYk3nMJAEAYnC33xji6zhV1j33p/UAvN4CwCJcAAHSgdhhH10jZLiW+\nc+IIg5ykARAFwiUAAB0o7ePoGpnxNOrZUTsBYRBAGjHmEgCADpT2cXSNzHjK9UwBoD3QcwkAQAdK\n+zi6Rsp226HEFwBAuAQAoGOluXSykbLdtJf4AgAKKIsFgAQNj+W1euNWLV+3Ras3buUyEegajZTt\npr3Et1vx/QWgGj2XAJAQJilBWrViZtZGynbTXuLbjdL6/cWswt7YL2gVc84l3YbEDQwMuNHR0aSb\nAaDLrN641bPUL9eb1f3rLkmgRcD80CAVegk3rO3nYDSAbjmIT+P3F+9db+wXBGVm25xzA2G2QVks\nACSESUqQRszM2rzSQXx+fEJOc715nVgumsbvL9673tgvaCXCJQAkxG8yEiYpQZLSGBraRTcdxKfx\n+4v3rjf2C1qJcAkACWnnSUqYyKO1Wrm/0xga2kU3HcSn8fuL96439gtaiXAJAAkZXJnThrX9yvVm\nZSqMVWqHMTDdVPqXBq3e32kMDe2id1GmoeXtLI3fX7x3vbFf0ErMFgsACUrzdQj91Cr9a7fn0g5a\nvb+ZmbV5fnMkdurciWn7/uK96439glYiXAIAGtJNpX9pkMT+TltoaBcvTEw2tBzR473rjf2CViFc\nAgAasrQ363kJAsbvxIP9Ha04LxXCawWg2wUac2lmbzGzD5nZR0o/cTcMAJBOjN9prU7b30lOBhX3\n+NVOe60AoFF1ey7N7KuSTpG0XVJp0IeT9JUY2wUASCnG77RWJ+3v6ou5l8KdpNieT3lP5QIzTVcN\ngIxy/GonvVYA0AxzdUaZm9ljks5y9e7YxgYGBtzo6GjSzQAAVImzhBGtU3odvUpGpcJMo/evuySW\nxy0Ps35M0tMb3xP54wNAOzGzbc65gTDbCDLm8lFJb5L0XJgHAgCgEUn0ciF6QQKeX+gMy2umXS+M\niQSAaAQJl2+Q9DMz+7Gkw6WFzrkrYmsVAKDrccmTzhAk4JkKITTq1zXIjLqMiayPCgIAQQUJlzfH\n3QgAAKpxyZPOEOT1clIsJw38Zm/tMdOMcwSlAKggANCImuHSzHok3eyce3uL2gMAgCQu69Ap/F7H\namFOGvj1rA2t6ZtXkpvN9GjD2n6CUUBUEABoRM1w6ZybNrMZM1vsnHuhVY0CAMAvGFDCmH7lYa93\nUUaZBabJmdrzAjZ70iBIz1p58Hz7GUu0aWSXbrxjOz2XAVBBAKARQcpiX5K0w8zuk/RyaaFz7uOx\ntQoA0PW4rEN7qg57Bw9NKtNj6s1m9MLEpHoXZfTSK1MVYTPMSYN6PWulH6+2UeJZX1wVBIzjBDpT\nkHB5T/EHAICWKg8GaA9eYW9y2umoIxdq+02XSioEi5s379T4xKSkQhi8efNOSaoIgqXLl/QUr0+Z\n8wghjfSsUeLZuDgqCAj5QOeqGy6dc19uRUMAAED7Cxr2Xn51quL38YlJDX3rEY0+c0BbfvqcDh6a\nnL1tunipba8Q0kjPWqMlnvSuxVNBQMgHOlfdcGlmT6swkVsF59zJsbQIAAA0JE0hKEjY2zSyS5PT\n88dgTs44ff3BZ+cfdJSpDiGN9Kw1EkTpXZsTdQUB4ziBzrUgwH0GJF1Q/HmrpL+V9LU4GwUAAIIp\nhaD8+ISc5kLQ8Fg+kfYMrelTNtNTsaw67NUKEbWn/Zm//uDKnDas7VeuNyuTlOvN+s4GG6RtJbV6\n18IaHstr9catWr5ui1Zv3JrYa5UUv/GazAQNtL8gZbHPVy36rJltk/Rn8TQJAAAEFXWJYZhe0NK6\nE5PTNcdJBr08iZ/qEBK0Z62REs+4etei6hFNU291o5gJGk3Zu1d64IHCz4MPFv4tc2f/O/U3H1rf\nVp+FThSkLPa8sl8XqNCTGWQiIAAAELMoQ1CY4FO97rRzs4Ghet2hNX0auusRz9LYesKGkKBBNK5Z\nUqM4GdDuJbvMBI159uyZC44PPCA99FDDm9j1hhPb7rPQiYKExL8u+/+UpKclfSCe5gAAgEZEGYLC\nBJ9G1i39/uff2Tk7cU9vNqPL33yc7t6Wn7edkh4zXXV+a2YQjqt3LYqTAZ0wIQ4zQXcJ56Rnn63s\nbfzxj5vb1hvfKK1aJV18ceHfgQGt/m8Pzfv+a7fPQqcJEi6vd849Vb7AzJbH1B4AANCAKENQmODT\n6Lp+4WLgxGNme7QWZzN6+dWp2R7Oaed097a8Bk48puEDx0bLSOPqXYviZEA7TYjTzuW7qMM56Zln\nKktVH364uW0de2whMJbC4/nnS0cdVXe1dvosdIsg4fIuSed5LDs/+uYAAIBGRBmCGp1Ntfwxexdl\nKi4f4rduvbBRHjpXb9w6ey3MkmZ6JZotI42jdy2KkwFxlexGrd3Ld7uac9IvflFZqrptW3PbOu64\nud7GVauk886TFi2KpJnt8lnoJr7h0szOkHS2pMVmtrbsptdJek3cDQMAAMFEFYKCBh+v0JBZYMr0\nWMU4yup1Gw0bUfVKpKmMNIqTAe0yIU6a9jvKOCc99VRlqepPftLctpYurSxVPe88Kdu6YNcun4Vu\nUqvnsk/S5ZJ6Jb23bPmLkv4wzkYBAIDWCxp8vELD5IxTbzajo45c6Ltuo2Ejql6JqEJqVCWeYU8G\ntMuEOJQsJsA56cknK0tVx8aa21YuV1mqet550mvS1b/ULp+FbuIbLp1z35b0bTNb5Zx7wO9+AACg\nc5SCTylI3XjHdm0a2VVxwOYXDsYnJnXUkf7nrRsNG2F6JcqDoJ8FZhoeywc6EE1biWc7TIiTdMli\nx433dE564om53sYHHpAeeaS5bS1bVlmqumJF6oJjUO3wWegmQcZcPm9m35d0rHPuHDM7V9IVzrlb\nY24bAABIQL0g5RcarHhfr3WkxsOGX6+EVBiP6RcaqtvvZ9q5wAEx7hLPjgtCSrZkMW0nA+pyTvr5\nzytLVX/60+a2dcIJlaWqK1ZIRx4ZbXsBH0HC5RckDUn6H5LknPupmd0uiXAJAEAHqhekvEKDSaq+\namV1+GombFT3SgQJDV7t91NqY2k9v3AXZ4lnI0GonUJokiWLqRrvOTMzFxxL4XHHjua2deKJlaWq\nK1ZIRxwRbXuBEIKEy0XOuR+bWfmyqZjaAwAAElYvSHmFBq8eyeptRRE2goSGRgNfKczVCndxlngG\nDUJt1xun5EoWWzbec2ZGevzxylLVnTub29by5ZWlqueeS3BE2wkSLn9tZqeoeELSzN4n6blYWwUA\ngId26rVJu1r7MkiQqg4NK/78X+ZdNkSSFmczFb/7hY2gr61fOMiPT8yOn6wVdr2YVDfcxVniGTQI\n1QuhfD7mRHIyYGZGeuyxylLVn/2suQadfHJlqeq550qZTP31gDYTJFx+VNJtks4ws7ykpyVdG2ur\nAACo0o69NmlVb182E6QqC5zqL2+kPeVqBcfSOl7t95NZYJqcqS7oLYi619VP0CBUK4Ty+ahU9z08\nPT0XHEvh8bHHmnuwU06pLFXt7488OHLiAO2iZrg0swWSBpxz7zSzoyQtcM692JqmAQAwJ1VjqNpc\nvX3ZTJAaPzS/17LW8kbaU65WcCytc/+6SyravzibkVmhLb2LMnJOemFiUkt7szr06pQO+rSxOtzF\nVeIZNMzXCqF8PspMT2uw53md6B7Rvu/9QGc8vVOnHNhbuK3RGUNOO62yVPWcc6SFQfpmwisFyvz4\nRMWY5m4/cYB0q/npcM7NmNkfS7rTOfdyi9oEAMA8XDMvOkH2ZaNBKkwZYiOvbalNn7hje811grZ/\n+botvrfFPatpeW9U76KMjly4YDb0eoX5WiH0xjr7o2NMT0uPPlpZqvrzn3vedWXxx8+LJ56s1/7O\nW+fC49lntyw41lPdE11vsqxmtk9PKOIQ5BP0PTP7vyXdIWk2YDrnDsTWKgAAqiR9zbxO4rcvnQqX\n+GjmQDPMmMRmLlFS6tEJuk6jj330okysB9vV4eHgoUllMz36zNUrfB+3Vo9yVPsjUVNTc8Gx9LN7\nd3Pb6uub7W38yE7Tvx55rGYW9FTcJdebne3lTpsgMx43e+KAEmrEKUi4vLr470fLljlJJ0ffHAAA\nvCV5zbxOU6u0tNkDzVrBp14vSTOvbVTvh7efsURfe/DZecvfc+5xDW2nUc2Wsfr1yKb+8zE1Vbhu\nY/msqk8+2dy2zjyzslT1zDOlnh7fu/+vdVvm9fxJ6e7VDdK2Zk8cUEKNONUNl8655bVuN7N3Oefu\ni65JAADMF2QcIKVewZTvS6/ermYPNL2CT5BekmbGeEY1wc4PHt/f0PKoRF3mneQ1JXX4sHTffdJ3\nviO9/HIhOD71VHPbOuusyllVzzxTWrAgVPPaseqh3ozHYU4cMMQAcYqisPxTkgiXAIDY1RpHR6lX\nY0r7cnnMvTpBe0mamSyn3jpBTjb4HcA3cimTZsQReGKZcOjwYWlkRPrWtwo/hw83v62zz57rbVy1\n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\neE73A8p3kjx6js9l+Pr0mOXhZPX4BUk+21r74SLVycL16nFVPb2q7kiyJ8mrB8LmrI57WhOWSlV9\nNMlPzfLQ6wfvtNZaVc37zGNrbbyqHpbkvUmelemzIiyhxe5xd5nG9Un+srX25YVVyUItdn8BGE1V\n9aRMX0Z52bBr4eRrrX06yZOq6olJrquqf2+tHfOKBOGSkdBau/RYj1XVN6rqnNbafVV1TqbPQB5t\nMsklA/fPTfLxo17jB1V1Q6ZP/QuXS2wJevzOJHe11q49CeUyT0vxGWbkTCZ53MD9c7ux2eZ8rfsF\n0KOSfGuOz2X4+vSY5aFXj6vq3CT/muSlrbUvLX65LMBJ+Ry31u7sFtZ7cpKdx3oxl8WyHNyY6S+K\np7u9YZY5E0kuq6ozukVALksyUVWP6H6YnTmz9ZwkX1iCmpmfBfc4SarqjZn+i/D3lqBW5q9XfxlZ\nn0lyQVWdX1WnZ3qBnhuPmjPY+xcm+c/WWuvGr+pWKDw/yQVJblmiupm7Pj1meVhwj7uvonw4ydWt\ntU8tWcXMV58enz+zgE9V/UySJyS597iv1lqz2UZ6y/Q13zcnuSvJR5Oc2Y1vTPLugXkvz/SiEHcn\n+a1u7OzuQ3V7ple8+qskpw37PdlOao/PzfQXzO9MsrvbXjns92Q7Of3txt+S6e+I/F93+yfDfk+2\nw715dpIvJvlSktd3Y29IcmW3/7Ak/9z19JYkPzvw3Nd3z9ub5IphvxfbovT43iT7kzzYfXYvHPb7\nsZ28Hif5wyTfG/i3d3eSxw77/dhOao9/M9OLNe3O9IKJm070WtU9EQAAABbMZbEAAAD0JlwCAADQ\nm3AJAABAb8IlAAAAvQmXAAAA9CZcAsAIq6pLquqXhl0HAJyIcAkAQzbzn1QfwyVJ5hUuT3A8AFgU\nwiUAHEdVPbyqPlxVt1XV56rqxVV1b1W9par2VNUtVfX4bu4NVfXSbv93quq9xznux6vq2qrameS1\nVXVWVf1LVX2m255ZVecleXWS36+q3VX1y1X1D1X1woHjPNjdXlJVn6iqG5N8vqrOq6o7q+pdVXVH\nVX2kqsYW708KgFOd32wCwPFdnmRfa+05SVJVj0ry5iTfaa1d1IXJa5P8epJXJflUVd2T5A+SPOME\nxz69tbaxO+4/JXlba+2TVfXTSSZaa0+sqnckebC19tZu3iuOc7ynJXlya+2eLphekOQlrbXfrqoP\nJHlBkvcs4M8AAE5IuASA49uT5M+r6s1J/q219omqSpLru8evT/K2JGmtfaOq/jjJx5I8v7W2/wTH\nfv/A/qVJLuyOnSQ/WVWPmGett7TW7hm4f09rbXe3f2uS8+Z5PACYM+ESAI6jtfbFqnpakmcneWNV\n3Tzz0OC0gf2Lknwrydo5HP57A/sPSfKM1toPBicMhM0ZP+rmpqoekuT0YxwvSX44sH8oictiAVg0\nvnMJAMdRVWuTfL+19p4k2zJ96WmSvHjg9r+6uRcnuSLJhiSvq6rz5/FSH0nyuwOv+9Ru97tJHjkw\n794kv9DtX5lk9TxeAwAWjXAJAMd3UZJbqmp3kmuSvLEbP6Oqbk/y2kwvuPPQJO9K8vLW2r5Mf+fy\n72qWU4/H8JokG6vq9qr6fKYX8kmSDyV5/syCPt1r/EpV3ZbkF/PjZysBYCiqtXbiWQDAYVV1b5KN\nrbUHhl0LAIwKZy4BAADozZlLAFhEVfX2JM88avgvWmt/P4x6AGCxCJcAAAD05rJYAAAAehMuAQAA\n6E24BAAAoDfhEgAAgN6ESwAAAHr7f3qUFpWQd341AAAAAElFTkSuQmCC\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize = (15,10))\n", - "plt.scatter(df.spy,df.amzn)\n", - "plt.xlabel('spx_return')\n", - "plt.ylabel('amzn_return')\n", - "plt.plot(df.spy,model.predict(),color = 'red')\n", - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.html b/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.html deleted file mode 100644 index 4546617..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.html +++ /dev/null @@ -1,327 +0,0 @@ -In the last chapter we introduced simple linear regression, which has only one independent variable. In this chapter we will learn about linear regression with multiple independent variables. - -A simple linear regression model is written in the following form: -\[ Y = \alpha + \beta X + \epsilon \] - -A multiple linear regression model with p variables is given by: -\[ Y = \alpha + \beta_1 X_1 + \beta_2 X_2 + \dots + \beta_p X_p + \epsilon \] - -

Python Implementation

- -In the last chapter we used the S&P 500 index to predict Amazon stock returns. Now we will add more variables to improve our model's predictions. In particular, we shall consider Amazon's competitors. - -
import numpy as np
-import pandas as pd
-import quandl
-import matplotlib.pyplot as plt
-import statsmodels.formula.api as sm
-
-# Get stock prices
-quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'
-spy_table  = quandl.get('BCIW/_SPXT')
-amzn_table = quandl.get('WIKI/AMZN')
-ebay_table = quandl.get('WIKI/EBAY')
-wal_table  = quandl.get('WIKI/WMT')
-aapl_table = quandl.get('WIKI/AAPL')
- -Then we fetch closing prices starting from 2016: - -
-spy  = spy_table .loc['2016',['Close']]
-amzn = amzn_table.loc['2016',['Close']]
-ebay = ebay_table.loc['2016',['Close']]
-wal  = wal_table .loc['2016',['Close']]
-aapl = aapl_table.loc['2016',['Close']]
-
- -After taking log returns of each stock, we concatenate them into a DataFrame, and print out the last 5 rows: - -
-spy_log  = np.log(spy.Close) .diff().dropna()
-amzn_log = np.log(amzn.Close).diff().dropna()
-ebay_log = np.log(ebay.Close).diff().dropna()
-wal_log  = np.log(wal.Close) .diff().dropna()
-aapl_log = np.log(aapl.Close).diff().dropna()
-df = pd.concat([spy_log,amzn_log,ebay_log,wal_log,aapl_log],axis = 1).dropna()
-df.columns = ['SPY', 'AMZN', 'EBAY', 'WAL', 'AAPL']
-df.tail()
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DateSPYAMZNEBAYWALAAPL
2016-12-230.001351-0.0075310.008427-0.0007190.001976
2016-12-270.0022540.0141130.0149930.0022980.006331
2016-12-28-0.0082180.000946-0.007635-0.005611-0.004273
2016-12-29-0.000247-0.009081-0.001000-0.000722-0.000257
2016-12-30-0.004601-0.020172-0.009720-0.002023-0.007826
- -As before, we use the 'statsmodels' package to perform simple linear regression: - -
simple = sm.ols(formula = 'amzn ~ spy', data = df).fit()
-print simple.summary()
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 coefstd errtP>|t|[0.0250.975]
Intercept9.876e-050.0010.0970.923-0.0020.002
spy1.07960.1248.7250.0000.8361.323
- -Similarly, we can build a multiple linear regression model: - -
model = sm.ols(formula = 'amzn ~ spy + ebay + wal', data = df).fit()
-print model.summary()
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 coefstd errtP>|t|[0.0250.975]
Intercept0.00010.0010.1340.894-0.0020.002
spy1.04680.1706.1550.0000.7121.382
ebay-0.07950.058-1.3640.174-0.1940.035
wal-0.08650.089-0.9760.330-0.2610.088
aapl0.15290.0841.8310.068-0.0120.317
- -As seen from the summary table, the p-values for Ebay, Walmart and Apple are 0.174, 0.330 and 0.068 respectively, so none of them are significant at a 95% confidence level. - -The multiple regression model has a higher \( R^2 \) than the simple one: 0.254 vs 0.234. Indeed, \( R^2 \) cannot decrease as the number of variables increases. Why? If an extra variable is added to our regression model, but it cannot account for variations in the response (amzn), then its estimated coefficient will simply be zero. It's as though that variable was never included in the model, so \( R^2 \) will not change. - -However, it is not always better to add hundreds of variables or we will overfit our model. We'll talk about this in a later chapter. - -Can we improve our model further? Here we try the Fama-French 5-factor model, which is an important model in asset pricing theory. We will cover it in the later tutorials. - -The data needed are publicly available on French's website.[ref]mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/f-f_factors.html[/ref] We have saved a copy for convenience. The following code fetches the data. - -
-import urllib2
-from datetime import datetime
-
-url = 'https://www.quantconnect.com/tutorials/wp-content/uploads/2017/08/F-F_Research_Data_5_Factors_2x3_daily.csv'
-response   = urllib2.urlopen(url)
-fama_table = pd.read_csv(response)
-
-# Convert time column into index
-fama_table.index = [datetime.strptime(str(x), "%Y%m%d")
-                    for x in fama_table.iloc[:,0]]
-# Remove time column
-fama_table = fama_table.iloc[:,1:]
-
- -With the data, we can construct a Fama-French factor model: - -
-fama = fama_table['2016']
-fama = fama.rename(columns = {'Mkt-RF':'MKT'})
-fama = fama.apply(lambda x: x/100)
-fama_df = pd.concat([fama, amzn_log], axis = 1)
-fama_model = sm.ols(formula = 'Close~MKT+SMB+HML+RMW+CMA', data = fama_df).fit()
-print fama_model.summary()
-
- - - -The Fama-French 5-factor model has a higher \( R^2 \) of 0.387. We can compare the predictions from simple linear regression and Fama-French multiple regression by plotting them together on one chart: - -
-result = pd.DataFrame({'simple regression': simple.predict(),
-                       'fama_french': fama_model.predict(),
-                       'sample': df.amzn}, index = df.index)
-
-# Feel free to adjust the chart size
-plt.figure(figsize = (15,7.5))
-plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','simple regression'])
-plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','fama_french'])
-plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','sample'])
-plt.legend()
-plt.show()
-
- - - -Although it's hard to see from the chart above, the predicted return from multiple regression is closer to the actual return. Usually we don't plot the predictions to determine which model is better; we read the summary table. - -

Model Significance Test

- -Instead of using \( R^2 \) to assess whether our regression model is a good fit to the data, we can perform a hypothesis test: the F test. - -The null and alternative hypotheses of an F test are: -\[ H_0: \beta_1 = \beta_2 = \dots = \beta_p = 0 \] -\[ H_1: \text{At least one coefficient is not 0} \] - -We won't explain F test procedure in detail here. You just need to understand the null and alternative hypotheses. In the summary table of an F test, the 'F-statistic' is the F score, while 'prob (F-statistic)' is the p-value. Performing this test on the Fama-French model, we get a p-value of `2.21e-24` so we are almost certain that at least one of the coefficient is not 0. - -If the p-value is larger than 0.05, you should consider rebuilding your model with other independent variables. - -In simple linear regression, an F test is equivalent to a t test on the slope, so their p-values will be the same. - -

Residual Analysis

- -Linear regression requires that the predictors and response have a linear relationship. This assumption holds if the residuals are zero on average, no matter what values the predictors \( X_1, \dots, X_p \) take. - -Often it's also assumed that the residuals are independent and normally distributed with the same variance (homoskedasticity), so that we can contruct prediction intervals, for example. - -To check whether these assumptions hold, we need to analyse the residuals. In statistical arbitrage, residual analysis can also be used to generate signals. - -

Normality

- -The residuals of a linear model usually has a normal distribution. We can plot the residual's density to check for normality: - -
plt.figure()
-#ols.fit().model is a method to access to the residual.
-fama_model.resid.plot.density()
-plt.show()
-
- - - -As seen from the plot, the residual is normally distributed. By the way, the residual mean is always zero, up to machine precision: - -
print 'Residual mean:', np.mean(fama_model.resid)
-[out]: Residual mean: -2.31112163493e-16
-print 'Residual variance:', np.var(fama_model.resid)
-[out]: Residual variance: 0.000205113416293
-
- -

Homoskedasticity

- -This word is difficult to pronounce but not difficult to understand. It means that the residuals have the same variance for all values of X. Otherwise we say that 'heteroskedasticity' is detected. - -
plt.figure(figsize = (20,10))
-plt.scatter(df.spy,simple.resid)
-plt.axhline(0.05)
-plt.axhline(-0.05)
-plt.xlabel('x value')
-plt.ylabel('residual')
-plt.show()
-
- - - -As seen from the chart, the residuals' variance doesn't increase with X. The three outliers do not change our conclusion. Although we can plot the residuals for simple regression, we can't do this for multiple regression, so we use statsmodels to test for heteroskedasticity: - -
from statsmodels.stats import diagnostic as dia
-het = dia.het_breuschpagan(fama_model.resid,fama_df[['MKT','SMB','HML','RMW','CMA']][1:])
-print 'p-value: ', het[-1]
-[out]:p-value of Heteroskedasticity:  0.144075842844
-
- -No heteroskedasticity is detected at the 95% significance level. - -

Summary

- -In this chapter we have introduced multiple linear regression, F test and residual analysis, which are the fundamentals of linear models. In the next chapter we will introduce some linear algebra, which are used in modern portfolio theory and CAPM. \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.ipynb b/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.ipynb deleted file mode 100644 index 8b76b24..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial10 Multiple Linear Regression.ipynb +++ /dev/null @@ -1,716 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import quandl\n", - "import matplotlib.pyplot as plt\n", - "import statsmodels.formula.api as sm" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "quandl.ApiConfig.api_key = 'tAyfv1zpWnyhmDsp91yv'\n", - "spy_table = quandl.get('BCIW/_SPXT')\n", - "amzn_table = quandl.get('WIKI/AMZN')\n", - "ebay_table = quandl.get('WIKI/EBAY')\n", - "wal_table = quandl.get('WIKI/WMT')\n", - "aapl_table = quandl.get('WIKI/AAPL')" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
spyamznebaywalaapl
Date
2016-12-230.001351-0.0075310.008427-0.0007190.001976
2016-12-270.0022540.0141130.0149930.0022980.006331
2016-12-28-0.0082180.000946-0.007635-0.005611-0.004273
2016-12-29-0.000247-0.009081-0.001000-0.000722-0.000257
2016-12-30-0.004601-0.020172-0.009720-0.002023-0.007826
\n", - "
" - ], - "text/plain": [ - " spy amzn ebay wal aapl\n", - "Date \n", - "2016-12-23 0.001351 -0.007531 0.008427 -0.000719 0.001976\n", - "2016-12-27 0.002254 0.014113 0.014993 0.002298 0.006331\n", - "2016-12-28 -0.008218 0.000946 -0.007635 -0.005611 -0.004273\n", - "2016-12-29 -0.000247 -0.009081 -0.001000 -0.000722 -0.000257\n", - "2016-12-30 -0.004601 -0.020172 -0.009720 -0.002023 -0.007826" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "spy = spy_table.loc['2016',['Close']]\n", - "amzn = amzn_table.loc['2016',['Close']]\n", - "ebay = ebay_table.loc['2016',['Close']]\n", - "wal = wal_table.loc['2016',['Close']]\n", - "aapl = aapl_table.loc['2016',['Close']]\n", - "spy_log = np.log(spy.Close).diff().dropna()\n", - "amzn_log = np.log(amzn.Close).diff().dropna()\n", - "ebay_log = np.log(ebay.Close).diff().dropna()\n", - "wal_log = np.log(wal.Close).diff().dropna()\n", - "aapl_log = np.log(aapl.Close).diff().dropna()\n", - "df = pd.concat([spy_log,amzn_log,ebay_log,wal_log,aapl_log],axis = 1).dropna()\n", - "df.columns = ['spy','amzn','ebay','wal','aapl']\n", - "df.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: amzn R-squared: 0.254\n", - "Model: OLS Adj. R-squared: 0.242\n", - "Method: Least Squares F-statistic: 20.94\n", - "Date: Tue, 22 Aug 2017 Prob (F-statistic): 7.21e-15\n", - "Time: 11:09:04 Log-Likelihood: 684.88\n", - "No. Observations: 251 AIC: -1360.\n", - "Df Residuals: 246 BIC: -1342.\n", - "Df Model: 4 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 0.0001 0.001 0.134 0.894 -0.002 0.002\n", - "spy 1.0468 0.170 6.155 0.000 0.712 1.382\n", - "ebay -0.0795 0.058 -1.364 0.174 -0.194 0.035\n", - "wal -0.0865 0.089 -0.976 0.330 -0.261 0.088\n", - "aapl 0.1529 0.084 1.831 0.068 -0.012 0.317\n", - "==============================================================================\n", - "Omnibus: 70.404 Durbin-Watson: 1.979\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 1938.463\n", - "Skew: -0.310 Prob(JB): 0.00\n", - "Kurtosis: 16.600 Cond. No. 179.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "model = sm.ols(formula = 'amzn ~ spy+ebay+wal+aapl',data = df).fit()\n", - "print model.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: amzn R-squared: 0.234\n", - "Model: OLS Adj. R-squared: 0.231\n", - "Method: Least Squares F-statistic: 76.13\n", - "Date: Tue, 22 Aug 2017 Prob (F-statistic): 3.88e-16\n", - "Time: 11:09:07 Log-Likelihood: 681.59\n", - "No. Observations: 251 AIC: -1359.\n", - "Df Residuals: 249 BIC: -1352.\n", - "Df Model: 1 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 9.876e-05 0.001 0.097 0.923 -0.002 0.002\n", - "spy 1.0796 0.124 8.725 0.000 0.836 1.323\n", - "==============================================================================\n", - "Omnibus: 68.122 Durbin-Watson: 2.011\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 2089.718\n", - "Skew: -0.110 Prob(JB): 0.00\n", - "Kurtosis: 17.134 Cond. No. 122.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "simple = sm.ols(formula = 'amzn ~ spy',data = df).fit()\n", - "print simple.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 48, - "metadata": {}, - "outputs": [], - "source": [ - "import urllib2\n", - "from datetime import datetime\n", - "url = 'https://www.quantconnect.com/tutorials/wp-content/uploads/2017/08/F-F_Research_Data_5_Factors_2x3_daily.csv'\n", - "response = urllib2.urlopen(url)\n", - "fama_table = pd.read_csv(response)\n", - "index = [datetime.strptime(str(x), \"%Y%m%d\") for x in fama_table.iloc[:,0]]\n", - "fama_table.index = index\n", - "fama_table = fama_table.iloc[:,1:]" - ] - }, - { - "cell_type": "code", - "execution_count": 49, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Mkt-RFSMBHMLRMWCMARF
1963-07-01-0.670.00-0.310.010.150.012
1963-07-020.79-0.270.26-0.08-0.190.012
1963-07-030.63-0.17-0.090.19-0.330.012
1963-07-050.400.08-0.280.07-0.330.012
1963-07-08-0.630.04-0.16-0.310.130.012
\n", - "
" - ], - "text/plain": [ - " Mkt-RF SMB HML RMW CMA RF\n", - "1963-07-01 -0.67 0.00 -0.31 0.01 0.15 0.012\n", - "1963-07-02 0.79 -0.27 0.26 -0.08 -0.19 0.012\n", - "1963-07-03 0.63 -0.17 -0.09 0.19 -0.33 0.012\n", - "1963-07-05 0.40 0.08 -0.28 0.07 -0.33 0.012\n", - "1963-07-08 -0.63 0.04 -0.16 -0.31 0.13 0.012" - ] - }, - "execution_count": 49, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 50, - "metadata": {}, - "outputs": [], - "source": [ - "fama = fama_table['2016']\n", - "fama = fama.rename(columns = {'Mkt-RF':'MKT'})\n", - "fama = fama.apply(lambda x: x/100)\n", - "fama_df = pd.concat([fama,amzn_log],axis = 1)" - ] - }, - { - "cell_type": "code", - "execution_count": 51, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " OLS Regression Results \n", - "==============================================================================\n", - "Dep. Variable: Close R-squared: 0.387\n", - "Model: OLS Adj. R-squared: 0.375\n", - "Method: Least Squares F-statistic: 30.97\n", - "Date: Tue, 22 Aug 2017 Prob (F-statistic): 2.21e-24\n", - "Time: 11:24:12 Log-Likelihood: 709.59\n", - "No. Observations: 251 AIC: -1407.\n", - "Df Residuals: 245 BIC: -1386.\n", - "Df Model: 5 \n", - "Covariance Type: nonrobust \n", - "==============================================================================\n", - " coef std err t P>|t| [0.025 0.975]\n", - "------------------------------------------------------------------------------\n", - "Intercept 0.0010 0.001 1.028 0.305 -0.001 0.003\n", - "MKT 0.9612 0.125 7.691 0.000 0.715 1.207\n", - "SMB -0.5890 0.182 -3.235 0.001 -0.948 -0.230\n", - "HML -0.1335 0.211 -0.632 0.528 -0.549 0.282\n", - "RMW -0.4851 0.264 -1.840 0.067 -1.005 0.034\n", - "CMA -1.5555 0.324 -4.801 0.000 -2.194 -0.917\n", - "==============================================================================\n", - "Omnibus: 69.457 Durbin-Watson: 1.937\n", - "Prob(Omnibus): 0.000 Jarque-Bera (JB): 2012.675\n", - "Skew: 0.241 Prob(JB): 0.00\n", - "Kurtosis: 16.864 Cond. No. 399.\n", - "==============================================================================\n", - "\n", - "Warnings:\n", - "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" - ] - } - ], - "source": [ - "fama_model = sm.ols(formula = 'Close~MKT+SMB+HML+RMW+CMA',data = fama_df).fit()\n", - "print fama_model.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 52, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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\niEiphHwhqsJdnDhrfHeGT1M6RYqrLDN8V//hBV58e0dBzzljnzFc+fGD+nz8oYceYp999uHBBx8E\noLW1dZc2sViMo446ihtuuIFTTz2Vyy+/nJUrV/Liiy+yZMkSTj75ZADWrVvHxo0biUQizJs3j5NO\nOom5c+d2n+fhhx9m06ZNrFu3DmstJ598Mn/961/5yEc+ssv1FixYwPe//31SqRQLFy7k/vvvZ9y4\ncdx9991cdtll3H777Xz+85/nl7/8JUcccQSXXnppr3Ns2LCB5557jvr6+j6vu23btl1+9sbGRn7/\n+9/z8ssvY4yhpaVll9fjc5/7HD/5yU9YuHAhV1xxBVdffTU//OEPASejuG7dOlasWMHVV1/NqlWr\nBjNMIiIiMoKEvCE6085Ga62JVkLeEGFfuMS9EqksyvAVyKxZs1i5ciWXXHIJa9asoaZm16KigUCA\n448/vrv9woUL8fv9zJo1i82bN3e3W7x4MQ0NDYTDYU477TQee+yxXud5+OGHefjhhznkkEM49NBD\nefnll9m0adMu1/N6vZx++ukAvPLKK2zcuJHFixdz8MEHc+2117JlyxZaWlpoa2vjiCOOAODf/u3f\nep1j8eLF1NfX93vdfD97TU0NoVCIc889l3vvvZdIJNLrvK2trbS0tLBw4UIAlixZwl//+tfux087\n7TQADjvssF6vjYiIiIweIV9PwNfc2azsnkgJlGWGr79M3HDZf//92bBhAytWrODyyy/n6KOP5oor\nrujVxu/3d+8w6fF4CAaD3bfT6XR3u513odz5vrWWr3/963zxi1/st0+hUKh73Z61loMOOoi1a9f2\napMv85YrGo0O6rr5fvZ169bxyCOPsHz5cn7605/yl7/8pd9r5cq+Nl6vt9drIyIiIqNHyBeiJeH8\nrdGSaNGGLSIloAxfgbz99ttEIhHOOussli5dyoYNG/b4XCtXrqSpqYmOjg7uu+8+jjzyyF6PH3fc\ncdx+++20t7cD8NZbb/Hee+/1e84DDjiAbdu2dQd8qVSKF154gdraWqqrq3niiScA+N3vftfnOfq6\nbr6fvb29ndbWVk488UR+8IMf8Oyzz/Y6V01NDXV1dd3r8+66667ubJ+IiIiUh7A33JPhSzRTE9x1\nBpSIDK+yzPCVwvPPP8/SpUvxeDz4/X5+/vOf7/G55s+fz+mnn86WLVs466yzeq3fAzj22GN56aWX\n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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "result = pd.DataFrame({'simple regression':simple.predict(),'fama_french':fama_model.predict(),'sample':df.amzn},index = df.index)\n", - "plt.figure(figsize = (15,7.5))\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','simple regression'])\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','fama_french'])\n", - "plt.plot(result['2016-7':'2016-9'].index,result.loc['2016-7':'2016-9','sample'])\n", - "plt.legend()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 53, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure()\n", - "simple.resid.plot.density()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 54, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "residual mean: -2.31112163493e-16\n", - "residual variance: 0.000205113416293\n" - ] - } - ], - "source": [ - "print 'residual mean: ', np.mean(fama_model.resid)\n", - "print 'residual variance: ', np.var(fama_model.resid)" - ] - }, - { - "cell_type": "code", - "execution_count": 55, - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABKEAAAJQCAYAAABW2XehAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3X+Q5Gd9H/jPs7OD3OsfjASyLxoLS8ZkfVY21oQNUN4r\nF3CxhxQWTK1xZM7OkTtfUXeJq86cayq7dVwkCLndeMvhqnK+csjZKZ/BWDao5oTleIt4wXeliggr\nRvJGCVvmh5Fo+WKBNNigRoxGz/2x07Pzo7/9a/rpn69X1dbufPs7/X2+P7q3n3c/z+ebcs4BAAAA\nACUdGXUDAAAAAJh+QigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAAABQnhAIAAACgOCEUAAAAAMUJ\noQAAAAAoTggFAAAAQHFHR92AYXr5y1+eb7vttlE3AwAAAGBqPPLII1/JOd/cab2ZCqFuu+22uHz5\n8qibAQAAADA1Ukpf6mY90/EAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAA\nABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQCgAAAIDihFAA\nAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKE\nUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKG6kIVRK6U0ppasppc+llM60ePxHU0qfSSm9kFJ6\n277H3pFS+pPtP+8YXqsBAAAA6NXIQqiU0lxE/EpE/O2I+KGIeHtK6Yf2rfZERPy9iPitfb97U0Tc\nExGvjYjXRMQ9KaUbS7cZAAAAgP6MciTUayLicznnL+ScvxURvx0Rb929Qs75T3POfxwRL+773eWI\n+HjO+Zmc87MR8fGIeNMwGg0AAABA70YZQi1GxJO7fv7y9rKB/m5K6Z0ppcsppctPP/10Xw0FAAAA\n4HCmvjB5zvkDOeeTOeeTN99886ibAwAAADCTRhlC1SPi1l0/f+/2stK/CwAAAMCQjTKE+nREvCql\ndHtK6SUR8dMR8UCXv3sxIn48pXTjdkHyH99eBgAAAMAYGlkIlXN+ISJ+Pq6FR/8xIn4n5/x4Sum9\nKaW3RESklP5mSunLEfFTEfEvUkqPb//uMxHxj+NakPXpiHjv9jIAAAAAxlDKOY+6DUNz8uTJfPny\n5VE3AwCgiLX1ely4eDWe2mjELQu1WF0+HitL3d73BQCgPymlR3LOJzutd3QYjQEAoKy19Xqcvf9K\nNDa3IiKivtGIs/dfiYgQRAEAY2Hq744HADALLly8uhNANTU2t+LCxasjahEAwF5CKACAKfDURqOn\n5QAAwyaEAgCYArcs1HpaDgAwbEIoAIApsLp8PGrzc3uW1ebnYnX5+IhaBACwl8LkAABToFl83N3x\nAIBxJYQCAJgSK0uLQicAYGyZjgcAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QC\nAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAAABQn\nhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQCgAAAIDihFAAAAAA\nFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAA\nAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKO7oqBsAAABMl7X1ely4eDWe2mjELQu1WF0+HitLi6Nu\nFgAjJoQCAAAGZm29HmfvvxKNza2IiKhvNOLs/VciIgRRADPOdDwAAGBgLly8uhNANTU2t+LCxasj\nahEA40IIBQAADMxTG42elgMwO4RQAADAwNyyUOtpOQCzQwgFAAAMzOry8ajNz+1ZVpufi9Xl4yNq\nEQDjQmFyAABgYJrFx90dD4D9hFAAAMBArSwtCp0AOMB0PAAAAACKE0IBAAAAUJwQCgAAAIDihFAA\nAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKE\nUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA\n4oRQAAAAABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAAUJwQCgAA\nAIDihFAAAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAK\nAAAAgOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCc\nEAoAAACA4oRQAAAAABQnhAIAAACgOCEUAAAAAMUJoQAAAAAoTggFAAAAQHFCKAAAAACKE0IBAAAA\nUJwQCgAAAIDihFAAAAAAFCeEAgAAAKA4IRQAAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEA\nAABQnBAKAAAAgOJGGkKllN6UUrqaUvpcSulMi8dvSCndt/34p1JKt20vvy2l1EgpPbr951eH3XYA\nAAAAund0VBtOKc1FxK9ExI9FxJcj4tMppQdyzv9h12o/FxHP5px/IKX00xHxTyPi7u3HPp9zvnOo\njQYAAACgL6McCfWaiPhczvkLOedvRcRvR8Rb963z1oj4je1/fyQi/suUUhpiGwEAAAAYgJGNhIqI\nxYh4ctfPX46I11atk3N+IaX0tYh42fZjt6eU1iPiLyLi3Tnn/7fjFq9ejXj96w/ZbAAAAAB6NcoQ\n6jD+LCJekXP+akrp1RGxllK6I+f8F/tXTCm9MyLeGRHx12+4YcjNBAAAACBitCFUPSJu3fXz924v\na7XOl1NKRyPipRHx1ZxzjojnIyJyzo+klD4fEX81Ii7v30jO+QMR8YGIiJMnT+b45CcHvBsAAAAA\nM6zLykmjrAn16Yh4VUrp9pTSSyLipyPigX3rPBAR79j+99si4lLOOaeUbt4ubB4ppe+PiFdFxBeG\n1G4AAAAAejSykVDbNZ5+PiIuRsRcRPx6zvnxlNJ7I+JyzvmBiPi1iPjNlNLnIuKZuBZURUT8aES8\nN6W0GREvRsR/n3N+Zvh7AQAAAEA30rWZbbPh5MmT+fLlAzP2AAAAAOhTSumRnPPJTuuNcjoeAAAA\nADNCCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QCAAAAoDghFAAAAADFCaEA\nAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAAABQnhAIAAACguKOjbgAAMJ7W\n1utx4eLVeGqjEbcs1GJ1+XisLC2OulkAAEwoIRQAcMDaej3O3n8lGptbERFR32jE2fuvREQIogAA\n6IvpeADAARcuXt0JoJoam1tx4eLVEbUIAIBJJ4QCAA54aqPR03IAAOhECAUAHHDLQq2n5QAA0IkQ\nCgA4YHX5eNTm5/Ysq83Pxery8RG1CACASacwOQBwQLP4uLvjAQAwKEIoAKCllaVFoRMAAANjOh4A\nAAAAxQmhAAAAAChOCAUAAABAcUIoAAAAAIoTQgEAAABQnBAKAAAAgOKEUAAAAAAUJ4QCAAAAoDgh\nFAAAAADFCaEAAAAAKE4IBQAAAEBxQigAAAAAihNCAQAAAFCcEAoAAACA4oRQAAAAABQnhAIAAACg\nOCEUAAAAAMUdHXUDAAAAmG5r6/W4cPFqPLXRiFsWarG6fDxWlhZH3SxgyIRQAAAAFLO2Xo+z91+J\nxuZWRETUNxpx9v4rERGCKJgxpuMBAABQzIWLV3cCqKbG5lZcuHh1RC0CRkUIBQAAQDFPbTR6Wg5M\nL9PxAACAqaMG0fi4ZaEW9RaB0y0LtRG0BhglI6EAAICp0qxBVN9oRI7rNYjW1uujbtpMWl0+HrX5\nuT3LavNzsbp8fEQtAkZFCAUAAEwVNYjGy8rSYpw7fSIWF2qRImJxoRbnTp8wMg1mkOl4AADAVFGD\naPysLC0KnQAjoQAAgOlSVWtIDSKA0RJCAQAAU0UNIoDxZDoeAAAwVZrTvtwdD2C8CKEAAICpsbZe\n3xM+vf/uO4VPAGNCCAUATJ39nVAjIGA2rK3X4+z9V3bujFffaMTZ+69ERHgPABgDQigAYKrohNKK\nYHI2XLh4dee139TY3IoLF6863wBjQAgFAEyVSemECkWGRzA5O57aaPS0HIDhcnc8AGCqTEIntBmK\n1DcakeN6KLK2Xh9106ZSu2CS6XLLQq2n5QAMlxAKAJgqk9AJFYoM1yQEkwzG6vLxqM3P7VlWm5+L\n1eXjI2oRALsJoQCAqTIJnVChyHBNQjDJYKwsLca50ydicaEWKSIWF2px7vQJ0y4BxoSaUADAVGl2\nNse53tItC7WotwichCJlrC4f31MTKmL8gkkGZ2Vpcaxe70D/1E+cPkIoAGDqjHsnVCgyXJMQTAKw\nl5tKTCchFADAkAlFhm/cg0kA9pqUu93SGyEUAMAICEWAUTHFiUmgfuJ0UpgcAABgRjSnONU3GpHj\n+hSntfX6qJsGe7ipxHQSQgEAQGFr6/U4df5S3H7mwTh1/pIOPyPTbooTjJNJuNstvTMdDwAAClJc\n1/SvcWKKE5NC/cTpJIQCAGDmlQxJhlVcd1yDHiHceLlloRb1FoGTKU6MI/UTp4/peAAAzLTSNXKG\nMfKk5D4cdiqh6V/jxRQnYJSMhAIAYKaVHqlUYuTJ/lFP33j+hSL7MIhRTMMK4cZxFNg4MsUJGCUh\nFAAcks4PTJ7dr9tcsc6gQpLV5eN7gpyIw408aRUMVTnsPgwioCs9/ct0v96Z4gSMiul4AHAIbnUN\nk2f/67bKwrH5gWxvZWkxzp0+EYsLtUgRsbhQi3OnT/QdArQKhqocNugZxCim0tO/TPcDmBxGQgHA\nIQyr4DAwON2GOLkioepn9OMgR550GwANIugZxCim0tO/3O0NYHIIoQDgEHR+YDz0Egx1+/r8WmOz\n5XZGPfWrKhi68dh8HHvJ0YEGPYOaSlhy+pe7vQFMDiEUAByCzg/TbFLqnfUaDFW9blutt984jH6s\nCobuueuOgbdhEopYD7rmFgDlCKEA4BB0fphW4zDip1u9BkOtXrf7Vb2Ox2H047CDoXEvYj0JQVkv\nJiX8Bdcq/RBCAcAhTFvnB5rGYcRPRHednF6DoVav2zf84M3xic8+3fF1PC6jH8c9GBq2aTkekxT+\nMl6GHQi5VumXEAoADmlaOj+w2ziM+Om2k9NPMNTv69box3LGdVTFMNs1LuEvk2UUgZBrlX4dGXUD\nAAAYP1UBzjBH/LTr5Oy2unw8avNze5aVCoZWlhbj3OkTsbhQixQRiwu1OHf6hE7XITU70fWNRuS4\n3oleW6/PVLvGIfxl8nT7XjlIrlX6ZSQUAAAHjMOIn247OWokTb5xHVUx7HaNy3RPJssoAiHXKv0S\nQgEAcMA41Dur6uQsHJuPU+cvHWiXYGhyjeuoimG3axzCXybPKAIh1yr9EkIBANDSqIOdVp2c+bkU\nX//mC/Hsc5sR0br2ybjWFqLauI6qGHa7xiH8ZfKMIhByrdKvlHMedRuG5uTJk/ny5cujbgYAjJQO\nOpNk//X6jedfiI3G5oH1Fhdq8dCZNx4o0BtxrTOmbtN4G9fzNq7tgv38386opZQeyTmf7LieEAoA\nZocOFZPu9jMPRqtPrykivnj+zXHq/KWWI1eaIdU4anYe6xuNmEsptnKOxRnsRL577Up8+FNPxlbO\nMZdSvP21t8b7Vk6Mulk69wBd6DaEMh0PAGbIuBb/haZOHf5O06PGtbZQlf3B8Nb2F8TDuMX6OFlb\nr8dHH6nv7P9WzvGhh5+IDz78xMgDuVFPSwWYJkdG3QAAYHgmrYM+DdbW63Hq/KW4/cyDcer8pZHf\ncn6cNQOZ+kYjclwPYnYfs9Xl41Gbn9vze7trn1TV6mm1fBzOTatguKn0LdbHSavj0Bzx1uo6AGAy\nCaEAYIb00kEftNId/nEIFFq1qVOownXtRuo1rSwtxrnTJ2JxoRYprk2z2z2dtFNI1TQu56ZTADwr\nAXGn/ZylQA5gmpmOBwAzZFS3VN4/5WjQU40G9fyDrv1i+mNvuh2p1256VLd3bBqXc1M1vXD347Og\n03GImJ1ADmCaCaEAYIaM6pbKpTv8g3j+EkGZ6Y+96VTvqUqr8LBTEfKqc1DfaMSp85eG9vpoFQw3\nDSMgHrR+g9x2x6FpVgI5hkPBeRgNIRQAzJhRFNktHcYM4vlLBGX9hiqzqp+Rev2GhwvH5uPZ5zZb\nPtY8Z8MoDr47GO727njj2nk+TJC7/zikiD13QZzEQI7xVXp0LlBNCAXARBjXThfdKR3GDOL5SwRl\no5r+OKn6GanXb3iYc+VDPT9Xv/a/r/1vd9/ZcTvj3Hk+bJC7OyD3nk9J4zIdF2aREAqAsTfOnS66\nUzqMGcTzlwjKRjX9cZb0Gx5+rdF6FFQ/z9WPft/Xht157iUMGkSQu3977+8imJsUgrXxYao0jI4Q\nCoCx5xvL8dVtp6p0GDOI5y8VlB12+uMsdVxbBTO/cN+j8Z6PPR733HXHnv1uHpeqAU2dwsNuCmE3\n5Yg4df7SzrXQz/nYfx6f+9YLfb2vDbPz3GtQdtggd5q/cJjmfZtEpkrD6AihABh7vrEcT506Vf0U\niz6Mw4Y94zhqaZo7rq2uj1aBc0TEs89tHri22hWx7iY8bBU6zs+liByx+eLBaKu+0YjVjzy25/H6\nRiPedd+jcflLz8T7Vk603df957FKp/e1YXaee/0C4LBB7jR/4TDN+zaJTJWG0RFCMVCz9G0tMDy+\nsRxP7TpVETGR4ckoira3M60d16pwrd2d0RqbW3HvA4/vFK6u0q6g924rS4tx+UvPxIc/9WRs5Rxz\nKcXdf/PWOPl9N1VuY3PrYDiVI+JDDz8RJ7/vpsptVoVrrXR6X+vUeR7kZ7Gq41y1fH+Qu3BsPnKO\neNd9j8aFi1c7tmWav3CY5n2bFPtfGz/56sX4xGef1m+BITsy6gYwPZofKOsbjchx/QPl2np91E0D\nJtzq8vGozc/tWeYby9Fr16nqFFDRnWFPvTp1/lLcfubBOHX+UtH/v6uuj7mU2v7eRmOzbQCVIuKh\nM2/senrcRx+px9Z2hfKtnOOjj1zb517fW3JE22u722l/3byvrSwtxrnTJ2JxoRYproVu506f2DNC\nbFCfxarOR7vztLK0GA+deWO8/+4745ubL8ZGY7PrtlQFcNPwhcM079skaPXa+Ogj9VhdPh5fPP/m\nrt83gMMTQjEwOhxAKe06XYxOu06Vb/0HY1gd12F/kVR1HWzlfCBw7kUvx6Xqc8u9Dzy+M2qvF1X7\ntLZej6rIZqE239f7WjPo2d95HvRnsa2KWwhWLd+tn7ZM8xcO07xvk0A/BcaH6XgMjA4HUNK4TZOi\n/bSgqulMvvXvzery8Vj9yGN7poHNz6WBd1w7ddAGPdW+aoptcyrdvQ88Hhs93L0uovcOfdXnk163\n21R1bVcVT08Rce9b7hjo+9qgP4sttjlPJdoyjnXZBmWa920S6KfA+BBCMTBqtgDMlk6dKkVfB2R/\ngtF5EErPqjpi+2s19VLbq11tonYBZjNwbnU3uWefax0QLdTmew50erk7Xiftru2qY5tj8PXRBv1Z\n7DDFm/ttyzR/4TDN+zbu9FNgfJiOx8AYZgwwe6qmBU3TFMph1kra78LFqwfu1Lb5Yh74FJKqjthc\nSn1NYek0va+b62P/tXXPXXdUTmv79huO9nxtVX1uufHYfNvfq83Pxc++7hVdX9tVx7ab0US9GvRn\nscO8jn0uZJy4HmF8GAnFwBhmDMBu0/Ctf9Vd3CKGc5e/YU0hqRrxUnVHt07b7+aufvs/NzSDrarj\nurK0GL9w36N9tafq+XZvv/m5JeLgKL4U10YudXvnvd26HU00iLvalfgs1u/reHdb6huNnUCz03mG\nEkr1U9wZHHonhGKgpqHDAQDNjkWr6Rv7w5SShjWFpKqD1m9tr27Cs34CvhuPzbeckrfQYfRSlXaf\nWwbVseym8zvIsHOcPou1mpo77CAXmgb92hj1lxQwqYRQAAC77O9YtDKsYraHqcnTq6oOWj/b7yY8\n62a01P5RBs9XnJN2N2vrZ6TCoDurnZ6vm2PRi8OMzhj0yI5B7xuMC9c29EcIBQCwS6uOxX7DKmY7\n6qnu/W6/VXg2fyTFc996IW4/82DbouDNgK/VKIMqX6u4o92kjFQY5LTLw+zzu9euxIcefmKn9v0g\njpe7kjGtXNvQHyEUADBVDjuSo1MHYtjFbLsZlVOyLkmn7bfbdnP5S2vz8Y1dd7erbzR26izt1wz4\nugkDm46kFGvr9QMjqA4znbKbY7p/nTf84M3xic8+3fN56HbaZTdtqhqdce8Dj3ecErg7gNr9u4cZ\n2eGuZEwr1zb0RwgFAGNAcdPBGMTIl3ajdPopTF1a1T5f/tIzfQUiVdtodX12Ot7N7Z06fyk29o1W\nyhEHgqhmwLe2Xm878mm/rZx3thtxcArhfvtrU3UqTt7qOmq17x98+Imd5+3l2utm2mW313ZViLrR\n2Nw5B61+98LFqy1DwXbP2Y1hTimFYXJtQ3/ahlAppb/R7vGc82cG2xwAmD3jMmVoGoKwQdToWF0+\nHqu/+1hsvni9Sz5/JMWFn/rhodfn6UbVPg9qWlW767Pb410VYuSImEsptnKOuZTiJ199vZB1lYXa\nfPzlN1+IrX2FoJrbfe5bL3Q9nbJq3244eqRyNNHu0KbTdtpde/uvi5989WLb0LDbY90uRG33u+2C\npsOM7Bj1lNJhmob30Hamff96NUvXNgxSp5FQv9zmsRwRbxxgWwBgJo1DcdNxCcIOa2A1OlKHn7s0\njOPaLuDZrd9rqt312e3xbheMNMOkrZzjo4/U4/ce+7PKcKc2Pxf3vuWOeNd9j7Z8vJvwZfdIhap9\nq9r+RmNzZ9pft9dUq/VaXRcffaQe506fqDw/3R7rVqMzumlb1TlK2895GIeZ0jkIwwhPpuU9tMo0\n7d+7167Ehz/15E74/fbX3hrvWznR13ON090oYVIcafdgzvkNbf4IoABgAMahuOm9DzxeGTRMkqoR\nG62Wr63X49T5S3H7mQfj1PlLsbZej4hrwcTm1t4IZ3Mr93Us2gU4g9LLKJVerqnm8WlXQPyltfmu\n2rS6fLyrHK+xuXVg2t5uzZCmap/nUvutNEdbdTP6p0rz3HV73Fut18910enabp6vd933aNxw9Ejc\neGw+UlybQnrjsc7naXX5eNTm5/Y8niLiZ173iqKd7Ga4Ud9oRI7r4Ubz9Tjuz980jNf6KE3L/r17\n7Up88OEn9oTfH3z4iXj3WvXoS2Cw2oZQu6WU/lpK6e+klP7r5p/Dbjyl9KaU0tWU0udSSmdaPH5D\nSum+7cc/lVK6bddjZ7eXX00pLR+2LQAwKr0EJyWsrdcrO/6TdpefVh3pVjU62nVMBxkKDiNgrAoP\nWun2mtp9fKo0i43vN38kHTjeK0uLlfWGurW4UNsJQ6rO8/4pevs1R1s1A4iq41EV2kRcP3et2rBf\nVX2Yfq6Ldtf2/ut5o7EZX3/+hXhpbT6e2mhEzhHzc6nl7zatLC3GudMnYnGhthNevf/uO/seIdKt\n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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "plt.figure(figsize = (20,10))\n", - "plt.scatter(df.spy,simple.resid)\n", - "plt.axhline(0.05,color = 'r')\n", - "plt.axhline(-0.05,color = 'r')\n", - "plt.axhline(0,color = 'black')\n", - "plt.xlabel('x value')\n", - "plt.ylabel('residual')\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 56, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/usr/local/lib/python2.7/site-packages/statsmodels/compat/pandas.py:56: FutureWarning: The pandas.core.datetools module is deprecated and will be removed in a future version. Please use the pandas.tseries module instead.\n", - " from pandas.core import datetools\n" - ] - } - ], - "source": [ - "from statsmodels.stats import diagnostic as dia" - ] - }, - { - "cell_type": "code", - "execution_count": 57, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "p-value of Heteroskedasticity: 0.144075842844\n" - ] - } - ], - "source": [ - "het = dia.het_breuschpagan(fama_model.resid,fama_df[['MKT','SMB','HML','RMW','CMA']][1:])\n", - "print 'p-value of Heteroskedasticity: ', het[-1]" - ] - }, - { - "cell_type": "code", - "execution_count": 58, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(2.8288103783041767, nan, 2.8496563023857964, 0.092640488871836887)" - ] - }, - "execution_count": 58, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "dia.het_breuschpagan(simple.resid,pd.DataFrame(df.spy))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.html b/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.html deleted file mode 100644 index e5124ed..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.html +++ /dev/null @@ -1,225 +0,0 @@ -Many papers in statistics and quantitative finance make heavy use of linear algebra, so you need to have a working knowledge of it in order to read and apply them to your trading. - -

Vectors

- -A vector can be thought of as an arrow pointing from the origin to a specific point. Any vector or point can be represented by its coordinates i.e. an array of numbers, such as \((x,y)\) for a 2-dimensional vector, or \((x,y,z)\) for a 3-dimensional one. We usually write a vector as a column: -\[ \mathbf{v} = \begin{pmatrix} -x \\ y \\ z -\end{pmatrix} \] - -The scalar product of two vectors \( \mathbf{x} \) and \( \mathbf{y} \) in 2-dimensional space is defined as: -\[ \mathbf{x}^T \mathbf{y} = \begin{pmatrix} x_1 & x_2 \end{pmatrix} \begin{pmatrix} y_1 \\ y_2 \end{pmatrix} = x_1 y_1 + x_2 y_2 \] - -This definition can be easily generalized to n dimensional space. Clearly, we cannot take the scalar product of two vectors with different dimensions. - -

Matrices

- -If we have a few vectors \( \mathbf{v}_1, \mathbf{v}_2, \dots, \mathbf{v}_n \) with the same dimension, then we can put them side-by-side to form a matrix. For example, the vectors -\[ v_1 = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} \qquad - v_2 = \begin{pmatrix} 2 \\ 2 \\ 2 \end{pmatrix} \qquad - v_3 = \begin{pmatrix} 3 \\ 1 \\ 1 \end{pmatrix} \] - -can be combined to produce a matrix: -\[ m = \begin{pmatrix} -1 & 2 & 3 \\ -2 & 2 & 2 \\ -3 & 1 & 1 -\end{pmatrix} \] - -m is a 3 × 3 matrix. We typically describe the dimensions of a matrix as \(m \times n\) where m = number of rows and n = number of columns. - -A square matrix is one with as many rows as columns. - -Notation: \(x_{ij}\) refers to a specific value in row \(i\) and column \(j\) of a matrix \(X\). For example, \(x_{23}\) is the number in the second row and third column of \(X\). - -

Python Implementation

- -In Python, the NumPy package deals with linear algebra. The array we learned in the NumPy chapter can be deemed as a vector: - -
import numpy as np
-a = np.array([1,2,3])
-b = np.array([2,2,2])
-c = np.array([3,1,1])
-matrix = np.column_stack((a,b,c))
-print matrix
-print type(matrix)
-[out]:
-[[1 2 3]
- [2 2 1]
- [3 2 1]]
-
- -It is worth noticing that we used column_stack() here to ensure that the vectors are vertical and placed side-by-side to form a matrix. Without the column_stack() function, the vectors will be made horizontal and stacked on top of one another: - -
matrix2 = np.array([a,b,c])
-print matrix2
-[out]:
-[[1 2 3]
- [2 2 2]
- [3 1 1]]
-
- -

Matrix Multiplication

- -How are two matrices multiplied? Suppose \(X = AB\). Each entry \(x_{ij}\) of matrix \(X\) is the scalar product of row \(i\) from matrix \(A\) with column \(j\) from matrix \(B\). This is best illustrated with an example: - -\[ AB = \begin{pmatrix} -a_{11} & a_{12} \\ -a_{21} & a_{22} \\ -a_{31} & a_{32} -\end{pmatrix} -\begin{pmatrix} -b_{11} & b_{12} \\ -b_{21} & b_{22} -\end{pmatrix} = \begin{pmatrix} -x_{11} & x_{12} \\ -x_{21} & x_{22} \\ -x_{31} & x_{32} -\end{pmatrix} \] - -Then -\[ x_{\color{red}11} = a_{{\color{red}1} 1} b_{1{\color{red} 1}} + a_{{\color{red}1} 2} b_{2 {\color{red}1}} \] -\[ x_{\color{red}12} = a_{{\color{red}1} 1} b_{1 {\color{red}2}} + a_{{\color{red}1} 2} b_{2 {\color{red}2}} \] -\[ x_{\color{red}21} = a_{{\color{red}2} 1} b_{1 {\color{red}1}} + a_{{\color{red}2} 2} b_{2 {\color{red}1}} \] -\[ x_{\color{red}22} = a_{{\color{red}2} 1} b_{1 {\color{red}2}} + a_{{\color{red}2} 2} b_{2 {\color{red}2}} \] -\[ \vdots \] - -In NumPy, we can multiply matrices with the dot() function: - -
A = np.array([[2,3],[4,2],[2,2]])
-B = np.array([[4,2],[4,6]])
-x = np.dot(A,B)
-print x
-[out]:
-[[20 22]
- [24 20]
- [16 16]]
-
- -Since matrix multiplication is defined in terms of scalar products, the matrix product \(AB\) exists only if \(A\) has as many columns as \(B\) has rows. It's useful to remember this shorthand: (m × n) × (n × p) = (m × p) which means that an (m × n) matrix multiplied by an (n × p) matrix yields an (m × p) matrix. - -Reversing the order of multiplication results in an error since B does not have as many columns as A has rows: - -
x = np.dot(B,A)
-
- -A natrual consequence of this fact is that matrix multiplication is not commutative. In other words, \(AB \neq BA\) in general. - -

Inverse

- -An identity matrix is a square matrix with ones on the main diagonal and zeros elsewhere. Here is an \(n \times n\) identity matrix: - -\[ I_n = \begin{pmatrix} - 1 & 0 & 0 & ... & 0 \\ - 0 & 1 & 0 & ... & 0 \\ - 0 & 0 & 1 & ... & 0 \\ - \vdots & \vdots & \vdots & \ddots & \vdots \\ - 0 & 0 & 0 & ... & 1 -\end{pmatrix} \] - -Multiplying any matrix by an identity matrix (of the correct shape) is like multiplying a number by 1. Concretely, if \(A\) is an \(m \times n\) matrix, then: -\[ I_mA = AI_n = A \] - -\( A^{-1} \) is the inverse matrix of a square matrix \(A\) if: -\[ AA^{-1} = I = A^{-1}A \] - -Some caveats: -
    -
  • A rectangular matrix will not have an inverse, but it may have a pseudoinverse (not covered in this tutorial).
  • -
  • A square matrix may not have an inverse i.e. it may be "singular".
  • -
  • If a square matrix has an inverse, then its inverse is unique.
  • -
- -Inverse matrices are computed using the Gauss-Jordan method. In NumPy, we use the linalg.inv() function to do it: - -
print matrix
-print '\n-------------------------\n'
-print np.linalg.inv(matrix)
-[out]:
-[[1 2 3]
- [2 2 1]
- [3 2 1]]
-
--------------------------
-
-[[ 0.   -1.    1.  ]
- [-0.25  2.   -1.25]
- [ 0.5  -1.    0.5 ]]
-
- -Now let's check if the multiplication is \(I\): - -
inverse = np.linalg.inv(matrix)
-print np.dot(matrix, inverse)
-print '\n-------------------------\n'
-print np.dot(inverse,matrix)
-[out]:
-[[  1.00000000e+00  -6.66133815e-16   6.66133815e-16]
- [  0.00000000e+00   1.00000000e+00   1.11022302e-16]
- [  0.00000000e+00  -2.22044605e-16   1.00000000e+00]]
-
--------------------------
-
-[[  1.00000000e+00  -4.44089210e-16  -2.22044605e-16]
- [  6.66133815e-16   1.00000000e+00   0.00000000e+00]
- [  0.00000000e+00   0.00000000e+00   1.00000000e+00]]
-
- -Not surprisingly, we ended up with an identity matrix. We can form a non-invertible matrix by making one of its rows a multiple of another: - -
singular = np.array([[1,2,3],[1,2,3],[3,3,3]])
-inv = np.linalg.inv(singular)
-[out]: numpy.linalg.linalg.LinAlgError: Singular matrix
-
- -

Linear Equations

- -A common problem in linear algebra is solving linear equations. Consider the following linear equations: - -\[ 2x + y - z = 8 \] -\[ -3x - y + 2z = -11 \] -\[ -2x + y + 2z = -3 \] - -If we let: -\[ A = \begin{pmatrix} - 2 & 1 & -1 \\ - -3 & -1 & 2 \\ - -2 & 1 & 2 -\end{pmatrix} \qquad -\mathbf{x} = \begin{pmatrix} x \\ y \\ z \end{pmatrix} \qquad -\mathbf{b} = \begin{pmatrix} 8 \\ -11 \\ -3 \end{pmatrix} \] - -Then the linear equations above can be written as \( A\mathbf{x} = \mathbf{b} \) - -If A is invertible, then we can multiply \(A^{-1}\) on both sides of the equation to obtain the solution: -\[ A^{-1}A \mathbf{x} = A^{-1}\mathbf{b} \] -Hence -\[ \mathbf{x} = A^{-1}\mathbf{b} \] - -As long as \(A^{-1}\) exists, we can compute it to solve the linear equations: - -
A = np.array([[2,1,-1],[-3,-1,2],[-2,1,2]])
-b = np.array([[8],[-11],[-3]])
-inv_A = np.linalg.inv(A)
-print np.dot(inv_A, b)
-[out]:
-[[ 2.]
- [ 3.]
- [-1.]]
-
- -The solution is x = 2, y = 3, z = −1. However, computing the inverse matrix is not recommended, since it is numerically unstable i.e. small rounding errors can dramatically affect the result. - -Instead, NumPy solves linear equations by LU decomposition: - -
print np.linalg.solve(A, b)
-[out]:
-[[ 2.]
- [ 3.]
- [-1.]]
-
- -Of course, we get the same solution. We can check the correctness of the solution by substituting x, y and z into the linear equations. - -

Summary

-In this chapter we have introduced vectors, matrices, inverse matrices and linear equations. Some applications in finance include: finding arbitrage opportunities by solving linear equations, computing portfolio variance, etc. In the next chapter, we will introduce modern portfolio theory and CAPM. diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.ipynb b/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.ipynb deleted file mode 100644 index 36f6ff6..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial11 Linear Algebra.ipynb +++ /dev/null @@ -1,281 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "a = np.array([1,2,3])\n", - "b = np.array([2,2,2])\n", - "c = np.array([3,1,1])" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 1]\n", - " [3 2 1]]\n", - "\n" - ] - } - ], - "source": [ - "matrix = np.column_stack((a,b,c))\n", - "print matrix\n", - "print type(matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 2]\n", - " [3 1 1]]\n" - ] - } - ], - "source": [ - "matrix2 = np.array([a,b,c])\n", - "print matrix2" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "A = np.array([[2,3],[4,2],[2,2]])\n", - "B = np.array([[4,2],[4,6]])" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[20 22]\n", - " [24 20]\n", - " [16 16]]\n" - ] - } - ], - "source": [ - "x = np.dot(A,B)\n", - "print x" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "ename": "ValueError", - "evalue": "shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mB\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;31mValueError\u001b[0m: shapes (2,2) and (3,2) not aligned: 2 (dim 1) != 3 (dim 0)" - ] - } - ], - "source": [ - "x = np.dot(B,A)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [2 2 1]\n", - " [3 2 1]]\n", - "\n", - "-------------seperation line------------\n", - "\n", - "[[ 0. -1. 1. ]\n", - " [-0.25 2. -1.25]\n", - " [ 0.5 -1. 0.5 ]]\n" - ] - } - ], - "source": [ - "print matrix\n", - "print '\\n-------------seperation line------------\\n'\n", - "print np.linalg.inv(matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 1.00000000e+00 -6.66133815e-16 6.66133815e-16]\n", - " [ 0.00000000e+00 1.00000000e+00 1.11022302e-16]\n", - " [ 0.00000000e+00 -2.22044605e-16 1.00000000e+00]]\n", - "\n", - "-------------seperation line------------\n", - "\n", - "[[ 1.00000000e+00 -4.44089210e-16 -2.22044605e-16]\n", - " [ 6.66133815e-16 1.00000000e+00 0.00000000e+00]\n", - " [ 0.00000000e+00 0.00000000e+00 1.00000000e+00]]\n" - ] - } - ], - "source": [ - "inverse = np.linalg.inv(matrix)\n", - "print np.dot(matrix,inverse)\n", - "print '\\n-------------seperation line------------\\n'\n", - "print np.dot(inverse,matrix)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1 2 3]\n", - " [1 2 3]\n", - " [3 3 3]]\n" - ] - }, - { - "ename": "LinAlgError", - "evalue": "Singular matrix", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mLinAlgError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0maa\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;32mprint\u001b[0m \u001b[0maa\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0minv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlinalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0maa\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.pyc\u001b[0m in \u001b[0;36minv\u001b[0;34m(a)\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[0msignature\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m'D->D'\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0misComplexType\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mt\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32melse\u001b[0m \u001b[0;34m'd->d'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 525\u001b[0m \u001b[0mextobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_linalg_error_extobj\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_raise_linalgerror_singular\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 526\u001b[0;31m \u001b[0mainv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_umath_linalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msignature\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0msignature\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextobj\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mextobj\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 527\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mwrap\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mainv\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mastype\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mresult_t\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 528\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.pyc\u001b[0m in \u001b[0;36m_raise_linalgerror_singular\u001b[0;34m(err, flag)\u001b[0m\n\u001b[1;32m 88\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_raise_linalgerror_singular\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflag\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 90\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mLinAlgError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Singular matrix\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 91\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 92\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_raise_linalgerror_nonposdef\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflag\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mLinAlgError\u001b[0m: Singular matrix" - ] - } - ], - "source": [ - "aa = np.array([[1,2,3],[1,2,3],[3,3,3]])\n", - "print aa\n", - "inv = np.linalg.inv(aa)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 2.]\n", - " [ 3.]\n", - " [-1.]]\n" - ] - } - ], - "source": [ - "A = np.array([[2,1,-1],[-3,-1,2],[-2,1,2]])\n", - "B = np.array([[8],[-11],[-3]])\n", - "inv_A = np.linalg.inv(A)\n", - "print np.dot(inv_A,B)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[ 2.]\n", - " [ 3.]\n", - " [-1.]]\n" - ] - } - ], - "source": [ - "print np.linalg.solve(A,B)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 2", - "language": "python", - "name": "python2" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.13" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial12 Modern Portfolio Theory.html b/Tutorial Series/Introduction to Financial Python/Tutorial12 Modern Portfolio Theory.html deleted file mode 100644 index 4b8c325..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial12 Modern Portfolio Theory.html +++ /dev/null @@ -1,155 +0,0 @@ -The Modern Portfolio Theory (MPT) suggests how investors should spread their wealth across various assets to minimize risk and maximize return. - -This chapter is mathematically intense, so don't feel demoralized if you don't understand it on your first reading. - -

Risk Aversion

- -In portfolio theory, the riskiness of an asset is often measured by the variance (or standard deviation) of its returns. Risk-averse investors do not want their wealth to fluctuate wildly. - -Risk aversion can be illustrated with a simple example. Which of the following assets do you prefer? -
    -
  • Asset A pays $200 or $0 with 50% probability each.
  • -
  • Asset B pays $400 or −$200 (i.e. you lose $200) with 50% probability each.
  • -
- -The expected payouts of A and B are: -\[ \mathbb{E}(A) = 0.5 \times 200 + 0.5 \times 0 = 100 \] -\[ \mathbb{E}(B) = 0.5 \times 400 + 0.5 \times (-200) = 100 \] - -The standard deviation of their payouts are: -\[ \sigma_A = \sqrt{0.5(200-100)^2 + 0.5(0-100)^2} = 100 \] -\[ \sigma_A = \sqrt{0.5(400-100)^2 + 0.5(-200-100)^2} = 300 \] - -If you are an risk seeker, you may choose asset B, because you can potentially get a higher payout. MPT assumes that investors prefer asset A since both assets have the same expected payout, but asset A has less risk. - -

Portfolio

- -Suppose we invest some fraction \(w_1, w_2, \dots, w_n\) of our wealth in n risky assets (labelled 1 to n), and the remainder \(w_0\) in a riskless asset such as cash in a bank account. - -Clearly \(w_0 + w_1 + \dots + w_n = 1\) since our wealth comprises all those assets. - -Let \(R_0, R_1, \dots, R_n\) be the respective asset returns, then our portfolio return is -\[ R_P = w_0 R_0 + w_1 R_1 + \dots + w_n R_n \] - -Alternatively, we can eliminate \(w_0\) to get -\[ R_P - R_0 = w_1 (R_1 - R_0) + \dots + w_n (R_n - R_0) \] - -Our expected portfolio return is -\[ \mathbb{E}(R_P) = w_0 R_0 + w_1 \mathbb{E}(R_1) + \dots + w_n \mathbb{E}(R_n) \] - -Note that \( \mathbb{E}(R_0) = R_0 \) since the riskless return is known with certainty, by definition. - -

Correlation

- -Before computing portfolio risk, we need to first understand covariance and correlation. They measure the linear relationship between two random variables. - -The covariance of two random variables X and Y is defined as -\[ \text{Cov}(X, Y) = \mathbb{E} \left[ (X-\mathbb{E}(X)) (Y-\mathbb{E}(Y)) \right] \] - -The correlation of X and Y, which is always between −1 and 1, is their covariance after being standardized: -\[ \text{Corr}(X, Y) = \text{Cov} \left( \frac{X-\mathbb{E}(X)}{\sigma_X}, \frac{Y-\mathbb{E}(Y)}{\sigma_Y} \right) = \frac{\text{Cov}(X, Y)}{\sigma_X \sigma_Y} \] - -

Risk

- -Now we are ready to compute portfolio risk, as measured by the variance of portfolio returns: -\[ \text{Var}(R_P) = \text{Var}(w_0 R_0 + w_1 R_1 + \dots + w_n R_n) \] - -Recall that \( \text{Var}(X + c) = \text{Var}(X) \) if c is a known constant, so the term \( w_0 R_0 \) involving the riskless return can be omitted. It will be convenient to use sigma notation: - -\[ \text{Var}(R_P) = \text{Var} \left( \sum_{k=1}^n w_k R_k \right) \] -\[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k R_k - \mathbb{E} \left( \sum_{k=1}^n w_k R_k \right) \right)^2\right] \] -\[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k \, \left( R_k - \mathbb{E}(R_k) \right) \right)^2\right] \] - -So we have a squared sum of n terms. How do we expand it? -\[ \left( \sum_{k=1}^n u_k \right)^2 = (u_1 + \dots + u_n) \, (u_1 + \dots + u_n) \] - -If we expand the brackets on the right hand side, every term has the form \( u_i u_j \) where i and j can be 1, 2, ... , or n. -\[ \left( \sum_{k=1}^n u_k \right)^2 = \sum_{i=1}^n \sum_{j=1}^n u_i u_j \] - -Therefore -\[ \text{Var}(R_P) = \mathbb{E} \left[ \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, (R_i - \mathbb{E}(R_i)) (R_j - \mathbb{E}(R_j)) \right] \] -\[ = \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, \text{Cov}(R_i, R_j) \] - -The last step arises from the definition of covariance. The only thing left is to express portfolio risk in matrix notation: - -\[ \text{Var}(R_P) = \mathbf{w}^T \Sigma \mathbf{w} \] -where -\[ \mathbf{w} = \begin{pmatrix} w_1 \\ \vdots \\ w_n \end{pmatrix} \qquad -\Sigma = \begin{bmatrix} -\text{Cov}(R_1, R_1) & \text{Cov}(R_1, R_2) & ... & \text{Cov}(R_1, R_n) \\ -\text{Cov}(R_2, R_1) & \text{Cov}(R_2, R_2) & ... & \text{Cov}(R_2, R_n) \\ -\vdots & \vdots & \ddots & \vdots \\ -\text{Cov}(R_n, R_1) & \text{Cov}(R_n, R_2) & ... & \text{Cov}(R_n, R_n) -\end{bmatrix} \] - -

Intuition

- -How can we make sense of portfolio risk? Consider a simple case with a riskless asset and only n = 2 risky assets. - -\[ \text{Var}(R_P) = w_A^2 \text{Var}(R_A) + w_B^2 \text{Var}(R_B) + 2w_A w_B \text{Cov}(R_A, R_B) \] - -Portfolio risk can be reduced by choosing two assets that are negatively correlated. This is the benefit of diversification. - -

Mean-Variance Analysis

- -We now try to find a portfolio \( \mathbf{w} = (w_1, ..., w_n) \) that minimizes risk and maximizes return. - -The chart below has risk (standard deviation of returns) on the horizontal axis and expected return on the vertical axis. The 10 black points represent individual stocks, while each green / blue point is a portfolio of stocks: - - - -Notice that all points (i.e. stocks and portfolios) are enclosed by a hyperbola, known as the efficient frontier. - -All portfolios on the efficient frontier have the maximum expected return for a given level of risk, if we only consider portfolios of risky stocks. Can we achieve higher returns by including a riskless asset? Yes. - -

Capital Market Line

- -The black line on the chart is the Capital Market Line (CML). It is tangent to the efficient frontier and cuts the vertical axis at the riskfree return. The point of tangency represents the so-called market portfolio. - -Every point on the CML represents a portfolio comprising the market portfolio and riskless asset in some proportion. Why? - -Suppose some fraction w of a CML portfolio is the market portfolio, and the remainder (1 − w) is the riskless asset. Then its expected return is - -\[ \mathbb{E} (R_P) = w \mathbb{E} (R_{\text{market}}) + (1-w) R_0 \] - -Since there is only n = 1 risky asset, the variance of the CML portfolio return is - -\[ \text{Var} (R_P) = w^2 \text{Var} (R_{\text{market}}}) \] - -Taking square roots, we deduce that a CML portfolio's risk is proportional to the market portfolio's weight: - -\[ \sigma_P = w \sigma_{\text{market}} \] - -This equation can be used to eliminate w in the calculation of expected return: - -\[ \mathbb{E} (R_P) = R_0 + \frac{\mathbb{E} (R_{\text{market}}) - R_0}{\sigma_{\text{market}}} \sigma_P \] - -This proves that when \( \mathbb{E} (R_P) \) is plotted against \( \sigma_P \), we will obtain a straight line: the CML. - -

Portfolio Selection

- -Why is the CML significant? For any given level of risk, CML portfolios have a higher return than those on the efficient frontier, so investors should select any of them according to their risk tolerance. - -Risk-averse investors may give the riskless asset a larger weight in their portfolio. Risk-seeking investors may borrow money (i.e. sell the riskless asset) to invest >100% of their wealth in the market portfolio. - -Regardless of their risk tolerances, all investors should hold the same stocks in the same proportion in the market portfolio. In other words, they should not pick stocks according to their risk tolerance. - -

Diversification

- -What happens to the efficient frontier and hence the CML if we have only 3 stocks (IBM, GE, and PFE) instead of 10? - - - -Since we have fewer stocks to choose from, it's not too surprising that our maximum expected return is lower for any level of risk. - -This demonstrates why diversification is often said to be a "free lunch" in investing. - -

Summary

- -In this chapter we have learnt about the modern portfolio theory. It recommends investors to spread their wealth across many asset classes to maximize returns while minimizing risk. In the next chapter, we will introduce the Capital Asset Pricing Model. - -

Algorithm:

- -Mean-variance analysis is used to optimize portfolios with several strategies. Here we treat Dow 30 stocks as strategy and designed an algorithm to test mean-variance analysis: - - \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.html b/Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.html deleted file mode 100644 index 392b745..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial13 Capital Asset Pricing Model.html +++ /dev/null @@ -1,92 +0,0 @@ -In the financial literature, you may hear terms like the "beta" or "market risk" of an asset. This chapter will explain where these terms come from and how they can be useful. - -

Capital Asset Pricing Model (CAPM)

- -As we shall see later, the name "Asset Pricing" is a bit misleading because the CAPM tells us the expected return, rather than the price, of an asset. - -In the last chapter, we introduced the Capital Market Line (CML) shown in black: - - - -All investors should hold a portfolio on the CML, which is constructed by investing some fraction w of our wealth in the market portfolio and the remainder (1 − w) in the riskless asset. So the return on a CML portfolio is -\[ R = w R_{\text{market}} + (1-w) R_0 \] - -If we let β = w, then the equation above becomes -\[ R - R_0 = \beta (R_{\text{market}} - R_0) \] - -Notice that β is a measure of how sensitive our CML portfolio return is to the market return. Taking expectation on both sides results in the CAPM: -\[ \mathbb{E}(R) - R_0 = \beta (\mathbb{E} (R_{\text{market}}) - R_0) \] - -Taking covariance on both sides instead yields -\[ \text{Cov} (R - R_0, R_{\text{market}}) = \beta \text{Cov} (R_{\text{market}} - R_0, R_{\text{market}}) \] - -Now apply two basic facts about covariance: -
    -
  • \( \text{Cov} (X + c, Y) = \text{Cov} (X, Y) \) where \( c \) is constant
  • -
  • \( \text{Cov} (X, X) = \text{Var} (X) \)
  • -
- -Hence we obtain -\[ \beta = \frac {\text{Cov} (R, R_{\text{market}})} {\text{Var} (R_{\text{market}})} \] - -

Computing β in Practice

- -While the Capital Asset Pricing Model is straightforward, applying it may not be. We first need to choose the timeframe for computing returns: should we use daily, weekly or monthly returns? Then we need to consider the number of data points available for linear regression. For example, if we compute beta using monthly returns in the past 1 year, then we only have 12 data points which is too few. - -Furthermore, the β of an asset can change over time. The following plot is the daily rolling beta of GE stock with a 6-month rolling windows: - - - -The β of GE ranged from 0.1 to 0.5 approximately. This is why you need to be careful when using β. It makes no sense to talk about β without a timeframe in mind. - -The following graph is the rolling p-value of beta. The p-value stays close to zero most of the time. However, during some period it suddenly increased close to 0.1, which corresponds to a 90% confidence interval. This might be caused by some mispricing or market turmoil. - - - -

Market-Neutral

- -A portfolio is market-neutral if its β is zero. In other words, the portfolio's returns are uncorrelated with market returns. We say that it has no "market risk". Some classical market-neutral strategies are pairs trading, beta-hedged equity portfolio and other derivatives strategies. - -We have daily returns of Dow 30 stocks from March 2012 to Jan 2015. For each stock, its β on any given day is computed using the past 6 months' returns. As this 6-month window moves forward in time, β will of course change. - -Once we know how each stock's β has changed over time, we can ask: which stocks' betas are correlated with each other? The table below shows the correlation between each stock's beta. - - - -How can we construct a market-neutral portfolio? Consider two stocks A and B: -\[ R_A = R_0 + \beta_A (R_{\text{market}} - R_0) \] -\[ R_B = R_0 + \beta_B (R_{\text{market}} - R_0) \] - -Let's allocate w on stock A and (1 − w) on stock B, then market neutrality means -\[ w\beta_A + (1-w) \beta_B = 0 \qquad \Rightarrow \qquad - w = \frac{\beta_B}{\beta_B - \beta_A} \] - -As mentioned earlier, \(\beta_A\) and \(\beta_B\) will change with time, so will \(w\) in a market-neutral portfolio. However we can achieve market neutrality with constant \(w\) so long as \(\beta_A\) and \(\beta_B\) have a linear relationship: -\[ \beta_A = m\beta_B + c \] - -Then eliminate \(\beta_A\) to get -\[ w = \frac{\beta_B}{(1-m) \beta_B - c} \] - -If c ≈ 0 then w is roughly constant: -\[ w = \frac{1}{1-m} \] - -Note: If c is signficant, then we need 3 stocks to get zero net beta. Usually 2 stocks are sufficient to cancel out most of the market risk. - -

Example

- -The 6-month rolling betas of PG and KO stocks have a correlation of 93%. The linear relationship between their betas is -\[ \beta_{KO} = -0.0097 + 0.969 \beta_{PG} \] - -Therefore the market neutral weights are -\[ w_{KO} = \frac{1}{1-0.969} = 32.3 \qquad w_{PG} = 1 - w_{KO} = -31.3 \] - -We tested this portfolio both in-sample (March 2012 to Jan 2015) and out-of-sample. It achieved a beta of 0.01 and -0.004 respectively. See the backtest below. - -

Summary

- -This chapter has explained what market risk means in the context of CAPM, and how market risk can be reduced. In the next chapter we will generalize CAPM to multi-factor models, such as the Fama-French models. - -

Algorihtm

- - - \ No newline at end of file diff --git a/Tutorial Series/Introduction to Financial Python/Tutorial14 Fama-French Multi-Factor Models.html b/Tutorial Series/Introduction to Financial Python/Tutorial14 Fama-French Multi-Factor Models.html deleted file mode 100644 index 9d818b1..0000000 --- a/Tutorial Series/Introduction to Financial Python/Tutorial14 Fama-French Multi-Factor Models.html +++ /dev/null @@ -1,96 +0,0 @@ -In previous chapters, we learnt that the Capital Asset Pricing Model (CAPM) treats the market return as the only factor affecting the return of any asset. This chapter will generalize CAPM to multi-factor models of the following form: -\[ R = \alpha + \beta_1 f_1 + \beta_2 f_2 + \dots + \beta_n f_n \] -where each \(f_i\) is a factor. - -

Fama-French Three-Factor Model

- -This model was proposed in 1993 by Eugene Fama and Kenneth French to describe stock returns.[ref] Fama, E F; French, K R (1993). Common risk factors in the returns on stocks and bonds. Journal of Financial Economics. 33: 3. CiteSeerX 10.1.1.139.5892 Freely accessible. doi:10.1016/0304-405X(93)90023-5[/ref] - -The 3-factor model is -\[ R = \alpha + \beta_m MKT + \beta_s SMB + \beta_h HML \] - -where -
    -
  • MKT is the excess return of the market.[ref]mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/f-f_factors.html[/ref] It's the value-weighted return of all CRSP firms incorporated in the US and listed on the NYSE, AMEX, or NASDAQ minus the 1-month Treasury Bill rate.
  • -
  • SMB (Small Minus Big) measures the excess return of stocks with small market cap over those with larger market cap.
  • -
  • HML (High Minus Low) measures the excess return of value stocks over growth stocks. Value stocks have high book to price ratio (B/P) than growth stocks.
  • -
- -Data on these factors can be downloaded from French's website. - -

Model test

- -To test the 3-factor model, we use it to predict returns on NASDAQ US Small Cap Index and NASDAQ US Large Cap Index. We estimate the model with daily returns in the past 6 years. - -Results for US Small Cap returns: - - -The coefficient of SMB is positive, so when small caps outperform large caps, the Small Cap Index will have higher returns, which is not surprising. By comparing the t statistics of those factors, we know that MKT and SMB are more important factors driving the Small Cap Index. - -Results for US Large Cap returns: - - -As expected, the coefficient of SMB is negative for the Large Cap Index. The coefficient of HML is quite low, which suggests that value and growth stocks take approximately the same weight in the Large Cap Index. - -

Factor Returns

- -How do we find out the returns on a single factor? We can do so by constructing a tracking portfolio and computing its returns. For example, if we want a tracking portfolio of the HML factor, we only need to find 4 stocks to construct a portfolio that has MKT and SMB coefficients of 0 and HML coefficient of 1. - -Consider stocks A, B, C, and D whose returns can be explained by the 3-factor model: - -\[ R_A = \alpha_1 + \beta_{11} MKT + \beta_{12} SMB + \beta_{13} HML \] -\[ R_B = \alpha_2 + \beta_{21} MKT + \beta_{22} SMB + \beta_{23} HML \] -\[ \vdots \] - -Let their weights in the tracking portfolio be \(w_A,w_B,w_C,w_D\). We write the coefficients into a matrix: -\[ \Sigma = \begin{pmatrix} - \alpha_1 & \beta_{11} & \beta_{12} & \beta_{13} \\ - \alpha_2 & \beta_{21} & \beta_{22} & \beta_{23} \\ - \alpha_3 & \beta_{31} & \beta_{32} & \beta_{33} \\ - \alpha_4 & \beta_{41} & \beta_{42} & \beta_{43} -\end{pmatrix} \] - -The tracking portfolio is determined by the solution to these linear equations: -\[ w^T \Sigma = \begin{pmatrix} 0 \\ 0 \\ 0 \\ 1 \end{pmatrix} \] - -Economic interpretation: The 3 Fama-French factors represent "systematic risk" which cannot be reduced by diversification. Investors earn those factor returns for taking such risks. Any idiosyncratic risk, or firm-specific risk, can be diversified away and so investors are not paid to take such risks. - -

Other Factors

- -The Fama-French 5-Factor model comprises two more factors: -
    -
  • RMW (Robust Minus Weak) measures the excess returns of firms with high operating profit margins over those with lower profits.
  • -
  • CMA (Conservative Minus Aggressive) measures the excess returns of firms investing less over those investing more.
  • -
- -RMW was proposed by Novy-Marx (2013)[ref]Robert Novy-Marx (2013) The Other Side of Value: The Gross Profitability Premium Journal of Financial Economics 108 (1), 1-28. Retrieved from rnm.simon.rochester.edu/research/OSoV.pdf[/ref] who wrote that: - -
"Controlling for gross profitability explains most earnings related anomalies, and a wide range of seemingly unrelated profitable trading strategies."
- -CMA was proposed by Fama and French (2014)[ref]Fama, E F; French, K R (2015). A Five-Factor Asset Pricing Model. 116: 1–22. doi:10.1016/j.jfineco.2014.10.010. Retrieved from www8.gsb.columbia.edu/programs/sites/programs/files/finance/Finance%20Seminar/spring%202014/ken%20french.pdf[/ref] who pointed out that: - -
"A five-factor model directed at capturing the size, value, profitability, and investment patterns in average stock returns is rejected on the GRS test, but for applied purposes it provides an acceptable description of average returns."
- -Finally, momentum is another commonly used factor. It captures excess returns of stocks with highest returns over those with lowest returns - -

Summary

- -In this chapter we expand Capital Asset Pricing Model (CAPM) into multi-factor models: the Fama-French factor models in particular. They are the most empirically successful multi-factor models by far, and are commonly used in practice. - -

Algorithm

- -Multi-factor strategies are stock picking strategies. Here we try to implement a 2013 paper published by AQR Capital Management.[ref]AQR (2013). A New Core Equity Paradigm: Using Value, Momentum, and Quality to Outperform Markets. Retrieved from www.aqr.com/~/media/files/papers/aqr-a-new-core-equity-paradigm.pdf[/ref] - -The paper recommends picking stocks by their value, quality (profitability) and momentum. - -The empirically successful measure of value is book-to-price ratio (B/P), but other measures can be used simultaneously to form a more robust and reliable view of a stock's value. The paper uses 5 measures: book-to-price, earnings-to-price ratio (EPS), forecasted EPS, cash flow-to-enterprise value and sales-to-enterprise value. - -The paper suggested a few quality measures: total profit over assets, gross margin and free cash flow over assets. - -There are also various measures of momentum. 1-year momentum, fundamental momentum and returns around earnings announcement are good choices. - -In our backtested strategy, we used operating profit margin to measure quality, P/B value to measure value, and 1-month momentum. The portfolio was rebalanced every 2 months and our backtest period runs from Jan 2012 to Jan 2015. - -You can build your own version by changing the factor, the weight of each factor, and the rebalance period based on the backtested strategy. - - diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot1.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot1.png deleted file mode 100644 index 8eb124f..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot1.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot2.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot2.png deleted file mode 100644 index 4e921ed..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot2.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot3.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot3.png deleted file mode 100644 index 3ba71b2..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot3.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot4.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot4.png deleted file mode 100644 index 4e482e2..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot4.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot5.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot5.png deleted file mode 100644 index f49da9e..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot5.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot6.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot6.png deleted file mode 100644 index 0f1f6c4..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial07-plot6.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-compare.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial10-compare.png deleted file mode 100644 index 2dbfe74..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-compare.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-fama.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial10-fama.png deleted file mode 100644 index cc5025f..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-fama.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-residual.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial10-residual.png deleted file mode 100644 index 2f603d3..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-residual.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-variance.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial10-variance.png deleted file mode 100644 index 81786c2..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial10-variance.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-head.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial9-head.png deleted file mode 100644 index 4d7356d..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-head.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot1.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot1.png deleted file mode 100644 index 8be5acc..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot1.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot2.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot2.png deleted file mode 100644 index b4c75c1..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-plot2.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-regression table.png b/Tutorial Series/Introduction to Financial Python/images/Tutorial9-regression table.png deleted file mode 100644 index ea07f60..0000000 Binary files a/Tutorial Series/Introduction to Financial Python/images/Tutorial9-regression table.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial07 Unsupervised Reinforcement Mechanism and Implementation of Q-Learning Algorithms.html b/Tutorial Series/Introduction to Machine Learning/Tutorial07 Unsupervised Reinforcement Mechanism and Implementation of Q-Learning Algorithms.html deleted file mode 100644 index e69de29..0000000 diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial08 Association Rule and Market Trend Analysis with Apriori Algorithms.html b/Tutorial Series/Introduction to Machine Learning/Tutorial08 Association Rule and Market Trend Analysis with Apriori Algorithms.html deleted file mode 100644 index e69de29..0000000 diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial09 Centroid Rebalance and Stock Classification with K-Nearest Neighbors.html b/Tutorial Series/Introduction to Machine Learning/Tutorial09 Centroid Rebalance and Stock Classification with K-Nearest Neighbors.html deleted file mode 100644 index e69de29..0000000 diff --git a/Tutorial Series/Introduction to Machine Learning/Tutorial10 Optimizing Technical Indicators by Simulating Evolution Processes to Construct Genetic Algorithms.html b/Tutorial Series/Introduction to Machine Learning/Tutorial10 Optimizing Technical Indicators by Simulating Evolution Processes to Construct Genetic Algorithms.html deleted file mode 100644 index e69de29..0000000 diff --git a/Tutorial Series/Introduction to Machine Learning/images/placeholder.txt b/Tutorial Series/Introduction to Machine Learning/images/placeholder.txt deleted file mode 100644 index e69de29..0000000 diff --git a/Tutorial Series/Introduction to Options/Tutorial00 Introduction to Options.html b/Tutorial Series/Introduction to Options/Tutorial00 Introduction to Options.html deleted file mode 100644 index 52f68c2..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial00 Introduction to Options.html +++ /dev/null @@ -1,115 +0,0 @@ -

About

-

The goal of this series is to introduce options to those who are option novices and have basic knowledge of applied mathematics, statistics and financial markets. We will primarily talk about the fundamentals of options and cover topics such as what are options, key terms and concepts option traders need to be familiar with(exercise and assignment, The moneyness, Intrinsic and time value of options etc.) After knowing the basics of options, we will teach how to use QuantConnect API to conduct your options research with over 4000 underlying stock symbols.

-

The following few options tutorials were created to help you understand exactly how options are used as the investment and risk hedging tools. We will further discuss the pricing method of options like BSM model and Monte Carlo method. And then several metrics to gauge the options risks like the Greek letters, different kinds of volatilities used in options pricing and trading. At the end of some tutorials, we will apply the knowledge in that tutorial to demonstrate some simple algorithms developed with Python on Quantconnect attempting to help you gain an insight into options trading and learn more efficient API tools to better customize your own trading algorithms.

- -
-
- -

-

8 Tutorials

-
-
- -

-

3 Backtests

-
-
- -

-

65 Code Snippets

-
-
-

What Will I Learn?

-
-
General Features of Options
-
QuantConnect Options API
-
Options Pricing: Black-Sholes-Merton Model
-
Stochastic Process
-
Monte Carlo Method
-
The Greek Letters
-
Historical Volatility and Implied Volatility
-
Local Volatility and Stochastic Volatility
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1 -

General Features of Options

-Options Contracts -The Value of Options -Option Moneyness -Option Exercise and Assignment - Read Tutorial
2 -

QuantConnect Option API

-Option Data Access -Option Contracts filtration -Properties of Contracts -Order Placement - Read Tutorial
3 -

Put-Call Parity and Arbitrage Strategies

-Options Payoff -Put-Call Parity -Synthetic Positions -Arbitrage Strategy - Read Tutorial
4 -

Stochastic Processes and Monte Carlo Method

-Brownian Motion -Wiener Process -Monte Carlo Simulation of Stock Price -Monte Carlo Simulation of European Options Price - Read Tutorial
5 -

Options Pricing: Black Scholes Merton Model

-Determinants of Options Price -Factors of BSM model -Model Assumptions -BSM pricing Formulas - Read Tutorial
6 -

The Greek Letters

-Delta (definition, impact factors, charts) -Gamma (definition, impact factors, charts) -Vega (definition, charts) -Theta (definition, charts) -Rho (definition, charts) - Read Tutorial
7 -

Historical Volatility and Implied Volatility

-Historical Volatility (Definition, Calculation) -Implied Volatility(Definition, Calculation, affect factors) -Volatility Smile -Volatility Skew - Read Tutorial
8 -

Local Volatility and Stochastic Volatility

-Local Volatility (Definition, Calculation) -Stochastic Volatility(Definition, Calculation) - Read Tutorial
diff --git a/Tutorial Series/Introduction to Options/Tutorial01 General Features of Options.html b/Tutorial Series/Introduction to Options/Tutorial01 General Features of Options.html deleted file mode 100644 index c946c4a..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial01 General Features of Options.html +++ /dev/null @@ -1,128 +0,0 @@ -

Introduction

-In this tutorial, we will discuss the basic features of options to help you gain insight on what the option is, how options markets are organized and how these contracts are traded. Then we will discuss the settlement rules of option contracts and the moneyness of options. -

1. Definition

-
-
-
- -An option is a type of financial derivative. Derivatives are financial contracts and its value is dependent on or derived from underlying assets. The underlying assets could be stocks, indices, commodities, currencies, exchange rates, or the interest rate. When you trade options contracts, it can help you generate profits by betting on the future value or just the moving direction of the underlying assets. So, their value is derived from that of the underlying asset. This is why options are called derivatives. - -Puts and calls are two basic classes of options. Call options give the buyer the right to buy the underlying asset at a certain price while put options endow the buyer the rights to sell them. For strict definition, a call/put option is a standardized contract that gives the buyer the right to buy/sell an agreed quantity n of underlying asset S, at a predetermined price K at maturity T. The seller of a call/put option is obliged to sell/buy the underlying assets if the buyer exercises the option. - -
-
-
-First, we give the building blocks of an option contract and will discuss them further. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StyleAmerican Option: the holder of an option has the right to exercise his option at any time before the expiration date -European Option: an option which can only be exercised on its expiration date
TypeCall option, Put option
Underlying AssetThe security on which the option is bound. The underlying could be stocks(stock option), stock indices(index option), exchange rate(Foreign exchange option) or even futures(Futures Options). -Note: The options in the tutorial refer to the stock options.
PremiumThe price of the option. (Premiums are quoted on a per share basis). -The option premium depends on the strike price, volatility of the underlying, as well as the time remaining to expiration.
Strike PriceThe specified price at which the stock can be bought or sold when the option is exercised.
Expiration DateThe last day that an options contract is valid. All options expire after a certain period of time. The right to exercise the option will no longer exist once the stock option expires.
ParticipantsHolder: People who buy the options(have long positions) -Writer: People who sell the options(have short positions)
-

2. Options Contracts

-Stock options are traded in units. Each contract entitles the option buyer/owner 100 shares of the underlying stock upon expiration. Thus, if you buy five call option contracts, you are acquiring the right to purchase 500 shares at expiration.  For any given asset at any given time, an option can be bought or sold with multiple expiration dates and strikes. Suppose there are three expiration dates and four strike prices for options on a particular stock, there are a total of 24 different contracts if we consider both put and call options. Currently, all equity options traded on U.S. options exchanges are American-style. But many index options are European-style. - -Let us use the example of Apple. You can buy and sell Apple shares (NASDAQ: AAPL), and you can also buy and sell Apple options. But not all stocks have options associated with them. This means that there may be no options available to buy or sell written on a certain stock. You can view the websites of the exchanges to find out which stocks do have options. - -In this case, the stock AAPL is known as the underlying asset. The share price of AAPL is the underlying price. And a series of options contracts written on Apple are derivatives. Option contracts have their own symbols. For example, AAPL170728C00143000 is one of the option contracts, it is a call option and the strike price is $143. The contract expires on July 28th. The premium for this contract is $10. If you spend $10 cost on buying one contract, then you get the right to buy 100 shares of AAPL for $143 per share at any time before the expiration date. -

3. The Value of Options

-The option's premium consists of two parts: the intrinsic value and the time value. - -\[Intrinsic Value_{call} = max(Current Underlying Price-Strike Price,0)\] -\[Intrinsic Value_{put} = max(Strike Price-Current Underlying Price,0)\] - -From the equations above, only in the money options have intrinsic value.  After we know the intrinsic value, the time value is the difference between the options premium and the intrinsic value. - -\[Time Value= Premium-Intrinsic Value\] - -For example, an AAPL call option contract which expires after 10 days has strike $143 and premium $10. now the market price of GOOG is $160. The intrinsic value of this contact is 160-143=$17, the time value is 17-10=$7. Although the intrinsic value of OTM and ATM options is zero, they have time values if they still have a certain amount of time until the option expires so for OTM and ATM options, their premiums equal their time values. -
-
-
-

4. Option Moneyness

-Option moneyness describes the relationship between an option's  strike price and the underlying asset's price. It has important implications for options trading. - -
-
-
-
- - - - - - - - - - - - - - - -
At the Money(ATM)The strike price is the same as the current price of the underlying asset
In the Money(ITM)Call Option: the strike price is below the current trading price of the underlying -Put option:  the strike price is above the spot price of the underlying
Out of the Money(OTM)Call Option: the strike price is above the current trading price of the underlying -Put Option: the strike price is below the current trading price of the underlying
-
-

 For example, if the price of Apple stock is at $140, then all calls with a strike price below $140 are in the money calls, all puts with a strike price above $140 are in the money puts.  All calls with a strike price above $140 are out of the money calls, all puts with a strike price below $140 are out of the money puts.

-

But why are they in the money or out of the money? For a call option as an example, it is ITM because it already has an intrinsic value. If you buy the call option and own the right to buy AAPL at strike price $143 and the current market price is $150, then this call option is in the money 150-143=$7. If you need to exercise it, you can buy shares of AAPL at $143 and sell them immediately for $150 and secure $7 profit.

-Likewise, for a call option, it is OTM because it doesn't have any intrinsic value. If you buy the call option and own the right to buy AAPL at strike price $143 and the current market price is $130, then this call option is out of the money 130-143=$13. If you need to exercise it, you can buy shares of AAPL at $143 and sell them immediately for $130 and then you will lose $13. In this case, you would not do that. But why this kind of OTM options still traded in the market and you need to pay for them? That because they still have time values and have time to expiration. There is probability or there is expectation from the OTM option holders that the apple price will go up and above the strike price before the expiration. -

5. Option Exercise and Assignment

-When you are the buyer of an option you have three ways to deal with your options. -
    -
  1. You can close out the position at any given point prior to expiration (For buyers, write options and for sellers, buy options);
  2. -
  3. Wait until expiration date and out-of-the-money options will become worthless;
  4. -
  5. Exercise the options which are in-the-money, resulting in a trade of the underlying stock (The seller will be assigned the obligation to sell or buy the underlying stocks)
  6. -
-For all of those methods, closing out an option in the market is the most frequently used method. At the expiration, you need to deal with the option exercise if you long the options. If you short put or call options, you have to think about the assignment. -
    -
  1. Exercise: Exercising option means that the option holder executes the right to buy or sell the underlying assets at the strike price.
  2. -
  3. Assignment: When an option is exercised by the option holder, the option writer will be assigned the obligation to deliver the terms of the options contract. This is called the option assignment.
  4. -
-
-
-
- -To be concrete, if you write a call option and the option holder decides to exercise, then you must sell the obligated quantity of the underlying security at the strike price to the option holder. Suppose you hold the underlying shares while writing the call option (covered call), those shares would be transferred from you to your counterpart. If you do not hold those shares in your account (naked call), you would then short those shares and deliver them to your counterpart. In another case, if you short a put and the holder decides to exercise, then you must buy those shares. You would now long shares in your account and don't hold options. - -
-
-

Summary

-

An option is a standardized contract between two parties to buy or sell an asset for a certain price. Options are pretty different from equity trading. Here we concerned primarily with the stock options. This chapter we present some introductory material on options market like the basic features of options contracts and the options trading mechanism. In addition, we explain how options markets are organized, how the contracts are traded. Next chapter we will take a close look at how to use QuantConnect API to start your options trading algorithm.

- -
-
-
-
-
diff --git a/Tutorial Series/Introduction to Options/Tutorial03 Put-Call Parity and Arbitrage Strategies.html b/Tutorial Series/Introduction to Options/Tutorial03 Put-Call Parity and Arbitrage Strategies.html deleted file mode 100644 index b802cc8..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial03 Put-Call Parity and Arbitrage Strategies.html +++ /dev/null @@ -1,158 +0,0 @@ -

Introduction

-In this chapter, we will discuss the option's payoff if you long or short the options. Then we discuss the put call parity which is a relationship between the price of a European call option, the price of a European put option, and the underlying stock price. In addition, an application of put-call parity in arbitrage trading strategies was demonstrated. -

Option Payoff

-Consider Google(NASDAQ: GOOG) is trading at $910 now and you are bullish on this stock and expect it to rise over the next three months. The minimum capital requirement to buy 100 shares of GOOG is $90000 but you only have limited capital for stock investors. You could buy 1 call option contract written on GOOG which expires after three months with a $900 strike price. If GOOG rises to $950 in three months, you can get  ($950 - $900) *100 = $5000 by paying just a small amount of premium instead of a full cost of shares. Even if the share price of GOOG falls below $900, you lose only the premium. This is one of the biggest benefits of trading options and is also called the financial leverage. Without borrowing the capital, you can control a larger number of shares by investing in options other than purchasing the shares themselves. - -From the above example, [ref]Bouzoubaa M, Osseiran A. Exotic options and hybrids: A guide to structuring, pricing and trading[M]. John Wiley & Sons, 2010.[/ref] The investor will buy a European call if he has a bullish view on the market and believes the underlying stock price will be above the strike price at the expiry date. He will make money when the underlying price goes up and lose when it goes down. The payoff of a call option at T is - -\[Call_{payoff}=max[0,S_T-K]\] -
-
-
- -On the other hand, an investor will buy a European put if he is bearish about the market and believes that the underlying stock price will be below the strike at the expiry date. He will make money when the underlying price goes down and lose when it goes up. The European put payoff at T is - -\[Put_{payoff}=max[0,K-S_T]\] - -
-
-
-Where \(S_T\) is the price of underlying assets at maturity. K is the strike price. - -We use the GOOG option contract to show the call and put option payoff. The current share price of GOOG is $945 at 07/12/2017. - - - - - - - - - - - - - - - - - - - - - - - - - - -
Contract NameTypeExpire DateStrike Premium
 GOOG170714C00940000 Call 07/14/2017$ 940 $7.5
GOOG170714P00960000 Put 07/14/2017 $960 $19.5
-If you long these two options, the payoff at expire date would be as follows -
import matplotlib.pyplot as plt
-%pylab inline
-price = np.arange(900,1000,1)
-strike = 940
-premium = 7.5
-payoff = [max(-premium, i - strike-premium) for i in price]
-plt.plot(price, payoff)
-plt.xlabel('Price at T S_T ($)')
-plt.ylabel('payoff')
-plt.title('Call option Payoff at Expiry')
-plt.grid(True)
-price = np.arange(900,1000,1)
-strike = 960
-premium = 19.5
-payoff = [max(-premium, strike - i -premium) for i in price]
-plt.plot(price, payoff)
-plt.xlabel('Price at T S_T ($)')
-plt.ylabel('payoff')
-plt.title('Put option Payoff at Expiry')
-plt.grid(True)
-
-call options payoff     put options payoff - -The above payoff diagrams illustrate the cash payoff on an option at the expiration date. For a call option, the net payoff is negative if the price of the underlying asset is less than the strike price(The negative payoff comes from the premium). If the underlying price exceeds the strike price, the gross payoff is the price of the underlying asset minus the strike price and the premium. For a put option, the net payoff is positive if the underlying price is less than the strike price. If the price of the underlying asset exceeds the strike price, the gross payoff is negative because you pay premuim for purchasing the contracts. -

2. Put-Call Parity

-Put-Call parity describes the relationship between the price of a European put and a call options with the identical strike price K, expiry T and their underlying stock's price. Next we will demonstrate how to derive the put-call parity according to John Hull's book. - -We consider two portfolios as follows, - -Portfolio A: buy one European call option (underlying non-dividend-paying stock S, strike K, expiring at T) plus a zero-coupon bond which pays K at T - -Portfolio B: sell one European put option (underlying non-dividend-paying stock S, strike K, expiring at T) plus one share of underlying stock S - - - - - - - - - - - - - - - - - - -
 Payoff \(S_t > K\)\(S_t < K\)
Portfolio A\(S_t - K+K=S_t\)\(0+K=K\)
Portfolio B\(0+S_t =S_t\)\(K-S_t+S_t=K\)
-From the above table we can see that in all states, Portfolio A has the same payoff at the options' expiration date as Portfolio B. Thus the present value of two portfolio must be the same. Otherwise, an investor can make risk-free profits by purchasing the undervalued portfolio and selling the overvalued portfolio and holding the position to maturity. Then we have the price equality(suppose the present price of stock S is \(S_0\) ) - -\[Price_{call}+Ke^{-rT}=Price_{put}+S_0\] - -If the dividend is paid during the option holding period, the share holder of the stock would receive that additional amount, but the option owner would not. For a dividend-paying stock, the put–call parity relationship is(D is the present value of dividends): - -\[Price_{call}+D+Ke^{-rT}=Price_{put}+S_0\] -

3. Synthetic Positions

-
-
-
- -Through the put-call parity, we can find that there is a synthetic equivalent for all of the basic positions in an underlying assets and its corresponding options. In other words, the risk profile(the possible profit or loss) of any position can be exactly duplicated with a complex combination of the other basic positions. These equivalents are synthetic underlying and synthetic options. - -[ref]Put-Call Parity and Arbitrage Opportunity, Jim Graham, February 6, 2017 Online Copy[/ref]The rule for creating synthetics is that the strike price and expiration date, of the calls and puts, must be identical. For creating synthetics, with both the underlying stock and its options, the number of shares of stock must equal the number of shares represented by the options. - -There are many arbitrage strategies based on the idea of the synthetic position. Here we demonstrate two of the most common strategies: the conversion and the reversal. - - - - - - - - - - - - - - - -
StrategyContent
ConversionSynthetic Short Position: short call + long put -The actual stock position: long the underlying stocks
ReversalSynthetic Long Position: long call + short put -The actual stock position: short the underlying stocks
-Traders use conversions when options are overpriced  relative to the underlying stock and use reversals when options are relatively underpriced. -

Algorithm

- -

Summary

-
-
-
- -In this chapter, we derived an important relationship between the prices of European put and call options that have the same strike price and time to maturity by constructing two portfolios. Then we described the synthetic positions, a common concept which is always used in arbitrage trading strategies. Finally two simple arbitrage strategies conversion and reversal are demonstrated on QC platform to help you get a better understanding of how to implement algorithms with simple option mechanism. - -Next chapter we will dig into the famous option pricing model-Black Sholes Merton Model and discuss how to apply BSM in European options pricing. - -
-
-
-  - -  - -
-
-
diff --git a/Tutorial Series/Introduction to Options/Tutorial04 Stochastic Processes and Monte Carlo Method.html b/Tutorial Series/Introduction to Options/Tutorial04 Stochastic Processes and Monte Carlo Method.html deleted file mode 100644 index e247c0d..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial04 Stochastic Processes and Monte Carlo Method.html +++ /dev/null @@ -1,180 +0,0 @@ -

Introduction

-Last few chapters we introduced about the basic principles and mechanism of options trading. We already knew what an option contract is and the basic relationship between call and put options' price. But how do these contracts traded in the exchange are being priced and where does the option premium come from? In the next few chapters, we will discuss the pricing of options. -

Stochastic Process

-In order to value the derivatives like options, the most significant part is to find a model to represent the underlying stock price so that we can price the options based on the underlying price.  We usually use the stochastic process to model the security price. - -First, you need to know what the stochastic process is. We say any variable that changes over time in an uncertain way follows a stochastic process. The price of a certain stock at a future time t is unknown at the present so it is a random variable \(S_t\). Then we can think of the movement path of the stock price is a stochastic process since\(S_t\) is a random variable at each time t in the future. -

1. Brownian motion

-Markov process is a special case of the stochastic process. It means that only the current value of a random variable is relevant for future prediction. In general, we usually assume that the stock price follows a Markov stochastic process, which means only the current stock price is relevant for predicting the future price, it is not correlated with the past price. -
-
-
- -Brownian motion is a particular type of Markov stochastic process or we can think of it as a family of random variables {\(W_t\mid t\geq0} \)} indexed by time t. The one-dimensional Brownian motion is called Wiener Process. (Brownian motion is n-dimensional Wiener processes which mean each dimension is just a standard Wiener process). It has the following properties: -
    -
  1. \({W_0=0\)
  2. -
  3. For \(t\geq0\) and \(\Delta t\geq0\), the increment \(W_{t+\Delta t}-W_t\) is normally distributed with mean 0 and standard deviation \(\sqrt{\Delta t}\) .
  4. -
  5. For any partitions \(0\leq t_1<t_2<\cdot\cdot\cdot <t_n\), the increments \(W_{t_1}- W_{t_0},W_{t_2}-W_{t_1},\cdot\cdot\cdot, W_{t_n}-W_{t_{n-1}}\) are independent random variables.
  6. -
  7. With probability 1, the function W(t) is continuous at t.
  8. -
-Intuitively understanding of the definition, Wiener process has independent and normally distributed increments and has continuous sample path. - -Next, we simulate the Wiener process and plot the paths attempting to gain an intuitive understanding of a stochastic process. Each path is an independent Wiener process. -
import numpy as np
-import matplotlib.pyplot as plt
-%pylab inline
-def wiener_process(T, N):
-    """
-    T: total time
-    N: The total number of steps
-    """
-    W0 = 0
-    dt = T/float(N)
-    # simulate the increments by normal random variable generator
-    increments = np.random.normal(0, 1*np.sqrt(dt), steps)
-    W = [0] + list(np.cumsum(increments))
-    return W
-t = np.linspace(0.0, N*dt, N+1)
-plt.figure(figsize=(15,10))
-for i in range(5):
-    W = wiener_process(10, 1000)
-    plt.plot(t, W)
-    plt.xlabel('time')
-    plt.ylabel('W')
-    plt.grid(True)
-
-
-
-
-wiener process -
-
-
- -[ref]Hull J C. Options, futures, and other derivatives[M]. Pearson Education India, 2006.[/ref]In ordinary calculus,\(\text{d}x=a\ \text{d}t\) is used to indicate that\(\Delta x=a\Delta t\) as \( \Delta t\rightarrow0\). We use the similar notation here. The mean change per unit time for a stochastic process is known as the drift rate and the variance per unit time is known as the variance rate. We can write the derivative of Wiener process over time t in this form: \(dW_t\).A standard Wiener process has a drift rate (i.e. average change per unit time) of 0 and a variance rate of 1 per unit time. If we extend the concept of Wiener process to a generalized Wiener process in the form: \(\text d\ x_t=a\ \text d t+b\ \text dW_t\). The drift rate and the variance rate can be set equal to any chosen constant. If we write it as approximate discrete form as - -\[\Delta x=x_{t+\Delta t}-x_t=a\Delta t+b\epsilon\sqrt{\Delta t}\] - -Where ε follows the standard normal distribution N(0,1). Thus \(\Delta x\) has normal distribution with mean being \(a\Delta t\), variance being \(b^2\Delta t\). And because \(\Delta t\) is independent, from time 0 to time T, the change in the value of x is just the sum of \(\Delta x\) in each small time interval. It means that the change in the value of x follows the normal distribution \(N(aT,b^2T)\). -

2. Stochastic process followed by stock price

-Then we go back to the stock price. If we use the generalized Wiener process to model the stock price, for example, the share price of a stock is $30 now, then the percentage change in price from now to say the end of this year is normally distributed with constant mean and variance. But there is a problem that for normal distribution assumption of return, there is the possibility that the stock price will be negative this is unrealistic for stock prices. For example, this percentage change could be -1.1, which means the stock price at the end of the year is -$3. - -On the other hand, if the spot price is small for a stock, then it tends to have small increments in price over a given time interval, on the contrary, stocks with high prices tend to have much larger increments in price on the same interval. But Wiener process has a variance which depends on just the time interval but not on the price itself. Thus it is not appropriate to assume that a stock price follows a generalized Wiener process with constant drift rate and variance rate. - -In order to characterize the dynamics of a stock price process and fix this problem, we model the proportional increase in the stock price as follows(This kind of equation is often called the stochastic differential equation (SDE)): - -
-
-
-
-
-
- -\[\text dS_t=\mu S_t\ \text d t+\sigma S_t\ \text dW_t \cdot\cdot\cdot\cdot\cdot\cdot(1)\] - -Where \(dS_t\) is the change in the stock price over a short time period from t to\(t+\Delta t\). μ is the drift term and can be deemed as the annual expected level of the stock return, σ is the annual volatility of the stock. Here \(dS_t\) at different time t are independent, which means today's price change is independent with tomorrows change. \(W_t\) is a standard Wiener process (1) we discussed above. -
-
-
- -Now in the above equation, the drift and variance rate of stock price S is not only correlated with time t but also a function of both S itself and time t. - -
-
-
-The discrete approximation form of (1) is - -\[\Delta S=\mu S\Delta t+\sigma S\epsilon\sqrt{\Delta t}\] - -We can also derive the process that \(lnS_t\) follows is(Here we just give the result, the derivation should use the Ito Lemma): - -\[\text d\ ln(S_t)=(\mu-\frac{\sigma^2}{2}) \ \text d t+\sigma \ \text dW_t \cdot\cdot\cdot\cdot\cdot\cdot(2)\] - -Here ln S follows a generalized Wiener process as which has constant drift rate and variance rate. That means the change in ln S during time interval  \(\Delta t\) is normally distributed. This is the lognormal property of stock prices. - -\[lnS_{t+\Delta t}-lnS_t\sim N\left[(\mu-\frac{\sigma^2}{2})\Delta t,\sigma^2\Delta t\right]\] - -\[lnS_{t+\Delta t}\sim N\left[\text ln{S_t}+(\mu-\frac{\sigma^2}{2})\Delta t,\sigma^2\Delta t\right]\] - -Now the logarithm stock price follows the normal distribution.We write (2) into discrete approximation form as: - -\[ln(S_{t+\Delta t})-ln(S_{t})=(\mu-\frac{\sigma^2}{2})\ \Delta t+\sigma \epsilon\sqrt{\Delta t}\] - -Equivalently - -\[S_{t+\Delta t}=S_{t}\exp\left[(\mu-\frac{\sigma^2}{2})\ \Delta t+\sigma \epsilon\sqrt{\Delta t}\right]\cdot\cdot\cdot\cdot\cdot\cdot(3)\] - -If we change t to 0 and change \(\Delta t\) to T, we get - -\[S_{T}=S_{0}\exp\left[(\mu-\frac{\sigma^2}{2})\ T+\sigma \epsilon\sqrt{T}\right]\] - -according to the above equation, we know the stock price at time T should always greater than 0, the problem for negative price is fixed. Thus we say stock price S is a Geometric Brownian motion because the logarithm of S follows a Brownian motion. -
-
-
-

Monte Carlo Method

-Monte Carlo method divides a time interval into many small time steps and randomly sampling possible paths for the variable, then repeats this process many times attempting to predict all the possible future outcomes of random variables. -

1. Monte Carlo Simulation of Stock Price

-We apply this technique to modeling stock prices in order to look at the potential evolution of stock prices over time and then demonstrate how to price the European options. Here we use Google as an example. Suppose today is 07/31/2017, the share price of GOOG is $930.5. We use the historical close price from 01/2015 to 07/2017 to compute the historical annual return and volatility as the mu and sigma parameters. (Note, we do not need to concern with the detailed determinants of 􏰯\(\mu\) because the value of options written on a stock is, in general, independent of􏰯 \(\mu\). In contrast, the stock price volatility \(\sigma\) is of crucial importance to the determination of the value of options). Consider GOOG that pays no-dividends, has an expected return 39.64% per annum with continuous compounding and a volatility of 23.44% per annum. Observe today’s price $903.5 per share and with ∆t = 0.001 yr. Then we apply Monte Carlo to simulate 500 price paths in the next three months. -
import quandl
-quandl.ApiConfig.api_key = 'NxTUTAQswbKs5ybBbwfK'
-data = quandl.get('WIKI/GOOG')
-close = data['2015-01':'2017-07']['Adj. Close']
-annual_return = (close[-1]/close[1])** (365.0/len(close)) - 1
-annual_vol = (close/close.shift(1)-1)[1:].std()*np.sqrt(252)
-mu = annual_return # 0.39644
-sigma = annual_vol # 0.2344
-s0 = close[-1] # 903.5
-T = 3.0/12
-delta_t = 0.001
-num_reps = 500
-steps = T/delta_t
-plt.figure(figsize=(15,10))
-for j in range(num_reps):
-    price_path = [s0]
-    st = s0
-    for i in range(int(steps)):
-        st = st*e**((mu-0.5*sigma**2)*delta_t + sigma*np.sqrt(delta_t)*np.random.normal(0, 1))
-        price_path.append(st)
-    plt.plot(price_path)
-plt.ylabel('stock price',fontsize=15)
-plt.xlabel('steps',fontsize=15)
-
-
-
-stock price path -

1. Monte Carlo Simulation of European Options

-Monte Carlo simulation is a commonly used method for derivatives pricing where the payoff is dependent on the history of the underlying asset or where there are several underlying variables. - -The essence of using Monte Carlo method to price the options is to simulate the possible paths for stock prices then we can get all the possible value of stock price at expiration. -
    -
  1. First, we need to divide the maturity T of options into N small time intervals, the length of each time interval is \(\Delta t\), N is the number of steps
  2. -
  3. Sample the possible random paths for the stock price according to equation (3) and get the stock price \(S_T\)at maturity T.
  4. -
  5. Calculate the payoff of options according to the \(S_T\)
  6. -
  7. Discount the payoff at the risk-free rate to get one estimate of options' price
  8. -
  9. Repeat the step 1 to 4 for a reasonable number of times and get many estimates of options price and then the average of these price estimates is the final options price.
  10. -
-There is one thing you need to note that in option pricing, Monte Carlo simulations use the risk-neutral valuation result. More specifically, sample the paths to obtain the expected payoff in a risk-neutral world (The expected annual return rate and the risk-free annual rate should be the same in order to get the correct estimation of the option) and then discount this payoff at the risk-neutral rate. -
def mc_euro_options(option_type,s0,strike,maturity,r,sigma,num_reps):
-    payoff_sum = 0
-    for j in range(num_reps):
-        st = s0
-        st = st*e**((r-0.5*sigma**2)*maturity + sigma*np.sqrt(maturity)*np.random.normal(0, 1))
-        if option_type == 'c':
-            payoff = max(0,st-strike)
-        elif option_type == 'p':
-            payoff = max(0,strike-st)
-        payoff_sum += payoff
-    premium = (payoff_sum/float(num_reps))*e**(-r*maturity)
- return premium
-mc_euro_options('c',927.96,785,100.0/252,0.01,0.23,500)
-
-Suppose the risk-free rate is 1%. A European call option with strike price being $785 and expires in 100 days, the spot price is $927, the premium by using Monte Carlo method is $149. -

Summary

-In this chapter, we modeled stock price with the stochastic process. The stochastic process usually assumed for a stock price is geometric Brownian motion.The Black–Scholes–Merton model, which we cover in the next chapter, is based on the geometric Brownian motion assumption. Under this process, the logarithm of stock return in a small period of time is normally distributed and the returns in two nonoverlapping periods are independent. - -In the second part of the tutorial,  we applied Monte Carlo method to simulate the stock price in order to gain an intuitive understanding of the stochastic process followed by stock price. Then we discussed how to use Monte Carlo method to price the options based on the underlying prices paths. - -
-
-
diff --git a/Tutorial Series/Introduction to Options/Tutorial05 Options Pricing Black Scholes Merton Model.html b/Tutorial Series/Introduction to Options/Tutorial05 Options Pricing Black Scholes Merton Model.html deleted file mode 100644 index 7cb5708..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial05 Options Pricing Black Scholes Merton Model.html +++ /dev/null @@ -1,140 +0,0 @@ -

Introduction

-In the last chapter, we modeled the stock price with the Geometric Brownian motion. Then the logarithm of return \(\text{ln}(S_T/S_0)\) follows the normal distribution \(N\left[(\mu-\sigma^2/2)T,\sigma^2T\right]\). It means the logarithm of stock price\(\text{ln}(S_T)\)follows the normal distribution \(N\left[\text lnS_0+(\mu-\sigma^2/2)T,\sigma^2T\right]\). Based on this basic assumption, in this chapter, we will talk about a famous option pricing model: Black Scholes Merton Model. -

Determinants of  Option Price

-In different kinds of asset pricing model like bond pricing, enterprise valuation, the most commonly used valuation method is to calculate the present value of the expected cash flows of that asset. But options have some characteristics that are different from the common asset. For example, the options value depends on its underlying assets. In addition, the cash flows on options are not constant in each time period but depend on the occurrence of specific events which are not predictable. In fact, the value of the option is determined by lots of variables. -
    -
  1. the underlying price: Change in the value of the underlying asset is the most important factor which affects the options price. For the call option, holders can earn profit from the price rising and put option holders earn profits from the price decline. Therefore, call options become more valuable as the underlying prices increase while the put options will become less valuable.
  2. -
  3. The volatility of the underlying asset: In tuition, volatility is a measure of the degree of fluctuation of the underlying stock price. It is a forward volatility, which means it is a prediction of how much the stock price of the underlying will move in the future over a certain period of time. The higher the predicted volatility is, the higher the probability that the underlying price will move a lot. Thus the greater will the value of the option is both for calls and puts. We will further discuss the different type of volatilities in the subsequent tutorials.
  4. -
  5. The strike price of the option: Call options gain profit when stock prices greater than the strike, it is easy to understand that the higher the strike price is for the call option, the fewer profits the holder can get, the less valuable of the call option. Thus for the put options, options with higher strike price are more valuable.
  6. -
  7. Time to expiration: If the current date is t, the expiration date of the option contract is T. Then the time to expiration is T-t. For v=both call and put options, the longer time to expiration means there are more changes for the function of stocks prices, and higher probability for the option holders to gain profits from price movement.
  8. -
  9. The risk-free interest rate: As interest rates increase, the expected return required by investors from the stock tends to increase. On the other hand, the present value of discounted cash flow will decrease. Thus the increase in interest rate will increase the call option price and will decrease the put option price.
  10. -
  11. The dividend yield: After the dividends paid, the share price of the stock will decrease. During the options holding period, the decline in underlying price is unfavorable for call options holder. Therefore, the increase in dividend yield will decrease the price of call options and increase the price of put options.
  12. -
-

Factors in the BSM model

-After we get an intuition about affecting factors of options price. Now we will introduce the BSM option pricing model. The Black-Scholes model for pricing stock options was developed by Fischer Black, Myron Scholes and Robert Merton in the early 1970’s. - -First, we introduce the factors in the model. For all the factors listed below, only volatility is not known.  There are many types of volatilities. Then which volatility should be used is a critical question in option pricing model. We will further discuss this part in the next few chapters. - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Factors in the model
 Stock PriceS
 Strike Price K
 Time to Expiration T-t
 Interest Rates r
 Future Volatility of the underlying Stock σ
-
-
-
-
class BsmModel:
-    def __init__(self, option_type, price, strike, interest_rate, expiry, volatility, dividend_yield=0):
-        self.s = price # Underlying asset price
-        self.k = strike # Option strike K
-        self.r = interest_rate # Continuous risk fee rate
-        self.q = dividend_yield # Dividend continuous rate
-        self.T = expiry # time to expiry (year)
-        self.sigma = volatility # Underlying volatility
-        self.type = option_type # option type "p" put option "c" call option
-
-There are some details we need to pay attention to about the input of BSM model. Firstly, the model works in continuous time, rather than discrete time. Therefore the risk-free rate r has to be modified to the continuous form. Secondly, the time to expiration should be converted to year. The volatility is the annual volatlity. -

Assumptions

-The market assumptions behind the Black–Scholes formula for pricing European options are as follows: -
    -
  1. The volatility of the underlying assets is constant over time
  2. -
  3. The underlying asset price follows lognormal distribution, this means that the log-returns of stock prices are normally distributed
  4. -
  5. The underlying asset can be traded continuously
  6. -
  7. The underlying stock does not pay dividends during the option's life. But the basic Black-Scholes model was later adjusted for dividends, here we demonstrate the later version with dividend yields.
  8. -
  9. There are no transaction costs or taxes
  10. -
  11. All securities are perfectly divisible, meaning that it is possible to buy any fraction of a share
  12. -
  13. The risk-free rate of interest, r, is constant and the same for all maturities
  14. -
-
-

Equations

-The derivation of the Black-Scholes model is far too complicated to present here, we only show the formula here. The basic principle is based on the idea of creating a portfolio of the underlying asset and the riskless asset with the same cash flows and hence the same cost as the option being valued. Then we get the Black–Scholes–Merton differential equation. The solutions to the differential equation are the Black-Scholes-Merton formulas for the price of European call and put options - -\[c = S_0N(d_1)-Ke^{-rT}N(d_2)\] - -\[p =Ke^{-rT}N(-d_2)- S_0N(-d_1)\] - -\[d_1=\frac{ln(S_0/K)+(r+\sigma^2/2)T}{\sigma\sqrt{T}}\] -
- -\[d_2=\frac{ln(S_0/K)+(r-\sigma^2/2)T}{\sigma\sqrt{T}}=d_1-\sigma\sqrt{T}\] -
-
-
- -N(x) is the cumulative probability distribution function for a variable with a standard normal distribution. It can be calculated by the integral of the probability density function of standard normal distribution from 0 to x. In Python, you can use the norm.pdf(x) in spicy.stats library. For the following chart, we plot the probability density curve of the standard normal distribution. For example, N(-1) is the area of the left hand of the red line under the curve. -
import scipy.stats as sp
-mu = 0
-variance = 1
-x = np.linspace(mu-3*variance,mu+3*variance, 100)
-y = [sp.norm.pdf(i) for i in x]
-plt.plot(x,y)
-d = [-1]
-plt.plot(d*100,np.linspace(0,sp.norm.pdf(d), 100))
-
- -Then in our BSM model class, we will calculate the European call and put option prices by using BSM formula. -
def n(self, d):
-    # cumulative probability distribution function of standard normal distribution
-    return norm.cdf(d)
-
-def dn(self, d):
-    # the first order derivative of n(d)
-    return norm.pdf(d)
-
-def d1(self):
-    d1 = (log(self.s / self.k) + (self.r - self.q + self.sigma ** 2 * 0.5) * self.T) / (self.sigma * sqrt(self.T))
-    return d1
-
-def d2(self):
-    d2 = (log(self.s / self.k) + (self.r - self.q - self.sigma ** 2 * 0.5) * self.T) / (self.sigma * sqrt(self.T))
-    return d2
-
-def bsm_price(self):
-    d1 = self.d1()
-    d2 = d1 - self.sigma * sqrt(self.T)
-    if self.type == 'c':
-        price = exp(-self.r*self.T) * (self.s * exp((self.r - self.q)*self.T) * self.n(d1) - self.k * self.n(d2))
-        return price
-    elif self.type == 'p':
-        price = exp(-self.r*self.T) * (self.k * self.n(-d2) - (self.s * exp((self.r - self.q)*self.T) * self.n(-d1)))
-        return price
-    else:
-        print "option type can only be c or p"
-
-a = BsmModel('c', 42, 35, 0.1, 90.0/365, 0.2)
-a.bsm_price()
-
-
-For a call option which expires in 90 days and no dividends paid, the underlying price is $42, the strike is $35, the risk-free rate is 0.1, the volatility is 0.2. The price of this option is $6.157. - -
-
-
-
-

 Summary

-This tutorial discussed the factors affecting the options price and introduced a famous option pricing model including the input parameters, the assumptions and the formula. - -
diff --git a/Tutorial Series/Introduction to Options/Tutorial06 The Greek Letters.html b/Tutorial Series/Introduction to Options/Tutorial06 The Greek Letters.html deleted file mode 100644 index a8e4c9c..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial06 The Greek Letters.html +++ /dev/null @@ -1,229 +0,0 @@ -
-
-
-

Introduction

-Option Greeks measure the different factors such as the underlying price, time and volatility that affect the price of an option contract. In this tutorial we will discuss the various Greeks, their meanings and their implications on the pricing and how to use them to hedge risks. -

1. Delta

-

Definition

-
-
-
- -Delta is the rate of change of the option price with respect to the price of the underlying asset. It measures the first-order sensitivity of the price to a movement in stock price S. The option delta is 0.4 means that if the underlying moves by for example 1%, then the value of the option will move by 0.4 × 1%. For European options on an asset that provides a yield at rate q: -\[delta(call)=\frac{\partial c}{\partial S}=e^{-q(T-t)}N(d1)\] -\[delta(put)=\frac{\partial p}{\partial S}=e^{-q(T-t)}(N(d1)-1)\] -
''' Greek letters for European options on an asset that provides a yield at rate q '''
-def delta(self):
-    d1 = self.d1()
-    if self.type == "c":
-        return exp(-self.q * self.T) * self.n(d1)
-    elif self.type == "p":
-        return exp(-self.q * self.T) * (self.n(d1)-1)
-

Impact Factors

-Stock price, days remaining to expiration and implied volatility will impact the Delta. -
    -
  • Stock Price: Call option has a positive Delta range from 0 to 1. The Delta is positively correlated to underlying stock price change. While put option has a negative Delta ranges from -1 to 0, its Delta is negatively correlated with the underlying stock price change. At-the-money call options usually have a Delta near .50. At-the-money put options have a Delta near -.50.
  • -
  • Implied Volatility: Low implied volatility stocks will tend to have higher Delta for the in-the-money options and lower Delta for out-of-the-money options.
  • -
  • Days remaining to expiration: As expiration nears, in-the-money call Deltas increase toward 1.00, at-the-money call Deltas remain at around 0.5 and out-of-the-money call Deltas fall to 0 provided other inputs remain constant.
  • -
-As a general rule, in-the-money options will move more than out-of-the-money options, and short-term options will react more than longer-term options to the same price change in the stock. - -In order to demonstrate how those Greeks values change with the time to expiration and the underlying price, we choose 60*23 call options contracts with the stock price ranging from 10 to 70, time to expiration ranging from 0 to 1 year. The strikes of all the contracts are 40,  the interest rates are 0.1, the volatilities are all 0.5. We construct the contracts data as a 23*60 matrix. -
s = np.array([range(10,70,1) for i in range(23)])
-I = np.ones((shape(s)))
-time = arange(1,12.5,0.5)/12
-T = np.array([ele for ele in time for i in range(shape(s)[1])]).reshape(shape(s))
-
-contracts = []
-for i in range(shape(s)[0]):
-    for j in range(shape(s)[1]):
-        contracts.append(BsmModel('c',s[i,j],40*I[i,j],0.1*I[i,j], T[i,j],0.5*I[i,j]))
-delta = [x.theta() for x in contracts]
-gamma = [x.gamma() for x in contracts]
-delta = [x.delta() for x in contracts]
-vega = [x.vega() for x in contracts]
-rho = [x.rho() for x in contracts]
-
-gamma = np.array(gamma).reshape(shape(s))
-delta = np.array(delta).reshape(shape(s))
-theta = np.array(theta).reshape(shape(s))
-vega = np.array(vega).reshape(shape(s))
-rho = np.array(rho).reshape(shape(s))
-
-import numpy as np
-import matplotlib.pyplot as plt
-from mpl_toolkits.mplot3d import Axes3D
-from matplotlib import cm
-from matplotlib import animation
-
-z = delta
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init(40,290)
-ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
-ax.plot_surface(s, T, z, facecolors=cm.jet(delta),linewidth=0.001, rstride=1, cstride=1, alpha = 0.75)
-ax.set_zlim3d(0, z.max())
-ax.set_xlabel('stock price')
-ax.set_ylabel('Time to Expiration')
-ax.set_zlabel('delta')
-m = cm.ScalarMappable(cmap=cm.jet)
-m.set_array(z)
-cbar = plt.colorbar(m)
-
-Greeks letter: options gamma - -The color of the graph above represents delta value. -

2. Gamma

-Gamma is the rate of change of the portfolio's delta with respect to the underlying asset's price. It represents the second-order sensitivity of the option to a movement in the underlying asset’s price. - -Long options, either calls or puts, always yield positive Gamma. Gamma is higher for options that are at-the-money and closer to expiration because the Delta of the near term options move toward either 0 or 1.00 is imminent. Deeper-in-the-money or farther-out-of-the-money options have lower Gamma as their Deltas already approached 0 or 1.00 (or 0 or -1.00 for puts) and will not change as quickly with movement in the underlying. For European options: -\[gamma(call)=gamma(put)=\frac{N^{'}(d_1)e^{-q(T-t)}}{S\sigma\sqrt{(T-t)}}\] -
def gamma(self):
-    d1 = self.d1()
-    dn1 = self.dn(d1)
-    return dn1 * exp(-self.q * self.T) / (self.s * self.sigma * sqrt(self.T))
-
-
z = gamma
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init(12,320)
-ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
-ax.plot_surface(s, T, z, facecolors=cm.jet(delta),linewidth=0.001, rstride=1, cstride=1, alpha = 0.75)
-ax.set_zlim3d(0, z.max())
-ax.set_xlabel('stock price')
-ax.set_ylabel('Time to Expiration')
-ax.set_zlabel('gamma')
-m = cm.ScalarMappable(cmap=cm.jet)
-m.set_array(delta)
-cbar = plt.colorbar(m)
-
-The Greeks letters: gamma - -The color of the graph above represents delta value. -

3. Vega

-
-
-
- -The Vega is the rate of change in the value of the option with respect to the volatility of the underlying asset. - -Vega is always positive for long positions and is the same value for both puts and calls. Hence the option price always increases as the volatility increases. Vega for the European options: -\[vega(call)=vega(put)=S\sqrt{(T-t)}N^{'}(d_1)e^{-q(T-t)}\] -
def vega(self):
-    d1 = self.d1()
-    dn1 = self.dn(d1)
-    return self.s * sqrt(self.T) * dn1 * exp(-self.q * self.T)
-
-
z = vega
-norm = matplotlib.colors.Normalize()
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init(20,45)
-ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
-ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
-ax.set_zlim3d(z.min(), z.max())
-ax.set_xlabel('stock price')
-ax.set_ylabel('Time to Expiration')
-ax.set_zlabel('vega')
-m = cm.ScalarMappable(cmap=cm.jet)
-m.set_array(z)
-cbar = plt.colorbar(m)
-
-
-
- -The Greeks letters: vega -The color of the graph above represents Vega. - -

4. Theta

-
-
-
- -Theta is the rate of change of the value of the option with respect to the passage of time. It is also referred to as the time decay of the portfolio. - -The theta of  holding long position of a call or a put option is usually negative. An option that loses 0.1% per day is said to have a Theta of −0.1%. For example, if we buy an OTM call option, the value of this call option decreases as time passes since the option has less time to expiry. If time passes with the price of the underlying asset and its volatility remaining the same, the passing of time will lower the value of the option. Theta for European Options -\[Theta(call)=-SN^{'}(d_1)\sigma e^{-q(T-t)}/(2\sqrt{T-t})+qSN(d_1)e^{(-q(T-t))}-rKe^{-r(T-t)}N(d_2)\] -\[Theta(put)=-SN^{'}(d_1)\sigma e^{-q(T-t)}/(2\sqrt{T-t})-qSN(-d_1)e^{(-q(T-t))}+rKe^{-r(T-t)}N(-d_2)\] -
def theta(self):
-    d1 = self.d1()
-    d2 = d1 - self.sigma * sqrt(self.T)
-    dn1 = self.dn(d1)
-    if self.type == "c":
-        theta = -self.s * dn1 * self.sigma * exp(-self.q*self.T) / (2 * sqrt(self.T)) \
-                    + self.q * self.s * self.n(d1) * exp(-self.q*self.T) \
-                    - self.r * self.k * exp(-self.r*self.T) * self.n(d2)
-        return theta
-    elif self.type == "p":
-        theta = -self.s * dn1 * self.sigma * exp(-self.q * self.T) / (2 * sqrt(self.T)) \
-                    - self.q * self.s * self.n(-d1) * exp(-self.q * self.T) \
-                    + self.r * self.k * exp(-self.r * self.T) * self.n(-d2)
-        return theta
-
-
z = theta
-# facecolors aren't normalizing as might be expected
-# we need to normalize it to avoid all dark color for value under 0
-norm = matplotlib.colors.Normalize()
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init(35,300)
-ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
-ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
-ax.set_zlim3d(z.min(), z.max())
-ax.set_xlabel('stock price')
-ax.set_ylabel('Time to Expiration')
-ax.set_zlabel('rho')
-m = cm.ScalarMappable(cmap=cm.jet)
-m.set_array(z)
-cbar = plt.colorbar(m)
-
- -The Greeks letters: theta -

5. Rho

-Rho is the rate of change of the value of a derivative with respect to the interest rate. It is usually small and not a big issue in practice unless the option is deep in-the-money and has a long horizon. The interest rate would matter because we need to discount a larger cash flow over a longer horizon. Rho for the European options: -\[Rho(call)=K(T-t)e^{-r(T-t)}N(d_2)\] -\[Rho(put)=-K(T-t)e^{-r(T-t)}N(-d_2)\] -
def rho(self):
-    d2 = self.d2()
-    if self.type == "c":
-        rho = self.k * self.T * (exp(-self.r*self.T)) * self.n(d2)
-    elif self.type == "p":
-        rho = -self.k * self.T * (exp(-self.r*self.T)) * self.n(-d2)
-    return rho
-
-
z = rho
-norm = matplotlib.colors.Normalize()
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init()
-ax.plot_wireframe(s, T, z, rstride=1, cstride=1)
-ax.plot_surface(s, T, z, facecolors=cm.jet(norm(z)),linewidth=0.001, rstride=1, cstride=1, alpha = 0.9)
-ax.set_zlim3d(z.min(), z.max())
-ax.set_xlabel('stock price')
-ax.set_ylabel('Time to Expiration')
-ax.set_zlabel('vega')
-m = cm.ScalarMappable(cmap=cm.jet)
-m.set_array(z)
-cbar = plt.colorbar(m)
-
-
-
-
- -The Greeks letters: rho -

Delta, Gamma and Vega Hedging

-The delta of the underlying asset is always 1.0, the trader can hedge his positions by buying or selling the number of shares of the underlying asset indicated by the total delta. However, underlying asset positions have Gamma 0 because their Delta is always 1.00 (long) or -1.00 (short) and will not change. In addition, Vega of the underlying asset is also zero because the underlying asset's payoff doesn't vary depending on how its price moves (payoff is not contingent). Therefore, its price is not affected by price volatility. - -As a result, in order to adjust Gamma and Vega, it is necessary to take a position in an option or other derivatives. However, if only one other derivative is added, either the Gamma risk or the Vega risk will be canceled out, but not both at the same time. Here we need to use 2 derivatives to make the portfolio delta, gamma, and vega neutral all at once. Note, Vega and Gamma for a portfolio is the sum of the vegas and Gammas of its constituents. - -

 Summary

-
-
-
-In this chapter we discussed the various Greeks, their meanings and their implications on the pricing and hedging of derivatives. We also presented some useful formulas for calculating the Greeks value of European options and generated the plots to show how they changed with strikes and time to expirations. The Greeks letter is the sensitivity measure of options price to the market variables. Next chapter we will discuss another major risk measures: volatility. -
-
-
-
-
-
diff --git a/Tutorial Series/Introduction to Options/Tutorial07 Historical Volatility and Implied Volatility.html b/Tutorial Series/Introduction to Options/Tutorial07 Historical Volatility and Implied Volatility.html deleted file mode 100644 index 7488f06..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial07 Historical Volatility and Implied Volatility.html +++ /dev/null @@ -1,192 +0,0 @@ -

Introduction

-The change of volatility can have a significant impact on any options trading strategies performance. In addition to the Vega we explained in Greeks letter chapter, this part of the volatility tutorial will discuss the concept of volatility, specifically, we discuss realized and implied volatility, their meanings, measurements, uses, and limitations. - -

Historical Volatility

- -

1. Definition

-It is a measurement of how much the price of the asset has changed on average during the certain period of time. In common, volatility is said to be the standard deviation of the return of assets price. -

2. Calculation

-Here we discuss how to estimate the historical volatility of the option written on specific underlying asset empirically. - -\[r_i=ln(\frac{S_i}{S_{i-1}})\quad for\ i=0,1,2,3,...,n\] - -Where (n+1) is the number of observations, \(S_i\) is the stock price at end of it time interval - -The  standard deviation of the \(r_i\) is given by -\[std=\sqrt{\frac{1}{n-1}\sum_{i=1}^n(r_i-\overline{r})^2}\] -where \(\overline{r}\) is the mean of \(r_i\) - -If we assume there are n trading days per year. Then the estimate of historical volatility per annum is - -\[std\times\sqrt{n}\] -
import pandas as pd
-from numpy import sqrt,mean,log,diff
-import quandl
-quandl.ApiConfig.api_key = 'NxTUTAQswbKs5ybBbwfK'
-goog_table = quandl.get('WIKI/GOOG')
-# use the daily data of Google(NASDAQ: GOOG) from 01/2016 to 08/2016
-close = goog_table['2016-01':'2016-08']['Adj. Close']
-r = diff(log(close))
-r_mean = mean(r)
-diff_square = [(r[i]-r_mean)**2 for i in range(0,len(r))]
-std = sqrt(sum(diff_square)*(1.0/(len(r)-1)))
-vol = std*sqrt(252)
-An asset has a historical volatility based on its past performance as described above, investors can gain insight on the fluctuations of the underlying price during the past period of time. But it does not tell us anything about the volatility in the market now and in the future. So here we introduce the implied volatility. -

Implied Volatility

-In contrast to historical volatility, the implied volatility looks ahead. It is often interpreted as the market’s expectation for the future volatility of a stock and is implied by the price of the stock’s options. Here implied volatility means it is not observable in the market but can be derived from the price of an option. -

1. Definition

- -We use volatility as an input parameter in option pricing model. If we take a look at the BSM pricing, the theoretical price or the fair value of an option is P, where P is a function of historical volatility σ, stock  price S, strike price K, risk-free rate r and the time to expiration T.  That is \(P=f(\sigma,S,K,r,T)\). But the market price of options is not always the same with the theoretical price. Now in contrast, if we are given the market’s prices of calls and puts written on some asset and also the value of S, K, r, T. For each asset we can solve a new volatility that corresponds to the price of each option – the implied volatility. Then the implied volatility is \(\IV=f^{-1}(P,S,K,r,T)\). -

2. Calculation

-Here we use the bisection method to solve the BSM pricing equation and find the root which is the implied volatility. We use Yahoo Finance Python API to get the real time option data. -
def bsm_price(option_type, sigma, s, k, r, T, q):
-    # calculate the bsm price of European call and put options
-    sigma = float(sigma)
-    d1 = (np.log(s / k) + (r - q + sigma ** 2 * 0.5) * T) / (sigma * np.sqrt(T))
-    d2 = d1 - sigma * np.sqrt(T)
-    if option_type == 'c':
-        price = np.exp(-r*T) * (s * np.exp((r - q)*T) * stats.norm.cdf(d1) - k *  stats.norm.cdf(d2))
-        return price
-    elif option_type == 'p':
-        price = np.exp(-r*T) * (k * stats.norm.cdf(-d2) - s * np.exp((r - q)*T) *  stats.norm.cdf(-d1))
-        return price
-    else:
-        print('No such option type %s') %option_type
-def implied_vol(option_type, option_price, s, k, r, T, q):
-    # apply bisection method to get the implied volatility by solving the BSM function
-    precision = 0.00001
-    upper_vol = 500.0
-    max_vol = 500.0
-    min_vol = 0.0001
-    lower_vol = 0.0001
-    iteration = 0
-
-    while 1:
-        iteration +=1
-        mid_vol = (upper_vol + lower_vol)/2.0
-        price = bsm_price(option_type, mid_vol, s, k, r, T, q)
-        if option_type == 'c':
-
-            lower_price = bsm_price(option_type, lower_vol, s, k, r, T, q)
-            if (lower_price - option_price) * (price - option_price) > 0:
-                lower_vol = mid_vol
-            else:
-                upper_vol = mid_vol
-            if abs(price - option_price) < precision: break if mid_vol > max_vol - 5 :
-                mid_vol = 0.000001
-                break
-
-        elif option_type == 'p':
-            upper_price = bsm_price(option_type, upper_vol, s, k, r, T, q)
-
-            if (upper_price - option_price) * (price - option_price) > 0:
-                upper_vol = mid_vol
-            else:
-                lower_vol = mid_vol
-            if abs(price - option_price) < precision: break if iteration > 50: break
-
-    return mid_vol
-implied_vol('c', 0.3, 3, 3, 0.032, 30.0/365, 0.01)
-
-From the result above, the implied volatility of European call option (with premium c=0.3, S=3, K=3, r=0.032, T =30 days, d=0.01) is 0.87. -

3. Factors Affecting Implied Volatility

-According to the time value description in the first tutorial, [ref]Options Pricing: Intrinsic Value And Time Value, Jean Folger, Online Copy[/ref]in general, the more time to expiration, the greater the time value of the option. Investors are willing to pay extra money for zero intrinsic value options which have more time to expiration because more time increases the likelihood of price movement and fluctuations, it is the options will become profitable. Implied volatility tends to be an increasing function of maturity. A short-dated option often has a low implied volatility, whereas a long-dated option tends to have a high implied volatility. - -

Volatility Skew

-For European options of the same maturity and the same underlying assets, the implied volatilities vary with the strikes. For a series of put options or call options, if we plot these implied volatilities for a series of options which have the same expiration date and the same underlying with the x axis being the different strikes, we would get a convex curve. The shape of this curve is like people's smiling, it is being called the volatility. The shape of volatility smile depends on the assets and the market conditions. - -Here we give an example how to plot the volatility smile by using the real time options data of SPDR S&P 500 ETF(NYSEARCA: SPY). -
# download option data for all expiry months from Yahoo Finance
-# provide a formatted DataFrame with a hierarchical index
-opt = Options('spy', 'yahoo')
-opt.expiry_dates  # list all the available expiration dates
-def IV_plot(opt,option_type,expiry_index):
-    expiry = opt.expiry_dates[expiry_index]
-    if option_type == 'c':
-        data = opt.get_call_data(expiry=expiry)
-    elif option_type == 'p':
-        data = opt.get_put_data(expiry=expiry)
-    r = 0.01 # risk free rate
-    d = 0.01 # continuous devidend yield
-    s = opt.underlying_price # data_call['Underlying_Price']  undelying price
-    expiry = data.index.get_level_values('Expiry')[0] # get the expiry
-    current_date = opt.quote_time # current_date = datetime.datetime.now() # get the current date
-    time_to_expire = float((expiry - current_date).days)/365 # compute time to expiration
-    premium = (data['Ask'] + data['Bid'])/2 # option premium
-    strike = list(data.index.get_level_values('Strike')) # get the strike price
-    IV = []
-    for i in range(len(data)):
-        IV.append(implied_vol(option_type, premium.values[i], s, strike[i], r, time_to_expire, d))
-
-    plt.figure(figsize=(16, 7))
-    a = plt.scatter(strike,IV, c='r', label="IV by solving BSM")
-    b = plt.scatter(strike,data['IV'],c = 'b', label="IV from Yahoo Finance")
-    plt.grid()
-    plt.xlabel('strike')
-    if option_type == 'c':
-        plt.ylabel('Implied Volatility for call option')
-        plt.legend((a,b), ("IV(call) by solving BSM", "IV(call) from Yahoo Finance"))
-    elif option_type == 'p':
-        plt.ylabel('Implied Volatility for put options')
-        plt.legend((a,b), ("IV(put) by solving BSM", "IV(put) from Yahoo Finance"))
-
-    return strike,IV
-k_call, IV_call = IV_plot(opt,'c',23)
-k_put, IV_put = IV_plot(opt,'p',23)
-plt.figure(figsize=(16, 7))
-e = plt.scatter(k_call,IV_call, c ='red', label="IV(call options)")
-f = plt.scatter(k_put,IV_put, c = 'black', label="IV(put options)")
-plt.xlabel('strike')
-plt.ylabel('Implied Volatility')
-plt.legend((e,f), ("IV (call options)", "IV (put options)"))
-
-The current date is 08/14/2017. We plot the implied volatilities for SPY options which expire on 12/21/2018. - -

implied volatility of call options

-implied volatility of put options - -Plotting these implied volatilities across strikes gives us the implied volatility skew. For the shape of volatility smile, it should be a symmetry convex curve. But from the above chart, the implied volatility curve slope downward to the right. This is referred to the skew, which means that options with low strikes have higher implied volatilities than those with higher strikes. The smile is not symmetry. The skew of a distribution is a measure of its assymetry. Although the volatility skew is dynamic, in equity markets it is almost always a decreasing function of the strike. Other asset classes such as FX and commodities have differently shaped skews. -If we plot the call and put options implied volatility smile in the same chart for the same expiration date: -implied volatility of call and put options -From the above chart, we can see the implied volatility for put options is higher than call options. Usually, put options trade for a higher price than call options, because traders place more risk in the short put positions, which raises the amount of reward they require to sell the position. Higher option prices signify an increase in risk and are represented by higher implied volatility levels derived from the option pricing model. -Then we scattered all the implied volatilities of contracts across all the strikes. -
opt = Options('spy', 'yahoo')
-r = 0.01 # risk free rate
-d = 0.01 # continuous devidend yield
-expiry_dates = [i for i in opt.expiry_dates if i > opt.quote_time.date()]
-current_date = opt.quote_time.date()  ## get the current date
-s = opt.underlying_price # undelying price
-num_expiry = len(expiry_dates)
-IV = [] # (num_expiry * 3)-dimension list with each row being [time_to_expire, strike, implied_vol]
-
-for expiry_index in range(num_expiry):
-    data = opt.get_put_data(expiry=expiry_dates[expiry_index])
-    expiry = expiry_dates[expiry_index] # get the expiry
-    time_to_expire = float((expiry - current_date).days)/365 # compute time to expiration
-    premium = (data['Ask'] + data['Bid'])/2.0 # option premium
-    strike = data.index.get_level_values('Strike') # get the strike price
-    num_strike = len(data)
-    for j in range(num_strike):
-        IV.append([time_to_expire, strike[j], implied_vol('c', premium.values[j], s, strike[j], r, time_to_expire, d)])
-x= [IV[i][0] for i in range(len(IV))]
-y= [IV[i][1] for i in range(len(IV))]
-z= [IV[i][2] for i in range(len(IV))]
-fig = plt.figure(figsize=(20,11))
-ax = fig.add_subplot(111, projection='3d')
-ax.view_init(20,10)
-ax.scatter(x,y,z)
-
-implied volatility surface -

Volatility Surface

-By fixing a maturity and looking at the implied volatilities of European options on the same underlying but different strikes, we obtain the implied volatility skew or smile. The volatility surface is the three-dimensional surface obtained when we plots the market implied volatilities of European options with different strikes and different maturities. -By using the interpolation method, we can generate the implied volatility surface of SPY options for both put and call options as follows: -implied volatility surface for call options -implied volatility surface for put options -

The Reason for Volatility Skew

-The volatility skew shows that for Put options, implied volatility is higher for deep OTM options and then is decreasing as it moves towards ITM options. For call options, the implied volatility is higher for deep ITM options and then is decreasing as it moves towards OTM options. From the demand and supply degree, the skew reflects that investors are more willing to buy deep OTM puts and ITM calls. Why there is volatility skew in the market? -First, the majority of the equity positions are long. Investors usually have two ways to hedge those long positions risks: Buying downside puts or selling upside calls. The increase in demand create increases in price of downside puts and decreases in price of upside calls. The volatility is a reflection of options price. Therefore the volatility of in-the-money put is higher and the volatility of in-the-money call is lower. -The second reason for volatility skew is that the market moves down faster than it moves up. The downside market move is riskier than the upside move. Thus the price of OTM puts is higher than OTM calls. -

Summary

-In this chapter, we discussed the historical volatility and the implied volatility. The historical volatility of an asset is the statistical measure we know as the standard deviation of the stock return series. The implied volatility of the same asset, on the other hand, is the volatility parameter that we can infer from the prices of traded options written on this asset. In contrast to historical volatility, which looks at fluctuations of asset prices in the past, implied volatility looks ahead. The two volatilities do not necessarily coincide, and although they may be close, they are typically not equal. -Now we know the constant volatility assumption in Black-Sholes-Merton model is not applicable in the real market because there is volatility skew for most of the options. Then in next chapter we will introduce some volatility models to capture the volatility skew in options pricing. - diff --git a/Tutorial Series/Introduction to Options/Tutorial08 Local Volatility and Stochastic Volatility.html b/Tutorial Series/Introduction to Options/Tutorial08 Local Volatility and Stochastic Volatility.html deleted file mode 100644 index 7a437db..0000000 --- a/Tutorial Series/Introduction to Options/Tutorial08 Local Volatility and Stochastic Volatility.html +++ /dev/null @@ -1,209 +0,0 @@ -
-
-
-

Introduction

-In the last chapter, we discussed two of the volatilities: historical volatility and the implied volatility. This chapter, we will further extend the concept of volatility and introduce the local volatility and the stochastic volatility. -

Motivation

-We already knew that volatility is a measure of the fluctuation degree of the underlying assets price series. There are many types of volatilities. As we discussed in the last chapter, historical volatility is the standard deviation of the price series during a certain period. It is a constant and represents the price movement in the past. However, the implied volatility is not based on the historical pricing data of stocks. It is the value of volatility parameter derived from the market quote of options in BSM pricing model. In contrast to historical volatility, implied volatility is forward looking and varies with different options contracts. -
-
-
- -In the Black–Scholes model, the asset’s price is modeled as a log-normal random variable, which means that the asset’s log-returns are normally distributed. One of the most significant assumptions in BSM model is that the volatility is a constant term over time. - -\[\sigma=\sigma_{implied}\] - -But in the real world, it could be constant in a small time period but never constant in long term. As we discussed in the last chapter, there is volatility skew for most of the options, which means that the volatility is not constant across strikes. - -[ref]Bouzoubaa M, Osseiran A. Exotic options and hybrids: A guide to structuring, pricing and trading[M]. John Wiley & Sons, 2010.[/ref]One way to capture the volatility skew is to assume that that the volatility itself is a random variable, this is the stochastic volatility model we will discuss next. But on the other hand, the introduction of additional sources of randomness will increase the complexity of the model. The other way to capture the volatility skew but without introducing the additional source of randomness is the local volatility. -

Local Volatility

-

1. Definition

-The constant volatility assumption in BSM model seems not reasonable in most of the options pricing. The volatility skew tells us that the stock’s log-returns are actually not normally distributed. That means there exist some other kinds of distributions of stock price so that if we use this distribution to price the options, it would give the accurate options' price as we see in the market. The local volatility is implied in this non-normal distribution. Let's look at the definition of local volatility. - -[ref]Bouzoubaa M, Osseiran A. Exotic options and hybrids: A guide to structuring, pricing and trading[M]. John Wiley & Sons, 2010.[/ref]The local volatility of the underlying assets is a deterministic function of assets price and the time t. - -\[\sigma=\sigma(S_t,t)\] - -Therefore under local volatility model, the stochastic process followed by the stock price is - -\[\text d S_t=\mu S_t\ \text d t+\sigma(S_t,t)\text d W_t\] - -If \(\sigma(S_t,t)=\sigmaS_t\), then this is the case of BSM model with constant volatility\(\sigma\). Here we are not assuming the volatility is constant but a function of the asset price so the stock’s log-returns are not normally distributed anymore. There is only one source of randomness fro m the stock price: \(W_t\). -

2. Model Calibration

-How to obtain the function \(\sigma(S_t,t)\)? Finding the function \(\sigma(S_t,t)\) is known as the calibration of local volatility model. This is answered by the following Dupire's formula. - -\[\sigma_{Local}(K,T)=\sqrt{\frac{\frac{\partial C}{\partial T}}{\frac{1}{2}K^2\frac{\partial^2 C}{\partial K^2}}}\] - -If we assume that we know all the observed market price of European call options C(T, K) for every strike K and every maturity T.  Local volatility model calculates volatilities for a set of options with the different combination of strike prices and expires. For a given date, time(t) and the underlying stock prices(St), a local volatility is derived from the equation that options prices calculated using local volatility equal the market options prices. - -But most of the time, we can only get a limited number of contracts with a few strikes and maturities, we can follow the steps below to get the local volatility estimation: -
    -
  1. First, use the available quoted price to calculate the implied volatilities.
  2. -
  3. Appy interpolation method to produce a smooth implied volatility surface.
  4. -
  5. Plug implied the implied volatilities into BSM model to get all the market prices of European calls.
  6. -
  7. Calculate the local volatility according to Dupire formula. In order to avoid taking derivatives, we could use finite differences to approximate the derivatives.
  8. -
-\[\frac{\partial C}{\partial T}\approx\frac{C(K,T+\Delta T)-C(K,T-\Delta T)}{2\Delta t}\] - -\[\frac{\partial^2 C}{\partial K^2}\approx\frac{C(K-\Delta K,T)-2C(K,T)+C(K+\Delta K,T)}{(\Delta K)^2}\] - -
-
-

Stochastic Volatility

-

1. Definition

-
-
-
-In stochastic volatility models, the asset price and its volatility are both assumed to be random processes and can change over time. There are many stochastic volatility models. Here we will present the most well-known and popular one: the Heston Model. In Heston model, the stock prices are log-normal distributed, the volatility process is a positive increasing function of a mean-reversion process. That is[ref]Gatheral J. The volatility surface: a practitioner's guide[M]. John Wiley & Sons, 2011[/ref] - -
-
-
-
-
-
- -\[dS_t = \mu_tS_tdt+\sqrt{v_t}S_tdW_{1,t}\] - -\[dv_t=-\lambda(v_t-\overline{v})\ dt+\eta\sqrt{v_t}\ dW_{2,t}\] - -\[dW_{1,t},\ dW_{2,t}=\rho \ dt\] - -Where the instantaneous variance of the stock price \(v_t\) itself is a stochastic process. - -\(\lambda\) is the speed of reversion of \(v_t\) to its long-term mean \(\overline{v})\). We can think of\(\lambda\) as the rate at which the stock price variance reverts back to its long term average value. - -\(\eta\) is the volatility of the variance process \(v_t\) (often called the volatility of volatility) - -\(W_{1,t}\) and \(W_{2,t}\) are two dependent Wiener processes with correlation coefficient \(\rho\). -

2. Simulation of the Heston Process

-We already discuss how to simulate the stock price process with Monte Carlo method in the introduction to stochastic process tutorial. In order to simulate the variance process, we need to write it into discrete form. The derivation can be found in paper Rouah F D. Euler and Milstein discretization[ref]Rouah F D. Euler and Milstein discretization[J]. Documento de Trabajo, Sapient Global Markets, Estados Unidos, 2011. Online Copy[/ref]. - -\[v_{t+\Delta t}=\left(\sqrt{v_t}+\frac{1}{2}\eta\sqrt{\Delta t}W_1\right)^2-\lambda(v_t-\overline{v})\Delta t-\frac{\eta^2}{4}\Delta t\] - -Then, we take the following steps to simulate Heston process: Given the value of \(v_t\) at time t, we first update to \(v_{t+\Delta t}\) using the formula above (Here note that in options pricing, Monte Carlo method use risk neutral result, so here the expected return \(\mu\) should equal the risk free rate r): -
    -
  • Given the value of \(v_t\) at time t, we first update to \(v_{t+\Delta t}\) using the formula above
  • -
  • We obtain \(S_{t+\Delta t}\) using\[S_{t+\Delta t}=S_t\ \text {exp}\left[(r-\frac{1}{2}v_t)\Delta t+\sqrt{v_t\Delta t}W_2\right]\]
  • -
  • To generate \(W_1\) and \(W_2\) with correlation \(\rho\), we first generate two independent standard normal variables \(Z_1\) and \(Z_2\), set \(W_1=Z_1\), then \[W_2=\rho Z_1+\sqrt{1-\rho^2}Z_2\]
  • -
-
from numpy import sqrt, exp
-import numpy as np
-
-def mc_heston(option_type,S0,K,T,initial_var,long_term_var,rate_reversion,vol_of_vol,corr,r,num_reps,steps):
-    """
-    option_type:    'p' put option 'c' call option
-    S0:              the spot price of underlying stock
-    K:              the strike price
-    T:              the maturity of options
-    initial_var:    the initial value of variance
-    long_term_var:  the long term average of price variance
-    rate_reversion: the mean reversion rate for the variance
-    vol_of_vol:     the volatility of volatility(the variance of the variance of stock price)
-    corr:           the correlation between the standard normal random variables W1 and W2
-    r:              the risk free rate
-    reps:           the number of repeat for monte carlo simulation
-    steps:          the number of steps in each simulation
-    """
-    delta_t = T/float(steps)
-    payoff = 0
-    for i in range(num_reps):
-        vt = initial_var
-        st = S0
-        for j in range(steps):
-            w1 = np.random.normal(0, 1)
-            w2 = corr*w1+sqrt(1-corr**2)*np.random.normal(0, 1)
-            vt = (sqrt(vt) + 0.5 * vol_of_vol * sqrt(delta_t) * w1)**2  \
-                 - rate_reversion * (vt - long_term_var) * delta_t \
-                 - 0.25 * vol_of_vol**2 * delta_t
-            st = st * exp((r - 0.5*vt)*delta_t + sqrt(vt*delta_t) * w2)
-        if option_type == 'c':
-                payoff += max(st - K, 0)
-        elif option_type == 'p':
-                payoff += max(K - st, 0)
-
-    return (payoff/float(num_reps)) * (exp(-r*T))
-
-

3. Calibration of Model Parameters

-The calibration of a model is the process of seeking the model parameters for which the model result best matches the market option data. This data usually consists of market quoted prices for European plain vanilla call options or of Black-Scholes implied volatilities derived from the prices. Calibrating the Heston model is equivalent to solving the non-linear constrained optimization problem: Minimize the error between the market quotes of options and the options price estimated by Heston model. The object function could be the absolute value of the error or the absolute squared error. You can refer to the paper Parameters recovery via calibration in the Heston model[ref]Escobar, Marcos, and Christoph Gschnaidtner. "Parameters recovery via calibration in the Heston model: A comprehensive review." Wilmott 2016.86 (2016): 60-81.[/ref] for details of different error measure. - -There are five parameters need to be estimated in Heston model: -
    -
  1. \(v_t\) : the initial value of the variance (Bounds of 0 and 1)
  2. -
  3. \(\overline{v}\) : the long term average variance of stock price (Bounds of 0 and 1)
  4. -
  5. \(\lambda\) : the speed of reversion (non-negativity)
  6. -
  7. \(\eta\) : the volatility of the volatility (non-negativity)
  8. -
  9. \(\rho\) : the correlation coefficient between two Wiener process (Bounds of -1 and 1)
  10. -
-Here we use QuantLib[ref]Modeling Volatility Smile and Heston Model Calibration Using QuantLib Python, Goutham Balaraman, online copy[/ref] Python library to calibrate the parameters. - -Let us look at how we can calibrate the Heston model to some market quotes. For example, let's say we are interested in trading SPDR S&P 500 ETF (SPY) options with 4-months maturity. Here we choose all the options contracts written on SPY expire in 4 months. We need the strikes and the market prices of those contracts and the underlying price as the input of our objective function to minimize. -
import pandas as pd
-from numpy import sqrt,mean,log,diff
-import QuantLib as ql
-from pandas_datareader.data import Options
-import pandas_datareader.data as web
-import datetime
-opt = Options('spy', 'yahoo')
-expiration_dates = [ql.Date(i.day, i.month, i.year) for i in opt.expiry_dates]
-expiry_index = 14 # choose the contracts expire on 11/17/2017
-data = opt.get_call_data(expiry=opt.expiry_dates[expiry_index])
-strikes = list(data.index.get_level_values('Strike'))
-premium = list(data['Last'])
-day_count = ql.Actual365Fixed()
-calendar = ql.UnitedStates()
-calculation_date = ql.Date(opt._quote_time.day,opt._quote_time.month,opt._quote_time.year) # 08/10/2017
-spot = opt.underlying_price  # spot price is 244.82
-ql.Settings.instance().evaluationDate = calculation_date
-dividend_yield = ql.QuoteHandle(ql.SimpleQuote(0.0))
-risk_free_rate = 0.01
-dividend_rate = 0.0
-flat_ts = ql.YieldTermStructureHandle(
-    ql.FlatForward(calculation_date, risk_free_rate, day_count))
-dividend_ts = ql.YieldTermStructureHandle(
-    ql.FlatForward(calculation_date, dividend_rate, day_count))
-# dummy parameters
-initial_var = 0.2; rate_reversion = 0.5; long_term_var = 0.2; corr = -0.75; vol_of_vol = 0.2;
-# initial_var = 0.2; rate_reversion = 0.15; long_term_var = 0.6; corr = -0.75; vol_of_vol = 0.2;
-process = ql.HestonProcess(flat_ts, dividend_ts,
-                           ql.QuoteHandle(ql.SimpleQuote(spot)),
-                           initial_var, rate_reversion, long_term_var, vol_of_vol, corr)
-model = ql.HestonModel(process)
-engine = ql.AnalyticHestonEngine(model)
-heston_helpers = []
-date = expiration_dates[expiry_index]
-for j, s in enumerate(strikes):
-    t = (date - calculation_date)
-    p = ql.Period(t, ql.Days)
-    sigma = premium[j]
-    helper = ql.HestonModelHelper(p, calendar, spot, s,
-                                  ql.QuoteHandle(ql.SimpleQuote(sigma)),
-                                  flat_ts,
-                                  dividend_ts)
-    helper.setPricingEngine(engine)
-    heston_helpers.append(helper)
-lm = ql.LevenbergMarquardt(1e-8, 1e-8, 1e-8)
-model.calibrate(heston_helpers, lm,
-                 ql.EndCriteria(500, 50, 1.0e-8,1.0e-8, 1.0e-8))
-long_term_var, rate_reversion, vol_of_vol, corr, initial_var = model.params()
-print "long_term_var = %f, rate_reversion = %f, vol_of_vol = %f, corr = %f, initial_var = %f" % (long_term_var, rate_reversion, vol_of_vol, corr, initial_var)
-
-We get the market data at 08/10/2017 and choose the contracts which expire on 11/17/2017. Then we get the following parameters estimation -
long_term_var = 0.191762, rate_reversion = 0.000001, vol_of_vol = 0.215442, corr = -0.817388, initial_var = 0.198778
-
-When you get the parameter estimation, you can plug the parameter values into the Heston Monte Carlo options pricing model and get the price estimation with stochastic volatility. But as we already discussed for Heston model, the introduction of randomness of volatility increases the complexity of the estimation. No matter which error measure is chosen, the objective function is highly non-linear and far from being convex and we have 5 parameters in the model. All these drawbacks of Heston models will make the estimated parameter values quite sensitive the initial guess of parameters. Therefore options prices generated by the Heston model are also parameter sensitive. From the above, we can get a sense of how computationally expensive it can be to get accurate values of options in a stochastic volatility model. -

 Summary

-
-
-
- -In Black–Scholes, that volatility is assumed to be constant, it is not reasonable especially for some exotic options in which the option's payoff is based on the changing volatility. Therefore we introduced the two volatility models to capture the volatility skew.The first approach, local volatility, assumes that the volatility is a deterministic function of time and the underlying asset price. This function must be chosen as to match the observed market option prices. In another stochastic volatility models, the asset price and its volatility are both assumed to be random processes. - -The calibration of these models needs the market price of the Vanilla options. When we get the model estimation we can use these models to pricing the corresponding exotic options. - -
-
-
-
-
-
diff --git a/Tutorial Series/Introduction to Options/images/call-payoff.png b/Tutorial Series/Introduction to Options/images/call-payoff.png deleted file mode 100644 index 663c94a..0000000 Binary files a/Tutorial Series/Introduction to Options/images/call-payoff.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/delta.png b/Tutorial Series/Introduction to Options/images/delta.png deleted file mode 100644 index 0efb29e..0000000 Binary files a/Tutorial Series/Introduction to Options/images/delta.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/gamma.png b/Tutorial Series/Introduction to Options/images/gamma.png deleted file mode 100644 index b1c8e8d..0000000 Binary files a/Tutorial Series/Introduction to Options/images/gamma.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/ivcall.png b/Tutorial Series/Introduction to Options/images/ivcall.png deleted file mode 100644 index 3018f70..0000000 Binary files a/Tutorial Series/Introduction to Options/images/ivcall.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/ivput.png b/Tutorial Series/Introduction to Options/images/ivput.png deleted file mode 100644 index 2c3f5a0..0000000 Binary files a/Tutorial Series/Introduction to Options/images/ivput.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/ivputcall.png b/Tutorial Series/Introduction to Options/images/ivputcall.png deleted file mode 100644 index a1e258f..0000000 Binary files a/Tutorial Series/Introduction to Options/images/ivputcall.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/n(-1).png b/Tutorial Series/Introduction to Options/images/n(-1).png deleted file mode 100644 index d8e01ba..0000000 Binary files a/Tutorial Series/Introduction to Options/images/n(-1).png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/put-payoff.png b/Tutorial Series/Introduction to Options/images/put-payoff.png deleted file mode 100644 index 66af26e..0000000 Binary files a/Tutorial Series/Introduction to Options/images/put-payoff.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/rho.png b/Tutorial Series/Introduction to Options/images/rho.png deleted file mode 100644 index 25138ce..0000000 Binary files a/Tutorial Series/Introduction to Options/images/rho.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/stock-price-path.png b/Tutorial Series/Introduction to Options/images/stock-price-path.png deleted file mode 100644 index e14a8d1..0000000 Binary files a/Tutorial Series/Introduction to Options/images/stock-price-path.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/theta.png b/Tutorial Series/Introduction to Options/images/theta.png deleted file mode 100644 index d5eb5bb..0000000 Binary files a/Tutorial Series/Introduction to Options/images/theta.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/vega.png b/Tutorial Series/Introduction to Options/images/vega.png deleted file mode 100644 index 43ad2d3..0000000 Binary files a/Tutorial Series/Introduction to Options/images/vega.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/vol-surface-call.png b/Tutorial Series/Introduction to Options/images/vol-surface-call.png deleted file mode 100644 index 89ff569..0000000 Binary files a/Tutorial Series/Introduction to Options/images/vol-surface-call.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/vol-surface-put.png b/Tutorial Series/Introduction to Options/images/vol-surface-put.png deleted file mode 100644 index 03ec840..0000000 Binary files a/Tutorial Series/Introduction to Options/images/vol-surface-put.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/volsurface.png b/Tutorial Series/Introduction to Options/images/volsurface.png deleted file mode 100644 index fd311f1..0000000 Binary files a/Tutorial Series/Introduction to Options/images/volsurface.png and /dev/null differ diff --git a/Tutorial Series/Introduction to Options/images/wiener-process.png b/Tutorial Series/Introduction to Options/images/wiener-process.png deleted file mode 100644 index 1a7135b..0000000 Binary files a/Tutorial Series/Introduction to Options/images/wiener-process.png and /dev/null differ diff --git a/Tutorial Series/README.md b/Tutorial Series/README.md deleted file mode 100644 index c8e32ec..0000000 --- a/Tutorial Series/README.md +++ /dev/null @@ -1,124 +0,0 @@ -![QuantConnect Logo](https://cdn.quantconnect.com/web/i/logo-small.png) -# QuantConnect Tutorial Series ----------- - -This repository is a collection of WordPress and Jupyter notebook tutorials for LEAN demonstrating basic financial concepts, Python usage and introduction to Options and Machine Learning. Tutorials are categorized into 3 folders with each Category. The Jupyter notebook and the associated HTML webpage must use matching file names. The HTML is generated and displayed with wordpress. - -## Introduction to Financial Python ## -This tutorial series starts from basic Python and finance concepts. If you have great investment ideas but don’t know how to build, or you think you need to learn some basic skills in quantitative finance, here is a good start point. These series include four parts: Python, basic math and statistics, basic finance regarding investment, and financial time series analysis, which is an advanced curriculum in quantitative finance. - -We not only introduce the concepts but also show you how to apply the introduced technique step by step using Python code snippets. We use real financial datasets as examples, and show you what those charts in text book look like with real-world financial data. After each chapter, we also design a QC algorithm applying what we learned. We do this in order to let you have a more comprehensive understanding and see the differences between the theories and the practice — sometimes it can be hard to apply a simple concept. - - -## Tutorial Series ## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Introduction to Financial Python
1. Data Types and Data Structures 8. Confidence Interval and Hypothesis Testing
2. Logical Opertions and Loops 9. Simple Linear Regression
3. Functions and Object-Oriented Programming 10.Multiple Linear Regression
4. NumPy and Basic Pandas 11. Linear Algebra
5. Pandas-Resampling and DataFrame 12. Modern Portfolio Theory
6.Rate of Return, Mean and Variance 13. Capital Asset Pricing Model
7. Random Variable and Distributions 14. Fama-French Multi-Factor Models
- -## Introduction to Options ## -The goal of this series is to introduce options to those who are option novices and have basic knowledge of applied mathematics, statistics and financial markets. We will primarily talk about the fundamentals of options and cover topics such as what are options, key terms and concepts option traders need to be familiar with(exercise and assignment,The moneyness, Intrinsic and time value of options etc.) After knowing the basics of options, we will teach how to use QuantConnect API to conduct your options research with over 4000 underlying stock symbols. - -The following few options tutorials was created to help you understand exactly how options are used as investment and risk hedging tools. We will further discuss the pricing method of options like BSM model and monte carlo method. And then several metrics to gauge the options risks like the Greek lettters, different kinds of volatilities used in options pricing and trading. At the end of some tutorials, we will apply the knowledge in that tutorial to demonstrate some simple algorithms developed with Python on Quantconnect attempting to help you gain an insight into options trading and learn more efficient API tools to better customize your own trading algorithms. - - - - - - - - - - - - - - - - - - - - - - - - - -
Introduction to Options
1. General Features of Options 5. Options Pricing: Black-Scholes-Merton Model
2. Using Options in QuantConnect 6. The Greek Letters
3. Put-Call Parity and Arbitrage Strategies 7. Historical Volatility and Implied Volatility
4. Stochastic Processes and Monte Carlo Method 8. Local Volatility and Stochastic Volatility
- - -## Introduction to Machine Learning ## -This tutotial series aims to give you a general idea of what are machine learning algorithms and how could they be applied to your trading strategies. We start from supervised learning algorithms like the well-known neural network, support vehicle machine, etc. and then go to cover tree-based classifiers such as decision trees, random forest, etc. Next, we reach out to reinforcement learning and association rules. And in the end of this tutotial series, we introduce unsupervised learning, as well as heuristic algorithm. All of them play important roles in financial decisions. - -Unlike most teachings in textbooks, our tutorials keep from going deep into math which dampens readers' enthusiasm. Instead, we use simple and easy-to-understand examples to illustrate the complex logic behind each machine learning algorithm. We the display the APIs in Python to make these tools handy for you. Finally, we end each tutorial with a trading algorithm combining and applying what you've learned with real market data. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Introduction to Machine Learning
1. Structure and Construction of Neural Networks 2. Kernel Function and Construction of Support Vector Machines
3. Bayes' Theorem and Classification of Market Signals by Naive Bayes 4. Using Entropy and Information Gain to Construct ID3 Decision Tree
5. Random Subtrees and Class Prediction with Random Forest 6. Boosting Ensemble and Making Predictions with AdaBoost
7. Unsupervised Reinforcement Mechanism and Implementation of Q-Learning Algorithms 8. Association Rule and Market Trend Analysis with Apriori Algorithms
9. Centroid Rebalance and Stock Classification with K-Nearest Neighbors 10. Optimizing Technical Indicators by Simulating Evolution Processes to Construct Genetic Algorithms
- -[1]: https://www.quantconnect.com/tutorials/introduction-options-general-features-options/ - diff --git a/quantpedia.json b/quantpedia.json new file mode 100644 index 0000000..22f8d06 --- /dev/null +++ b/quantpedia.json @@ -0,0 +1,52 @@ +{ + 1 : "6caef9a7716468be0d790b63b7f463f6", + 2 : "1cb38e96cec6120fc85152da661605c1", + 3 : "4191ffdf07f9d7dec396f148a20b3eef", + 4 : "d31f2d20f4a060418985dd8c0c606c13", + 5 : "798687a2edab75475f0c9095ecd71c1f", + 7 : "34e8ae2763e7e2122634d4091120d320", + 8 : "336bbb8e9e4a55a6adfa00c0d9f904bb", + 12: "72532ccafeaa844c81aa75c5696b4b24", + 13: "05d0edd633b1438852d1d641af0224ae", + 14: "e7b55d46fa8677ed8ec91dd1a0159a6e", + 15: "bd83aa417032f8407382a1c065aa7511", + 16: "afd2c9d67fd51d602bf8eac2ef28d712", + 18: "ba1bb35b26896e2e710a510f62230a24", + 20: "f0fca76a72227c5bee77d59bdbf5a53d", + 21: "203a6729604c80a71b5c3b2baa2b3f69", + 22: "d7285b5353d51cd5bd033f205e5faf44", + 23: "12a417567b5706fdff6cf6265506b98c", + 25: "ae6b2ce97f01f10af90c8823828ae5c9", + 26: "d8cd05d85b47eea4381d2ca20abf2f74", + 38: "55081a6fa81c88fd75579c2f838a1180", + 41: "d91ba9f0676ddc619a573b4d9135d988", + 43: "707c5bb33fede32269a986370bf8a0a9", + 44: "6fe04ea9049f2cf36d3c64ee672254ea", + 51: "b6d06b2074e4efe807c29135507fa2ab", + 52: "813285e2c02ffca1afa114e668301ea8", + 55: "2d6bcad96d965a04cd7eac846d54f129", + 53: "e8a75429c6a43e969e4a9243290e05f4", + 54: "12769f4ad4513269d8f771c99046deb2", + 58: "6f1f8cae87849a2aa65aa318f6554dfc", + 61: "17611f8cf05678b9bd09d98ba3581854", + 66: "ace0e17cc133feceaf4aa83035309116", + 71: "124aa2fdf4ae34bc022a00b54c26b10d", + 77: "0483e5a7094604254ab37eda8b5141b8", + 78: "27fb5f05b0e48f488f0994d8d83ddc77", + 83: "fdfcddd132eaf55039d867c03efe3012", + 85: "a86b19f12b40d8a676bf7f885742631d", + 91: "95cffbeec0d003da873b791d3a10f60f", + 100: "5ee5507fef6bf190ae533ce05ccaa785", + 102: "cd2d187e44a00c7b19f64aee8b0895d9", + 113: "9b1291a5f08dcc07df86363e46144084", + 114: "7a404f43e9191ac5bce9a9446572cb98", + 125: "1f9f254c932d8e7ae85e803affd52a7b", + 136: "d8932a9697f7e98e9a00761d37e627dd", + 152: "b35034509d95c173fed1c0adcecc5be0", + 155: "886a9f73bc29142f14fcb2c2d01404a9", + 162: "5761c1817a9dcb805be487f9e32adfa1", + 198: "59a110653538ebcbfccacbe237c33091", + 199: "2deff750ba4eff5bf2f2138ecffb4a7c", + 207: "9bcf7ac117397af393ca59f795c4abdd", + 229: "5544552803512ca667342d5011dedd1d", +}