From 7ce31e0955288ea7b87462d4f94d413a99913d70 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Fri, 14 Apr 2017 13:46:47 -0700 Subject: [PATCH 1/4] Some Markdown formatting fixes --- devices/pc8080/rom/vt100/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/devices/pc8080/rom/vt100/README.md b/devices/pc8080/rom/vt100/README.md index 837b8d036..5100aacaa 100644 --- a/devices/pc8080/rom/vt100/README.md +++ b/devices/pc8080/rom/vt100/README.md @@ -60,9 +60,9 @@ and if we display the data as bits instead of bytes: 1 1 1 1 1 1 1 . // 0xFE 1 . . . . . 1 . // 0x82 1 . . . . . 1 . // 0x82 - . . . . . . . . // 0x00 - . . . . . . . . // 0x00 - . . . . . . . . // 0x00 + . . . . . . . . // 0x00 + . . . . . . . . // 0x00 + . . . . . . . . // 0x00 it should be clear how the shape of the character is defined. However, the character generator ROM doesn't tell the whole story, because the VT100's display circuitry has a few additional tricks up its sleeve. @@ -76,7 +76,7 @@ As page 4-52 of DEC's [VT100 Technical Manual (July 1982)](http://bitsavers.info explains: > Data, coming either from the screen RAM for scan 1 or the line buffer for scans 2 through 10, becomes part of an -address to a character generator ROM. (See Figure 4-6-4, Character Generator Example.) The rest of the address comes +address to a character generator ROM. (See Figure 4-6-4, Character Generator Example.) The rest of the address comes from a scan counter in the DC012 control chip. The scan counter addresses the ROM according to which of the ten scans is to be displayed. The 4-bit scan counter skips over the other 6 possible addresses to the ROM, so the ROM contains data in only 10 out of 16 locations. The output of the ROM is eight bits that represent the pattern of sequential @@ -89,7 +89,7 @@ at page 4-76 of DEC's [VT100 Technical Manual (July 1982)](http://bitsavers.info you'll see the effect of the VT100's Dot Stretcher. Here's how DEC illustrates it: 20 dots for 2 characters ("Ap") in 80-col mode - + 0 . . . . . . . . . . . . . . . . . . . . 1 . . . . 1 . . . . . . . . . . . . . . . 2 . . . 1 . 1 . . . . . . . . . . . . . . @@ -98,9 +98,9 @@ you'll see the effect of the VT100's Dot Stretcher. Here's how DEC illustrates 5 . 1 1 1 1 1 1 1 . . . 1 1 . . . . 1 . . 6 . 1 . . . . . 1 . . . 1 . 1 1 1 1 . . . 7 . 1 . . . . . 1 . . . 1 . . . . . . . . - 8 . . . . . . . . . . . 1 . . . . . . . . - 9 . . . . . . . . . . . 1 . . . . . . . . - + 8 . . . . . . . . . . . 1 . . . . . . . . + 9 . . . . . . . . . . . 1 . . . . . . . . + Actual characters displayed after dot stretching 0 . . . . . . . . . . . . . . . . . . . . From abce30fda55b070b109b9b8446966ab244e81529 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Sun, 30 Apr 2017 10:13:05 -0700 Subject: [PATCH 2/4] README updates --- apps/pdp10/diags/ka10/README.md | 23 +- apps/pdp10/tapes/README.md | 13 + apps/pdp10/tapes/vtape.txt | 493 ++++++++++++++++++++++++++++++++ apps/pdp10/tops10/README.md | 101 +++++++ pubs/dec/pdp10/README.md | 2 +- 5 files changed, 630 insertions(+), 2 deletions(-) create mode 100644 apps/pdp10/tapes/vtape.txt create mode 100644 apps/pdp10/tops10/README.md diff --git a/apps/pdp10/diags/ka10/README.md b/apps/pdp10/diags/ka10/README.md index 9f61d3525..60300a28b 100644 --- a/apps/pdp10/diags/ka10/README.md +++ b/apps/pdp10/diags/ka10/README.md @@ -7,13 +7,34 @@ permalink: /apps/pdp10/diags/ka10/ PDP-10 KA10 Diagnostics ----------------------- -PCjs has archived selected KA10 diagnostic source files from the +PCjs has archived selected files from the "KLAD Diagnostic Sources" located at the [PDP-10 KLAD Diagnostics Sources](http://pdp-10.trailing-edge.com/klad_sources/index.html) and turned them into stand-alone PDP-10 diagnostics, using the new PCjs [MACRO-10 Mini-Assembler](/modules/pdp10/lib/macro10.js). Lists of supported [diagnostics](#list-of-ka10-diagnostics) and [reliability tests](#list-of-ka10-reliability-tests) are provided below, as well as some [notes](#notes-on-ka10-diagnostics) on assembling the diagnostics. +All the files below presumably came from this "[23.15 Mbyte compressed tape image](http://pdp-10.trailing-edge.com/tapes/klad_sources.tap.bz2)" +which is described on the [PDP-10 KLAD Diagnostics Sources](http://pdp-10.trailing-edge.com/klad_sources/index.html) page as: + + Start of Saveset Diagnostics -- binaries and documentation on + + strange monitor 0(0) APR#8210 + + 0 BPI 9-track 13-Dec-100 1:03:45 BACKUP 0(0) tape format 1 + + Tape number 1 + +The original 23.15 Mbyte file looked like this: + + -rw-------@ 1 Jeff staff 23148930 Feb 3 2002 klad_sources.tap.bz2 + +and `bzip2 -d klad_sources.tap.bz2` produced this: + + -rw-------@ 1 Jeff staff 139719984 Feb 3 2002 klad_sources.tap + + + List of KA10 Diagnostics ------------------------ diff --git a/apps/pdp10/tapes/README.md b/apps/pdp10/tapes/README.md index d09b44286..9910b9267 100644 --- a/apps/pdp10/tapes/README.md +++ b/apps/pdp10/tapes/README.md @@ -8,3 +8,16 @@ PDP-10 Software Tapes --------------------- PCjs has not yet archived any PDP-10 software from tape. + +Tape Formats +------------ + +This is a topic that will obviously take some time to digest, especially when starting from scratch, so for +now, we'll just archive some relevant documents. + +From [http://src.gnu-darwin.org/ports/emulators/klh10/work/klh10-2.0a/doc/vtape.txt](http://src.gnu-darwin.org/ports/emulators/klh10/work/klh10-2.0a/doc/vtape.txt): + +{% highlight text %} +{% include_relative vtape.txt %} +{% endhighlight %} + diff --git a/apps/pdp10/tapes/vtape.txt b/apps/pdp10/tapes/vtape.txt new file mode 100644 index 000000000..35518ba0a --- /dev/null +++ b/apps/pdp10/tapes/vtape.txt @@ -0,0 +1,493 @@ +/* VTAPE.TXT - KLH10 Virtual Tape Format +*/ +/* $Id: vtape.txt,v 2.3 2001/11/10 21:24:21 klh Exp $ +*/ +/* Copyright © 1994-1999, 2001 Kenneth L. Harrenstien +** All Rights Reserved +** +** This file is part of the KLH10 Distribution. Use, modification, and +** re-distribution is permitted subject to the terms in the file +** named "LICENSE", which contains the full text of the legal notices +** and should always accompany this Distribution. +*/ + + One of the methods used by the KLH10 to emulate PDP-10 +magnetic tape devices is to provide support for "virtual tapes". +These virtual tapes are in reality disk files on the native host +system which have a specific format. Because they are native disk +files, it is far easier and faster to manipulate these virtual tape +images (for reading, writing, copying, archival, and transport over +networks) than would be the case for real physical tapes. + +The purpose of this description is to allow users to generate or +maintain virtual tapes using their own tools in addition to the ones +provided in the KLH10 distribution. In most cases these tools can be +nothing more than a text editor and a simple copy program such as Unix +"dd". + +VIRTUAL TAPE FORMATS +==================== + + Several virtual tape formats exist, developed more or less +independently. The KLH10 software can handle most of them and others +could be added if necessary. These formats are: + + "RAW" - original KLH10 format + "TPS" - Wilson & Supnik format + "TPC" - DECUS/Shoppa format + "ITSDUMP" - special KLH10 format for ITS + + +"RAW" VIRTUAL TAPE: Directory and Data files +================== + + Each RAW-format virtual tape consists of two native files, one +for the actual tape data and the other to describe that data. For +example, a virtual tape with the name "kosh" would consist of these +two files: + + Virtual tape "kosh": + kosh - Tape directory (text; defines structure of data) + kosh.tap - Tape data (binary; one byte per tape frame) + + +"RAW" DATA FILE FORMAT (.TAP) + + The tape data file is simply a continuous sequence of 8-bit bytes +corresponding to the logical stream of 8-bit tape data frames. There is +nothing in this file except tape data; there are no record boundaries or +tapemarks. Because this is a binary data file, all operations on this +file must preserve the data exactly. + + +"RAW" DIRECTORY FILE FORMAT (.TDR) + + The tape directory is a text file that describes the contents of +its associated tape data file; it defines how the tape is structured in +terms of record boundaries, tapemarks, length, and internal format. It +can be used to describe anything about the tape in an easily readable +and editable form. + + The directory is formatted as a set of logical text lines. Each +line begins with a keyword, optionally followed by data. Comments are +introduced by a semi-colon character (';') and continue to the end of +that physical line. Blank lines are ignored. Whitespace is also +ignored except at the start of a line, where indentation may be used +only when continuing a logical line over several physical +lines. + + Keywords: + TF-Format: [] + ; Tape datafile format and optional filename + <#>: ; File/Record descriptors + ; optional continuation of above + EOT: ; Physical End of Tape, remaining text ignored. + + - REQUIRED. Describes how the tape file data is stored on + disk. Currently only one keyword is fully supported: + "raw" - 8-bit bytes, one per frame. + + - DEPRECATED. Optional name of tape data file, a feature + no longer used (ie ignored on input, not generated on output). + The tape data filename is either specified at mount time or + dynamically generated using ".tap" as an extension to the name of + the tape directory file. This extension replaces ".tdr" if it + exists, otherwise ".tap" is simply appended. + + <#> - location in data file of 1st record beginning next file. For "raw" + format this corresponds to the logical frame # on tape as well, but + for other formats this may serve a realignment purpose. + The string "BOT" is considered equivalent to "0". + + - a list of record descriptors composing the file, + separated by whitespace. The list may be empty, as is normally + the case for two consecutive tapemarks that signal a logical EOT. + + - A record descriptor, with the format + [*][E[]] + where: + - decimal record length, in frames (8-bit bytes) + - # times this record length recurs. + E - indicates error when reading this record (or the last of a + series). is an optional # and specifies additional + information, if any, as to nature of the error. + + The string "EOF" is a special that signals a tape mark. + + +TAPE DIRECTORY EXAMPLE: + + Here is an example of a tape directory file for a small dump: + + ; DUMPER saveset of PS: ; Human-readable comment + TF-Format: raw ; Required, and must be "raw" + 0: 2590*8407 EOF ; First file + 21774130: EOF ; Second file (empty == logical EOT) + EOT: ; Physical EOT + +Note that comments can exist, that the data file format is RAW, and +that it starts at frame 0 with a 2590-byte record which is repeated +8407 times, followed by an EOF tapemark, then another EOF tapemark. +The emulator software generates the second EOF using a new line so +that the tape location (21774130) can serve as a validity cross-check; +this is a compromise between putting everything on a single line or +putting each record on its own line, either of which is equally valid. + +"TPS" FILE FORMAT (.TAP, .TPS, .TPE) +==================================== + + This is the format used by Bob Supnik's SIMH emulators. It is +almost the same as John Wilson's E11 format, which it was intended to +resemble. + +A TPS file is assumed to consist of 8-bit bytes. + +Each record starts with a 4-byte header in little-endian order. +The high bit of this 32-bit header is set to indicate an error of +some kind (similar to the 'E' flag in a RAW-format control file) and +the remaining 31 bits contain the record length N. + +This header is followed by N data bytes plus, if N is odd, a padding +byte (of undefined value) at the end. Following this is a copy of the +4-byte record header. + +Tapemarks are represented by a single header with N=0. + +The reason for having the record length both before and after the +record data is so tape motion in the reverse direction can be more +easily simulated. + +The E11 (.TPE) format is identical except there are no padding bytes. + + +"TPC" FILE FORMAT (.TPC) +======================== + + This format is not as flexible as the others but was +apparently quite commonly used for DECUS tape images, and Tim Shoppa +has a "couple thousand" TPC images stashed away. + +A TPC file is assumed to consist of 8-bit bytes. + +Each record starts with a 2-byte header in little-endian order, +containing 16 bits of record length N. + +This header is followed by N data bytes plus, if N is odd, a padding +byte (of undefined value) at the end. Unlike TPS format, there is no +trailing header. + +Tapemarks are represented by a single header with N=0. + +Obviously it is difficult to use this format directly when reverse +tape motion is desired; an internal representation must be built. + + +TAPE GENERATION + +There are three principal ways to create virtual tapes: + + (1) Using the emulator to write tapes. + (2) Copying from real PDP-10 tapes. + (3) Creating synthesized tapes "by hand". + + +TAPE GENERATION [1]: Using the emulator +======================================= + + Method [1] is described in the documentation for the emulator +proper; see the section "Using Virtual Tapes" in USAGE.TXT. + + +TAPE GENERATION [2]: Copying a real tape +======================================== + + This is likely to be the most common use of virtual tapes for a +new installation. This is also the only way to move data in and out of +a virtual system if there is no network support. + +The simplest method for copying a real tape is to use the TAPEDD utility +provided with the emulator, as follows: + + + + % tapedd it=/dev/rmt0a otv=kosh + +This will copy the tape into a virtual tape named "kosh" with whatever +extension is appropriate for the format. Note that the TAPEDD +arguments have a form similar to that of the standard Unix DD utility, +but are not the same. Invoking TAPEDD without arguments will cause it +to list the possible options, most of which are never needed. + +If you want to copy a virtual tape back onto a physical tape, then +the counterpart to the above command would be: + + % tapedd itv=kosh ot=/dev/rmt0a + +If for some reason TAPEDD is not available or you want to build a virtual +tape that isn't a direct copy of an existing physical tape, you will need +to get your hands dirty with method [3]. + +TAPEDD allows specifying the virtual tape format with a letter following +the "v". For example: + + % tapedd it=/dev/rmt0a otvs=kosh + +will copy a tape into a TPS format file called "kosh.tps". + + +TAPE GENERATION [3]: Creating a synthesized tape +================================================ + + One of the primary reasons for implementing virtual tapes as a +RAW-format pair of files (data and directory) was to simplify the +process of creating and managing these tapes by hand in an extremely +portable way, without using any special software tools. + +To generate the tape directory file, all you need is a text editor. + +To generate the tape data file, normally it suffices to use the Unix +utility "dd" or equivalent device-to-device copying program. You simply +need to append every byte of tape data into a sequential binary file. + +For example, the tape data file corresponding to the sample tape +directory above could have been read with a command like this: + + % dd if=/dev/rmt0a of=kosh.tap bs=126b + 0+8407 records in + 0+8407 records out + +Note that to use this technique properly you must have some prior +knowledge of the record sizes on the tape. For one thing, the blocksize +specified must be larger than the largest possible record size, to avoid +record truncation (hence the bs=126b); but more importantly, without +knowing the record size you don't know what to put in the tape directory +(TDR) file. In this case, we know that TOPS-20 DUMPER records are <518 +words * 5 bytes/word> = 2590 bytes and so the appropriate is +2590*8407. But if the records were of different lengths then DD +provides no way for you to tell what these lengths were; this is one +reason TAPEDD is easier. + +[Aside: TOPS-20 DUMPER could actually use a blocking factor of up to 15, +so that records could be 15*518*5 = 38850 bytes long, but for virtual +tapes the blocking is irrelevant and a factor of 1 always works for +DUMPER.] + +To read multiple files from a tape using DD you must use a non-rewind +device specification, such as "/dev/nrmt0a", and invoke DD once for +each file. Remember to insert "EOF"s at appropriate places in the +descriptor file. + +Although there is an UNIX utility called READ20 that can extract +native files from TOPS-20 DUMPER format tapes (real or virtual), there +is currently none for the inverse operation. In order to transport +native files into the virtual system without a network, pretty much +your only option is to synthesize a virtual tape where the contents +are simple data files. + +WFCONV is a handy utility included with the emulator that will help +prepare such files. It acts as a conversion filter, copying the +standard input to the standard output and converting the data from one +PDP-10 tape format to another. In order to fully understand why this is +needed, you need to understand something about PDP-10 tape formats; for +now, just note the following examples, and see the appendix for details. + +Example 1: transferring an ASCII text file: + + # Make NL -> CRLF and convert into core-dump format + % wfconv -tc > temp.tap + # Find size of file + % ls -l temp.tap + -rw-rw-r-- 1 klh klh10 18641 Apr 1 1994 temp.tap + # Use size to compute number of 512-byte records + # 18641/512 = 36, plus leftover record of 209 + % cat > temp + TF-Format: raw + 0: 512*36 209 EOF EOF ; 36 records plus a short 37th + EOT: + ^D + % + ;; Then in TOPS-20 after mounting the tape "temp": + ;; Note default format is CORE-DUMP, default reclen is 512. + @copY (FROM) mta0: (TO) temp.txt + MTA0: => TEMP.TXT.1 [OK] + @vd temp.txt + + PS: + TEMP.TXT.1;P777700 8 3729(36) 20-Apr-97 01:00:59 OPERATOR + @ + + +Example 2: transferring a binary file of 8-bit bytes (no conversion needed): + + % cp temp.dat temp.tap + % ls -l temp.tap # Find size of file + -rw-rw-r-- 1 klh klh10 18641 Feb 13 1994 temp.tap + % cat > temp + TF-Format: raw + 0: 2560*7 721 EOF EOF + EOT: + ^D + % + ;; Then in TOPS-20 after mounting the tape "temp": + @set taPE rECORD-LENGTH (TO) 2560 + @set taPE fORMAT (TO) iNDUSTRY-COMPATIBLE + @copY (FROM) mta0: (TO) temp.dat, + @@byTE (SIZE) 8 + @@ + MTA0: => TEMP.DAT.1 [OK] + @vd temp.dat + + PS: + TEMP.DAT.1;P777700 10 18641(8) 19-Apr-97 23:57:46 OPERATOR + @ + + +Example 3: building a TOPS-20 installation tape + + If you already have a TOPS-20 system, especially one with local +modifications (which pretty much includes everyone), you may wish to +build your own installation tape. The following illustrates what the +tape directory of the V7.0 TOPS-20 installation tape looks like. Note +it does not have an initial bootstrap on it since MTBOOT is assumed to +be already loaded in the PDP-10 memory. + + ; Tape directory for V7.0 TOPS-20 installation tape + ; Bytes: 22519060, Records: 8704, Files(EOF marks): 7 + TF-Format: raw + 0: 2560*597 EOF ; MONITR.EXE + 1528320: 2560*125 EOF ; EXEC.EXE + 1848320: 2560*8 EOF ; DLUSER.EXE + 1868800: 1270 EOF ; DLUSER data + 1870070: 2560*36 EOF ; DUMPER.EXE + 1962230: 2590*7937 EOF ; DUMPER savesets for , etc. + 22519060: EOF + EOT: + +All of these files must be in core-dump format. You can generate the +tape either by: + (1) creating it on a real TOPS system and then using it directly + or using TAPEDD to copy it into a virtual tape. + (2) copying the necessary files over, converting them into core-dump + format, and concatenating them to form a virtual tape. + +See "klt20.txt" for more details on how such an installation tape is +actually used. + + +Quick lesson in tape formats: + + A PDP-10 word is 36 bits. The 8-bit bytes ("frames" on 9-track +drives) that are now universal for tape don't fit exactly into 36 bits, +which opens a Pandora's Box of packing options. The basic formats +offered at one time or another on Digital systems are as follows: + + WFCONV mode TOPS-20 name + ----------- ------------------ + a ANSI-ASCII + c CORE-DUMP + h HIGH-DENSITY + i INDUSTRY-COMPATIBLE + s SIXBIT + +Only CORE-DUMP and INDUSTRY-COMPATIBLE are universally supported; the +others are features of older or newer formatters. In general, the TOPS-20 +monitor expects CORE-DUMP format so that should be your normal choice. + + Tape_Coredump (5 tape bytes per word) + B0 1 2 3 4 5 6 7 + 8 9 10 11 12 13 14 15 + 16 17 18 19 20 21 22 23 + 24 25 26 27 28 29 30 31 + 0 0 0 0 32 33 34 35 + + Tape_Indust (4 tape bytes per PARTIAL word) + B0 1 2 3 4 5 6 7 + 8 9 10 11 12 13 14 15 + 16 17 18 19 20 21 22 23 + 24 25 26 27 28 29 30 31 ; Bits 32-35 are unused! + + Tape_Sixbit (6 tape bytes per word) + 0 0 B0 1 2 3 4 5 + 0 0 6 7 8 9 10 11 + 0 0 12 13 14 15 16 17 + 0 0 18 19 20 21 22 23 + 0 0 24 25 26 27 28 29 + 0 0 30 31 32 33 34 35 + + Tape_Ascii (5 tape bytes per word) + 0 B0 1 2 3 4 5 6 + 0 7 8 9 10 11 12 13 + 0 14 15 16 17 18 19 20 + 0 21 22 23 24 25 26 27 + 35 28 29 30 31 32 33 34 + + Tape_Hidens (9 tape bytes per 2 words) + B0 1 2 3 4 5 6 7 + 8 9 10 11 12 13 14 15 + 16 17 18 19 20 21 22 23 + 24 25 26 27 28 29 30 31 + 32 33 34 35 B0 1 2 3 + 4 5 6 7 8 9 10 11 + 12 13 14 15 16 17 18 19 + 20 21 22 23 24 25 26 27 + 28 29 30 31 32 33 34 35 + + +WFCONV operation notes +====================== + +Invoking WFCONV without arguments will print out a summary similar to +the following: + +Usage: wfconv -io outfile\n\ + where 'i' and 'o' are chars specifying the input and output formats: + c - Core-dump (std tape format, 4 8-bit, 1 4-bit bytes = 36 bits) + h - High-density (FTP 36-bit image, 9 8-bit bytes = 72 bits) + a,7 - Ansi-Ascii (4 7-bit, 1 8-bit byte = 36 bits) + s,6 - Sixbit (6 6-bit bytes = 36 bits) + u - Unixified (Alan Bawden format, various = 36 bits) + t - Text-Newline (CRLF-NL conversion; 5 7-bit bytes = 35 bits ONLY) + d - Debug (for output only) + Note: EOF on input always causes zero-padding up to a PDP-10 word boundary. + +Typical uses of WFCONV would be as follows: + +1. Examining a PDP-10 text file copied from a tape: + + # Convert from core-dump to ansi-ascii (preserve CRs) + $ wfconv -ca < file.tap > file.asc + or: + # Convert from core-dump to text-newline (convert CRLFs to NLs) + $ wfconv -ct < file.tap > file.txt + +2. Preparing a text file for writing to tape: + + # Convert from ansi-ascii to core-dump (preserve NLs) + $ wfconv -ac < file.asc > file.tap + or: + # Convert from text-newline to core-dump (convert NLs to CRLFs) + $ wfconv -tc < file.txt > file.tap + +3. Preparing a file for tape after transferring it from a real PDP-10 + using FTP 36-bit Image mode: + + # Convert from high-density (FTP Image) to core-dump + $ wfconv -hc < file.ftp > file.tap + + +Note: + + Due to the fact that PDP-10 words are used as the canonical input + conversion target (and output conversion source), input is always + effectively rounded up to a word boundary. + + This can cause the addition of a few trailing zero bytes when converting + from Text-Newline or Ansi-ASCII format, so WFCONV is not a + general-purpose text-to-text conversion program. For that, one can use: + + # To insert CR (must use ^V or equiv to quote the ^M) + $ sed 's/$/\^M/' temp.nls > temp.crlfs + + # To delete CR (must use ^V or equiv to quote the ^M) + $ sed 's/\^M$//' temp.crlfs > temp.nls + diff --git a/apps/pdp10/tops10/README.md b/apps/pdp10/tops10/README.md new file mode 100644 index 000000000..6a767e2ea --- /dev/null +++ b/apps/pdp10/tops10/README.md @@ -0,0 +1,101 @@ +--- +layout: page +title: PDP-10 TOPS-10 +permalink: /apps/pdp10/tops10/ +--- + +PDP-10 TOPS-10 +-------------- + +Having never used TOPS-10 in real life, it seemed like a good idea to get familiar with it first, using another +emulator. Thankfully, [The Digital Antiquarian](http://www.filfre.net/) created "[TOPS-10 in a Box](http://www.filfre.net/2011/05/tops-10-in-a-box/)", +everything you need to run TOPS-10 on a virtual PDP-10. + +From README.txt (in the "TOPS-10 in a Box" zip file): + + STARTING YOUR VIRTUAL PDP-10 + ============================ + + 1. Bring up a command prompt in the PDP-10 In a Box directory using whatever technique is normal for your platform. + + 2. Enter "pdp10 tops10.cfg". + + 3. At the "BOOT>" prompt, just press enter. + + 4. At the "Why reload:" prompt, enter "NEW". + + 5. At the "Date:" prompt, just press enter to accept your host computer's current date. + If you wish, you may enter another date in the format "MM-DD-YYYY". + + 6. At the "Time:" prompt, just press enter to accept your host computer's current time. + If you wish, you may enter another time in the format "HHMMSS". + + 7. At the "Startup option:" prompt, enter "GO". + + 8. After a moment, the system will place you in the system operator's console (denoted by the "OPR>" prompt). + To work with programs and files like a normal user, just type "EXIT" here. + +Unfortunately, my first attempt hung after step #3, which I resolved by downgrading from [SIMH V4.0](https://github.com/simh/simh/releases/tag/v4.0-devel) +to the older [SIMH V3.9](http://simh.trailing-edge.com/sources/simhv39-0.zip). Here's the resulting output: + + PDP-10 simulator V3.9-0 + Listening on port 2020 (socket 5) + Modem control activated + Auto disconnect activated + Logging to file "tops10.log" + BOOT V4(76) + + BOOT> + [Loading from DSKB:SYSTEM.EXE[1,4]] + + KS10 07-Oct-88 + Why reload: NEW + Date: + Time: + Startup option: GO + [Rebuilding the system search list from the HOM blocks] + + [Rebuilding the active swapping list from the HOM blocks] + + [Rebuilding the system dump list from the HOM blocks] + + + KS10 09:09:41 CTY system 4097 + Connected to Node CENTRA(0) Line # 42 + .LOGIN 1,2 + .R OPR + + [CCPWFD Waiting for file daemon to start] + %%TTY STOMPER - Starting + OPR> + 9:09:51 -- Message from the Accounting System -- + Account validation is not required + + 9:09:52 -- Begin auto take file -- + File: SYS:SYSTEM.CMD[1,4] + + 9:09:52 -- End auto take file -- + 17 lines processed + + OPR> + +At this point, I stopped, because now that I knew the `pdp10` binary from +[SIMH V3.9](http://simh.trailing-edge.com/sources/simhv39-0.zip) worked on my system (macOS), I wanted to +create an Xcode project to build *just* that binary, and make it easier for me to modify and debug that binary. + +I had already run `make` to build the official SimH `pdp10` binary, so in order to isolate all the commands required +to build *just* `pdp10`, I re-ran `make` with `-B` to unconditionally remake all targets and `-n` to print the commands +that would be executed with executing them, and then isolated the PDP10-specific command(s) with `grep`: + + make -Bn | grep pdp10 + +I was pleasantly surprised to see that there was only one (albeit rather lengthy) command: + + gcc -std=c99 -U__STRICT_ANSI__ -O2 -finline-functions -flto -fwhole-program -I . -D_GNU_SOURCE -DUSE_READER_THREAD \ + -DHAVE_DLOPEN=dylib PDP10/pdp10_fe.c PDP11/pdp11_dz.c PDP10/pdp10_cpu.c PDP10/pdp10_ksio.c PDP10/pdp10_lp20.c \ + PDP10/pdp10_mdfp.c PDP10/pdp10_pag.c PDP10/pdp10_rp.c PDP10/pdp10_sys.c PDP10/pdp10_tim.c PDP10/pdp10_tu.c \ + PDP10/pdp10_xtnd.c PDP11/pdp11_pt.c PDP11/pdp11_ry.c PDP11/pdp11_cr.c scp.c sim_console.c sim_fio.c sim_timer.c \ + sim_sock.c sim_tmxr.c sim_ether.c sim_tape.c -DVM_PDP10 -DUSE_INT64 -I PDP10 -I PDP11 -o BIN/pdp10 -lm -lpthread \ + -ldl -flto -fwhole-program + +It was time to build the Xcode project. diff --git a/pubs/dec/pdp10/README.md b/pubs/dec/pdp10/README.md index a8b492b64..848c36882 100644 --- a/pubs/dec/pdp10/README.md +++ b/pubs/dec/pdp10/README.md @@ -15,7 +15,7 @@ PDP-10 Hardware Publications ---------------------------- - [PDP-10 System Reference Manual (May 1968)](http://archive.pcjs.org/pubs/dec/pdp10/ka10/DEC-10-HGAA-D_PDP-10_System_Reference_Manual_May1968.pdf) [[Original PDF](http://bitsavers.trailing-edge.com/pdf/dec/pdp10/KA10/DEC-10-HGAA-D_PDP-10_System_Reference_Manual_May1968.pdf)] -- [DECSYSTEM-10/DECSYSTEM-20 Processor Reference Manual (June 1982)](http://archive.pcjs.org/pubs/dec/pdp10/tops10/AA-H391A-TK_DECsystem-10_DECSYSTEM-20_Processor_Reference_Jun1982.pdf) [[Original PDF](http://bitsavers.org/pdf/dec/pdp10/TOPS10_softwareNotebooks/vol05/AA-H391A-TK_DECsystem-10_DECSYSTEM-20_Processor_Reference_Jun1982.pdf)] +- [DECSYSTEM-10/DECSYSTEM-20 Processor Reference Manual (June 1982)](http://archive.pcjs.org/pubs/dec/pdp10/kl10/AA-H391A-TK_DECsystem-10_DECSYSTEM-20_Processor_Reference_Jun1982.pdf) [[Original PDF](http://bitsavers.org/pdf/dec/pdp10/TOPS10_softwareNotebooks/vol05/AA-H391A-TK_DECsystem-10_DECSYSTEM-20_Processor_Reference_Jun1982.pdf)] PDP-10 Software Publications ---------------------------- From 16f50b88d2e7310f4b929e2ea03f62f936e52b00 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Tue, 2 May 2017 15:03:02 -0700 Subject: [PATCH 3/4] Updated KA10 diagnostics page --- apps/pdp10/diags/ka10/README.md | 1264 ++++++++++++++++++++++++++++++- modules/pcx86/lib/panel.js | 2 +- 2 files changed, 1237 insertions(+), 29 deletions(-) diff --git a/apps/pdp10/diags/ka10/README.md b/apps/pdp10/diags/ka10/README.md index 60300a28b..1b9fad651 100644 --- a/apps/pdp10/diags/ka10/README.md +++ b/apps/pdp10/diags/ka10/README.md @@ -14,32 +14,11 @@ stand-alone PDP-10 diagnostics, using the new PCjs [MACRO-10 Mini-Assembler](/mo Lists of supported [diagnostics](#list-of-ka10-diagnostics) and [reliability tests](#list-of-ka10-reliability-tests) are provided below, as well as some [notes](#notes-on-ka10-diagnostics) on assembling the diagnostics. -All the files below presumably came from this "[23.15 Mbyte compressed tape image](http://pdp-10.trailing-edge.com/tapes/klad_sources.tap.bz2)" -which is described on the [PDP-10 KLAD Diagnostics Sources](http://pdp-10.trailing-edge.com/klad_sources/index.html) page as: - - Start of Saveset Diagnostics -- binaries and documentation on - - strange monitor 0(0) APR#8210 - - 0 BPI 9-track 13-Dec-100 1:03:45 BACKUP 0(0) tape format 1 - - Tape number 1 - -The original 23.15 Mbyte file looked like this: - - -rw-------@ 1 Jeff staff 23148930 Feb 3 2002 klad_sources.tap.bz2 - -and `bzip2 -d klad_sources.tap.bz2` produced this: - - -rw-------@ 1 Jeff staff 139719984 Feb 3 2002 klad_sources.tap - - - List of KA10 Diagnostics ------------------------ -The following list of KA10 Diagnostics is not comprehensive. It's simply a list of diagnostics archived and tested with PDPjs -so far. +The following list of KA10 Diagnostics is not comprehensive. It's simply a list of diagnostics archived and tested +with PDPjs so far. - [KA10 Basic Instruction Diagnostic #1 (MAINDEC-10-DAKAA)](dakaa/) - TEST OF JUMP, JUMPA AND SKIPX INSTRUCTIONS @@ -156,9 +135,9 @@ However, while the MACRO-10 assembly process appears to work: PC=030000 RA=00000000 EA=000000 PS=000000 OV=0 C0=0 C1=0 ND=0 PD=0 030000: 254020 027776 JRST @27776 -there are additional modules that must be loaded into the machine as well, which are not yet supported. So it's best -to assemble the modified files that have been placed inside each diagnostic's folder. For the [DAKAK Diagnostic](dakak/), -that's **DAKAK.MAC**: +there are additional modules that must be loaded into the machine as well, which are not yet supported. +So it's best to assemble the modified files that have been placed inside each diagnostic's folder. +For the [DAKAK Diagnostic](dakak/), that's **DAKAK.MAC**: >> a DAKAK.MAC loading DAKAK.MAC @@ -170,5 +149,1234 @@ that's **DAKAK.MAC**: PC=030621 RA=00000000 EA=000000 PS=000000 OV=0 C0=0 C1=0 ND=0 PD=0 030621: 254000 030622 JRST 30622 -If the machine is able to run to the end of the diagnostic (which can be located by looking at the diagnostic's original -MACRO-10 listing file) without stopping on an UUO opcode, then the diagnostic likely succeeded. +If the machine is able to run to the end of the diagnostic (which can be located by looking at the diagnostic's +original MACRO-10 listing file) without stopping on an UUO opcode, then the diagnostic likely succeeded. + +Notes on KLAD Source Files +-------------------------- + +All the files above originally came from this +"[23.15 Mbyte compressed tape image](http://pdp-10.trailing-edge.com/tapes/klad_sources.tap.bz2)" +which is described on the [PDP-10 KLAD Diagnostics Sources](http://pdp-10.trailing-edge.com/klad_sources/index.html) +page as: + + Start of Saveset Diagnostics -- binaries and documentation on + + strange monitor 0(0) APR#8210 + + 0 BPI 9-track 13-Dec-100 1:03:45 BACKUP 0(0) tape format 1 + + Tape number 1 + +The original "23.15 Mbyte" file looks like this: + + 23148930 Feb 3 2002 klad_sources.tap.bz2 + +and `bzip2 -d klad_sources.tap.bz2` produces this: + + 139719984 Feb 3 2002 klad_sources.tap + +Using a modified version of the [simtools](https://github.com/simh/simtools) +[BACKUP](https://github.com/simh/simtools/tree/master/extracters/backup) utility +(`backup -xvif klad_sources.tap "*"`), I was able to extract all 1199 files from +the tape image, along with their original dates/times: + + 845 Jan 17 1989 BB.CMD + 120 Jan 13 1989 BBT.CMD + 425 Jan 17 1989 BBX.CMD + 115 Jan 13 1989 BT.CMD + 13630 Jan 13 1989 BUILDDIR.MIC + 7680 Feb 22 1989 CLRB35.EXE + 2705 Jan 13 1989 CNVFID.MAC + 3195 Jan 13 1989 CNVKMC.MAC + 25840 Jan 13 1989 CNVMIC.MAC + 3555 Jan 13 1989 CNVRT8.MAC + 14835 Jan 13 1989 CNVRTM.MAC + 1555 Jan 13 1989 CNVRTT.MAC + 4555 Jan 13 1989 CNVSAV.MAC + 9145 Jan 13 1989 CNVSUB.MAC + 4780 Jan 13 1989 CNVT11.MAC + 2185 Jan 13 1989 CNVTDX.MAC + 420 Feb 23 1989 CONFG.CCL + 425 Feb 23 1989 CONFG1.CCL + 440 Feb 23 1989 CONFGR.CCL + 55405 Jan 13 1989 CONFIG.MAC + 105 Jan 13 1989 CONVRT.CCL + 520 Jan 13 1989 CONVRT.CTL + 25600 Jan 30 1989 CONVRT.EXE + 1840 Jan 13 1989 CONVRT.HST + 1590 Jan 13 1989 CONVRT.INP + 19975 Jan 13 1989 CONVRT.SAV + 375630 Jan 13 1989 CONVRT.SEQ + 24150 Jan 13 1989 CONVRT.TXT + 20480 Feb 17 1995 D20MON.EXE + 13075 Feb 9 1989 D20MON.SAV + 80 Dec 12 1988 DAKAA.CCL + 30 Dec 12 1988 DAKAA.CMD + 590 Dec 12 1988 DAKAA.CTL + 635 Dec 12 1988 DAKAA.HST + 540 Dec 12 1988 DAKAA.INP + 12160 Dec 12 1988 DAKAA.SAV + 2412465 Dec 12 1988 DAKAA.SEQ + 4595 Dec 12 1988 DAKAA.TXT + 36845 Dec 12 1988 DAKAAM.MAC + 1280 Dec 12 1988 DAKAAT.MAC + 80 Dec 12 1988 DAKAB.CCL + 30 Dec 12 1988 DAKAB.CMD + 590 Dec 12 1988 DAKAB.CTL + 635 Dec 12 1988 DAKAB.HST + 540 Dec 12 1988 DAKAB.INP + 13640 Dec 12 1988 DAKAB.SAV + 2764320 Dec 12 1988 DAKAB.SEQ + 4400 Dec 12 1988 DAKAB.TXT + 55525 Dec 12 1988 DAKABM.MAC + 1270 Dec 12 1988 DAKABT.MAC + 80 Dec 12 1988 DAKAC.CCL + 30 Dec 12 1988 DAKAC.CMD + 590 Dec 12 1988 DAKAC.CTL + 635 Dec 12 1988 DAKAC.HST + 540 Dec 12 1988 DAKAC.INP + 9550 Dec 12 1988 DAKAC.SAV + 1807150 Dec 12 1988 DAKAC.SEQ + 4350 Dec 12 1988 DAKAC.TXT + 85945 Dec 12 1988 DAKACM.MAC + 1345 Dec 12 1988 DAKACT.MAC + 80 Dec 12 1988 DAKAD.CCL + 30 Dec 12 1988 DAKAD.CMD + 590 Dec 12 1988 DAKAD.CTL + 635 Dec 12 1988 DAKAD.HST + 540 Dec 12 1988 DAKAD.INP + 10755 Dec 12 1988 DAKAD.SAV + 2026565 Dec 12 1988 DAKAD.SEQ + 4385 Dec 12 1988 DAKAD.TXT + 67465 Dec 12 1988 DAKADM.MAC + 955 Dec 12 1988 DAKADT.MAC + 80 Dec 12 1988 DAKAE.CCL + 30 Dec 12 1988 DAKAE.CMD + 680 Dec 12 1988 DAKAE.CTL + 1075 Dec 12 1988 DAKAE.HST + 1730 Dec 12 1988 DAKAE.INP + 7990 Dec 12 1988 DAKAE.SAV + 1445410 Dec 12 1988 DAKAE.SEQ + 4445 Dec 12 1988 DAKAE.TXT + 91680 Dec 12 1988 DAKAEM.MAC + 1895 Dec 12 1988 DAKAET.MAC + 80 Dec 12 1988 DAKAF.CCL + 30 Dec 12 1988 DAKAF.CMD + 590 Dec 12 1988 DAKAF.CTL + 635 Dec 12 1988 DAKAF.HST + 540 Dec 12 1988 DAKAF.INP + 10485 Dec 12 1988 DAKAF.SAV + 1883265 Dec 12 1988 DAKAF.SEQ + 4300 Dec 12 1988 DAKAF.TXT + 112010 Dec 12 1988 DAKAFM.MAC + 1855 Dec 12 1988 DAKAFT.MAC + 80 Dec 12 1988 DAKAG.CCL + 30 Dec 12 1988 DAKAG.CMD + 590 Dec 12 1988 DAKAG.CTL + 635 Dec 12 1988 DAKAG.HST + 540 Dec 12 1988 DAKAG.INP + 4815 Dec 12 1988 DAKAG.SAV + 862320 Dec 12 1988 DAKAG.SEQ + 4345 Dec 12 1988 DAKAG.TXT + 42415 Dec 12 1988 DAKAGM.MAC + 1870 Dec 12 1988 DAKAGT.MAC + 80 Dec 12 1988 DAKAH.CCL + 445 Dec 12 1988 DAKAH.CTL + 655 Dec 12 1988 DAKAH.HST + 530 Dec 12 1988 DAKAH.INP + 16225 Dec 12 1988 DAKAH.SAV + 361460 Dec 12 1988 DAKAH.SEQ + 4330 Dec 12 1988 DAKAH.TXT + 40980 Dec 12 1988 DAKAHM.MAC + 1730 Dec 12 1988 DAKAHT.MAC + 80 Dec 12 1988 DAKAI.CCL + 50 Dec 12 1988 DAKAI.CMD + 590 Dec 12 1988 DAKAI.CTL + 635 Dec 12 1988 DAKAI.HST + 540 Dec 12 1988 DAKAI.INP + 23955 Dec 12 1988 DAKAI.SAV + 2086420 Dec 12 1988 DAKAI.SEQ + 8820 Dec 12 1988 DAKAI.TXT + 52805 Dec 12 1988 DAKAIM.MAC + 2975 Dec 12 1988 DAKAIT.MAC + 80 Dec 12 1988 DAKAJ.CCL + 50 Dec 12 1988 DAKAJ.CMD + 590 Dec 12 1988 DAKAJ.CTL + 855 Dec 12 1988 DAKAJ.HST + 540 Dec 12 1988 DAKAJ.INP + 16370 Dec 12 1988 DAKAJ.SAV + 2358665 Dec 12 1988 DAKAJ.SEQ + 8830 Dec 12 1988 DAKAJ.TXT + 51105 Dec 12 1988 DAKAJM.MAC + 2950 Dec 12 1988 DAKAJT.MAC + 80 Dec 12 1988 DAKAK.CCL + 50 Dec 12 1988 DAKAK.CMD + 590 Dec 12 1988 DAKAK.CTL + 635 Dec 12 1988 DAKAK.HST + 540 Dec 12 1988 DAKAK.INP + 30610 Dec 12 1988 DAKAK.SAV + 3533600 Dec 12 1988 DAKAK.SEQ + 8825 Dec 12 1988 DAKAK.TXT + 5545 Dec 12 1988 DAKAKM.MAC + 2335 Dec 12 1988 DAKAKT.MAC + 80 Dec 12 1988 DAKAL.CCL + 50 Dec 12 1988 DAKAL.CMD + 590 Dec 12 1988 DAKAL.CTL + 635 Dec 12 1988 DAKAL.HST + 540 Dec 12 1988 DAKAL.INP + 33175 Dec 12 1988 DAKAL.SAV + 4115465 Dec 12 1988 DAKAL.SEQ + 8845 Dec 12 1988 DAKAL.TXT + 48135 Dec 12 1988 DAKALM.MAC + 2350 Dec 12 1988 DAKALT.MAC + 80 Dec 12 1988 DAKAM.CCL + 970 Dec 12 1988 DAKAM.CTL + 720 Dec 12 1988 DAKAM.HST + 565 Dec 12 1988 DAKAM.INP + 20890 Dec 12 1988 DAKAM.SAV + 1352855 Dec 12 1988 DAKAM.SEQ + 8825 Dec 12 1988 DAKAM.TXT + 50 Dec 12 1988 DAKAM1.CMD + 50 Dec 12 1988 DAKAM2.CMD + 50 Dec 12 1988 DAKAM3.CMD + 113995 Dec 12 1988 DAKAMM.MAC + 2920 Dec 12 1988 DAKAMT.MAC + 80 Dec 12 1988 DAKBA.CCL + 445 Dec 12 1988 DAKBA.CTL + 530 Dec 12 1988 DAKBA.HST + 535 Dec 12 1988 DAKBA.INP + 18445 Dec 12 1988 DAKBA.SAV + 489900 Dec 12 1988 DAKBA.SEQ + 13350 Dec 12 1988 DAKBA.TXT + 55770 Dec 12 1988 DAKBAM.MAC + 1915 Dec 12 1988 DAKBAT.MAC + 80 Dec 28 1988 DAKBB.CCL + 445 Dec 28 1988 DAKBB.CTL + 530 Dec 28 1988 DAKBB.HST + 535 Dec 28 1988 DAKBB.INP + 20270 Dec 28 1988 DAKBB.SAV + 526530 Dec 28 1988 DAKBB.SEQ + 13330 Dec 28 1988 DAKBB.TXT + 80515 Dec 28 1988 DAKBBM.MAC + 1905 Dec 28 1988 DAKBBT.MAC + 80 Dec 28 1988 DAKBC.CCL + 445 Dec 28 1988 DAKBC.CTL + 530 Dec 28 1988 DAKBC.HST + 535 Dec 28 1988 DAKBC.INP + 19455 Dec 28 1988 DAKBC.SAV + 508065 Dec 28 1988 DAKBC.SEQ + 13325 Dec 28 1988 DAKBC.TXT + 65780 Dec 28 1988 DAKBCM.MAC + 1910 Dec 28 1988 DAKBCT.MAC + 80 Dec 28 1988 DAKBD.CCL + 445 Dec 28 1988 DAKBD.CTL + 530 Dec 28 1988 DAKBD.HST + 535 Dec 28 1988 DAKBD.INP + 9690 Dec 28 1988 DAKBD.SAV + 255620 Dec 28 1988 DAKBD.SEQ + 14600 Dec 28 1988 DAKBD.TXT + 46950 Dec 28 1988 DAKBDM.MAC + 2735 Dec 28 1988 DAKBDT.MAC + 80 Dec 28 1988 DAKCA.CCL + 50 Dec 28 1988 DAKCA.CMD + 590 Dec 28 1988 DAKCA.CTL + 525 Dec 28 1988 DAKCA.HST + 545 Dec 28 1988 DAKCA.INP + 19560 Dec 28 1988 DAKCA.SAV + 1408075 Dec 28 1988 DAKCA.SEQ + 8850 Dec 28 1988 DAKCA.TXT + 78730 Dec 28 1988 DAKCAM.MAC + 1460 Dec 28 1988 DAKCAT.MAC + 80 Dec 28 1988 DAKCB.CCL + 50 Dec 28 1988 DAKCB.CMD + 590 Dec 28 1988 DAKCB.CTL + 525 Dec 28 1988 DAKCB.HST + 545 Dec 28 1988 DAKCB.INP + 9575 Dec 28 1988 DAKCB.SAV + 1027895 Dec 28 1988 DAKCB.SEQ + 8845 Dec 28 1988 DAKCB.TXT + 40205 Dec 28 1988 DAKCBM.MAC + 1465 Dec 28 1988 DAKCBT.MAC + 65 Dec 28 1988 DAKDA.CCL + 450 Dec 28 1988 DAKDA.CTL + 1925 Dec 28 1988 DAKDA.HST + 545 Dec 28 1988 DAKDA.INP + 32010 Dec 28 1988 DAKDA.SAV + 380140 Dec 28 1988 DAKDA.SEQ + 11885 Dec 28 1988 DAKDA.TXT + 16455 Dec 28 1988 DAKDAM.MAC + 55395 Dec 28 1988 DAKDAS.MAC + 2060 Dec 28 1988 DAKDAT.MAC + 65 Dec 28 1988 DAKDB.CCL + 450 Dec 28 1988 DAKDB.CTL + 1140 Dec 28 1988 DAKDB.HST + 560 Dec 28 1988 DAKDB.INP + 31580 Dec 28 1988 DAKDB.SAV + 384995 Dec 28 1988 DAKDB.SEQ + 22160 Dec 28 1988 DAKDB.TXT + 14395 Dec 28 1988 DAKDBM.MAC + 55395 Dec 28 1988 DAKDBS.MAC + 2965 Dec 28 1988 DAKDBT.MAC + 130 Jul 29 1976 DBKAA.CCL + 1390 Aug 3 1976 DBKAA.CTL + 635 Jul 29 1976 DBKAA.HST + 585 Aug 3 1976 DBKAA.INP + 12160 Aug 3 1976 DBKAA.SAV + 2325060 Aug 3 1976 DBKAA.SEQ + 4595 Jul 28 1976 DBKAA.TXT + 36845 Apr 30 1976 DBKAAM.MAC + 1320 Jul 30 1976 DBKAAT.MAC + 130 Jul 29 1976 DBKAB.CCL + 1355 Aug 4 1976 DBKAB.CTL + 635 Jul 29 1976 DBKAB.HST + 580 Aug 3 1976 DBKAB.INP + 13640 Aug 4 1976 DBKAB.SAV + 2641805 Aug 4 1976 DBKAB.SEQ + 4400 Jul 28 1976 DBKAB.TXT + 55555 Apr 30 1976 DBKABM.MAC + 1165 Jul 30 1976 DBKABT.MAC + 120 May 27 1976 DBKAD.CCL + 1355 Aug 4 1976 DBKAD.CTL + 635 Jul 29 1976 DBKAD.HST + 610 Aug 3 1976 DBKAD.INP + 10755 Aug 4 1976 DBKAD.SAV + 1836270 Aug 4 1976 DBKAD.SEQ + 4385 Jul 28 1976 DBKAD.TXT + 67475 Apr 30 1976 DBKADM.MAC + 850 Jul 30 1976 DBKADT.MAC + 120 May 27 1976 DBKAE.CCL + 1355 Aug 4 1976 DBKAE.CTL + 635 Jul 29 1976 DBKAE.HST + 580 Aug 3 1976 DBKAE.INP + 8040 Aug 4 1976 DBKAE.SAV + 1313500 Aug 4 1976 DBKAE.SEQ + 4325 Jul 28 1976 DBKAE.TXT + 91335 Apr 30 1976 DBKAEM.MAC + 1760 Jul 30 1976 DBKAET.MAC + 120 May 27 1976 DBKAF.CCL + 1355 Aug 4 1976 DBKAF.CTL + 635 Jul 29 1976 DBKAF.HST + 570 Aug 3 1976 DBKAF.INP + 10485 Aug 4 1976 DBKAF.SAV + 1712900 Aug 4 1976 DBKAF.SEQ + 4300 Jul 28 1976 DBKAF.TXT + 112010 Apr 30 1976 DBKAFM.MAC + 1760 Jul 30 1976 DBKAFT.MAC + 120 May 27 1976 DBKAG.CCL + 1355 Aug 5 1976 DBKAG.CTL + 635 Jul 29 1976 DBKAG.HST + 580 Aug 3 1976 DBKAG.INP + 4815 Aug 5 1976 DBKAG.SAV + 818485 Aug 5 1976 DBKAG.SEQ + 4340 Jul 28 1976 DBKAG.TXT + 42465 Apr 30 1976 DBKAGM.MAC + 1760 Jul 30 1976 DBKAGT.MAC + 80 Jan 30 1989 DBKAH.CCL + 690 Jan 30 1989 DBKAH.CTL + 1295 Jan 30 1989 DBKAH.HST + 1525 Jan 30 1989 DBKAH.INP + 34740 Jan 30 1989 DBKAH.SAV + 649860 Jan 30 1989 DBKAH.SEQ + 4470 Jan 30 1989 DBKAH.TXT + 44695 Jan 30 1989 DBKAHM.MAC + 935 Jan 30 1989 DBKAHT.MAC + 120 May 27 1976 DBKAI.CCL + 1355 Aug 5 1976 DBKAI.CTL + 855 Jul 29 1976 DBKAI.HST + 565 Aug 3 1976 DBKAI.INP + 24020 Aug 5 1976 DBKAI.SAV + 1921195 Aug 5 1976 DBKAI.SEQ + 8820 Jul 28 1976 DBKAI.TXT + 52800 May 27 1976 DBKAIM.MAC + 2970 Jul 30 1976 DBKAIT.MAC + 160 Aug 5 1976 DBKAJ.CCL + 1355 Aug 5 1976 DBKAJ.CTL + 855 Jul 29 1976 DBKAJ.HST + 565 Aug 3 1976 DBKAJ.INP + 16430 Aug 5 1976 DBKAJ.SAV + 8830 Jul 28 1976 DBKAJ.TXT + 51100 May 28 1976 DBKAJM.MAC + 2955 Jul 30 1976 DBKAJT.MAC + 160 Aug 5 1976 DBKAK.CCL + 1355 Aug 5 1976 DBKAK.CTL + 640 Jul 29 1976 DBKAK.HST + 575 Aug 3 1976 DBKAK.INP + 30615 Aug 5 1976 DBKAK.SAV + 3067975 Aug 5 1976 DBKAK.SEQ + 8825 Jul 28 1976 DBKAK.TXT + 5140 May 28 1976 DBKAKM.MAC + 2340 Jul 30 1976 DBKAKT.MAC + 160 Aug 6 1976 DBKAL.CCL + 1355 Aug 6 1976 DBKAL.CTL + 635 Jul 29 1976 DBKAL.HST + 575 Aug 3 1976 DBKAL.INP + 33240 Aug 6 1976 DBKAL.SAV + 1317300 Aug 6 1976 DBKAL.SEQ + 8845 Jul 28 1976 DBKAL.TXT + 47825 May 26 1976 DBKALM.MAC + 2345 Jul 30 1976 DBKALT.MAC + 160 Aug 5 1976 DBKAM.CCL + 1885 Aug 5 1976 DBKAM.CTL + 720 Jul 29 1976 DBKAM.HST + 570 Aug 3 1976 DBKAM.INP + 20955 Aug 6 1976 DBKAM.SAV + 1370775 Aug 6 1976 DBKAM.SEQ + 8825 Jul 28 1976 DBKAM.TXT + 2935 Jul 30 1976 DBKAMT.MAC + 160 Aug 6 1976 DBKBA.CCL + 1210 Aug 6 1976 DBKBA.CTL + 875 Jul 29 1976 DBKBA.HST + 605 Aug 3 1976 DBKBA.INP + 18510 Aug 6 1976 DBKBA.SAV + 488980 Aug 6 1976 DBKBA.SEQ + 13410 Jul 28 1976 DBKBA.TXT + 55770 May 26 1976 DBKBAM.MAC + 1915 Jul 30 1976 DBKBAT.MAC + 160 Aug 6 1976 DBKBB.CCL + 1210 Aug 6 1976 DBKBB.CTL + 875 Jul 29 1976 DBKBB.HST + 600 Aug 3 1976 DBKBB.INP + 20335 Aug 6 1976 DBKBB.SAV + 1910 Jul 30 1976 DBKBBT.MAC + 160 Aug 6 1976 DBKBC.CCL + 1210 Aug 6 1976 DBKBC.CTL + 875 Jul 29 1976 DBKBC.HST + 590 Aug 3 1976 DBKBC.INP + 19520 Aug 6 1976 DBKBC.SAV + 13380 Jul 28 1976 DBKBC.TXT + 1910 Jul 30 1976 DBKBCT.MAC + 160 Aug 6 1976 DBKBD.CCL + 1210 Aug 6 1976 DBKBD.CTL + 940 Jul 29 1976 DBKBD.HST + 605 Aug 3 1976 DBKBD.INP + 9765 Aug 6 1976 DBKBD.SAV + 257475 Aug 6 1976 DBKBD.SEQ + 47015 Jun 4 1976 DBKBDM.MAC + 2735 Jul 30 1976 DBKBDT.MAC + 160 Aug 9 1976 DBKCA.CCL + 1355 Aug 9 1976 DBKCA.CTL + 895 Jul 29 1976 DBKCA.HST + 580 Aug 3 1976 DBKCA.INP + 19625 Aug 9 1976 DBKCA.SAV + 1198535 Aug 9 1976 DBKCA.SEQ + 8900 Jul 28 1976 DBKCA.TXT + 78730 May 26 1976 DBKCAM.MAC + 1500 Jul 30 1976 DBKCAT.MAC + 160 Aug 9 1976 DBKCC.CCL + 1355 Aug 9 1976 DBKCC.CTL + 895 Jul 29 1976 DBKCC.HST + 585 Aug 3 1976 DBKCC.INP + 16840 Aug 9 1976 DBKCC.SAV + 1737750 Aug 9 1976 DBKCC.SEQ + 8865 Jul 28 1976 DBKCC.TXT + 49200 May 28 1976 DBKCCM.MAC + 13925 Jul 30 1976 DBKCCT.MAC + 160 Aug 9 1976 DBKCD.CCL + 1355 Aug 9 1976 DBKCD.CTL + 895 Jul 29 1976 DBKCD.HST + 580 Aug 3 1976 DBKCD.INP + 31245 Aug 9 1976 DBKCD.SAV + 3132970 Aug 9 1976 DBKCD.SEQ + 8860 Jul 28 1976 DBKCD.TXT + 9675 May 26 1976 DBKCDM.MAC + 2635 Jul 30 1976 DBKCDT.MAC + 160 Aug 9 1976 DBKCE.CCL + 1355 Aug 9 1976 DBKCE.CTL + 895 Jul 29 1976 DBKCE.HST + 585 Aug 3 1976 DBKCE.INP + 24705 Aug 9 1976 DBKCE.SAV + 2753020 Aug 9 1976 DBKCE.SEQ + 8805 Jul 28 1976 DBKCE.TXT + 35145 May 28 1976 DBKCEM.MAC + 3465 Jul 30 1976 DBKCET.MAC + 105 Jun 9 1976 DBKDA.CCL + 560 Jun 9 1976 DBKDA.CTL + 580 Jun 9 1976 DBKDA.HST + 615 Jun 9 1976 DBKDA.INP + 52395 Jun 9 1976 DBKDA.SAV + 880190 Jun 9 1976 DBKDA.SEQ + 18885 Jun 9 1976 DBKDA.TXT + 20070 Jun 9 1976 DBKDAM.MAC + 2805 Jun 9 1976 DBKDAT.MAC + 80 Jun 9 1976 DBKDB.CCL + 560 Jun 9 1976 DBKDB.CTL + 580 Jun 9 1976 DBKDB.HST + 570 Jun 9 1976 DBKDB.INP + 49045 Jun 9 1976 DBKDB.SAV + 824035 Jun 9 1976 DBKDB.SEQ + 17455 Jun 9 1976 DBKDB.TXT + 16080 Jun 9 1976 DBKDBM.MAC + 3730 Jun 9 1976 DBKDBT.MAC + 75 Jul 1 1976 DBKDC.CCL + 555 Jul 1 1976 DBKDC.CTL + 500 Jul 1 1976 DBKDC.HST + 550 Jul 1 1976 DBKDC.INP + 8345 Jul 1 1976 DBKDC.TXT + 985 Jul 1 1976 DBKDCT.MAC + 215 Jan 18 1989 DCOPY.BAK + 210 Jan 18 1989 DCOPY.MIC + 17920 Feb 23 1989 DECDOC.EXE + 14070 Feb 22 1989 DECDOC.SAV + 295 Feb 23 1989 DECTAP.MIC + 29855 Sep 13 1985 DEFECT-PREV.MAC + 29855 Sep 13 1985 DEFECT.BAK + 29860 Dec 19 1989 DEFECT.MAC + 485 Dec 19 1989 DEFECT.SCM + 37265 Jan 17 1989 DEFINE.MIC + 9150 Dec 19 1989 DEFINS.UNV + 57120 Jan 13 1989 DEVLDR.MAC + 5185 Jun 9 1976 DFAS.MAC + 2760 Jun 9 1976 DFDV.MAC + 120 Jan 13 1989 DFKAA.CCL + 500 Jan 13 1989 DFKAA.CTL + 755 Jan 13 1989 DFKAA.HST + 900 Jan 13 1989 DFKAA.INP + 92160 Mar 26 1996 DFKAA.SAV + 3247160 Jan 13 1989 DFKAA.SEQ + 4285 Jan 13 1989 DFKAA.TXT + 36795 Jan 13 1989 DFKAA1.MAC + 54900 Jan 13 1989 DFKAA2.MAC + 86025 Jan 13 1989 DFKAA3.MAC + 65885 Jan 13 1989 DFKAA4.MAC + 90760 Jan 13 1989 DFKAA5.MAC + 111560 Jan 13 1989 DFKAA6.MAC + 42010 Jan 13 1989 DFKAA7.MAC + 41730 Jan 13 1989 DFKAA8.MAC + 1515 Jan 13 1989 DFKAAT.MAC + 1500 Dec 8 1986 DFKAC.INP + 720 Jan 13 1989 DFKAD.HST + 1590 Jan 13 1989 DFKAD.INP + 20865 Jan 13 1989 DFKAD.SAV + 406835 Jan 13 1989 DFKAD.SEQ + 4580 Jan 13 1989 DFKAD.TXT + 66980 Jan 13 1989 DFKAD1.MAC + 1335 Jan 13 1989 DFKADT.MAC + 70 Jan 13 1989 DFKBB.CCL + 555 Jan 13 1989 DFKBB.CTL + 380 Jan 13 1989 DFKBB.HST + 590 Jan 13 1989 DFKBB.INP + 6945 Jan 13 1989 DFKBB.SAV + 200030 Jan 13 1989 DFKBB.SEQ + 13130 Jan 13 1989 DFKBB.TXT + 27250 Jan 13 1989 DFKBBM.MAC + 2145 Jan 13 1989 DFKBBT.MAC + 100 Jan 13 1989 DFKCA.CCL + 750 Jan 13 1989 DFKCA.CTL + 515 Jan 13 1989 DFKCA.HST + 1750 Jan 13 1989 DFKCA.INP + 105910 Jan 13 1989 DFKCA.SAV + 2165800 Jan 13 1989 DFKCA.SEQ + 8845 Jan 13 1989 DFKCA.TXT + 65425 Jan 13 1989 DFKCA1.MAC + 33045 Jan 13 1989 DFKCA2.MAC + 48675 Jan 13 1989 DFKCA3.MAC + 9415 Jan 13 1989 DFKCA4.MAC + 36185 Jan 13 1989 DFKCA5.MAC + 16955 Jan 13 1989 DFKCAT.MAC + 60 Jan 13 1989 DFKCB.CCL + 615 Jan 13 1989 DFKCB.CTL + 380 Jan 13 1989 DFKCB.HST + 1450 Jan 13 1989 DFKCB.INP + 47025 Jan 13 1989 DFKCB.SAV + 869620 Jan 13 1989 DFKCB.SEQ + 8730 Jan 13 1989 DFKCB.TXT + 103060 Jan 13 1989 DFKCBM.MAC + 8955 Jan 13 1989 DFKCBT.MAC + 65 Jan 13 1989 DFKCC.CCL + 640 Jan 13 1989 DFKCC.CTL + 790 Jan 13 1989 DFKCC.HST + 1470 Jan 13 1989 DFKCC.INP + 30835 Jan 13 1989 DFKCC.SAV + 492475 Jan 13 1989 DFKCC.SEQ + 8730 Jan 13 1989 DFKCC.TXT + 17525 Jan 13 1989 DFKCC1.MAC + 95260 Jan 13 1989 DFKCCM.MAC + 12770 Mar 27 1996 DFKCCT.MAC + 95 Jan 13 1989 DFKDA.CCL + 780 Jan 13 1989 DFKDA.CTL + 2940 Jan 13 1989 DFKDA.HST + 1605 Jan 13 1989 DFKDA.INP + 72625 Jan 13 1989 DFKDA.SAV + 1099725 Jan 13 1989 DFKDA.SEQ + 20950 Jan 13 1989 DFKDA.TXT + 21735 Jan 13 1989 DFKDA1.MAC + 81520 Feb 14 1995 DFKDA3.MAC + 64705 Jan 13 1989 DFKDAM.MAC + 7090 Jan 13 1989 DFKDAT.MAC + 765 Jan 13 1989 DFKDAX.CTL + 60 Jan 13 1989 DFKEA.CCL + 695 Jan 13 1989 DFKEA.CTL + 1745 Jan 13 1989 DFKEA.HST + 1620 Jan 13 1989 DFKEA.INP + 30375 Jan 13 1989 DFKEA.SAV + 445180 Jan 13 1989 DFKEA.SEQ + 8120 Jan 13 1989 DFKEA.TXT + 86475 Jan 13 1989 DFKEAM.MAC + 2655 Jan 13 1989 DFKEAT.MAC + 0 Apr 4 1985 DFKEB.BLO + 60 Jan 13 1989 DFKEB.CCL + 192950 Nov 18 1993 DFKEB.CRF + 580 Jan 13 1989 DFKEB.CTL + 1550 Jan 13 1989 DFKEB.INP + 17920 Nov 18 1993 DFKEB.SAV + 230210 Jan 13 1989 DFKEB.SEQ + 7245 Jan 13 1989 DFKEBD.TXT + 695 Jan 13 1989 DFKEBH.HST + 28280 Jan 13 1989 DFKEBM.MAC + 2950 Jan 13 1989 DFKEBT.MAC + 60 Jan 13 1989 DFKEC.CCL + 565 Jan 13 1989 DFKEC.CTL + 700 Jan 13 1989 DFKEC.HST + 1585 Jan 13 1989 DFKEC.INP + 20375 Jan 13 1989 DFKEC.SAV + 293665 Jan 13 1989 DFKEC.SEQ + 17875 Jan 13 1989 DFKEC.TXT + 77780 Jan 13 1989 DFKECM.MAC + 5175 Jan 13 1989 DFKECT.MAC + 60 Jan 13 1989 DFKED.CCL + 720 Jan 13 1989 DFKED.CTL + 735 Jan 13 1989 DFKED.HST + 1565 Jan 13 1989 DFKED.INP + 33810 Jan 13 1989 DFKED.SAV + 480190 Jan 13 1989 DFKED.SEQ + 7105 Jan 13 1989 DFKED.TXT + 103770 Jan 13 1989 DFKEDM.MAC + 5385 Jan 13 1989 DFKEDT.MAC + 2625 Jun 9 1976 DFMP.MAC + 3000 Jan 17 1989 DIAG.INS + 790 Jan 6 1989 DIAG.MIC + 35 Jan 13 1989 DIAMON.CCL + 625 Jan 13 1989 DIAMON.CTL + 23040 Jan 13 1989 DIAMON.EXE + 2885 Jan 13 1989 DIAMON.HST + 1440 Jan 13 1989 DIAMON.INP + 33740 Apr 19 1996 DIAMON.MAC + 15255 Jan 13 1989 DIAMON.SAV + 304060 Jan 13 1989 DIAMON.SEQ + 15890 Jan 13 1989 DIAMON.TXT + 25690 Jan 13 1989 DISKS.MAC + 265 Jan 13 1989 DMP.MIC + 70 Jan 31 1989 DSKAA.CCL + 30 Jan 31 1989 DSKAA.CMD + 515 Jan 31 1989 DSKAA.CTL + 370 Jan 31 1989 DSKAA.HST + 1560 Jan 31 1989 DSKAA.INP + 11900 Jan 31 1989 DSKAA.SAV + 973525 Jan 31 1989 DSKAA.SEQ + 4405 Jan 31 1989 DSKAA.TXT + 36830 Jan 31 1989 DSKAA1.MAC + 1445 Jan 31 1989 DSKAAT.MAC + 70 Feb 2 1989 DSKAB.CCL + 30 Feb 2 1989 DSKAB.CMD + 515 Feb 2 1989 DSKAB.CTL + 370 Feb 2 1989 DSKAB.HST + 1560 Feb 2 1989 DSKAB.INP + 13385 Feb 2 1989 DSKAB.SAV + 1086125 Feb 2 1989 DSKAB.SEQ + 4310 Feb 2 1989 DSKAB.TXT + 55505 Feb 2 1989 DSKAB1.MAC + 1445 Feb 2 1989 DSKABT.MAC + 70 Feb 3 1989 DSKAC.CCL + 30 Feb 3 1989 DSKAC.CMD + 515 Feb 3 1989 DSKAC.CTL + 370 Feb 3 1989 DSKAC.HST + 1560 Feb 3 1989 DSKAC.INP + 9285 Feb 3 1989 DSKAC.SAV + 691230 Feb 3 1989 DSKAC.SEQ + 4310 Feb 3 1989 DSKAC.TXT + 86635 Feb 3 1989 DSKAC1.MAC + 1445 Feb 3 1989 DSKACT.MAC + 70 Feb 8 1989 DSKAD.CCL + 30 Feb 8 1989 DSKAD.CMD + 515 Feb 8 1989 DSKAD.CTL + 370 Feb 8 1989 DSKAD.HST + 1560 Feb 8 1989 DSKAD.INP + 10500 Feb 8 1989 DSKAD.SAV + 749220 Feb 8 1989 DSKAD.SEQ + 4340 Feb 8 1989 DSKAD.TXT + 66490 Feb 8 1989 DSKAD1.MAC + 1445 Feb 8 1989 DSKADT.MAC + 70 Feb 8 1989 DSKAE.CCL + 30 Feb 8 1989 DSKAE.CMD + 515 Feb 8 1989 DSKAE.CTL + 370 Feb 8 1989 DSKAE.HST + 1560 Feb 8 1989 DSKAE.INP + 7780 Feb 8 1989 DSKAE.SAV + 532835 Feb 8 1989 DSKAE.SEQ + 4290 Feb 8 1989 DSKAE.TXT + 91365 Feb 8 1989 DSKAE1.MAC + 1445 Feb 8 1989 DSKAET.MAC + 70 Feb 8 1989 DSKAF.CCL + 30 Feb 8 1989 DSKAF.CMD + 515 Feb 8 1989 DSKAF.CTL + 370 Feb 8 1989 DSKAF.HST + 1560 Feb 8 1989 DSKAF.INP + 10225 Feb 8 1989 DSKAF.SAV + 661055 Feb 8 1989 DSKAF.SEQ + 4275 Feb 8 1989 DSKAF.TXT + 112165 Feb 8 1989 DSKAF1.MAC + 1445 Feb 8 1989 DSKAFT.MAC + 70 Feb 8 1989 DSKAG.CCL + 30 Feb 8 1989 DSKAG.CMD + 515 Feb 8 1989 DSKAG.CTL + 370 Feb 8 1989 DSKAG.HST + 1560 Feb 8 1989 DSKAG.INP + 4560 Feb 8 1989 DSKAG.SAV + 263680 Feb 8 1989 DSKAG.SEQ + 4295 Feb 8 1989 DSKAG.TXT + 42615 Feb 8 1989 DSKAG1.MAC + 1445 Feb 8 1989 DSKAGT.MAC + 70 Feb 8 1989 DSKAH.CCL + 430 Feb 8 1989 DSKAH.CTL + 370 Feb 8 1989 DSKAH.HST + 1500 Feb 8 1989 DSKAH.INP + 20775 Feb 8 1989 DSKAH.SAV + 522985 Feb 8 1989 DSKAH.SEQ + 4285 Feb 8 1989 DSKAH.TXT + 31175 Feb 8 1989 DSKAH1.MAC + 1450 Feb 8 1989 DSKAHT.MAC + 70 Feb 8 1989 DSKAI.CCL + 50 Feb 8 1989 DSKAI.CMD + 515 Feb 8 1989 DSKAI.CTL + 370 Feb 8 1989 DSKAI.HST + 1560 Feb 8 1989 DSKAI.INP + 23965 Feb 8 1989 DSKAI.SAV + 1207595 Feb 8 1989 DSKAI.SEQ + 8535 Feb 8 1989 DSKAI.TXT + 52765 Feb 8 1989 DSKAI1.MAC + 2950 Feb 8 1989 DSKAIT.MAC + 70 Feb 9 1989 DSKAJ.CCL + 50 Feb 9 1989 DSKAJ.CMD + 515 Feb 9 1989 DSKAJ.CTL + 370 Feb 9 1989 DSKAJ.HST + 1560 Feb 9 1989 DSKAJ.INP + 16375 Feb 9 1989 DSKAJ.SAV + 709990 Feb 9 1989 DSKAJ.SEQ + 8585 Feb 9 1989 DSKAJ.TXT + 51065 Feb 9 1989 DSKAJ1.MAC + 2950 Feb 9 1989 DSKAJT.MAC + 70 Feb 9 1989 DSKAK.CCL + 50 Feb 9 1989 DSKAK.CMD + 515 Feb 9 1989 DSKAK.CTL + 370 Feb 9 1989 DSKAK.HST + 1560 Feb 9 1989 DSKAK.INP + 30575 Feb 9 1989 DSKAK.SAV + 1348135 Feb 9 1989 DSKAK.SEQ + 8585 Feb 9 1989 DSKAK.TXT + 5105 Feb 9 1989 DSKAK1.MAC + 2325 Feb 9 1989 DSKAKT.MAC + 75 Feb 9 1989 DSKAL.CCL + 50 Feb 9 1989 DSKAL.CMD + 515 Feb 9 1989 DSKAL.CTL + 370 Feb 9 1989 DSKAL.HST + 1560 Feb 9 1989 DSKAL.INP + 33200 Feb 9 1989 DSKAL.SAV + 1262235 Feb 9 1989 DSKAL.SEQ + 8585 Feb 9 1989 DSKAL.TXT + 47745 Feb 9 1989 DSKAL1.MAC + 2325 Feb 9 1989 DSKALT.MAC + 70 Feb 9 1989 DSKAM.CCL + 50 Feb 9 1989 DSKAM.CMD + 735 Feb 9 1989 DSKAM.CTL + 370 Feb 9 1989 DSKAM.HST + 1585 Feb 9 1989 DSKAM.INP + 20710 Feb 9 1989 DSKAM.SAV + 715420 Feb 9 1989 DSKAM.SEQ + 8560 Feb 9 1989 DSKAM.TXT + 50 Feb 9 1989 DSKAM1.CMD + 112220 Feb 9 1989 DSKAM1.MAC + 50 Feb 9 1989 DSKAM2.CMD + 2930 Feb 9 1989 DSKAMT.MAC + 90 Feb 9 1989 DSKBA.CCL + 430 Feb 9 1989 DSKBA.CTL + 380 Feb 9 1989 DSKBA.HST + 1550 Feb 9 1989 DSKBA.INP + 62580 Feb 9 1989 DSKBA.SAV + 1616485 Feb 9 1989 DSKBA.SEQ + 15185 Feb 9 1989 DSKBA.TXT + 55665 Feb 9 1989 DSKBA1.MAC + 79635 Feb 9 1989 DSKBA2.MAC + 64845 Feb 9 1989 DSKBA3.MAC + 46055 Feb 9 1989 DSKBA4.MAC + 3275 Feb 9 1989 DSKBAT.MAC + 75 Feb 9 1989 DSKCA.CCL + 50 Feb 9 1989 DSKCA.CMD + 515 Feb 9 1989 DSKCA.CTL + 370 Feb 9 1989 DSKCA.HST + 1565 Feb 9 1989 DSKCA.INP + 16535 Feb 9 1989 DSKCA.SAV + 519005 Feb 9 1989 DSKCA.SEQ + 8605 Feb 9 1989 DSKCA.TXT + 64155 Feb 9 1989 DSKCA1.MAC + 16725 Feb 9 1989 DSKCAT.MAC + 75 Feb 9 1989 DSKCB.CCL + 50 Feb 9 1989 DSKCB.CMD + 515 Feb 9 1989 DSKCB.CTL + 370 Feb 9 1989 DSKCB.HST + 1565 Feb 9 1989 DSKCB.INP + 8070 Feb 9 1989 DSKCB.SAV + 293800 Feb 9 1989 DSKCB.SEQ + 8670 Feb 9 1989 DSKCB.TXT + 32695 Feb 9 1989 DSKCB1.MAC + 16730 Feb 9 1989 DSKCBT.MAC + 75 Feb 9 1989 DSKCC.CCL + 50 Feb 9 1989 DSKCC.CMD + 515 Feb 9 1989 DSKCC.CTL + 370 Feb 9 1989 DSKCC.HST + 1565 Feb 9 1989 DSKCC.INP + 16655 Feb 9 1989 DSKCC.SAV + 716900 Feb 9 1989 DSKCC.SEQ + 8655 Feb 9 1989 DSKCC.TXT + 48490 Feb 9 1989 DSKCC1.MAC + 16730 Feb 9 1989 DSKCCT.MAC + 75 Feb 9 1989 DSKCD.CCL + 50 Feb 9 1989 DSKCD.CMD + 515 Feb 9 1989 DSKCD.CTL + 370 Feb 9 1989 DSKCD.HST + 1565 Feb 9 1989 DSKCD.INP + 31190 Feb 9 1989 DSKCD.SAV + 1000865 Feb 9 1989 DSKCD.SEQ + 8660 Feb 9 1989 DSKCD.TXT + 9720 Feb 9 1989 DSKCD1.MAC + 16730 Feb 9 1989 DSKCDT.MAC + 75 Feb 9 1989 DSKCE.CCL + 50 Feb 9 1989 DSKCE.CMD + 515 Feb 9 1989 DSKCE.CTL + 510 Feb 9 1989 DSKCE.HST + 1560 Feb 9 1989 DSKCE.INP + 24410 Feb 9 1989 DSKCE.SAV + 632665 Feb 9 1989 DSKCE.SEQ + 8605 Feb 9 1989 DSKCE.TXT + 36130 Feb 9 1989 DSKCE1.MAC + 16725 Feb 9 1989 DSKCET.MAC + 60 Feb 9 1989 DSKCF.CCL + 315 Feb 9 1989 DSKCF.CTL + 860 Feb 9 1989 DSKCF.HST + 1495 Feb 9 1989 DSKCF.INP + 45875 Feb 9 1989 DSKCF.SAV + 853735 Feb 9 1989 DSKCF.SEQ + 8655 Feb 9 1989 DSKCF.TXT + 103060 Feb 9 1989 DSKCFM.MAC + 8805 Feb 9 1989 DSKCFT.MAC + 65 Feb 9 1989 DSKCG.CCL + 540 Feb 9 1989 DSKCG.CTL + 715 Feb 9 1989 DSKCG.HST + 1550 Feb 9 1989 DSKCG.INP + 30590 Feb 9 1989 DSKCG.SAV + 486750 Feb 9 1989 DSKCG.SEQ + 8620 Feb 9 1989 DSKCG.TXT + 17480 Feb 9 1989 DSKCG1.MAC + 93525 Feb 9 1989 DSKCGM.MAC + 12570 Feb 9 1989 DSKCGT.MAC + 80 Feb 9 1989 DSKDA.CCL + 515 Feb 9 1989 DSKDA.CTL + 650 Feb 9 1989 DSKDA.HST + 1580 Feb 9 1989 DSKDA.INP + 70130 Feb 9 1989 DSKDA.SAV + 973075 Feb 9 1989 DSKDA.SEQ + 18565 Feb 9 1989 DSKDA.TXT + 26875 Feb 9 1989 DSKDA1.MAC + 24320 Feb 9 1989 DSKDA2.MAC + 109240 Feb 9 1989 DSKDA3.MAC + 76895 Feb 9 1989 DSKDAM.MAC + 4990 Feb 9 1989 DSKDAT.MAC + 60 Feb 9 1989 DSKEA.CCL + 505 Feb 9 1989 DSKEA.CTL + 360 Feb 9 1989 DSKEA.HST + 1485 Feb 9 1989 DSKEA.INP + 25095 Feb 9 1989 DSKEA.SAV + 535700 Feb 9 1989 DSKEA.SEQ + 6900 Feb 9 1989 DSKEA.TXT + 93735 Feb 9 1989 DSKEAM.MAC + 5185 Feb 9 1989 DSKEAT.MAC + 575 Feb 22 1989 DSKEB.CTL + 2075 Feb 22 1989 DSKEB.INP + 18520 Feb 22 1989 DSKEB.SAV + 297565 Feb 22 1989 DSKEB.SEQ + 190 Feb 22 1989 DSKEBA.CCL + 8360 Feb 22 1989 DSKEBD.TXT + 495 Feb 22 1989 DSKEBH.HST + 48915 Feb 22 1989 DSKEBM.MAC + 2240 Feb 22 1989 DSKEBT.MAC + 60 Feb 22 1989 DSKEC.CCL + 540 Feb 22 1989 DSKEC.CTL + 705 Feb 22 1989 DSKEC.HST + 2105 Feb 22 1989 DSKEC.INP + 15860 Feb 22 1989 DSKEC.SAV + 203370 Feb 22 1989 DSKEC.SEQ + 6320 Feb 22 1989 DSKEC.TXT + 42895 Feb 22 1989 DSKECM.MAC + 5360 Feb 22 1989 DSKECT.MAC + 60 Feb 22 1989 DSKFA.CCL + 510 Feb 22 1989 DSKFA.CTL + 465 Feb 22 1989 DSKFA.HST + 1500 Feb 22 1989 DSKFA.INP + 8730 Feb 22 1989 DSKFA.SAV + 330590 Feb 22 1989 DSKFA.SEQ + 6295 Feb 22 1989 DSKFA.TXT + 13940 Feb 22 1989 DSKFAM.MAC + 915 Feb 22 1989 DSKFAS.MAC + 2200 Feb 22 1989 DSKFAT.MAC + 212480 Feb 23 1989 DSR.EXE + 20 Jan 13 1989 END.MAC + 800 Jun 16 1976 ERPARM.MAC + 5550 Jun 16 1976 ERRHAN.MAC + 20 Jan 17 1989 FF + 12590 Mar 26 1996 FIXED.KLM + 8570 Feb 22 1989 FIXED.KSM + 1030 Jun 9 1976 FLOAT.MAC + 12000 Feb 22 1989 GCOM.MAC + 12550 Sep 9 1985 GENRGS.MAC + 12995 Jan 13 1989 GENVAR.MAC + 27000 Feb 22 1989 GKBD.MAC + 61205 Feb 22 1989 GLXMAC.MAC + 18630 Feb 22 1989 GLXMAC.UNV + 30 Feb 22 1989 GSCN.CCL + 65960 Feb 22 1989 GSCN.MAC + 1175 Jun 9 1976 IFIX.MAC + 35 Jan 17 1989 KADTBT.CCL + 65 Dec 12 1988 KASIM.CCL + 32585 Dec 12 1988 KASIM.SAV + 35 Jan 17 1989 KFDTBT.CCL + 27170 Jun 9 1976 KI10A1.MAC + 51460 Jun 9 1976 KI10A2.MAC + 22535 Jun 9 1976 KIPNT.MAC + 1890 Jan 13 1989 KL10A1.MAC + 27490 Jan 13 1989 KL10A2.MAC + 51650 Jan 13 1989 KL10A3.MAC + 150 Jan 17 1989 KLACP.CCL + 25 Jan 13 1989 KLAD10.CCL + 590 Jan 13 1989 KLAD10.CTL + 4645 Jan 13 1989 KLAD10.HLP + 1250 Jan 13 1989 KLAD10.HST + 1490 Jan 13 1989 KLAD10.INP + 62170 Jan 13 1989 KLAD10.MAC + 9765 Jan 13 1989 KLAD10.SAV + 225970 Jan 13 1989 KLAD10.SEQ + 2590 Jan 13 1989 KLAD10.TXT + 35 Jan 13 1989 KLADBT.CCL + 325 Jan 13 1989 KLCPU.CMD + 105 Jan 17 1989 KLDBLD.CMD + 25 Jan 13 1989 KLDDT.CCL + 490 Jan 13 1989 KLDDT.CTL + 4450 Jan 13 1989 KLDDT.HLP + 895 Jan 13 1989 KLDDT.HST + 1445 Jan 13 1989 KLDDT.INP + 175795 Jan 13 1989 KLDDT.MAC + 16835 Feb 9 1989 KLDDT.SAV + 360490 Jan 13 1989 KLDDT.SEQ + 1620 Jan 13 1989 KLDDT.TXT + 35 Jan 17 1989 KLDTBT.CCL + 160 Jan 17 1989 KLFCP.CCL + 95 Jan 13 1989 KLLD.CCL + 22735 Jan 13 1989 KLPNT.MAC + 35 Jan 17 1989 KLRPBT.CCL + 4705 Jan 17 1989 KLRPBT.OBJ + 35 Jan 17 1989 KLRXBT.CCL + 55260 Feb 9 1989 KSSIM.SAV + 6615 Feb 24 1989 LIST.DIAG + 60 Jan 17 1989 LOCAT.MIC + 2530 Oct 4 1988 M.MAC + 71680 Jun 15 1989 MACRO.V51 + 17230 Feb 22 1989 MACSYM.UNV + 18970 Feb 22 1989 MACTEN.UNV + 35840 Jan 30 1989 MACY11.EXE + 54440 Jan 13 1989 MAGLDR.MAC + 35 Jan 13 1989 MAGMON.CCL + 625 Jan 13 1989 MAGMON.CTL + 25600 Jan 13 1989 MAGMON.EXE + 1485 Jan 13 1989 MAGMON.HST + 1435 Jan 13 1989 MAGMON.INP + 33090 Apr 19 1996 MAGMON.MAC + 14545 Jun 15 1989 MAGMON.SAV + 293710 Jan 13 1989 MAGMON.SEQ + 17940 Jan 13 1989 MAGMON.TXT + 25 Jan 13 1989 MAGTAP.CCL + 590 Jan 13 1989 MAGTAP.CTL + 23040 May 22 1978 MAGTAP.EXE + 5100 Jul 17 1979 MAGTAP.HLP + 1765 Jan 13 1989 MAGTAP.HST + 1430 Jan 13 1989 MAGTAP.INP + 107725 Jan 13 1989 MAGTAP.MAC + 310 Jun 15 1989 MAGTAP.MTA + 9390 Jun 15 1989 MAGTAP.RDI + 18280 Jun 15 1989 MAGTAP.SAV + 331755 Jan 13 1989 MAGTAP.SEQ + 26570 Jan 13 1989 MAGTAP.TXT + 112060 Jan 13 1989 MAINKL.LPT + 50795 Jan 13 1989 MAPSUP.MAC + 5005 Feb 8 1989 MATRIX-FULL.BAK + 3545 Feb 8 1989 MATRIX-FULL.RNO + 13505 Jun 7 1989 MATRIX.BAK + 4450 Mar 9 1989 MATRIX.DIF + 21390 Jun 14 1989 MATRIX.MEM + 14225 Jun 13 1989 MATRIX.RNO + 1405 Feb 2 1989 MATRIX.RNO-OLD + 10605 Mar 7 1989 MBC.FLI + 16665 Mar 7 1989 MBC.FLO + 1335 Feb 23 1989 MBSUB.TEC + 55 Mar 7 1989 MCDXD.CMD + 27070 Mar 7 1989 MCDXDM.MAC + 3655 Mar 7 1989 MCDXDT.MAC + 15055 Mar 7 1989 MCERR.MAC + 355 Mar 7 1989 MCMSG.CMD + 1765 Mar 7 1989 MCMSG.MAC + 49390 Mar 7 1989 MCOD1M.MAC + 825 Mar 7 1989 MCOD1T.MAC + 41945 Mar 7 1989 MCOD2M.MAC + 4520 Mar 7 1989 MCOD2T.MAC + 57965 Mar 7 1989 MCOD3M.MAC + 4480 Mar 7 1989 MCOD3T.MAC + 74530 Mar 7 1989 MCOD4M.MAC + 6320 Mar 7 1989 MCOD4T.MAC + 77855 Mar 7 1989 MCOD5M.MAC + 6280 Mar 7 1989 MCOD5T.MAC + 48610 Mar 7 1989 MCOD6M.MAC + 7565 Mar 7 1989 MCOD6T.MAC + 48405 Mar 7 1989 MCOD7M.MAC + 7565 Mar 7 1989 MCOD7T.MAC + 420 Mar 7 1989 MCODE.CMD + 110135 Mar 7 1989 MCODE0.LST + 49695 Mar 7 1989 MCODE0.MAC + 176225 Mar 7 1989 MCODE1.LST + 180305 Mar 7 1989 MCODE2.LST + 225350 Mar 7 1989 MCODE3.LST + 291305 Mar 7 1989 MCODE4.LST + 268105 Mar 7 1989 MCODE5.LST + 242500 Mar 7 1989 MCODE6.LST + 243275 Mar 7 1989 MCODE7.LST + 85 Jan 17 1989 MCRFX1.TEC + 85 Jan 17 1989 MCRFX2.TEC + 35 Jan 17 1989 MCRMAC.TEC + 1160 Feb 23 1989 MEMCON.HLP + 51330 Feb 23 1989 MF20.FMT + 79360 Jan 17 1989 MICRO.EXE + 65850 Jan 17 1989 MICRO.MIC + 79360 Jan 17 1989 MICRO.OLD + 78095 Jan 13 1989 MONSYM.L36 + 307575 Jan 21 1985 MONSYM.MAC + 80965 Feb 22 1989 MONSYM.UNV + 925 Dec 7 1988 MORDOR.FIL + 30795 Feb 23 1989 MOS.CTL + 24620 Feb 23 1989 MOSDEF.MAC + 1505 Feb 23 1989 MOSTIM.TEC + 85 Feb 22 1989 MSCRA.CCL + 820 Feb 22 1989 MSCRA.CTL + 74240 Feb 22 1989 MSCRA.EXE + 28740 Feb 22 1989 MSCRA.MSG + 38555 Feb 22 1989 MSCRAD.B36 + 17010 Feb 22 1989 MSCRAD.BEG + 21545 Feb 22 1989 MSCRAD.END + 67350 Feb 22 1989 MSCRAD.XRF + 119930 Feb 22 1989 MSCRAT.B36 + 206100 Feb 22 1989 MSCRAT.XRF + 85 Feb 22 1989 MSCSL.CCL + 820 Feb 22 1989 MSCSL.CTL + 102400 Feb 22 1989 MSCSL.EXE + 99375 Feb 22 1989 MSCSL.MSG + 41020 Feb 22 1989 MSCSLD.B36 + 11820 Feb 22 1989 MSCSLD.BEG + 29200 Feb 22 1989 MSCSLD.END + 76080 Feb 22 1989 MSCSLD.XRF + 276640 Feb 22 1989 MSCSLT.B36 + 395270 Feb 22 1989 MSCSLT.XRF + 85 Feb 22 1989 MSDPE.CCL + 820 Feb 22 1989 MSDPE.CTL + 145920 Feb 22 1989 MSDPE.EXE + 50880 Feb 22 1989 MSDPE.MSG + 36955 Feb 22 1989 MSDPED.B36 + 9355 Feb 22 1989 MSDPED.BEG + 27600 Feb 22 1989 MSDPED.END + 69210 Feb 22 1989 MSDPED.XRF + 433960 Feb 22 1989 MSDPET.B36 + 609005 Feb 22 1989 MSDPET.XRF + 85 Feb 22 1989 MSDPM.CCL + 820 Feb 22 1989 MSDPM.CTL + 97280 Feb 22 1989 MSDPM.EXE + 23150 Feb 22 1989 MSDPM.MSG + 32710 Feb 22 1989 MSDPMD.B36 + 9320 Feb 22 1989 MSDPMD.BEG + 23390 Feb 22 1989 MSDPMD.END + 59130 Feb 22 1989 MSDPMD.XRF + 185765 Feb 22 1989 MSDPMT.B36 + 321565 Feb 22 1989 MSDPMT.XRF + 85 Feb 22 1989 MSMMC.CCL + 815 Feb 22 1989 MSMMC.CTL + 161280 Feb 22 1989 MSMMC.EXE + 93380 Feb 22 1989 MSMMC.MSG + 88755 Feb 22 1989 MSMMCD.B36 + 15245 Feb 22 1989 MSMMCD.BEG + 73510 Feb 22 1989 MSMMCD.END + 173565 Feb 22 1989 MSMMCD.XRF + 406050 Feb 22 1989 MSMMCT.B36 + 571055 Feb 22 1989 MSMMCT.XRF + 155965 Feb 22 1989 MSSTRC.B36 + 165 Feb 22 1989 MSSTRC.CTL + 220400 Feb 22 1989 MSSTRC.XRF + 18500 Jan 19 1989 MUUO.MAC + 5710 Jan 13 1989 NPAG.MIC + 6520 Jan 13 1989 NPAG2.MIC + 5710 Jan 17 1989 NPB.MIC + 6520 Jan 17 1989 NPB2.MIC + 195 Jan 13 1989 PAG.CCL + 200 Jan 17 1989 PAGB.CCL + 27345 Jan 13 1989 PAGDEF.MIC + 295 Jan 17 1989 PAGH.CCL + 19110 Jan 13 1989 PAGING.MAC + 17920 Feb 23 1989 PAL10.EXE + 39475 Jan 13 1989 PARAM.KLM + 20690 Feb 22 1989 PARAM.KSM + 10920 Jan 13 1989 PARAM.MAC + 37360 Jan 17 1989 PBDEF.MIC + 20020 Jan 17 1989 PBING.MAC + 30720 Feb 23 1989 PIP.EXE + 215 Jan 17 1989 PT0.CCL + 215 Jan 17 1989 PT1.CCL + 26290 Jan 17 1989 PTBING.MAC + 220 Jan 17 1989 PTBOTH.CCL + 15940 Jan 27 1989 PUNCH.SAV + 1475 Jan 17 1989 REG.TXT + 7785 Feb 22 1989 REGBIT.R36 + 5145 Nov 19 1985 RELEASE.DOC + 365 Aug 19 1983 RELEASE.NOTES + 20 Jan 13 1989 REP0OF.MAC + 415 Jan 13 1989 REP0ON.MAC + 195 Jan 16 1989 RESTOR.BAK + 230 Jan 16 1989 RESTOR.MIC + 665 Oct 4 1988 S.MAC + 380 Sep 11 1985 SCM.MIC + 12730 Sep 9 1985 SCOPE.MAC + 815 Feb 6 1989 SDIAG.MIC + 85 Feb 22 1989 SMBC2.CCL + 765 Feb 22 1989 SMBC2.CTL + 87040 Feb 22 1989 SMBC2.EXE + 365 Feb 22 1989 SMBC2.HST + 1640 Feb 22 1989 SMBC2.INP + 79725 Feb 22 1989 SMBC2.SAV + 3302380 Feb 22 1989 SMBC2.SEQ + 6535 Feb 22 1989 SMBC2.TXT + 36960 Feb 22 1989 SMBC2A.MAC + 17920 Feb 22 1989 SMBC2B.MAC + 86025 Feb 22 1989 SMBC2C.MAC + 65885 Feb 22 1989 SMBC2D.MAC + 90760 Feb 22 1989 SMBC2E.MAC + 111560 Feb 22 1989 SMBC2F.MAC + 42010 Feb 22 1989 SMBC2G.MAC + 30150 Feb 22 1989 SMBC2H.MAC + 120 Feb 22 1989 SMBC2S.MAC + 11905 Feb 22 1989 SMBC2T.MAC + 25 Feb 22 1989 SMDDT.CCL + 440 Feb 22 1989 SMDDT.CTL + 4525 Feb 22 1989 SMDDT.HLP + 820 Feb 22 1989 SMDDT.HST + 1450 Feb 22 1989 SMDDT.INP + 180035 Feb 22 1989 SMDDT.MAC + 17040 Feb 22 1989 SMDDT.SAV + 393385 Feb 22 1989 SMDDT.SEQ + 1745 Feb 22 1989 SMDDT.TXT + 25 Feb 22 1989 SMFILE.CCL + 950 Feb 22 1989 SMFILE.CTL + 107520 Feb 22 1989 SMFILE.EXE + 815 Feb 22 1989 SMFILE.HLP + 1095 Feb 22 1989 SMFILE.HST + 1685 Feb 22 1989 SMFILE.INP + 149270 Apr 19 1996 SMFILE.MAC + 836280 Feb 22 1989 SMFILE.SEQ + 9475 Feb 22 1989 SMFILE.TXT + 25 Feb 22 1989 SMMAG.CCL + 570 Feb 22 1989 SMMAG.CTL + 23040 Feb 22 1989 SMMAG.EXE + 935 Feb 22 1989 SMMAG.HST + 1460 Feb 22 1989 SMMAG.INP + 64030 Apr 19 1996 SMMAG.MAC + 10845 Feb 23 1989 SMMAG.SAV + 228110 Feb 22 1989 SMMAG.SEQ + 14180 Feb 22 1989 SMMAG.TXT + 25 Feb 22 1989 SMMON.CCL + 560 Feb 22 1989 SMMON.CTL + 23040 Feb 22 1989 SMMON.EXE + 900 Feb 22 1989 SMMON.HST + 1455 Feb 22 1989 SMMON.INP + 93720 Apr 19 1996 SMMON.MAC + 15910 Feb 22 1989 SMMON.SAV + 336735 Feb 22 1989 SMMON.SEQ + 14270 Feb 22 1989 SMMON.TXT + 25 Feb 22 1989 SMMTPB.CCL + 18725 Feb 22 1989 SMMTPB.MAC + 25 Feb 22 1989 SMPREB.CCL + 16090 Feb 22 1989 SMPREB.MAC + 250 Feb 23 1989 SMTAPE.MTA + 2560 Feb 23 1989 SMTAPE.RDI + 17115 Feb 23 1989 SMTAPE.SAV + 58880 Jan 30 1989 SNOBOL.EXE + 4185 Jan 13 1989 SPCCPU.KLM + 2135 Feb 8 1989 SPCCPU.KSM + 255 Feb 22 1989 STIRS.INP + 32135 Feb 22 1989 STIRS.TXT + 3505 Feb 22 1989 STIRSD.R36 + 255 Jan 13 1989 STOR.KLM + 250 Feb 22 1989 STOR.KSM + 5865 Jan 13 1989 STOR.MAC + 60 Jan 13 1989 SUBKL.CCL + 575 Jan 13 1989 SUBKL.CTL + 490 Jan 13 1989 SUBKL.HST + 1560 Jan 13 1989 SUBKL.INP + 15105 Jan 13 1989 SUBKL.SAV + 423110 Jan 13 1989 SUBKL.SEQ + 47510 Jan 13 1989 SUBKL.TXT + 85705 Apr 19 1996 SUBKLM.MAC + 1575 Jan 13 1989 SUBKLS.MAC + 2140 Jan 13 1989 SUBKLT.MAC + 100665 Apr 19 1996 SUBRTM.MAC + 60 Jan 13 1989 SUBRTN.CCL + 910 Jan 13 1989 SUBRTN.CTL + 3390 Jan 13 1989 SUBRTN.HST + 1605 Jan 13 1989 SUBRTN.INP + 58090 Jan 13 1989 SUBRTN.MAC + 17805 Feb 9 1989 SUBRTN.SAV + 757170 Jan 13 1989 SUBRTN.SEQ + 49030 Jan 13 1989 SUBRTN.TXT + 1610 Jan 13 1989 SUBRTS.MAC + 2185 Jan 13 1989 SUBRTT.MAC + 60 Feb 22 1989 SUBSM.CCL + 505 Feb 22 1989 SUBSM.CTL + 935 Feb 22 1989 SUBSM.HST + 1475 Feb 22 1989 SUBSM.INP + 14705 Feb 22 1989 SUBSM.SAV + 429205 Feb 22 1989 SUBSM.SEQ + 43705 Feb 22 1989 SUBSM.TXT + 83790 Apr 19 1996 SUBSMM.MAC + 565 Feb 22 1989 SUBSMS.MAC + 2720 Feb 22 1989 SUBSMT.MAC + 61520 Apr 19 1996 SUBUSM.MAC + 60 Jan 13 1989 SUBUSR.CCL + 11485 Feb 9 1989 SUBUSR.SAV + 520 Jan 13 1989 SUBUSS.MAC + 1170 Jan 13 1989 SUBUST.MAC + 620 Jan 17 1989 SWITCH.HLP + 63605 Jan 27 1989 SYSMAC.DAG + 63640 Jan 27 1989 SYSMAC.DAH + 63640 Jan 27 1989 SYSMAC.SML + 7010 Jan 17 1989 T + 850 Oct 4 1988 T.MAC + 7010 Feb 23 1989 T.TEC + 25600 Jan 17 1989 TECO.OLD + 2395 Feb 23 1989 TENWD.TEC + 185 Jan 13 1989 TGHA.CCL + 9575 Jan 13 1989 TGHA.DEF + 96505 Jan 13 1989 TGHA.DOC + 102400 Jan 13 1989 TGHA.EXE + 135 Jan 13 1989 TGHA.HLP + 50 Jan 27 1989 TRACON.CCL + 3145 Jan 27 1989 TRACON.HLP + 2755 Jan 27 1989 TRACON.HST + 510 May 9 1985 TTY.SCM + 1150 Jan 17 1989 UCODE.CTL + 44475 Jan 13 1989 UTIL1.MAC + 6605 Jan 13 1989 UUOERR.KLM + 6230 Feb 9 1989 UUOERR.KSM + 33795 Feb 22 1989 UUOSYM.UNV + 25 Feb 9 1989 VER.BAK + 30 Feb 9 1989 VER.MIC + 210 Feb 3 1989 X.MIC diff --git a/modules/pcx86/lib/panel.js b/modules/pcx86/lib/panel.js index b6ed3d406..1f89c5d1c 100644 --- a/modules/pcx86/lib/panel.js +++ b/modules/pcx86/lib/panel.js @@ -50,7 +50,7 @@ if (NODE) { * iBlock: number, * cBlocks: number, * type: number - * }} + * }} Region */ var Region; From 13158e2dd21ab066944bf5d3b3f640e40f9e7640 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Fri, 26 May 2017 10:18:47 -0700 Subject: [PATCH 4/4] Added PC-DOS 0.90 disk image and appropriate Model 5150 machines to boot it --- devices/pcx86/machine/5150/README.md | 2 +- .../5150/cga/256kb/debugger/machine.md | 11 +++ .../5150/cga/256kb/debugger/machine.xml | 20 ++++++ .../pcx86/machine/5150/cga/256kb/machine.md | 10 +++ .../pcx86/machine/5150/cga/256kb/machine.xml | 14 ++++ .../5150/cga/384kb/softkbd/machine.xml | 2 +- devices/pcx86/machine/5150/cga/README.md | 3 +- .../5150/mda/256kb/debugger/machine.md | 11 +++ .../5150/mda/256kb/debugger/machine.xml | 20 ++++++ .../pcx86/machine/5150/mda/256kb/machine.md | 10 +++ .../pcx86/machine/5150/mda/256kb/machine.xml | 17 +++++ .../5150/mda/64kb/debugger/machine.xml | 2 +- .../pcx86/machine/5150/mda/64kb/machine.xml | 2 +- .../machine/5150/mda/64kb/softkbd/machine.xml | 2 +- devices/pcx86/machine/5150/mda/README.md | 3 +- disks/pcx86/compiled/library.xml | 1 + disks/pcx86/dos/README.md | 2 +- disks/pcx86/dos/ibm/0.90/PCDOS090.json | 1 + disks/pcx86/dos/ibm/0.90/README.md | 70 ++++++++++++++++++ disks/pcx86/dos/ibm/0.90/debugger/README.md | 71 +++++++++++++++++++ disks/pcx86/dos/ibm/0.90/manifest.xml | 11 +++ disks/pcx86/dos/ibm/1.00/README.md | 2 +- disks/pcx86/dos/ibm/README.md | 1 + disks/pcx86/library.xml | 1 + modules/diskdump/bin/diskdump | 1 + modules/filedump/bin/filedump | 1 + 26 files changed, 282 insertions(+), 9 deletions(-) create mode 100644 devices/pcx86/machine/5150/cga/256kb/debugger/machine.md create mode 100644 devices/pcx86/machine/5150/cga/256kb/debugger/machine.xml create mode 100644 devices/pcx86/machine/5150/cga/256kb/machine.md create mode 100644 devices/pcx86/machine/5150/cga/256kb/machine.xml create mode 100644 devices/pcx86/machine/5150/mda/256kb/debugger/machine.md create mode 100644 devices/pcx86/machine/5150/mda/256kb/debugger/machine.xml create mode 100644 devices/pcx86/machine/5150/mda/256kb/machine.md create mode 100644 devices/pcx86/machine/5150/mda/256kb/machine.xml create mode 100644 disks/pcx86/dos/ibm/0.90/PCDOS090.json create mode 100644 disks/pcx86/dos/ibm/0.90/README.md create mode 100644 disks/pcx86/dos/ibm/0.90/debugger/README.md create mode 100644 disks/pcx86/dos/ibm/0.90/manifest.xml diff --git a/devices/pcx86/machine/5150/README.md b/devices/pcx86/machine/5150/README.md index f3dbfe280..cc5b320d0 100644 --- a/devices/pcx86/machine/5150/README.md +++ b/devices/pcx86/machine/5150/README.md @@ -7,7 +7,7 @@ redirect_from: --- IBM PC (Model 5150) Machines ---- +---------------------------- Our IBM PC 5150 configurations include: diff --git a/devices/pcx86/machine/5150/cga/256kb/debugger/machine.md b/devices/pcx86/machine/5150/cga/256kb/debugger/machine.md new file mode 100644 index 000000000..76b2792d1 --- /dev/null +++ b/devices/pcx86/machine/5150/cga/256kb/debugger/machine.md @@ -0,0 +1,11 @@ +--- +layout: page +title: IBM PC (Model 5150, 256Kb) with Color Display and Debugger +permalink: /devices/pcx86/machine/5150/cga/256kb/debugger/ +machines: + - type: pcx86 + id: ibm5150 + debugger: true +--- + +{% include machine.html id="ibm5150" %} diff --git a/devices/pcx86/machine/5150/cga/256kb/debugger/machine.xml b/devices/pcx86/machine/5150/cga/256kb/debugger/machine.xml new file mode 100644 index 000000000..277f57a0b --- /dev/null +++ b/devices/pcx86/machine/5150/cga/256kb/debugger/machine.xml @@ -0,0 +1,20 @@ + + + + IBM PC (Model 5150), CGA, 256K, Debugger + + + + + + + diff --git a/devices/pcx86/machine/5150/cga/256kb/machine.md b/devices/pcx86/machine/5150/cga/256kb/machine.md new file mode 100644 index 000000000..557c6c33d --- /dev/null +++ b/devices/pcx86/machine/5150/cga/256kb/machine.md @@ -0,0 +1,10 @@ +--- +layout: page +title: IBM PC (Model 5150, 256Kb) with Color Display +permalink: /devices/pcx86/machine/5150/cga/256kb/ +machines: + - type: pcx86 + id: ibm5150 +--- + +{% include machine.html id="ibm5150" %} diff --git a/devices/pcx86/machine/5150/cga/256kb/machine.xml b/devices/pcx86/machine/5150/cga/256kb/machine.xml new file mode 100644 index 000000000..92adc4c26 --- /dev/null +++ b/devices/pcx86/machine/5150/cga/256kb/machine.xml @@ -0,0 +1,14 @@ + + + + IBM PC (Model 5150), CGA, 256K + + + + + + diff --git a/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml b/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml index 5ec272182..7d35d130e 100644 --- a/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml +++ b/devices/pcx86/machine/5150/cga/384kb/softkbd/machine.xml @@ -1,7 +1,7 @@ - IBM PC (Model 5150), CGA, 384K + IBM PC (Model 5150), CGA, 384K, Soft Keyboard diff --git a/devices/pcx86/machine/5150/cga/README.md b/devices/pcx86/machine/5150/cga/README.md index c95b99979..abedbbcb0 100644 --- a/devices/pcx86/machine/5150/cga/README.md +++ b/devices/pcx86/machine/5150/cga/README.md @@ -8,10 +8,11 @@ redirect_from: --- IBM PC with Color Graphics (CGA) Display ---- +---------------------------------------- All our Color Graphics (CGA) configurations of the IBM PC Model 5150 are located here, including: * [IBM PC (64Kb) with Color Display](/devices/pcx86/machine/5150/cga/64kb/donkey/) ([Debugger](/devices/pcx86/machine/5150/cga/64kb/donkey/debugger/)) * [IBM PC (64Kb) with Color Display and Soft Keyboard (Debugger)](/devices/pcx86/machine/5150/cga/64kb/softkbd/) +* [IBM PC (256Kb) with Color Display](/devices/pcx86/machine/5150/cga/256kb/) ([Debugger](/devices/pcx86/machine/5150/cga/256kb/debugger/)) * [IBM PC (384Kb) with Color Display and Soft Keyboard (Debugger)](/devices/pcx86/machine/5150/cga/384kb/softkbd/) diff --git a/devices/pcx86/machine/5150/mda/256kb/debugger/machine.md b/devices/pcx86/machine/5150/mda/256kb/debugger/machine.md new file mode 100644 index 000000000..be1aaa7fd --- /dev/null +++ b/devices/pcx86/machine/5150/mda/256kb/debugger/machine.md @@ -0,0 +1,11 @@ +--- +layout: page +title: IBM PC (Model 5150, 256Kb) with Monochrome Display and Debugger +permalink: /devices/pcx86/machine/5150/mda/256kb/debugger/ +machines: + - type: pcx86 + id: ibm5150 + debugger: true +--- + +{% include machine.html id="ibm5150" %} diff --git a/devices/pcx86/machine/5150/mda/256kb/debugger/machine.xml b/devices/pcx86/machine/5150/mda/256kb/debugger/machine.xml new file mode 100644 index 000000000..5f1ed80d5 --- /dev/null +++ b/devices/pcx86/machine/5150/mda/256kb/debugger/machine.xml @@ -0,0 +1,20 @@ + + + + IBM PC (Model 5150), MDA, 256K, Debugger + + + + + diff --git a/devices/pcx86/machine/5150/mda/256kb/machine.md b/devices/pcx86/machine/5150/mda/256kb/machine.md new file mode 100644 index 000000000..7936ea273 --- /dev/null +++ b/devices/pcx86/machine/5150/mda/256kb/machine.md @@ -0,0 +1,10 @@ +--- +layout: page +title: IBM PC (Model 5150, 256Kb) with Monochrome Display +permalink: /devices/pcx86/machine/5150/mda/256kb/ +machines: + - type: pcx86 + id: ibm5150 +--- + +{% include machine.html id="ibm5150" %} diff --git a/devices/pcx86/machine/5150/mda/256kb/machine.xml b/devices/pcx86/machine/5150/mda/256kb/machine.xml new file mode 100644 index 000000000..cc22adf14 --- /dev/null +++ b/devices/pcx86/machine/5150/mda/256kb/machine.xml @@ -0,0 +1,17 @@ + + + + IBM PC (Model 5150), MDA, 256K + + + + + diff --git a/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml b/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml index ffb22c894..6267aced3 100644 --- a/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml +++ b/devices/pcx86/machine/5150/mda/64kb/debugger/machine.xml @@ -1,7 +1,7 @@ - IBM PC (Model 5150) with Monochrome Display + IBM PC (Model 5150), MDA, 64K, Debugger diff --git a/devices/pcx86/machine/5150/mda/64kb/machine.xml b/devices/pcx86/machine/5150/mda/64kb/machine.xml index 24093db31..ed27f9760 100644 --- a/devices/pcx86/machine/5150/mda/64kb/machine.xml +++ b/devices/pcx86/machine/5150/mda/64kb/machine.xml @@ -1,7 +1,7 @@ - IBM PC (Model 5150) with Monochrome Display + IBM PC (Model 5150), MDA, 64K diff --git a/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml b/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml index 3260b4fe6..aa2ea5528 100644 --- a/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml +++ b/devices/pcx86/machine/5150/mda/64kb/softkbd/machine.xml @@ -1,7 +1,7 @@ - IBM PC (Model 5150), MDA, 64K + IBM PC (Model 5150), MDA, 64K, Soft Keyboard diff --git a/devices/pcx86/machine/5150/mda/README.md b/devices/pcx86/machine/5150/mda/README.md index e486f1f41..321bd00f7 100644 --- a/devices/pcx86/machine/5150/mda/README.md +++ b/devices/pcx86/machine/5150/mda/README.md @@ -11,12 +11,13 @@ machines: --- IBM PC with Monochrome (MDA) Display ---- +------------------------------------ All our Monochrome (MDA) configurations of the IBM PC Model 5150 are located here, including: * [IBM PC (64Kb) with Monochrome Display](/devices/pcx86/machine/5150/mda/64kb/) ([Debugger](/devices/pcx86/machine/5150/mda/64kb/debugger/)) * [IBM PC (64Kb) with Monochrome Display and Soft Keyboard (Debugger)](/devices/pcx86/machine/5150/mda/64kb/softkbd/) +* [IBM PC (256Kb) with Monochrome Display](/devices/pcx86/machine/5150/mda/256kb/) ([Debugger](/devices/pcx86/machine/5150/mda/256kb/debugger/)) Below is a 64kb configuration, with a clock speed of 4.77Mhz, using the original IBM PC Model 5150 ROM BIOS and MDA font ROM. For more control, diff --git a/disks/pcx86/compiled/library.xml b/disks/pcx86/compiled/library.xml index c883a65f9..b23cda903 100644 --- a/disks/pcx86/compiled/library.xml +++ b/disks/pcx86/compiled/library.xml @@ -11,6 +11,7 @@ IBM PC Diagnostics 1.02 IBM PC Diagnostics 2.20 IBM PC AT Diagnostics 2.07 + PC-DOS 0.90 PC-DOS 1.00 PC-DOS 1.10 PC-DOS 2.00 (Disk 1) diff --git a/disks/pcx86/dos/README.md b/disks/pcx86/dos/README.md index 0c202e906..95c7a6b7b 100644 --- a/disks/pcx86/dos/README.md +++ b/disks/pcx86/dos/README.md @@ -5,7 +5,7 @@ permalink: /disks/pcx86/dos/ --- PC-DOS and MS-DOS ---- +----------------- Information is available for assorted versions of PC-DOS and MS-DOS from these vendors: diff --git a/disks/pcx86/dos/ibm/0.90/PCDOS090.json b/disks/pcx86/dos/ibm/0.90/PCDOS090.json new file mode 100644 index 000000000..7e1283256 --- /dev/null +++ b/disks/pcx86/dos/ibm/0.90/PCDOS090.json @@ -0,0 +1 @@ +[[[{"sector":1,"length":512,"pattern":0,"data":[1322987,6291456,2963232,65794,1073758210,130561,65544,0,0,0,0,0,-930285056,12245134,-1127051776,-1577354240,-661750778,12238990,-842888448,-398364141,-76414888,34507566,12276092,-1177406720,29229064,28333568,332202676,1482564210,721479656,-32213818,-1107185211,-969211896,-259324813,1452671467,786295632,2080648959,-1199749954,844135746,2133110015,-1269429388,506638,-346156851,12305392,309504,-855506504,879894035,-661731188,-1191182145,-2144993269,-2144985075,536879245,-1074535865,1992163328,768381,1973875708,2146063,-1182956866,-1494024181,-1021377931,-394462786,11861925,-115403059,1309281731,1395486319,1702130553,1768169581,1864395635,1768169586,1696623475,-227577230,1699875341,1667329136,1851859045,1953701988,1701538162,2037276960,2036689696,1701345056,1701978222,234447969,416088074,1766066701,1109420915,544501615,1818845542,233140853,1380974602,12568203,65533698,-1017619752,1700949842,1327527026,1634030119,1651056754,1869177453,1868767264,1651093613,1936680045,1868767264,13217901]},{"sector":2,"length":512,"pattern":0,"data":[67108862,1610940480,9436928,184590345,-536018752,16781056,335540241,1611989312,-1042687,453091353,-534969920,33562369,-16637919,1879048191,41953026,721592361,-533921088,50343682,872411185,-264961216,59768831,1124069433,-532872256,-1032445,1124532289,1615135808,75515652,1258594377,-531823424,83906308,1392844881,-2141911744,93323019,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-259651600,-1019905,1929846897,1878984512,-1018105,2064097401,-528676928,-249,-2096619391,8718400,142640906,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,194027273,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,-1001717,-1156861953,-524419088,202374923,-1022578689,1623526464,209766156,-872415233,-523432704,-995572,-754114351,1624706368,233832205,-619863847,-62016,235929599,-485613343,1625625232,-989426,-351358977,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628770625,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,-1,15]},{"sector":3,"length":512,"pattern":0,"data":[67108862,1610940480,9436928,184590345,-536018752,16781056,335540241,1611989312,-1042687,453091353,-534969920,33562369,-16637919,1879048191,41953026,721592361,-533921088,50343682,872411185,-264961216,59768831,1124069433,-532872256,-1032445,1124532289,1615135808,75515652,1258594377,-531823424,83906308,1392844881,-2141911744,93323019,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-259651600,-1019905,1929846897,1878984512,-1018105,2064097401,-528676928,-249,-2096619391,8718400,142640906,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,194027273,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,-1001717,-1156861953,-524419088,202374923,-1022578689,1623526464,209766156,-872415233,-523432704,-995572,-754114351,1624706368,233832205,-619863847,-62016,235929599,-485613343,1625625232,-989426,-351358977,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628770625,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,-1,15]},{"sector":4,"length":512,"data":[1112359497,538988361,72175427,0,0,0,131773,2560,1145913929,538989391,72175427,0,0,0,459453,5566,1296912195,541347393,5066563,0,0,0,1180349,2576,1430406468,538976327,5066563,0,0,0,1573563,5450,1162692948,538976288,5066563,0,0,0,2294451,243,1163149636,538976288,5066563,0,0,0,2359988,245,541938497,538976288,5066563,0,0,0,2425519,6389,1297239878,538989633,5066563,0,0,0,3277501,2048,844645704,542001474,5066563,0,0,0,3539623,483,1230192962,538976323,5066563,0,0,0,3801796,11008,1145784387,538987347,5066563,0,0,0,3605182,1224,1229734981,538976334,5066563,0,0,0,3867325,2231,1162104653,538976288,5066563,0,0,0,13959168,675,1296912195,1398033989,2105376,0,0,0,4195013,3561,1112952653,538989377,5066563,0,0,0,5636759,128,827539778,538976312,5066563,0,0,0,5702340,11008]},{"sector":5,"length":512,"data":[1230192962,538984771,5066563,0,0,0,7078596,14976,1330926913,1128618053,5521730,0,0,0,7143424,24,542333267,538976288,5066563,0,0,0,7209667,896,827539778,538984760,5066563,0,0,0,8389316,14976,1296912195,1398033989,4931906,0,0,0,7865029,3560,1297040198,538976336,5066563,0,0,0,12321421,1408,1263749444,1498435395,5066563,0,0,0,7668420,1211,1447972675,542396997,5066563,0,0,0,12714639,3200,1347243843,538976288,5066563,0,0,0,13173391,256,1330399563,538976288,5456194,0,0,0,12518039,768,1095249970,538976332,5066563,0,0,0,13370008,1792,1464029267,538989121,5456194,0,0,0,12649142,5120,542725204,538976288,4412225,0,0,0,14156470,2432,1347371862,538976345,5521730,0,0,0,14484120,26,1346979923,538976339,4407629,0,0,0,14942913,1792,1129466179,538985804,4407629,0,0,0,15205057,384]},{"sector":6,"length":512,"pattern":-151587082,"data":[1396785746,538976288,5066563,0,0,0,15270553,32768,1163020372,538985541,5456194,0,0,0,14614528,3072,1161975107,538976288,5521732,0,0,0,19530398,402,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099]},{"sector":7,"length":512,"pattern":-151587082,"data":[-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587082,-151587099]},{"sector":8,"length":512,"data":[-385637911,1105789074,27977985,-385743895,-857144704,156297474,-385329943,2097923,1397705026,1919243808,1852795251,808333600,959619120,2036419885,3225645,1631717901,1919885412,1936289056,1735289203,1836008224,1684955501,1953384736,1919971941,-228232091,218106381,1953845002,543584032,1701863792,658930,1917848077,1702129257,1634082930,234122357,168624138,544765249,542060361,1869771365,658930,-1717555462,1958742532,785120002,77338252,-1641641682,-1700581884,70433796,-795948916,77242670,1239291,646655738,-1909586786,772054038,77276810,-1205941253,-661782448,1006633376,-1341753857,532679171,1465262019,382534068,4000116,-1341885070,1606421008,519816030,5290064,1048631438,1946222593,17221142,28573952,108271309,382533812,113702123,1493106689,519819039,-661731188,-402573638,857669963,-18222,168689387,1769367876,1864394084,1718773110,234319724,788135946,77338252,-1641641682,-1700581884,70433796,-795948916,77242670,1239291,-1691973074,-1959855612,772054566,77338254,-1205941253,-661782448,1006633376,-972458497,262,-1023168481,771797023,77137542,24428554,-1269344573,1024904448,41251328,3936432,-2010249867,1594136870,788185950,77338252,-1641641682,-1700581884,70433796,-795948916,77242670,1239291,646590202,-1959918437,772054566,77338254,1347800059,1448235347,772715607,34610827,1477496144,208996412,237025360]}]],[[{"sector":1,"length":512,"data":[146280653,1477496078,1499094623,-1017292709,788135943,77731468,-1540978386,-1599918588,61127684,-795948916,77635886,1173755,-1600049414,646655492,-1909586780,-83582442,1465275083,-1275068230,-166212352,326443204,1963246838,29685271,1958360180,42907648,-1173558448,-1900543901,65753090,503346362,-661731188,520094440,-1957276733,2133110002,246679924,-855636037,1592978192,1583334235,788185946,77338252,-1641641682,-1700581884,70433796,-795948916,77242670,1239291,646590202,-1959918437,772054566,77338254,1465306107,12210258,-855460864,2044987924,8829449,1342364344,-1973774869,1583307494,-1943078205,772054038,77473417,77243182,-1945881924,785419976,-83584351,-100659736,-1641641170,378416644,-872741732,1347573590,12190132,169135360,-1161856540,1323892870,-889146113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1899459334,-1127182632,855312307,-1340879388,-1273705053,-854078207,12592401,-754973255,132584,1946158629,1963080735,-958344953,17316358,50871483,509912,42452736,-788529152,138126056,47134,1622726798,7250688,7079623,113705210]},{"sector":2,"length":512,"pattern":0,"data":[19005440,-1157627229,512295220,111345668,136218880,697088,794249,-1996484957,-1560276962,1354235922,-942109184,6,1002315520,39432,-1157955328,448004352,243999181,-377421818,-611581696,-661731188,-1274763590,169987343,-952732224,313094,-922302720,-956301308,17085446,-853036032,1008657185,-1910868735,-1899786533,4242643,-1957642189,-1275035626,1394724122,1342243000,3979979,2063459048,-65282,-1,-1,1124204543,1095585103,1126188110,52559,0,0,0,0,0,1375731712,844125009,163158244,1222693632,79282828,65196800,-1665006637,-494806281,378142208,163120561,-1997876480,-1660571882,95461976,1935300955,-1354858432,208994309,-1610592280,-922876496,-1023397144,973451168,1946529798,2484247,95493635,-1610599448,103417264,-922876497,-1023405336,216582398,-1323433216,1763333,125123,1793609923,-2011968254,1476767270,-939392142,46433219,-1336884231,66879489,-397336459,-208994241,-1190808641,-201588480,-396994139,332202557,2746459,-19500456,552125377,-1279569152,36169733,350753741,-1101963520,12125619,-1510736895,1482284939,-1040272526,-1933144893,-1899524385,50142]},{"sector":3,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2147483648,17316414,516096372,5290064,372955278,108331012,12197720,378061568,525860868,1103265872,135468680,-402131014,565901975,-91101176,382533812,-402114886,-1168573817,180551680,1936607501,544502373]},{"sector":4,"length":512,"pattern":0,"data":[1802725732,1702130789,1919903264,1769104416,2015389046,1851859002,1953701988,-445945486,1628244480,1797290350,1998616933,544105832,1684104562,168624377,67108874,138938440,138938440,0,16843264,4194816,1347551552,163488302,-768359797,-1019807954,784530953,772391074,163518088,-87860648,-1575580626,646524420,-1557265244,-1531181920,-1899459581,-1600049456,113651204,-83883579,-100659736,-1540977874,378416644,-872741726,208980235,788507624,163645126,1107971,1431787203,11817552,1482298317,-1017225379,-1944189360,-1933537576,1373146824,-1967027374,-1861632242,98105240,-1053097975,-1047920014,839500450,-1105818890,-1089566199,-1070691831,-1054438903,1364414473,-70260654,1482381658,-1394069389,-32804097,-2146843386,84526398,-1365187723,-1665136123,162119254,1963211334,-1427209733,-1262059255,1577355785,-111584611,-1029688597,162633737,-670834477,-1029678758,-805070839,443861035,34193312,1007272454,-385649911,113704821,-33486401,-385236986,17629033,-1017510113,378285818,-1993472862,772056102,-1140547421,-930348124,-1590767474,-970062688,640262,911611,646655738,-1909586780,-83582442,1959332811,-21829620,-1056520658,401080841,1082180607,134811680,16909060,67896834,525324,-62452,150994943,13238016]},{"sector":5,"length":512,"data":[51645417,1396395264,1077755452,1095912255,-352275391,771523102,11540854,777541839,354092687,777058972,354105087,1998911874,115444457,1448563998,1347637586,354132270,371237678,354263342,371106606,-1993453480,773135142,354227852,-728839028,-82469188,-114915282,-1210283500,-52178688,2081225858,371112963,-1550319826,-1959855616,773135142,354227854,1183378571,547433984,463678998,513879573,497233430,1499158549,1566531162,-2117138657,-183453947,134283791,-971972351,-1072638704,722528528,-15684850,319662592,-1929185522,369929731,-1006488051,1057344517,-16619772,1879963392,-15893747,-16711936,-16711936,-469378048,864005,-1106138098,-200938479,-1810825211,-82661358,-1340912622,261800704,-1023385600,312132234,-1023385600,1997299259,-784823016,1933151211,-772812535,-772812305,-741213713,268429185,-2135666493,-401604673,-1017642024,-338560117,-553394685,1066135505,-489615757,-489561391,-410918191,82509839,-268376191,1066007051,375235,1031982078,1191343418,-215961527,-1020430930,1912680936,-400665862,1594294280,19196099,-930284942,-1380001650,-16467181,-1189805377,-1494024189,-251410572,-260715522,-402550808,-663617481,1961181056,-1074558190,196678914,1957098240,-8551924,-386501569,-462225326,220629699,584381973,264667940,1946608768,436664047,-478871787,351969731,138820416,-89960589,-754667244,-774753312,-1949117984,-478150306,-1946945568,6720218,332727867]},{"sector":6,"length":512,"data":[-397212300,-1168440651,-637331934,-1023322621,351944331,142490439,1049171827,-1014819590,1926904608,1388379658,1510117608,-132767045,52160707,1156105209,-2107215105,1635057663,331417286,-452475137,1988959371,1960512274,207502088,887620471,-12326902,-1595350413,49014785,-389824462,896663610,1962934146,96895792,-401273153,99090520,-970820865,-15482618,247397259,768277,1950301356,1191544834,115930850,-387681281,-1070464335,-1006653245,436651566,-930349035,46121102,-1393390827,354001454,-12844876,-1031599499,113672967,-1392548726,220629038,1566741,196727154,244901888,540804469,1019508217,-1430228448,784592866,331482680,-1785137038,-1366563375,-389868585,-1519190410,1962934146,4622886,-2085961474,-1070396473,8435883,-796152405,1150002597,-90067976,-1031034092,-1070355541,650357419,840326537,113755072,-60166,-1711257974,6291483,167790218,209195366,-445330178,104530356,-579595311,332465722,113708149,5071,332465863,113705215,-60459,1342224616,1476513768,1177160306,-155814905,8776152,-788279413,-411711234,-385835800,11534661,-2097509437,58064701,-2113419389,1962874493,507901677,-1964542721,-12589051,1183459442,771863552,332465723,508696949,113647374,-1962929198,-1189884642,378208257,-1796729905,-396747007,1215495582,638909089,1964393787,1300964927,638355736,-1995418229,-1960443308,1418269269,1435182596,-28014316,-2113840152,1963004286]},{"sector":7,"length":512,"data":[289850904,1828864,1347637586,1476481768,56252763,1976106705,-1023364881,1132230,-1966866512,1586300742,240028178,1451950261,60343045,-796192954,-1189731653,-389873663,728956514,-1189805377,1068498955,527740658,436651566,508690709,1945970664,-19994603,-2130872600,661972287,1946002920,-1336270858,-76168193,1962934146,-485717188,206453522,-1957491337,309759449,-402128152,-1956905101,352501499,-1543502407,228632051,-1070355947,-1410136399,-1425178136,-1319649229,1403712262,1526768616,1594357854,1358839785,1476432104,6720080,-401353309,48824168,-389851136,-93126548,621200942,99090453,1946237952,731366382,1389364161,1510041335,11851779,1912952379,1002765842,1912606486,1002765834,1912605206,-792396286,638201572,1183454501,-1993452288,-99279066,488017454,646655509,617420059,455510318,378285589,-863234787,-1959865202,-82501850,1946303581,1183499076,1364415744,1415762,1599733856,-154968741,-15482618,113703028,-1610607679,-773319723,4623102,1381061461,1610619034,1532975616,786133853,354748102,-10033151,-512491204,918892227,1552815387,-1900006636,704192,-1526691649,-1935301211,-1898410296,136308928,-1896169421,-1961550570,-1911219418,8961752,-1525351233,1499158693,1566531162,788203295,352071423,-402247192,116065035,-402249240,1172505700,-2097151739,1038811346,-402630936,636158707,-402632984,501941324,-402634264,116064995,-402636312,918881340,1284052251]},{"sector":8,"length":512,"data":[84337412,-763166719,1166616064,1434986017,1962281507,1971856900,617122596,1166550655,-2132705248,-757997103,-494221942,205883686,354590766,113091,1031993995,-2096925185,1166739399,592808737,-959892541,-32169466,-1974418597,242584325,108393995,-1996455746,-611578251,-879967346,2062080910,-646817540,1916862083,-1996442110,-1558893042,378082602,1049171244,512431398,512299973,113644840,-973073118,1385222,-419964277,1377122979,-419970165,-2084371621,1450508498,-1961542493,356164048,1929467451,24573762,-1995098973,-1961543658,54928080,-1961549406,72256193,378137299,-420014798,100911243,-763161659,-1592495104,-654896187,-151530957,113698551,-1962797790,-1928141880,-960294282,68493830,113640939,855708962,-1581032503,-645196488,225755147,-150911445,1943546840,868418308,356426715,-768359541,-1560185097,378082626,650319168,639262091,186406283,723350747,50885578,651310026,-484942453,-104797979,267976577,-74982285,-1007492542,-1950135743,-1978322410,-401268450,614597759,-820626667,-1610058477,1178211281,-163548160,-15478266,1431443060,332607115,332209803,-1962933831,-401354986,1516109259,354682614,-1962117633,-1189884642,-397279231,-1990525659,-1978413290,11796550,-1995189853,-971779282,18162438,354958987,244053899,-251456194,354956937,332215947,356005379,-390057277,-1912143999,-787233018,-1543408663,-1022908941,1075131553,991245475,-1340787194,-1342015743,-10491904]}]],[[{"sector":1,"length":512,"data":[102692743,512624398,-372173881,-207355533,-971044955,18076166,587658947,661978901,-32169568,54934208,512432758,-75426510,359862264,-401443187,1049229526,117380402,11539760,-132832862,-1396442685,1963801770,168085252,-536200192,-401902094,-164427879,1232455947,914948364,1049170883,1963398440,641633033,1300243989,-538345450,1053033984,-620096571,-872542092,261808245,-1442816000,-153085380,521065707,331560587,-1418332661,343359104,-955878272,-2146142458,1460031999,-401311814,123667829,343522905,1964653698,-1441091446,786959024,-336186617,-372690023,-437714611,-42276864,375229222,1962934146,1166747292,1569400336,973482770,1008605973,1977250325,1958742794,1942043604,-389510398,244055561,719852850,1976110078,806783424,840861973,1044284181,57933845,-2080458008,1393214,-253186956,-969837826,18162438,354489994,356650635,355606155,1459769832,512630352,-2031610937,1532567547,-75404061,141758456,117375154,-521464528,354825867,-1961547615,-989451272,651309843,-150057845,772160497,-970820587,18162182,427086347,354551494,113912579,331810446,-775933037,-1442745367,127118323,-1949791424,355639806,440764710,638922913,-1591982711,378213674,55121196,13796289,1084343105,1958742805,356426651,1929269992,939968403,-402653163,-1997799929,-986266338,2145615891,510974730,242535422,1947876524,825887,-186515360,-1699997973,6291474,-153085380,1017907947]},{"sector":2,"length":512,"data":[-402295782,-152959503,772705055,641633045,-1952912619,-46798648,-68675869,-971934975,18162182,-1961547103,-1961546730,-1022024130,-385843991,1170604298,367526174,132704508,340101414,375229222,1962934146,-54794105,-1961543007,-485147626,-1056749094,-150941053,1317667190,1357435652,272993062,307596070,184645367,1073837266,1477785251,355602059,-1979928344,-1995099618,722808854,-484412222,-930393726,1476493800,-930380430,355473035,57952578,-1979930904,-1995099618,-2095763434,1392190,512427892,803738930,356688381,846512139,355730945,-956477720,18162438,354489994,355606155,356650635,1459663336,512630352,2028475335,1532567546,11667683,355469055,1084352235,1958742805,356426511,-939714840,1390598,-52369408,722806945,51627270,-1961543162,-2095760362,-896859950,354827915,272972582,307043110,-1993996174,-1993994171,243995221,1625888046,-18880002,-905197429,19741556,14320384,-1979615497,-388823986,-622278517,-400890885,-579731270,354827915,638925473,-1592769143,-1993992900,-919399867,268417731,-973007640,-352251578,651899871,186146183,-388664101,-336920321,1183470418,-1967063549,-1950209312,309759441,-402652999,-939330198,989910402,-1976798262,-80002108,-1991512716,722809374,-1047833903,-1962842377,51718198,354984902,-634693032,355474945,1173595,734256779,-18797878,556173516,-339047659,1317687758,-750106108,64162530,-1017574826,1031993995,-2096925185]},{"sector":3,"length":512,"data":[28903367,541428224,-804498037,-789917216,-1964864808,-1023363370,1364342015,-1950119085,1580942291,1026129420,696188929,268417627,1476418792,-1889877717,-1039973884,-1241295222,-487112192,237750411,41358634,-1007040205,1962196456,-914470900,-189470573,-342686860,-1949071424,-187635518,-1276979061,-401604678,1187443910,1499136273,-191567782,-75037553,-881459445,354827915,408783142,-388877373,-126552962,-1612134517,267927028,-311240565,-194189117,267976577,-544475533,-1075252245,-2110164236,1031077887,638909089,-1961474679,-985742093,16758803,353961530,-22345355,-1599362112,-1968564979,-1057095610,96052394,866513664,702912,-1012619789,373671718,-5177346,1569269443,-985742314,-1430244589,-1526468989,539015332,-218102599,-1178586197,-1410138102,-1947679830,1929022453,-1960946992,521016901,-401278301,1594356853,-385907991,-5180354,-947658894,1300964897,1976110061,8435971,-768360397,1962934146,-1958328812,-235470268,-235426480,1952109067,24461316,-1031034046,-2097106774,-1452064519,-1020950490,-988378834,512503315,-1933372473,-1948741944,-401352914,1586361774,54954514,1451999486,1187400204,1317732625,456574209,39618837,-1996073847,1284244556,-1943092466,-1944860898,-942108984,-2146188026,333029632,-1592535133,-469101615,-1952965772,-1948003880,-971777617,1298950,332338827,-1189884485,-2132279295,-1039234313,-1107249901,1370297305,-387413162,1499395593,784594146,332869259,-1023392118]},{"sector":4,"length":512,"data":[-1979845144,1434984773,243106595,-1997507776,-1228725131,249203456,331522079,-227289030,-1752439855,378082265,-1933372457,-1950314808,-1392462350,-227229686,-41231222,91669306,1947023490,-1965192702,-1607578928,-1574038599,-1084877893,-443935753,-175440502,1006789096,1006793855,1014789128,1010594829,1012691978,1012757528,1012495387,974615552,-1428327438,1575536382,1977879041,1945844435,-939637041,736676587,212948738,-234879553,-376741970,-13703727,-1441805658,1593920744,-16812664,-1933210426,-1899786533,335003357,-1527525750,-401755965,179306801,-402576151,-1930690573,585653424,-387424767,-1147130113,28108819,184510441,-401509130,-1977221042,1931492357,1946762247,4450321,125166602,57999114,-380710914,1331167062,-1328641283,129192736,1991118563,2105681417,158599425,-220017666,-1155651026,48114195,132219083,1952406524,518343,-1058276382,-1336946946,12052488,-1293410128,-385306624,11534509,-1962988311,-338744629,3205127,28377835,-231079756,-80081036,-1431565452,-33523736,-490275129,-18290197,-109774022,-381237250,132710110,49349376,-19600903,-1979632152,1959733963,343165207,1460084230,-230162805,1963417518,47314439,-1009833269,-21960355,1189626032,106389248,-17176546,-1973549281,-15275554,-1746283274,-384126722,240975537,264245066,262934243,256839621,257232766,257560436,540807002,154931571,-1336930956,518238,-348124072,1019382274,1014854176,772109439]},{"sector":5,"length":512,"data":[330893054,1960016,629336,-164757408,-15483898,211456372,-1023385600,359927868,292815676,236227,-126615456,-327871684,1610614426,432640,272367712,54276468,-1607540107,171709689,154928244,1555040373,-385899288,788201067,354227854,455510830,1499158549,1566531162,600639263,787457769,331101824,-1010814463,510922044,594806844,477432124,330932270,-654903284,-1245148591,-400510976,-102563999,-970013863,1292550,788488681,330895102,-1694541335,6291459,-445382480,-389808372,-397410298,-1017577671,1962898152,-1031093253,259391292,1610613658,1946202112,432880,-1698496416,6291465,-1698526525,6291468,-1393390653,-126606276,-335608600,1017917174,-387091420,-169083143,-1073086286,1743259252,1325102080,1015152816,-2112523744,1966735740,5564431,712392748,-1039779282,1176729363,571818,-2113921304,24456764,244038,771756776,354098885,856192905,-1968460864,-5192766,2156739,540809332,708580470,1068500597,1101722441,1967078570,-503205374,548423396,-1018254605,1014965420,1007055457,738359162,1948269600,1950170350,1949056234,1950039270,1949187298,1949973726,1948400858,1948990678,1949252818,1952136398,1952267466,-1022804794,-1014047949,-472786806,-1993940015,1603020311,-1030831358,456574254,341610005,-24381901,-218070855,-1899416667,-1094545703,180289672,-1515870976,244002469,-1993993271,721420814,-425526,-1190955505,213585919,-774296832,-773729823]},{"sector":6,"length":512,"pattern":0,"data":[-1897803295,101616090,136218880,444160,-970928896,-1711274746,-773336637,-773336601,-773336601,-1008217625,-397192623,1515913237,331260249,-523181872,-523181872,101376209,-1262283843,169528576,49771712,-1575764730,-527821891,-1156333920,718738055,-1998358816,-1609319130,-1057090626,1007926946,-959220212,18071046,-32260192,331326144,481297188,-1057095051,-1022195294,505355295,522133023,522067742,-1427628274,331325951,331161227,354105029,84302985,1149831100,-1010814460,-377356368,-143521860,2004351363,1962281714,1959922414,218006250,521069943,1963130498,502956557,309516663,1946403318,-963984627,-686651461,-5193158,1364390770,449642676,-8001448,331155087,247709746,-12326881,-628375157,-774774063,-774774063,-1055665405,-385107566,-661917193,-235421645,-927345781,-2098071808,57828602,-177935742,-791553398,-758054734,-150979399,-151352591,-976976143,-1995105482,1149830748,-1010814460,-41746512,-2097646824,-210551559,1933377154,1694139118,1018227059,11920886,1891221763,-136672489,-1329034271,65533540,13796296,-888995657,-1845439869,-385107055,-897063945,65271698,13796289,375698,-930417674,-997588811,-201878888,28627083,-1070458163,1314017475,1096045388,1329813589,78,0,0,32768,0,0,65280,16776960]},{"sector":7,"length":512,"pattern":0,"data":[0,-215613440,-991363932,-50672643,648808206,-1156332894,-1077996583,1065952789,1128525707,364748838,-1957253718,-1951683088,104539856,74847179,332112678,-1429668180,-23590540,1979240644,-1429959942,-1952078683,-754601534,1221102568,138806054,-235417037,367579563,-1557790720,-1331358274,113153,18540626,1958885978,-1966720498,1976601330,1325344495,-1427838196,124188198,88474406,1174611627,1183393290,16771082,206473510,-1442775112,239503910,23525158,643758083,-32129632,-1113446720,104474133,57873346,-1375773975,-887190746,371374099,-1557740797,56038349,-2114255877,-1325370681,-1947217148,-1900006417,-1077899560,297271424,-930305280,12584646,-1056520214,-1560273664,163119299,-945032448,352355334,-1945712896,-956294144,469798918,1423360,6338731,-945050709,402692102,-1899328512,-942341158,-2146188026,-954824448,333029651,-854337629,-754536174,-912052512,-1899416813,-2012821543,-1996423168,234916374,-1996026337,1577059094,-787231839,6489568,-641784460,1030419,1195836673,-829687070,722845630,66620366,2025851902,-117225209,-46010109,-369198103,-165216644,52823910,52823366,638959110,-150190549,1317676760,1089000196,-1958688629,334156240,1988830914,1220936449,-151530957,195,0,128,0,0,255,65535]},{"sector":8,"length":512,"data":[12011,-661731188,-1698901874,-854739958,-603523551,1047854856,-1274523718,-1272853239,606194945,1951284319,-603535827,652935176,-1173710148,263456931,113713613,67761,208977930,148637382,177912320,567085492,246677682,-1698946611,-930284534,-1064382322,244045966,237699078,243861665,834275683,-855002105,22460961,-853204296,17087009,-853204040,105167393,567092400,-1341771846,-1272853209,-1574843111,1090783584,-796261708,1051861453,567083700,148637430,-1170770433,179570909,1475027405,1006909160,1010332709,741635085,1009349168,-1742375159,-422449013,147371147,410318347,1017905844,-1441696755,567136394,1236989163,-853887990,148881185,1006894824,-1430162395,45404298,-92134963,-2115144435,-1962352401,148808391,-1308368152,-855460854,148880929,-1207343169,567093505,2004091196,1349844796,1654785418,-1189040119,-230227959,705278126,157786817,-1191149121,-1403650048,-536003414,-1999505670,1577091086,-1342153537,1008848129,-1088588545,28311660,-12836403,1738543732,1645644297,1976699401,1976106541,-14948087,-385342790,1841168648,-1090472696,210372967,-1494017309,-1628372065,-1018451,-21042736,-369182743,-889323291,-193672962,-1576443232,113707367,1329793392,158467782,157792845,567087028,1651818506,158336711,113656130,-850130574,1975519777,147374026,179945523,-1096027392,-927004449,147372809,1006839272,-1994755059,-1404878017,1946362344,222079495,-202699916,-2119561808]}]],[[{"sector":1,"length":512,"data":[1913183483,157794015,-1190616129,-1510801392,-995901389,147235592,145859392,-385295198,-1960903116,-2096586474,-355397694,-355341615,-913511727,-628174589,35031342,-853101567,16824865,567089844,857725836,159949760,1074367139,-1962314333,-1173789938,666110311,-922869299,1963459002,-1898213859,-1126986045,12058688,12079104,-1269804287,8436250,-1161092659,162793241,-907468339,1564377853,175448064,1572814768,768256,-1548047629,-853887991,-1173244895,567083100,1853145342,-1190550338,1558708232,-1308445696,-853422816,244001,-1962914072,-1962295242,-402013634,548536397,567091661,163323531,712301323,95536011,254077139,-1308585240,-1977496275,-400612157,766640263,-947248691,1342564560,1919171584,-396088318,834273395,-855002105,-351095775,-1409108846,567136394,868481506,-1948742720,2144744,-674109743,4384917,1038652309,1348352,280620770,518171,48808843,1355123456,32035978,-225814016,-355407152,-355407152,-1979710744,266502358,11600500,-853357058,707840640,-855460655,-1072512223,314869287,-997840960,-1962224445,-2046642992,818053846,-695590451,-852442494,330613537,397673195,-855614278,1975582241,127122160,-1946230807,-1274502890,-1172189926,263454812,-1073077811,1963430842,-1547684889,2141388925,1789083648,6076928,157486731,567093172,915127267,1017907361,-1263373286,-841971198,-336338399,7126752,-1542884417,-2113300289,58007612,-1543479874,-218102343]},{"sector":2,"length":512,"data":[1694943141,-1174405111,448006563,297017805,-855614278,1958742561,1698073361,-385928439,-239403267,-855002105,-1531198687,158646025,-1190553410,1017905163,-1979550401,-498882041,158572789,91602954,-32939872,-1559872832,-1106217719,-1530984076,768265,-843405581,-1167428601,263457187,113648077,-1962931871,-1274502890,857853210,163881920,-1559640413,-1767700076,-1314701303,161724937,157486731,567093172,28327651,157353606,343261194,-1274448966,-1172189930,-1073084484,113713013,67969,-1274448966,169987368,-1161136960,280234355,330572237,-1564859955,-855002105,-12195551,-1559644255,1941571975,-854543351,1694957345,-1172655095,567085475,535368372,144947967,28911540,-484324096,172597255,125114940,113642928,-1023407908,321708,-1018234252,-76275652,-143377092,-210490308,-1161623236,162793520,28582349,-1581047347,251988129,66069504,-1583141182,-1900006648,-96671272,521019131,7465042,-1572797350,-990509220,-1101630080,-990509260,-1107069951,-1548941511,-1548941493,-410974387,-8191745,-1090292212,-1114963956,-679016761,567085492,-855163206,123779617,567085492,567083444,201337576,1006679072,-32738199,1953643716,1019543046,-1965132447,534219716,125287119,567085492,-855158086,520269857,120699599,-855002032,-708618207,-318315770,-150539770,336005126,1769101063,1881171316,1702129522,1311011939,1914729583,2036621669,1952531492,1699947617,1394895717,1869898597,1869488242]},{"sector":3,"length":512,"pattern":0,"data":[1868963956,610561653,1953067607,1634082917,611609717,1802725700,1684095524,1836016416,1684955501,544370464,1701603686,1835101728,604638565,1684104562,1769109284,1696605300,1919906418,1768453920,1998611820,1769236850,1864394606,1919164526,543520361,604638529,1919902273,1377840244,2037544037,1732845612,1701998446,220471359,1818838538,1818304613,1633906540,1852795252,1650553888,1646290284,1176790113,543517801,544501614,1853189990,1850287204,1717990771,1701405545,1679848558,543912809,1667330163,604638565,1701996868,1919906915,1969627257,168651884,1818838564,1633886309,1953459822,543515168,1768976227,1864393829,544175214,1702065257,168650348,1766203428,1932027244,1868767273,1684367728,1869762596,1835102823,1869575200,1734959648,544175136,544500070,1830841961,1919905125,1867392121,1668641568,1919164520,610629225,1769108563,1629513067,2036689696,1701345056,1701978222,544826465,539893806,220471342,1919243274,1634625901,1646290292,1751348321,1651468832,794372128,541010254,1229194276,117673298,1095648594,76957005,1095910662,76694867,1348031493,67413829,1447904594,1329792257,82401616,1430343686,102974803,17472000,1330926913,1128618053,5521730,0,0,0,0,0,0,0,0,0,0,0,218202113]},{"sector":4,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168624128,543516756,541934153,1936876880,1818324591,1836008224,1702131056,1329864818,1443499347,1769173605,824209007,540028974,1126777640,1920561263,1952999273,1296189728,1919894304,959520880,168636728,1128877092,1163087429,1095573572,1230128468,757091393,1330794528,1296126535]},{"sector":5,"length":512,"data":[1330794528,1414677840,1179590745,1296189728,1327520084,1112088646,808928845,168637766,809578810,808928321,926496560,909719090,926430775,875573812,875705401,875573828,927348275,842020658,858862384,859321145,809775153,875835969,876164163,222511667,1093745162,826687792,892612656,859129140,875836724,1144270898,875901236,842347828,825506100,808600372,808600626,842346549,926172724,825504309,808600628,942747701,809110029,809644101,892350530,893793330,892679216,892613938,875573817,842413126,876164144,1178874930,973737281,808464432,808464432,168636464,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,875770933,858797382,973737272,942686513,808469817,876951861,909128752,825503797,859125045,1144075572,808465968,1093677889,825504048,875902261,892618292,892614709,842281780,875901236,168637751,809578810,809780024,808464432,808464432,808464432,808464432,808464432,808464432,808464432,808464432,808464432,808464432,808464432,808464432,942747696,221264176,842021386,927283248,825241648,825246768,825887245,1094791233,808464435,893464644,909653556,875573813,875705401,892351044,926234160,909326130,910505542,843265585,909325360,927217222,926234416,1094006324,973737272,1093681457,808469570,808596023,1177826356,1144009525,909459760,842478902,959853367]},{"sector":6,"length":512,"data":[-1171971400,567083469,-759553104,-1943941887,405060296,-355269455,-1270689789,-1960719066,364036034,-1414812676,370975659,-1206509405,446890240,371106582,-1030825330,-1275035462,-954086118,32774,6078221,-2002124624,548409157,-218100807,96961450,-218100807,-2111893846,536894782,113641588,-402581999,-84146151,-661731188,-795950962,-82468164,281874356,373622470,1208403463,113706006,4200006,1948843138,1174849296,-973045738,253117702,373819078,-399659000,870842617,8841216,749517940,1007645249,-804554983,781424864,45979647,-437671701,342997506,-1900411925,-1899459564,-1127182632,162796962,-1897193011,-1095103820,-1105081067,1321145792,1631366166,2050754162,-536608137,1947024554,1948400662,1965505540,-1394570520,1947024554,1975794182,-1092949002,229643854,-1342142232,8644874,773125822,8120492,-143400752,452803,1965833346,-1404025331,-76275652,-143390404,1015175246,79282957,31582208,79297163,31057920,1375883752,719902467,5236736,1509969128,-678692309,-352314136,-388330327,984612885,-1962922776,-1945310250,518338,518535856,-1965585664,190662,-527777142,-771444399,48781800,616860160,663749647,1344749588,-1837161390,567083700,-1329375142,-386864352,-69009415,-1308314941,1107998212,-570092541,1242081795,-1308070398,973386244,-184305911,-1308066296,1627389956,2013528326,-1307902457,-1308016380,-1308315132,-1305572604,570869525,-402620394,1380975047]},{"sector":7,"length":512,"data":[-1962987800,1951153156,571902743,21162006,79238514,18475008,727370379,-1017626166,309574,-1962865944,-1017619766,1962869480,571377930,-3938282,-1962839575,-796152329,780911533,243996082,515839558,-2299882,-225716082,1459559144,-385918744,-391315627,1230700336,-963962252,1158054958,1376547862,-411760728,786967984,-387716097,-722796542,-1949922479,-1950209038,65065432,3389891,585680939,-1395946497,2134671140,540804212,783286899,-486604568,-1993975314,638983734,371203724,-385981463,1347551031,17164370,1577118184,-1906574709,1505791707,-1021575621,55117682,-34012175,-213277631,283689892,1380995583,1593882600,-650422009,-485077314,736523010,1473873867,-1956731661,-350288181,-17962792,-397258671,1598750868,-886351609,-1407824194,1979572398,-880323644,-1951993001,1968922571,1458065160,-303544322,-340859907,-33691425,434688563,-1971817984,-397850928,-1720582128,-489591325,-489561391,-804592943,76213227,-2056114132,1945438780,744432768,1913273351,-183485437,-37361469,1929372648,178443,-1996506392,-1007140073,658244746,574359156,-1007091084,-1404641142,578030908,91604026,-495639494,1124567110,1320938987,-3807210,-343803021,125048398,1979550696,-2125544702,-1961472530,-33822514,-401281602,-1377174171,-43390724,1006716042,-1189645229,1558708228,-2100982785,-713737668,79251026,-11671552,76202840,-1190853697,-1359871996,1179042165,-645144111,364034047,1966750850]},{"sector":8,"length":512,"data":[1138420658,-398178989,123731860,-1961472322,-1012599861,363998859,1358932712,-48568238,123725173,-386049816,-2031551095,92940029,-1325572120,-42997714,-1174404423,2062024704,-387937792,-528023794,-225834638,-287124342,1006659816,1008825352,1008235647,1011840045,1012036621,-1338805216,-46405624,-469977624,-1328813089,-47192056,1946352002,-1966997834,-386561322,-1226048354,1946352002,78729483,173663954,361244374,-337067193,-398376449,-947127019,-2055928028,-369332248,-672596106,-347123713,-3086093,-1258528791,-1021195007,373884614,336969229,-1256873285,1208912384,1225664534,34173718,-971618034,1460486,-2113850648,1460542,770180468,-388174852,1575550145,-64821247,-1558857055,-1197402606,370451221,371918535,1290338303,371958021,1064632124,1962933378,-1731951102,-472786805,242714507,-2030272280,-58988348,1994930864,404130812,-61609962,1793605040,228559868,529407508,395041419,654767647,108330774,-369346328,-1031078972,-369346584,1609169852,-70391553,344651892,-2110485946,1484000766,-29824954,1948319362,336969551,-1190719854,-1343094770,-922010507,1330579061,-28996818,-1963191064,-66066236,519837928,-1952609017,-401110271,1911094245,-398806789,870906873,-75044613,79235956,-42407936,-1979847192,1119404823,7530834,1967585922,8579317,-756535888,-83040005,872112104,-1139373093,222080277,-58563980,-1084066803,549000241,-234418688,-1974045265,266436841,-754974280]}]],[[{"sector":1,"length":512,"data":[1975748032,198708015,281409232,-801963403,-335864088,-391303476,-997524595,-1325692696,-75241411,1128470411,-386178840,-2098660475,-1008540933,-398048072,1793589262,-389772549,-289473691,-42473196,364648073,1178777795,834594283,1095956,364648075,-489575122,-1959918478,-1073013180,988285812,-389772549,1055456053,-1008344325,-402581528,-773260621,113404,79234674,-56236032,374085257,-939714072,1460742,-1123123200,857604373,-942108992,-218100730,235834375,67553024,-1945634304,-100661746,9176775,244058094,-1138818930,1532499362,1566399065,117923678,-1440314601,-1137246443,-1204355307,-1170800875,-1306620395,837340949,-36378374,-998005269,-2029524218,5177324,-1993413497,773171750,364254860,-728839028,102086332,1431721758,1364347980,521556051,363472523,364254862,364512911,364381839,-18579368,-1995064157,504736294,-1139335673,857609634,-942108992,-771716090,-1911649279,-50651392,374083327,-1631677323,1242467094,101376790,-964477756,-119364604,-105715705,-369273368,79296772,-71440384,-319015448,-369485848,79296924,-72488960,178514,-386160920,1519582238,780911598,-1729620552,1027375865,-398003339,-1197212637,-1172928235,-437730539,-1076153345,2095584926,-1961134855,-401229778,361364487,-2097003127,-2092759609,-428536837,-380616008,512360040,-880077238,-1631644957,-987357674,80184117,-12269916,536077004,374081223,-1444347903,-1207529730,-2118167019,1017818112]},{"sector":2,"length":512,"data":[-2114292467,-1962900753,-2136856889,1556045312,687978496,28320205,-855610177,236914209,6077959,112852619,-1012534528,6635137,-143309496,6766210,113689432,-352250351,285656581,780861462,-303557192,-398691080,-437716109,1346598136,28957323,-86906880,309586,1392167656,-402652231,1005124291,1523223547,-164749480,-15331066,634193012,650969835,1913969594,-1581015725,12195256,-6756351,-768407179,-1880590613,510751999,448059534,-1172364851,-1070399396,-1560248925,116785279,1962874385,-854608858,1778829089,167772416,-955091520,16804358,-18176,567093172,363204233,345094851,-1258817815,-31339242,346208960,113767028,65642,363204235,113715380,65642,-855614278,-1161819615,-730524482,1555697844,-1021195008,370677385,-166392646,-15331066,-1064386956,-1273617222,-1272853222,6076943,-1073077811,113682293,-956301188,27142,-1173048318,-315424676,-401070914,977010734,1156118901,-1245148672,-398859520,-125173701,-1979697432,404620248,-386168042,686293035,-46421504,-276102538,-806619934,405077633,567085429,208929084,-1407834946,74717756,74825738,363212425,1108163,199809162,-790376448,-790376221,-1010627869,-385888792,-143394394,-384501574,954791711,1380995576,-386267416,-1956709910,532713210,32000345,-1494007552,-397486732,-622266469,-136845065,-139269972,-386412312,642774989,-1511520886,-138155785,-386416408,-397936759,-1070401760,780914923]},{"sector":3,"length":512,"data":[448730552,1175358230,-773205738,-132323095,370284169,-1995041629,-401205746,-102236101,369555446,1979711254,-987839502,-1407839690,305563935,1508397078,372673527,1962281750,914968069,117315094,-1017637340,-1576980504,-396683732,-1041760189,918888182,283645458,1323835383,604423927,767492118,-1189040106,-1426915305,-392165946,11861936,19191947,-1978259550,-773598781,2143519203,-1994945778,-1089067754,1476335149,370327042,-1525278017,606505637,-1327234538,-1731974642,-150476655,371537547,-1326026520,-152311799,-384422466,1709766245,618695423,371761671,-321852208,-997528368,698484516,-789786602,-1997745940,-1021957594,-401351237,82313769,-401937662,-152305712,1911078962,-1439911936,371656438,-401902081,367787812,-1342176280,434678316,-388986113,-259326188,-1979710744,-790590782,-790048536,-387395352,-997588990,-1878782172,658510887,-236403798,1963605246,-574897184,30402579,-1342067992,-571954644,-796157698,733012106,75097098,-587846224,-339440982,4778172,-1599460176,1472075305,658407950,57999638,-1743886402,-268177405,-388971611,-388962096,2008941348,619506446,-958010617,18228998,-1342171672,698395180,-387585258,-538378464,654755583,283836694,-335604760,654755342,166199574,-5510913,-2102776656,51784254,1947609248,-958712927,51784454,1197147590,125109820,371867266,-1974176768,1979792592,1946631251,1979923535,1963342852,-1407284467,721864213,1119355414,-92099760]},{"sector":4,"length":512,"data":[-1341951228,-92100053,-2146602234,829686242,363863555,-1421261640,169224864,1007252672,-401771518,-637272284,-1985323600,-1021962210,-391500880,-286523688,363077259,-346537288,-1373764676,1230223381,-571945493,100899069,-1970137582,-20584250,-1058422134,-37033730,-974598006,66095869,-350875114,-402184986,749797122,-373280086,-1070399750,-1325470744,1538304556,-958712918,51784454,-385899287,749797360,-373280086,113704656,-352315865,654755333,119800086,-1325511703,-1195136436,-374657972,96927320,119849779,32034954,-790441730,182636770,-28186430,371867266,-972524541,18228998,-1325473303,681617964,-385407978,96992823,-1144825788,585634765,708739584,225706774,-164871496,-15325434,1471152756,-21501525,-1325408024,96971308,-389854141,-796197460,65065368,-1559786536,-1031137755,334347203,184543464,1007449280,851341828,-30218048,-369196567,-38011476,-3151853,-1452146116,141755964,74711464,-1423160136,1107192041,1145848652,1095516748,1145586504,1095254600,1146635096,1398293080,1397768784,1162429513,1397965651,-2125249453,-2129895150,-2129895150,-2129873390,-2129873390,-2129923054,1879831570,1762426387,-1878229485,-1878236910,-1878236910,-1878215150,-1878215150,-1878264814,1879831570,1762426387,-2079556077,-2079563502,-2079563502,-2079541742,-2079541742,-2079591406,1879831570,1762426387,-1978892781,-1978900206,-1978900206,-1978878446,-1978878446,-1978928110,1879831570,1762426387,-1844675053]},{"sector":5,"length":512,"data":[-1844682478,-1844682478,-1844660718,-1844660718,-1844710382,-955517934,-989115373,-2029179118,-2029231854,-2029231854,-2029210094,-2029210094,-2029259758,-955517934,-938783725,-1928515822,-1928568558,-1928568558,-1928546798,-1928546798,-1928596462,-955517934,-1693758445,-1794298094,-1794350830,-1794350830,-1794329070,-1794329070,-1794378734,-955517934,-1542763501,-452120814,-452162798,-452162798,-452162798,-452162798,-452162798,-452162798,-452162798,-888370414,-888370414,-888370414,-888370414,-888370414,-888370414,-888370414,-888370414,1879870226,1879870227,1879870227,1879870227,1879870227,1879870227,1879870227,1879870227,1762429715,1762429715,1762429715,1762429715,1762429715,1762429715,1762429715,1762429715,2131528467,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,2131500306,554442002,504187411,-133346797,-183678446,17648146,269306387,-99792365,-217232878,588073490,453855763,319638035,369969683,135088659,84757011,168643091,51202579,870931,779264,779264,779264,-1223934464,-1223903725,-1089685997,-1089685997,-1743997421,-1744019182,-1744019182,-1743997422,-1743997422,739020562,-1743998701,1762434834,1527557139,-1089655021,-1089639149,-1089639149,-1089639149,-1089639149,-1089639149,-1089639149,-1425183469,-1039323374,-1492308206,-1156839406,1947021075,1812803347,-1861406957,621621011,-1743966445]},{"sector":6,"length":512,"data":[-1743947246,-1743947246,-1743941870,1292734226,1359818515,-1173541101,-1106432238,-1223872750,-1223953389,-1358171117,-1290981613,906833683,973942547,-1743966445,-1676857581,-1743966445,-1743939054,-1743939054,-1743939054,-1743939054,-1743939054,-1743939054,-1743939054,-1743939054,-1743937262,-1743937262,-1743937262,-1743937262,-1743937262,-1743937262,-1743937262,2131599634,2131500306,-2012472046,-2012475885,789393171,688697619,-1743998701,-1744048366,2131488530,2131500306,-2012472046,-2012369133,-401757421,-401754606,-351534318,-284348654,864018,912128,912128,919552,-1592915968,-1643366894,2131506706,-1022616302,-787665133,-787629550,-787629550,-787629550,-787629550,-787629550,-787629550,-787629550,1192081938,1108167187,1041058323,-49460717,-552777198,-502529262,1628177170,1695286035,-1492385005,218979602,218979603,420218899,-552777197,-502405614,1628300818,1695409683,839771667,2131448339,-2096358126,2131448339,-737455597,-1223872750,864018,926976,-1374804736,-1509085422,-1274204397,-1408422126,-1324536045,-1458753774,864019,933376,1141784064,-1002159678,1405305921,1112785493,-766551870,1312936527,-800242748,1104564045,1094828353,-851361340,1137918273,1137462337,1279514434,-1001634877,1137265731,1296286541,1296286288,1464063824,-1052687164,1154695492,1229243205,-1017952810,1238649928,1238780228,1238127949,1313456718,-1018279465,1238650441,1238324302,1255425362,-1035056447,1112195658,1480805061]},{"sector":7,"length":512,"data":[1255819994,-985183545,1279970378,-800240955,1255820874,1347077456,1255164623,1313526606,1255099087,1212239059,-750498618,1287734604,1330434885,1330432835,1330430532,1330435908,1330434127,1289375823,1313886031,1448037850,1448037826,-866824745,1321682254,1330565199,1414877140,1414877122,-800108329,-967815344,-934062768,1213420880,-868003130,1389511506,1390039109,-632401851,1389643090,1330826319,1212240850,-767470650,-1035910317,-683588781,1405896787,1414779464,-1001106493,1405703251,1405243220,1423396692,1473532741,1490307393,1489455171,1406419276,1061144389,-1911321665,2081650963,-1558994925,-1793865197,-1877835501,-1978498030,-2028826094,-1793946350,-904677614,1477664275,-619490029,-686633454,-887954158,-1491949806,219352338,-904695789,-1206537197,-1307199979,1113080085,1146635096,1112560472,1145656144,1163084873,1129534291,1347438931,67,0,1146507008,4801870,1514622464,1090519122,1342177347,1124073541,89,0,1431719424,4801616,1313624064,1308622938,1342177345,1308622927,1342836035,1919381362,1948282209,1768780389,1702125934,1869488228,1818324338,168655212,1818838564,1869488229,1868963956,224685685,1867392010,1869574688,1852383341,1936286752,1768169579,1952671090,226062959,1850287114,1717990771,1701405545,1931506798,1701011824,544108320,1802725732,1210321421,543453793,1802725700,1920091424,168653423,1159749156,1919906418,-2011133427,1869771333,1852383346]},{"sector":8,"length":512,"pattern":-151587082,"data":[1480935456,1818846752,604638565,542655816,1701603686,1851876128,544501614,1998611810,1953786226,168652389,692267044,2037411651,1751607666,1112088692,1866670157,824209522,540096569,1162037580,1145393998,1413565728,1095324229,539828300,1196380752,541933906,1347375696,1498698309,541478688,5063241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5898240,0,0,0,16777216,22020096,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4196096,102632708,-853887969,-846520543,1555703988,-1893610240,-1275039738,-853422832,47168032,1224697065,1329813573,1920091469,1763734127,1162354798,1768300632,757949804,1986948963,1769173605,1629515375,1953656674,1176790117,543517801,544501614,1853189990,1681990756,1936028260,1970217075,1718558836,1851879968,757949799,1986948963,1769173605,1629515375,1953656674,1143235685,543912809,1701996900,1919906915,1969627257,-165385108]}]],[[{"sector":1,"length":512,"pattern":-151587082,"data":[-1274950470,-1272853239,-1977496276,10021061,-1612170576,-389969408,984613006,-1979673112,8710342,-1947717968,-389903872,-575012742,-855002111,-1173703647,567083504,855765694,-1278069815,3205178,-326491276,1946167784,-1278440940,2156590,-192279692,401083827,-1979550720,-852642604,1975519777,-1172255486,162791869,550314445,1912610024,-1978174222,1304800,181732466,1015210122,-1408928755,-613039302,-1966866676,1947024388,1915759865,-183878411,-1018761102,-997848364,-399495155,-997588990,45371538,-1839717939,1225395651,1818326638,1948279913,610626921,1920103747,544501349,1701669236,544434464,1158286628,1919251566,2003136032,1835627552,606091877,-167772148]},{"sector":2,"length":512,"data":[-1274949958,-1272853239,-1977496278,10152134,-1578619472,-389903872,766509200,-2130667544,-2096665367,57828601,-1973098109,8054977,-1274945606,-1272853239,32684554,-188866099,222069249,1139290740,-386627072,1005060140,-388724224,870842404,124565760,1947024514,-161173495,-389510172,-997588958,-939327308,567094196,192266250,1017913549,1008563247,-1172736979,162791871,550314445,1912606440,-387937550,74579975,-527824171,738495171,1022980656,-193792758,181715782,806208646,190512,1351795850,567083700,230920792,1986939146,1684630625,1952539680,1967334501,1852142194,1633951860,1763730804,220471411,1953383690,1847620197,1679849317,979727457,795680,910570496,1110979653,944060483,168636981,809578810,808990257,808596016,1128347696,808731188,1127428144,842285624,843334466,1128345649,808793904,843334466,860045616,927347267,860107060,927216195,221589556,1093745162,842543408,959524912,1178747202,876753200,1145256240,1145254194,944058418,808469808,843461175,809845048,925907013,842477616,893662256,1094205744,910372933,825887245,959524929,1127231555,809580595,860041780,1177696048,809710393,926238273,875841074,1144210230,943796276,808731446,858796868,808994096,942682162,1110721345,973737281,825246001,808465986,808792633,842019906,825377859,842610741,1144009539,959725872,909591862,1127625014,875968822,875966514,876032310,875705654]},{"sector":3,"length":512,"data":[168654315,1952539987,543517812,1886220099,1919251573,1869762592,1952675172,808984691,1092630072,1835365235,1919249506,1919243808,1852795251,841888288,1124732212,1920561263,1952999273,926495008,808987705,540096556,1394637154,1953784165,1126196588,1970302319,544367988,1685025360,1937007477,1850286124,168636003,-1138488819,45752453,-855002111,7184417,-1155899230,126484581,167846376,-1576831808,-1975320484,1952070663,17885187,1125757858,1513883530,1480329076,-1571980,433365504,-1174346520,263454812,1052451277,1958742553,10545411,-400968774,-726007646,10283033,8128198,1778829056,-956039168,18611974,545700636,442572425,537069255,12263557,-182548224,1545505049,2099153178,512314138,512432763,512294918,78649950,840590754,443916992,-400918878,440139944,-5235084,-400925790,1537214125,1979661338,59500547,192166716,125046076,99292336,839742441,545635520,-352320792,-390023730,2028472246,442146823,1047792188,-529262020,-352295960,421968883,162847367,550314445,1017967243,1378054944,6142786,-67106631,-91491445,-678714125,-1269113205,-1155412714,-1057089268,263311988,-1161616947,-1598357403,506137,-1946973188,-1952123910,-1008825385,-76275668,74719276,-210628548,-350656837,-373192025,915144575,-25093121,393550849,-695512750,567089844,-1275044678,1495387412,-1342096294,-1408601062,537001601,29229941,-13203172,442147355,-655863357,-873967104]},{"sector":4,"length":512,"data":[78666496,1098172218,1031063098,447807920,-1384855750,1959148121,973123807,978285767,-162171706,464585153,-963995788,380749626,19173237,-2014788342,-1014343418,-1073561598,-1072906238,2011808266,-1040819962,1947644168,-1912358536,-969277264,-952492428,61870196,-898316758,-628650827,-970325072,-1040793365,-2024639228,-35290918,-952493642,-947238540,125108796,-1040836938,-1975749631,168176834,-166103613,343148737,35964298,-1609825740,-947197814,-989200092,115468633,19187594,-989150942,-1979315736,46138051,180355776,-924231230,-1977764346,-17438258,1008360352,1964355884,31975668,880040764,1534330172,611582524,544473916,477365308,1407762482,85887744,18778394,119442202,52332826,-1227519462,-1010398719,28567634,-1010398630,-1342067480,2942977,1008360352,1964552541,26994856,436543115,436018825,436674187,436149897,11982218,-389822838,742130049,-1796500620,12276629,85887232,119441690,1537235738,1948990490,1949121545,1361817861,-2125461269,-402651955,20709717,-1008139403,1962949632,13297923,58008124,1006690025,1022981159,1964290307,29751072,1946267904,-1312650728,1946369027,1946496037,-1312227798,-32345084,-1325042488,-32118526,1964026005,-349172488,279483673,269283189,-1466625813,216429952,-1794643072,-579501912,1486209036,95497532,-420949132,1965767680,-8197885,-109826756,-1476348523,1959841808,-707726021,-707735344,-707735344,-142553728,-15071482]},{"sector":5,"length":512,"data":[-1960937985,-400947938,359989272,-2139101824,-620019507,-444593291,117277191,-847248523,-1014316224,-1010615400,-76347723,-931999536,-991181314,1965898840,31127298,-384170730,-1315569772,1963501574,-1794634735,436674185,-1322566568,-385649403,1693056892,-1595372803,-986047910,-796253263,57999542,-402639128,-1784741829,-1473924706,-1461750782,1965469956,-1634361383,222085770,-831248463,-1610337816,-1073079709,-964033163,-1610340888,-796255654,-352318744,-48305953,-1368013510,-48830269,-126499526,989663208,1542550725,-385911319,1537212448,1520485146,1948269594,1963539460,-51189516,378270699,28318199,-384148574,-504824604,1948531967,442213101,2067537932,1631382899,-1075248270,1933196288,1915763938,442219486,-402585658,-1974796157,-1157123833,1748762624,854131573,-943587840,169869574,20351770,-16479712,1008730374,-385650118,808254607,-472788085,-637279279,-796204079,-637337418,-646590978,-1161569657,-838985206,1118630539,171716652,926680690,657199987,-472783919,-472783919,-838936574,-628628875,-62002749,1023365096,-193660659,1962490684,202027503,1918975008,1937456360,436911076,126353589,-398211586,809303084,537661042,141785916,-361612740,-428646084,-980760438,169478562,-1010726208,-1962945816,1976106693,436903963,11627580,1947860154,-1167967197,477370875,28407612,-1070459276,1968425214,2091011,1959168603,11986947,-1021682782,126540423,260620542,57942193,-1325677847]},{"sector":6,"length":512,"data":[-1142297851,260708874,-1969339489,124435207,11666358,997488700,1815872182,78787956,796158012,11666614,1007120059,-1239124877,1953512451,1969830929,-1979272522,1953709249,1019412142,78824292,1933361546,-1023477900,-1966906820,309697,-218395652,1977584558,46238449,852527810,1684194240,1935958371,797599075,436910659,1946219752,-1971309332,126503880,-1053130700,-973208461,-712325634,-637337418,-1975314549,-104461630,-628634764,-980758293,1299514172,-2146467765,-1961250118,121285874,1246446453,-210383362,444274315,-970800502,225755390,435494539,1374214699,1946267901,2099153812,180849178,1962979523,1579060104,1263225626,442375817,126402610,444407433,260066243,1545505664,180849178,-400657213,275971948,50332858,168266458,1138848960,-1019013237,911443,-11237026,387267,442242697,436838595,512428036,-796255650,-634715978,442375817,512481927,-633660831,485032818,163271418,-32536038,-67062335,-91491445,-678714125,79027851,260627079,1976434243,-2000669959,-1950131705,121285874,-1639759201,-838929291,-1144786571,512294912,-5236231,-1575355486,11934204,1008360096,-2147257823,-672661042,1021276925,-402295494,132905504,-956907510,-1597017087,-1073079690,-1142357132,-12982019,343215025,435492491,1124140998,512300936,-2008868359,-39786185,-1946555671,-1994787554,-400951522,57933725,-1141285655,126491145,36441265,-529340278,-596441796,738691651,46697057]},{"sector":7,"length":512,"data":[46138048,46465729,402176960,11980938,394975747,-2026403261,-1966735654,1124567757,510967818,-1784682102,436976286,1962885352,-1979664874,-20775211,-1613102142,-922837355,212984437,-1963361559,931808023,-2029548989,-1176240166,-1595373047,13023737,3983242,1088947061,1946231808,179875850,5302467,-1342136343,-389870928,-1662451642,1019709952,-1977453568,1958742723,-389576138,-1072955358,-1979699736,-556705343,-690945624,-2093163404,1844041844,435920896,-402651672,-471138081,-1056308956,132696202,616925696,-1010628040,11882835,1493173224,938001243,442802176,-791620144,-791620144,-1155898206,268311141,130475893,442809092,130418570,54430464,-1962571744,1394237726,537069199,-1986116705,-1021681378,435488511,442580619,1631488426,-1252932838,-346860928,1085624608,512447314,-947250685,292930314,436280971,158648074,91539454,-1997987919,51809272,18778906,180783642,-1976994622,-4396862,-1209481590,-389838081,-947191890,-973676847,1960235392,-10033147,-1612183829,-10360577,-1017554341,-812989558,-402606767,-1973813424,-153169471,-690913083,57934005,-335593496,1397903839,-930479947,-1962986520,612414913,1946565831,1958749194,1958755527,-1947694397,-1961231074,-350617834,-115480436,1023357113,-1256950784,1946369104,1007072538,-385649404,347145260,-1963462935,-18290491,-1039482486,-1962955031,-373159227,-320274726,-538422536,347692024,973385862,978089159,-1337428794,1959213569]},{"sector":8,"length":512,"data":[1959148098,973123646,976057543,-1976863546,-1312408889,1009546518,-402426877,-1014302700,225755146,-1014310265,-947208182,31982452,177254648,-24581694,-952444281,28378484,-369595928,-2036336773,-528068384,1509459688,326369596,-889322708,-1039480066,-478866255,135054730,-1963042327,-27989819,-1610700055,-2041519994,-128063264,-948633284,436412043,-1022703734,-1149952335,436280971,-1629452712,1265942538,427084030,762628350,57985278,-1341932823,-1606489091,19143157,29044852,-1948612864,-1625688802,-556672509,-1982410338,-2028341986,-335761190,-1948612836,-1978009314,-1312617785,-2010549214,-1639735529,-1983694968,-1340476130,-31397634,468239242,-389575938,-1061814762,-1963075863,-402345496,397539067,-1963540759,-402542104,-2135820561,436409995,-1039481206,-628682123,436280971,-2013723672,-1627032102,-1643984512,-1979660823,-335628856,-1245148668,-1662496266,1008382455,1019311105,1947644164,3955131,19142260,-556718732,-788413962,-1977846570,184034497,-43980350,605682592,-389740031,-1047855786,-1039517660,184425193,-45553467,941932938,-1039482868,-1963115031,1375122888,-1309193496,180521492,-1979157056,1946369222,1963080708,-528048265,-387938736,-2040989905,19177184,-1978008670,-393811002,179371274,-1963129367,1372632520,-1594420504,742136411,-445266294,-150607790,347144748,-1039480066,-1973798283,-2137040442,1369309901,-1962978583,-402542104,-2135820789,-2130933016,-444594995,617057021,-528048383]}]],[[{"sector":1,"length":512,"data":[182486608,-54990651,-1629452712,149488501,-50402819,-1611289879,-2041519994,-155850528,829686076,37491889,71101044,54322804,-897579403,-2134212544,-2081882192,-528066308,171451550,-1595372862,-1073079812,41207178,954857252,442212605,578038844,-1629452712,-381892354,-391118220,-1946397208,-1961230050,1108997398,-1982190782,-384171746,-2040988524,1005100768,-58005252,-1309259032,1963015188,-58791549,1356891807,585687174,1946500344,1947024412,1950039103,-164829125,-1325319079,-1972734700,-385997627,1441397766,435986684,209043466,-1629452712,-2036398068,-528068384,1022881000,1010136077,1009873979,-402426580,-974391331,435494539,444276361,512481927,-947250563,343196426,-1627322426,394829379,-2002893921,47927,444407433,-1629452712,-386159127,-1125581910,-1325318923,-1960217324,-1961230050,-1625688810,-635724222,436280969,-1946425624,-1978006754,1975716551,18778894,-153163750,531694964,-1007388951,1022723816,1964290305,52333555,180849178,-1961855549,-1172700898,-635764733,-860879499,-1325706775,-78845747,-386161943,347207003,963969340,116858545,-58877,27340661,4209946,628301745,-388966262,-388962096,535353356,669537275,-478127115,-790376441,1021563107,1007252480,-1324583935,-200939244,-1014310390,-1308898583,50788126,1979711258,436314604,138223537,182612736,-373289789,-393544990,350749105,-386485772,-1464468845,-386004247,71103715,-1049289551,-1031133515,-1073561598]},{"sector":2,"length":512,"data":[-989151230,-386221591,12186827,1962949775,-71309053,54286517,-1024916619,1007138299,-1311280124,-208017132,-400923742,45151889,-1594573848,742136411,1964663712,1304581,37546475,512429429,-2137056767,-1986101045,169476382,-385649472,-1242957121,1960512506,1963392517,117359386,-1070458250,-386736408,440202068,115884148,-1074826503,-1480713719,-1979665127,-205390323,-1089178458,-1380050423,-32667111,1973875649,1980169937,-20190438,1964668430,1973470149,-31149798,-1576765240,-373089675,78770955,-980746315,-17167384,-940214839,18611974,-1560563684,1923226224,444578586,443031177,-1994686533,-1155893474,512294912,512301689,12261877,1813940481,6076954,567087028,8128198,1778829056,-1576796160,283646566,545635073,260703413,-794934369,-804031791,-385649711,126484621,1124282600,-344601090,-774839573,-1226243214,1007127040,-385649930,1397817702,-1340447045,-972609018,-393609209,225714352,-402595096,-588775201,1976434176,1370355,1393003099,-1610400024,954735207,11397123,-1276421797,-1610563864,1513888212,1941640820,-972584422,-1073021177,1038621557,10873074,-160101828,427670467,-1962724376,-400918242,2078802524,-401756158,179306635,-402618647,-628686778,-2014023704,-1978698534,1958742726,1958805006,-1570394102,-1031136665,-1593879063,-922871194,1956705397,1961573402,1023157480,618820832,1953512688,-387978276,-1031143414,-1979554584,-13833786,1125616465,-1965390013,260784903]},{"sector":3,"length":512,"data":[395041415,64653123,-628663847,-2139766774,1738695856,47642,-1564462397,1940003431,-182547686,-389576167,-1014366106,-1342152216,-528048352,-1595898288,1513888212,1480342388,-2041037708,-2036359456,-528068384,-1957462236,-2011531490,59369479,444014217,2142968437,1998489883,-628665830,-400903855,-725946729,-401231591,1515843215,-528066469,-2041003106,-2036359456,-528068384,1476546024,-1012998010,971565194,-6690813,971556234,-7214845,1131725054,-1969339489,-1639735529,-28100726,-30640960,-1960676160,-1625688802,-556672509,-1982410338,-1961233122,-1625658338,-556672509,-1982410338,-350589922,1813416202,-1996166374,1528427798,-385991447,-1281294681,1952070681,443588661,57998140,-1342017304,43444282,-1336866123,42919984,1976434265,41937141,921174900,20178945,-1560252255,280041927,-400968774,1621098937,1968389146,428784409,-1962829848,-1977983978,1958873798,1579060013,-387740902,-727711689,1951939609,1952070685,1763345,-1560252255,-726001176,-401559271,1487990179,-400960350,-1813381593,2007090157,461323546,447805300,-335628568,1406830577,11933578,-1617017953,-556672509,-1965633122,-1639735529,-1031129206,57984522,1543495400,1134505866,705343646,-1342016571,-1963947519,-1639735545,-16876824,-1963690547,-1329201426,-26351584,-109720066,-1617017953,-1621909949,1134534211,-1639735394,-1969339489,-21960697,-1969337441,-22484985,1543354088,1134499722,-1976071522,1975651014,280347524,-1627389766]},{"sector":4,"length":512,"data":[-556672253,-1965633122,666899138,-963981174,-1977106414,-19803920,-1008437811,280353415,334021002,-389576192,-947257316,-1979708952,1239235,11912074,1006738408,-1258130384,-372954624,-2048328213,-1326388479,21424154,-1564214923,1364400756,1356891807,-397221754,-1151729529,134093414,121374602,130421621,-400510975,548470010,-1259862603,1976434429,-528066311,-39524194,-182547623,-1639735527,435494537,443293323,-1986116705,1528458270,1958742723,-528048133,-1142913456,434641148,-528066560,-36116322,-401005637,512425996,1134500473,2032044446,126534426,184378088,-1611237184,-219439549,-494874486,1359131007,552096594,1499093996,-528048189,-1595898288,1513888179,-2132212875,1846971389,1813941018,1847494938,-1639801062,1008365728,168391931,1960451008,5498926,2045262512,-1560498176,-1070458256,-1961201246,-1994758114,-400922082,1839202325,1042458,-400921440,-1070465015,1476396264,-1969299322,443661288,126355202,2045298058,4122624,2045298058,3598336,-31821637,1007127047,-1955236582,-1977980386,5957864,1760036744,-389707264,126353496,1889729200,443654170,-654916350,-1325418264,190477,512428720,126360168,-1996471576,1964664862,1924879163,-972584422,173735943,-1322420800,-388331750,-1279590619,-401231591,-628621539,410304522,-384216645,-657396326,-657401648,254073040,977022988,117703282,-75414589,-126608641,469760897,-75369868,-327869569,-1021673541,1684276992,1845627907]},{"sector":5,"length":512,"data":[571271012,201548644,-1067359982,1935750921,1631521216,-737365139,213083233,1768686037,195522151,1886193408,1815743491,-133578653,163603564,-1066832644,1668151817,1660225984,-1744191369,163603575,1818297241,-1710418068,-1067290515,1886234121,-1492533129,254304773,254310145,254307584,191853314,163604737,1667564794,1766394923,806126454,163602785,-1066180313,1862348553,163606135,-1066860035,1896086281,34303861,242705267,-1234932008,1845559311,-1503237788,1812004879,-200687500,1953259777,49547712,-469023122,67858278,727936516,1651392780,1860438854,-452245897,239891566,1970078924,671908716,-2089391772,1701984268,-821444492,-1066437522,1879756297,2062224915,1702104595,1819545107,1652297235,1634864659,1735855635,1870597651,1936723475,1668812307,292687379,219639917,326790890,1701737742,1853165075,2098074476,236152167,325217917,1700885262,1853034003,1930302307,236152686,325414014,1634631182,1651904019,1980633957,236152176,326135418,1869642510,1853558291,1896747887,236155758,2019755385,-485616774,325412718,1634630670,1913525093,325411438,1819178766,2131628901,-144612093,1935969547,1707412471,-1005848717,1886351109,1877085715,163603044,2003070892,1638730176,163604072,1801678751,49285568,1701867375,1877020179,326791279,1862459662,1701736559,1876954643,2054058095,48238099,156464751,-2090044024,1862410252,163603062,2004250532,61147584,204567663,828859664,1886328844]},{"sector":6,"length":512,"data":[26216896,168617842,1182037250,1735583243,33557359,1180857461,1953883659,-418691465,124808962,1953861391,33753967,-1251445899,1886387978,-1660305306,1752397057,-1677082522,-1804311290,1885717261,1878198720,834412,213611119,-1150524664,1919094796,35130555,-1065717659,1885729545,-217464731,1852859650,-234241926,1701736549,200411584,201548405,56779306,1667373580,1947864067,-116801437,163603572,-1066830595,1818819337,1746930875,671923058,213609569,-1150131936,1734686732,86380271,-1067294365,1633922569,-1358315401,-1067290764,1869916681,-1425424265,-1067030431,1694604809,249459827,-1066401404,1627520009,163607657,1919877531,36834535,-429430685,1634502154,-687226764,351868152,354227448,351802616,351802616,351802616,354751736,351802697,358356216,361108849,351802616,361895309,362943736,351802616,351802616,351802616,351802616,351802616,351802616,363861418,351802616,364910007,351802837,367924472,376247831,351802616,351802616,351802616,351802616,379328140,382342843,383456504,351803110,351802616,351803123,351802616,386406147,351803155,351802616,388699936,351803192,351802616,351802616,351802616,392107840,351803244,393942264,351803315,351802616,399643896,351802616,351803353,351802616,351802616,351802616,351802616,351802616,351803358,351802616,401283045,351802616,351802616,351802616,351802616,351802616,351802616,707406378]},{"sector":7,"length":512,"pattern":-151587082,"data":[1380261930,542265170,-1607569554,1867385357,1919509536,1869898597,1931508082,1701011824,1210321421,168659469,1970499145,1667851878,1953391977,1835363616,226062959,168633354,1701603654,1953459744,1970234912,168649838,1141509412,543912809,1953067639,1919230053,225603442,168633354,543449410,1802725732,1701868320,1768319331,168653413,218762532,1920091402,1126199919,1953396079,168672544,1651341651,1411411055,1701601889,-1978856947,5067585,83886080,1768189541,1718157926,16016754,538976288,538976288,5784904,0,0,0,0,0,538976256,538976288,1314017312,0,0,0,0,0,-151587328]},{"sector":8,"length":512,"data":[1639147,-1274598468,-1574843111,12191434,34507520,149535489,-855192928,-385649883,-1097006922,-961806244,444678,91602954,-33109344,-1563885888,-259391396,-5108044,-264625715,-1964440718,10741760,67132576,74031681,-402371398,1840906384,9103364,-1610511128,-1155661732,-611450800,520094882,6043391,-1895724312,1912626182,107931729,113655424,-402426880,12191137,149535488,-1275067975,6070273,57878221,-1660926999,-402344006,1048576068,1963001545,34507551,506369,-1609111109,28573788,577906381,-402598168,230295236,2025477,-1900404531,-1173165308,233505950,-352008006,82426376,-692452373,190468,162799821,-1597824563,537657453,1114993468,113837766,-1155994879,28969705,113942528,16912011,108209613,-385563517,-392298558,91422778,-352314136,309726,-1089803842,-1431566802,-92930244,-276694814,1049167406,-1262287316,69324057,88187457,-402316358,1840971680,-6625276,-1023370008,-1107295557,-859894039,833797,1948269696,-551256061,-2081037754,-947712826,309528,1967891955,415663076,-1189558397,-1510801404,-1089541698,548996556,1957163776,-389809918,-109967962,244163,-1157627462,1553992425,1931857152,79987462,-1644221975,-1090113858,243993321,-1527577044,-1090113858,243993833,-1527577044,-1090138946,817434345,-1163529472,62455809,183089920,-1275044704,1931922689,79987462,-2080442391,-1262288188,-400438015,31981572,-440745216,-18159612]}]],[[{"sector":1,"length":512,"data":[621923779,91553984,6031046,381309440,-19470332,683233626,111000320,29817227,1509548544,88409798,-1324830717,-1979665151,-1275044842,1930677504,11200518,-956306711,50676998,113772230,-936474112,97303302,-343734096,-30439420,855078344,1544981238,84457472,108205005,-385844248,113704923,-1341979323,-1979600632,-1274623954,1930677508,6481926,-956306199,50676998,113782410,780715518,-41941304,-377850840,1381236651,-935428016,158662662,-1274712902,-853422839,-918650848,376766726,113786496,-1173392636,162792841,837296589,-922302721,-1631911930,-937557498,-972634618,-679476986,-16267776,-379889064,-58654815,-1172933373,-102235097,-16324355,-2080439320,110036164,1273561180,-855591683,251590675,1048577349,1962935621,-1981196028,168674303,1836216134,1769239649,774793070,229647406,1953775882,1953525093,1998611557,1702127986,1869770797,1952671092,1869182496,1769234796,-1339789713,1702063689,1847620722,1679849317,1701540713,543519860,1679847017,1702259058,607811616,1628048816,1931502702,1802072692,1851859045,1701519481,1752637561,1914728037,2036621669,1866903588,1952542066,1767990816,1701999980,1631760420,1919164516,543520361,1667592307,1667851881,1869182049,1185948782,1634562671,1868767348,1701605485,-1339792012,1699875341,1696621665,1919906418,168669220,1953067607,1919230053,611479410,604638640,1426722224,1668641646,1936942435,543978854,2037411683,543584032]},{"sector":2,"length":512,"pattern":0,"data":[1296912195,776228417,609046339,1393167792,1702130553,1920213101,1718840929,1701999205,229647460,1936607498,544502373,1953724787,1679846757,543912809,1679847017,1702259058,607811616,1124073648,1095585103,1126188110,52559,0,0,0,0,0,0,1918110986,543908705,1633820720,1768172900,1965058931,1634956654,610626658,1141705392,543912809,1970499189,1650553961,1713399148,1931506287,1702130553,1768169581,-1339790477,33619968,33685504,33751040,33816576,33882112,33947648,34013184,34078720,1112359497,538988361,72175427,0,0,0,131072,2432,1145913929,538989391,72175427,0,0,0,459393,4864,1296912195,541347393,5066563,0,0,0,1114748,2560,542244864,1596465229,544169774,1600331881,543317806,1596530787,543514414,1595940978,544366382,1598627951,544497454,1598169203,538992430,1598890095,542072622,1595940966,539451182,1598234740,542269230,1599021088,543514414,1599217696,543252270,1599086624,544366382,1596858400,538992430,1595940896,24366]},{"sector":3,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,-1157627904,62458601,113152,-855614304,-4547291,-1124027121,666830494,-12877824,109126261,268437482,117376115,145819628,-472785013,-472783919,-343680765,3926022,-320679029,-1093241521,-373355799,16824588,-373316109,-918650866,57999622,-1184839805,-826408944,-401176313,-1146752249,62458601,113152,-855614304,1405328678,-772568238,-373063189,-773979382,1933020142,-773664498,-773664286,266764770,-2130384128,200278246,1513589234,1633862491,1634890852,538995555,1056,0,0,0,0,-373358592,47178,-1191181637,-1410137856,-1191676597,-375128066,1290380106,1256924808,1290479240,-1202787905,79427318,16824576,1967893491,-1176129288,-373358528,-947672498,-1141186017,112806633,6070272,-1013111091,16914059,-754972231,-373128734,-636057336,-853887992,88521249,567087028,2088091658,90638023,113704960,1385,89392839,12124161,89825552,-1274487133,-484324057,-603027109,1946369032,1963015172,1554039631,-1564410368,1186596166,-854150139,1975519777,-636056773,-853887992,1728497441,-956301307,354566,1409730304,-1174404859,682886470,148639371,-1073077811,-559869323,89826056,-1274722630,169987344,-1023314496,50169,0,1294809394,942504289,51505]},{"sector":4,"length":512,"pattern":-151587082,"data":[-2113903169,91562045,-1543345218,-955993691,189190,7192319,1948269740,-418986447,725352450,758909300,113641077,-1409219865,1912656104,-740609255,-1395127581,1929430248,-418973962,41221890,512351223,-138804509,-1930767610,-1261435944,-1910387418,244000450,243859462,-1070398747,-393480053,-1410078255,1555697588,169987328,-967739968,31750,6948551,-390462464,-853887998,-1173048287,-390201252,4450310,-109757892,-1979690520,-486492728,4778109,1139341450,64522752,-1962745058,3729659,48578107,803739507,-46421504,-276102538,-907284766,-1274898502,-853422839,44481056,-2130689047,1963387134,1008848137,-1103858687,1017905896,-1020038118,-1979703064,1829080,-472849456,-472849456,751026954,1023111728,738619914,1022587399,-389810928,-353828923,-1158188033,162792049,922689997,113705072,1329791077,6751942,6077005,567088820,695582730,2107883571,8364800,6988608,102683187,-853887969,-846520543,1555703988,-1893610240,-1275039738,-853422832,47168032,1224697065,1329813573,1920091469,1763734127,1162354798,1768300632,757949804,1986948963,1769173605,1629515375,1953656674,1176790117,543517801,544501614,1853189990,1681990756,1936028260,1970217075,1718558836,1851879968,757949799,1986948963,1769173605,1629515375,1953656674,1143235685,543912809,1701996900,1919906915,1969627257,-165385108]},{"sector":5,"length":512,"data":[-1274619460,-1574843111,378144216,-771096484,246686836,567134974,444056122,-1274778438,-853422839,-1899459552,-1978747688,-855255018,85637665,464841195,1065361869,518419966,378085126,243860936,11797962,-1962554205,114933706,-1410088909,-761018229,97428229,-1962551645,-802256401,-1260942587,-1272853222,70826513,-1057087027,-385649401,-2092891830,-678744889,567089844,951718580,-31339260,-1981057600,-1190801906,378208257,-1992161848,-2096770026,-1070390587,989886091,-1090137034,678888620,410318347,-422446709,114670727,-15995183,-398444171,1534329220,267976577,1044082803,1333200340,-588515445,-1161721008,-146276308,63998946,-1274687466,169987347,-385649472,117440303,-1397094954,-1171068156,-1269824292,-1960719095,34138311,-1274780486,-1960719095,33351873,-1274690118,1478610185,97650177,-1174366999,1038618623,76069377,-855002032,-389969119,-977665574,-855002107,100751393,-259324462,-1962785141,-1957624746,1225116686,-763117309,-372162304,-355400078,-152315695,97138423,24433163,1959148352,-1946209463,-402273266,1988690201,142510342,-360458869,-854608862,1958742561,-23729917,-1996109151,12186438,-852970496,-854543327,505132065,-1172364851,162792689,1347953101,-1174314520,162792901,-2091310643,994127045,1996869134,-18945789,-641875917,179718,96997003,-16759049,-401902081,108265584,-2048339405,1162166272,199877190,-1157204800,-1461189324,378154496,246679000,915087821]},{"sector":6,"length":512,"data":[908789198,-13433386,-402301765,-928972642,90880773,-1593800984,103482824,-2068118062,7989253,-1174404447,-487129072,-91492213,-402284357,44105846,734694400,1096386,-259267849,-1162085749,6350853,-24436531,-33296431,-147223770,1946157510,-772812536,-772812305,-1605137,-1957248241,65982974,-772340749,1015752431,-489615757,-489561391,-410918191,82509839,-268376191,-1993934325,-775725508,-772050199,-338177562,-903415818,-871462139,-1947170043,-1578758,-1950338221,-1175942184,-422510560,-392833071,-1818951605,-1828698392,-287178732,-400879431,-1014300656,-1962931224,452805,-855002022,-1974418655,125140,-789411238,-789917462,-387264278,-695599102,1947198080,-33509118,-2134039859,-785764150,567083700,666899139,-1072511866,-1010530777,750045438,-259267338,97531395,-1274498746,452610,567091378,-1968438351,-31339056,-1007192631,255,393216,1061109567,1061109567,4144959,0,0,0,0,0,0,1851858976,606085220,1635151433,543451500,1986622052,1886593125,1718182757,1952539497,611217257,1869771333,1852383346,1819042080,1952539503,544108393,1818386804,1868963941,1768300658,606102892,762212174,1868785010,1634887030,543517794,1701996900,1919906915,1919230073,762474354,1818846765,1701060709,1702126956,606091876,1701603654,1919098995,762540911,1802398060,540697701,1919501348,1869898597,1696627058,1919906418]},{"sector":7,"length":512,"pattern":-151587082,"data":[1852386605,1920102243,544498533,1702521203,543584032,1701603686,1766073376,1952803699,1847616884,1763734639,1769236846,2053729377,606102629,1954112032,1965060965,1819042158,1952539503,1679844453,543912809,1667330163,1919295589,224683365,604638474,1936286752,1768300651,225666412,1646273546,1936028793,1953461280,1679846497,543912809,1667330163,604638565,1954112032,1914729317,1767992677,1986076782,1634494817,224750690,604638474,1954112032,1948283749,1818326127,1937339168,544040308,223166802,1646273546,1936028793,1701996064,604638565,-907284766,-1274898502,-853422839,44481056,-2130689047,1963387134,1008848137,-1103858687,1017905896,-1020038118,-1979703064,1829080,-472849456,-472849456,751026954,1023111728,738619914,1022587399,-389810928,-353828923,-1158188033,162792049,922689997,113705072,1329791077,6751942,6077005,567088820,695582730,2107883571,8364800,6988608,102683187,-853887969,-846520543,1555703988,-1893610240,-1275039738,-853422832,47168032,1224697065,1329813573,1920091469,1763734127,1162354798,1768300632,757949804,1986948963,1769173605,1629515375,1953656674,1176790117,543517801,544501614,1853189990,1681990756,1936028260,1970217075,1718558836,1851879968,757949799,1986948963,1769173605,1629515375,1953656674,1143235685,543912809,1701996900,1919906915,1969627257,-165385108]},{"sector":8,"length":512,"data":[-1943490839,-1106836978,-1212219264,5290247,-1583025156,178454534,-167725053,-1900429170,47872,637967038,126354570,-136296893,-1064380276,-1274459160,-1575957233,-1230897080,1009300487,-1274187262,1963408464,185383175,6819465,2696840,-1982100230,503533598,-1912602438,270436826,386906885,3153545,2891401,9445003,85335689,9576075,85466761,-1996041029,-1962897378,-1996461026,-1962601442,-1996460514,-1157294562,512314676,1153106028,1881049431,839814144,772705280,-1844540416,1845937920,-940179456,29190,951984118,16824584,-201539533,156625067,87426758,738641665,-400093184,-386200511,-38073613,23455745,-1190643522,-1070399232,-391384068,512426905,-706150356,1701336103,1296189728,1919242272,1634627443,1866670188,1953853549,1109422693,1667855201,1700138495,1869181810,826548334,540028974,2037411651,1751607666,1112088692,1866670157,539914354,825768241,536874495,1967795508,825765230,-1275068230,-1340617471,822527568,113639431,-1191180494,243859456,-398325969,108331075,-401561410,45678637,887636480,-1106873088,518525118,587646720,-1107296249,166203516,587646720,-1107295737,-397209454,-771027240,-1185208203,-953286645,-2096024828,-152960314,67813059,-1189154557,-645005312,186584203,-1274645303,186109185,-1957051447,-1996020962,-2130239601,-1996483647,-2130237553,-1996419903,-2130236529,1359023297,-1961983512,8898507,-402587648,-745861524,34759,-1031732992]}]],[[{"sector":1,"length":512,"data":[168656875,543516756,541934153,1936876880,1818324591,1836008224,1702131056,1145380978,1380930633,1700137485,1869181810,774971502,1126182960,1920561263,1952999273,539583272,541934153,1886547779,943272224,604638513,1162037580,1145393998,1413565728,1095324229,539828300,1196380752,541933906,1347375696,1498698309,541478688,-1169341879,-2065102661,-569981438,-1531183095,1564377612,-344711168,-1089947458,62455909,1957098240,-1173375934,567083100,168418722,-1173916480,162793826,1555964365,163036928,-218101319,146325156,330605733,-855001158,-1088114655,-1431696960,-854149974,1958742561,150649356,-1174264087,552143063,-1547685118,2141388925,165192448,1074387619,-1560253789,-1514534459,-1258648820,-1960719078,1224738318,166989449,165480182,-2129103361,-787700247,-775844887,-1161296919,666107996,-85450291,-50789632,-1994783290,-972425666,-2146830330,192546502,-1543059713,113707532,212142578,166725319,113704961,68064,165480182,-402426369,-1531182892,623097868,-855070790,-399855583,-122026448,-854936567,-401952735,113706532,2530,165414598,167427584,-1996470296,-402005994,742129714,1313210741,-1996474392,-402005482,1060896802,-593361291,1566729,96427812,702723,292925170,-472786549,51353599,-1392534551,-76275652,156547779,567085492,-286749461,1949187327,1948466209,47651,-462278596,-529057476,-628412372,-489561391,-489565437,-1395653736,378267371,-1012135440]},{"sector":2,"length":512,"data":[-1392509254,1096241603,1279545939,869705,-1861728249,-821782777,-1476059386,-1190972923,1460150531,-233131951,1509526446,-1630590049,116835167,1979648477,-166294664,-1258648823,-1960719078,722072590,-1167887158,666107996,-576577075,-890744567,-972720641,17423622,165682827,-2097022077,-768409389,939572968,208994117,244011005,-1359869452,-62240953,436586329,-2016466176,50984510,2101225977,2132706048,-633667584,113641077,-1023407651,165480182,-167086593,-16130554,-689311371,160479747,567085492,-534869053,1977289481,-266433788,4450313,-1514483829,1959406348,-853887769,163035681,567093428,511033354,-1514145909,-230782708,-166819063,1104030473,-1991269133,-955648450,17428486,280281856,414851533,-855002103,-1960784607,-1962282986,990507582,2011591898,1960512270,113162,990684607,-1948879654,722073102,168472783,-221584448,-633650514,1405351797,1575493808,1304580,1441282736,1529524228,166731323,548405876,855918569,-1177515328,-472842224,-2044215278,666899140,-770521978,280228066,1501330,48809610,-1966962176,-790048528,-790048536,190696,254068362,11731572,-1020645372,-1962670103,185196574,-1962117669,-2096500706,58133483,-402652741,-1971978403,1049360267,726075874,-1089964037,65732631,-1962933825,722073102,-1959693106,1359605806,1509910760,1931492524,1946827797,1947024401,1946762253,1588613129,1476637672,-1377288180,-536200189,1124459487,1272214863,192724931]},{"sector":3,"length":512,"data":[-1174339655,-1431502849,-536003518,2065074425,-1393986549,1963801666,-1012248582,-402603543,-126549771,166475403,738185960,-1962286058,50980366,-17137199,-1956088064,1376381470,1526659304,166203019,166475403,-397816277,-1101660089,243993338,1021839846,906190336,-896857628,-402472573,-1998061521,-400395008,1049297014,-1102116376,378211066,243993060,21563878,1091168270,-300537526,-1041743351,14477313,-1947630219,-1400839169,1241710568,-1161561630,1005259136,1962962152,-367097037,-331969783,-16193527,1946172136,-398554325,-301036791,-234180599,-1995082322,-1995839426,-1995838402,-16126450,-402003450,-848035694,-1274450502,-1021194999,-1559630687,-358544910,166765321,-603523389,-126550263,-1274447430,-1272853239,1344392449,1476562152,-462156484,-529245892,-1077708484,-1545074054,-473953792,-468809227,1019818761,-1090096115,-1880618246,-435255040,-534869239,33260297,-402599037,1049230793,1049168360,378079724,512428522,-75298334,-2391295,-1946308376,-401724465,-469824503,-468833359,1101754889,166596233,-1962247520,-1962283506,185198654,1974399743,-1949201515,-468808737,2076068105,-205506038,-1949660250,-1981516293,-1962283506,-398554673,-331445495,-1328600311,-367621366,-544521719,-109793550,-367621814,-333543159,-1010814455,1017956659,1022915610,-1426820083,-1946948799,185196574,-1962641957,-402001890,-545915603,166731401,166870665,-501314729,1977289481,1138395906,-1946348312,-685023273,1391184179]},{"sector":4,"length":512,"data":[165682827,91609867,166731403,-50599869,378140555,914950640,-1552610830,167130683,-655843980,-468284931,-231306487,-40835063,-1258485528,192592394,179315149,-1979621400,-1257538802,-1958747392,-1106648042,1049299836,-902100494,1465265780,66554705,-1577516046,-1037366794,104579331,460524020,167118471,-835991413,91748155,-117182205,-1527561731,1583307260,-1161583373,162793788,-840359475,623098106,-855115590,-534869215,1977289481,-266433788,-60561399,167120523,-819203701,-197227711,-1527513847,1207762567,-628363637,166870665,166731401,167128713,-1157862168,179571578,-1008197171,192724480,1947876482,-11761115,-695533387,994234627,-208112683,179348644,-924105814,-661731188,-795950962,-401824580,780861585,1049299446,-175437326,-200373434,-204657911,1049186212,1038682614,161790714,567085492,567083444,1497128740,-1212521099,-854543351,-854346719,-954151647,-16130042,-85268225,165545670,-388287743,116849523,1962871261,-166294554,-853887991,112929,-1274431558,-1272853208,-1105081072,2089615452,-1177122032,-1527578615,-1526155074,-854084444,6077985,-1190541377,-1510801402,-855001158,-1340027615,190477,-1840117072,567083700,-1933354350,-1898410296,-1127182656,-488108892,-106501633,1179337026,543517801,1701667182,1937075488,1700929652,1701868320,1768319331,1126458469,1869508193,1684349044,773878889,541802818,1701603686,1701981485,1701667182,1818846752,1867392101,1869574688]},{"sector":5,"length":512,"pattern":-151587082,"data":[1852383341,1919509536,1869898597,1713404274,1713402479,610626665,1802725700,1819633184,1714236780,543517801,1953067639,1869488229,1868767348,1701605485,610559348,1850280461,1717990771,1701405545,1830843502,1919905125,604638585,1920233029,1919230073,225603442,1699619850,1768300663,168650092,1953451556,1970234912,168649838,1261326116,606093102,1701734732,1869575200,1852795936,604638567,543452741,1763731055,1953853550,1818846752,604638565,1919902273,1684349044,673215593,692989785,1361322047,1499094015,-1966896445,11882959,1509900520,-556678774,-780089866,1946203606,-13637629,1381097451,-1979665069,-14423864,-2135572086,104646436,-1071379852,-1069758604,-393559180,445914763,446043787]},{"sector":6,"length":512,"data":[1702129486,1650532467,544503151,1936287860,1936286752,1953785195,538976357,892286496,221329455,168632330,1411395121,1629513064,1701803125,543384952,1768120678,2037672300,1935763488,1701143072,1768300654,744777080,1684955424,1919907616,1864397675,1752440942,1931506537,1702130553,168636013,537529632,775031309,1701336096,1937339168,544040308,1701603686,1634214003,1914725750,1919252069,543450484,1965059956,1919250544,1935762208,1701584997,1919251572,1734418547,745433441,1953849888,1818851104,1869488236,1700929652,1668180256,1701082476,1852383332,2037276960,1679821325,1667592809,2037542772,1634038560,1701340018,1700929651,1937072483,1718558821,1847615776,1646294885,543519865,1953784104,1969383794,539583860,1948282473,1679844712,1667592809,2037542772,1953391904,673216882,2036689012,1852798752,1931506727,544698216,1629515375,1380533280,1663044109,1634561391,539780206,543452769,661545315,1700929652,1634886944,744777075,1886348064,744777065,1819239968,744777060,1768977184,1701602414,1919885412,1953852704,1952541801,774464613,1701336096,1380927008,542392653,544435809,542333267,1835888483,1935961697,1953456672,537529704,544104803,1965057378,543450483,1881173876,1948284021,1702061416,1818846752,1864397669,543236206,1802725732,1702130789,1718167584,1398362912,544434464,1684370293,1752440876,1768169573,1830841203,544502645,1702257000,1919705376,2036621669,1684105248]},{"sector":7,"length":512,"data":[1701344288,1937339168,225273204,1852776458,695494944,1850286126,1684300064,1869182057,1176513646,1095586383,1920409684,1936028777,1701344288,1869570592,1701978228,1685221219,1684955424,1886348064,544433513,1296912195,776228417,776818499,220203533,539898634,543516756,1953724787,1847618917,1663072111,1635020399,544435817,1735289203,1680696684,1702259058,1886745376,1953656688,1634235424,1634541684,544433515,543516788,544237924,1953068915,1931503715,1769239653,544434030,2037540214,1886218528,1635021423,539915374,543516756,223563588,538976266,544698222,1718513507,1936552559,1953068832,1752440936,1919950949,1919250543,1885955104,1769435936,543712116,1953785203,1936158313,1919903264,1836412448,544367970,1679844975,1702259058,1634607219,2037146989,168635680,924852256,745434912,1864382496,539828334,1919164465,224753257,538976266,1718558775,941632614,544108320,540155949,1986622052,168653669,924852256,745434912,1864382496,757098086,1679831840,1702259058,537529715,540483616,744908399,1864382496,757098086,1679832096,1702259058,537529715,775162381,1701336096,1936286752,1868767339,1767994478,1931506542,543518063,1920235621,1919950945,1634887535,539784045,1713402721,1869376623,757101431,220203533,538976266,1886348150,539828345,1684370293,1802071072,1752440933,1868767333,1663072624,1634561391,757097582,661940512,543236211,1668571490,1768300648,1948280172]},{"sector":8,"length":512,"data":[-1048510452,1340604428,8898062,-2017067008,-1979777015,-1996488297,-2130705009,-2130640959,-1996423230,-1996487785,-1610610801,-273414362,108266300,158663228,565901236,-1004344320,-389850130,222038127,1860698997,126496264,1975519811,-1230978066,1208367623,-1274711040,-1022309120,-402651461,-1155659851,-611450880,85335691,9445001,85466763,9576073,85204619,7085705,85335691,7216777,241091359,1285209686,-167723434,-1882499754,-1106837498,-253014891,-1101656482,1431719066,-81261629,-1809342435,-1960931547,1026019614,-1374798322,68935719,386810648,1696358927,1058826268,1159479836,235146524,604245764,721693188,973354500,1006910212,1107574020,1409566468,1510234372,1594121732,1879337220,1996781060,2030336004,2063890948,1207959556,-1932637887,1442957654,-1000996141,1296912131,9162319,-1538960319,1224736909,-2101064635,-750433207,-733675391,137,-867415808,1163067527,1258325460,1258595401,1258660947,435268,-2067444415,-732626944,1392509064,1166464069,-1965800109,1414748416,8637765,-1538962103,142,0,604474063,-83104897,-176882372,-260702660,1599997834,67943325,1085401226,-1975270914,785615607,-1073084534,1134555764,787773854,-986052726,-628627339,1499120010,1587597450,-1329591804,73310975,548408692,1101724043,58052350,-1979123479,772205506,-1975318646,-1954601776,-29250823,-385649202,-1039529759,1130097017,-83307543,1532582233,921193299,64600837]}]],[[{"sector":1,"length":512,"data":[-1073594068,11913354,-1959864061,-397190377,-930478815,-1406209397,58031908,1124645865,930464058,-1406209397,2042628674,787647458,83880108,57945660,-1341848088,-385650176,-1957164904,179056370,2035964352,256259,1358528524,1900208,1527282409,-1406209397,2042628674,-1494531337,1007183337,-821988227,1134387038,-2127820918,-1073549710,-259267534,225556825,-1258344879,-1058470991,-1174405117,951649677,452616,-1190818118,-225769160,-2127778770,-1966931597,50378712,1121518555,-1406209397,1111689096,-1406209397,-347994232,948238301,1979711240,1600114433,1907972509,-1258335987,1961429048,-135034109,-16172924,-821987841,1503485791,1359868857,154711295,-29557821,-46398092,1137645172,-1925445750,-1041693835,1972255752,156494083,-821589429,1134387038,-2127820918,-1060110155,-397293430,317195051,-561553915,234076758,-1576947630,-208993112,-843776210,1140900611,1667855973,1851072613,1767994977,1818386796,1866661989,1853189485,1952539497,544108393,1717990754,1864397413,1718773110,7827308,1802725700,1769101088,1344300404,1702129522,1684370531,1936278528,1869488235,1699881076,7955553,1802725700,1684360480,1159749993,1919906418,-1031079168,24331324,-1654759729,91375932,551146,-1153225482,-796260806,1124567598,-126500854,-193606914,-1946385688,-368883938,-167769960,-997996661,-1308156140,1958742598,1011331592,-1308462078,114682184,1397903611,-1962649880,1381653451,-1746353526,-816293352]},{"sector":2,"length":512,"data":[1520263006,1448582226,1019644496,1476555273,954747855,-402099198,-385940977,1485963787,-613168405,1486708574,1503577222,1364612958,-796200310,3062099,130472195,-6268672,-1140915194,-2023880839,-380545314,-1946476864,-402158901,468392713,-389313541,1600002962,48029,82386569,-346137765,-880018678,1578876648,1465818463,-1946432682,465955019,1600057835,-997828451,1532647838,-396994722,-70575131,1912609000,-10229501,-689435216,-401952741,1600003025,1448566429,-389300174,24446123,-1957604413,-1190860514,-654114770,1007127129,1589861129,1532665183,1448566361,-887295000,1537040222,604473944,1916808415,1931164703,-1186774245,-108329744,-1023524438,-1057046478,-997810183,-1228634544,98887947,1577336041,844668255,1591536576,-1973707425,1589643783,1925928535,-18618109,1486708574,-997810274,1959036496,738691610,1975519788,18475026,1375793896,-1631287720,-997810183,-1614510512,-2041527162,-1296026940,51111937,-1631287720,-937115622,916586764,-997828603,-997810274,449087056,82813632,-1631287720,1355056799,57984134,839224552,48359616,-1631287720,-1981217931,336259348,-1023122200,1793655666,-1654694146,225556824,-1394062511,-402230016,-1914109920,8251412,1968192556,10086409,-385871896,1827150224,99107072,-373280256,45221095,11976754,-1023243032,916651952,-1967115771,-389707032,130417259,81764352,-987052546,-1070403725,-1023068510,-375562402,1358631554,1493087464,-18283662]},{"sector":3,"length":512,"data":[-1654694147,1914421224,1946827796,1577315088,512466271,716768489,-19332352,74115335,-622263436,511568381,-74752317,1453731580,175497099,977012618,-373096078,-1880555497,50044932,-922875844,-922826498,126501827,24263228,1948269763,1007186676,-1057032912,180603134,1023112384,1013936651,-1606453986,-1073085696,-1572646717,472646400,-181650829,-29620365,126491509,-31553213,-1979664638,35555800,-1576882173,79364865,-1073063936,1124567747,-31553213,1066027778,272425451,512476021,-1762983170,-1060060930,1375928738,50510417,-393553273,-2029848344,-1990567462,1476591134,167773371,154977216,1827210098,-181388033,-922828546,50372803,426970940,359796028,50470539,1128467061,1125616195,-628672630,-352220440,50438313,1006828450,-1961724920,-1996291554,-1962630370,-1996291042,-352017122,50510733,-352209688,-997828475,-1966908514,1918974983,1937456377,-1017174795,1929382632,1915763962,-180732682,1916878019,-178569989,991857603,512344835,45089955,-1023214686,169773907,50377987,-136772647,985891803,-603780750,48825202,-373073152,414908819,-1899416830,6994369,42961958,130491904,-1014822211,-1091444732,-1406268738,343195658,-1073486798,-661929981,-1993954002,-1886640633,-420806654,-1064380276,-208416829,75735812,-1610257515,-241236519,96573189,-1425044568,-726923261,271296775,-536340503,585041752,134994951,-351760150,-1460920999,130540573,-402160925,1843791694,125495047]},{"sector":4,"length":512,"data":[-1241060131,14550931,150002439,-502728991,-1584985841,153127174,1344978176,-1107790871,1844007036,1283046904,-1107793943,1642678104,521780728,-1107797015,1441339840,744078840,-1107800087,1240014298,1067826680,-1107803159,1038689160,1093189112,-1107806231,837370093,1073200632,-1107809303,636052641,273792504,-1107812375,434725947,1328332280,-1107815447,233383638,641646072,-1107818519,32053020,1682226680,-1107821591,-169270614,582335991,-1107824663,-370603525,942325239,-1107827735,-571924708,732282359,-1107830807,-773247880,965721591,-1107833879,-974579208,983678455,-1107836951,-1175910505,461618679,-1107840023,-1377213288,128368119,-1107843095,-1578556363,755285495,-1107846167,-1779881818,128564727,-1107849239,-1981216153,274316791,-1107852311,2112424118,754236919,-1107855383,1911109486,649772535,-1107858455,1709778511,461356535,-1107861527,1508456551,127188471,-1107864599,1307117466,642563575,-1107867671,1105800305,1950399991,-1107870743,904484048,802602487,-1107873815,703137714,128171511,-1107876887,501815079,288407031,-1107879959,300508366,126795255,-1107883031,99184840,522173943,-1107886103,-102160618,291225078,-1107889175,-303471280,633257462,-1107892247,-504797943,577224182,-1107895319,-706145128,275496438,-1107898391,-907451215,128957942,-1107901463,-1108801620,1390919158,-1107904535,-1310120412,1097448950,-1107907607,-1511442326,1130020342,-1107910679,-1712765191,1185463798,-1107913751]},{"sector":5,"length":512,"data":[-1914102006,1199291894,-1107916823,-2115410974,1698479606,-1107919895,1978223002,1686814198,-1107922967,1776903085,1800519158,-1107926039,1575578541,1680981494,-1107929111,1374249793,1208466934,-1107932183,1172916071,433569270,-1107935255,971589939,1215413750,-1107938327,770263137,1211088374,-1107941399,568936527,250145526,-1075120640,-352976882,-167767827,1110250,301918966,-672467456,-352976827,-167756103,4279786,1695345398,-1913981440,-352976858,-167770258,578538,523627254,-890571264,-352976866,-167764242,496106,131656438,-404032000,-352976865,-167762177,507626,198765302,1072363008,-352976883,-167761641,4145130,127986422,-571804160,-352976833,-167765547,5628650,1459284726,703264256,-1107951528,-1830212323,1058258421,-1107981079,-2031534314,758627829,-1107984151,2062101936,121159157,-1107987223,1860766306,170769909,-1107990295,1659462694,-1070461451,-401503767,-387450141,-397148635,260767145,1912732032,28805960,-388396544,-192282558,-402641944,-729153478,-402643992,1824063538,1960512007,-161173495,-389510172,-997588958,-939327308,567094196,292929546,-620051621,-872543372,1949252780,1949121559,-43390701,1912606440,-387937544,74579975,-527824171,180587203,-1963363109,1915759620,-183878413,-872485262,-1796684986,-1336720639,-55187446,-852839342,-964011231,-1342165784,3401773,585679498,-399659008,-377421783,-109050004,1913894244,1693024261,-980761090,-1979709208]},{"sector":6,"length":512,"data":[256193,-721512471,230983178,48771120,-2000385536,-389856505,-387450353,-397148847,260766933,1912732032,28805939,-388396544,-326434962,-402646552,-863305882,-402648600,-192217250,766771378,-1073077811,-1017442699,125098762,1017957374,-1023314630,-386094359,1396900091,484968624,750015228,-1973739059,-7083835,-1696056656,-389969153,984678281,-1962962712,-8394554,-67234839,-386758061,158597135,259275324,2030044904,-695575561,1124567759,-1966880002,-20829498,1912749256,1929723116,1397905896,-1961881925,-1966568719,613045992,1919024256,2080145416,-327154829,126496288,-1002813885,-906094731,-1976638347,2042628615,1515936524,1587371870,-1073064361,2025851595,126496489,2042628675,1590528760,168266286,-1950714432,-1973789986,1329844182,1140535629,-97366705,844386380,1414548729,2080438323,-1475309040,-82788848,-1484107693,-58720210,-2147126536,57867516,-1328587944,46410491,-1157581632,-670887901,1527221038,-670891849,1527221038,-16776472,-1889575200,-1660478714,-1957632257,-1979389642,1006644868,1007055608,1476555772,-815900477,341250676,352588958,356717869,360846692,363138057,310122158,346428511,355800332,359404875,201921930,381031853,227807642,296946697,201919497,201919497,201919497,300552675,201919892,201921027,201919497,201919497,305335305,578142754,-1991028580,-2012944098,767787799,1124075462,1127188547,1124075462,-968683640,1482358791,1021952925,1583044859]},{"sector":7,"length":512,"data":[119224063,-2041001130,1515822788,1525738331,-336897701,6201427,360038654,3022475,54992521,-1021130870,91537662,916635698,-1295820027,-58070716,1971387008,-1023233534,82386571,-1020017789,-1976646781,-1009715705,82386571,-1020083325,50798523,-1962466530,666616607,589169415,-1021342969,50801595,-1962466530,1394524959,50593979,-1173937378,-628228096,512628619,378078480,526059301,-383874109,797411844,780845824,11601713,-1325427224,-13834131,-1593858584,126355247,1493125865,-389773744,1240006659,2045268735,800807424,1947024391,1393032719,1543488232,124913464,-437580368,-1979709498,-9377785,1489176456,832750726,780845831,11601714,-1325447704,-19077011,-1593879064,126355248,1493105385,-389773744,-102170621,786977534,120634112,1947024474,1393032719,1543467752,124913464,-437580368,-1979709498,-14620665,1489176456,849527942,29016839,-1174148352,1402732546,-855591856,549778967,-990507403,-166890236,225706436,116070578,48962482,1558780338,1011898619,-1341819635,-2955254,-1013097640,119736007,116064256,119736007,-397213694,-2013856046,1962868736,-103159549,-18683822,839107203,1246424768,-1349887250,11599881,1398696112,669572747,-1070441474,690056,755592,821128,886664,952200,1017736,1083334,294110977,1392706304,83606354,1258293689,-517980288,130434042,82885376,1359052985,1965047680,8382723,1949056896,-102213361,1065373952]},{"sector":8,"length":512,"data":[-2140113920,645213247,-148379581,1312555189,28647284,427050300,1329333173,742134644,95752052,158616892,1396443061,-1259797644,1124315640,1946173312,742359058,-1975259019,887717903,-108992398,-387747067,-1349976566,-980811760,19196298,-922089867,-838938508,1929706880,1961691849,1958742534,-1982988798,-402648689,-1886650910,-1752498175,-504889341,9496829,-1946299928,-1962932849,-402651241,2145975770,622234368,63079175,-2081521488,-1973878038,-1974800699,-1410797887,279939837,-771510016,310872805,-2084238848,1122894786,1122896304,-389467326,58064202,-319171351,125116584,414380514,855238377,-2141496896,108266233,-1341789565,-2021069311,-2017066998,-385810432,-991363833,700142584,776160020,1128468363,158648587,-243936965,1527745326,-137238077,563081,298889,429961,692105,165831,1271070720,1845886976,-1778116864,738394112,1476493313,-1342128126,134242308,1610629127,-1073729527,-2147477486,3109,-956301312,467718,-955847936,34022150,-51320832,34758,-49879040,1962713576,193459730,-193593600,-289394110,690056,-84341271,-2021081038,-605552629,42452988,-402653184,-369360926,113705341,1827,113706731,132899,11767691,1381749643,-1796715695,-400657164,-399707029,1364850389,292868619,1925856089,1372228392,-193337269,-135724172,1482578424,-1948349613,-2046772065,1975519968,13887503,-498923640,-1024893960,-149820937,-398260342,-119406274]}]],[[{"sector":1,"length":512,"data":[-139204261,119736007,116064256,119736007,-1014824958,-2041554894,18933956,141823276,322701310,117620762,-639039608,587646971,-352321529,587646726,-402652665,-1073086335,-939799319,467718,-955847936,34022150,-66131968,171915,989921210,-2029882662,-130684454,119736007,116064256,119736007,-303562750,43486203,10455808,-371578112,113768471,1827,113706731,132899,-1946431512,167772807,436284612,-997549888,-186001269,587646967,-352321529,587646726,1392509447,-1996774936,1526729871,1375194089,-74127277,886774,-972458753,3463,518735282,952310,-972458753,3719,250296754,1017846,-972393217,3975,-857138766,210209527,-960493056,3207,266868341,-401312517,-1886651560,-922025982,-1259802508,976896,-1950131877,-1962719962,-385662178,803796811,295668475,771798784,372752266,264488738,-8437985,-397323440,-2013857002,1979645967,-81729374,38795,167819,-126563781,-402615832,-1963263238,167775111,-29198912,193431744,99154688,79856635,1122896816,-389467326,-1686832490,1965074668,-369827323,-919339700,1962575336,279506058,-186514059,-2080556055,45090282,689930,690056,1532623854,113754968,1827,113706731,132899,1405388376,-1996843544,1526729095,79137731,1174702592,573323,74839867,702347,309129,45583354,-1215738368,-1006960638,573323,440203,994444424,-1962641929,-1996485961]},{"sector":2,"length":512,"data":[-100661577,178059,45582662,-71042304,1381061456,-1168681442,-628228096,84942478,119748351,119736007,468189184,587646720,-402652665,110034962,549062435,-299847680,1512005215,-816293031,200944616,1108374738,27847746,-466482827,-13700981,-1021878092,396433394,392697705,-101914429,-335297917,74717732,952200,-1962546557,-102569781,49035,178059,-147072633,-1070461836,886664,-371618836,-957546670,16780679,-1276622141,-1966371847,872417927,176654338,-2013860352,1962868747,96633656,116032492,175444004,-2021078786,-645201905,-1679288341,-17438471,42437614,-1950086656,-2012842535,-352318585,167948300,-2013263225,1107298951,-1031552018,539290628,1541933429,-2000093447,-1023406201,1705164850,73835012,-1111881846,1975663104,73769476,820529987,-168957711,47955,74194569,552094555,-385649167,-186122113,742141168,854069876,1558729716,1813940723,-397714684,1702162691,753982184,973121978,-400657214,-398331697,-397610805,1967976647,32106755,753975016,57983546,183852521,-997810240,-1564178864,-857209754,-173152016,-211556271,-1974379943,-1982231811,-402364130,192148333,-745867382,73866889,1926904667,-211687165,-1631287720,-1595341964,773753601,512447232,1128988720,172165002,-385649401,-1975320353,931808023,512350855,-628686802,183531240,1021342912,1022719034,1124824574,-1950742646,1958885888,1558727434,-207230736,-388109493,-613093293,-1576947629]},{"sector":3,"length":512,"data":[786957113,-1972669197,-1971319611,-390057240,11596463,1963145634,1007127052,1477408040,-341916538,1007127149,-385649368,-396627237,-963972351,527811082,-2146646646,1320872074,-407219687,-73379316,-370111998,-963972517,58049034,1408414441,-896864630,1394181307,-1393456311,2025851465,-1393456136,-108298228,966968234,1007127043,1588819240,1230429831,-2299831,-991409317,-385649169,675086153,-1192752011,-275650321,-385649367,-1997996231,1474899183,512318463,512426030,-628685990,56106635,1651825211,1125091923,168266307,-997810240,616859216,1124567167,-1242431768,1490617088,1503577222,-397288840,512425999,-637336742,56237705,-346301817,-1948612665,990075934,-1393390630,-1616184949,1100979778,-1963952738,-1966921023,449153744,1257278151,-1963095479,1545505241,512475907,-628685988,762632763,-1975303341,-1614804473,-2041527162,-2004933436,-1796717817,1125092081,54734730,-997828391,-663201378,-6166447,-346301817,1478396879,-1948612861,-2029823458,1960459226,-1626895830,1134534211,-1639735394,1355056799,1491649670,-997828367,1963146398,5826565,-796213198,-637337418,-2024158229,1545505754,1004177155,-1971751718,-1639735545,-1617017953,-2041527162,619201476,1125092081,1480798090,1402913926,54319363,512348277,-1973746895,50377999,1138295769,512481927,-628686031,-1217078725,1360709817,118145074,-1969339489,-1639735529,1134507914,-1023314530,1478396755,1541028611,-1957431950,989868062,-344761382]},{"sector":4,"length":512,"data":[1263225683,-237770669,-402410149,-1017384523,-1947107096,-1979491298,-1949594897,-2029823970,1511951322,717457923,-1965520190,-1966728505,1310624248,790530820,1612613891,-247732220,-645202550,790530379,73834499,309641226,73997963,-880087158,73866891,-386837784,28373057,-1979421790,73769200,512426284,441122864,-322573888,1805828146,73769476,56106635,-880087158,72228491,512350467,512426842,-2025651409,1612614618,790530308,-1948632317,-108286734,-1639800918,1973305759,-41268752,512350602,512426844,-947256212,-628636918,3153547,1973308319,-241047293,1928343784,-258086653,-1963095479,-242095655,-1309624599,1948466177,-397294847,978976797,1007121602,-385649660,753463359,-628675347,-645202550,82386569,1271126663,1022181096,-402426589,1458105655,-260970256,-543108982,1942108676,-266868477,-1957494602,50651166,-1965423654,797590287,179106187,-1329374272,78690562,-1626820423,-2041527162,-286005052,-1631287720,-1947259160,-402445026,-379982071,28373308,-1190940487,-2036398160,-997830460,1492092136,983483526,-385650169,-1057034357,1125091907,-645251190,-402457694,-1228673199,-373280255,770181469,-385649912,-29560566,1688339829,-33035516,-385649472,512426106,1273495600,1478396172,73703427,57982986,-387200536,1128525533,56106633,854674152,87466688,-1594982680,-1073085333,-1746336908,82813182,58048522,-370203415,-957812605,-295573265,-387096855,417984781,-1897375249]},{"sector":5,"length":512,"data":[1223183359,-402230036,-1008074780,-1564462352,-1310194449,-385649913,-1057034098,417923957,1975582447,-284038909,82386571,50342585,-385351975,384364658,-303044370,921239472,1478396678,-1948612861,989868062,-1969261350,-397262073,-346421727,1390957554,-385649942,-38736169,-1962536728,-1979494370,101181635,48809866,-1974248698,100395203,-152516726,69110533,-634693113,-353844342,-389576187,-628685339,1344179742,520587779,1124456680,1976699722,-372512273,-368842669,-1997995150,108259566,57998652,-387023127,-796260759,-1979292440,106948848,1525209226,-386364922,-930478507,-1979297560,6332648,108316926,55580299,1055413083,-628220410,1126107016,180718153,1508865473,-387352343,58064397,753810665,-385649660,-628625873,50377659,1124567769,-662028406,73277065,-1996488517,-1979248098,-1160083513,-628686660,-393553661,126540423,24390716,-397323581,-2036339469,-997830460,1105912552,1407901416,-387068696,-2040992479,1582931652,-1974018425,-1957473592,-1257827810,-1982266624,-2029579746,1579060186,1943681796,-296228605,-628663717,1134497672,-1625847650,931700291,211807067,-117314816,1355056799,-2098674554,-321394451,-320083886,-561553831,-397323434,797633869,1457424222,-930478198,-2036378799,-997830460,1125616195,-1073072246,-1964440715,807308032,1943681792,1478396743,1926904579,-1227781569,1545505536,-2015755517,790531034,1943681795,8251651,-1631287720,-2031566454,1582914540,1381424775]},{"sector":6,"length":512,"data":[-319559599,-2023859623,1397839582,1125615683,-2036385912,-997830460,-1631287720,394937179,1496812099,-1975299493,931808023,-1973757305,1942305473,719882754,1489537733,1923007622,1828867,-838941186,126488180,1135278731,1509157698,1499027801,48759667,-1329374464,-20840928,-1946716983,-347952390,-997828362,1582914462,-2024350073,1359640026,82363786,-300226324,-561553831,-1621929642,-2041527162,-10688060,24380476,-1326953533,-2135272727,1359311872,1508624104,421432147,1943681799,-329914109,50377659,1125615833,-1070450808,-2008873038,1976237575,-1017488391,-402188126,71105593,1625883508,-1152167444,-654114770,154929034,1532563826,-1626924896,-2041527162,78664132,-1142056727,-654114633,-1975314550,-2023865801,126506718,58010684,1273716456,1961442024,-306648829,1457424222,-972373366,-655817867,394808299,1245153347,1364416859,50379451,-2000669991,126370567,50377659,1124567769,-662028406,1397938823,989888699,91577306,-352321350,-1964078500,-2028949302,48090,1591411539,1935072903,1138426629,-620559637,1457424222,-620504441,225696391,-2023827197,24336094,-561553853,1976106582,616794836,-1227847041,-1014343424,-108339318,57924355,-789880087,1124168656,-1073035894,1424556916,303991275,1398364935,50379963,337545689,3390215,-637282045,118890121,-2135207077,717457920,-1965520190,-1966728505,995252984,-1979419942,-1596290306,-1073084648,-2135274124,1943681792,1743278853,-1974379776]},{"sector":7,"length":512,"data":[-1949594897,-2029578722,337546202,9824263,118759049,-779422326,4712537,717458011,-1965520190,-1966728505,-1161622792,-1957494784,-1626926562,512335427,-1988819182,1405311835,1526735336,-1964012975,337546187,-1948612857,-402188770,-628686769,118759049,-779422326,230288217,933412914,1397903624,118627979,-1245980025,1406731008,-1975318646,1121487423,-2007246277,-1639735529,125122440,168310688,-1156680512,1364402593,2669395,1005181187,1499093762,126505411,1135278731,-980793022,-227163894,-2041003175,1364369092,1355056799,-276118394,1961413514,-385649408,1558768385,12303104,-637282045,-1631287720,-2036398200,-997830460,50342587,-969438503,222035975,-536606604,1361546,-2041051256,1515822788,-397229221,57999411,-387267351,-1145372641,64553728,168266458,1499159232,11779011,-1162148885,-1965489408,931808023,-1162132797,-1999043840,931676951,-1964012861,-1906485,-2496430,995809927,512345050,-18349253,-358225688,-437715280,-359143174,-1142425879,-654114775,-1073084534,-242537100,1946434732,126501670,192266250,-1963095471,32499929,-1327699111,-1979241856,50378184,146359257,-1965489408,739912711,-373286399,-175445491,-1153248886,-654114775,-2000670127,33810439,-402148192,-12843522,216597365,1976106730,-352786173,259377406,-1950338470,280079098,-583931838,-18240791,-385649216,-1151735317,-654114777,-1975314550,931676727,-1021867957,-1393456303,-779422326,37507650,213589109]},{"sector":8,"length":512,"data":[-1974250717,-1327920387,9103642,50342331,168266457,-402426688,-396689527,280035733,1507648232,-1070451786,1101724043,-126497026,-1157350205,57999400,50378939,1258785497,-1796661366,1162216,-628631293,-972775749,-1253900281,-378804220,-2008862840,797459247,-1207450045,-73267024,-1564462590,-521665369,1482408936,1402913926,1355056799,512476294,126485737,57999676,1021747945,-385649404,-2040988124,1364369092,-2036348021,-997830460,50342330,1007127258,58020736,1543434216,260704254,1480786101,-1616984954,571984,931846659,797445436,-536606604,-988625270,-654112888,1515822680,-1017444472,394808138,1127712835,1132464070,1535117254,1457424222,-880087158,2276179,394844419,1127712835,1526728646,168310688,-402295360,-1017446303,1543408616,1374200041,126517429,-1426420925,1976434242,1371757045,-383874221,1007127044,-385649404,716832204,-1965489408,1958742535,126503704,705691203,63474183,571865,126540035,1499185162,126503875,91537418,1962936552,1499199940,-1950147920,1376053534,-745867382,2603330,260757763,1093634627,1125091403,1128476552,3259219,-2135827965,509507,-126498306,-1610606360,333973427,-1329591804,-1342016256,126376832,168265803,1371757248,851137362,-2015755520,-400903718,1515969347,1592312665,1023046399,1979054362,-1957473804,-1190860514,-654114775,1124075462,-117438522,-389850789,-397154427,126543625,58048522,-1612255511,-2041527162,394937284]}]],[[{"sector":1,"length":512,"data":[-1975547325,1020299994,-1978764798,126501647,977062654,-28637068,-1023521854,-889306959,-1047892108,1076682532,456943474,-256285837,-1426486524,1124841025,58313470,-1979694871,1965964295,2222096,-1631287720,-997810183,-339442096,-1426486302,-822197439,-1070409099,1476721826,1537131654,1019644611,1008890891,1948152323,-1960791821,-29250823,-18158642,1959722694,-1960791847,-29250823,-336169522,-430839347,1409241320,-1324928070,-630855654,-1325076294,-631379953,58048766,-1142545175,-256244462,-1962101500,126397682,-838974909,-396626571,-398335133,-397155489,-1168900327,263259376,-19255576,-385649472,-239409531,86227716,-622326859,-1172852250,350749970,-1966908454,602428112,-385649418,1364911723,-18618286,-1672390310,-2014787958,512335353,443679547,-1073036662,-105180043,1007127044,-972327648,-968670713,-968670969,-1973726457,-997810234,-1983609264,1392830750,82885187,-225768271,1107789996,1976172099,-2000669963,1358343,126409219,1124567107,-2008873080,126370567,-398306726,1482423881,-1616984954,-2041527162,37508036,-397272971,330367698,1524204264,2095584945,1975582425,-432412413,263266283,-19304728,1511421376,-1631287720,1355056799,1012057222,-385649660,-347937499,-2041029933,-91513148,263934634,-958790912,-968654841,666566663,853148416,1124567232,-2008873080,126370567,1007127131,1007907844,1008759816,-385649663,2129191787,991857661,867812099,-1311177984,1127188608,-109721090]},{"sector":2,"length":512,"data":[-1948036375,1392830750,582732683,-2015821056,297489114,1406731008,268305584,242550782,1976106563,1532648437,-385742906,-1973689561,-176079865,-1979468477,-1949249529,1111730938,-210383362,-791674704,-391447925,-1956905699,666589463,-1982266624,2680855,-957873998,1007187196,-33131494,-1292637246,-383874304,-959739132,716898823,-958856448,-2008350713,-489559785,82386571,582732683,-1244069120,-33060348,1958742543,-29113599,-1007520307,1223228789,-609294107,-370889496,-277489582,-449189805,1290279345,-997810216,-1312520624,-666769395,-1631287720,246534282,1540896488,-49026877,120830547,686299825,82885336,-401624750,-1057040353,-2036379046,-997830460,57938097,1490554600,1520354438,-756481163,21817571,-51899471,1975737303,-256158962,509444,-401886909,1952120977,-54007805,-56442830,-239381756,-402083580,-105185161,-402411260,867827823,-400903929,-256190521,-401493756,-12789825,-2031549579,33760483,46138048,46138048,-1245148480,120896256,196204803,-398260342,-1047862453,192218172,540805002,783286900,-18662680,-387615287,251978487,698413194,1925593600,-400510971,57926435,-1159482136,313591024,1020749544,1537897983,1007127235,-956730070,-29147385,-1007127095,1372097106,1507281640,-997810342,-1144748464,-637337567,141887486,1963458115,134103811,574407050,-2041046155,-1073045820,87871860,-521600139,-1341965085,-20679679,-1070414912,-997828413,1946369182,-1010824459]},{"sector":3,"length":512,"data":[1005116039,-383874304,884560644,-388431104,1531640581,50340281,-402129191,-1320026078,-689838054,82386571,-1311078589,-690624492,1968947210,-1143306294,-637337472,-605300089,53419659,67054265,1943682009,-207099470,179106443,-402229824,-91553745,81764522,-1209511344,-1961134862,994269913,1377072346,-225768267,121258668,-29161355,-369920563,1482351335,-663107330,431051459,-19499288,-389850432,1860755258,807308260,130435840,857639680,168266243,-385649472,1592386355,-2117432094,-1274889790,-1910387418,-1899852070,-1564462382,280691812,740198695,-370963712,749786929,-1157499230,130416823,572635962,129179273,-106774478,434690,-1576768606,681706597,8436480,119086729,-1996288325,-1157428194,512295802,61866978,-1157308510,512294918,-1212480717,168266247,857639360,-385649405,797573268,1258785347,1128466312,-176828930,509515,53681801,-402147653,-1073029365,792491124,-968157580,512303623,1011024691,-402033617,-1073029389,1525413237,-402651194,1396498151,1295794292,1007121564,-385649594,-722934950,-559028002,-515381190,-1978174307,1958742726,-511842045,272417418,1961427826,81765089,378078443,-397737206,376757931,803111656,-1595360021,-562435874,-518789062,119084681,-1957960469,1258490398,50994825,-543141045,171490052,-33235038,-997810240,-389773744,-2040998026,-1991008572,-1979391970,50378448,1524237274,-2029997127,1125616090,64653123,512447449,-1128724711]},{"sector":4,"length":512,"data":[402653931,-1274976070,-1943941862,-1160212792,263455035,113713613,348,-1274937159,-1105081049,12517736,35556096,-1950118399,4241881,1967891955,18927096,1396785746,538976288,13455171,0,0,0,0,0,536870912,1883319605,825765234,201,0,0,0,0,0,1818389861,1444967013,1769173605,840986223,221262126,707404810,539634218,1330795077,1869488210,168665134,1679847246,1667592809,2037542772,1634759456,168650083,-1978841052,1850280461,1717990771,1701405545,1830843502,1919905125,604638585,1766197773,1847616876,1713402991,1684960623,220465677,1936278538,1920409707,543519849,1869771365,604638578,1631717901,1768169572,1931504499,1768121712,1919248742,220465677,1158286602,1919906418,1970225952,-1121946514,2035485197,1819239021,1650545696,168650092,1396804109,77,1852114176,1919314276,536933477,538976288,1210064928,22597,859242496,825887245,842608705,825241648,16961,538976288,538976288,5132880,956301312,1127233606,959524933,959989061,4474438,860111922,927019843,1161113653,1144141368,973737269,959463729,808468787,1111832902,1093681712,826552387,910574916,825243203,910438724,960705591,1144008769,1093681713,876032067,960836400,1145456183,1110521925,168638770,809578810,808727865,1111901744,927084593,943206709,943075650,1128345923,808923190]},{"sector":5,"length":512,"data":[-1943490839,-1106836978,-1212219264,5290247,-1583025156,178454534,402700291,-1900429170,47872,637967038,126354570,-136296893,-1064380276,-1274459160,-1575957233,-1230897080,1009300487,-1274187262,1963408464,185383175,6819465,2696840,-1982100230,503533598,-1912602438,270436826,386906885,3153545,2891401,9445003,85335689,9576075,85466761,-1996041029,-1962897378,-1996461026,-1962601442,-1996460514,-1157294562,512314676,1153106028,1881049431,839814144,772705280,-1844540416,1845937920,-954728448,29190,951983896,16824584,-201539533,156625067,87426758,738641665,-400093184,-386200511,-38073613,23455745,-1190643522,-1070399232,-391384068,512426905,-706150356,1701336103,1296189728,1919242272,1634627443,1866670188,1953853549,1109422693,1667855201,1700138495,1869181810,826548334,540028974,2037411651,1751607666,1112088692,1866670157,539914354,825768241,536874495,1967795508,825765230,-1275068230,-1340617471,822527568,113639431,-1191180494,243859456,-398325969,108331075,-401561410,45678637,887636480,-1106873088,518525118,587646720,-1107296249,166203516,587646720,-1107295737,-397209454,-771027240,-1185208203,-953286645,-2096024828,-152960314,67813059,-1189154557,-645005312,186584203,-1274645303,186109185,-1957051447,-1996020962,-2130239601,-1996483647,-2130237553,-1996419903,-2130236529,1359023297,-1961983512,8898507,-402587648,-745861524,34759,-1031732992]},{"sector":6,"length":512,"data":[-1048510452,1340604428,8898062,-2017067008,-1979777015,-1996488297,-2130705009,-2130640959,-1996423230,-1996487785,-1610610801,-273414362,108266300,158663228,565901236,-1004344320,-389850130,222038127,1860698997,126496264,1975519811,-1230978066,1208367623,-1274711040,-1022309120,-402651461,-1155659851,-611450880,85335691,9445001,85466763,9576073,85204619,7085705,85335691,7216777,241091359,1285209686,402701910,-1882499754,-1106837498,-253014891,-1101656482,1431719066,-81261629,-1809342435,-1960931547,1026019614,-1374798322,68935719,386810648,1696358927,1058826268,1159479836,235146524,604245764,721693188,973354500,1006910212,1107574020,1409566468,1510234372,1594121732,1879337220,1996781060,2030336004,2063890948,1207959556,-1932637887,1442957654,-1000996141,1296912131,9162319,-1538960319,1224736909,-2101064635,-750433207,-733675391,137,-867415808,1163067527,1258325460,1258595401,1258660947,435268,-2067444415,-732626944,1392509064,1166464069,-1965800109,1414748416,8637765,-1538962103,142,0,604474063,-83104897,-176882372,-260702660,1599997834,67943325,1085401226,-1975270914,785615607,-1073084534,1134555764,787773854,-986052726,-628627339,1499120010,1587597450,-1329591804,73310975,548408692,1101724043,58052350,-1979123479,772205506,-1975318646,-1954601776,-29250823,-385649202,-1039529759,1130097017,-83307543,1532582233,921193299,64600837]},{"sector":7,"length":512,"data":[-1073594068,11913354,-1959864061,-397190377,-930478815,-1406209397,58031908,1124645865,930464058,-1406209397,2042628674,787647458,83880108,57945660,-1341848088,-385650176,-1957164904,179056370,2035964352,256259,1358528524,1900208,1527282409,-1406209397,2042628674,-1494531337,1007183337,-821988227,1134387038,-2127820918,-1073549710,-259267534,225556825,-1258344879,-1058470991,-1174405117,951649677,452616,-1190818118,-225769160,-2127778770,-1966931597,50378712,1121518555,-1406209397,1111689096,-1406209397,-347994232,948238301,1979711240,1600114433,1907972509,-1258335987,1961429048,-135034109,-16172924,-821987841,1503485791,1359868857,154711295,-29557821,-46398092,1137645172,-1925445750,-1041693835,1972255752,156494083,-821589429,1134387038,-2127820918,-1060110155,-397293430,317195051,-561553915,234076758,-1576947630,-208993112,-843776210,1140900611,1667855973,1851072613,1767994977,1818386796,1866661989,1853189485,1952539497,544108393,1717990754,1864397413,1718773110,7827308,1802725700,1769101088,1344300404,1702129522,1684370531,1936278528,1869488235,1699881076,7955553,1802725700,1684360480,1159749993,1919906418,-1031079168,24331324,-1654759729,91375932,551146,-1153225704,-796260806,1124567598,-126500854,-193606914,-1946385688,-368883938,402655384,-997996661,-1308156140,1958742598,1011331592,-1308462078,114682184,1397903611,-1962649880,1381653451,-1746353526,-816293352]},{"sector":8,"length":512,"data":[1520263006,1448582226,1019644496,1476555273,954747855,-402099198,-385940977,1485963787,-613168405,1486708574,1503577222,1364612958,-796200310,3062099,130472195,-6268672,-1140915194,-2023880839,-380545314,-1946476864,-402158901,468392713,-389313541,1600002962,48029,82386569,-346137765,-880018678,1578876648,1465818463,-1946432682,465955019,1600057835,-997828451,1532647838,-396994722,-70575131,1912609000,-10229501,-689435216,-401952741,1600003025,1448566429,-389300174,24446123,-1957604413,-1190860514,-654114770,1007127129,1589861129,1532665183,1448566361,-887295000,1537040222,604473944,1916808415,1931164703,-1186774245,-108329744,-1023524438,-1057046478,-997810183,-1228634544,98887947,1577336041,844668255,1591536576,-1973707425,1589643783,1925928535,-18618109,1486708574,-997810274,1959036496,738691610,1975519788,18475026,1375793896,-1631287720,-997810183,-1614510512,-2041527162,-1296026940,51111937,-1631287720,-937115622,916586764,-997828603,-997810274,449087056,82813632,-1631287720,1355056799,57984134,839224552,48359616,-1631287720,-1981217931,336259348,-1023122200,1793655666,-1654694146,225556824,-1394062511,-402230016,-1914109920,8251412,1968192556,10086409,-385871896,1827150224,99107072,-373280256,45221095,11976754,-1023243032,916651952,-1967115771,-389707032,130417259,81764352,-987052546,-1070403725,-1023068510,-375562402,1358631554,1493087464,-18283662]}]],[[{"sector":1,"length":512,"data":[-1654694147,1914421224,1946827796,1577315088,512466271,716768489,-19332352,74115335,-622263436,511568381,-74752317,1453731580,175497099,977012618,-373096078,-1880555497,50044932,-922875844,-922826498,126501827,24263228,1948269763,1007186676,-1057032912,180603134,1023112384,1013936651,-1606453986,-1073085696,-1572646717,472646400,-181650829,-29620365,126491509,-31553213,-1979664638,35555800,-1576882173,79364865,-1073063936,1124567747,-31553213,1066027778,272425451,512476021,-1762983170,-1060060930,1375928738,50510417,-393553273,-2029848344,-1990567462,1476591134,167773371,154977216,1827210098,-181388033,-922828546,50372803,426970940,359796028,50470539,1128467061,1125616195,-628672630,-352220440,50438313,1006828450,-1961724920,-1996291554,-1962630370,-1996291042,-352017122,50510733,-352209688,-997828475,-1966908514,1918974983,1937456377,-1017174795,1929382632,1915763962,-180732682,1916878019,-178569989,991857603,512344835,45089955,-1023214686,169773907,50377987,-136772647,985891803,-603780750,48825202,-373073152,414908819,-1899416830,6994369,42961958,130491904,-1014822211,-1091444732,-1406268738,343195658,-1073486798,-661929981,-1993954002,-1886640633,-420806654,-1064380276,-208416829,75735812,-1610257515,-241236519,96573189,-1425044568,-726923261,271296775,-536340503,585041752,134994951,-351760150,-1460920999,130540573,-402160925,1843791694,125495047]},{"sector":2,"length":512,"data":[-1241060131,14550931,150002439,-502728991,-1584985841,153127174,1344978176,-1107790871,1844007036,1283046904,-1107793943,1642678104,521780728,-1107797015,1441339840,744078840,-1107800087,1240014298,1067826680,-1107803159,1038689160,1093189112,-1107806231,837370093,1073200632,-1107809303,636052641,273792504,-1107812375,434725947,1328332280,-1107815447,233383638,641646072,-1107818519,32053020,1682226680,-1107821591,-169270614,582335991,-1107824663,-370603525,942325239,-1107827735,-571924708,732282359,-1107830807,-773247880,965721591,-1107833879,-974579208,983678455,-1107836951,-1175910505,461618679,-1107840023,-1377213288,128368119,-1107843095,-1578556363,755285495,-1107846167,-1779881818,128564727,-1107849239,-1981216153,274316791,-1107852311,2112424118,754236919,-1107855383,1911109486,649772535,-1107858455,1709778511,461356535,-1107861527,1508456551,127188471,-1107864599,1307117466,642563575,-1107867671,1105800305,1950399991,-1107870743,904484048,802602487,-1107873815,703137714,128171511,-1107876887,501815079,288407031,-1107879959,300508366,126795255,-1107883031,99184840,522173943,-1107886103,-102160618,291225078,-1107889175,-303471280,633257462,-1107892247,-504797943,577224182,-1107895319,-706145128,275496438,-1107898391,-907451215,128957942,-1107901463,-1108801620,1390919158,-1107904535,-1310120412,1097448950,-1107907607,-1511442326,1130020342,-1107910679,-1712765191,1185463798,-1107913751]},{"sector":3,"length":512,"data":[-1914102006,1199291894,-1107916823,-2115410974,1698479606,-1107919895,1978223002,1686814198,-1107922967,1776903085,1800519158,-1107926039,1575578541,1680981494,-1107929111,1374249793,1208466934,-1107932183,1172916071,433569270,-1107935255,971589939,1215413750,-1107938327,770263137,1211088374,-1107941399,568936527,250145526,-1075177472,-367525874,402657517,1110250,301918744,-672524288,-367525819,402669241,4279786,1695345176,-1914038272,-367525850,402655086,578538,523627032,-890628096,-367525858,402661102,496106,131656216,-404088832,-367525857,402663167,507626,198765080,1072306176,-367525875,402663703,4145130,127986200,-571860992,-367525825,402659797,5628650,1459284504,703207424,-1122500520,-1830212323,1058258421,-1107981079,-2031534314,758627829,-1107984151,2062101936,121159157,-1107987223,1860766306,170769909,-1107990295,1659462694,-1070461451,-401503767,-387450141,-397148635,260767145,1912732032,28805960,-388396544,-192282558,-402641944,-729153478,-402643992,1824063538,1960512007,-161173495,-389510172,-997588958,-939327308,567094196,292929546,-620051621,-872543372,1949252780,1949121559,-43390701,1912606440,-387937544,74579975,-527824171,180587203,-1963363109,1915759620,-183878413,-872485262,-1796684986,-1336720639,-55187446,-852839342,-964011231,-1342165784,3401773,585679498,-399659008,-377421783,-109050004,1913894244,1693024261,-980761090,-1979709208]},{"sector":4,"length":512,"data":[256193,-721512471,230983178,48771120,-2000385536,-389856505,-387450353,-397148847,260766933,1912732032,28805939,-388396544,-326434962,-402646552,-863305882,-402648600,-192217250,766771378,-1073077811,-1017442699,125098762,1017957374,-1023314630,-386094359,1396900091,484968624,750015228,-1973739059,-7083835,-1696056656,-389969153,984678281,-1962962712,-8394554,-67234839,-386758061,158597135,259275324,2030044904,-695575561,1124567759,-1966880002,-20829498,1912749256,1929723116,1397905896,-1961881925,-1966568719,613045992,1919024256,2080145416,-327154829,126496288,-1002813885,-906094731,-1976638347,2042628615,1515936524,1587371870,-1073064361,2025851595,126496489,2042628675,1590528760,168266286,-1950714432,-1973789986,1329844182,1140535629,-97366705,844386380,1414548729,2080438323,-1475309040,-82788848,-1484107693,-58720210,-2147126536,57867516,-1328587944,46410491,-1157581632,-670887901,1527221038,-670891849,1527221038,-16776472,-1889575200,-1660478714,-1957632257,-1979389642,1006644868,1007055608,1476555772,-815900477,341250676,352588958,356717869,360846692,363138057,310122158,346428511,355800332,359404875,201921930,381031853,227807642,296946697,201919497,201919497,201919497,300552675,201919892,201921027,201919497,201919497,305335305,578142754,-1991028580,-2012944098,767787799,1124075462,1127188547,1124075462,-968683640,1482358791,1021952925,1583044859]},{"sector":5,"length":512,"data":[119224063,-2041001130,1515822788,1525738331,-336897701,6201427,360038654,3022475,54992521,-1021130870,91537662,916635698,-1295820027,-58070716,1971387008,-1023233534,82386571,-1020017789,-1976646781,-1009715705,82386571,-1020083325,50798523,-1962466530,666616607,589169415,-1021342969,50801595,-1962466530,1394524959,50593979,-1173937378,-628228096,512628619,378078480,526059301,-383874109,797411844,780845824,11601713,-1325427224,-13834131,-1593858584,126355247,1493125865,-389773744,1240006659,2045268735,800807424,1947024391,1393032719,1543488232,124913464,-437580368,-1979709498,-9377785,1489176456,832750726,780845831,11601714,-1325447704,-19077011,-1593879064,126355248,1493105385,-389773744,-102170621,786977534,120634112,1947024474,1393032719,1543467752,124913464,-437580368,-1979709498,-14620665,1489176456,849527942,29016839,-1174148352,1402732546,-855591856,549778967,-990507403,-166890236,225706436,116070578,48962482,1558780338,1011898619,-1341819635,-2955254,-1013097640,119736007,116064256,119736007,-397213694,-2013856046,1962868736,-103159549,-18683822,839107203,1246424768,-1349887250,11599881,1398696112,669572747,-1070441474,690056,755592,821128,886664,952200,1017736,1083334,294110977,1392706304,83606354,1258293689,-517980288,130434042,82885376,1359052985,1965047680,8382723,1949056896,-102213361,1065373952]},{"sector":6,"length":512,"data":[-2140113920,645213247,-148379581,1312555189,28647284,427050300,1329333173,742134644,95752052,158616892,1396443061,-1259797644,1124315640,1946173312,742359058,-1975259019,887717903,-108992398,-387747067,-1349976566,-980811760,19196298,-922089867,-838938508,1929706880,1961691849,1958742534,-1982988798,-402648689,-1886650910,-1752498175,-504889341,9496829,-1946299928,-1962932849,-402651241,2145975770,622234368,63079175,-2081521488,-1973878038,-1974800699,-1410797887,279939837,-771510016,310872805,-2084238848,1122894786,1122896304,-389467326,58064202,-319171351,125116584,414380514,855238377,-2141496896,108266233,-1341789565,-2021069311,-2017066998,-385810432,-991363833,700142584,776160020,1128468363,158648587,-243936965,1527745326,-137238077,563081,298889,429961,692105,165831,1271070720,1845886976,-1778116864,738394112,1476493313,-1342128126,134242308,1610629127,-1073729527,-2147477486,3109,-956301312,467718,-955847936,34022150,-51320832,34758,-49879040,1962713576,193459730,-193593600,-289394110,690056,-84341271,-2021081038,-605552629,42452988,-402653184,-369360926,113705341,1827,113706731,132899,11767691,1381749643,-1796715695,-400657164,-399707029,1364850389,292868619,1925856089,1372228392,-193337269,-135724172,1482578424,-1948349613,-2046772065,1975519968,13887503,-498923640,-1024893960,-149820937,-398260342,-119406274]},{"sector":7,"length":512,"data":[-139204261,119736007,116064256,119736007,-1014824958,-2041554894,18933956,141823276,322701310,117620762,-639039608,587646971,-352321529,587646726,-402652665,-1073086335,-939799319,467718,-955847936,34022150,-66131968,171915,989921210,-2029882662,-130684454,119736007,116064256,119736007,-303562750,43486203,10455808,-371578112,113768471,1827,113706731,132899,-1946431512,167772807,436284612,-997549888,-186001269,587646967,-352321529,587646726,1392509447,-1996774936,1526729871,1375194089,-74127277,886774,-972458753,3463,518735282,952310,-972458753,3719,250296754,1017846,-972393217,3975,-857138766,210209527,-960493056,3207,266868341,-401312517,-1886651560,-922025982,-1259802508,976896,-1950131877,-1962719962,-385662178,803796811,295668475,771798784,372752266,264488738,-8437985,-397323440,-2013857002,1979645967,-81729374,38795,167819,-126563781,-402615832,-1963263238,167775111,-29198912,193431744,99154688,79856635,1122896816,-389467326,-1686832490,1965074668,-369827323,-919339700,1962575336,279506058,-186514059,-2080556055,45090282,689930,690056,1532623854,113754968,1827,113706731,132899,1405388376,-1996843544,1526729095,79137731,1174702592,573323,74839867,702347,309129,45583354,-1215738368,-1006960638,573323,440203,994444424,-1962641929,-1996485961]},{"sector":8,"length":512,"data":[-100661577,178059,45582662,-71042304,1381061456,-1168681442,-628228096,84942478,119748351,119736007,468189184,587646720,-402652665,110034962,549062435,-299847680,1512005215,-816293031,200944616,1108374738,27847746,-466482827,-13700981,-1021878092,396433394,392697705,-101914429,-335297917,74717732,952200,-1962546557,-102569781,49035,178059,-147072633,-1070461836,886664,-371618836,-957546670,16780679,-1276622141,-1966371847,872417927,176654338,-2013860352,1962868747,96633656,116032492,175444004,-2021078786,-645201905,-1679288341,-17438471,42437614,-1950086656,-2012842535,-352318585,167948300,-2013263225,1107298951,-1031552018,539290628,1541933429,-2000093447,-1023406201,1705164850,73835012,-1111881846,1975663104,73769476,820529987,-168957711,47955,74194569,552094555,-385649167,-186122113,742141168,854069876,1558729716,1813940723,-397714684,1702162691,753982184,973121978,-400657214,-398331697,-397610805,1967976647,32106755,753975016,57983546,183852521,-997810240,-1564178864,-857209754,-173152016,-211556271,-1974379943,-1982231811,-402364130,192148333,-745867382,73866889,1926904667,-211687165,-1631287720,-1595341964,773753601,512447232,1128988720,172165002,-385649401,-1975320353,931808023,512350855,-628686802,183531240,1021342912,1022719034,1124824574,-1950742646,1958885888,1558727434,-207230736,-388109493,-613093293,-1576947629]}]],[[{"sector":1,"length":512,"data":[786957113,-1972669197,-1971319611,-390057240,11596463,1963145634,1007127052,1477408040,-341916538,1007127149,-385649368,-396627237,-963972351,527811082,-2146646646,1320872074,-407219687,-73379316,-370111998,-963972517,58049034,1408414441,-896864630,1394181307,-1393456311,2025851465,-1393456136,-108298228,966968234,1007127043,1588819240,1230429831,-2299831,-991409317,-385649169,675086153,-1192752011,-275650321,-385649367,-1997996231,1474899183,512318463,512426030,-628685990,56106635,1651825211,1125091923,168266307,-997810240,616859216,1124567167,-1242431768,1490617088,1503577222,-397288840,512425999,-637336742,56237705,-346301817,-1948612665,990075934,-1393390630,-1616184949,1100979778,-1963952738,-1966921023,449153744,1257278151,-1963095479,1545505241,512475907,-628685988,762632763,-1975303341,-1614804473,-2041527162,-2004933436,-1796717817,1125092081,54734730,-997828391,-663201378,-6166447,-346301817,1478396879,-1948612861,-2029823458,1960459226,-1626895830,1134534211,-1639735394,1355056799,1491649670,-997828367,1963146398,5826565,-796213198,-637337418,-2024158229,1545505754,1004177155,-1971751718,-1639735545,-1617017953,-2041527162,619201476,1125092081,1480798090,1402913926,54319363,512348277,-1973746895,50377999,1138295769,512481927,-628686031,-1217078725,1360709817,118145074,-1969339489,-1639735529,1134507914,-1023314530,1478396755,1541028611,-1957431950,989868062,-344761382]},{"sector":2,"length":512,"data":[1263225683,-237770669,-402410149,-1017384523,-1947107096,-1979491298,-1949594897,-2029823970,1511951322,717457923,-1965520190,-1966728505,1310624248,790530820,1612613891,-247732220,-645202550,790530379,73834499,309641226,73997963,-880087158,73866891,-386837784,28373057,-1979421790,73769200,512426284,441122864,-322573888,1805828146,73769476,56106635,-880087158,72228491,512350467,512426842,-2025651409,1612614618,790530308,-1948632317,-108286734,-1639800918,1973305759,-41268752,512350602,512426844,-947256212,-628636918,3153547,1973308319,-241047293,1928343784,-258086653,-1963095479,-242095655,-1309624599,1948466177,-397294847,978976797,1007121602,-385649660,753463359,-628675347,-645202550,82386569,1271126663,1022181096,-402426589,1458105655,-260970256,-543108982,1942108676,-266868477,-1957494602,50651166,-1965423654,797590287,179106187,-1329374272,78690562,-1626820423,-2041527162,-286005052,-1631287720,-1947259160,-402445026,-379982071,28373308,-1190940487,-2036398160,-997830460,1492092136,983483526,-385650169,-1057034357,1125091907,-645251190,-402457694,-1228673199,-373280255,770181469,-385649912,-29560566,1688339829,-33035516,-385649472,512426106,1273495600,1478396172,73703427,57982986,-387200536,1128525533,56106633,854674152,87466688,-1594982680,-1073085333,-1746336908,82813182,58048522,-370203415,-957812605,-295573265,-387096855,417984781,-1897375249]},{"sector":3,"length":512,"data":[1223183359,-402230036,-1008074780,-1564462352,-1310194449,-385649913,-1057034098,417923957,1975582447,-284038909,82386571,50342585,-385351975,384364658,-303044370,921239472,1478396678,-1948612861,989868062,-1969261350,-397262073,-346421727,1390957554,-385649942,-38736169,-1962536728,-1979494370,101181635,48809866,-1974248698,100395203,-152516726,69110533,-634693113,-353844342,-389576187,-628685339,1344179742,520587779,1124456680,1976699722,-372512273,-368842669,-1997995150,108259566,57998652,-387023127,-796260759,-1979292440,106948848,1525209226,-386364922,-930478507,-1979297560,6332648,108316926,55580299,1055413083,-628220410,1126107016,180718153,1508865473,-387352343,58064397,753810665,-385649660,-628625873,50377659,1124567769,-662028406,73277065,-1996488517,-1979248098,-1160083513,-628686660,-393553661,126540423,24390716,-397323581,-2036339469,-997830460,1105912552,1407901416,-387068696,-2040992479,1582931652,-1974018425,-1957473592,-1257827810,-1982266624,-2029579746,1579060186,1943681796,-296228605,-628663717,1134497672,-1625847650,931700291,211807067,-117314816,1355056799,-2098674554,-321394451,-320083886,-561553831,-397323434,797633869,1457424222,-930478198,-2036378799,-997830460,1125616195,-1073072246,-1964440715,807308032,1943681792,1478396743,1926904579,-1227781569,1545505536,-2015755517,790531034,1943681795,8251651,-1631287720,-2031566454,1577081836,1381424775]},{"sector":4,"length":512,"data":[-319559599,-2023859623,1397839582,1125615683,-2036385912,-997830460,-1631287720,394937179,1496812099,-1975299493,919159575,-1973757305,1942305473,719882754,1489537733,1923007622,1828867,-838941186,126488180,1135278731,1509157698,1499027801,48759667,-1329374464,-20840928,-1946716983,-347952390,-997828362,1582914462,-2024350073,1359640026,82363786,-300226324,-561553831,-1621929642,-2041527162,-10688060,24380476,-1326953533,-2135272727,1359311872,1508624104,421432147,1943681799,-329914109,50377659,1125615833,-1070450808,-2008873038,1976237575,-1017488391,-402188126,71105593,1625883508,-1152167444,-654114770,154929034,1532563826,-1626924896,-2041527162,78664132,-1142056727,-654114633,-1975314550,-2023865801,126506718,58010684,1273716456,1961442024,-306648829,1457424222,-972373366,-655817867,394808299,1245153347,1364416859,50379451,-2000669991,126370567,50377659,1124567769,-662028406,1397938823,989888699,91577306,-352321350,-1964078500,-2028949302,48090,1591411539,1935072903,1138426629,-620559637,1457424222,-620504441,225696391,-2023827197,24336094,-561553853,1976106582,616794836,-1227847041,-1014343424,-108339318,57924355,-789880087,1124168656,-1073035894,1424556916,303991275,1398364935,50379963,337545689,3390215,-637282045,118890121,-2135207077,717457920,-1965520190,-1966728505,995252984,-1979419942,-1596290306,-1073084648,-2135274124,1943681792,1743278853,-1974379776]},{"sector":5,"length":512,"data":[-1949594897,-2029578722,337546202,9824263,118759049,-779422326,4712537,717458011,-1965520190,-1966728505,-1161622792,-1957494784,-1626926562,512335427,-1988819182,1405311835,1526735336,-1964012975,337546187,-1948612857,-402188770,-628686769,118759049,-779422326,230288217,933412914,1397903624,118627979,-1245980025,1406731008,-1975318646,1121487423,-2007246277,-1639735529,125122440,168310688,-1156680512,1364402593,2669395,1005181187,1499093762,126505411,1135278731,-980793022,-227163894,-2041003175,1364369092,1355056799,-276118394,1961413514,-385649408,1558768385,12303104,-637282045,-1631287720,-2036398200,-997830460,50342587,-969438503,222035975,-536606604,1361546,-2041051256,1515822788,-397229221,57999411,-387267351,-1145372641,64553728,168266458,1499159232,11779011,-1162148885,-1965489408,931808023,-1162132797,-1999043840,931676951,-1964012861,-1906485,-2496430,995809927,512345050,-18349253,-358225688,-437715280,-359143174,-1142425879,-654114775,-1073084534,-242537100,1946434732,126501670,192266250,-1963095471,32499929,-1327699111,-1979241856,50378184,146359257,-1965489408,739912711,-373286399,-175445491,-1153248886,-654114775,-2000670127,33810439,-402148192,-12843522,216597365,1976106730,-352786173,259377406,-1950338470,280079098,-583931838,-18240791,-385649216,-1151735317,-654114777,-1975314550,931676727,-1021867957,-1393456303,-779422326,37507650,213589109]},{"sector":6,"length":512,"data":[-1974250717,-1327920387,9103642,50342331,168266457,-402426688,-396689527,280035733,1507648232,-1070451786,1101724043,-126497026,-1157350205,57999400,50378939,1258785497,-1796661366,1162216,-628631293,-972775749,-1253900281,-378804220,-2008862840,797459247,-1207450045,-73267024,-1564462590,-521665369,1482408936,1402913926,1355056799,512476294,126485737,57999676,1021747945,-385649404,-2040988124,1364369092,-2036348021,-997830460,50342330,1007127258,58020736,1543434216,260704254,1480786101,-1616984954,571984,931846659,797445436,-536606604,-988625270,-654112888,1515822680,-1017444472,394808138,1127712835,1132464070,1535117254,1457424222,-880087158,2276179,394844419,1127712835,1526728646,168310688,-402295360,-1017446303,1543408616,1374200041,126517429,-1426420925,1976434242,1371757045,-383874221,1007127044,-385649404,716832204,-1965489408,1958742535,126503704,705691203,63474183,571865,126540035,1499185162,126503875,91537418,1962936552,1499199940,-1950147920,1376053534,-745867382,2603330,260757763,1093634627,1125091403,1128476552,3259219,-2135827965,509507,-126498306,-1610606360,333973427,-1329591804,-1342016256,126376832,168265803,1371757248,851137362,-2015755520,-400903718,1515969347,1592312665,1023046399,1979054362,-1957473804,-1190860514,-654114775,1124075462,-117438522,-389850789,-397154427,126543625,58048522,-1612255511,-2041527162,394937284]},{"sector":7,"length":512,"data":[-1975547325,1020299994,-1978764798,126501647,977062654,-28637068,-1023521854,-889306959,-1047892108,1076682532,456943474,-256285837,-1426486524,1124841025,58313470,-1979694871,1965964295,2222096,-1631287720,-997810183,-339442096,-1426486302,-822197439,-1070409099,1476721826,1537131654,1019644611,1008890891,1948152323,-1960791821,-29250823,-18158642,1959722694,-1960791847,-29250823,-336169522,-430839347,1409241320,-1324928070,-630855654,-1325076294,-631379953,58048766,-1142545175,-256244462,-1962101500,126397682,-838974909,-396626571,-398335133,-397155489,-1168900327,263259376,-19255576,-385649472,-239409531,86227716,-622326859,-1172852250,350749970,-1966908454,602428112,-385649418,1364911723,-18618286,-1672390310,-2014787958,512335353,443679547,-1073036662,-105180043,1007127044,-972327648,-968670713,-968670969,-1973726457,-997810234,-1983609264,1392830750,82885187,-225768271,1107789996,1976172099,-2000669963,1358343,126409219,1124567107,-2008873080,126370567,-398306726,1482423881,-1616984954,-2041527162,37508036,-397272971,330367698,1524204264,2095584945,1975582425,-432412413,263266283,-19304728,1511421376,-1631287720,1355056799,1012057222,-385649660,-347937499,-2041029933,-91513148,263934634,-958790912,-968654841,666566663,853148416,1124567232,-2008873080,126370567,1007127131,1007907844,1008759816,-385649663,2129191787,991857661,867812099,-1311177984,1127188608,-109721090]},{"sector":8,"length":512,"data":[-1948036375,1392830750,582732683,-2015821056,297489114,1406731008,268305584,242550782,1976106563,1532648437,-385742906,-1973689561,-176079865,-1979468477,-1949249529,1111730938,-210383362,-791674704,-391447925,-1956905699,666589463,-1982266624,2680855,-957873998,1007187196,-33131494,-1292637246,-383874304,-959739132,716898823,-958856448,-2008350713,-489559785,82386571,582732683,-1244069120,-33060348,1958742543,-29113599,-1007520307,1223228789,-609294107,-370889496,-277489582,-449189805,1290279345,-997810216,-1312520624,-666769395,-1631287720,246534282,1540896488,-49026877,120830547,686299825,82885336,-401624750,-1057040353,-2036379046,-997830460,57938097,1490554600,1520354438,-756481163,21817571,-51899471,1975737303,-256158962,509444,-401886909,1952120977,-54007805,-56442830,-239381756,-402083580,-105185161,-402411260,867827823,-400903929,-256190521,-401493756,-12789825,-2031549579,33760483,46138048,46138048,-1245148480,120896256,196204803,-398260342,-1047862453,192218172,540805002,783286900,-18662680,-387615287,251978487,698413194,1925593600,-400510971,57926435,-1159482136,313591024,1020749544,1537897983,1007127235,-956730070,-29147385,-1007127095,1372097106,1507281640,-997810342,-1144748464,-637337567,141887486,1963458115,134103811,574407050,-2041046155,-1073045820,87871860,-521600139,-1341965085,-20679679,-1070414912,-997828413,1946369182,-1010824459]}]],[[{"sector":1,"length":512,"data":[1005116039,-383874304,884560644,-388431104,1531640581,50340281,-402129191,-1320026078,-689838054,82386571,-1311078589,-690624492,1968947210,-1143306294,-637337472,-605300089,53419659,67054265,1943682009,-207099470,179106443,-402229824,-91553745,81764522,-1209511344,-1961134862,994269913,1377072346,-225768267,121258668,-29161355,-369920563,1482351335,-663107330,431051459,-19499288,-389850432,1860755258,807308260,130435840,857639680,168266243,-385649472,1592386355,-2117432094,-1274889790,-1910387418,-1899852070,-1564462382,280691812,740198695,-370963712,749786929,-1157499230,130416823,572635962,129179273,-106774478,434690,-1576768606,681706597,8436480,119086729,-1996288325,-1157428194,512295802,61866978,-1157308510,512294918,-1212480717,168266247,857639360,-385649405,797573268,1258785347,1128466312,-176828930,509515,53681801,-402147653,-1073029365,792491124,-968157580,512303623,1011024691,-402033617,-1073029389,1525413237,-402651194,1396498151,1295794292,1007121564,-385649594,-722934950,-559028002,-515381190,-1978174307,1958742726,-511842045,272417418,1961427826,81765089,378078443,-397737206,376757931,803111656,-1595360021,-562435874,-518789062,119084681,-1957960469,1258490398,50994825,-543141045,171490052,-33235038,-997810240,-389773744,-2040998026,-1991008572,-1979391970,50378448,1524237274,-2029997127,1125616090,64653123,512447449,-1128724711]},{"sector":2,"length":512,"data":[-1942446615,-1106836978,-1212219264,5290247,-1583025156,178454534,-167725053,-1900429170,47872,637967038,126354570,-136296893,-1064380276,-1274428440,-1575957233,-1230897080,1009300487,-1274187262,1963408464,185383175,6819465,2696840,-1982100230,503533598,-1912602438,270436826,418167557,3153545,2891401,9445003,85335689,9576075,85466761,-1996026181,-1962897378,-1996461026,-1962601442,-1996460514,-1157294562,512314676,1153106028,1881049431,839814144,772705280,-1844540416,1845937920,-940179456,29190,951984118,16824584,-201539533,164882603,87426758,738641665,-400093184,-386200385,-38073487,23455745,-1190643522,-1070399232,-391384068,512426963,-991363028,1701336119,1296189728,1919242272,1634627443,1866670188,1953853549,1109422693,1667855201,1700138495,1869181810,826351726,540028974,2037411651,1751607666,1112088692,1866670157,539914354,825768241,536874495,1967795508,825765230,-1275068230,-1340617471,822527568,113639431,-1191180494,243859456,-398325969,108331075,-401439298,45678637,887636480,-1106873088,518525595,587646720,-1107296249,166203993,587646720,-1107295737,-397208977,-771026763,-1185208203,-953286645,-2095902716,-152960314,67813059,-1189154557,-645005312,186584203,-1274645303,186109185,-1957051447,-1996020962,-2130239601,-1996483647,-2130237553,-1996419903,-2130236529,1359023297,-1961861400,8898507,-402587648,-745861047,34759,-1031732992]},{"sector":3,"length":512,"pattern":-151587082,"data":[1702125924,1869416973,1935762038,1633815053,1631072627,436866330,541806415,1176523841,541412425,1297040167,1414415693,1109403475,1380927045,1380982853,1162167119,1196312900,436866350,168650092,1953451556,1970234912,168649838,1261326116,606093102,1701734732,1869575200,1852795936,604638567,543452741,1763731055,1953853550,1818846752,604638565,1919902273,1684349044,673215593,692989785,690233407,-1226259830,-389641473,-1014300751,-1962959128,-153169465,-690913083,1458046324,-402199553,1374224281,1499094015,-1966896445,11882959,1509900520,-556678774,-780089866,1946203606,-13637629,1381097451,-1979665069,-14423864,-2135572086,104646436,-1071379852,-1069758604,-393559180,445914763,446043787]},{"sector":4,"length":512,"pattern":0,"data":[1119490027,12970242,1244475936,942501493,71220273,6045312,-1259899391,-838880754,1543911969,-1260686848,48019983,-1073077811,-404224652,-1578046720,983761655,-1173375997,567083786,-361381878,-1560074847,448004924,-855359814,-1547685087,111346436,53650179,-1207749469,-240975871,52404994,-591779916,201373954,243868109,448004872,-854573382,-1171803103,12124938,-1994273504,-1610402290,295829596,48472579,-402465605,180027445,3139587,-1274790214,-1591620326,950207290,48020227,-1593822744,950207292,272546307,567089844,-402453829,-1581645794,-855002110,-1272918751,-841774301,1975519777,679971637,747059968,-1020234496,-2021015501,-2021064664,-745865174,567087028,1411015,682885121,2920331,950084045,461867267,-854543360,2042282785,-1162417406,-1309998497,-591785804,-1172189950,567083786,-1274890822,-1272853239,-1272853247,-854740478,-854937055,-854937055,1850327841,1768710518,1919164516,543520361,1667592307,1667851881,1869182049,1236280430,1836016494,1769234800,543517794,1953724787,1931504997,610630249,544165552,1836019570,1919903264,1937339168,544040308,1679847023,1769239397,1769234798,1679847023,611021673,1937331120,544040308,1851880052,1919247987,610559346,1936607664,544502373,1953724787,1679846757,543912809,543452769,1769108595,1629513067,1797290350,-1339786907,255,17170432,1112359497,538988361,80564035]},{"sector":5,"length":512,"pattern":-151587082,"data":[0,0,16711680,0,1112080646,1397703757,1329799200,1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13172736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":6,"length":512,"data":[544498024,1870032489,544433515,2037411683,1752440876,1763733093,1802466926,1629516645,1818846752,1868767333,1918988397,537529701,1919950880,1634887535,1869881453,1919252000,544826985,543516788,1768976227,1713398885,543517801,1948283753,1931502952,543518049,1948283745,1864394088,1768384882,778854766,220203533,538976266,1701080941,539828256,1851877475,544433511,543516788,1701080941,543584032,543516788,1701995379,1864396389,1768693874,1881171310,1953393010,168653413,537529632,538976288,538976288,1701344288,1836016416,1684955501,1935763488,1870099488,1935761952,1864393577,1869182064,168653678,538976288,538976288,1414549280,542003017,1814569009,543518313,1852404336,695362932,980968736,1146047776,1347166277,825897300,942420531,168626701,538976288,538976288,1953524768,540943164,1886593069,1718182757,1919950969,1702129257,1970151538,1919246957,858599712,1965042720,1818326387,824211820,537463309,537463309,539828333,740307000,842215712,1634231072,1952670066,544436837,544367984,1701734764,168626701,544088073,540418093,540549164,1667592307,1701406313,540418163,941650543,1852402720,1881174885,1763734117,224945006,537529610,538976288,538976288,1230262351,840977999,1768171552,1634496627,1696606585,1293957752,541410383,1915498552,168626701,544022537,808722477,941632544,1751326768,1667330657,1936876916,1919250464,1852402720,218762597,1847593226]},{"sector":7,"length":512,"data":[1914711328,1814047776,1768452896,544437350,543516788,1701995379,1948282469,1752440943,1769087077,544499815,1814065775,544499301,1885696552,1702125925,1937055844,1718558821,1768453152,1886330995,1852795252,1819042080,1684371311,218762537,168632330,1802725732,2037411683,168635680,538976288,538976288,1397310503,1347371851,1919164505,1919164465,1998594610,1701995880,829580320,1818851104,1868767340,1767994478,1752440942,1869815909,1701016181,1936286752,1953785195,1629498469,1679844462,1998598770,543976553,1953394531,544106849,543516788,1735549300,221148261,538976266,538976288,538976288,1864394313,544828526,543516788,1936877926,1919164532,544434464,1667592307,1701406313,1948265572,1679844712,1969317477,1679848556,1769414770,1646292076,1937055845,1713398885,1679848047,757084786,543582496,1752461154,661808160,1918967923,537529701,538976288,538976288,1835999264,1702130793,1629498468,1852404512,543517799,1986622052,1868767333,1998616944,543976553,1679844706,543518319,1948282479,1679844712,1969317477,1679848556,168636018,537529632,1663049760,544238959,1768169517,1952803699,1663067508,1634757999,539780466,1886220131,1936028257,1819042080,540029984,1667330676,1864397675,540156006,1802725732,1702130789,1965564019,1629513075,1919251558,1868785184,1763735920,1870209126,1970479221,1667592307,543236212,1651470960,778921324,538970637,538976288,168632352,538976288]},{"sector":8,"length":512,"data":[1836016486,539828336,1701603686,1836016416,1701994864,1869770784,1835102823,1663053088,1634757999,544433522,1768300594,544433516,1948282479,1931502952,543518049,1679848047,1701209705,1953391986,1769104416,745760118,1684957472,1952539497,1965060965,1869881456,221262112,538976266,538976288,538976288,1936090735,544437349,1952540788,1852793888,1663071271,1634757999,539911538,1763733332,1802466926,1696607333,1919251566,1128669728,542133583,540110438,573730406,1866604590,1713399924,1852140649,1936026977,2036428064,1668180256,1701082476,1769104416,1931502966,1768121712,1919248742,537529715,538976288,538976288,1851858976,1868701796,1629513844,1864394098,1869182064,543973742,1701344296,1869770784,1835102823,1869770784,1937010797,1310731817,543519855,1952540788,1836016416,1701994864,1718558835,1852796448,2019914797,1768300660,544433516,1668641576,1935745128,1329802784,537529677,538976288,538976288,1768300576,695428460,1818851104,1633886316,543519605,1701650529,1734439795,1852383333,1633904996,1735289204,544173600,543584101,544432503,1853189990,1411395172,544434536,1847620457,1634562671,1868963948,1970479218,1713399907,1936026729,1851858988,1868832868,1847620453,168653935,538976288,538976288,1763713056,1667851374,543519841,1696624225,1919906418,1948265760,1881171304,1919381362,1814064481,1936420719,1919903264,544104736,543584101,1802658157,1093740576,539765064]}]],[[{"sector":1,"length":512,"data":[1667852407,1936269416,1701998624,1953391987,544106784,1920298867,1713399139,1936026729,537529644,538976288,538976288,1969365024,1869488244,1852383348,1329802784,1768300621,779314540,220203533,538976266,1852793632,1953654134,1411394848,1633951855,539780468,1768169523,1919247974,544501349,1836216166,544437345,1679844975,1701540713,543519860,1936744813,1986095136,1700929637,1965059685,543450483,1142978914,539906895,543516756,1936877926,1868767348,1767994478,543450478,224749684,538976266,538976288,538976288,544368996,1948282479,1801675122,1629499936,1998611566,1948283745,1931502952,1702130553,1752440941,1679848545,1847616617,1881175151,1886220146,1868963956,1752440946,1633951841,539911540,543516756,1868785011,1998611566,1948283745,1931502952,1702130553,537529709,538976288,538976288,1769414688,1948280948,1679844712,1864397417,1920213102,543908705,1851858994,1768169572,1919950948,1953525103,1919903264,1701344288,1952539680,539828325,1998615657,1629516641,1852793632,1936876918,544108393,1953724787,1948282213,1700929647,1702065440,537529700,538976288,538976288,1868963872,1868767346,1919252078,1735289204,1936286752,1953785195,1998615397,543716457,543516788,1936877926,1868963956,1952542066,544175136,543516788,544695662,1836216166,1679848545,1667592809,2037542772,1750343726,1634476133,1953719668,1937339168,745366900,538970637,538976288,538976288,791947296]},{"sector":2,"length":512,"pattern":437918234,"data":[942617905,1919885361,1952541728,539587173,1953394531,1936615777,1869504800,1919248500,1634231072,543516526,1752440877,1768169573,1634214002,1869488243,1700929655,1830841957,1684371055,544175136,1667330676,741351531,1684955424,1953456672,537529704,538976288,538976288,1919950880,1869182565,1713402741,1634562671,1629516660,1763730802,1836016494,1769234800,778398818,543574304,1920298873,1936286752,1953785195,1629516645,1763730802,1752440942,1702043749,1684959075,1919903264,745824621,1702065440,1701344288,1380927008,223625549,538976266,538976288,538976288,1835888483,543452769,1948282479,544434536,1802725732,544175136,1836216166,1629516897,2003136032,1936286752,1948265579,544105832,1702129253,1126310002,1163284047,774001746,544491808,1768976227,1629516645,1713400940,1936026729,538970637,538976288,538976288,1869768224,543236205,1802725732,1702130789,1634235424,1634214004,1752440947,1702043749,1684959075,1633953824,1763730804,1768169582,1679830130,1864397417,1920213102,691150955,544175136,543516788,544695662,1836216166,1702130785,1768169572,1952803699,221144436,538976266,538976288,538976288,1919898408,539785586,1919248500,544417637,1881173870,1919381362,1948282209,1869029487,1869768224,1752440941,1819222117,1953719652,544175136,543516788,1702323566,1713402995,1634562671,221129076,168632330]},{"sector":3,"length":512,"data":[1409324265,1226859880,1344294210,1869836901,543973742,1886220099,1919251573,1936278560,1953785195,1866670181,1919248752,1919243808,1852795251,808333600,1126703152,1886339881,1734963833,1226863720,1126190402,544240239,825768241,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1835102823,1869762592,1953654128,1718558841,1296189728,1953841440,544370536,1631854637,543451510,1953786188,-64983441,855703740,646599378,646447212,298647645,-388888911,-1057094876,431282314,-1057087027,1963064194,1543947788,113639680,-352255907,1543960105,58064640,973102242,1929403422,65124873,567085492,116793549,1979646045,6136323,6102586,1554048882,537266176,-1563886076,-527826852,134241696,-33274362,6136520,91604026,64556672,172289,-1020535924,12257973,1942174474,-1157057248,-1019541504,78976883,990118075,-1257344061,33602306,91472699,-351952198,-684816233,1036200707,91423104,64556672,67025410,567085492,64554742,-1173654527,567084106,-385843992,1793589251,7923712,64554742,-402426879,-1243086755,-700546560,1081419779,-1274779206,-1172189943,162792841,113648077,-1174404130,179569629,243278285,-2111831073,1845747518,116788085,1946289113,-852964094,-549551584,-814384893,64358086,-7476992,64554742,-392006655,-1662451709,67025663,-1174404119,162792484,1253712333,-1272853244,-1021195007,64620230,1544980992,-1309265408,-701593087,-684850685]},{"sector":4,"length":512,"data":[-668039165,-684840445,96254723,-855504712,-32673261,12812741,-668059120,-1007848189,332251187,64620286,64634498,1522693382,-385582150,113704789,-973077541,252934,6100618,28440114,64368266,-1207583557,332202760,-973201550,268485505,64499258,954789237,-599883264,-730529789,64497290,64366216,66880195,1153043829,-855002107,-10229727,872397289,-32256576,-2113676538,100916030,-1168463243,-286718787,1561758462,-1309265408,-701593087,67680259,242357197,775603710,-243989544,64751302,-1070349568,117314509,1048708060,1946551260,1515897601,-385548102,65205,0,512,1225395456,1818326638,1679844457,1702259058,1701868320,1768319331,218588261,168633354,1702063689,1931506802,1668445551,1768169573,1952803699,1763730804,1919164526,543520361,604638528,1850280461,1953654131,1918989344,544499047,1802725732,1702130789,544106784,1986622052,222306405,168633354,1769108563,1629513067,1797290350,1998616933,544105832,1684104562,168626041,1124732196,544829551,1886220131,1702126956,220465677,1919833354,1987011429,1650553445,1914725740,543449445,1869771365,1852776562,1970238240,224748402,1918981130,544499047,1802725732,1702130789,1970173216,1818386803,168626021,1426722084,1667592814,1919252079,1701601889,1769109280,1696621940,1919906418,544108320,1735549300,168653925,1735549268,1679848549,1701540713,543519860,1937075829,1701601889,604638471]},{"sector":5,"length":512,"pattern":-151587082,"data":[1851066893,1868785010,1634887030,543517794,1769104758,1696627046,1919906418,544108320,1735549300,168653925,1735549268,1679848549,1701540713,543519860,1937075829,1701601889,604638471,1632897549,1952802674,1936286752,1953785195,1920409701,543519849,1953460848,1702126437,218762596,1919894282,1952671090,1752440876,1931505253,1802072692,1851859045,1701519481,168626041,1124732196,544829551,1953459809,1064461672,794372128,218573134,168633354,1970499145,1667851878,1953391977,1835363616,125399663,35916301,803739507,-46421504,-276102538,-907284766,-1274898502,-853422839,44481056,-2130689047,1963387134,1008848137,-1103858687,1017905896,-1020038118,-1979703064,1829080,-472849456,-472849456,751026954,1023111728,738619914,1022587399,-389810928,-353828923,-1158188033,162792049,922689997,113705072,1329791077,6751942,6077005,567088820,695582730,2107883571,8364800,6988608,102683187,-853887969,-846520543,1555703988,-1893610240,-1275039738,-853422832,47168032,1224697065,1329813573,1920091469,1763734127,1162354798,1768300632,757949804,1986948963,1769173605,1629515375,1953656674,1176790117,543517801,544501614,1853189990,1681990756,1936028260,1970217075,1718558836,1851879968,757949799,1986948963,1769173605,1629515375,1953656674,1143235685,543912809,1701996900,1919906915,1969627257,-165385108]},{"sector":6,"length":512,"data":[1702129486,1650532467,544503151,1936287860,1936286752,1953785195,538976357,892286496,221329455,168632330,1411395121,1629513064,1701803125,543384952,1768120678,2037672300,1935763488,1701143072,1768300654,744777080,1684955424,1919907616,1864397675,1752440942,1931506537,1702130553,168636013,537529632,775031309,1701336096,1937339168,544040308,1701603686,1634214003,1914725750,1919252069,543450484,1965059956,1919250544,1935762208,1701584997,1919251572,1734418547,745433441,1953849888,1818851104,1869488236,1700929652,1668180256,1701082476,1852383332,2037276960,1679821325,1667592809,2037542772,1634038560,1701340018,1700929651,1937072483,1718558821,1847615776,1646294885,543519865,1953784104,1969383794,539583860,1948282473,1679844712,1667592809,2037542772,1953391904,673216882,2036689012,1852798752,1931506727,544698216,1629515375,1380533280,1663044109,1634561391,539780206,543452769,661545315,1700929652,1634886944,744777075,1886348064,744777065,1819239968,744777060,1768977184,1701602414,1919885412,1953852704,1952541801,774464613,1701336096,1380927008,542392653,544435809,542333267,1835888483,1935961697,1953456672,537529704,544104803,1965057378,543450483,1881173876,1948284021,1702061416,1818846752,1864397669,543236206,1802725732,1702130789,1718167584,1398362912,544434464,1684370293,1752440876,1768169573,1830841203,544502645,1702257000,1919705376,2036621669,1684105248]},{"sector":7,"length":512,"data":[1701344288,1937339168,225273204,1852776458,695494944,1850286126,1684300064,1869182057,1176513646,1095586383,1920409684,1936028777,1701344288,1869570592,1701978228,1685221219,1684955424,1886348064,544433513,1296912195,776228417,776818499,220203533,539898634,543516756,1953724787,1847618917,1663072111,1635020399,544435817,1735289203,1680696684,1702259058,1886745376,1953656688,1634235424,1634541684,544433515,543516788,544237924,1953068915,1931503715,1769239653,544434030,2037540214,1886218528,1635021423,539915374,543516756,223563588,538976266,544698222,1718513507,1936552559,1953068832,1752440936,1919950949,1919250543,1885955104,1769435936,543712116,1953785203,1936158313,1919903264,1836412448,544367970,1679844975,1702259058,1634607219,2037146989,168635680,924852256,745434912,1864382496,539828334,1919164465,224753257,538976266,1718558775,941632614,544108320,540155949,1986622052,168653669,924852256,745434912,1864382496,757098086,1679831840,1702259058,537529715,540483616,744908399,1864382496,757098086,1679832096,1702259058,537529715,775162381,1701336096,1936286752,1868767339,1767994478,1931506542,543518063,1920235621,1919950945,1634887535,539784045,1713402721,1869376623,757101431,220203533,538976266,1886348150,539828345,1684370293,1802071072,1752440933,1868767333,1663072624,1634561391,757097582,661940512,543236211,1668571490,1768300648,1948280172]},{"sector":8,"length":512,"data":[544498024,1870032489,544433515,2037411683,1752440876,1763733093,1802466926,1629516645,1818846752,1868767333,1918988397,537529701,1919950880,1634887535,1869881453,1919252000,544826985,543516788,1768976227,1713398885,543517801,1948283753,1931502952,543518049,1948283745,1864394088,1768384882,778854766,220203533,538976266,1701080941,539828256,1851877475,544433511,543516788,1701080941,543584032,543516788,1701995379,1919885422,1852402720,1919950949,1702129257,537529714,538970637,538976288,538976288,543516788,1835888483,543452769,544432488,544175988,1769169250,1886330979,1852795252,537529715,538976288,538976288,1230262351,824200783,1768695840,1881171310,1953393010,539587173,540702821,1162104653,1414548512,858864177,221785138,537529610,538976288,538976288,1014263916,757087779,1701868320,2036754787,1769107488,1919251566,1836412448,544367970,540224817,1937055788,1819042165,221323385,220203274,1830816010,941632800,539762736,540160817,1918986339,1702126433,1881174898,1814065765,224751209,151653642,757100064,740308512,1931491360,1768121712,1936025958,1864381984,540549234,1701734764,1701847155,1852383346,168650851,538970637,538976288,1327505440,1330205776,540155982,1936286760,2036427888,2019893289,1330454586,941638980,225586224,151653642,757099808,540029984,808984620,1634231072,1952670066,544436837,544367984,1701734764,168626701,544088073]}]],[[{"sector":1,"length":512,"data":[544350253,543957036,1718184051,1948283764,1931502952,1701147235,1869881454,1701344288,1734963744,1864397928,1701585010,673215590,1701864818,1684370529,1702065440,543584032,1936287860,1953525536,544108393,1869376609,694445431,168626701,1678380320,1667986281,544829551,537529645,538976288,656416800,1263749444,1498435395,829580320,846357536,1752637474,543519333,540111460,1819044215,1852793632,1852399988,1701344288,1970238240,543515506,1802725732,1702130789,1851858988,1919164516,1769414706,1663069292,1635020399,1948282473,1948280168,1701278305,168636020,538976288,538976288,1226842144,1852776550,1948285292,1713399144,1953722985,544367648,1931506537,1768121712,1684367718,1752440876,1701060709,1819631974,1919164532,1818851104,1700929644,1702065440,1868963940,1919164530,539828274,1646290537,543716463,1931965028,1701994784,538970637,538976288,538976288,1768779552,1684370548,543236140,1735289203,1679844716,1702259058,1886348064,1769414777,1646292076,1868832869,1864394094,1752440942,1701060709,1819631974,1919164532,537529646,538970637,1868767264,757100653,1936286752,1953785195,1868767333,1918988397,1663052901,1634757999,544433522,543976545,1948266548,1801675122,1718558835,1679831584,1701540713,1936028788,1937057824,1717641317,544367988,1886348134,1718165625,1970239776,1937077024,1952671088,1881170208,1818390386,221146469,538976266,538976288,537529632,1713381408]},{"sector":2,"length":512,"data":[1886220131,1713384736,543517801,1886220131,543519329,1735357040,544039282,1868767277,1918988397,840987493,1818846752,1864397669,1752440942,1634934885,1864394093,1768169586,1919247974,544501349,1986622052,539784037,1768189545,1702125923,1886724211,544175136,168636465,538976288,538976288,1864376352,1702061670,1948283764,544498024,661548900,1868767348,1918988397,1411395173,1852383343,1701539702,1852121132,544367988,1329808930,1713393741,1713385838,773993070,1953448480,1768300648,1634624876,544433517,544825709,1818455657,543515765,1986622052,1886593125,1718182757,1936876905,538970637,538976288,538976288,1684955424,1953456672,1918967912,1886330981,1852795252,673213537,543516788,1735357040,544039282,1836020336,695432304,1867391022,1948280180,544498024,1886220131,1936028257,543584032,762212206,1954047348,1818846752,673215333,1751348595,544432416,1297040174,538970637,538976288,538976288,1818846752,539587429,1819044215,1969316640,1629513075,1936026912,1701273971,1684957472,1952539497,543649385,1696624494,1998612079,1713402721,1684960623,1750343726,1763734377,1869488243,1818324338,1919903264,1668641568,1768300648,745760108,1684955424,1701798944,1869488243,537529716,538976288,538976288,1852383264,1633904996,1629513076,1919230062,544370546,1752440877,1919950949,1634887535,1869357165,544435055,544370534,1696624225,1830839919,543912545,1212231976,1998597161]},{"sector":3,"length":512,"data":[1751345512,544434464,1936028272,544501349,1931505257,1668445551,1768300645,745760108,538970637,538976288,538976288,1953849888,1953459744,544106784,1297040174,1818846752,221148005,168632330,538976288,1986948963,544502373,1867784237,1952539680,857746533,1718182944,1701995878,1713402990,1634562671,1864397684,1768169574,1952803699,1830839668,544436321,1702257000,1701143072,1937055854,1646290021,1329864825,1411395155,1713399144,1953722985,1852793632,1852399988,1948279909,168650088,538976288,538976288,1679826976,1864397417,1920213102,543908705,1851858994,1635197028,1752440947,2037588069,1835365491,1634235424,1768169588,1869488228,1919950964,1953525103,1919903264,1634235424,1952539680,1411395173,1931502952,1852793701,1635197028,1752440947,2037588069,1835365491,538970637,538976288,538976288,1953068832,1752440936,1768169573,1852776562,1634890784,840985443,1684955424,1684628512,1869770784,544501869,544370534,543516788,1702125924,1763716384,1635197044,543236211,1986948963,1769173605,1931505263,1702130553,1869881453,543515168,1684370293,538970637,538976288,538976288,1919903264,1852793632,1953654134,543649385,1802725732,1702130789,1769414771,1948280948,1713399144,1953722985,1919903264,544498029,1948282740,1847616872,1713403749,1634562671,1768169588,1952671090,779711087,1701336096,1952541728,544502629,1953724787,221015397,538976266,538976288,538976288,825177128]},{"sector":4,"length":512,"pattern":437918234,"data":[825765685,544370464,1702125932,1663052146,1635020399,544435817,1953459809,544367976,1851877475,757097831,1701344288,1919509536,1935763488,2003791392,1701143072,1869422702,543450486,1948282740,1801675122,539766816,543452769,1752461154,538970637,538976288,538976288,1701998624,1970235766,1868963955,1952542066,1918967923,1852383333,1886220131,1651078241,539911532,2032166473,544372079,1802725732,1702130789,1918967923,1852383333,1701344288,1667592992,543452783,1836216166,539784289,543519605,543516788,1297239878,168645697,538976288,538976288,1663049760,1634561391,1864393838,1752440942,1679848297,543912809,1713401716,1634562671,543236212,544695662,1802725732,1752440876,1696624229,1919251566,1329799712,1380275790,539894356,1663071305,1701408879,1818304627,1768300652,225666412,538976266,538976288,538976288,1836020326,1679843616,1701540713,543519860,1952540788,1935763488,1701344288,1667592992,543452783,1952539688,1852383333,1919509536,1768169516,1852776562,1802662944,539570720,1948282740,1847616872,1713403749,1634562671,1684370548,1936286752,1953785195,168636005,538976288,538976288,673194016,1920102227,1948265593,1701995880,1847620391,1919950959,1634887535,1869881453,544171808,1836020326,1701344288,1684827936,544502629,1948282740,1847616872,1936029541,1868963956,1952542066,168635945,436866336]},{"sector":5,"length":512,"pattern":-151587082,"data":[-1948712192,-922854453,-1992039051,-1996476386,1510163742,-31145334,-1031090038,-661994710,-954546550,57931914,-1310659863,-1964256509,1912749255,33602307,-1020607862,-963979126,-125122790,-857144461,169773536,-1982167293,-1996477410,-1962725602,1159629283,807308035,-388331776,-634658677,1532185419,-1142869784,-655873157,-522983209,553523433,1702132034,1919295603,-385850011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":6,"length":512,"data":[-1942446615,-1106836978,-1212219264,5290247,-1583025156,178454534,402700291,-1900429170,47872,637967038,126354570,-136296893,-1064380276,-1274428440,-1575957233,-1230897080,1009300487,-1274187262,1963408464,185383175,6819465,2696840,-1982100230,503533598,-1912602438,270436826,418167557,3153545,2891401,9445003,85335689,9576075,85466761,-1996026181,-1962897378,-1996461026,-1962601442,-1996460514,-1157294562,512314676,1153106028,1881049431,839814144,772705280,-1844540416,1845937920,-954728448,29190,951983896,16824584,-201539533,164882603,87426758,738641665,-400093184,-386200385,-38073487,23455745,-1190643522,-1070399232,-391384068,512426963,-991363028,1701336119,1296189728,1919242272,1634627443,1866670188,1953853549,1109422693,1667855201,1700138495,1869181810,826351726,540028974,2037411651,1751607666,1112088692,1866670157,539914354,825768241,536874495,1967795508,825765230,-1275068230,-1340617471,822527568,113639431,-1191180494,243859456,-398325969,108331075,-401439298,45678637,887636480,-1106873088,518525595,587646720,-1107296249,166203993,587646720,-1107295737,-397208977,-771026763,-1185208203,-953286645,-2095902716,-152960314,67813059,-1189154557,-645005312,186584203,-1274645303,186109185,-1957051447,-1996020962,-2130239601,-1996483647,-2130237553,-1996419903,-2130236529,1359023297,-1961861400,8898507,-402587648,-745861047,34759,-1031732992]},{"sector":7,"length":512,"data":[-1048510452,753401868,8898064,-2017067008,-1979777015,-1996488297,-2130705009,-2130640959,-1996423230,-1996487785,-1610610801,-273414362,108266300,158663228,565901236,-1004344320,-389850130,222038253,-320339083,126496264,1975519811,-1230978066,1208367623,-1274711040,-1022309120,-402651461,-1155659725,-611450880,85335691,9445001,85466763,9576073,85204619,7085705,85335691,7216777,241091359,1285209686,402701910,-1882499754,-1106837498,-253014891,-1101656482,1431719066,-365430077,-2093510867,2049867317,-1153974226,-1659978738,-215232713,-1425090777,1662828559,303972636,1360011042,1462522924,824978988,388772908,419698692,1090795268,1292124676,1376014596,1409569540,1577343236,1879337732,2114220292,-1996194044,-1778085884,-1744529660,-1710974716,301828,1229015040,-917074738,47404545,1325646934,-833663667,-1865592949,1279480393,1090556357,-1918614188,-1831386798,1162412032,1233306700,-2116860596,-1982577408,0,-2016654263,-733654272,1229652101,1397425316,1145767332,1090520740,8701261,-1999350528,-733066943,-650031985,1392509075,1166464069,-1965800109,1414748416,8637765,-1538962103,142,0,604474063,-83104897,-176882372,-260702660,1599997834,68598685,1085401226,-1975270914,785615607,-1073084534,1134555764,787773854,-986052726,-628627339,1499120010,1587597450,-1329591804,73310975,548408692,1101724043,58052350,-1979099415,772205506,-1975318646,-1954601776]},{"sector":8,"length":512,"data":[-29250823,-385649202,-1039529665,1130097017,-83283479,1532582233,-1897378989,65256197,-1073594068,11913354,-1959864061,-397190377,-930478727,-1406209397,58031908,1124669929,930464058,-1406209397,2042628674,787647458,89647276,57945660,-1341825560,-385650176,-1957164810,179056370,2035964352,256259,1358528524,1900208,1527306473,-1406209397,2042628674,-1494531337,1007207401,-821988227,1134387038,-1606678646,-488045707,1973566486,385149187,-529366740,-466436094,-1185288053,777063919,61977855,-922481943,-1735517221,461147419,1768341,96188928,-402114375,-927334394,154712325,-1406209397,24346924,-1210545469,64684800,-225754407,126397486,-225754557,126397486,-136451262,-16238460,-821987841,1503485791,1359867833,137934079,-1962691863,948238323,1979711241,1600114433,1907972509,-1258335986,-71104200,91553340,376765756,126501839,58035516,1007229929,-385649266,-1974793811,1600048903,126501789,11895084,-930430768,57272401,1577408232,-1168712057,-1336799631,78160385,-13700213,-1023158348,1986348032,543515497,1986096725,1634494817,6646882,1835888451,1667853941,1869182049,1969365102,1919247974,1702260512,1869375090,1766064247,1461742451,1702127986,1869762592,1952671092,1140876389,543912809,544501614,1684104530,1766064249,1293970291,1634296933,1920091424,-83856785,1144832650,1590624627,1228709214,1760167282,739770376,108313411,-1976643446,-1073069305,-889259915]}]],[[{"sector":1,"length":512,"data":[1223226485,1193184252,144239107,-947185664,521454723,172405255,-1308068672,1946303559,-381111806,1408960281,840087272,174170816,-1576378206,61868642,-1340192792,174039556,-1341497950,173974136,-1594110117,-1073083793,1335890292,1975519747,175153162,58048522,-820836632,1397903611,-1962648344,1381653451,250135178,-816293336,1520263006,1448582226,1019644496,1476555273,954747855,-402099198,-385940977,1485963787,-613168405,1486708574,1503577222,1364612958,-796200310,3062099,130472195,-6268672,-1140915194,-2023880719,-380545314,-1946472905,-402158901,468396672,-389313541,1600006921,48029,82386569,-346137765,-880018678,1579890152,1465818463,-1946432682,725412043,1600057835,-997828451,1532647838,-396994722,-70571172,1912609000,-10229501,1307053488,-401952725,1600006984,1448566429,-389300174,24446129,-1957604413,-1190860514,-654114770,1007127129,1589861129,1532665183,1448566361,-886281496,1537040222,604473944,1916808415,1931164703,-1186774245,-108329744,-1023524438,-1057046478,-997810183,-1228634544,99281163,1577337577,844668255,1591536576,-1973707425,1589643783,1925928535,-18618109,1486708574,-997810274,1959036496,738691610,1975519788,18475026,1375793896,-1631287720,-997810183,-1614510512,-2041527162,-1296026940,51505153,-1631287720,-937115622,916586764,-997828603,-997810274,449087056,82813632,-1631287720,1355056799,57984134,839226088,48752832,-1631287720,15270773]},{"sector":2,"length":512,"data":[595716388,-1023120664,1793655666,-1654694146,233814360,-1394062511,-402230016,82378784,8251428,1968192556,10086409,-385871896,1827154183,99107072,-373280256,45221101,11976754,-1023241496,916651952,-1967115771,-389707032,130417265,81764352,-987052546,-1070403725,-1023068510,-375562402,1358635513,1493087464,-18283662,-1654694147,1915434728,1946827796,1577315088,512466271,716768489,-19332352,74508551,-622263436,771025405,-74752317,1453731580,175497099,977012618,-373096078,-1779892201,50044932,-922875844,-922826498,126501827,24263228,1948269763,1007186676,-1057032912,180603134,1023112384,1013936651,-1606453986,-1073085696,-1572646717,472646400,-181650829,-29620365,126491509,-31553213,-1979664638,35555800,-1576882173,79364865,-1073063936,1124567747,-31553213,1066027778,272425451,512476021,-1762983170,-1060060930,1375928738,50510417,-393553273,-2029846808,-1990567462,1476591134,167773371,154977216,1827210098,-181388033,-922828546,50372803,426970940,359796028,50470539,1128467061,1125616195,-628672630,-352218904,50438313,1006828450,-1961724920,-1996291554,-1962630370,-1996291042,-352017122,50510733,-352208152,-997828475,-1966908514,1918974983,1937456377,-1017174795,1929382632,1915763962,-180732682,1916878019,-178569989,991857603,512344835,45089955,-1023214686,169773907,50377987,-136772647,985891803,-603780750,48825202,-373073152,414908825,-1899416830]},{"sector":3,"length":512,"data":[6994369,42961958,130491904,-1014822091,-1091444732,-1406268618,343195658,-1073486798,-661929981,-1993954002,-1886640633,-420806654,-1064380276,328454083,77832965,-1778021483,649004874,101949447,-1761203297,1755842043,142322449,-1459073876,-1880550904,131129352,-603481377,149555331,759753481,-466774036,-85784513,130476039,-418912794,1692207090,134985223,-620267298,1860241768,159900169,-1996039289,-1124071016,-169258966,1350352375,-1107824663,-370586503,1196998135,-1107827735,-571924711,432061943,-1107830807,-773247911,500874743,-1107833879,-974569563,596164087,-1107836951,-1175895768,1089322487,-1107840023,-1377222665,1688321527,-1107843095,-1578561455,1681636855,-1107846167,-1779871956,651607543,-1107849239,-1981209026,387759607,-1107852311,2112447556,581615095,-1107855383,1911104181,167493111,-1107858455,1709783082,521977335,-1107861527,1508453285,746110455,-1107864599,1307130255,435731959,-1107867671,1105803937,127385079,-1107870743,904469379,1687731703,-1107873815,703137702,607501815,-1107876887,501820676,682016247,-1107879959,300484521,174570999,-1107883031,99160153,146193911,-1107886103,-102159116,930004470,-1107889175,-303487302,642760182,-1107892247,-504816769,946322934,-1107895319,-706148460,127581686,-1107898391,-907467188,745651702,-1107901463,-1108773824,1422966262,-1107904535,-1310117930,129154550,-1107907607,-1511454813,388480502,-1107910679,-1712778960,1691270646,-1107913751]},{"sector":4,"length":512,"data":[-1048510452,753401868,8898064,-2017067008,-1979777015,-1996488297,-2130705009,-2130640959,-1996423230,-1996487785,-1610610801,-273414362,108266300,158663228,565901236,-1004344320,-389850130,222038253,-320339083,126496264,1975519811,-1230978066,1208367623,-1274711040,-1022309120,-402651461,-1155659725,-611450880,85335691,9445001,85466763,9576073,85204619,7085705,85335691,7216777,241091359,1285209686,-167723434,-1882499754,-1106837498,-253014891,-1101656482,1431719066,-365430077,-2093510867,2049867317,-1153974226,-1659978738,-215232713,-1425090777,1662828559,303972636,1360011042,1462522924,824978988,388772908,419698692,1090795268,1292124676,1376014596,1409569540,1577343236,1879337732,2114220292,-1996194044,-1778085884,-1744529660,-1710974716,301828,1229015040,-917074738,47404545,1325646934,-833663667,-1865592949,1279480393,1090556357,-1918614188,-1831386798,1162412032,1233306700,-2116860596,-1982577408,0,-2016654263,-733654272,1229652101,1397425316,1145767332,1090520740,8701261,-1999350528,-733066943,-650031985,1392509075,1166464069,-1965800109,1414748416,8637765,-1538962103,142,0,604474063,-83104897,-176882372,-260702660,1599997834,68598685,1085401226,-1975270914,785615607,-1073084534,1134555764,787773854,-986052726,-628627339,1499120010,1587597450,-1329591804,73310975,548408692,1101724043,58052350,-1979099415,772205506,-1975318646,-1954601776]},{"sector":5,"length":512,"data":[-29250823,-385649202,-1039529665,1130097017,-83283479,1532582233,-1897378989,65256197,-1073594068,11913354,-1959864061,-397190377,-930478727,-1406209397,58031908,1124669929,930464058,-1406209397,2042628674,787647458,89647276,57945660,-1341825560,-385650176,-1957164810,179056370,2035964352,256259,1358528524,1900208,1527306473,-1406209397,2042628674,-1494531337,1007207401,-821988227,1134387038,-1606678646,-488045707,1973566486,385149187,-529366740,-466436094,-1185288053,777063919,61977855,-922481943,-1735517221,461147419,1768341,96188928,-402114375,-927334394,154712325,-1406209397,24346924,-1210545469,64684800,-225754407,126397486,-225754557,126397486,-136451262,-16238460,-821987841,1503485791,1359867833,137934079,-1962691863,948238323,1979711241,1600114433,1907972509,-1258335986,-71104200,91553340,376765756,126501839,58035516,1007229929,-385649266,-1974793811,1600048903,126501789,11895084,-930430768,57272401,1577408232,-1168712057,-1336799631,78160385,-13700213,-1023158348,1986348032,543515497,1986096725,1634494817,6646882,1835888451,1667853941,1869182049,1969365102,1919247974,1702260512,1869375090,1766064247,1461742451,1702127986,1869762592,1952671092,1140876389,543912809,544501614,1684104530,1766064249,1293970291,1634296933,1920091424,-83856785,1144832650,1590624627,1228709214,1760167282,754319368,108313411,-1976643446,-1073069305,-889259915]},{"sector":6,"length":512,"data":[1223226485,1193184252,144239107,-947128832,521454723,172405255,-1308068672,1946303559,-381111806,1408960281,840087272,174170816,-1576378206,61868642,-1340192792,174039556,-1341497950,173974136,-1594110117,-1073083793,1335890292,1975519747,175153162,58048522,-820836632,1397903611,-1962648344,1381653451,250135178,-816293336,1520263006,1448582226,1019644496,1476555273,954747855,-402099198,-385940977,1485963787,-613168405,1486708574,1503577222,1364612958,-796200310,3062099,130472195,-6268672,-1140915194,-2023880719,-380545314,-1946472905,-402158901,468396672,-389313541,1600006921,48029,82386569,-346137765,-880018678,1579890152,1465818463,-1946432682,725412043,1600057835,-997828451,1532647838,-396994722,-70571172,1912609000,-10229501,1307053488,-401952725,1600006984,1448566429,-389300174,24446129,-1957604413,-1190860514,-654114770,1007127129,1589861129,1532665183,1448566361,-886281496,1537040222,604473944,1916808415,1931164703,-1186774245,-108329744,-1023524438,-1057046478,-997810183,-1228634544,99281163,1577337577,844668255,1591536576,-1973707425,1589643783,1925928535,-18618109,1486708574,-997810274,1959036496,738691610,1975519788,18475026,1375793896,-1631287720,-997810183,-1614510512,-2041527162,-1296026940,51505153,-1631287720,-937115622,916586764,-997828603,-997810274,449087056,82813632,-1631287720,1355056799,57984134,839226088,48752832,-1631287720,15270773]},{"sector":7,"length":512,"data":[595716388,-1023120664,1793655666,-1654694146,233814360,-1394062511,-402230016,82378784,8251428,1968192556,10086409,-385871896,1827154183,99107072,-373280256,45221101,11976754,-1023241496,916651952,-1967115771,-389707032,130417265,81764352,-987052546,-1070403725,-1023068510,-375562402,1358635513,1493087464,-18283662,-1654694147,1915434728,1946827796,1577315088,512466271,716768489,-19332352,74508551,-622263436,771025405,-74752317,1453731580,175497099,977012618,-373096078,-1779892201,50044932,-922875844,-922826498,126501827,24263228,1948269763,1007186676,-1057032912,180603134,1023112384,1013936651,-1606453986,-1073085696,-1572646717,472646400,-181650829,-29620365,126491509,-31553213,-1979664638,35555800,-1576882173,79364865,-1073063936,1124567747,-31553213,1066027778,272425451,512476021,-1762983170,-1060060930,1375928738,50510417,-393553273,-2029846808,-1990567462,1476591134,167773371,154977216,1827210098,-181388033,-922828546,50372803,426970940,359796028,50470539,1128467061,1125616195,-628672630,-352218904,50438313,1006828450,-1961724920,-1996291554,-1962630370,-1996291042,-352017122,50510733,-352208152,-997828475,-1966908514,1918974983,1937456377,-1017174795,1929382632,1915763962,-180732682,1916878019,-178569989,991857603,512344835,45089955,-1023214686,169773907,50377987,-136772647,985891803,-603780750,48825202,-373073152,414908825,-1899416830]},{"sector":8,"length":512,"data":[6994369,42961958,130491904,-1014822091,-1091444732,-1406268618,343195658,-1073486798,-661929981,-1993954002,-1886640633,-420806654,-1064380276,328454083,77832965,-1778021483,649004874,101949447,-1761203297,1755842043,142322449,-1459073876,-1880550904,131129352,-603481377,149555331,759753481,-466774036,-85784513,130476039,-418912794,1692207090,134985223,-620267298,1860241768,159900169,-1996039289,-1124071016,-169258966,1350352375,-1107824663,-370586503,1196998135,-1107827735,-571924711,432061943,-1107830807,-773247911,500874743,-1107833879,-974569563,596164087,-1107836951,-1175895768,1089322487,-1107840023,-1377222665,1688321527,-1107843095,-1578561455,1681636855,-1107846167,-1779871956,651607543,-1107849239,-1981209026,387759607,-1107852311,2112447556,581615095,-1107855383,1911104181,167493111,-1107858455,1709783082,521977335,-1107861527,1508453285,746110455,-1107864599,1307130255,435731959,-1107867671,1105803937,127385079,-1107870743,904469379,1687731703,-1107873815,703137702,607501815,-1107876887,501820676,682016247,-1107879959,300484521,174570999,-1107883031,99160153,146193911,-1107886103,-102159116,930004470,-1107889175,-303487302,642760182,-1107892247,-504816769,946322934,-1107895319,-706148460,127581686,-1107898391,-907467188,745651702,-1107901463,-1108773824,1422966262,-1107904535,-1310117930,129154550,-1107907607,-1511454813,388480502,-1107910679,-1712778960,1691270646,-1107913751]}]],[[{"sector":1,"length":512,"data":[-1914108018,1892204022,-1107916823,-2115428577,655801846,-1107919895,1978208603,1699790326,-1107922967,1776887230,1695137270,-1107926039,1575559783,345554422,-1107929111,1374228587,1689370102,-1107932183,1172899759,128761334,-1107935255,971592423,639942134,-1107938327,770261353,946519542,-1107941399,568935258,1190772214,-1107944471,367609512,520797686,-1107947543,166283131,1675804150,-1107950615,-35035844,1234877941,-1107953687,-236362614,1672330741,-1107956759,-437687471,1806548469,-1107959831,-639015887,1665252853,-1107962903,-840349689,1197981173,-1107965975,-1041688105,1228127733,-1107969047,-1243002767,1214365173,-1107972119,-1444329425,1213185525,-353000471,-167768344,966634,284027638,-253037056,-352976880,-167767554,4577258,1052371702,1307244032,-352976831,-167746292,2526698,124709622,-739576320,-352976888,-167764171,2018026,518974198,-1846872576,-352976889,-167770152,2090986,654306038,-1091897856,-352976889,-167769128,868330,689433334,1072363008,-352976833,-167770208,4185578,433449718,-487918080,-352976811,-167749894,5777898,756923894,-1108011799,250167059,1058455029,-1108014871,48835895,766557685,-1108017943,-152500424,174243316,-1108021015,-353826259,1680260596,234153193,1263583282,1023083240,1007187008,1006925007,1476687144,1477563625,-400497431,-387450169,-397148657,260767123,1912732032,28805960,-388396544,-192282558,-402641944,-729153478,-402643992]},{"sector":2,"length":512,"data":[1824063538,1960512007,-161173495,-389510172,-997588958,-939327308,567094196,292929546,-620051621,-872543372,1949252780,1949121559,-44832493,1912606440,-387937544,74579975,-527824171,180587203,-1963363109,1915759620,-183878413,-872485262,-571948218,-1336720638,-56629238,-852839342,-964011231,-1342165784,3401773,585679498,-399659008,-377421783,-109050004,1913894244,1693024261,-980761090,-1979709208,256193,-721518103,230983178,48771120,-2000385536,-389856505,-387450381,-397148869,260766911,1912732032,28805939,-388396544,-326434962,-402646552,-863305882,-402648600,-192217250,766771378,-1073077811,-1017442699,125098762,1017957374,-1023314630,-386099991,1396900420,115869872,750015228,-1973739059,-7083835,-1696056656,-389969153,984678281,-1962962712,-8394554,-1157759511,1357451301,278216979,1125160258,-1790701419,278218000,1192269126,2026770581,275697424,-737122864,1305219163,613210128,1106935808,-1073069965,378027124,-2134701473,846340346,173938312,-2134297661,645087738,-92245781,-2011204857,-1022730986,-1073036662,1228685684,1217925235,-218755918,-997527414,-1073561346,-219598357,1089044731,1122552066,1007907859,1007776803,1007514667,-402295763,48960340,-906049026,-138690166,181874192,-1965852480,-1744151242,-619980661,-1959915916,-1324284769,-741463546,13861867,378194827,1587546719,1373828618,280545419,-137219311,-1072997903,-796162700,302000105,-15198700,134611970]},{"sector":3,"length":512,"data":[235732746,274338320,307958099,345641842,387978708,435492992,488840064,-397271330,-922025930,314181748,886880256,116847095,1979646053,1136283656,-290017280,4373080,-289109266,1639581557,51178496,378100462,113639526,-1023410075,6690443,125104650,6620870,-1007555585,-225815557,1946161128,1949973513,452623,-1973684359,126537686,-1010106813,-1037384054,37538046,87878770,1381623923,300661587,-930418293,-1974015862,1643937828,-58718094,-2147257477,-1976688404,977683207,-32016956,786724297,-1073084534,1532693625,-1654694310,173430622,-1073034304,-1976637064,-1073069305,-846530439,126496350,-1166688246,1515904651,1137694346,-80655025,843927363,1414548730,1347221810,16266068,309269081,312152709,-1974447109,-2147471705,91420924,1929182336,-816097277,-1003816016,11845634,51511483,126562008,50378587,126562008,190555,1600053503,119211663,1357315997,82392715,3048586,108197948,41155644,1582875480,873746895,-518620394,538380822,1595359511,-2113108201,1494780695,-2095694828,303491350,1226254359,-2028509417,-1827173876,303265560,-1878227186,-2029222125,-2029222132,-2029222132,-955006964,-2029121005,-2028740596,-2029222132,-2029222132,269256460,1975656980,1397791778,82386569,-1014818936,509485,797459267,509507,1125091395,1526728646,-373056168,1532557789,456589150,1489720839,1503577222,-253011110,-346465446,1587565547,1975582208,773753621,1193183488]},{"sector":4,"length":512,"data":[583502339,1958805187,-1564462587,-1017445066,719930546,-2131066629,45220469,-383874109,868451076,784565187,-789182582,-383874109,851673860,119520195,119741955,-1144840309,503514919,529205027,120306627,119741955,516104075,67156819,119741955,-1912602438,-1911059494,-1996156898,1527194902,512475935,-2020997911,-1966931921,-1324928722,-6952960,753429936,-5904129,-2012794976,-11867897,-997830568,-385874968,-397213879,-1151729543,222037807,134090612,-4003757,1913075803,-351424505,509669,1894254474,-1022916353,-1564178856,-1966930127,-1324928466,-12195840,-588747344,-11147010,-2012794720,-17110777,-997830568,-385874968,-397213959,817561646,222059015,134090612,-9246637,1913075803,-351424505,509669,552077194,-1022916353,-1564178856,-1161623758,65732609,-1677720902,11817043,-990505011,-166824672,225772740,1946273014,-350703091,-350506490,-384191998,1348008445,91557180,-756544848,-1654957825,587646915,-352321529,587646726,1392509447,-151072024,-16777081,2062091124,-488090888,63079422,1257160754,-1973752246,-1325397585,1583919104,-388068525,844889639,176654528,193431552,210208768,226985984,243763200,260540416,277333504,-2017001216,50528273,-71609773,637188,541032523,-968623391,-256180217,25213188,541032529,2145977205,742359040,-396816524,-2142174983,1886650431,1965834112,-1024965850,1006679541,-1256229810,1950694401,1006875929,1007907919,-1257278420]},{"sector":5,"length":512,"data":[1951218693,1007138057,-385649581,61994837,4161603,1065357940,1139832108,-377483382,-2132250060,-479001095,-1996616984,-1979707217,619285189,168195329,-19893047,83722445,-318060173,-1073084812,-838991244,1150857,-1946295576,-1962933873,-402652265,-1863778847,-36575232,364427,497547,-386016536,378208383,-1031600347,-293556221,1493363331,1257162122,-387006070,-1349845589,61931536,-2020940334,-989200366,-301743485,-301354942,-919387582,1979534056,-126490365,1965074668,-1292770809,-125310696,1532608562,1946352000,99255046,-1997667920,-973075833,16777351,-386070551,-1152125083,1128470022,1125092142,1959332675,1976646409,260779761,1927922523,144148982,76515584,110070016,177178880,42452736,-1023410176,100663371,68616302,50331798,25166124,12583512,6292656,4196104,3148128,1577664,796032,0,119736007,116064256,119736007,-253231102,8898300,115867648,-56497923,-2013916556,1979645963,-1070447884,176654574,-139532032,-2000669958,-402650233,-2016936741,2,-67116312,-956203543,467718,-955847936,34022150,-1282438400,1540590336,-397717166,510980911,754124520,1509258984,1959922513,-902080239,-896849806,350767953,-385649421,1582954392,-561294504,12361611,-1073028986,-739766411,1124567040,-379848478,-1293289885,1124567797,-503234840,1424579576,587646966,-352321529,587646726,-2097151481,1347957443,552125574,1947020289,1007156744]},{"sector":6,"length":512,"data":[46144019,-385382393,113769433,1827,113706731,132899,167805416,-70456896,119736007,116064256,119736007,250085378,44010492,16759296,41081403,-689317241,587646966,-352321529,587646726,-402652665,-1752433683,-1618280446,-634716160,-940132119,467718,-955847936,34022150,-70260736,165771,19710986,-1969700838,-371684412,113768085,1827,113706731,132899,-73275309,823176,-160634533,-1796713647,227014395,158662400,886726,-347753984,243791390,158662400,952262,-348540416,260568590,175439616,1017798,-384192000,-2020936083,-1073086452,821190,-401181440,343210767,-1946461976,184550031,-386894647,250085556,-1017554176,54863499,54730379,-386536215,-1618281681,11993105,348097070,-1010359784,2134843151,1364414719,-151316760,-16773241,552116853,9931771,42961664,1959410432,9562360,-84215064,755594,1115013130,-2021080834,-386203637,-1031537915,-301223932,-919387582,1962579688,547941531,-186514059,872238313,-91887415,-1460893068,-502958832,-46405132,-1341789565,176622082,176654336,1509682688,-943499173,467718,-955847936,34022150,-997828608,-90838957,624520,-1215577253,76152836,146770758,1979136768,179800836,79137024,-1215563264,-1991376894,-83885385,146770883,112691968,1174702080,74839867,702347,440201,45583354,-1215740416,-1006960638,1364414715,1465261650,-1912602438,270438106,590806789]},{"sector":7,"length":512,"data":[587646727,-402653177,113704987,132899,-1895820568,-1173937402,548405280,526278638,1482381658,-97785649,276091403,-1460911550,839480577,787516388,423474431,2115620803,1159284249,-320290023,63079417,1947870444,243763204,99255040,-488060021,12553209,45583104,1004111616,839677175,226986176,-645141504,-318811415,886726,-397753599,-880019021,690058,-2021129676,-152174582,-16774265,-1031587724,-360453115,1963992070,-2000093686,-1962930297,-401085479,-169281125,-2020872450,-1005977598,108386699,755592,45092075,689930,690056,-2084311486,619447490,-402033376,-922814117,1017736,175225795,-973066567,-498925561,1863223546,1880000522,-1963277558,201597959,-2012792319,604271623,-79334140,126548675,-352319546,126548489,-2013131696,87316487,-1006944396,1879492346,126484490,121242916,359991176,-1963277317,1946396679,973343760,-1475709945,-2012842750,1946498055,-87819517,175048446,-1963277317,973284359,1946650631,175087626,57803052,-83202142,512447427,188940334,-1155959589,263785074,-804812288,-804752424,-805014824,-2096663848,-303955005,-1957575845,184549783,-277587502,-397192616,1894318004,1879492351,78774026,1508913640,1398495322,3028735,1351464017,512350859,870908739,387315,19138442,175291331,-453639244,-71051261,1381061456,-1168681442,-628228096,84942478,-1342168902,1583345184,1532582431,-857157800,-402426625,1405353784,61934261]},{"sector":8,"length":512,"data":[645187900,1979595843,-1257797108,1006678274,-350784409,1979661381,-1190688191,-1606680574,45421684,-1573122639,-397332363,978911293,-1976405272,-397325336,1692987019,-85422610,1959922673,-211687416,1935397259,39016475,-9049916,1528269123,1583072094,1443817662,-1628895350,-249566734,-386823959,820571735,-1192744722,686313712,-1017632274,1541932209,-239605521,922702681,1907949614,-1917562614,250132816,-228136623,54206089,48824246,-1981576205,1006847262,1529574797,1946224630,-26417149,-746103975,54206091,-301602741,-390199436,820598286,772704754,-1092974848,-380236305,-1313672895,1022518505,-402361304,-389812299,-1073021048,-922875276,1836255804,988480433,-397408374,1398336971,225744188,242520124,1484119356,-350615105,435601160,297731051,702746,61888337,-922828542,1444686014,-22943401,-320710305,797623131,-1863823279,1479112173,-1056812199,-2130801944,259317245,1955659136,-1778548721,-1511517579,-389850115,-1017381453,1543354088,-265819709,1022487529,-386304728,-922812668,-311229892,-1159003983,1223163908,-402426626,1405353396,45203506,1543481320,1972387712,-315234297,-245634722,-237049525,544548924,1409208296,108314634,37538046,229749619,1543471080,1972387712,-317855737,-248256162,-239343285,1374749416,-252188590,-1979255136,-186102832,-402164500,-399708981,-1031082157,1930042344,-274470653,-397190822,1156056299,113160,1946228968,635982615,-637314559,-1070409081]}]],[[{"sector":1,"length":512,"data":[-1342114328,15788033,720077232,-521616549,-385649163,1352727266,1958742538,1360956175,512447242,-1957492145,1393185566,-1973724838,125495489,1537394058,1958740490,91443919,-351833112,127133699,-387878310,-596377411,1352843314,13035530,-141896822,510967818,-947238069,376619010,173217417,-1996015640,-1576382178,1537215055,-1563363830,512428624,-637334951,1609095815,1277070080,172924938,-1962468376,-1962256610,722098454,1917220058,-388331744,1031012453,-411779062,512481927,1319111244,-1597470198,-393606565,-352304920,1272707026,46631499,1125806784,120711251,1977289547,1453349624,1958742538,173776904,334024950,-14227200,-1979034208,173449416,24494346,173777091,-1444353910,1590200838,1364647559,45175634,-387132951,378079648,512297559,-620033447,1453506954,-2048343286,-1957670138,-1609937890,-2115499442,-1990502394,-1576383458,1340607054,-1965356279,173384385,-276698941,753621736,1408185064,512350855,2112357687,-279975700,-1166002759,1491600627,-280368913,172105353,1201848370,1323850506,-1174294033,-1075314688,-2135862783,-385876038,-2023882314,-1070442786,74635835,-628635394,-1995815262,-1995816930,1527397910,-349837237,-397212043,451610418,753596136,1408122600,-386992920,-1497693727,67602948,-402159608,512356075,12192324,941000960,924748554,-1965358331,1926811842,1129533974,-784143407,3401962,-633644198,535364466,-1948612610,941525963,-637320438,-947201533,242401282]},{"sector":2,"length":512,"data":[-1948612782,1138426841,-634660217,512318025,-645199304,1404889922,-1982167214,-1995814882,-401982946,378077429,-396752310,-621346579,-1996488517,1527397406,1392517864,1109298002,1008634122,974555914,-1982190838,-1962264034,-150321122,1209960923,-145008118,1342484698,1381192275,171710091,172105355,-637281533,171712137,171581067,-628631037,171974283,510974523,512428659,-633664962,594742132,168445600,-349735488,172466209,510967810,1201670123,1941963274,-396666347,1156055130,-1608783104,-1073083834,1532626036,1532629227,-402635288,108201436,-402299160,1532626247,1976106584,-1957510399,-150321130,1209960922,1524270858,1243515731,-1982167286,-150320610,1793678298,1025412095,924748037,991857413,958302469,-305534715,1024887634,-1948646651,512449227,-637336261,-1950098809,-1979038690,1975519939,1975978503,-1009088527,-487070670,-2147093878,-1009481216,-376838069,1625880948,742141161,-397282956,-2023822173,-397191458,-1151734443,126485669,58245130,603983337,-1157134209,126487111,126402826,-1166138695,1156118915,2091245,-1947321624,51003934,64685019,-364189477,1508711656,-316020646,1525488360,-1178346873,12222720,-317462528,-227161858,-1561599767,-397407640,619244823,-1073063935,-2081881228,-387586048,-397258262,283700417,1398364673,1944919784,-317855741,-48330429,-317986810,-85458061,512312300,1290274555,-135767292,1364349696,83617874,117118603,50331835,1976106714,-1161065478]},{"sector":3,"length":512,"data":[-637337593,-355345785,-355341615,117251723,-389313711,-1151734651,-637337596,-2015755430,-633644070,1592329075,260594667,1127188547,117249675,1128470409,1877721098,66185299,10283099,2095598418,1946531304,-397285348,-1143306452,976101905,1258910727,-160051714,-1017455993,1558764167,-1966211352,-561553723,395006038,1397900099,1860754055,-19887612,-385649206,-338624508,-1957956117,50673430,1540066266,1128470411,512447314,55182649,1541048282,1509961448,1392072793,1510228200,49473618,1755336787,1975519754,76146693,-655883285,-396666876,451412708,189422083,1541240274,-907521085,-385650173,-1017386327,753385192,966918576,-357701629,-1763114124,54108906,-2015786157,1406796762,44888459,-1210545472,-654098176,1532615303,-940642365,498790598,-1564462558,1491667553,575395073,-870167100,1423057490,577588514,-970826811,1573331553,577226786,1109595329,105784074,613177379,-752653629,-150985951,47578,-621328405,12241547,-146871552,-339047462,-137721032,-147657766,-339047462,23718134,725352629,758908532,-973208972,-397359734,-1897397888,1357402625,1949056001,-369628925,1493270760,1975519832,9758790,-388920494,-628686706,174235738,678680784,-397192624,-880147674,1398463111,1493212904,-628665765,50331835,1976434394,-1930931206,-637314304,1490745178,74701008,-621290505,-1594021400,-1073608095,-397407118,1381040824,1526531816,-1073588135,378079858,-645200581,87891593]},{"sector":4,"length":512,"data":[1638055986,1085326090,-2135948565,168452539,-1022916601,71090826,1793655666,174236393,180783811,-385649472,-1031083683,-1022730078,168452256,-1141345088,-637337600,-92944130,-963978617,1939652610,-355382783,1939729105,214338270,1123060416,46566083,-1157205056,-145546077,-373191974,-1031078729,1929516008,-384571133,1712753091,-378410998,47699,-253210542,-368580376,1355188817,174432856,1960512347,1662945643,4450314,-1073549708,512477322,-1976694170,1975517703,-388503293,91537722,-347913405,597277165,126496337,-1073559414,-1073083021,-930424624,1122521937,1129929472,-14709970,256227,1405341044,-1979030085,1958742535,-1961886185,-1979030754,512312071,540805731,1614603892,539755122,-1152138405,134089317,174268043,1662945611,-389850358,1027407811,725379444,758969716,-1548089739,-336899548,1006633146,1020490796,1021277243,1019966266,-1966640592,67013338,64685019,752550874,-1227847120,1943667456,-399251197,-2031560057,-1009748481,-1157661976,-1252916745,1916877864,1918581779,-9836541,1118501515,125057852,-243937794,1541933289,-387364631,619249622,-1009088535,-1593848344,512428645,-2023880093,-1320134946,-432216062,-134291479,512476122,-174061837,512344838,-173930765,512475910,-75299085,-117017776,-216101949,553615366,-276821902,-216102624,-1014906106,512303024,-1950152973,-2130250978,1916727547,-1950091002,-2147028194,158474495,531688321,116596361,549945539,116596361]},{"sector":5,"length":512,"data":[-1967027517,-771730162,-1979255546,-1023315256,116592383,-1077506877,-946948096,116596363,839354918,570881542,637990150,-963770576,-773223485,-628383766,-489487695,78762755,1939792595,12747012,-216626912,-1965716730,1426519754,343146752,-937293904,-388857680,-1324943966,32166659,-1022954730,-937294928,-1062156030,-173872942,-754798330,-216661526,71090950,116789107,1946222677,-167697396,116826840,-286669832,-162156058,116826849,1436599288,1958742528,2028800749,41990950,67204,-338623884,1923074875,-880063741,209253898,13171329,-944110478,-1013005568,868471347,-387211319,-1174350405,116785459,1946222677,1139527941,-1597779453,-1983709099,-1995805922,-1979254002,-174022696,-788581882,-33262880,-1996952633,-1643484866,-13496973,-1959863549,-1993991009,-1022726882,640820797,640165414,-789174716,570765862,87041733,-705248441,-705247990,1191518246,650453699,-1018755832,1191522342,-1830287677,-773158144,-772943379,-2133199123,-376829983,-771024268,-1977193612,-466467067,-114591670,-838935344,-925698443,-594878430,516737,2018314421,92939997,321607,-219423606,-925637582,76071690,-1004354746,-335547928,1055393328,-2081780992,-305068091,-305009199,-304939083,-494874366,1951247367,1566727,-169082955,-4927098,-333257518,115919498,1798736128,851642122,180933604,-2323773,-1962250970,-1090061546,-946948096,116604555,174798475,174657162,-315434189,780846076,-2115500298]},{"sector":6,"length":512,"data":[173843198,116797064,851937987,1959076546,851937803,180691654,-101174568,1427016387,1942344192,1032332871,-1627384088,1032463951,243975070,-841875371,-2010762637,-1977202883,264763197,-1960479488,-1962626617,-738424077,-2146491160,-321908761,-561264878,1019281985,738357785,704934937,-168135743,-1207910461,1049347982,780797683,378144501,915016284,-617478410,-1019377114,-17146,1174396648,1929349864,-9312251,-1779894926,1032333055,116604553,116731528,-578040950,-1962491129,-4593430,1929335528,125062413,1946121192,1441608691,1049175019,780667468,861211214,-402265107,158596915,-11081659,1021900147,-214005249,-181499898,-2010752506,-1949595075,851642333,73769664,-1979423070,12433927,74826298,1124361634,-507910069,1407614184,-1996488517,1527016478,-508958645,2145977205,-511842304,1949056044,-457054190,-471078829,74194569,-1930933413,-396004127,-1171463837,-1036386135,1491607156,1424507361,1357401313,58019041,-402527767,976019783,-385649470,-1073027604,1355056799,1721943174,-514463740,1374043368,1508111080,-41266854,512350602,-51903383,-1978960925,-1982625033,1527015198,57858619,1491333353,1956562054,27322627,3022475,807308115,-1975301376,118113031,-538377355,394937088,-2026403261,773753306,-388331776,-1073028865,977068148,-29559436,-1975317643,9157127,175424058,-521803701,1273246952,-588718613,1406891232,966918576,-474093565,-980784268,-393576436,1055440946]},{"sector":7,"length":512,"data":[-1577013021,208995129,675022730,-2041049227,1844158148,675022730,1793655669,-1863820317,180783843,-1977649726,-1971319611,691911400,224770642,50045010,-353767286,180783842,-385649214,-1974213823,-1144354066,1230186867,1236070795,-126304246,212660619,-1426486400,54108867,675022730,-2023836811,1229543134,1543494888,-531765173,1240007541,1965571327,-532551668,702552808,971572085,-535697153,-11015892,773753179,1511951104,-1948612861,990074910,1398961370,1128468362,-1073084534,1355056799,2133116038,-398260344,11920013,-2040997629,2019139268,266883546,1511951104,-1982201085,-2029823458,-940876838,512481927,-633666724,-1951599989,1117760249,-1639866466,-1047859083,-796212438,-954546806,1229648010,-645202550,56368777,1545505731,1004177155,1395487962,126501699,-2036350966,-997830460,126385956,-500963261,-1975316598,-654097617,-1631287720,1373141081,-2013290008,-806659110,56106635,512481927,-628685990,712301115,1134495626,-1639735394,-1617017953,-2041527162,-504895292,-1631287720,91554620,838883560,-1227846976,-338033920,-628663861,56368779,-633611641,126515572,-1617017953,-2036359613,-997830460,-508303293,-1975316598,-2041035985,55811780,1963146457,824084944,260725507,-654114635,-2025596669,824085466,1004177155,-1179159334,844180151,-1626928448,394960451,-1969339489,-1639735497,1405288821,56106635,1918622267,512447477,-633667536,1407939419,1397443403,1541563112,1156055989,-389850142]},{"sector":8,"length":512,"data":[512483855,-276167844,512478090,-628685992,56237707,-1037384822,-947201910,-125123046,72228489,53419659,73408137,-1964913944,1272548093,53419657,168060576,-1961724736,-1979422434,-1949594897,-402364642,-790044191,-1576947488,-259390357,738485664,807308033,-1072018688,853364457,74162880,-1962646110,-1979492322,-1949594897,50613790,1511950809,790530819,-628669693,73408139,53419657,-225715653,-1426486356,-1617018209,-260727231,-1963095479,1545505241,1813940995,180849156,-1948612669,-1627377634,58039883,-387829527,57860287,1239493865,-645202550,-371056407,28434757,24388412,501764547,-1036363264,71042932,-823590028,-575280928,-1965390036,-1982231811,-2029721314,-397687846,591191495,-1058536587,-521803555,-1964965656,81764560,57918010,-1226791191,512447232,-637336352,260758019,-1959818685,-1073042191,45138779,-1190874951,-2036397904,-997830460,1491043048,-392248186,512483261,-1729625299,-873899553,-1191071519,-1330052176,-997810425,-389773744,-2040995821,121282244,451478386,1136721632,-1975316598,-1562801601,-521665797,28754911,1575600178,137226249,-1712782477,1979596001,73703941,-1057093653,2062091124,807308032,206301184,56106633,168060064,-402426688,1827200082,-1992080417,-402434018,-1070407207,-402311518,1805704973,1958742532,-23598845,168095648,-385649216,317317043,-531240735,-371265304,-1662460441,-542643743,-7411623,-590223285,-454556044,-514659841,-274546638]}]],[[{"sector":1,"length":512,"data":[129099780,501810035,1975582433,-542643965,58048766,-1948278551,-1190860514,-654114774,32049150,-559552287,-1327595800,104261887,56106635,512481927,-633667536,126525300,568873539,-219457018,-623122349,1726546802,-386027297,512427536,-1014365360,-1979316248,100853959,-1014344869,-1979319320,100067527,117710475,-1965413542,99281091,-437729398,517637893,55582350,-400619638,1245906392,-277491189,1406817513,1926925544,-552081149,1007055848,-385649411,1776869133,-388986362,-259389852,-1979293720,106621144,1441331338,-389510650,-393607600,-33529696,-1962511160,1526943766,104786003,-1998942690,1229135623,-1056258678,-379981963,233363969,-385649154,70049483,-1092025484,-1143306274,-654114637,-1975318646,-1982297537,-1157341666,512294912,-947255534,-1128605049,64653056,-2014803239,1007127258,-1023314900,-2098704046,-997810211,-389773744,-398337173,-397157529,-1326916005,-997828387,-2023859810,-930457890,512447314,11863826,512350467,-628685038,73277067,57924155,1541334761,-1998944422,-1639735537,1134499720,1530366110,827371,-1611070997,-2041527162,-569251644,1390241512,1507687144,1457424222,-588754605,1580174045,-1974018425,1372097031,-997810349,1136952912,-1975314550,1975519799,9103619,3153547,1198774843,56106635,1064491579,11981194,56368779,-628631037,53419659,57924155,1476427241,-1969306490,-585766719,-2023859877,1364350686,1507689192,-561553830,1129533782,-2008868984]},{"sector":2,"length":512,"data":[-997810377,1489274448,1537131654,1125616195,1532573578,394937170,-2026403261,-1047897382,41141562,-987043702,-2041001846,57843396,-33547288,1959657157,-1962440178,1111730938,1499067371,1935235417,190467,548455259,-906051074,-91490444,-152354134,-1631287720,-2023859877,-628664610,-1974400395,-594286395,1507764712,1457424222,-2036378799,-997830460,1023368425,-1023314940,-633739189,8436306,-397343372,1398398037,119086731,57924155,-1143151383,-654114637,-2008868984,-1296027081,126370567,-109720834,-1564255653,971507480,1946434812,-588257021,784028497,-1965489408,1913207815,-1604626159,-2036398312,-997830460,-385568687,-1212424665,-1965489408,931808023,-561553854,1007127126,-402426580,-397681683,57989571,1591625705,-1974018425,1975913154,-597169917,1125615691,1531590536,-1152298151,-654114630,126402610,-1157134269,-654114637,-1975318646,-2015851969,-1152167206,-633667456,-1174047397,1558904832,-896864630,-628682576,1392509115,-2023826685,91444958,-347874557,1591411458,-2024350073,-2015689766,51213274,-561553703,1124168534,1457424222,-730478338,2133115786,11980938,-1966896551,66685663,-385649701,-791618575,-1975320205,1958742725,-605820669,118627977,-1152165541,-654114628,118759049,50344891,-1982200871,1527191070,8436563,-1037384822,-947201910,-125123046,-633646502,-24509326,413194890,1958742535,8436301,91478587,6809683,-276147877,512478090,-628685034,118759051,-1996450328]},{"sector":3,"length":512,"data":[-1979247586,1506904821,1526745064,-1037384822,-947201910,-125123046,12239626,512447232,1134495506,303991198,1535735047,-397163685,1364918305,-880087158,118759051,512481927,1340606230,-1982167296,-1979247586,1506904821,839760363,137863872,-1957473711,-2029579746,11910106,-1974216445,1066025735,994236554,394812378,-2002893921,-1610123977,-1073084361,-1866789260,1397838641,50342075,37480921,-1017554341,-1962440111,1111730938,180718153,1509062081,-997828413,-1622060386,-2041527162,-1964012860,7661771,-1863777419,6088923,50379707,1490682841,-2002860922,-997810425,-1144748464,-654114774,130430858,1947024384,-1965030392,-2013260602,-997828601,1532647838,870863555,-385649408,535354195,12303104,-637282045,-1073084534,-1017554086,-352275525,12237571,394975491,-1019770301,12237634,394844419,-1019770813,-880087158,1392501480,-2013275672,-633644326,991857091,-645011453,-1327811352,-85595906,-371513624,700176511,-1965489408,1958742535,-1393456339,645137468,168266307,1359705536,-645202550,1493299176,-2135892757,-930478294,-654114635,571715,126540035,19667500,-1662402534,-1963619622,700138193,1373176576,126402610,-1610480664,-18348108,1979661317,-627316477,58050814,-19167255,1510962632,-91504590,1108390314,-372423960,-1057039815,2062091125,666589658,-1965489408,931808023,1261930562,1371740040,-1968377461,1121028853,1963080786,855358236,-41266349,447797642,-1157592343,-654114775]},{"sector":4,"length":512,"data":[-1073084534,-1981283468,-1779934465,-401559295,-1235628813,-1950338509,-29250823,-1007127090,683344956,-1157401344,-654114632,-1974794358,-651957985,50336187,-1143306279,130417822,78988032,-1998980376,797459247,1127188547,-1330116666,50045448,-1482506190,-646977532,-2041029693,-1621909820,-2041527162,-383874108,1007127044,-385649407,71096107,619250549,-997828354,-1957604706,-997810229,-1161525680,-637337559,-2143549558,-402426541,-27525393,-1257272825,-2041036032,1352638148,50333882,1010272986,1949272077,-1965030392,-2000350522,1490617095,-2007344738,1254316807,1125615691,-968673400,-968654841,1583054855,-1974018425,1405848303,50340539,1125615833,-968673400,-1604648953,-1073084361,1642595701,-389850368,-379847029,-1252927185,1124567680,1118501515,-176828930,1397867353,82386571,71042954,-857144459,2800125,126540035,410304522,1124567627,120197118,-654063478,50333881,168266457,-1017553984,168266315,-402295616,-998965240,-1336321031,512475930,-1974336279,1121159927,50341817,1125092057,1262563210,-2008871032,1396917039,50344379,1132507610,-33552442,-386370103,-1281359848,68413447,11583498,-2135948683,1258784859,-1073084536,1381090138,3324755,-628631037,1424497329,1499093963,-10557245,440203890,-193595911,512447313,699991273,-958856448,-968687609,1543045127,350798681,-1729604648,168266455,-385649216,-2036344963,-997830460,1125616195,-628473974,37539978,260705906,-33060285]},{"sector":5,"length":512,"data":[1949973706,-1023522040,-1312620981,1959460416,616663663,1916808415,1931164775,82884963,1101724043,-29160522,-385648182,126484544,276115004,1476403688,-107035514,1355056799,-487865210,1101724043,1976499779,-1564462374,-2041051908,-1017405756,188532362,54272628,-210493838,-108322640,-822197846,-956372245,-646656258,-108322640,-822197846,-840173963,-388570903,-1168900272,447809331,-1161136408,263259376,-20287768,-385649216,314300083,82885125,-225768267,1124567212,1976434242,-320316427,-387431981,434656211,-256224257,-401624828,-1057043905,350815092,82950871,-1257954373,-680925173,314185649,-903485435,-796212389,-165418926,-85392524,1381063382,1526653928,-1969467047,-108533562,991857053,-1977978365,1975519938,83475220,540805002,130419573,130433858,130433857,-964011181,1355056799,512345222,1129514217,-1325076294,-1393390836,1128400776,-176829954,126402610,50336954,1124567258,-2008873080,126370567,1510443075,1239958098,-2041029634,-2036359484,-997830460,1963080787,-756526568,-401362686,-1319450221,-913446890,58048766,-338245399,-401624801,-1057044097,1482298997,-1616984954,-2041527162,71062212,-1259797644,-739556651,-997828518,-1426420834,1030994,130472451,130433920,2603776,-1070409213,-2008873080,126370567,1527220291,71042954,138154868,20717684,-186055820,-42014509,54206091,3389891,-2135828221,-29151352,-369527351,512480219,-1957493527,2276299,-628631293]},{"sector":6,"length":512,"data":[-1914108018,1892204022,-1107916823,-2115428577,655801846,-1107919895,1978208603,1699790326,-1107922967,1776887230,1695137270,-1107926039,1575559783,345554422,-1107929111,1374228587,1689370102,-1107932183,1172899759,128761334,-1107935255,971592423,639942134,-1107938327,770261353,946519542,-1107941399,568935258,1190772214,-1107944471,367609512,520797686,-1107947543,166283131,1675804150,-1107950615,-35035844,1234877941,-1107953687,-236362614,1672330741,-1107956759,-437687471,1806548469,-1107959831,-639015887,1665252853,-1107962903,-840349689,1197981173,-1107965975,-1041688105,1228127733,-1107969047,-1243002767,1214365173,-1107972119,-1444329425,1213185525,-353000471,402657000,966634,284027416,-253093888,-367525872,402657790,4577258,1052371480,1307187200,-367525823,402679052,2526698,124709400,-739633152,-367525880,402661173,2018026,518973976,-1846929408,-367525881,402655192,2090986,654305816,-1091954688,-367525881,402656216,868330,689433112,1072306176,-367525825,402655136,4185578,433449496,-487974912,-367525803,402675450,5777898,756923672,-1108011799,250167059,1058455029,-1108014871,48835895,766557685,-1108017943,-152500424,174243316,-1108021015,-353826259,1680260596,234153193,1263583282,1023083240,1007187008,1006925007,1476687144,1477563625,-400497431,-387450169,-397148657,260767123,1912732032,28805960,-388396544,-192282558,-402641944,-729153478,-402643992]},{"sector":7,"length":512,"data":[1824063538,1960512007,-161173495,-389510172,-997588958,-939327308,567094196,292929546,-620051621,-872543372,1949252780,1949121559,-44832493,1912606440,-387937544,74579975,-527824171,180587203,-1963363109,1915759620,-183878413,-872485262,-571948218,-1336720638,-56629238,-852839342,-964011231,-1342165784,3401773,585679498,-399659008,-377421783,-109050004,1913894244,1693024261,-980761090,-1979709208,256193,-721518103,230983178,48771120,-2000385536,-389856505,-387450381,-397148869,260766911,1912732032,28805939,-388396544,-326434962,-402646552,-863305882,-402648600,-192217250,766771378,-1073077811,-1017442699,125098762,1017957374,-1023314630,-386099991,1396900420,115869872,750015228,-1973739059,-7083835,-1696056656,-389969153,984678281,-1962962712,-8394554,-1157759511,1357451301,278216979,1125160258,-1790701419,278218000,1192269126,2026770581,275697424,-737122864,1305219163,613210128,1106935808,-1073069965,378027124,-2134701473,846340346,173938312,-2134297661,645087738,-92245781,-2011204857,-1022730986,-1073036662,1228685684,1217925235,-218755918,-997527414,-1073561346,-219598357,1089044731,1122552066,1007907859,1007776803,1007514667,-402295763,48960340,-906049026,-138690166,181874192,-1965852480,-1744151242,-619980661,-1959915916,-1324284769,-741463546,13861867,378194827,1587546719,1373828618,280545419,-137219311,-1072997903,-796162700,302000105,-15198700,134611970]},{"sector":8,"length":512,"data":[235732746,274338320,307958099,345641842,387978708,435492992,488840064,-397271330,-922025930,314181748,886880256,116847095,1979646053,1136283656,-290017280,4373080,-289109266,1639581557,51178496,378100462,113639526,-1023410075,6690443,125104650,6620870,-1007555585,-225815557,1946161128,1949973513,452623,-1973684359,126537686,-1010106813,-1037384054,37538046,87878770,1381623923,300661587,-930418293,-1974015862,1643937828,-58718094,-2147257477,-1976688404,977683207,-32016956,786724297,-1073084534,1532693625,-1654694310,173430622,-1073034304,-1976637064,-1073069305,-846530439,126496350,-1166688246,1515904651,1137694346,-80655025,843927363,1414548730,1347221810,16266068,309269081,312152709,-1974447109,-2147471705,91420924,1929182336,-816097277,-1003816016,11845634,51511483,126562008,50378587,126562008,190555,1600053503,119211663,1357315997,82392715,3048586,108197948,41155644,1582875480,873746895,-518620394,538380822,1595359511,-2113108201,1494780695,-2095694828,303491350,1226254359,-2028509417,-1827173876,303265560,-1878227186,-2029222125,-2029222132,-2029222132,-955006964,-2029121005,-2028740596,-2029222132,-2029222132,269256460,1975656980,1397791778,82386569,-1014818936,509485,797459267,509507,1125091395,1526728646,-373056168,1532557789,456589150,1489720839,1503577222,-253011110,-346465446,1587565547,1975582208,773753621,1193183488]}]],[[{"sector":1,"length":512,"data":[583502339,1958805187,-1564462587,-1017445066,719930546,-2131066629,45220469,-383874109,868451076,784565187,-789182582,-383874109,851673860,119520195,119741955,-1144840309,503514919,529205027,120306627,119741955,516104075,67156819,119741955,-1912602438,-1911059494,-1996156898,1527194902,512475935,-2020997911,-1966931921,-1324928722,-6952960,753429936,-5904129,-2012794976,-11867897,-997830568,-385874968,-397213879,-1151729543,222037807,134090612,-4003757,1913075803,-351424505,509669,1894254474,-1022916353,-1564178856,-1966930127,-1324928466,-12195840,-588747344,-11147010,-2012794720,-17110777,-997830568,-385874968,-397213959,817561646,222059015,134090612,-9246637,1913075803,-351424505,509669,552077194,-1022916353,-1564178856,-1161623758,65732609,-1677720902,11817043,-990505011,-166824672,225772740,1946273014,-350703091,-350506490,-384191998,1348008445,91557180,-756544848,-1654957825,587646915,-352321529,587646726,1392509447,-151072024,-16777081,2062091124,-488090888,63079422,1257160754,-1973752246,-1325397585,1583919104,-388068525,844889639,176654528,193431552,210208768,226985984,243763200,260540416,277333504,-2017001216,50528273,-71609773,637188,541032523,-968623391,-256180217,25213188,541032529,2145977205,742359040,-396816524,-2142174983,1886650431,1965834112,-1024965850,1006679541,-1256229810,1950694401,1006875929,1007907919,-1257278420]},{"sector":2,"length":512,"data":[1951218693,1007138057,-385649581,61994837,4161603,1065357940,1139832108,-377483382,-2132250060,-479001095,-1996616984,-1979707217,619285189,168195329,-19893047,83722445,-318060173,-1073084812,-838991244,1150857,-1946295576,-1962933873,-402652265,-1863778847,-36575232,364427,497547,-386016536,378208383,-1031600347,-293556221,1493363331,1257162122,-387006070,-1349845589,61931536,-2020940334,-989200366,-301743485,-301354942,-919387582,1979534056,-126490365,1965074668,-1292770809,-125310696,1532608562,1946352000,99255046,-1997667920,-973075833,16777351,-386070551,-1152125083,1128470022,1125092142,1959332675,1976646409,260779761,1927922523,144148982,76515584,110070016,177178880,42452736,-1023410176,100663371,68616302,50331798,25166124,12583512,6292656,4196104,3148128,1577664,796032,0,119736007,116064256,119736007,-253231102,8898300,115867648,-56497923,-2013916556,1979645963,-1070447884,176654574,-139532032,-2000669958,-402650233,-2016936741,2,-67116312,-956203543,467718,-955847936,34022150,-1282438400,1540590336,-397717166,510980911,754124520,1509258984,1959922513,-902080239,-896849806,350767953,-385649421,1582954392,-561294504,12361611,-1073028986,-739766411,1124567040,-379848478,-1293289885,1124567797,-503234840,1424579576,587646966,-352321529,587646726,-2097151481,1347957443,552125574,1947020289,1007156744]},{"sector":3,"length":512,"data":[46144019,-385382393,113769433,1827,113706731,132899,167805416,-70456896,119736007,116064256,119736007,250085378,44010492,16759296,41081403,-689317241,587646966,-352321529,587646726,-402652665,-1752433683,-1618280446,-634716160,-940132119,467718,-955847936,34022150,-70260736,165771,19710986,-1969700838,-371684412,113768085,1827,113706731,132899,-73275309,823176,-160634533,-1796713647,227014395,158662400,886726,-347753984,243791390,158662400,952262,-348540416,260568590,175439616,1017798,-384192000,-2020936083,-1073086452,821190,-401181440,343210767,-1946461976,184550031,-386894647,250085556,-1017554176,54863499,54730379,-386536215,-1618281681,11993105,348097070,-1010359784,2134843151,1364414719,-151316760,-16773241,552116853,9931771,42961664,1959410432,9562360,-84215064,755594,1115013130,-2021080834,-386203637,-1031537915,-301223932,-919387582,1962579688,547941531,-186514059,872238313,-91887415,-1460893068,-502958832,-46405132,-1341789565,176622082,176654336,1509682688,-943499173,467718,-955847936,34022150,-997828608,-90838957,624520,-1215577253,76152836,146770758,1979136768,179800836,79137024,-1215563264,-1991376894,-83885385,146770883,112691968,1174702080,74839867,702347,440201,45583354,-1215740416,-1006960638,1364414715,1465261650,-1912602438,270438106,590806789]},{"sector":4,"length":512,"data":[587646727,-402653177,113704987,132899,-1895820568,-1173937402,548405280,526278638,1482381658,-97785649,276091403,-1460911550,839480577,787516388,423474431,2115620803,1159284249,-320290023,63079417,1947870444,243763204,99255040,-488060021,12553209,45583104,1004111616,839677175,226986176,-645141504,-318811415,886726,-397753599,-880019021,690058,-2021129676,-152174582,-16774265,-1031587724,-360453115,1963992070,-2000093686,-1962930297,-401085479,-169281125,-2020872450,-1005977598,108386699,755592,45092075,689930,690056,-2084311486,619447490,-402033376,-922814117,1017736,175225795,-973066567,-498925561,1863223546,1880000522,-1963277558,201597959,-2012792319,604271623,-79334140,126548675,-352319546,126548489,-2013131696,87316487,-1006944396,1879492346,126484490,121242916,359991176,-1963277317,1946396679,973343760,-1475709945,-2012842750,1946498055,-87819517,175048446,-1963277317,973284359,1946650631,175087626,57803052,-83202142,512447427,188940334,-1155959589,263785074,-804812288,-804752424,-805014824,-2096663848,-303955005,-1957575845,184549783,-277587502,-397192616,1894318004,1879492351,78774026,1508913640,1398495322,3028735,1351464017,512350859,870908739,387315,19138442,175291331,-453639244,-71051261,1381061456,-1168681442,-628228096,84942478,-1342168902,1583345184,1532582431,-857157800,-402426625,1405353784,61934261]},{"sector":5,"length":512,"data":[645187900,1979595843,-1257797108,1006678274,-350784409,1979661381,-1190688191,-1606680574,45421684,-1573122639,-397332363,978911293,-1976405272,-397325336,1692987019,-85422610,1959922673,-211687416,1935397259,39016475,-9049916,1528269123,1583072094,1443817662,-1628895350,-249566734,-386823959,820571735,-1192744722,686313712,-1017632274,1541932209,-239605521,922702681,1907949614,-1917562614,250132816,-228136623,54206089,48824246,-1981576205,1006847262,1529574797,1946224630,-26417149,-746103975,54206091,-301602741,-390199436,820598286,772704754,-1092974848,-380236305,-1313672895,1022518505,-402361304,-389812299,-1073021048,-922875276,1836255804,988480433,-397408374,1398336971,225744188,242520124,1484119356,-350615105,435601160,297731051,702746,61888337,-922828542,1444686014,-22943401,-320710305,797623131,-1863823279,1479112173,-1056812199,-2130801944,259317245,1955659136,-1778548721,-1511517579,-389850115,-1017381453,1543354088,-265819709,1022487529,-386304728,-922812668,-311229892,-1159003983,1223163908,-402426626,1405353396,45203506,1543481320,1972387712,-315234297,-245634722,-237049525,544548924,1409208296,108314634,37538046,229749619,1543471080,1972387712,-317855737,-248256162,-239343285,1374749416,-252188590,-1979255136,-186102832,-402164500,-399708981,-1031082157,1930042344,-274470653,-397190822,1156056299,113160,1946228968,635982615,-637314559,-1070409081]},{"sector":6,"length":512,"data":[-1342114328,15788033,720077232,-521616549,-385649163,1352727266,1958742538,1360956175,512447242,-1957492145,1393185566,-1973724838,125495489,1537394058,1958740490,91443919,-351833112,127133699,-387878310,-596377411,1352843314,13035530,-141896822,510967818,-947238069,376619010,173217417,-1996015640,-1576382178,1537215055,-1563363830,512428624,-637334951,1609095815,1277070080,172924938,-1962468376,-1962256610,722098454,1917220058,-388331744,1031012453,-411779062,512481927,1319111244,-1597470198,-393606565,-352304920,1272707026,46631499,1125806784,120711251,1977289547,1453349624,1958742538,173776904,334024950,-14227200,-1979034208,173449416,24494346,173777091,-1444353910,1590200838,1364647559,45175634,-387132951,378079648,512297559,-620033447,1453506954,-2048343286,-1957670138,-1609937890,-2115499442,-1990502394,-1576383458,1340607054,-1965356279,173384385,-276698941,753621736,1408185064,512350855,2112357687,-279975700,-1166002759,1491600627,-280368913,172105353,1201848370,1323850506,-1174294033,-1075314688,-2135862783,-385876038,-2023882314,-1070442786,74635835,-628635394,-1995815262,-1995816930,1527397910,-349837237,-397212043,451610418,753596136,1408122600,-386992920,-1497693727,67602948,-402159608,512356075,12192324,941000960,924748554,-1965358331,1926811842,1129533974,-784143407,3401962,-633644198,535364466,-1948612610,941525963,-637320438,-947201533,242401282]},{"sector":7,"length":512,"data":[-1948612782,1138426841,-634660217,512318025,-645199304,1404889922,-1982167214,-1995814882,-401982946,378077429,-396752310,-621346579,-1996488517,1527397406,1392517864,1109298002,1008634122,974555914,-1982190838,-1962264034,-150321122,1209960923,-145008118,1342484698,1381192275,171710091,172105355,-637281533,171712137,171581067,-628631037,171974283,510974523,512428659,-633664962,594742132,168445600,-349735488,172466209,510967810,1201670123,1941963274,-396666347,1156055130,-1608783104,-1073083834,1532626036,1532629227,-402635288,108201436,-402299160,1532626247,1976106584,-1957510399,-150321130,1209960922,1524270858,1243515731,-1982167286,-150320610,1793678298,1025412095,924748037,991857413,958302469,-305534715,1024887634,-1948646651,512449227,-637336261,-1950098809,-1979038690,1975519939,1975978503,-1009088527,-487070670,-2147093878,-1009481216,-376838069,1625880948,742141161,-397282956,-2023822173,-397191458,-1151734443,126485669,58245130,603983337,-1157134209,126487111,126402826,-1166138695,1156118915,2091245,-1947321624,51003934,64685019,-364189477,1508711656,-316020646,1525488360,-1178346873,12222720,-317462528,-227161858,-1561599767,-397407640,619244823,-1073063935,-2081881228,-387586048,-397258262,283700417,1398364673,1944919784,-317855741,-48330429,-317986810,-85458061,512312300,1290274555,-135767292,1364349696,83617874,117118603,50331835,1976106714,-1161065478]},{"sector":8,"length":512,"data":[-637337593,-355345785,-355341615,117251723,-389313711,-1151734651,-637337596,-2015755430,-633644070,1592329075,260594667,1127188547,117249675,1128470409,1877721098,66185299,10283099,2095598418,1946531304,-397285348,-1143306452,976101905,1258910727,-160051714,-1017455993,1558764167,-1966211352,-561553723,395006038,1397900099,1860754055,-19887612,-385649206,-338624508,-1957956117,50673430,1540066266,1128470411,512447314,55182649,1541048282,1509961448,1392072793,1510228200,49473618,1755336787,1975519754,76146693,-655883285,-396666876,451412708,189422083,1541240274,-907521085,-385650173,-1017386327,753385192,966918576,-357701629,-1763114124,54108906,-2015786157,1406796762,44888459,-1210545472,-654098176,1532615303,-940642365,498790598,-1564462558,1491667553,575395073,-870167100,1423057490,577588514,-970826811,1573331553,577226786,1109595329,105784074,613177379,-752653629,-150985951,47578,-621328405,12241547,-146871552,-339047462,-137721032,-147657766,-339047462,23718134,725352629,758908532,-973208972,-397359734,-1897397888,1357402625,1949056001,-369628925,1493270760,1975519832,9758790,-388920494,-628686706,174235738,678680784,-397192624,-880147674,1398463111,1493212904,-628665765,50331835,1976434394,-1930931206,-637314304,1490745178,74701008,-621290505,-1594021400,-1073608095,-397407118,1381040824,1526531816,-1073588135,378079858,-645200581,87891593]}]],[[{"sector":1,"length":512,"data":[1638055986,1085326090,-2135948565,168452539,-1022916601,71090826,1793655666,174236393,180783811,-385649472,-1031083683,-1022730078,168452256,-1141345088,-637337600,-92944130,-963978617,1939652610,-355382783,1939729105,214338270,1123060416,46566083,-1157205056,-145546077,-373191974,-1031078729,1929516008,-384571133,1712753091,-378410998,47699,-253210542,-368580376,1355188817,174432856,1960512347,1662945643,4450314,-1073549708,512477322,-1976694170,1975517703,-388503293,91537722,-347913405,597277165,126496337,-1073559414,-1073083021,-930424624,1122521937,1129929472,-14709970,256227,1405341044,-1979030085,1958742535,-1961886185,-1979030754,512312071,540805731,1614603892,539755122,-1152138405,134089317,174268043,1662945611,-389850358,1027407811,725379444,758969716,-1548089739,-336899548,1006633146,1020490796,1021277243,1019966266,-1966640592,67013338,64685019,752550874,-1227847120,1943667456,-399251197,-2031560057,-1009748481,-1157661976,-1252916745,1916877864,1918581779,-9836541,1118501515,125057852,-243937794,1541933289,-387364631,619249622,-1009088535,-1593848344,512428645,-2023880093,-1320134946,-432216062,-134291479,512476122,-174061837,512344838,-173930765,512475910,-75299085,-117017776,-216101949,553615366,-276821902,-216102624,-1014906106,512303024,-1950152973,-2130250978,1916727547,-1950091002,-2147028194,158474495,531688321,116596361,549945539,116596361]},{"sector":2,"length":512,"data":[-1967027517,-771730162,-1979255546,-1023315256,116592383,-1077506877,-946948096,116596363,839354918,570881542,637990150,-963770576,-773223485,-628383766,-489487695,78762755,1939792595,12747012,-216626912,-1965716730,1426519754,343146752,-937293904,-388857680,-1324943966,32166659,-1022954730,-937294928,-1062156030,-173872942,-754798330,-216661526,71090950,116789107,1946222677,-167697396,116826840,-286669832,-162156058,116826849,1436599288,1958742528,2028800749,41990950,67204,-338623884,1923074875,-880063741,209253898,13171329,-944110478,-1013005568,868471347,-387211319,-1174350405,116785459,1946222677,1139527941,-1597779453,-1983709099,-1995805922,-1979254002,-174022696,-788581882,-33262880,-1996952633,-1643484866,-13496973,-1959863549,-1993991009,-1022726882,640820797,640165414,-789174716,570765862,87041733,-705248441,-705247990,1191518246,650453699,-1018755832,1191522342,-1830287677,-773158144,-772943379,-2133199123,-376829983,-771024268,-1977193612,-466467067,-114591670,-838935344,-925698443,-594878430,516737,2018314421,92939997,321607,-219423606,-925637582,76071690,-1004354746,-335547928,1055393328,-2081780992,-305068091,-305009199,-304939083,-494874366,1951247367,1566727,-169082955,-4927098,-333257518,115919498,1798736128,851642122,180933604,-2323773,-1962250970,-1090061546,-946948096,116604555,174798475,174657162,-315434189,780846076,-2115500298]},{"sector":3,"length":512,"data":[173843198,116797064,851937987,1959076546,851937803,180691654,-101174568,1427016387,1942344192,1032332871,-1627384088,1032463951,243975070,-841875371,-2010762637,-1977202883,264763197,-1960479488,-1962626617,-738424077,-2146491160,-321908761,-561264878,1019281985,738357785,704934937,-168135743,-1207910461,1049347982,780797683,378144501,915016284,-617478410,-1019377114,-17146,1174396648,1929349864,-9312251,-1779894926,1032333055,116604553,116731528,-578040950,-1962491129,-4593430,1929335528,125062413,1946121192,1441608691,1049175019,780667468,861211214,-402265107,158596915,-11081659,1021900147,-214005249,-181499898,-2010752506,-1949595075,851642333,73769664,-1979423070,12433927,74826298,1124361634,-507910069,1407614184,-1996488517,1527016478,-508958645,2145977205,-511842304,1949056044,-457054190,-471078829,74194569,-1930933413,-396004127,-1171463837,-1036386135,1491607156,1424507361,1357401313,58019041,-402527767,976019783,-385649470,-1073027604,1355056799,1721943174,-514463740,1374043368,1508111080,-41266854,512350602,-51903383,-1978960925,-1982625033,1527015198,57858619,1491333353,1956562054,27322627,3022475,807308115,-1975301376,118113031,-538377355,394937088,-2026403261,773753306,-388331776,-1073028865,977068148,-29559436,-1975317643,9157127,175424058,-521803701,1273246952,-588718613,1406891232,966918576,-474093565,-980784268,-393576436,1055440946]},{"sector":4,"length":512,"data":[-1577013021,208995129,675022730,-2041049227,1844158148,675022730,1793655669,-1863820317,180783843,-1977649726,-1971319611,691911400,224770642,50045010,-353767286,180783842,-385649214,-1974213823,-1144354066,1230186867,1236070795,-126304246,212660619,-1426486400,54108867,675022730,-2023836811,1229543134,1543494888,-531765173,1240007541,1965571327,-532551668,702552808,971572085,-535697153,-11015892,773753179,1511951104,-1948612861,990074910,1398961370,1128468362,-1073084534,1355056799,2133116038,-398260344,11920013,-2040997629,2019139268,266883546,1511951104,-1982201085,-2029823458,-940876838,512481927,-633666724,-1951599989,1117760249,-1639866466,-1047859083,-796212438,-954546806,1229648010,-645202550,56368777,1545505731,1004177155,1395487962,126501699,-2036350966,-997830460,126385956,-500963261,-1975316598,-654097617,-1631287720,1373141081,-2013290008,-806659110,56106635,512481927,-628685990,712301115,1134495626,-1639735394,-1617017953,-2041527162,-504895292,-1631287720,91554620,838883560,-1227846976,-338033920,-628663861,56368779,-633611641,126515572,-1617017953,-2036359613,-997830460,-508303293,-1975316598,-2041035985,55811780,1963146457,824084944,260725507,-654114635,-2025596669,824085466,1004177155,-1179159334,844180151,-1626928448,394960451,-1969339489,-1639735497,1405288821,56106635,1918622267,512447477,-633667536,1407939419,1397443403,1541563112,1156055989,-389850142]},{"sector":5,"length":512,"data":[512483855,-276167844,512478090,-628685992,56237707,-1037384822,-947201910,-125123046,72228489,53419659,73408137,-1964913944,1272548093,53419657,168060576,-1961724736,-1979422434,-1949594897,-402364642,-790044191,-1576947488,-259390357,738485664,807308033,-1072018688,853364457,74162880,-1962646110,-1979492322,-1949594897,50613790,1511950809,790530819,-628669693,73408139,53419657,-225715653,-1426486356,-1617018209,-260727231,-1963095479,1545505241,1813940995,180849156,-1948612669,-1627377634,58039883,-387829527,57860287,1239493865,-645202550,-371056407,28434757,24388412,501764547,-1036363264,71042932,-823590028,-575280928,-1965390036,-1982231811,-2029721314,-397687846,591191495,-1058536587,-521803555,-1964965656,81764560,57918010,-1226791191,512447232,-637336352,260758019,-1959818685,-1073042191,45138779,-1190874951,-2036397904,-997830460,1491043048,-392248186,512483261,-1729625299,-873899553,-1191071519,-1330052176,-997810425,-389773744,-2040995821,121282244,451478386,1136721632,-1975316598,-1562801601,-521665797,28754911,1575600178,137226249,-1712782477,1979596001,73703941,-1057093653,2062091124,807308032,206301184,56106633,168060064,-402426688,1827200082,-1992080417,-402434018,-1070407207,-402311518,1805704973,1958742532,-23598845,168095648,-385649216,317317043,-531240735,-371265304,-1662460441,-542643743,-7411623,-590223285,-454556044,-514659841,-274546638]},{"sector":6,"length":512,"data":[129099780,501810035,1975582433,-542643965,58048766,-1948278551,-1190860514,-654114774,32049150,-559552287,-1327595800,104261887,56106635,512481927,-633667536,126525300,568873539,-219457018,-623122349,1726546802,-386027297,512427536,-1014365360,-1979316248,100853959,-1014344869,-1979319320,100067527,117710475,-1965413542,99281091,-437729398,517637893,55582350,-400619638,1245906392,-277491189,1406817513,1926925544,-552081149,1007055848,-385649411,1776869133,-388986362,-259389852,-1979293720,106621144,1441331338,-389510650,-393607600,-33529696,-1962511160,1526943766,104786003,-1998942690,1229135623,-1056258678,-379981963,233363969,-385649154,70049483,-1092025484,-1143306274,-654114637,-1975318646,-1982297537,-1157341666,512294912,-947255534,-1128605049,64653056,-2014803239,1007127258,-1023314900,-2098704046,-997810211,-389773744,-398337173,-397157529,-1326916005,-997828387,-2023859810,-930457890,512447314,11863826,512350467,-628685038,73277067,57924155,1541334761,-1998944422,-1639735537,1134499720,1530366110,827371,-1611070997,-2041527162,-569251644,1390241512,1507687144,1457424222,-588754605,1580174045,-1974018425,1372097031,-997810349,1136952912,-1975314550,1975519799,9103619,3153547,1198774843,56106635,1064491579,11981194,56368779,-628631037,53419659,57924155,1476427241,-1969306490,-585766719,-2023859877,1364350686,1507689192,-561553830,1129533782,-2008868984]},{"sector":7,"length":512,"data":[-997810377,1489274448,1537131654,1125616195,1532573578,394937170,-2026403261,-1047897382,41141562,-987043702,-2041001846,57843396,-33547288,1959657157,-1962440178,1111730938,1499067371,1935235417,190467,548455259,-906051074,-91490444,-152354134,-1631287720,-2023859877,-628664610,-1974400395,-594286395,1507764712,1457424222,-2036378799,-997830460,1023368425,-1023314940,-633739189,8436306,-397343372,1398398037,119086731,57924155,-1143151383,-654114637,-2008868984,-1296027081,126370567,-109720834,-1564255653,971507480,1946434812,-588257021,784028497,-1965489408,1913207815,-1604626159,-2036398312,-997830460,-385568687,-1212424665,-1965489408,931808023,-561553854,1007127126,-402426580,-397681683,57989571,1591625705,-1974018425,1975913154,-597169917,1125615691,1531590536,-1152298151,-654114630,126402610,-1157134269,-654114637,-1975318646,-2015851969,-1152167206,-633667456,-1174047397,1558904832,-896864630,-628682576,1392509115,-2023826685,91444958,-347874557,1591411458,-2024350073,-2015689766,51213274,-561553703,1124168534,1457424222,-730478338,2133115786,11980938,-1966896551,66685663,-385649701,-791618575,-1975320205,1958742725,-605820669,118627977,-1152165541,-654114628,118759049,50344891,-1982200871,1527191070,8436563,-1037384822,-947201910,-125123046,-633646502,-24509326,413194890,1958742535,8436301,91478587,6809683,-276147877,512478090,-628685034,118759051,-1996450328]},{"sector":8,"length":512,"data":[-1979247586,1506904821,1526745064,-1037384822,-947201910,-125123046,12239626,512447232,1134495506,303991198,1535735047,-397163685,1364918305,-880087158,118759051,512481927,1340606230,-1982167296,-1979247586,1506904821,839760363,137863872,-1957473711,-2029579746,11910106,-1974216445,1066025735,994236554,394812378,-2002893921,-1610123977,-1073084361,-1866789260,1397838641,50342075,37480921,-1017554341,-1962440111,1111730938,180718153,1509062081,-997828413,-1622060386,-2041527162,-1964012860,7661771,-1863777419,6088923,50379707,1490682841,-2002860922,-997810425,-1144748464,-654114774,130430858,1947024384,-1965030392,-2013260602,-997828601,1532647838,870863555,-385649408,535354195,12303104,-637282045,-1073084534,-1017554086,-352275525,12237571,394975491,-1019770301,12237634,394844419,-1019770813,-880087158,1392501480,-2013275672,-633644326,991857091,-645011453,-1327811352,-85595906,-371513624,700176511,-1965489408,1958742535,-1393456339,645137468,168266307,1359705536,-645202550,1493299176,-2135892757,-930478294,-654114635,571715,126540035,19667500,-1662402534,-1963619622,700138193,1373176576,126402610,-1610480664,-18348108,1979661317,-627316477,58050814,-19167255,1510962632,-91504590,1108390314,-372423960,-1057039815,2062091125,666589658,-1965489408,931808023,1261930562,1371740040,-1968377461,1121028853,1963080786,855358236,-41266349,447797642,-1157592343,-654114775]}]],[[{"sector":1,"length":512,"data":[-1073084534,-1981283468,-1779934465,-401559295,-1235628813,-1950338509,-29250823,-1007127090,683344956,-1157401344,-654114632,-1974794358,-651957985,50336187,-1143306279,130417822,78988032,-1998980376,797459247,1127188547,-1330116666,50045448,-1482506190,-646977532,-2041029693,-1621909820,-2041527162,-383874108,1007127044,-385649407,71096107,619250549,-997828354,-1957604706,-997810229,-1161525680,-637337559,-2143549558,-402426541,-27525393,-1257272825,-2041036032,1352638148,50333882,1010272986,1949272077,-1965030392,-2000350522,1490617095,-2007344738,1254316807,1125615691,-968673400,-968654841,1583054855,-1974018425,1405848303,50340539,1125615833,-968673400,-1604648953,-1073084361,1642595701,-389850368,-379847029,-1252927185,1124567680,1118501515,-176828930,1397867353,82386571,71042954,-857144459,2800125,126540035,410304522,1124567627,120197118,-654063478,50333881,168266457,-1017553984,168266315,-402295616,-998965240,-1336321031,512475930,-1974336279,1121159927,50341817,1125092057,1262563210,-2008871032,1396917039,50344379,1132507610,-33552442,-386370103,-1281359848,68413447,11583498,-2135948683,1258784859,-1073084536,1381090138,3324755,-628631037,1424497329,1499093963,-10557245,440203890,-193595911,512447313,699991273,-958856448,-968687609,1543045127,350798681,-1729604648,168266455,-385649216,-2036344963,-997830460,1125616195,-628473974,37539978,260705906,-33060285]},{"sector":2,"length":512,"data":[1949973706,-1023522040,-1312620981,1959460416,616663663,1916808415,1931164775,82884963,1101724043,-29160522,-385648182,126484544,276115004,1476403688,-107035514,1355056799,-487865210,1101724043,1976499779,-1564462374,-2041051908,-1017405756,188532362,54272628,-210493838,-108322640,-822197846,-956372245,-646656258,-108322640,-822197846,-840173963,-388570903,-1168900272,447809331,-1161136408,263259376,-20287768,-385649216,314300083,82885125,-225768267,1124567212,1976434242,-320316427,-387431981,434656211,-256224257,-401624828,-1057043905,350815092,82950871,-1257954373,-680925173,314185649,-903485435,-796212389,-165418926,-85392524,1381063382,1526653928,-1969467047,-108533562,991857053,-1977978365,1975519938,83475220,540805002,130419573,130433858,130433857,-964011181,1355056799,512345222,1129514217,-1325076294,-1393390836,1128400776,-176829954,126402610,50336954,1124567258,-2008873080,126370567,1510443075,1239958098,-2041029634,-2036359484,-997830460,1963080787,-756526568,-401362686,-1319450221,-913446890,58048766,-338245399,-401624801,-1057044097,1482298997,-1616984954,-2041527162,71062212,-1259797644,-739556651,-997828518,-1426420834,1030994,130472451,130433920,2603776,-1070409213,-2008873080,126370567,1527220291,71042954,138154868,20717684,-186055820,-42014509,54206091,3389891,-2135828221,-29151352,-369527351,512480219,-1957493527,2276299,-628631293]},{"sector":3,"length":512,"data":[1162066,-1336682237,-32506364,1125020935,-176830210,-967091621,-1326906873,126507987,1140162876,126485429,-91500336,-29211734,-1326221875,-1949249536,501787386,395009021,2603865,394909955,-1308612376,-54073344,440141940,-1023539596,11727851,82386571,130468747,2800386,130472195,394808064,-1949082903,-1962612450,2276299,79026435,268306314,24428554,-838974525,1975775861,-707270403,-389300248,1676268859,1408202184,-1311389464,-933369831,1355056799,229753990,1489523432,-1969306490,-401690160,-1017395129,1409094632,-1324928070,-935729126,1376055482,820514737,1522597576,-997810350,-1312520624,-402426864,-2041001953,1968873156,-731780861,-1325314840,-938612717,242598747,82885459,1124075462,-1847063631,57957120,855427048,83665600,82950995,2011695281,83475200,1877476273,120830464,-655877455,82885319,-790097487,1979661511,-736761597,-1073609948,-1073561598,-1073561598,11913354,50803899,-1978945063,-622312697,1019316947,-1978960636,1948269575,-399593470,-906046519,-2031557259,-1978727213,2728176,91407930,-1293410128,-402426925,-256191421,-401428220,-12793993,-1017402763,708577162,130480501,-906083521,1388574837,-397293430,1515833179,1355056799,565953670,-19266816,1124627719,58001406,-1979187645,1965178049,-997828581,1958742686,1963277521,-730863357,28312380,-1057045388,-1010814269,-1631287720,-176946372,-2017214454,3926234,82386571,47443,99145987]},{"sector":4,"length":512,"data":[-1185199365,-654114783,585631742,447828480,-1949895960,1124395294,347200135,180807400,-898278464,-2135172473,-2027814144,-1948521510,-1190973666,-654049494,-1301030341,-1946966039,-1073042190,803735157,-1426420992,1342496672,-222828462,-645194892,-633650342,-1252912012,-1393390836,1963407938,-838974712,1995043701,-27764013,-1009223224,-400969390,-1057044857,-1008155814,-721557297,3153547,509515,53681803,-1073084534,-1024916620,-756160045,-1031681396,649331640,-628219443,-762396018,1688387634,655407876,2891401,1122624395,-1574129465,-1212481034,973587968,-1994251845,839365406,49914560,-1577056606,1705116779,2662916,-1996455749,-1157162722,512295694,2059076364,-501315325,-1576816637,112919775,857639168,129481475,-1073084534,53681801,-1796668555,1127188992,-2008348790,-29146361,1274377677,-1996486714,-1157418210,-1796733002,1958742735,1949252724,130435862,857639202,792478467,2095581556,1975519951,-967119883,1894252551,1951612111,-1672659904,1178339188,-370605196,-815929133,986658536,-1647192344,-964028556,57982986,-1965945623,1913666754,-771495677,-352002142,169249028,887638787,-401181489,-349188341,-819337028,986645224,-1982749976,-351856362,512445412,-1991572726,1258490398,81764435,-1576362053,-1057094433,1355056799,-2014788474,-997828409,512316318,-796261152,-637337418,-1185228285,-628686669,1128470409,-654058873,421432147,12368135,-880027389,1976106587,512312293,512294960]},{"sector":5,"length":512,"pattern":-151587082,"data":[-1973812411,-1963055934,717392592,-1965520189,-1966662970,-385649672,61985145,-947196973,57803324,-1979580229,-1966921022,449219288,1945668295,-782505725,50994825,512350855,512294956,-477428945,54861449,3153547,451467911,1272589265,-396668085,1790693823,-940971973,-372153624,1109458456,1936028793,1701996064,15269989,0,0,1128400838,1127352262,-399505466,-1070399713,-385808990,1162148620,808594755,2003780640,1852402798,1869881451,1668235808,1632772193,544108404,808465243,1936745005,538976349,1093482784,942502512,168430897,59648,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":6,"length":512,"pattern":-151587082,"data":[-1948712192,-922854453,-1992039051,-1996476386,1510163742,-31145334,-1031090038,-661994710,-954546550,57931914,-1310659863,-1964256509,1912749255,33602307,-1020607862,-963979126,-125122790,-857144461,169773536,-1982167293,-1996477410,-1962725602,1159629283,807308035,-388331776,-634658677,1532185419,-1142869784,-655873157,-522983209,553523433,1702132034,1919295603,-385850011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":7,"length":512,"data":[1162066,-1336682237,-32506364,1125020935,-176830210,-967091621,-1326906873,126507987,1140162876,126485429,-91500336,-29211734,-1326221875,-1949249536,501787386,395009021,2603865,394909955,-1308612376,-54073344,440141940,-1023539596,11727851,82386571,130468747,2800386,130472195,394808064,-1949082903,-1962612450,2276299,79026435,268306314,24428554,-838974525,1975775861,-707270403,-389300248,1676268859,1408202184,-1311389464,-933369831,1355056799,229753990,1489523432,-1969306490,-401690160,-1017395129,1409094632,-1324928070,-935729126,1376055482,820514737,1522597576,-997810350,-1312520624,-402426864,-2041001953,1968873156,-731780861,-1325314840,-938612717,242598747,82885459,1124075462,-1847063631,57957120,855427048,83665600,82950995,2011695281,83475200,1877476273,120830464,-655877455,82885319,-790097487,1979661511,-736761597,-1073609948,-1073561598,-1073561598,11913354,50803899,-1978945063,-622312697,1019316947,-1978960636,1948269575,-399593470,-906046519,-2031557259,-1978727213,2728176,91407930,-1293410128,-402426925,-256191421,-401428220,-12793993,-1017402763,708577162,130480501,-906083521,1388574837,-397293430,1515833179,1355056799,565953670,-19266816,1124627719,58001406,-1979187645,1965178049,-997828581,1958742686,1963277521,-730863357,28312380,-1057045388,-1010814269,-1631287720,-176946372,-2017214454,3926234,82386571,3455315,99145987]},{"sector":8,"length":512,"data":[-1185199365,-654114783,585631742,447828480,-1949895960,1124395294,347200135,180807400,-898278464,-2135172473,-2015755520,-1948521510,-1190973666,-654049494,-1301030341,-1946966039,-1073042190,803735157,-1426420992,1342496672,-222828462,-645194892,-633650342,-1252912012,-1393390836,1963407938,-838974712,1995043701,-27764013,-1009223224,-400969390,-1057044857,-1008155814,-721557297,3153547,509515,53681803,-1073084534,-1024916620,-756160045,-1031681396,649331640,-628219443,-762396018,1688387634,655407876,2891401,1122624395,-1574129465,-1212481034,973587968,-1994251845,839365406,49914560,-1577056606,1705116779,2662916,-1996455749,-1157162722,512295694,2059076364,-501315325,-1576816637,112919775,857639168,129481475,-1073084534,53681801,-1796668555,1127188992,-2008348790,-29146361,1274377677,-1996486714,-1157418210,-1796733002,1958742735,1949252724,130435862,857639202,792478467,2095581556,1975519951,-967119883,1894252551,1951612111,-1672659904,1178339188,-370605196,-815929133,986658536,-1647192344,-964028556,57982986,-1965945623,1913666754,-771495677,-352002142,169249028,887638787,-401181489,-349188341,-819337028,986645224,-1982749976,-351856362,512445412,-1991572726,1258490398,81764435,-1576362053,-1057094433,1355056799,-2014788474,-997828409,512316318,-796261152,-637337418,-1185228285,-628686669,1128470409,-654058873,421432147,12368135,-880027389,1976106587,512312293,512294960]}]],[[{"sector":1,"length":512,"pattern":-151587082,"data":[-1973812411,-1963055934,717392592,-1965520189,-1966662970,-385649672,61985145,-947196973,57803324,-1979580229,-1966921022,449219288,1945668295,-782505725,50994825,512350855,512294956,-477428945,54861449,3153547,451467911,1272589265,-396668085,1790693823,-940971973,-372153624,1109458456,1936028793,1701996064,15269989,0,0,1919295603,-385850011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":2,"length":512,"data":[86227708,567085492,-1090491202,213451827,-1197149440,1048641696,268435458,-2135421325,37650688,1930166272,4241411,-1325114461,98620167,1570965056,1564377604,209002496,-1157267782,-387448740,-1185535,70532738,-2111474400,275262,-675671179,70499077,-2113810712,218392126,-303439243,6143743,-1190906689,-1527578613,567089588,1048756478,1962934364,6070787,70467202,-1576831744,1555956787,70500096,-218100551,-1173981786,1240008188,95533569,567085492,567083444,-956277574,-2147456506,27256832,73342601,73600640,70498817,71370439,-1964507008,1661894657,507183620,108266591,-385474630,247070988,1597932293,225771524,73598710,-385649404,-102170376,104905216,567089844,-402629446,378208679,448005213,867836365,-1960332284,-855352562,1628343073,104906244,73219723,-1494022941,512432245,2040595575,1627783940,13861636,74915465,-385582685,243335072,1308886115,-1174107569,-1008204576,-1174042111,-1142422290,1998490369,767986436,100861504,-746388359,2082375936,-1169734140,-1612184445,-389772799,2090926490,26535940,-1880570742,-1260811519,1751298,72955529,-1408976194,567136394,2092890594,571652,73606784,116829311,1971324003,1966095368,-470621692,-841971189,1661894689,-438140924,73598710,-1308330624,-1960719056,1496746955,-1173769212,567084244,-855317318,2064055841,2067694084,57936388,-1157678615,162792580,280240589,73598710,-1174047743,567083100]},{"sector":3,"length":512,"data":[73598710,-1174047742,567084083,73598662,1627834112,-972947452,293638,74909383,113704960,1145,70452935,266936320,1694942974,162791428,1689919949,-854936572,1715372577,141888772,70515585,550308980,-1962645826,687978747,-1950146099,-2093894158,41180410,599012021,-1073077811,1552621173,1960512289,-854608862,1975532065,541378341,1153892352,-973078494,-1023400892,1127123034,87865861,1526683625,89730696,-385527110,-2007302324,-1174046418,1105790308,1527679999,1594767620,-1962642684,-1274781938,-1591620313,-1054145441,-1962647645,-754470463,73507808,73350787,-1962052608,1258577182,-1994421429,-1023001058,-1191149523,1086259328,-1325923578,-233184486,-1961499730,1263225823,168640385,1086254965,-1979831546,-1023123138,-1274744134,-1021194999,-1157335390,199754922,74883072,-388962096,-388962096,-2015949020,-2029549357,-1631368493,-528066534,-1322566498,-378178299,552140599,452108288,452042947,74719292,-193656516,-335752984,1477619,-1577058304,131314,-2031600,-311155652,203092642,1937456160,6372589,0,-495764932,-562941892,808520205,1397312800,1129595213,542328136,1111564333,1230262863,1126188878,1095781711,218580306,825238538,892613426,959985462,1145258561,168642117,1347243843,541413953,1330795077,1413554258,1179012896,542393683,1229326861,824198476,538983712,604638496,1162627398,1025520160,220209184,168633354,541478725,1431389523,1162038853]},{"sector":4,"length":512,"pattern":-151587082,"data":[1414483488,1431258656,218580046,168633354,1162627398,1329799251,1380012109,1263476805,220465677,1279870474,1329799237,1380012109,1380982853,1095911247,604638541,1229326861,1478509900,1414483488,1431258656,218580046,168633354,1162627398,1159747616,1498697805,604638471,1347357197,1159745093,1380930130,542002976,1162627398,218585120,168633354,1163152965,1229332562,542397266,1162627398,1296125472,218762565,542265098,542394696,1431586130,1411403346,1313153103,168625988,1292504356,1414419791,1397310496,1414808907,693315653,1145979168,1414088736,1498300704,1497713440,220465677,1414415626,840979013,1176519758,541412425,1162690894,542265120,1447645764,1145643077,604638471,1094912525,1414483534,1297040160,1163018576,1279870496,1330913349,1398032672,122047557,220465677,1279870474,1092637509,1142965586,1162233417,1414415698,1514754848,218583877,79242250,-74712064,-544493838,-1047858827,-796212734,1656995890,1684104036,-1973066893,-1639735505,-400907846,-361496282,-930447308,-1969337441,981480455,-33262655,-1966735675,-1627343147]},{"sector":5,"length":512,"data":[169118975,-644924928,1702258035,1768628334,1633841004,1797284981,1701737061,-1778355348,-1929374700,65539616,504669696,1260421632,-870313241,65543200,672443904,1260421888,840218624,237014272,-1073740824,1258306580,-905965081,1258309140,317279207,1343544320,1260423936,65543400,237030688,-436207546,-1929356780,65539616,1679093248,300370688,1846867968,1273449216,134222569,1090549781,1273777127,1273580523,436227050,-1962900971,484985632,-853539864,7212576,-1944771584,237014272,738198504,1258329621,905974247,1258332181,317279207,-1441446400,1273446656,350950380,384439785,-1273669632,1260423936,65543400,237030688,1644167328,-1929331179,65539616,-938120704,300370688,-770345984,1273449216,-2080369943,1090575381,334253031,367596779,-1912596758,-1929320939,17042976,-267018240,1260423936,65543400,237030688,-1442840366,-1996424683,18353696,68530176,-1174368767,-1929308139,65539616,571851264,300370689,739626240,1293977089,2692648,20321751,-380901557,367460370,-415170240,-351015861,-367662828,368115734,546111818,99854,22287871,-414441342,550248466,369557526,545456478,370737228,545980776,-400758709,550313987,79374,24253987,-1878122359,371785729,9306502,26220083,-401727347,372965379,-414514790,373620753,-414514780,1239371,28186197,-330569919,-384505069,1501717,28841567,-200400755,376242177,545391042,538109772,1450188]},{"sector":6,"length":512,"pattern":-151587082,"data":[30152312,692856909,-2147466777,-2097031658,-1845474272,-1962811370,484985632,-853539864,27528736,-367617024,237013249,-1577057794,-1912474602,-32068608,237014273,-1308621848,-2130573290,-401162752,1394644739,300369733,-233383424,-1615869,1829513367,485173508,-1507072,1812736151,1491740932,-65608704,1394644739,-268417211,1476658710,679935975,452995416,-1862004713,1634485538,1684370288,1835627552,540876901,-329762014,295279133,572537733,1667584800,1935961711,388431906,546767898,-414759597,390135825,-413662172,203986943,-349633427,-385810404,203986943,2688108,70129483,1163075735,391184455,9307192,1813643264,1491740932,-65608704,1394644739,-268417211,1476658710,679935975]},{"sector":7,"length":512,"data":[169201151,237013248,-721419598,973083669,-301934193,973086229,1919277455,543519585,1835363941,1752375417,7565417,2627062,14257978,3282493,1160257712,1414483024,304892712,202369577,1280329004,1260934223,-366406868,-366408689,1280329000,1260934223,-383184340,1160514575,1414483024,321669928,202369321,739322921,1157645890,973093910,1593891215,973096470,1936316815,1768452896,1718558832,1668489318,1852138866,1343645440,-644924928,1511431424,1280328960,1260934223,-416738772,1330401349,743123028,1139353874,1346714161,676613964,689122379,1280329191,1260934223,-383184084,-234868157,-1962908650,1280328992,1260934223,-433515732,-853489649,1280328992,1260934223,-416738772,1346714137,676613964,689122379,1127881191,974251825,300364355,300368186,237014330,1396310556,484918350,1396311516,1129597271,1173320,7214842,14257978,7870226,1691979578,544694642,1769369453,1931503470,7367016,8525594,14257978,9180969,-414572414,-870313440,-469755616,-1962895849,1380205856,1244157761,550314025,686432432,1162757444,1244158285,-383184340,1330401349,743123028,1143744786,1296387653,743057497,1172908307,1414483024,321669928,1160522025,1330401091,692725842,547437088,685565763,1162757444,1244158285,-383184340,1330401349,743123028,1143744786,1296387653,743057497,1172908307,1414483024,321669928,-969266903,1313162280,676941125,689056842,1280329193,1260934223]},{"sector":8,"length":512,"data":[12369971,1052266497,43623173,43714246,-1677277696,113639426,-1275067747,51165705,28582349,216539597,5957632,-402605848,-186056395,113407,-1962802760,56540104,-930343987,-795950962,28972914,33863680,-1157495879,332203358,-1064384372,359846030,-1694040381,-1690402302,-915274238,-1274896710,-853422839,-1677263328,-1673625086,-898497022,-385698630,512491497,-1014824295,-1726052064,1593540866,-1173655027,162792138,-379969075,1065418590,-1948289819,6143987,-218100807,1543947940,1555693824,-854150144,440896289,-1962764381,-2135876537,-469044746,-466484108,-1784430338,224311298,-956132445,31750,2114373120,-1950154752,-2130536690,1963982841,-1048329471,-2084556012,124913913,149521216,1107293417,29026442,33667072,43196043,-930343987,-795950962,113654130,-2130705763,-1996357437,-1962765538,-1962764514,-771873597,-2116549656,-1962713405,-1761151457,141820162,-338564143,-338564143,268428161,43458185,-16804631,-2113757946,100834622,-591754891,-855002110,-1155478239,243993950,448004757,567137163,1555699124,169987328,-2129955392,-503283517,-854543127,-256195807,-855002110,2149665,0,0,168624128,1330795077,1163010130,1313424449,1095114823,604638548,1380256269,542265170,1145128274,541544009,223496516,168633354,1498435395,1297040160,1413827664,604638533,1095240205,1377846354,541344069,1330795077,604638546,1431243277,1179590740,1095783200,1327514947]}]],[[{"sector":1,"length":512,"data":[1380196430,541414985,604638529,1330448909,542395989,1381322579,1226851651,1380196430,541414985,218762562,1431260426,1411404878,1162302017,1313415252,1230128160,1092633942,168626701,542394696,542723649,542721355,1313163351,1095062048,218585412,-1626528758,-556687723,-690913112,-1072905867,1486787999,1017045126,1946530093,-1634361422,-1643901793,-392260193,725352636,1156121461,1949121791,-1634361351,-556728139,-690941784,1416941776,-791293707,-791293744,-1948921648,-1977967074,-1614607673,-1635725952,512436341,585636508,-1625328384,-1635785344,1087209631,180849310,-1978698301,-1979243323,1963343080,-847208699,-1966891456,1958742727,1975582212,851675893,-1015012153,-76347723,-1351429936,-1410611714,446439051,-1629452712,158674236,512350747,1692998300,-637296641,-778117423,-1611666474,112303765,145284817,292935377,-1794634593,-1642165858,-528066534,-1322566498,-378178299,552140599,452108288,452042947,74719292,-193656516,-335752984,-1911125005,-1576947686,-1024910606,-1971972,-311155652,203092642,1937456160,1918975213,19261699,-495764932,-562941892,-971312453,-404225785,-1639211264,129042314,1006633147,-385649304,-1040318316,748160711,915085985,76164248,748160767,57817660,754740201,-774665424,65262051,-1964781094,50378448,1976434394,-1009088551,-241112950,-1312474598,-1227847133,-402426624,1005060150,-1634361600,44574129,78169716,-1066064207,-1969318497,-1324532542,-390761433]},{"sector":2,"length":512,"data":[-90176517,1975519770,-389641723,-241171473,-388986342,-538247158,989596904,-1013615163,989594856,-386370107,-985990147,-379850380,-1581580594,-1949434342,742567154,1913273392,1932999686,-785961965,-773598749,48484835,1976434392,-1009088542,-386152471,222101227,1022653689,-277546693,537660081,-395157188,-462193860,-1256545861,-33060864,-1639735355,1023124712,202273328,1937456160,1916419080,1935752424,-1966568732,446735045,-1047871478,-3086141,-922827382,-1583342731,-1318306790,445889024,1648108404,1947898554,-1317585892,840332289,1405681344,535298933,-964011264,-991427724,452108800,-1965389885,-2000617977,1948299535,-80025341,-370473552,-1977966149,-1639735537,-910489718,-1308379641,1954036736,1006810683,-1305119636,1952988164,-1308314065,130923264,611611452,1882981302,1765544308,112375413,1933361546,-1023496588,-1295817668,1019316740,-17337229,-1016972094,79282570,-74712064,-544493838,-1047858827,-796212734,1656995890,1684104036,-1973066893,-1639735505,-400907846,-361496282,-930447308,-1969337441,981480455,-33262655,-1966735675,-1627343147,-556672509,-1965633122,-1639735529,-964020342,1962525194,-337999939,1019579074,-1621396221,-2137022901,-1164017649,-225764791,1963408044,-1639211183,-23180641,-1947241011,-1977937386,-20569406,-1962052416,454724638,-49026854,628359600,454303371,-1022703734,427098288,452271755,-1617015905,1268751947,-182548066,-2000670182,337545479,1268761371,260087710]},{"sector":3,"length":512,"data":[512466560,-947250445,846512906,1929333992,309788,-774241377,-690905378,-1073084534,1134548852,-1625847138,931831363,367547331,-561553920,-1623750570,394829387,99140443,-216626944,-1600077030,-1962408934,-1977944802,453031632,-182548006,-1948612838,454752286,-385649958,-1152190120,260709024,11911678,-1946973188,-1952123910,-1243706409,-1998944508,-838974705,-1070401163,-1017510008,984412811,1128439559,-17533538,-1007585843,-1996488517,-1340436450,445817599,-1239772254,452042752,91365692,30310559,-39851874,977067378,1659372917,168553465,-153169472,-690945594,228641140,1958742555,-41948925,-1308681240,-1961331445,-971338730,1134493959,-1994946402,-1625649122,931700291,-369270551,512489764,512301708,-1813505394,-385649665,-1598293874,-1324905958,-1979569140,1021342440,-1612942587,126524995,-930455252,-1073561598,-989675262,1488699394,-1227847144,-637296896,-778117423,-1625847082,931831363,-973153657,126537098,178144159,-1977322304,-1634361367,-400907590,477429546,-712376138,-1023491330,-774241377,-690905378,-23161441,-1310951992,-123541236,1134499722,-1623749986,126524995,-469771641,-393606727,-960890681,1019709952,-402426624,19136576,-1196422540,1357431562,11528448,-1022709584,-385857816,-947257172,578027580,-1073036406,-947243404,201335528,3008704,-782646902,-788420386,1021080790,-371690365,-1835007875,387098,-352260120,167847139,-389510463,-980811769,-1022740444,-1252961341]},{"sector":4,"length":512,"data":[256000,-389850279,-73400265,-791293926,-791293744,452698832,-31785797,-957909745,-71629817,-972584422,1049296903,92810394,452468363,-1710846125,-1639735508,452468361,512447427,1134500492,-1944155746,1392634650,452468363,1134495624,-132216418,1371757338,1397915829,-1252974357,-1957473728,-1977968098,1975716551,-1742828783,1959201306,1959263753,-383799035,378271644,512432794,-964027752,695517706,-1226259830,-389641473,-1014300751,-1962959128,-153169465,-690913083,1458046324,-402199553,1374224281,1499094015,-1966896445,11882959,1509900520,-556678774,-780089866,1946203606,-13637629,1381097451,-1979665069,-14423864,-2135572086,104646436,-1071379852,-1069758604,-393559180,445914763,446043787,1038650603,-13583880,343146556,54284469,112532084,58000444,-1325151255,-150804204,-655833718,180456190,-5314110,-1039481462,-385955095,-397215732,-1185155073,78677524,1282721594,1215612474,-952499792,-969260428,11550324,762627898,729073210,-969226358,745871025,57934652,-1963511832,1958742723,-1965390067,-1967125821,-402426681,-1867450596,2028585482,987400190,-1325042489,-141957119,-1611231255,-2041519994,-140056352,1946238041,-33346541,181075658,1964290498,214272739,-28710648,1156105610,-22353410,1356891807,2112413830,1963015415,-1709274169,180849178,1964945859,-1742828613,-528066534,1958742686,1959329355,1959329305,1959329325,56224003,1055653296,605719712,-1154452479,-628686847]},{"sector":5,"length":512,"data":[445390475,-774241377,-690905378,445390473,-55518585,-628679445,445652619,-1022703734,695476913,1134499720,-1019770722,445390473,451477168,-389838082,-947192299,-1241640728,-37295680,78768266,-1309273368,-170727145,28436618,-1309276440,-1709798528,180783642,-2028833342,-1742828582,-126359526,91609735,46760095,12970398,-21641078,-930478869,-397281611,447870652,-1049362116,380699708,1012513652,605451264,-786074623,29488862,477419217,-131808886,1357496842,445817085,-989200092,-1963112728,171451585,-31790654,954778890,616663805,180358200,-47322686,-155858806,-160765871,-1031138127,141934602,54314634,37487732,-2036369547,-528068384,1492537320,614391942,445817345,-2031368566,-1325597976,-50992886,-793393014,-164435887,1008399008,1975945772,635982565,-1325257482,181075476,1513780674,-1621506422,-1643983488,-11343535,28436618,-1309334808,-59053952,-2147168896,-947192347,-2036399836,-528068384,-1461140214,-528066308,-385649250,-18219768,-188814852,1356891807,-706158458,1946238197,1007989041,1021998082,1021735940,-2147060477,-897564470,-385896320,-2040988557,941924064,-393559542,169513888,1959103168,-369679358,-224330440,1949056026,-528066526,1019805342,-1342016279,-62527256,446176907,445388427,-634699198,446176905,1492948201,-392241018,-1964442581,-177542916,20714673,2129232757,-528048132,-387938736,87881560,222043252,993804148,1290287988,20732405,1786057905]},{"sector":6,"length":512,"pattern":-151587082,"data":[-31144566,-369363224,-1818166187,1975519770,-528066548,-1626862434,-2041519994,-148707104,896798012,829700924,58010684,-336129048,-1944155195,303991066,-1948612837,-1977936866,1958939335,17286676,-2002893921,-1639735529,12269448,337545472,-528066533,-83826274,-386163992,20772060,695538865,446176907,445388427,463356575,-1742829094,-68753382]},{"sector":7,"length":512,"pattern":-151587082,"data":[28621564,567085492,30410438,-1173703680,567083471,30672582,16825344,-1302923725,30849792,-1308609816,299285249,-1107285272,-692125226,268482833,165914355,-1581643340,-853422847,-737739232,-734100991,-814405631,-1833301580,-853422847,-720976352,780795905,28377556,146276534,1913900290,117359361,1048707541,1963327957,25344741,567085492,168632525,1684104562,1920099616,218591855,168633354,1886220131,543519329,168651631,1661603108,1634757999,1696621938,1919906418,604638471,1869416973,544501365,1802725732,1746938995,1696625769,1919251566,52693517,0,-1327890432,-339334653,79820475,-628665739,-1224874624,1959213593,1019710025,-1241025278,29488662,-1031127948,-1022753236]},{"sector":8,"length":512,"data":[740889132,1162757444,1244158285,-383184084,1330401349,743123028,740894995,552476739,401342484,545456288,402849866,549716138,742674003,1314077268,1314121540,168815172,-1273493248,285249024,973127192,637589903,973129752,1919277455,543519585,1931508077,7367016,13768750,14257978,14424181,1294475440,1414483024,304878120,202369577,1280331052,304632911,-366406868,-366408689,1280331048,304632911,-383184340,1294732303,1414483024,321655336,202369321,739322921,2063615554,-1912543720,-266829056,-644924928,-99051776,-644924928,2002874980,544828704,1885956211,68722432,-644924927,236513280,1293978369,1414483024,304878120,202369065,1293995296,1414483024,304878120,202368809,547437088,1347231883,676613964,689056786,20126950,1293995296,1414483024,304878120,857532201,418775041,545390872,538109770,1712332,19012001,1145905291,676806994,-853530294,-366956512,1313426728,743057477,1307126034,1414483024,304878120,1229794345,1244153166,-383184084,1330401357,739387476,740894995,1280262989,1244156495,-1590026199,-588823776,1313426728,743057477,1307126034,1414483024,304878120,1229794345,1244153166,-383184084,1330401357,739387476,975776019,1229793478,1244153166,-383184340,1330401357,739387476,1294739730,675630665,689122378,1280331241,304632911,690557740,-1426046164,-2097075175,-1908782560,907653888,-644924927,1075433472,-644924927,1684628512,543520544]}]],[[{"sector":1,"length":512,"data":[544500072,543516788,1835363941,433586297,-1892023990,434962649,545390932,826926921,1226886176,550445106,150999786,-1962844646,1280328992,1227379791,-416738260,-853536022,237013280,2030043536,-1962842086,1280331040,304632911,-399961556,1330401349,742991956,451488018,1294003744,1414483024,304878120,1346758185,676613964,689056841,-853533974,1294512160,1414483024,304878120,-1357960151,1294527017,1414483024,304878120,1346710569,676613964,689122377,740891113,-1590026220,237013280,301990288,-1006538213,262151200,-1338370516,1280331048,304632911,740889132,-366366961,1280331048,304632911,740889132,1330401349,742991956,434710803,974203945,-414572414,550248466,549730837,738709532,549730838,738453532,545470998,682637898,1330401349,742991956,267004178,1346710540,676613964,689122377,688656362,1346709738,676613964,689056841,738988009,1330401349,742991956,266938643,321661196,4604460,24910702,839852228,-1338370516,1346709536,676613964,689056841,738988010,1330401349,742991956,267004179,686434572,1330401349,742991956,266938642,1346710540,676613964,689122377,688656361,1110184236,1346714182,676613964,689187913,1239783,25566068,461111438,545456528,462880841,545980826,-420990647,-853537009,-416200416,-1992683761,22285856,-1541686016,1294512129,1414483024,304878120,-1357960151,1294527017,1414483024,304878120,688991273,-352316372,-1006522853]},{"sector":2,"length":512,"data":[411881,0,122355712,0,0,0,0,0,0,0,0,0,1291845632,1329808193,1279611469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342374656,1409289546,1176525140,541871177,134221107,1869365792,779316067,1140853261,223040329,1347371808,1397310496,15691,0,0,0,0,0,542244864,1414352963,873560,1346576466,1146047565,130416653,-838974688,-1950091147,126397682,-838974654,-1966869131,1971266567,-930430207,1124358632,-1962938135,1971266567,938001153,-219593981,1836008447,1684955501,1920091424,117928559,1766195207,1310745964,1176532079,1684960623,1936278528,1967530091,117927020,12058631,-401552128,350879677,38910720,-385895192,518587115,49080320,-855637832,48097296,1136140493,47616,585635021,29735681,788496616,16983691,-402535493,12320629,-1021409024,6135809,91562044,1575486901,16508928,-402576408,-202899089,37349377,-402397720,359924252,1946282171,-12326909,-402426904,-1947729040,1965964290,-1088517130]},{"sector":3,"length":512,"data":[-13637631,-402491672,229703877,-1341943064,40953888,-1157617176,652739031,11528447,2095582641,52333315,-370963711,-1427570811,1975859714,38136067,1692977290,-1119997,-1996010565,-1979643362,-1325285074,-1168944896,300417153,-385649405,126354331,-1966722493,-1999962384,1963049494,1975913193,-1949071563,1124188958,29564553,1498141575,1371668057,-986005110,58019996,1392742888,1526859752,-269999952,-398348031,-1655176441,-375294887,129040299,-33432088,30992576,12125104,1976434176,1976172284,1976106744,1042676,-1047903567,-402539032,1499136727,1409253097,12144978,-33443840,-17009203,-17271351,-1259047480,47619,-461368115,-1274448895,47618,-571796275,-1017423271,-402553368,716177787,-1157530136,-823656130,34269185,762580284,158599740,91496508,126355826,23128131,1358947305,1474846384,1074026497,58016572,1023303401,-389974955,-907476666,-1157134081,887685438,1364349697,213635975,-225754623,977029804,125108400,1118630539,-2009060286,146096903,1118630539,1006711202,1009087534,1008825405,-2011336159,-838974713,-225712523,832717484,1949187073,1950170126,1931557898,256493,-1241676824,20029443,57945660,-1962855750,1027386610,-2008937612,-838974713,65663349,-43849728,797442225,110472,19664521,19795593,-1017423271,1011025802,-385649395,1027407279,-222629259,1124567553,58002748,1023254249,-1962445779,-381506822,229703659,1118501515,-91504590]},{"sector":4,"length":512,"data":[-222575702,31701505,-225770059,1946630828,1111737089,-227160578,1007127235,-385649395,-1096614553,89307905,34257747,-1996409926,1006747422,-1023314623,-1174268741,512295222,1111228863,-1161625227,1379664185,-373096075,1094516023,-222619531,126501633,-109769412,1127155654,1129187270,-968685688,364576775,168266241,-1023314752,-1427569739,-401755908,179306498,1347506771,-1979272804,-92935984,1515804829,229688155,-1946162712,-1325284578,65583616,-1174399512,266862692,702976,-1342174744,-1966931408,1632744,-973197387,-93070805,-980755965,141897772,74826042,48963765,-980762114,1375709673,62149458,-855637830,31752212,45357172,-855637830,518291476,2133125237,-495681732,-369130008,1570832348,1965046784,-1308184290,-101324545,-898318326,1515945764,1631372121,1019412851,-1023315333,-1597824972,-922877691,347151225,-1157604166,-35127168,1946092544,-61282045,-1996455749,-1342110178,17146495,17178251,440141706,1072235381,512312316,-1073086202,1515963768,1364378457,-2135621455,1493176808,-1023314598,-1174227886,348979200,-1017461506,-1169095756,348979200,31752281,-20774540,-17992247,-1008110131,-402651416,-471203896,28594942,-1979711302,1511312833,-1173376573,-2135228324,8316928,24428798,1560725187,1656430592,-70981374,-1324921926,-113907686,1375800506,753406897,-1320002823,-114956266,1975582298,41007878,-1308912663,-116004849,-244006658,29532355,57966636,-1308843031]},{"sector":5,"length":512,"pattern":-151587082,"data":[-6428651,1543462888,16351321,199754612,17611264,-1324921925,1763600,-922025803,-1262288523,122403354,682893773,-855569222,1975519777,1381221296,-1311537327,-121247718,1364351577,1509474024,-1950131366,-1962932706,52333027,767789825,-469104565,646501584,45613505,-1156526848,-689436778,6136058,58007612,-1141167127,126484581,192225340,1128400838,1127352262,-399505466,-1070399713,-385808990,1162148620,808594755,2003780640,1852402798,1869881451,1668235808,1632772193,544108404,808465243,1936745005,538976349,1093482784,942502512,168430897,59648,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":6,"length":512,"data":[262151200,-1338370516,1280331048,304632911,740889132,-366366961,1280331048,304632911,740889132,288106769,-1206128384,-117404159,973193755,335600015,973196316,1768348047,1696621938,2037212526,1936289056,1701603699,471597171,-1892023850,477036761,682623456,1330401349,743123028,1160522002,1414483024,321669928,686434601,1143746884,338438450,471909434,254544874,682637834,1330401349,743123028,1160522002,1414483024,321669928,686434601,1143746884,288106802,-367203072,1142983425,1347282993,676613964,689056786,537661417,826548462,1280331238,304632911,-366407124,-853537777,1294512160,1414483024,304878120,202369577,1280331052,304632911,-366406868,-366408689,1280331048,304632911,-383184340,1294732303,1414483024,321655336,202369321,739453993,-1002813886,741478176,-1925574641,14421536,-218066886,-1912474596,-31655168,-644924927,136131072,-644924926,1851880052,1919903347,1634541677,2020176500,1919903264,1953460768,1869182049,1918967918,1684960623,1701344288,1629518368,7563640,34741562,14257978,35397033,304631105,-416738772,1093176575,1296120361,321655336,-1979717847,975782184,304631105,-416738260,1296120337,304878376,-1382615,692136073,676151610,689122323,680329191,1094330689,739453005,300362004,676151610,689056788,1094324711,739518541,300362003,676151610,689187860,-1325395225,973219357,-788473457,973221917,1869797775,1702125940,1869766944]},{"sector":7,"length":512,"data":[543452789,543516788,2019631226,-654281879,973224477,553703823,-2113780706,317147424,421579808,1313162298,676941125,689056841,1162757607,1227381069,-349629908,304631105,-383184340,1296387653,742991961,1105930515,739387469,1105799443,739387469,1660954900,1141001758,1296387653,742991961,1172777235,1498236238,304892200,1296165673,304878376,1313204521,676941125,689122377,676151787,689122323,676151785,689187859,-1908767942,1478388480,-644924926,1646168832,-644924926,1701602675,1696625763,2037212526,1953784096,543908705,1885956211,1813943040,-644924926,1981758208,1226867202,-870313241,974065440,1346707595,676613964,689187913,-1994339040,41946656,547437088,977921867,1346709680,676613964,689056841,738988010,1330401349,742991956,267004179,686434572,1330401349,742991956,266938642,1346710540,676613964,689122377,688656361,1110184236,1346714182,676613964,689056841,1161435623,1414483024,338446632,974317353,974251841,470687885,1314077186,-602085564,-413910523,1465072145,1212372041,-1908796953,-2145434880,1226867458,-1977660160,237014274,1392509668,-1912433633,-1642112256,-644924926,-1474338048,-644924926,-1306562560,1109440514,541414209,528089137,548209340,5499459,46538737,1313153158,676941125,689122329,1313426732,739911749,1160522003,1463898692,740890920,1280262981,422072911,1145908265,676806994,1294739738,1330401091,689580114,1280329004,254301263]},{"sector":8,"length":512,"data":[689187855,1280331052,304632911,740889388,1162757444,422074701,740889388,338185537,740889644,1414414676,254296641,704653584,-2113744864,317147424,253807648,1096038927,1111577678,-416724696,1227394559,688525292,1413120826,1096044097,269428802,-1912608983,-171827928,2720072,47849524,-1743904631,554631171,1313145572,676941125,689056786,974777063,1296387653,739387481,-353949421,1313159705,676941125,689056787,1161433575,1498236238,321655592,974513961,1296387653,739518553,434579730,1162757434,338188621,-416738516,1161435626,1498236238,304878888,974513961,1296387653,739584089,-353949421,1313159699,676941125,689056790,1161433575,1498236238,321656360,434825001,1162757434,388520269,-416738772,1161434602,1498236238,321656616,334161705,1162757434,405297485,-416738772,1313159697,676941125,689122328,1161434599,1498236238,304879912,974251817,1296387653,739846233,434579731,-299763712,1313426690,739387461,300362002,1313426746,739387461,-353949421,1295649807,675630665,689056787,1295651303,675630665,689122323,974514919,1162758477,304878632,202368809,1313426746,739518533,266807571,1229797900,354960718,-416738772,1229797911,354960718,-416738516,1295649807,675630665,689056790,1295652839,675630665,689122326,1295652327,675630665,689056791,974645991,1162758477,321656616,974513961,1162758477,304879656,401270569,1313426746,739780677,266807571]}]],[[{"sector":1,"length":512,"data":[1229797900,422069582,-416738772,973869034,1162758477,321657128,202368809,1313426746,739911749,300362002,1313426746,739911749,-353949421,583270421,1145373432,676806994,300362002,1380205882,321410881,317384489,1380205882,338188097,317384489,1380205882,354965313,974251817,1095910469,689317975,974318311,1095910469,689383511,974318311,1095910469,689449047,1161433575,1463898692,-416736984,1295651562,1463898692,-416738776,1145911825,676806994,-353949421,1145911826,676806994,-353949420,1145911826,676806994,-353949419,1145911826,676806994,-353949418,1145911826,676806994,-353949417,1145911826,676806994,-353949416,1145911826,676806994,-353949415,1145911826,676806994,-353949414,596901906,1128596226,1380928591,-416738776,1128610321,1380928591,-416738520,1128610322,1380928591,-416738264,1128610322,1380928591,-416738008,1128610321,1380928591,-416737752,1128610323,1380928591,-416737496,1128610323,1380928591,-416737240,1128610321,1380928591,-416736984,1129134611,1380928591,-416738776,1129134609,1380928591,-416738520,1129134611,1380928591,-416738264,1129134611,1380928591,-416738008,1129134610,1380928591,-416737752,1129134610,1380928591,-416737496,1129134610,1380928591,-416737240,1129134610,1380928591,-416736984,1129134610,1380928591,-416736728,612958227,1346700044,676613964,689056786,1161435623,1414483024,321655336,974776105,1330401349,739387476,300362004,1280329018]},{"sector":2,"length":512,"data":[321410127,-416738772,1161450511,1414483024,321655592,974776105,1330401349,739453012,300362004,1280329018,338187343,-416738772,1161469967,1414483024,321655848,974776105,1330401349,739518548,300362004,1280329018,354964559,-416738772,1161489423,1414483024,321656104,974776105,1330401349,739584084,300362004,1280329018,371741775,-416738772,973158428,1330401349,739649620,434579731,1280329018,371741775,-416738260,1346714129,676613964,689056791,975835111,1330401349,739715156,266807571,1346714136,676613964,689187863,2130711015,1157830181,1414483024,304879656,2014308137,1280329018,405296207,-416738516,1161435151,1414483024,338434088,974251817,1330401349,739846228,266807570,1346714308,676613964,689122329,974655463,1330401349,739846228,300362004,1280329018,438850639,-416738772,973148188,1330401349,739911764,266807571,1346714136,676613964,689187866,1161433575,1414483024,738856744,266807570,1346714196,676613964,321653263,672130857,1280329018,254301263,689187850,1161433575,1414483024,738922280,266807570,1346714272,676613964,321653519,672130857,1280329018,254301263,689187851,1161433575,1414483024,738987816,266807570,1346714348,676613964,321653775,672130857,539373824,1280328963,254301263,689187852,1161433575,1414483024,739053352,266807570,1346714232,676613964,321654031,940566313,1280329018,254301263,689187853,1161433575,1414483024]},{"sector":3,"length":512,"data":[1442882281,1769173605,824209007,540028974,1126777640,1920561263,1952999273,1685015840,1868767333,1851878765,1700143204,1869181810,774971502,673198128,1866672451,1769109872,544499815,541934153,1886547779,943272224,1766596657,1936614755,1293968485,1919251553,543973737,1917853741,1634887535,1917853805,1919250543,1864399220,1112088678,1967202381,1919903860,539828339,543974733,1819042120,1634562661,1851859054,1867653220,1699225710,2036690537,16825376,-1185754573,12451850,-1551579648,-498728957,47608,8392330,-2118308637,61061888,1006651018,1007121440,-2012646356,-498777337,1436143,61619842,-972131327,17017862,-385635397,971636712,-1556184575,175393795,61030018,-385649556,-1058471933,61062400,-2113847576,141895931,-855637832,715024,1968241538,178181,1048711373,1951531947,-1421966786,930378243,61554306,-2113244084,1812179774,-370605196,5433344,67146400,9609729,67150496,10658306,67154592,11706881,67158688,12755458,-402643991,-1835007956,-1576981504,-1566572398,-1576915968,-1298136926,-1576981504,-1029701454,-1576915968,12058818,-1273967345,-384774912,12058772,-1948742144,-2097121762,460603643,-1207922497,-1064435648,7616139,7618185,7734924,1085922190,-1197083904,-661782464,-1489075517,57948675,-1124049431,-1499462744,-1271845885,-388986112,-75366293,-1291487920,518418,1971649408,-1206930668,1088946200,-2113883136,91488507,887669642]},{"sector":4,"length":512,"data":[-1421966848,578027523,61554306,-1291487946,649522,61554306,-1290832584,1816624,-1275063576,-389838336,550305803,-1274842182,-853422839,-2145923808,-58545692,-1173785600,162792331,550314445,-2113883197,1946157694,4622860,653668396,-670956687,4622917,653668396,-670956686,4622917,-670945236,218784963,1819035914,1818322789,1986348064,543515497,1701667150,220465677,1769099274,1919251566,1920091424,538997359,538976288,220465677,437918218,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,437918234,926101514,860037168,538976288,538976288,538976288,538976288,1701972256,151587188,1952805435,544109173,1663070068,1701604449,805965170,540096307,538981430,538976288,538976288,538976288,1746935840,1919184501,1681548389,822681698,168636464,842478384,541143072,538976288,538976288,538976288,538976288,980313460,157443081,168636465,859255600,541339680,874529072,1127620665,541275680,538981686,829583973,1650723130,741552393,573321265,1701604425,543973735,1769366852,1310745955,577072481,741552428,573321265,168632868,538976288,540489248,908079414,808591427,540292128,538981686,538970637,924852256,959848502,540227104,840971574,1161044016,168632352,538976288]},{"sector":5,"length":512,"data":[739118888,266807570,1346714308,676613964,321654287,940566313,1280329018,254301263,689187854,1161433575,1414483024,739184424,266807570,1346714272,676613964,321654543,1410328361,1280329018,254301263,689187855,1295651303,1414483024,304878120,-1609570519,1280331066,304632911,-416738516,956349199,973285926,1359010191,973288486,1919211919,1696626529,2037212526,1768452896,1493201776,973291046,-2147427953,-2113714138,317147424,253807648,545995279,1330401349,742991956,-420992748,550314001,1879974025,646840323,545391442,538109770,1646796,56371007,1145381003,676806994,-853530294,-366956512,1162757416,1244158285,-383184340,1330401349,742991956,1160522002,1498236238,321669672,1346758953,676613964,689122377,1128606761,1380928591,539576872,1126211898,1160305895,1498236238,304892456,1346758953,676613964,689056841,1162757420,1244158285,-383184084,1330401349,742991956,975776019,1313155270,676941125,689056842,1280329193,1227379791,740889132,1296387653,743057497,1172908307,1414483024,321669416,1126967593,1713850112,1243644675,1881624832,1226867459,1493208634,973306407,1929435535,973308967,1953749391,544502369,1830839919,544106849,1886351212,-1910015232,-644924925,-1742233344,304138243,-1086713556,288100640,-585053894,1262141498,-1925573913,48500256,237014330,-352321266,1090757159,987686692,1105667137,608299300,-14644422,608249987,304878380,1260578601]},{"sector":6,"length":512,"data":[1394618417,1162170947,741351502,1230453296,541611076,168636472,1126182962,1262113612,1327520069,1127892550,1163087692,808651277,1280262944,807424591,168638252,1142960180,1313424965,759242836,889851226,826679344,1176648996,1297624369,220353609,540030474,1025782342,758269474,1447249234,923405602,1162551344,741417049,609372227,724119848,723792198,609372227,691220776,808978957,1497713440,1126969888,673469000,1177233714,1126900786,673469000,220803889,540031242,1397506374,976239941,1163219540,1330520125,1095114836,222647116,808464650,1179605024,1128080454,673469000,975780145,609111896,1380467517,925968420,538976297,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,221913120,808530186,1129270304,541414465,824980786,842074637,1380982832,542395977,607209004,607274540,1111577659,691025192,1933648443,543387257,542725204,1196380752,575488338,822742331,1126182963,1380928591,808204064,875629069,1330389040,1163149635,824979744,1313426490,1313415237,542397776,1162892066,541017157,1347628066,608453957,892406285,1329799216,542265164,540486704,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1278877728,1413563215]},{"sector":7,"length":512,"data":[892477509,1345991212,1414416722,1162892064,992232517,1936744994,538983202,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1278877728,1413563215,741482565,1329805873,542265164,221260855,808857866,1297040160,608979270,1329799741,574239053,1162892075,723797061,742730786,168632887,540030769,1313165391,1297040160,608979270,542327072,168636707,540031025,1313165391,1129521696,574246482,1380927008,1414876960,542397776,589321025,822742322,1344286777,1163089217,1279346237,1329218899,1380261966,542265170,1330925383,808466720,538976304,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,839519546,1092628528,1313422628,609830219,541477178,574432321,1213472802,840977989,168636466,540029234,1092634185,1093157715,1008740644,1213472819,874532421,1159737392,541414220,1313428048,741417812,221979713,808595978,541477152,675696453,1411393841,542000456,221261874,808661514,1430343712,1413301587,977622354,1313428048,741417812,1179012952,168639268,540030002,1228743745,1414877262,1330391076,691087427,691086124,892471821,1329995824,1028202578,1330913329,1313164320,690241832,909249037,1179197488,1145654560,608249892,824985900,1212366121,824714322,1411393840,542000456,608454989,740573480,691088457]},{"sector":8,"length":512,"data":[572531261,926026253,1162747952,1226855512,942803469,1380982832,542395977,1093415459,1228552996,1330389062,691087427,1411395646,542000456,540030002,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,168639008,540031282,1344292425,1163089217,1162368032,1095770190,1027953493,1397506374,1380989509,592727625,1331178545,221979726,808465162,1414481696,808591439,538976304,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,873073978,1176514608,1094536789,1093157715,1127885092,1163087692,168636960,540029236,1313428048,873074004,1277177906,541412937,1431326281,1178869844,608521289,859048461,1229725744,1226851662,1414877262,1766203936,541025644,1178876706,608521289,875825677,1313808432,1381123360,1193300559,542069839,873073968,1226846261,1430659142,826089550,1162368032,1347362894,1142967877,1162627398,1329995812,1313415250,542397776,589321025,873073970,1226846773,1430659142,842866766,1162368032,1347362894,1142967877,1162627398,1329995812,1431248978,1414877268,542327072,168636963,540030516,1176520265,1025527381,1213472817,908086853,168636464,540358196,1159745103,1380930130,1414481696,809050191,168636464,540030772,1313428048]}]],[[{"sector":1,"length":512,"data":[824385620,1380467500,858859556,538983209,538976288,1635013415,1377858674,542524229,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,975183904,808782349,1179197488,1179600160,539570472,1313163348,1397704480,924861013,168636464,540029237,1398096208,1381252421,1345996117,1414416722,1479291171,608585295,889851195,1461727282,1162627400,1129270304,539570472,975188030,1025786144,1431326281,1277699156,824722255,824388649,889851177,1344288050,1414416722,1093415459,975190820,1230131232,1092637774,975190820,1313167136,889851204,1226846259,1095770182,541414229,1313163348,1430343712,1178420563,1163086913,1230131258,824398926,1313822764,168639268,540030005,1330925383,808465696,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,975183904,808847885,1213669424,541412425,542396238,675696453,168634674,540029238,1162758476,1347307808,589321301,608250930,825625101,1329995826,1028202578,1330913329,1313164320,690241832,825625101,1380982836,542395977,1294741795,673465417,1227629633,992555308,825625101,1329995830,1028268114,1330913328,1312437536,542398533,906628426,1310734385,542398533,906628425,1344286770,1414416722,741417760,609372227,691220776]},{"sector":2,"length":512,"pattern":-151587082,"data":[906628411,1461727283,222580293,808728074,1230131232,824398926,1380467500,909256740,538983209,538976288,1413687072,1512918098,544175136,1936682051,1768300645,221144428,808793610,1230131232,706892878,1884626986,1684107116,1836016416,1952803952,707403877,1279474210,977621839,541347397,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,168639008,540028983,542265158,540032329,824201044,221261872,808531722,541477152,542396238,675696453,1411393841,542000456,960052553,168638777,540029495,1415071054,168642848,540029751,1226851913,808465726,1213472816,1377848901,1381323845,923405646,1344286772,1414416722,539634210,1853321028,1684107116,1836016416,1952803952,707403877,1279474210,977621839,541347397,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,975183904,809044493,1377841200,1297437509,436866373,0,0,0,0,0,0,0]},{"sector":3,"length":512,"pattern":-151587082,"data":[2037411683,540091680,168636965,1836016486,824516720,221390112,-151643638]},{"sector":4,"length":512,"data":[550314018,-603053939,1347238400,676613964,689056786,1280331239,304632911,-366407124,-1925576177,17698336,-1406654720,-14644477,608249987,304878380,1294133033,550314018,-603053939,1347238400,676613964,689056786,1280331239,304632911,-383184340,-1925576177,17698336,-1238874368,1092651779,1713563428,-853532058,-416200416,843659851,-1925559321,22285856,-1071092480,1159760643,1414483024,338447144,317122601,1126223136,974251825,300364355,237014330,-2113928586,-1962685912,1230459680,541606740,545857741,268814,64235716,1414092627,-417314749,974318112,1306997059,1414483024,304878120,1346759209,676613964,689056843,-416136390,1330401357,739387476,1172973843,1414483024,321669928,687276073,826541022,1280331239,304632911,975770156,1306997316,1414483024,321655336,545995305,384315715,1226886432,-1992683033,66850336,-399955968,1139229187,843312177,1226867258,-870313241,974065440,-2030100341,-399949272,1414414676,1227375169,550314025,-66183031,691011587,545457138,691863625,826475516,-332315673,1241518095,1124337193,843310898,1052652,68168054,-431873909,550314001,-330700991,-1925576177,35393056,547437088,317384513,267143659,546126346,138254,68823424,839786637,698023936,545981476,-14121473,689302408,337700640,-1927230176,31460896,774481152,237013252,930,689576448,545457138,691863625,826475516,-332315673,1241518095,1124337193]},{"sector":5,"length":512,"data":[169115647,1109440512,541414209,550058545,344785117,548208660,742992974,4860996,1971409,1330651270,1398033993,740167464,1126967572,673465421,740892175,1463898692,689835816,354962732,740889900,1312902224,504309829,740889644,1347896654,504309844,2692140,2626779,806232201,351404034,549060658,740452642,1177293347,1313164361,608521537,1008009728,589333760,1431186450,1398034509,1175786752,1226867200,-870313241,1297436192,5461072,5248330,304291973,1145914156,692660260,1229934636,676549710,689056841,1229934636,676549710,689122377,1229934636,676549710,689187913,1511359488,1126206208,673465421,585574729,-283106716,1145914144,692660260,574890727,1143000352,676806994,-353949367,-1590026222,1095910432,692660311,-1946152473,-2097126379,-1845475040,-1912574443,2014684416,1226867200,-870313241,1297436192,5461072,8525307,1380196491,1227380545,550314025,686432432,1312902224,742991941,1345071378,1162756428,321669416,304884009,547437088,685565763,1496068440,-969266895,1095520296,1227375950,740889132,1312902224,742991941,740894995,369295427,545456268,369688649,9306262,10491432,739387469,317139218,304631098,-416738516,676149777,689187858,1325404647,1291889174,304878376,974251817,739453005,-1627885,692136076,321408314,-416738260,1093175807,376897577,676135092,689056788,1295651303,321655848,-1382615,692136073,338185530]},{"sector":6,"length":512,"data":[-416738260,1093176575,379519017,676135102,689056789,1295651303,321656104,974251817,739584077,300362004,354962746,-416738004,379912210,9306312,13768397,739387469,-1627886,692136076,304631098,-416738516,676149777,689187858,-1979716889,2703656,14423788,739453005,300362002,321408314,-416738516,676149778,689187859,318771687,1291904535,304878632,-1979717847,975782184,739518541,300362003,338185530,-416738260,1093176575,389742633,676135152,689056789,1295651303,321656104,974251817,739584077,300362004,354962746,-416738004,390135826,9306362,17045352,739387469,-1627886,692136076,304631098,-416738516,1093175807,676149801,689187858,-1879043609,1291914775,304878376,-1382615,692136073,321408314,-416738516,1093176575,676149801,689187859,-1358949913,1291917335,304878632,974251817,739518541,300362003,338185530,-416738260,399966226,676135202,689056789,1295651303,321656104,974251817,739584077,300362004,354962746,-416738004,400359442,9306412,20322313,739387469,501688594,-2140339574,304631098,-416738516,148279325,676149886,689187858,-434246937,8336644,20977712,739453005,300362002,321408314,-416738516,1870088989,676149888,689187859,82189799,1543536437,1291930136,304878632,2132666153,981418372,739518541,-353949421,664234013,676149887,689187860,-1278206489,-2080341923,1291932696,304878888,974251817,739584077]},{"sector":7,"length":512,"data":[300362003,354962746,-416738260,676149777,689253397,-1979706649,-1912513000,1746442496,1226867201,-870313241,1314592,24254696,1312902224,742991941,1357326610,1414416719,742991955,1307257106,304878120,1330702633,1398033993,321669416,676195113,689122322,1229934825,676549710,689187913,304631275,-383183828,739387469,922757397,1342274585,1162756428,321669416,1330702121,1398033993,304892200,676195113,689056787,1229934825,676549710,689122377,321408491,-383184084,1313427280,1227379540,-349629396,739453005,1307126036,355210024,428212265,1280311686,675630657,689187913,1229934823,676549710,689056841,338185707,-383184340,1313427280,1227379540,-349629652,739518541,1357457683,1414416719,742991955,1307257108,338433064,676194601,689253396,-1877373952,-1845460223,-1912497639,-1541824256,1226867201,-870313241,1314592,28187113,1347896654,742991956,1357326610,1414416719,742991955,1307257106,304878120,1330702633,1398033993,321669416,676195113,689122322,1229934825,676549710,689187913,304631275,2692140,28842545,1347896654,742991956,1357326611,1414416719,742991955,1307257106,304878376,1330702633,1398033993,321669416,676195113,689122323,1229934825,676549710,689187913,321408491,2692140,29497977,1347896654,742991956,1357326612,1414416719,742991955,1307257106,304878632,1330702633,1398033993,321669416,676195113,689122324,1229934825,676549710]},{"sector":8,"length":512,"data":[689187913,338185707,2692140,30153343,444924035,9306582,31464084,-414637950,550248466,-536865777,1342302746,1162756428,304892200,1162798889,676614231,689056841,304631275,-383184340,1347896654,742991956,1307257107,321655336,1162799401,676614231,689187913,304631275,-383183828,739387469,738208021,1342305307,1162756428,321669416,1162798889,676614231,689056841,321408491,-383184340,1347896654,742991956,1307257107,321655592,1162799401,676614231,689187913,321408491,-383183828,739453005,2013276437,1342307867,1162756428,338446632,1162798889,676614231,689056841,338185707,-383184340,1347896654,742991956,1307257107,321655848,1162799401,676614231,689187913,338185707,-383183828,739518541,2113939733,-2097018853,303793152,-1056928254,-2113790949,317147424,1310772256,1414548821,545405523,538109770,974397644,1313427280,1227379540,-416724436,1313427280,1227379540,-349615572,981678675,9321091,36707279,974251841,-770826099,469762048,550109754,-1858463985,538976800,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,754983456,-905821156,974589728,1679958149,543257697,1852403568,1768300660,1634624876,540697965,1229339426,1095648588,2377037,38673463,839786637,476577792,550109784,-1858463985,538976800,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,-2030034400,-905813476]}]],[[{"sector":1,"length":512,"pattern":538976288,"data":[974589728,1931616389,1634492771,1634082930,1919906915,992092218,479264851,546112108,138254,41295042,386867402,572559674,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,572530720,-2145592576,253807106,545602071,1987013922,980951141,1094394400,485031985,676135562,689253394,3228135,43261210,386867402,572559674,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,572530720,-1642253568,253807106,545602071,1987013922,981016677,1094394400,490799154,676135592,689253395,3293671,45227378,386867402,572559674,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,572530720,-1138914560,253807106,545602071,1987013922,981082213,1094394400,496697395,549978817,974203922,739319999,498532369,676135622,689253396,976437735,1745756301,985676289,2014191757,499187712,545850059,209934,47193586,386867402,572559674,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,572530720,-635555584,253807106,545602071,1734698018,1936024946,543584032,1635020658,1852795252,1679849504,1667592809,1852795252,992092218,-415155647,371190849,-523092657,8807726,48504393,-1609686899,546126336,973170702,546126528,30734,49159802,386867402,572559674]},{"sector":2,"length":512,"data":[1142960177,1313424965,759242836,1229208154,1213407309,824725577,1144662327,1394625865,808465448,168634672,1193293105,1112888143,808464672,839519536,1028857904,856296757,1330061360,541218131,221263154,540029962,1163019091,840977989,1397506874,808782349,859658272,1496985650,808988989,808847885,1414877216,1496078376,1213410345,1329221705,978861400,1497192783,808913421,1025786144,1162563145,1228547161,608247878,539107901,1313163348,221263648,540030986,1092634185,941767972,1213472802,1495289413,1395480893,809044493,541477152,574432321,1411392050,542000456,727268697,822742355,1226846256,608247878,573841981,1162368032,1029185614,223554904,808530186,541477152,574432321,1411392054,542000456,727203160,822742355,1226846258,608247878,572531261,1162368032,875634766,822742320,1344286771,1328043093,1498360920,1213410345,1195003977,542069839,168636470,540030001,978537539,542721355,222709327,808792330,826103840,1029257776,168636465,540030513,676615504,741356083,1395403056,978340168,676615504,741356593,691023921,1229476652,1431321168,875636820,691022896,1229476652,1431321168,859121748,691022896,1229476652,822742352,1176514615,1495290447,1411404605,959520847,1414733872,1394626629,1397704506,840974933,1345990708,858281045,1496068146,740905773,1346979923,1414877242,808596264,740907308,1346979923,942737933,1431314480,875636820,710486832]},{"sector":3,"length":512,"data":[710094130,760818738,1395403091,978340168,676615504,724579377,741485145,1395403097,223365448,892875018,1414877216,808662312,841636141,841634603,1395480876,1213410345,1345998921,891835477,1496133683,1496068650,1213410345,168644681,540031281,676615504,724579377,758262361,741485139,691023921,1229476652,1431321168,875636820,710486832,808528946,1395403056,978340168,1415071054,808585741,1329995824,1029251154,540031281,1394626388,1163154208,1395466320,1397704506,840974933,1345990708,858281045,1496068146,1213410345,1345998921,858281045,1496068146,740905773,1346979923,825362957,1431314480,859121748,710487344,693709874,1229476652,1431321168,859121748,710487344,710093618,760818738,1395403091,223365448,892416522,1414877216,808726824,841636139,740907308,1346979923,1414877242,808726824,841636139,841634605,1395480876,1213410345,168644681,540029490,676615504,724579377,741485145,691023921,1229476652,1431321168,875636820,710486832,710094130,808528946,1395403056,978340168,1415071054,858917389,608247856,1263421757,975460677,1092634185,572669220,1162368032,925966414,839519536,1394619699,1279350333,690241832,1194996011,542069839,221263665,808727050,1413829152,223236693,808792586,1095062048,1213407300,807948361,1213410345,824725577,839519529,1176514614,1226854991,1411396157,925966415,1095062074,1213407300,1227378761,1162754601,1379554392]},{"sector":4,"length":512,"data":[1381323845,839519566,1142960183,541152321,942421554,942803469,1094983728,639648084,809709640,1210461232,808464432,959580685,1094983728,639648084,809714504,1210461232,809709616,808651277,1094983728,639648084,809714504,1210461232,809709616,825428493,1094983728,639648084,809907016,1210461232,809709616,842205709,1094983728,639648084,809907016,1210461251,1127231536,858982925,1094983728,639648084,1128678984,1210461254,1128673347,875760141,1094983728,639648084,1128678984,1210461254,1128673347,892537357,1094983728,639648084,1128674120,1210461251,1127231555,808520205,1394618416,1162170947,976298062,1094930252,824198484,221588528,825241866,1380982832,575950409,707406378,1095910176,1193302362,1213219154,542327625,1330464068,707406368,168632874,808595505,1230131232,1345999950,1414416722,538976290,1953056800,1297436192,1129270317,1851859019,1937055844,1701519461,1684107385,822742306,540029744,1313428048,538976852,1869881376,1987013920,1752375397,1629515881,1853190002,1668489316,1852138866,168632878,808726577,1230131232,539120718,1210064928,1931506793,1701011824,544366946,544370534,1701998445,1853187616,573451822,808520205,1193291829,841503813,926297139,841493801,824981047,740898353,822742355,540030512,1163019091,840977989,1380927034,893211168,542069792,540028978,1346720851,976237088,1129466179,858277196,824979506,740896816,1162754642]},{"sector":5,"length":512,"data":[168645720,892743729,1414877216,925642792,1395403056,808520205,1176514615,1226854991,1411395645,892411983,1414733872,824201285,822742320,540031024,676615504,808922185,978529321,676615504,808528713,691025708,168645420,892874801,1380927008,809323040,542069792,976236597,1415071054,808520205,1310732345,978606149,1431586130,168644178,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112509322,12193997,1228835328,-855460864,1393552144,-1996488519,-1610594034,11796552,-1108864819,-37623587,-386430232,-1017381731,1962779880,-1107250853,1048576081,1963327560,-1122572029,1364601994,1958466792,1949056064,-875960313,1374194265,-1974251175,-2132964615,141885695,1913191296,281772035,281873332,-1146361765,-1511521420,-2007082565,1174959148,-109002242,-960663036,20230,-1017226813,5060351,4929279,276048956,1019969256,1494774560,-397293430,745847669,752502504,326380604,1019963112,-385650160,-1973830500,1525174760,-401509189,-399713749,272419663,1515841907,1364381834,-242591143,-1995446656,-1979692274,618713285,-2134767088,-439351323,-439294512,-1040783920,-2147257328,-301301555]},{"sector":6,"length":512,"data":[539435057,542724692,1229668692,1327515470,1411404885,1293960520,1398099529,1195987744,1226855246,839519566,1277175584,541412937,168636467,1279467573,542261573,808987692,168636464,1394618417,1162170947,221323342,540094730,775762259,1314007861,976562756,1379742291,841630798,892406285,1397506848,808585741,1380927008,893211168,542069792,540028977,1346720851,168636960,1092629810,725695794,1228550483,843128902,841889342,1213472824,1092636229,843136306,841889325,856296760,1229135920,1162625874,808857896,808464684,743582761,742468908,741490989,873073969,1027678256,844311361,541477178,775306817,1411397682,542000456,759250241,942812726,808782349,1480936992,889851220,1095770165,676613705,741357105,691023921,808202540,909445645,1380927008,809322784,542069792,808464433,1480937018,906628436,1330061360,824201044,889851185,1176514614,1226854991,1411395645,808525903,1312436272,223631429,6666,0,0,0,0,0,0,0,0,0,0,1131617017,167801504,-2147126080,930290169,-17724845,-1966407986,-1275049666,-1273967358,1527827720,-1183324080,74722364,132841648,752370408,1355376360,702036712,1488980568,-997588364,-369749271,99138192,-668604416,552125225,854075608,417878729,719858904,-389850679,-1791182536,149424244,-1070408232,703071723,-1560301383,-1597833164,-1073086412]},{"sector":7,"length":512,"data":[-394358807,-389321817,13329666,0,0,0,0,0,0,-1808911616,1534289933,1712675089,-1894367689,-1240404719,202569744,890293806,756113169,1343440942,455030063,1477574189,-1860440034,-1104247518,1393016327,773014302,-1979711457,-1676583138,-1557226194,-550571218,1477617974,-1205716718,-81602542,17825295,-653261808,809305108,6135869,0,1061005568,69508644,1816351296,-834572991,-413978815,324871762,692466502,-782758568,-1824010937,391129681,-1524012972,472494377,-1770094491,-2022641283,209325688,-194870157,-847598215,1026264186,-400852450,-383379672,187234345,1193443369,304483625,-1390709466,-2106896021,-94004117,307664981,-1740324777,927247428,1459701761,-1274967295,-452863743,-117312511,369235201,1342315010,1828872706,-1459452414,-553473534,973284098,1292059395,1761830147,1426287107,1319817044,-750588220,248402950,1426259,-984202925,1095716034,1162200004,1325450704,-1076736180,-984395956,-733065285,1095060633,1381208786,-607237812,483675721,499600979,516702788,1208800079,1092002898,1286851660,1157677267,-984332980,-1051442775,-2033366652,1414743621,1178971346,-1378595255,1314080325,1178971847,-1345568188,9946693,-1580903604,1384236110,-1513794751,-1496037052,-766553518,-724807001,1490408018,-967898160,-237612765,-2100146432,-984428082,534268175,-816558336,1411403657,1397721551,9290325,446978117,1431326208,-1949923884]},{"sector":8,"length":512,"data":[-766225586,97799896,1292947534,1263465168,-559654587,-649789440,1129251017,-893037503,1313428048,1229757908,1352586323,1159451471,1313442004,1095741637,1397341380,-951086124,616779530,1158860357,27546694,2475599,-766553009,1196574145,-1001407035,-1539028493,1480916995,-683310124,-741060716,-834318336,-1663806022,-271411762,430199875,1330205776,-968443698,1230110941,1334957134,1335412043,1162154451,1163073483,1163052756,-942389933,-733066929,550389212,-833290240,1431586186,1166986834,1166525505,1380930643,-851079995,1431520655,1235797325,-1537980345,147082754,-850047419,1145979307,1514753359,1124121029,-834321070,-800107320,-801024112,-984202844,-1471983426,-800762670,80627663,1225249361,1381239246,1381241764,-1538830775,1128354006,1327014981,-993767851,-884782764,1230132257,1207968455,1389219397,1386401359,-1547286961,-827833791,-834548529,1230176269,1406650190,1090572498,1379996876,-623750064,1413761280,1229037768,1229493972,1169278284,1387447374,-1211804599,-254652672,-1426063360,-1427460631,-554913813,-1477124883,-1108951335,15252711,2088532345,1011241087,2071603250,27522,1681615789,1722313553,1817404163,1702126368,1662608146,1663591233,1667916849,1669948239,1706301655,1480936960,1769414740,1970235508,1329995892,2035482706,2019652718,1920099616,1375761007,1381323845,1769414734,1970235508,1330061428,4347219,544503119,1142974063,4281409,1701604425,543973735,1668183398]}]],[[{"sector":1,"length":512,"data":[1852795252,1818321696,1984888940,1818653285,1325430639,1864397941,1701650534,2037542765,1684952320,1852401253,1814062181,543518313,1651340654,1392538213,1668506229,1953524082,1953853216,543584032,1735287154,1967390821,1667853424,543519841,1768318276,1769236846,1140878959,1936291433,544108393,2048948578,7303781,1701604425,543973735,1701996900,1409315939,543518841,1836280173,1751348321,1953844992,543584032,1769108595,1931503470,1701011824,1920226048,543649385,544173940,1735290732,1920226048,543649385,1836216166,543255669,544173940,1886220131,7890284,661545283,1868767348,1852404846,1426089333,1717920878,1684369001,1702065440,1969627250,1769235310,1308651119,1163010159,1162696019,1397051904,541412693,1752459639,544503151,1869771365,1851064434,1852404336,1818386804,1919230053,7499634,1936943437,543649385,1919250543,6581857,1701734732,1718968864,544367974,1919252079,2003790950,1986348032,543515497,1701669204,7632239,1769366852,1176528227,1953264993,1380926976,1953060640,1953853288,1480936992,1968111700,1718558836,1885425696,1056993893,1229477632,1998603596,1869116521,1461744757,4476485,1145980247,1953068832,1953853288,1229477664,1174422860,1145849161,1702260512,1869375090,1850278007,1852990836,1696623713,1919906418,1684095488,1818846752,1970151525,1919246957,1818838528,1869488229,1868963956,6581877,543449410,1701603686,1685024032,1766195301,1629513068]},{"sector":2,"length":512,"data":[1634038380,1864399204,7234928,1698955327,1701013878,1328498976,1920091424,1174434415,543517801,1701997665,544826465,1936291941,1056994164,1140866816,543912809,1819047270,1886275840,1881175157,544502625,6581861,543449410,1868785010,1847616626,1700949365,1631715442,1768300644,1847616876,6647137,1766064191,1952671090,1635021600,1701668212,1763734638,1768300654,1409312108,1830842223,544829025,1701603686,115,270451456,1338462720,1338462848,-889133952,-1,-1,-1,-1,-1,1342177281,124911672,118489086,1034,0,0,0,0,0,1792,2098951,0,0,404226304,0,65616,117899264,0,16777216,16842752,16843009,16843009,16843009,16843009,16843009,16843009,544106784,-9744640,1916928013,7037285,50332859,126501852,1974549571,440583,-236201725,24412732,1125092035,1396912010,-770975349,74766983,-633611641,1526730937,-654055820,-1246113813,9562376,512460493,-947257298,-1057045726,1335888244,-1296037373,-380799725,1035085501,-1187401031,-1296484686,884128053,-1187794247,-1296482638,1085454647,-1187007815,-1296485710,984791363,512434923,512295735,45219886,-1190415687,-1296498254,313702666,-1189825863,-1296496974,229816598,916635698,6267397,-1576770910,512426080,512294958,-1070464185,-1576770142,-947256213,-1057045726,512296052]},{"sector":3,"length":512,"data":[213451593,1159629576,632416515,-1966962087,2663114,54730379,55254665,512481927,-947256505,-1057045726,512297588,-628685996,55975561,55385739,-628630773,1946374075,1963401739,-2028995065,108259802,126402610,149475722,62176036,-1031108659,141771836,108212796,108142396,321661104,-1976643446,-1073069305,1129052277,-227161346,1193184083,-561553917,780717398,1060898698,-1151662475,-722795596,1534246632,1006632634,1971965402,1978591491,-1021130870,57983230,-1336108568,586279167,-1966253648,1872937010,1010558976,-1155294488,-1930950867,2662514,57999916,-852627736,-17525,3022473,167984800,-1958120256,1392721694,1516004840,24635474,41036464,-1394073424,679798818,839807834,54436544,-1070419733,-352108894,1092520725,1926890243,-105229583,1524251647,512354419,-140508353,1958742529,766044586,1915245032,99215522,-922828546,-392390284,141756205,1965462504,-25761533,-1979434776,1965046791,1542514691,20047954,512335194,-1932721341,1877541746,-397323717,-1326957074,-1665136123,55121545,1912664296,1973198089,129034499,-1672364022,447604819,1364827483,-689437837,1386043928,-1604696204,-1073085333,512428149,512295690,512426799,-2023881896,1398363870,-397158141,-1990501611,-2029823970,1497336026,1128485722,1128470409,1224784058,-1958131383,126397682,-1974910397,1975847617,1519242738,-1962926360,-1996166882,-402435554,-1899158711,55713419,82386569,-1946232599,-2030030818]},{"sector":4,"length":512,"data":[-1963029798,1124567770,24446730,1128481731,-1073084534,540807284,188544371,-35065486,83486724,-2025591573,-350778918,47828,1008170066,1511224364,1376134120,742137204,-1343743628,41216547,-88462276,-402426625,125044236,57945148,-1979882519,-2029831394,-2023859494,-1957472546,-1962921954,1124567755,1268713226,1133868190,991923011,-1948677158,-2005600993,-343575563,-1564462366,-56491267,-1181758206,-1195769541,168266240,-1155500608,-1014365888,-930430678,-988100726,-1212422006,-1950338560,-1958565126,-1958565126,1019456250,-385649374,540803123,-56620684,-1967126014,1127183367,39118928,1949969496,1967799302,-1576947704,-39714052,1968516098,126505132,1951973386,1946630826,126505178,36497475,172223723,1267890368,-1850720452,58020178,-1174347031,-756546709,606726158,787022707,1589269249,2156555,-253215115,191019523,-1342171672,-385649271,1706688520,583691,-1917835659,11397465,-1406209397,24494090,-389510461,-1053159787,1111750261,1330113259,1330905120,4347136,243263579,-1148138157,1093402883,-930430974,-654114635,1528269614,1726501699,-1949791730,615263986,-385649281,977469867,-1957661247,1118580466,-495337462,675070346,-225763980,-784552914,-801368716,921178484,1949187086,365422595,57802928,1476492009,-1406209397,-1073049139,602473337,207247616,-5222272,838947304,50176704,21555288,1543418601,-1406209397,2042628674,-1913961737,-1832038325,-1978921798,787647432]},{"sector":5,"length":512,"data":[1958742700,-1053146601,351007605,-1448367476,-1579898714,-1986096246,9293198,49004594,-39714384,1515804674,1968218428,16443395,1974549592,16050181,-650319440,-957807756,-437760000,-393236480,1347944674,-1963020823,1949187079,1916419086,9496835,57880636,-1610577431,-1073085699,1515784074,1659437945,1009218814,-385649362,246480473,1375776232,-402396952,-2023882499,-628664610,-1679244406,1539803648,-385837592,1364393471,535299978,14674013,-1605150119,37487355,512432757,-947256157,45137930,-1014362507,263453578,-931984836,-873787132,80269392,6088731,-402349125,57806415,1476698043,-402159024,1129840714,-193607426,-38934181,1107520186,-1406209397,58031908,1107323881,-225769670,-344609746,1006661609,-385649626,-397148731,-396688885,1211894999,41225136,199756976,-397323776,-380039975,984678236,1118501515,180456009,-1023314747,-1679222862,1536413178,-1563886005,1515782909,-401825560,-398196770,-253227879,1022653217,1007186746,1022128944,-370641874,126549299,175317052,108267836,41159228,-1605361488,-1057094915,-922877324,1274978281,540805002,154990964,171767156,-1018957452,966943920,701687811,-417311256,991332690,50044931,159115344,703091544,72792848,1532380648,-397190822,512295837,45810485,-388234496,511048051,1263720707,-1974782070,1396917015,53812875,1515969083,-1956977291,1159629283,-2024099581,-402083366,-1957486877,1577268510,1398201991,3022475]},{"sector":6,"length":512,"data":[1457424222,-870322712,1963793128,-104404733,-1041693838,250125561,2018745609,1894659,1583188712,-1168712057,126484481,58052412,1376834792,-388331693,669734598,-396553496,1364940209,-2130658990,-695537270,126522573,28364604,-806875531,-186100984,1435756636,1533874920,-930459055,-1978877208,-397717016,57933995,-386316311,-1595402623,-1957473536,-1996203490,-1962922466,1577270046,-1252598137,-2036379262,-997830460,1355056799,-806763386,1367520612,-873905429,-116200968,7727299,-1781706517,-384867351,-1073085739,-1975260299,118113031,-1958485900,378094359,116785198,1962869878,1538282278,-2028156184,1450240218,-1058513488,334191388,-1679255859,1160153373,1126074627,1007127043,1136620858,977012618,-390419598,-1535880690,-1418559188,-1569502660,-1073552334,-1748111221,632618798,126501632,24263228,1948269763,1007186676,-1057032912,180603134,1023112384,1014133259,-1610189538,-1073085696,1947221187,-1572646852,472646400,-181651085,-29620365,126491509,-31553213,-1979664638,35555800,-1576882173,79364865,-1073063936,1124567747,-31553213,1066027778,938009067,-31552768,-23860478,-1564421952,1364329217,-2029845830,-387413286,-628665069,512318041,-1151859970,-1073086460,1913208003,-9836285,-17485764,-1010237760,1006829728,1008169743,-1961659891,1963131422,1128481546,-1975314550,-371554505,27284586,50045443,292816956,50470539,77799049,50601611,77930121,50510787,-1303077399,45267203]},{"sector":7,"length":512,"data":[-1190874439,988285106,129939743,753234513,-1966568895,-16389912,259385916,-385941784,-797827295,-393592532,-1963003160,1925262021,1589706435,-1151934841,11862880,394844419,1976106563,126508025,-1468715972,-335622424,-20322123,2031006696,-385502565,126547834,378220092,58000201,1274983145,1023323880,1006793742,35031821,-385649405,-1070399841,1258487970,-402652998,24313491,1352618947,991533243,-1977912614,64654078,64685018,1490748378,-1976554338,50378448,1541048282,-1638345237,58049371,1008499945,1007121422,-385649651,1978151075,250132764,61939435,-400817432,1398407061,773753683,-561553920,-1618104234,-2041527162,82530756,-8656815,1006829728,1960478477,1947090108,-155260669,-1957438841,1577254430,-396960121,1396899921,3022475,1935399483,-112203773,1189610354,1225618425,1034030512,-51881213,-1009153262,-1545008974,1972948470,-385894666,-477366790,54861449,62033212,-1947663500,512318454,-390397906,-561553906,-1319391146,-1325208774,-1979665152,-1966241087,-1326953496,1958742781,1959082686,574374842,-1057035916,-1943212940,-985995403,-259340782,72933355,-401282301,1609049564,378136348,-1605237957,-397409541,1582826885,-1974018425,50045160,-980761286,635962996,50044940,1006937018,-1174179323,1012073631,-1959693053,1392812830,-1961391293,989868062,-1961790502,990075934,292772570,990063803,-1341492262,384231514,870898311,383707156,1457424222,1515372264,-1489190053]},{"sector":8,"length":512,"data":[417870453,468510973,-27268983,225759755,-1963438104,1540459253,334037874,1293322751,-1596296701,-1073085617,-780877174,-1979701088,-170989104,-1978866200,1021872647,-402295667,1267276722,-906048886,58049930,-386090519,742194714,-286546059,-1962717254,-1073042190,1760101237,-1564410123,-91553752,1007127210,-401574781,-2055864843,57987595,-16879127,-402199616,24444055,1260293059,-1948612861,-1996273890,-2030031330,-1964149286,1975519751,1128481540,-1293335741,208726270,-1073030539,-1528233099,-182392323,1375734458,-1645731980,1591379965,1951850119,-388331754,-1960043738,1946370326,-40638456,-504822924,-1965389836,1975716551,-42866429,54599305,1526939298,54468233,-170137255,-1979437848,1965833223,-65411069,91523388,-853874200,-756526261,427055953,1979451112,238863105,-857144459,1947024637,-69146365,50470539,-402540861,-1073021399,-454494604,1973501179,1976499954,-388895762,65732970,1261542376,1979436776,421390339,1072235381,1977039873,661383427,58052156,1006676969,-385649198,1012072612,1013806124,-385649349,-396820201,-397212759,259262371,-396541464,130421442,-1558279392,-855114236,-1558279271,971526916,-401771492,58196273,-402640407,65750401,-1979700832,1958805224,471787555,1726482292,-351827387,996730883,-1073065125,117575284,-33262603,1925528264,412739587,316598363,-9705125,851024589,-383874304,-388431100,126491624,715135093,-387413504,-12829902,-986051468]}]],[[{"sector":1,"length":512,"data":[1827144562,-385650152,237764743,-789119885,-397380885,-236389625,1011898378,1241609426,-1073035638,65602424,47616,463923283,-1628959372,-385648640,-286785515,-1610355900,-662044631,125092094,2095579319,1541048145,689545704,-768845749,-1189907373,512426034,-654113559,-1977913368,-402426617,-789169474,275956226,427081982,-1978140952,2043215554,911619,-393559810,417865904,1976434199,-1998038023,-21173766,-1070425139,-397323693,1515793542,-125124558,512350346,-1017445143,-1614794157,-2041527162,719972548,-488045708,783897586,-1241337344,-1999043587,1526771767,-399907095,-1073074637,1954888899,866314499,-2061954584,58008380,-399496983,1944591664,578480128,1380926696,480766035,57891162,1360610793,-402606766,-1336209083,-57415421,1684361791,1919295599,1931505007,1953653108,-1975320563,1975519751,-225253117,-227204548,1526766569,-854791333,54173852,57982986,1509061609,-401272645,512452107,-389872829,-1152176236,-521600522,1948466176,482273522,1360366777,11543100,1604517808,-388008700,126488795,175451196,1604501554,-107091964,1877476587,-397198568,-1017442000,73375827,175423498,216547248,-400510954,48764423,57891100,1360568809,983744562,738706947,1398528647,-1337241006,54108800,-386310424,126493349,1965571147,11879200,1290323454,-385649159,574419432,1172898677,1948794111,1965636843,1976434409,-114169627,742131572,-907476108,-561553679,1007127126,-385649620]},{"sector":2,"length":512,"data":[28376881,-402347614,-1449131934,1959329284,-14685949,84797523,-1930951819,-397714670,-2023819013,126506718,-1955320772,-320320677,1539312376,183042932,738707199,-1957493013,218324510,983744562,-561553917,-402330794,-399763550,-2023874280,-1974315298,1949056007,54173706,57982986,218139625,1386397746,425912324,-1947663500,78243886,-398953136,-259327845,574417034,983567988,-1967126013,-1241352976,1261221178,1477424872,-930479356,168055456,-1023314496,-628637302,1578551995,1381424775,-386207511,1348008035,-1682373316,57889046,-380438039,-397716739,125106255,57945148,1593729257,1263984263,1962426088,-9705213,54173786,-628637686,904463220,-379891177,1659436450,1975519994,126501653,-1308161469,-385649404,-1958481714,378094359,149422903,1971600632,-11540003,-417933848,-402651927,1260918478,-1320025930,363194369,-1293378099,-1564462591,512296104,512426834,-1973877934,824084743,1944468483,-381893887,-382962318,209047690,1006828448,1975683587,282519811,-445445060,-1241284421,-1965423872,931802821,-713832902,389986641,-842626479,1954495646,1917926500,1023288429,-1603832710,53215995,1038680949,-4191504,2030347062,1173763,77936383,149488506,-1623785728,-1590231292,-1979513852,1374194378,1360536505,53550731,-1224776727,1927687168,1929591860,-805225424,986067664,1945144006,-270604029,53550729,-336120088,1399187680,-1186187288,2142659881,-397227541,1398428595,-350539335]},{"sector":3,"length":512,"data":[1019579070,-1023315356,79319633,453229412,51505235,1994982260,-1558279169,-927378684,1503456037,-56442486,50044930,225822010,678691388,58000444,1929412585,-1963947463,1946696901,1019644462,-1973980152,1946434757,1019644518,-385649405,1702096764,-1258050885,64553728,260714201,797584963,-1558279334,-389852924,635982604,512318284,-1990523743,1493475102,1264248922,-1152190488,-56622186,46190594,316181187,-1966921017,529215224,-980753409,1274472528,50045528,-747371460,-1558279845,-388895996,1515803287,-352083781,1642617805,1248192587,1531652328,77930121,-1558279845,1407576836,1357437575,1172855626,1246357579,-397657111,58062387,1945036009,1355606275,1914064616,14412035,57876540,-839483415,1975582367,23783683,-381892354,-365111948,-1343683723,1965177856,221112579,58053436,1006759145,-385649370,-717487919,-387445643,2662645,38004819,-734215333,-655880843,512447477,-135789753,1019435850,-399608358,-1679231545,591144980,-1192751755,1088967429,1541048102,-402652183,-2081939719,-2024593132,1977289690,-153229053,1531678184,1976581315,33614083,58054716,1007717353,-385649208,-600032304,1290339189,1977498670,318368003,58054204,1007644905,-385649275,-616814024,-1528233099,1976646715,41871619,-386047768,-1020718034,1575517622,1377733629,-689417469,-389850269,-2024596076,-1558279718,21096452,-1343749260,-1966908598,1918974983,1937456377,-1017174795,57943612,-1158255383]},{"sector":4,"length":512,"data":[417857536,-1709835,963923772,880101436,-1975319115,-2758649,-2028655896,1007317978,743273274,-347508176,1934048262,53947459,64685019,182125531,-2015851837,1976434394,-309532207,-187307957,611572359,57817148,-1175622679,55642064,60584667,60322523,1502900955,808190133,-654063478,-705963385,-2025154072,-1975270438,1015098375,1393456391,1022663400,57957160,-1337335575,-805260025,1372097216,-1963686168,1929723073,-58464222,739463656,-2025220888,-1558279206,-561553916,-628665514,-2029754904,-561553702,-400430250,-2023817474,-1014343970,192023612,-1580393668,-402427053,-1168420741,-1336796715,78160385,-855590471,785974176,-822204417,-2055935428,-2123092676,725403390,1019412853,-1610910487,-20734389,1505759936,-16464606,-118964198,-1240470711,-65869734,-145714456,-1558279725,434723076,50045180,-922875844,-922826498,1355123395,1481668328,1970945114,1250552067,58030908,-1186437399,1011967244,184776006,1346159578,-635239563,1966881987,-1009110269,91566652,-738731469,601094083,-1009518630,-806757845,6529096,-1343749141,-1967063501,-1967115560,1233447416,1375743720,1593717224,-1957241209,-360425,-1125579915,129699572,922702693,-1605237936,1011876603,-402426621,-2024272649,77839322,-211687221,1006633145,1007711003,-401837551,44102483,-792720893,-2016900400,1227738,-628631293,-2496317,303097938,113436903,1457424222,-1017440375,-378220484,477417788,1393687016,1158804968]},{"sector":5,"length":512,"data":[1192358376,125098636,-418256408,-1996055576,-1023193066,-402525208,-628686368,-628680823,675022730,854131572,-219027211,-1977925656,1965636615,-182195965,739359208,-907481365,50044929,-1991196662,-2029825506,186616794,-385649189,126544756,57944124,-402600215,512357051,-628686031,55713419,672237032,1397801010,-2135893369,-402441822,-628679952,1457424222,1342372768,-90445742,55713417,824084827,1105745923,-402345727,-121958345,-1948515329,1207560419,1342372768,55713419,691799946,1005065076,-1957483503,-402444002,-349433550,-459122511,-1073063933,-73249164,47874,-1075258365,572231,-477373437,-33311910,-225752381,2025851564,1246382838,33749920,-1595372861,-930479132,1681704194,1424556914,-1014345485,-423952203,-1965489405,14674120,1360840121,-191239855,55713419,1408367336,53550731,688966120,512316080,2090861361,1342440451,-930428720,1477416680,-789133174,-661995266,-603717705,-1168907381,-1628961926,512318208,512426874,512295908,-880082052,-1174176069,-2031615002,-1963423232,-467760680,1344178947,512312068,-947256240,1302512394,824085252,-107943933,-242358197,703136628,-41031446,750391669,-1558279421,1926904580,142403590,-1962350872,-1979483618,1137937143,1125091907,1094791050,2059092289,3139587,-477373817,72359563,1344178507,180849156,72196803,609441883,59554567,11913354,-51848957,-1950131204,126397682,-1974910397,1975585477,-1957444622,1124085278]},{"sector":6,"length":512,"data":[1968954123,-385043724,-404166194,-2135895793,167983522,-372733433,2117867867,-1645673612,126501865,1971534915,212134147,58040380,1010282473,-385649246,-2115422016,74836201,-370353529,1642659129,-1477946876,-873976817,-389850624,-1007747088,1392503784,1258336848,1961933544,260892679,11593772,1592822360,-1604919673,-1073086370,-628683915,853182444,1959142082,-373072914,591194420,-1763165068,-57546504,2112378997,-1228502496,181466624,-385648192,-796200525,256436306,7137324,-997810342,1405388368,46303826,-1328510272,-997810412,-372996528,1357389832,5040368,253814864,4515884,-397257896,854073543,2042628666,-244193021,394811971,787006299,867756032,738208162,83653390,-19859940,-1564343616,-389873622,451473427,-1662495752,1541048140,-1073035638,-268310333,-386397976,57999339,1274098409,-1963986200,2145960898,-387429387,1503841775,1374352104,-1960306200,1258502942,1961875176,245950478,532932652,-1070464334,-1155426584,512360447,1978138670,-1341819632,7315969,260725339,1127189059,-1056258678,1038680949,274393321,132645749,260722957,1127189059,-561553839,1004177238,57891290,1592336105,1398201991,-1982167215,-402437858,-1973729878,1946762247,-400510971,417860595,33012480,-402651672,-1746203469,-1073084534,-389873291,-347924631,33012211,-1070399562,839056546,73310912,-349734424,-29146874,-1965067058,-1950348793,-696997127,678562620,-796254148,574371954,-56620427]},{"sector":7,"length":512,"data":[-1576979454,581960444,276118076,-805110624,-804818216,-1560468272,984613628,58310666,-1979695895,1949187280,22538249,-1070463885,1587550443,1958742532,1975582223,-1960792053,-29250823,-1023314482,1587675568,1019382276,1007120907,-385649888,-108330697,-1602032726,-657456388,-657439886,1383323856,-650377334,-1514450605,-814394592,-1393456311,-948613828,-1393456311,-1082833604,-1393456311,-1217048004,-1393456311,-1351271876,-27568040,-20513082,-339280186,-1973724883,-13244153,201522336,50110978,-1597784014,67896060,-791612437,126543730,58033212,1023402472,-402426481,126549989,126533886,-1975319179,1132405767,58040636,1011087592,-1979025999,-381926649,24424880,1381061451,918266829,-1310160383,1136787008,-745867382,168266286,-1611500352,-193356221,973572654,-2014808635,1959804122,-1965999102,-1973855551,-1609796144,-1073085346,1587675312,1008069380,839349595,73310912,1587551723,-1329591804,73310975,548408692,1101724043,58052350,-1979341591,772205506,-1975318646,-1954601776,-29250823,-385649202,-1039530611,-1472403079,-1070463627,1527013026,-385981207,24251839,1915763907,-180732677,-1998042173,1347506925,1492001256,1361163705,58002236,1010983145,-385649396,512442979,334037762,-1604691633,1337066240,108268348,1219628092,649073781,1101724043,-1066086658,-108281206,-822197846,27309684,-1308345341,-1308200448,-1308462047,1007127075,-402426592,126501714,1958742595,-1426486486,1959722561]},{"sector":8,"length":512,"data":[50438287,-361626564,-1952560737,1100983537,1006925214,1007186990,1006924868,-1294764731,-1966085376,1958742722,-1426486519,1976499777,512475905,-1360461058,-403576579,32893009,1364286041,1944592616,-1963488757,-561553709,-633646250,15270770,120437742,1499002600,1577704891,-2024350073,1478396890,-1393390845,1101724043,1977236290,-1982231564,-1023191010,-402640152,-1910627133,-1979494370,-286712057,1501432,615639122,738941416,1526496744,1342606854,-1426420989,2062074631,82334708,1541048064,1806547395,-127276975,-1530005896,1006937760,-387091056,-394766165,-1186430232,12226944,1077602560,1358957241,-712313462,742143348,-397276300,-292885132,1952107146,184608806,-312022996,-396878476,1378618102,1961715944,-457774845,58053131,-2014491927,-561553702,1373275990,1525107944,1189630290,1524206567,-628630981,753468275,1482250989,367743571,57923843,-2014503191,-105163814,1541028863,283706227,395006701,-628633077,-1978895270,118113031,-2019669089,1372943834,1493181672,-1957536934,-771013865,-628681612,1457424222,-1992041849,64653079,1541048281,-1246108437,222056712,1034076210,807308035,-1975301376,118113031,1136853365,-398256245,-1073026181,-930419596,167984544,1958841024,1017498971,-401050201,-1992496285,1558766709,1963867371,-1394060579,1976699884,1009380106,1389131022,1408016104,-1612280600,229678665,2028486514,603765512,1466558546,1096869979,1364417369,1531007464,-1544860838,1701080661]}]],[[{"sector":1,"length":512,"data":[1701734758,1768693860,2123118,-361427652,-329127854,1138394963,260719427,-1339061693,603437838,-31552685,-2008329470,260590383,1527220299,54370499,-126566390,-385922583,-398325326,-398390866,-397211222,-1606088282,-1073085347,1860764532,512447459,-628685990,56368779,57989691,1541627113,808191882,1240007539,1912749283,-482154237,-33268574,73245376,-1008036120,168266286,-386370368,-347930621,-997810189,-372996528,158598937,1408402664,-347666712,-759475424,1453713444,1510793704,-1880554637,-1975299575,1157687303,-1073084534,-454499211,203327814,1067378688,1632813915,1836016750,1836412448,544367970,1684366707,858597408,943077170,544175136,909586995,-1325389513,-1325208803,-2029996774,773753818,1511950592,-19233020,216550341,1008170218,-401902302,-1073026557,574360692,-1589840523,-851698316,-1073027979,-1975315083,118113031,58053002,1138925033,-1992091765,-402367978,-1891833385,-397342859,-346428399,1971600601,48779527,-823436820,440189322,225707914,-1552633540,-1586122180,-1653223938,1954692291,1971534998,1959657108,-375527181,-628643724,3022475,1511951187,773753092,1373275904,1494341608,-377362357,1948592826,139520008,2042252076,-561553883,773753174,-1018012928,-1465888609,78225924,1352638040,-1465728974,-1013032956,-1979524120,260719367,1513065027,-689418159,-259368958,-1975314550,797590287,180521563,-1023314490,19711626,-1070401166,-1057045958,-822152845,-242496770]},{"sector":2,"length":512,"data":[121258412,1956529055,1927935452,1039657023,-51902229,-402396355,803752622,42592256,1361647545,1396901770,1526770664,-1975316598,911407,-388461997,-1017511333,-1779957328,53263104,1124567123,-1017440375,-1977436853,-5155851,-33060285,1958742721,1959148040,1975859716,1965178095,-390993917,1019578963,-32672468,1959395009,126503687,-176938948,-561553829,-628669610,-1259814518,53263103,512447152,512295692,61867171,-402457694,800734743,-1982186749,1526926366,-1686829174,-385871686,-398204638,-320274542,1048373249,-822163714,-242514572,81389740,58002748,1090889192,-1073025813,-1638399253,512446623,-628685988,53419659,-930426634,-654049355,1926904643,790530319,-628669693,1489215064,-1013005178,247111256,-385649408,-1069883190,-625389409,512446758,512295690,12256047,512447232,-1152187556,378209038,-633666804,1948723897,10283267,-1996234053,-1962652130,-1996269026,-1962652898,-1962715106,990137110,-1977912102,1128481543,323348560,1963146328,7464965,-796213198,-637337418,512482795,394986574,512479755,427033434,512350855,1128465486,1128470411,-637281657,72031881,-1209279865,1544981337,1977236227,7137539,1346570122,-118996157,1125091858,1480798090,1020855123,-1981975293,1526936350,11865994,-654059261,-1948612797,-2029833442,1960459226,667269572,180367953,-1639735545,1134499722,-1623749986,24485443,-1949594685,990064414,1926859738,-2023859213,-633645346,1457424222]},{"sector":3,"length":512,"data":[1943636819,1482185187,-1018080685,-620012710,-1974732428,260721455,529156947,-654114633,-779422326,-1949594805,-402444514,-2007286624,797459215,-380905077,1397882592,77799051,1457424222,1592828136,-396960121,126499821,-1558279341,117592836,1929383866,-545724157,1526586344,1577076968,-396960121,-1957494721,-2029834978,977114,-1157624856,-2023876806,-380414242,1583087111,-1974018425,260719367,-1976595901,-20709672,-1023314485,-1951600245,1111599866,-1830227477,-1558279365,-388331772,-628686816,-1974278795,1255246581,512429962,-633666769,-1070462347,-654055286,53419657,-288504997,51125899,1261406795,994774922,-1980860966,-1023210466,1360756665,855619560,-1963947328,-1010824697,1360756665,1979706856,-413800189,-1961391293,-389829390,250150190,756976630,1494714371,-386043159,-739711489,-135780348,-873966859,-85447676,80013549,-561553879,-320318634,-402295567,65795553,1526708712,-402651672,548468181,-389903792,-393544468,-20578728,-1950583603,-2013057762,-838974713,-1343489675,838902760,-561553728,-1329034666,126505811,57853242,-1313159798,1374179584,1398495741,1127189059,-578142326,-654114635,-1461138549,-388461828,-396689673,-387318003,6744316,-225750438,-339400020,-1965389892,6088711,-838941186,-1729559691,-1243065882,-997828607,-561553762,695581014,986250833,1912648967,-930430207,-1054210166,-393559494,-359992462,-16717629,-1897331851,1137740529,55779211,-2010150182,-561553865]},{"sector":4,"length":512,"data":[-397717162,-1092033257,-2007279297,-628636881,688120296,-1974379943,15254506,-318510875,-1326382360,376721409,-185341864,58048522,1357260521,738442728,-387126040,-1276626435,-1957483517,1577362206,-396960121,-1545016103,-397203197,-628621744,1364745049,1365575609,1360756665,1156076112,-1973921026,-1966539032,-1341703480,-1952288000,-1073042190,-1720400502,-1975318646,1066025775,11918730,-1054156541,1381099658,1457424222,-1958539382,1381194519,-1393390767,510986042,1959394882,-838974708,1515908981,-1070441895,1515871171,717589081,-20905273,1515832256,-838974629,-437530507,671293928,-401827864,1381185889,-1958487417,1545505559,1926904579,807308050,1943681792,-397190390,1398537006,1530511080,1457424222,738390504,183768552,-385649216,-1974409909,6744071,-335222702,-41228205,1499191943,1592298072,1398201991,1583679419,-1974018425,1958742721,705137296,-385649723,-1057037029,41075002,-846544502,11913726,394937170,-1975547325,-1965489190,-628663576,-1958539382,-1965390049,1975519937,-225721599,1107789996,1959394883,1976434420,-5061647,125053244,738357736,-386689560,-1020722582,1961858792,452867,-386067736,378272636,512426844,-873921745,-1615540753,-2041527162,635982788,-385649660,1482364893,1369359494,138170527,1743261813,1958742563,-389480935,145761123,154941675,548409461,-385889560,119808846,-1638337419,540853081,698359922,-387413504,-973200582,-838988940,58049850,1946186472]},{"sector":5,"length":512,"data":[1962884105,-390005243,-1638391001,1481678681,578611358,-390738493,1031013308,1930933992,1397903859,604321440,87466696,1528351976,1805670746,1958742532,822798595,168095648,-1157139264,-380432664,1364394221,120437586,1515127528,1527623769,554887363,583854275,-126566390,130419691,57337856,1963062971,-1330197241,-13768691,1946377192,-1010814461,-1394032590,-1010814430,1587591117,1975519744,-991378687,-402426369,-1863777828,-495065087,548399187,-1326964364,1975519999,45109264,-1946579992,1510157598,-790030455,2078822649,-796239623,-1141093656,512294918,61867171,1526922146,512447427,11862794,-654059261,-1020647760,-5187446,-125122790,-603781518,-1023315109,2891403,512314187,129631045,-623580928,53419577,1381099891,-100210605,962157147,1929588510,1977871322,807308246,24766464,-1576770398,1034027838,1124567043,-1992095864,-855418850,807308206,-1345500416,54206089,168060320,840398272,73245376,-1258005342,56671002,130461901,-838974716,129693813,768768,842516200,55550656,-125118326,55385737,55975561,50994827,168061856,-1996196416,839069470,8186048,56106635,56237705,56368777,168060320,-402426432,916460980,1963009029,87466499,740199257,-1991554304,1124287774,-1951281853,51297251,51125897,-386403352,-1070405942,-661981046,58465929,-1996206686,-1996233698,-1996206050,-1576830434,1364394809,54206091,-1009108029,-50623650,-1957255634,-1979025953]},{"sector":6,"length":512,"data":[1916419079,485081857,-642586143,512481927,292814896,1390992007,1256739810,1524206556,199820146,512314339,-628685986,-16943677,1963584448,58039543,-1659559960,54730377,-1996288325,-1157428194,-1957036276,1392520734,583240348,1958805191,1411287308,1126075139,1444841731,-34215933,120765341,350815092,-633214502,-1336930384,-47585186,-398457768,-320209629,1444842493,-1160049917,57999377,-1948695063,-1996270570,-1023398378,-1564462408,-389872522,1397885128,-402362693,512439819,-2023881894,1827165918,937971948,-1377293057,-393586680,988569320,-385649467,-2023827192,-628664610,1511951187,1977236227,1583045139,1381424775,1530254056,-402362694,-1017432629,-1327405335,54108673,1963488232,966939635,-1963095549,1229539801,1236070795,-126304246,-637318839,512481927,-633666724,-1951599989,1117760249,-1639866466,-1958088587,1545505241,126507779,-1217057732,-337648920,-997828426,-1966908514,1916877831,-178569991,-34674237,742194036,-68679308,-1058518048,-387025697,1949105810,739675112,1949056000,4712451,-542513077,-397511598,1949105786,3663944,-543561653,904463220,-561553704,-289713322,1943681792,921197357,1395094016,56106635,50336953,1943682009,-1982167271,1526925854,2891401,-392762533,-770968848,-1729559691,803849184,739675133,169224960,-1950684413,-1950209085,-1295137840,-383874221,1541081860,1311769027,-47128272,1529868591,456142896,1444842288,4909056,-339541644,-352210940]},{"sector":7,"length":512,"data":[-1560301566,-1057095568,-1224645144,780289,199813237,6219807,-1597784014,-1019608996,125040756,-1070409590,-31525399,519104963,973101984,-1327270717,1958951425,-372506915,698359518,1959213568,-372769071,512433874,28770395,5774985,-1960917527,-402631138,-1233846263,-1979700832,-1329206280,1959213569,-372244823,1537220266,-1594324480,-662044580,-1770862806,-397360898,1486880921,985923072,1942748867,1925659149,-1342016247,-1563886079,-27787176,-385649208,-555220989,1537262366,-1596421632,-125173668,-244137174,-397360898,1486880895,1925396992,2026322448,649475,-5242251,1487061246,-922855424,-1142304908,1528728350,6135808,-980752246,41141050,-952444790,-125173133,12044170,-1057045718,1342206650,-637281657,-2008873080,-922860793,-628622987,-1564462504,1503789144,5939712,1358900201,-1258276888,-1966568959,-1426420795,-1393390774,-930420342,1976106584,-347028735,28659946,-1979705368,-1949988152,-1958565126,-376787726,-27735926,1357018312,-1168905237,11993204,-637285378,-628684918,-1010818469,7649875,-872546121,126409219,-1017390457,1105766093,1444842241,1478396160,2727936,518766846,216547248,-400510726,-1070401017,-855627870,18802855,5643915,5774985,1520617354,81913856,91540478,-1343749712,588048639,-400342552,149429156,590932003,41229116,-1073080912,1911030645,512446492,-628686760,5643915,-1036336246,-947251595,74696250,5774985,973101728,-1979354169]},{"sector":8,"length":512,"data":[5939911,2746456,-1250686350,-402522648,-1377044077,1962476348,-155454207,993837825,-118883467,-29144100,787642569,-160102598,848608195,-320336207,-385648129,844103687,7512768,849525592,-655881039,-385648129,-1974468576,-792720703,852003520,-1142388032,-654101842,1125616174,1480034862,1444842322,540852992,-1071512718,1946631363,1946762489,1946893557,1946959089,1914453229,1914715140,-1010814235,84279821,470551299,236920349,168367487,100798984,235733765,889132415,885666902,867119929,891630855,872494413,854799479,233321409,1489532157,-138674507,-113121279,222037896,171708788,-980810123,-311099844,1976434243,852360936,-1157134144,-1597832714,-1073086350,1642609268,-628666114,-2030041146,-389808422,698352425,1959209472,1354825227,1476457960,-143275778,5643915,1493056488,-1070413686,1118501515,-91504246,-1010814294,-1073083728,39512259,-1258162246,5808382,28820282,1962944928,1478396691,166220288,698374910,-1610255360,-922877862,-402629982,-980811204,276086818,-34674606,-1224116902,-1597768191,-454361047,-21964153,-259340758,1007127115,168326176,-33065536,1258517710,-968626197,-628686841,-1219490384,461170689,-51901008,32947191,851704152,33006272,1979557864,-339476988,-352079625,-20477219,83371208,-1967063544,2728168,41141562,-980752246,167801504,1975880384,1959213580,-386364923,-1070458058,1959209667,1352683771,1370112,1492626152,-243939074]}]],[[{"sector":1,"length":512,"data":[7512259,1923272950,-1010814464,1444842323,1923108864,1958742528,256003,-1597809832,-1019609000,-1152184203,134086746,973089184,-2013105401,1352686343,-389510656,275906959,844160116,-47650624,-420953090,-872523775,28820478,-1605114901,-952500183,11996021,973102496,-33524285,-389546301,1398472713,840609256,-1329374272,1959213569,-338690556,-872525036,698355316,-386364928,74841296,1457424222,445179995,973101216,-1609927229,-922877862,1520567156,21161984,-55646125,-1006759563,99090871,-561553918,33286230,1541860187,840586728,-1847016512,-1609861636,-1019608997,-1006762892,698413291,-1594324480,-930480048,438495313,1959788121,1958742538,1958820595,-20447505,438626503,-389824462,28770452,1394219496,-402632544,-27590227,2728135,-952450818,1105784181,-1213893124,-339476991,-1564462366,149618800,-400955928,259129674,1946173672,-386798651,1005066710,-402164991,-1233911759,-1070403093,-1564462397,149618800,-400966168,259195170,1946167016,-386798613,333978030,-402165247,-596377577,48820715,-1949046016,-402631138,-864683324,-1763114569,1444842490,-85989376,698400373,-369587712,-872482150,-1041758860,-17337093,-1605254205,-952500134,1743264370,1501209,1118501515,1457424222,-2023829506,74733278,-538195970,-1073036455,548405877,4581571,-74782640,576198004,1022457024,-1595050976,-1053163440,-1047861644,1489223714,698401785,1959213568,-389546471,-28114748,12314831]},{"sector":2,"length":512,"data":[-1597505957,-1057095639,-344602822,1352716286,11003904,-397323325,1348010148,-1696022134,-930457600,-33543776,986185408,-1964542521,1405311937,704666784,1949266627,1528728354,-561553920,-1014344874,-1610589278,1554120797,-94705664,-561553829,1528727894,-1219273984,419031041,-385765285,512490246,-872546218,-1410858124,-100734952,-1010041253,-76402628,309475900,-210616004,175266620,-344825540,41057084,-1071463431,28791747,-1979700832,1709724136,-12822248,-939653004,-243937794,1398522715,-1528299081,-373073128,1240012867,2662936,54992523,-1021130998,-628637442,334227572,1946285755,1134361057,-388860439,57989500,1540977385,55121545,1926461672,-633542397,1128520075,1128470411,-388331693,-1973735858,1946762247,-400510971,-1125583721,33012712,-387405336,512488791,-872546218,-872543884,904398196,-17337094,401664195,1020371177,-385649654,-1957432213,-1979389666,1539508935,141888176,-401756080,-1017580457,-1326165272,-196220915,1271073456,1977073384,-1880571135,1538862326,-927968969,-1070464277,-1979516254,-390869745,57931721,852508649,-1561818432,-1975320434,1915632647,1007514690,1006924602,-402296016,863172523,-1252923254,9353983,-973176820,1118501515,1007127107,1006924602,-387091664,-395053173,-462148036,658294154,-169278606,-1901962801,1007127040,-1172409562,-1236125693,1948597250,1019674244,-1023314652,557631230,146209140,-210492612,616663640,-1227847041,532370176,-1965423869]},{"sector":3,"length":512,"data":[-1974772937,50045638,-1596517656,-922877127,2062091125,-385648639,126484496,58009644,738250217,-385649357,-1070464826,1392720290,168054176,72000192,512433780,2126119804,-1982201085,-2029761762,771221978,168053408,841249984,72000192,56237707,72031881,56106635,-399647511,851705604,-1963947328,-2023859760,1539528414,1457424222,946518610,-411772357,991550138,1232362202,1457424222,-73379501,-1595373054,-989724530,-930430722,1090565457,512442689,55771996,-397190695,-1990513639,-1962714082,1511950809,130435843,1977236224,931683064,394877507,31320131,1531107975,-1564462397,-125172570,512350346,1088947363,-1157138974,512294918,-1017445213,-98661549,-561553918,1391495766,9353809,179106443,-2026015552,-805174054,-389510440,-1047858237,-1975316598,-28228817,1408595400,1342213792,686348935,512317655,73072821,1507381250,1261406283,-922873976,512488821,149618869,852953832,9347776,168058016,185103552,-385649198,1498021983,-1631287720,-2023826809,-2024581410,-1967063334,1007127280,1015575596,1007121449,-385649571,-1662464448,1377733077,512318211,11666170,1393027922,1355056799,512476294,-1343683750,49979436,57982986,1489903849,-1952529274,-385649205,120204117,-1729559691,637440,-1597105687,126354171,-1227847101,-997828608,-385649250,260571338,-399538109,-1975320365,-218765112,512312131,260571953,49979459,-1047867184,1352601458,872701088,-1258255861,1939757056]},{"sector":4,"length":512,"data":[1100962052,-1626371938,797459280,712697923,-922837416,1352653429,-896864630,-637281657,-806812813,-220403470,45162121,509515,-126494149,-1975402446,824085488,-2028500477,64685018,1272612825,1125615947,1922979907,-1964471738,1124567752,395008950,-2023865533,995120862,-385649958,501808975,1490682666,-880031490,-73342091,63671042,1912876251,182125320,51082432,2059406043,190723,56219907,-1948612647,-1023192546,1539316473,1124567747,-1979665071,1507394504,-1621995069,9353808,-1968377205,-1949958424,1128443122,-838989944,-1638337163,-389850790,1793645658,-215947223,-1948612805,-352017634,54173706,292864010,1406830426,983744562,-1665073661,170887762,-385649211,-1958488737,-1977292001,45175765,1011025802,-385649316,540803485,-1040316811,-327823874,-1326806437,30861404,854622952,-1966044480,30075120,126546058,1965112387,24111363,1383342908,58009148,-33464087,-385649203,725352750,-646707024,1124567627,1433677372,58023740,1006712809,983331932,1018590471,1008235556,-1968278230,37503941,126485618,548414524,-838989195,851362558,1125123264,-972897538,-1023479670,-838991695,126509428,1949187139,1948466206,1965833453,214338083,-336557504,1007127265,1949216803,-10098429,-29163087,1959657153,1124567606,-210492612,1005894226,-1963488686,1952333011,121291521,977533813,1140225287,-243988678,751143491,1525314052,-18314662,65749958,-1973757305,-1023521850,477431844]},{"sector":5,"length":512,"data":[-980759810,343195658,757860234,-29620620,145754741,-972946428,-838930294,1702141275,48779857,1364810459,-1964340653,1019282117,-385650151,-963980253,1558741004,-361240517,-655864997,292878802,1006844578,1007121467,-385649620,-991376536,-628663854,1385976667,-987101302,-1979664829,52399056,180718298,-385649472,116129453,-402621464,-1654919385,1491665780,-402426882,-2023821337,484988638,65625068,1575535576,-1966211584,82330375,-1312101393,-1325012224,1476520705,1172884990,1956469504,1860719056,662694106,-1957473959,-1979407586,-1979665943,-980791099,57982986,-387145240,512485860,173540515,-385649216,120258398,548464778,-838941186,1340670837,-290330369,-1974405909,-1329591610,-402426837,-1017581917,53812873,-387453720,-628633073,-1627363608,1151311428,50886046,-1981576231,-1962719970,1392520734,53812875,686510675,-1981217932,-388331574,1735721023,512353163,378209093,378077230,1128465498,1128470411,512302987,-628686802,1406782696,1529316584,-1313273484,1374259712,-1949205015,-1996203490,1526738462,1877563737,310225,-1975264253,-2101787897,1975597568,1095943,-286533373,973124025,-1023314751,112793401,66614272,-1159992359,803799070,121301194,-781326261,1927828852,1827165145,-398625571,-1947716854,-1558279192,394937092,-1959294397,540847346,-2008938123,394808119,-401605045,1264314588,1959869160,1950039074,-267851771,753421100,-399724335,-1158943313,-1461181776,-390403859]},{"sector":6,"length":512,"data":[-1595399504,-388502547,-1947603353,1403571670,-2014776694,1007252481,-401640390,-143064706,844879498,-839077696,-963984469,-922828246,91423292,1642704077,1912945865,-916788989,-1974381991,-1159165240,-2023866724,-1974249762,1918974983,1937456134,1361062914,-225711990,1111731246,1968817466,1976172053,787647458,2025851564,452867,173693787,-1073036352,-225711240,-1073042386,2040414879,1540197109,787647315,1975519916,-922818122,1145198923,1380144127,1347223118,1140666708,-63876287,-1856472320,-1118263464,1403637080,-997810350,-1161525680,-637337554,120258480,-796213246,11971277,54440379,394931930,931802691,-1631287720,12048522,-1976641021,-1976679657,1524270903,1457424222,195,0,0,0,0,0,-402653184,-397158383,126544268,1333051402,1125616195,-628473974,-1070411638,-402194526,-2036334885,-997830460,-1241190215,-20775413,-1974635318,1914715143,1949187110,-1426486488,-822197439,-2040993419,-2036359484,-997830460,-257888118,1958804996,-997828602,-373072994,-347879384,-1576947510,-964032769,-277607620,-344849604,548465780,1101724043,-353644802,-108322640,-822197846,-1158941067,-29161590,2062074826,-1596421409,-1019607841,-370605197,50378695,-1948612645,50651166,-1608545318,-1057094346,126540660,-713768950,3062355,126540291,91425084,-1058415411,126507975,-1007042550,-818550709,58008380,-389075224,-2023825622,-397191458,58064811,-1983407127]},{"sector":7,"length":512,"data":[-1023088354,1360304313,-1965613848,1965833223,-1847045287,168266472,-385649216,-1958492292,604473887,1006744287,-1307216823,1951349762,1006940687,-1308003246,1950432264,-950736637,-1343729061,591146221,-790101131,-556996402,753770984,-1073036662,1038680949,-1293397817,-1973856002,-371339823,-1444413309,1007127294,1963242114,-827987879,28476732,1329352052,1228677236,1810380660,1743274477,1676169453,1609060589,1541948909,1474842349,145900781,2028481771,-313726770,-313989035,-314251180,-314513328,-314775467,-352144812,-832706543,1122841064,1307389416,-397729614,602459727,535314925,-1974316051,1965243399,-834803709,182335976,-385649216,-556939600,-1974775116,-836114224,-974584972,-561553722,-1614640554,-2041527162,-1662495804,-385649410,-1973762411,-855032634,-385649697,-1185692029,-654114770,11548552,-40769189,1975519827,87465994,57934116,-402438423,359988843,82386569,1929556051,-42866429,1357504717,52750534,834294619,-1998978304,-1963423225,-383874600,117594884,1526728646,65796547,-1614794227,-39851952,-1638340147,343167135,741083018,209043466,-389179672,1481829482,1352661406,-1070444385,1424490930,-383874049,3258628,-1638344445,-2145075174,916586764,-1617012731,-1564468656,126485743,58310666,1476450537,-402426722,-1070404777,-369218328,1122551557,1273679357,-1295169816,58063232,1946515944,-334436328,-1303364564,-402229870,-335950545,-335484920,-1296037311,-1974427902,-1576000318]},{"sector":8,"length":512,"data":[-1638398878,-1057075041,838885282,-19011392,-1957454248,-1979389666,-2145101049,350815093,1676170205,73572577,57982986,-1962640920,-1996269538,-1962474466,1392521246,82386571,167823080,-385648192,1307115542,73572549,57982986,1527030504,1654833202,-20387580,190555,-1595349013,1979464704,437119235,535423949,807308229,-390067712,1189675011,-397369600,-63176573,921240437,-845260774,-989795860,616799832,73638432,58039896,-389746199,1671490167,73703940,838904808,-51255104,-1988098106,-402331362,-1073086389,-305286280,-1597713431,-1073085340,686293876,-953686012,512312131,1525154648,-1564462358,1139279158,82813182,57982986,-372508183,-628636220,53419659,-633611641,485005426,-1564462358,-337050314,-1957538839,-1174083298,-637337554,1532626826,1394505155,649744465,173101635,1498989504,-260454146,1532609371,742131594,-454494347,126505419,58008380,-389293336,-2023826474,-1168943394,-112049362,683271167,81764417,916504555,2025851397,1093188044,-543113166,850324228,-1964471616,-63838011,-1610610746,-973208353,-277625558,916635698,-376051707,3153547,509515,1539562473,-1631287720,-1622060461,-2041527162,-383874108,-402214908,-473104379,-1614550039,-2041527162,-628665660,50343611,-2029548838,154950362,-890698893,-997828608,-561553762,-454468778,1381192186,82386571,-823654224,-370881025,1532674996,820560729,-368777013,-369039324,512447272,-1152187159,512294912]}]],[[{"sector":1,"length":512,"data":[1583023337,-396960121,-1974281454,1965833223,-888543221,1543228904,126533682,-739749729,-1638389271,1457424222,-1014345569,58048522,1405888233,-2015229976,-1638376998,678711455,1021843176,-2011991037,-906083577,-1638339467,512318297,-380566295,-1638342093,3022475,54992521,-1022957221,1946118888,-1020204797,-439495189,1392513768,48759221,851663616,1124567232,-109720066,-383874109,3389956,1489230339,-1013005178,1979385832,-1023743741,57871024,-839249175,-1024529946,1979380712,-1025054461,57871536,-839254295,-1025840665,1979375592,-1026365181,57872048,-839259415,-1027151384,1978335208,-903878397,1206435890,-381504772,591184626,753446261,-385554214,1405258284,1543176424,-1178400886,844180972,-64689728,-1177149720,549066395,-1977912020,-1189614634,-397339496,1374224332,521922802,294304082,-259342286,1364250762,-22681517,1810432883,1965046978,-20513274,1022260686,-1978436318,1019382504,1975880236,-1963619831,-25040683,-138718350,-1962953471,1019644616,1958840866,1393376302,1012619636,-1977322230,1019382472,1958840876,9037827,-27924397,1009152603,-1978895091,1948269762,-1339278315,168784909,973829312,974025926,-401967934,-397213597,1935408687,574378930,540804212,552084853,1008759550,1022850080,1008235564,-855345907,-1961855775,-1979389666,-401428280,-489816611,1539425257,-1157625914,-1031142922,125050924,1726480565,-389850144,1352652087,1489578728,1934663582,600107011,57843288]},{"sector":2,"length":512,"data":[1529070824,1958742723,1124567291,-193606146,-389682343,1621229638,1958804992,-1046550269,45240659,1543161576,855391208,6333120,-386131223,-1073086426,-1057093772,2112422773,-1563885887,1364394080,28491826,1543151336,855387880,6333120,-87234213,1392030952,-927340469,-1341950630,-397229311,-399710330,1263665195,1976084200,844781829,1944634304,417869031,-628664064,512350467,-628685052,-930486197,636027764,-5219647,-796399421,-602806189,-1009088678,-1962079303,-2030030818,1478396890,1977236227,398181121,46369378,-1965520191,-1979706169,-1393390600,841925930,1991987207,46369377,-1965520187,-1979706169,841898232,-1950285305,-29185286,-1325238839,1976434187,-351423044,218872248,3153547,512481927,-633666728,1992011636,46369377,-1965520187,-1979706169,-1393390600,841924906,398151687,46369378,-1965520191,-1979706169,841898232,-1950023161,-29185286,-1325238839,1976434187,-351423043,512447417,-947257298,-27540702,-1023314752,1688227999,1958742532,-923408125,-1966891432,1967143943,-944904189,-1979711303,1020365557,-1977649942,-1664140281,-1729625227,-429070137,-679548888,-429594542,-680073172,702963176,-1957454503,1946500382,47875,-774306913,-690905378,87891593,87498377,512478091,57935163,50331835,991857114,958302469,1541048069,-339725629,1342418946,1493148904,1392520936,1929586920,41936902,1526879720,-953030461,1409256680,-1157425944,175374335,-402495256,-662044133]},{"sector":3,"length":512,"data":[132645047,-1329374435,-1974316797,216550352,-401902393,1009575390,-402426836,-1031088386,46262355,820577139,1499093960,-1949896727,-1979369698,-1967052093,449284824,1945668293,717238981,450398915,-1966921017,-1950090760,-1979369186,-1966986557,449284824,-336033082,512447454,-628685511,87629449,-253181093,-1957604353,1577400094,-1990795641,1493514014,-488062117,-397258242,-387259030,1994981101,1952013055,-446896045,-447158228,-385649342,1340604512,-397195547,-1041759651,39315711,1946131688,-5642237,1927828291,-402426881,1396965295,1510055144,-397323687,1397752027,1776867975,-396862718,-119013161,1230657792,-1056258678,-1017388171,-397192623,512426053,512296253,512427319,512296251,1515914553,-1957444775,1392851230,-388331694,-1990459430,-2029700834,-3086118,958302555,924748549,-880062203,1543487976,87498377,-1209480309,-842834945,30402744,-385928216,250085833,-402426881,1397948200,-2013338392,1240579034,96142195,-561553846,1943681878,-48330476,512318214,-709163273,-115439287,-338000122,-561553898,-115439274,1238743814,116858505,512350855,1515915005,-81884845,13887494,99111514,-381593344,-964034016,-657407990,-1031081846,-796206896,-216101949,116760582,-216102461,116761094,-216101949,16482566,-2130087392,-1994391317,-1022954722,542163841,116596361,-216101949,16482566,-2130087392,-1994411797,-1022954722,536920961,116596361,-1967027517,-771730162,-1979255538,-1023315256]},{"sector":4,"length":512,"data":[116590335,-1967027517,-771730162,-1979255546,-1023315256,116592383,-1077506877,-946948096,116596363,-1979217370,570881302,1427016386,1927991808,-337063420,-1010397448,12568204,-1949856072,-1962478818,116760809,572969206,-166819321,-183623162,650185222,-846526584,-1950103922,-1612000791,45210251,-754720045,-489487183,-2130414690,-1994391358,-1962478826,-154498347,16798982,128980084,-2135898078,-173872942,-754732794,-216661526,61915910,-922564574,-388841296,-1324943966,32166658,-1022954730,-956282720,1678064390,1946565632,1008497426,-971476476,33576198,87885511,-960298848,16798982,87885511,-960298688,21766,1929657539,1426519567,208929024,-654966492,-133761374,-983701053,1437664036,-157097482,-1597769722,-1073086379,-318051468,-2135218312,17204226,-1157401600,-885325504,1258517151,-167064693,-92205960,74580168,-1023359046,-768359522,-1614203965,-963843861,-1900543809,198413255,-1955826478,637989662,-174051446,-153056762,1427016400,-165770752,-1964498426,184230652,1081363183,-858601262,512487283,-2010773773,-217645265,-182024186,-775255290,-152448535,16798982,-494860683,116064259,516737,-1411126831,116826364,116604555,1049209587,-1679096077,116596363,-2010150874,-1912146650,2145960902,-48888834,-82429178,722039302,1040644886,116987647,-149487810,-1008475642,-811341741,-397163685,-1017439961,0,0,0,0,0,0,263454720]},{"sector":5,"length":512,"data":[1218580685,1009300480,-1274187262,1963408464,185383175,6819465,2696840,-1982100230,503533598,-1912602438,270436826,1295301381,7085705,-1990769477,-1946128354,-1946128882,520122894,-1157614872,12124696,-1178497536,-1943666566,637534863,1284769735,-536558717,-1898214159,-515315517,-855526149,108521495,-397632581,1676226271,1290649138,-1190767685,-61669366,126397486,1975519811,-1014801418,-1007689712,788479695,1422591744,1226859880,1344294210,1869836901,543973742,1886220099,1919251573,1935753760,234840937,1936876886,544108393,808333635,1866670128,1769109872,544499815,541934153,1886547779,943272224,917297,1093481778,942502512,1397312561,1375739988,872021,1145130828,1095958562,2245974,1414418243,573308941,827609164,860730,1313821268,1381236749,222709327,1497713408,1129512992,1313162578,808202272,864300,1377718428,-1912602438,270438106,171632645,6952584,378063614,525992030,1456446808,167796384,-1609468480,-1073086358,28576373,11540173,-922877324,1587594078,1958742528,-1564462584,61866078,-1604888893,-1073086358,11826293,-1073080627,1583285108,-58698813,-2147126725,1014121980,3022475,1977289539,1312078611,976100017,1124889639,-906051330,-1070402443,852749147,-1948200732,-1618268456,512295171,251527275,-389021590,244072708,-521469843,751076944,-166677701,106150883,133617667,-864790273,7020169,7151244,6950654,-28111637,-1576569400]},{"sector":6,"length":512,"data":[548405354,-987843861,-1979684066,117382919,-1073086357,-1602682252,-880016972,7216778,41148218,646499582,2133065834,1599834741,-12916386,539897886,589439250,639968279,421015858,337580816,756100886,1364405269,1315749462,788270769,1960852140,-906082807,-1070402443,-1406270741,-1017423522,508037959,474815819,169615184,41092724,307364214,240090963,209126773,471670303,168496141,1381061532,1946631248,1963801677,1862727178,57999104,-402617368,74711596,963968828,578030652,-1186035781,-29163512,773617865,-160102598,-645144112,1364126137,-508035282,1444842287,250135296,-401675516,250085438,-519182336,619185131,1499093001,1354997083,4800138,5119626,-1275067975,1477496073,1911051203,-1579008,-397163685,146014312,-1017442099,-1962937368,-1010005272,5643915,5643913,1307071388,-1013097728,-33532000,-1974418488,704653582,-33532146,-1979664959,-1979692738,-1342157026,-855002080,1444317968,-17660416,-1261764914,1477496066,367547331,1228835328,1327401472,688818688,-1342130944,-855002080,1380997904,-226045045,-889270530,4800138,281871028,1405311066,-1979666094,-386692369,112459803,267063501,11620947,-141890678,-1275065624,-401552121,1532624924,1173699,2692746,-822162690,28364286,5193354,4825283,1252000747,17229824,646586485,-58720184,1377268743,-2146959174,41026300,-466426160,-1910578441,72262618,-1664919009,-1169141165,11796480,-990505011]},{"sector":7,"length":512,"data":[-166824672,225772740,1946273014,-350703091,-350506490,-384191998,1347991486,91557180,-823653712,1532647679,-1824734307,-1791205260,-583252364,-471316876,1958742734,1019805240,-1171098870,-487194608,-1031679862,-397277613,-399712862,-397162799,260757580,1913649536,1125101826,1599813515,-67062445,763929843,1526756840,-1075713597,49020848,104464560,1906442353,-402426880,-1863843746,-1101806658,179897939,1455816192,149440176,-578137637,-1410858825,-400510956,1582947067,-1392750250,91537418,-352316440,-401755915,1582947047,-32455037,1540257225,1012318443,-1342016243,-623777765,-1605319842,121372744,71042164,-1070464397,-1017593846,-1230123693,-1979665896,-1275049666,-1609511678,-1073086351,512365429,243925071,11862057,281872820,1543376360,-402148413,158728128,167791776,-1291684416,106151536,698353077,-1339540480,-1258130383,-1974251510,-402633186,1448804407,-61798735,-1665135956,839021910,2484416,24485214,-906077874,384362613,-964469248,-1057073136,41040444,-838979408,-1343699083,851663869,-1073065024,548406901,5185162,41225532,-1185866832,162791425,-1023536947,281871028,-1966908583,-1258272498,1210485248,29685248,-847248524,83656832,-973207182,1913060480,1371930114,208940092,1506632168,-397285238,1081392476,752627176,359935036,181226984,-1342016320,-444573312,1374161411,1958559720,-602871773,1949056044,-852432884,1372097113,1958554600,-604182513,-853481428,-346427254]},{"sector":8,"length":512,"data":[-1101666042,-1963881895,-1979700954,176104645,839546048,181799634,-337218095,687636507,-25162636,-2133167356,208798969,-25111573,-2133953784,-915207943,-1073032822,1048584308,1946615880,1007071580,1951446018,-30886870,1976106697,-2134509908,-906093195,45160939,1948843136,-2134510071,-1040315020,-906098197,1971373558,-2000028158,-1593824986,243793992,378077256,-1053163447,129505908,4956928,1302578310,1327925248,-29693952,1336017780,7268352,-1275049312,-1022309115,2688570,646591604,1346109512,675022708,-1729559692,133988541,1353712757,-192930581,133988354,-855768459,2728528,4728456,4785863,770179072,1405310976,-1292051736,691961895,41166848,414601138,5193354,-1979711303,-855198527,47632,4800138,281871028,-1185738773,243859456,1218445385,-855591936,-574756848,-386022936,-1645676662,-389850116,1534393764,1371406513,1212055552,58000896,-1967319319,-397322708,1081392084,125054012,1506527720,1498540170,-108375215,-8331894,-2146929408,57805051,-1273967744,1527827723,1958456296,-1146755069,747134553,-28964748,83460289,113687922,-1023410097,-3973543,-16757450,1006652214,-401574868,540855166,-1973872525,1978159560,-399739717,1009572422,-401378260,272419686,-1662450830,-393586244,-1151670191,736629108,1340615898,1930443979,-1973790231,1498501840,-2131654054,243863526,-980811701,270852304,-444546550,-790245369,-790245147,281147109,-847248524,1408109184]}]],[[{"sector":1,"length":512,"data":[12048522,1302466340,1311672320,1328449536,-854871040,-3974384,1006655030,-400526292,-1073034502,440163188,646600563,-469106575,423363700,-1973793933,-504868144,-394562374,1009572274,-401050580,-1073034542,646591348,-533069783,-1973802126,-1041739024,-10783558,-402626506,1009572238,-400985044,-1073034578,41222320,173613232,-1578610200,-349342534,-1143609085,752446952,1019908584,1509061408,169928064,1372097256,1958380520,-648746993,-898045908,-646766532,1372097113,-444575399,1745783055,28596480,-1990586163,-2046798314,-19988750,1049252810,45350985,-1017442099,-352276400,548425731,1347637660,1492794856,1745783643,1913058816,41221888,-401996619,281870772,-1017602727,0,-1,-1,-1,-907502512,1397454075,-963882415,-1912602433,922691271,-14286724,637566518,8128199,-1943644936,-1912570354,42053830,-1291816442,1228835459,112896,281872820,12568204,650612224,8259215,2080804646,1522961920,1486707545,-1178736445,-385853792,-1259800974,6678713,1450569226,-385160694,646598772,-499515351,-109033358,-1606192358,-1073086351,-109050508,1396142873,-822152822,1049283326,45350985,146018509,1348145357,1018787816,-1341885396,-402134272,-399714238,-397358746,1479137338,1951973386,-372995582,-1863715310,387258,702031336,-668931901,-919410648,-669456302,-919934932,954778457,1955937465,-670504952,-339725603,-1188435963,883097520,882950912,1958742528]},{"sector":2,"length":512,"data":[-920917968,695405116,448419411,-466464170,-259268399,498401070,1532937046,1062614211,1280722518,1918266198,-2141816746,-1873377194,-1171920554,-1979697733,509447,-1946837015,-385861858,966790854,-175314688,281871540,1961101904,975079692,1009682432,1058441472,-997566464,-789133058,-1946848279,-385861090,1017122458,-178198272,-33538400,-178722368,-33538656,-179246656,-33537888,-179770944,-33538144,-180295232,180913384,1007842496,-1269533948,1102795520,-1965554944,669604615,28988405,16890114,-100659269,254078190,-102644934,-1020130333,-28253814,-338152761,1962871532,-1143502310,79233089,-722053120,-388963838,663224947,-17309117,-68651574,4300891,-369827351,552122719,1955937464,-688855032,-339725603,-1206786043,1168310192,1168163584,1958742528,-939267874,-680328132,242483624,-922873676,1085538932,-385822488,-1152125780,-1073086394,-1975320204,509447,-191174309,1448431772,12197463,-1898279424,-1593503714,-1005977498,251595124,57999462,-1610602520,-1073086412,921174900,4562944,57982986,520120808,1482514015,113692573,-1593835419,-1073020826,-95283084,6620918,-1173916161,619446369,113766140,102,1405311739,78926417,173019341,-1995672348,-2013251042,-1996473298,1476411158,838874784,169440452,908495076,-1995344896,-2013251810,-1996474066,-1342161642,3515135,-1017423526,4635475,1962950528,-401558521,126353425,4161603,1085540213,-2013264664,1388534535]},{"sector":3,"length":512,"data":[-335412806,-922827742,1522829976,649411,-1174023240,-346947580,1712753464,1962019328,1694942727,-236192000,-958469949,1915091587,-1075293678,1911041237,189946314,1510438354,-369148951,-790054893,1227519,-147530568,1694955249,141950720,4438608,1492039344,-301972806,1978582154,6404615,-301789972,1712752986,1694942720,180551680,1497451866,420501776,1494243674,1494243600,1499082000,1297757200,1158699329,1494243674,1494243600,1494243600,1666866448,1497451866,1499102224,1494243600,1494243600,-1441769200,1851437402,-1424991909,1499197531,1813010704,1980782940,571496796,-1675463230,512316240,394790121,-970079357,1128464391,-968675448,-2008875001,130433807,-1655153920,-1365710397,-2134680744,41255162,1489175218,1503577222,1522752346,-2084349605,126496451,-1950101258,-2096830178,-1950143549,-2096830178,-1950141757,-1979389666,-1023398009,-967747754,-1526382842,-1090195266,146343232,-492504064,1583307261,-1152298045,145818944,1965047680,-906083571,1556018805,88653573,1421742315,88129285,-1493432143,-906090635,92993909,158598202,427147274,1963001078,-1962636780,-2012944098,-1157615225,250108404,-339725824,1509866247,-117439256,1405311833,3022475,1960512323,-1144825086,1129514323,126486705,1140119016,-160052738,-873976144,-1014801420,-163270647,393535751,133583024,-1341098720,-2146961854,1102055797,1967130614,1531817986,787785192,172165002,-1007323712,1970226720,-13736850,1394606093]},{"sector":4,"length":512,"data":[1886415211,-13736859,12124173,1376684032,-387272699,-471204163,89308158,130418570,1975519744,-213456891,-487997430,1376684286,-341579515,-1963013912,-1325389522,-387076096,-1209401711,-2041554690,-196810556,5705354,512477694,-1886911255,-1427570638,-997828354,-1963439639,-1325374930,-23861248,1659399600,-22025986,-2013240416,-25106169,-997830568,-385874968,1793654401,6536181,259263804,-397211650,945553045,-1341689337,-957879539,126484487,-1996587800,-2041003257,6464196,6398147,57982986,-2136151831,41286626,1369571762,-1564410363,-896924336,-2139037312,452264425,-2132705079,1947255542,550076419,167796896,-1325239104,1976109569,1594291721,41221888,243810481,-4913848,-756520784,-400061699,-990446034,-166955775,58032577,-1342165016,-400561153,820510771,-1946651906,-167450338,-2130693753,300419701,-972721407,348166,1638007216,-35133440,-385808442,1069284794,1161477,365757364,89373635,1392513465,365757108,48825203,1587567361,1975519744,-1522565114,-373037451,1637919785,1958804992,-1564462581,1621229665,-439490304,82386571,3246070,-387287679,535298107,1407380225,939549115,-1962052313,-167450338,-2130693753,-1023314597,-1263801879,-1840897,-997830568,-385874968,652803405,-33060864,-401902399,260635997,-44570429,1404768138,-33508091,260587977,365757364,-956480280,-389873401,260767037,1404764341,-1009188091,-1628962380,256255,-1594026775,19662160]},{"sector":5,"length":512,"data":[-1144848013,126485841,167774150,-1023314752,1929382632,1342621191,-1073086459,-3938109,-1040316534,-1996686104,-51386353,57937722,-2134654966,-579534785,190544,1404814168,16824581,365757108,1403000178,-53745659,-823654520,17286908,1962526974,-2134640639,91555068,1877547186,-1423578709,738545824,-373286399,243796115,1525220689,1594279657,-1991049216,-1962586850,-1996271594,-1962587370,721880078,1225689547,-397258491,1499135652,6332507,1946599434,-1262318078,118869251,-1174369816,12124165,-42645248,-386239158,-1094516618,-1937046189,1621098506,-1665136128,1343059281,55988563,-434706215,1482381662,74776892,957579,1958742534,211061518,1959329280,1343654660,-1262318077,118869250,-1655106958,512428917,-654114768,1478396227,-444536573,-804919216,83656792,414319989,-374688279,-397694357,91599347,-352295776,-1041700861,74825738,48955824,1688338608,-840922624,-607272171,-134091783,-1952648309,-1979407090,-1564396861,-947256153,-578100174,1939734322,767755015,48955649,-469056725,-2143482504,-1961528832,46433246,85417449,192479360,-997990773,501213442,-1577025531,-1514470234,-2146467836,-13443445,-1014969472,54068934,-641275776,-388330669,82314986,1579059653,-400510716,-396636389,393523552,684732904,1389996008,742131594,1290274165,-386798671,-1993748450,235092766,1348331960,55588607,73283327,991857611,-397163773,1815872782,1279003252,1899759220,1362887284]},{"sector":6,"length":512,"data":[640074587,640034342,640034342,640034342,640034342,640034342,623257126,606348581,589505316,572662306,539042081,522133536,505290527,488447262,471604253,437984027,421075482,404232473,387389208,370546199,353703190,320082964,303239955,286331410,269488145,252645136,219024910,202181901,185273356,168430091,151587082,117966856,101058311,84215302,67372037,50529027,16908802,257,-65536,-16843009,-33686019,-67306244,-84214789,-101057798,-117901063,-134744073,-168364298,-185272843,-202115852,-218959117,-235802127,-269422352,-286330897,-303173906,-320017171,-336860181,-370480406,-387388951,-404232216,-421075225,-454695451,-471538460,-488447005,-505290270,-953949983,-941822637,1551237721,485102676,1939015176,606378345,-797439702,-1389510717,1649085524,-331573286,-86110204,659275216,966071078,-1323389627,1140659791,-827118517,352131585,1113585502,-1707336414,-755501771,13312074,-2018119037,-528538755,1959901073,1486759710,302392694,-289002938,-1769492781,1966878071,-1105932988,-1836371686,1838809237,-148032447,-922713926,-629393551,497045620,286997271,-452434798,-1788723652,508198326,492716396,-1829859694,-1531624173,2007642678,1306675256,-1785413948,-1330820250,494729018,1557745424,618411273,-1274064332,773014091,1351177569,-1127478929,615274764,-335606837,-304718801,-419508547,-1264165029,1885290806,1640981257,-864611964,2051237419,-1080764955]},{"sector":7,"length":512,"data":[1818913110,935134639,1199926534,-978565349,426143783,-1223206686,1340109649,309237645,-1546094845,-687194768,-858949085,-858993460,32076,0,33024,0,33824,0,34632,0,35450,1073741824,36380,1342177280,37187,603979776,38004,-1769996288,38936,-1138753536,39742,1797783552,40558,49872896,41493,1136082944,42298,-727379968,43112,-2065225216,44049,-434047872,44853,1604923808,45667,466206468,46606,-1564725563,1073789233,191576694,-402604962,-954006391,1644216330,2028717484,2055258925,-685328617,-1399798184,-2038943122,1471531527,1746288394,-308097751,-1038364980,344313939,1498505536,430363652,1873131920,537974565,-879810572,-1811228082,1060731128,-1190339071,-1895311562,1733288225,-221655804,-2128354231,1870413893,1891035004,-978474965,1290070813,924389942,-534974907,-2065738045,1813180790,319526458,118945050,-1748075575,1222441024,-1111352645,227146608,1989759157,65302,0,82935808,-1710981067,612571639,1971536739,-1450930739,75662207,-2130706432,-2092060446,-2096008694,2134181108,-2144243176,625304878,1682186531,-2147471316,-1921080122,2051014659,5960464,1316134912,2328,-388717296,-402653184,1525878,199491584,596,1000000000,0,390625,-1769996288,152,256000000,0,-1609612736,655360390,-400093184,167797763,256]},{"sector":8,"length":512,"data":[-7307264,-1,-32769,-1,1006632959,125909162,1952024700,1999017952,2048794052,2086883422,2121661978,-2144243176,-2130706432,517470981,-1725536890,590633095,-1520574073,1225776006,-1277754749,33117,1644462464,1350468405,2038320164,8366761,193003520,-2089923004,-42065159,-1631386813,294,858927408,926299444,1111570744,1178944579,-1146471494,1927840056,78028810,175278140,77932160,-381193088,1748768973,-1516219790,2042628612,-1568726007,-340065115,922702690,922682531,1189610661,-2132637168,460620228,-387698096,1532498388,-1763159974,1645722372,1527938024,-628436429,-2096488215,-466484028,78063240,-1173229079,12255232,99281281,855942079,-945029952,-1014956027,-844358935,-1523154759,914391044,-377486159,-1160969334,1525275015,-2017735420,71821785,870890701,85715225,-1310074489,-1984049915,-385572066,-1093859221,-796157870,1510534888,-2017473085,163047897,-645414707,-2129793559,1971323131,-389952237,-768407341,-393183045,1273496581,138799386,55827447,1476686042,-855533079,146139330,-1556676774,-1523122428,145352708,-353805733,1388546819,1918561015,-371684603,-1009974922,143779923,-1556676774,-1523122428,142993412,1391024731,1977289481,-1489598452,-83442172,770245634,-1558279919,47108,-1845189213,58310667,201326522,-955876901,-16472826,-1556154369,-371684604,-645463766,-2028415000,-397163559,-2091181499,-1950153533,-1962630378,-1023105778,434656156]}]],[[{"sector":1,"length":512,"data":[-1014801638,-389833468,512343723,1743324323,-1096685558,77799049,-854956567,-1961391164,-385875297,-10615987,-16473290,-16472778,-2017079834,413198553,-389817977,57939812,-1012689943,-840377721,-1245695488,-1144599144,-930478938,11874184,-802191293,1942474192,18933763,-645208694,-401591319,861142674,-1558279717,-1987987708,-972774114,67304198,1528038632,50005702,-1047805180,1939006199,-718935805,78363587,-379275334,-1413808122,1689893380,77838930,1914107880,77576707,852331203,-2029458451,50045146,-53965928,-74714485,-695491341,-389816437,-242497482,738065291,-1527561782,-812918133,-1664877503,-389833399,58005180,-844960791,-385648440,-1549724029,1958742788,2030153734,-1006653438,-619986893,1539568501,-661940029,50005702,-1558279934,113689348,-1023147269,-369113880,-909246489,-1242998181,103147523,199842395,309516,-1660974871,-1656547446,1127713436,-1656549493,-1013103716,120109907,1528170216,1361491641,855619048,-1563767360,-1262812367,537380356,-968685814,1793667079,-1597256437,166397093,-437728051,-167218153,450941136,-1019382592,914410957,864027815,-1948387621,-1950213181,449022672,-1010267455,2014708712,-389100038,58201551,-401025559,-806873086,402450712,-1037319285,124784244,-1070463112,2026094846,-1071973895,1977236419,-371510523,-1031077850,77799049,113761035,1189,113706617,-64347,12238859,-1174177536,1056440319,-628423517,77799049,-516248125]},{"sector":2,"length":512,"data":[38146420,-1732182524,-180621309,-695472267,986855913,1963129606,1965832937,-796244251,-1912194388,33846272,182250434,-1743752000,9420689,1955702515,-1963982074,-1949766718,-1950131242,1261341683,-1091830780,780923787,-369360036,984416269,1175549153,-268199764,1005585325,-1947240978,-749475362,50005562,742058357,-1404639883,9307706,-1073029259,-1852305804,-218067009,74748326,-789843965,-1949267027,-754587170,-1021962008,168076705,-2131397404,-2147179210,11589581,-1576755550,-1298135894,1958742532,77963746,-663428086,78716555,77926016,-1324449664,-863338492,-1482502358,1931637764,-154958318,78095065,78003848,1877496144,-2141693675,1601386745,568916051,78094357,-1144835493,-1430387554,309508,511245560,1124536749,1945756227,78035730,880019454,79252299,1260376320,-369434037,430772713,-498908409,-166038535,-1191181929,1263206404,-85846025,-16776007,1124496647,1962467907,217377224,-1609724439,-2145123161,77932160,-1526331265,512344836,378078373,-1581054813,-469105499,914419828,176161957,-1578142465,-469105499,-919347084,77805195,-1979406430,1942956748,-2032536051,-1507948065,-1814067708,-527772025,-1264786638,180619904,-1964756260,1959332860,435782470,-1986194830,-1979407562,621061926,-1005944705,-1023105630,1913190784,-1964864996,854821590,149520603,1948239094,550273232,-863974421,-352067040,-607062002,-590292271,1964033270,-1644961043,-869653127,-233053814,-1021651317]},{"sector":3,"length":512,"data":[796121226,78059254,-755510026,-989932554,1967268213,1975778846,50785050,1943540438,-1509491188,-804686844,-790965797,287631836,-385046039,635964520,-1314864365,78094852,-166942743,-16472570,116846708,1962869938,-1323398171,-185341948,78716553,-133913413,-1156341272,-386399056,922686362,1592263846,-1509519595,4241668,1359539025,78298104,-1961658392,149718012,-1107103869,79234224,-1510736640,-1190889282,-1430585340,-1375930364,1128466201,276036066,-1962933063,78299124,-1952058372,82573542,-116865917,-402350405,-497478856,-1526270282,158629892,77989631,132712821,77511436,-384622616,-1796730831,-2012777198,-385571042,-16118784,2062091125,-195565550,-768345461,-208929142,549052298,780883200,-1516239709,-337147388,-674105339,1465308881,-266601173,1583285363,-998046485,-772409340,-489434670,2044398564,-1509491190,1560835332,-787765783,-1965829678,-1965651230,1574931187,319819241,1364677625,-397397972,-1739058608,512433785,-75430749,426970317,-472790133,-654056495,-670833711,512297848,1223361699,-351767984,619204659,-954930430,293894,2114373412,-1147898876,-2081946498,-401180397,-10874308,-16473290,-402348746,1515913867,-335688472,31975443,-401464344,-396750098,-622329225,-51451903,-1017421991,-1070409267,-855635479,-972967718,134413062,78120646,632602113,-1946209450,-134771761,-2031595311,-1073063919,113640821,-1979579653,1965440007,-1341658877,1956392252,1948990469]},{"sector":4,"length":512,"data":[-68662527,-402230280,-169214147,1638120959,-225717709,8796718,-2130021376,1952554237,-269923036,-1662156289,786813281,1781573375,1784638027,1785162335,1785948781,1782606400,-1662468046,4319232,1090530793,1374222197,1370454289,1223186259,1499160321,-385899543,-512429172,-385885207,199819485,12380160,838862313,11987136,-401771107,568857389,1392867857,1527967208,2046168003,735770370,1951101143,-2096596920,494020602,1376402921,1512489603,-1169026183,-1169003856,317415170,650281818,2027616899,244005,-1031675181,-628662222,282781778,-1142421390,25552913,91818731,13232211,285599835,-1964391589,1048616720,1963459323,149528068,1465097728,1593859304,-1946799269,-133895978,758911858,-688454539,725353963,-389873292,24311794,-855998013,-1174048244,-269778945,702544,-2141527305,-164482838,-538193917,1402732812,5171287,-164406433,1290327691,91594239,911443,-389856421,-109572008,1956409321,273606705,58021499,-845382679,-402294321,1223360575,-73268048,-1524725246,-1491171324,-1558803708,-1574532604,1087143940,-377435264,501747157,1965388560,-1672812285,58314957,-1342173464,50045448,-1616658381,77701892,-1957276989,-402349290,1516109955,267577539,512427385,-842857309,-385649199,-1499423720,1922055172,-385649615,-1516200954,2025851396,-1677924093,-1157627718,-1964474368,114026747,-1173238296,-2135228416,283961488,-538377356,-2147435621,-1516229141,-1665136124,2133067129]},{"sector":5,"length":512,"data":[-1174100574,12255232,-77076352,1006937760,-1660521072,-1209410696,115861659,2040388235,-1982073086,-972774626,33749766,853226435,78102244,-31546,312976,91869707,80141047,-1965127040,-958952718,67304198,-855094295,78029014,175423498,168080032,-385583680,-1950150920,-402345698,922743002,512296102,1458046129,-1544516847,2025522342,78816004,-1962628163,1958742784,48940,9162635,-1957485577,-2116090914,50632643,1107391239,24363267,-1962440382,-8168502,1191474182,-1948521657,-1615113279,1526761732,1946615427,-347716092,77446846,506365,-507508052,-2147126021,537173518,168076704,-1509519424,-1156614140,79234206,1125634304,-369434045,117312537,-143326042,-402137623,74714739,58064650,-401710871,244052026,-315489115,-1979407455,1381061629,-487108527,-145175925,1942488035,-628407807,-487106470,24365059,1524237122,65205848,-787647528,-19279397,1963238918,126937347,158990090,77989630,-2081880203,-774778617,-1965716781,-1965061389,200075745,145773507,296747634,-930420598,1223203921,1958742530,-1660126974,192630873,2035814404,-1660294374,69659481,259610631,200730704,48269912,35028705,34401256,986054341,1912845800,-18314740,-352145211,-1245380092,-20382205,-1672455224,1307101490,805815808,-398261899,-2142568216,-93048769,1949187968,1486701313,1352412020,-1274167320,-1274905787,1126664260,130456920,-972719829,-654955257,-989974604,-93124052]},{"sector":6,"length":512,"data":[-2042414588,1124567492,509507,-1262757497,-838941948,512300665,130417490,130433838,1975909936,-919387144,-838984981,130419829,1377732910,-919387389,-906097941,130418293,61948716,75566729,-1123699517,-639081995,-1769263361,1162149888,77805195,-1057083472,-93064661,126415363,-1556707005,1976368644,-4790051,-1023408186,-1107099207,116064262,-1107032903,-1279328252,1958476804,-1558803614,-964012540,-522984398,-684793722,-1964846166,-294302003,-1157626426,-27720525,809468105,-498924683,-370621448,1366784780,77577811,-1190876225,-201588732,58058917,78756691,1527643624,-1090212930,79234207,-1510736896,-823655564,-1508996596,-1192656892,-386344458,1499136858,-1335777602,-13703159,1345302608,1354825304,1929417960,10742007,1966750808,822593033,805815875,126354155,-922855357,-1101932683,-1547762529,178436,1504048124,1364404715,-401663768,1532625777,1947048424,-1524725493,-1558804220,208922628,-1293418064,-1524725501,-1558804220,-1336190716,1642904067,1358874600,1592283731,800087309,-1057073072,236447824,53409651,771752086,171538,-398113467,-2024272584,126376917,-922855357,1111674485,78965387,1375646697,506198,-133914689,413937404,-102611195,1371756894,-1090517063,-50854753,84978734,1509548615,860967875,45832191,78028894,-1073031378,-1738595468,-1957169109,-773598760,-2115776029,-396348733,91425724,-351537432,211347673,-335781144,1617345489,-401837592,108203286]},{"sector":7,"length":512,"data":[1594609640,-1712826545,-1156681205,2011717754,-62789620,-351720360,1532581889,-1144799222,797574324,646586545,-990509949,973960224,1965732329,80016903,-376831371,-1075310712,-1120766734,976118181,1946157190,-1661107959,1294365793,-310251285,-439262820,1638334254,1970304368,2037414256,2037414256,2037413232,1013988464,130435952,-2094626256,281343492,-968162188,-990501881,1258648836,-315478136,-339735869,805815814,1976106563,-1981234184,805816061,1976106563,-1262763019,537380356,180480083,175742043,1395460038,1527573736,-968687348,-1013108729,-571942707,1124627967,-1157625914,-389872460,309922504,856096953,75736000,75566729,-369271064,2028601137,176285948,1625883513,-1023314529,-805001568,113660136,-801110874,-1157323242,166200491,309517,221767761,78321291,78454411,1526184936,-162797477,77991678,-502631335,-1073456925,77989376,170912195,1462091455,-972773185,753402117,-385649398,125432118,175505162,168006633,-385649153,-620099059,-8379271,-385650023,1397923567,77805311,77936383,1526805736,190638170,1527463912,-385649574,-1516200237,2042628612,1908653833,-1568725929,1381172389,-1669346432,77936383,77805311,1510016232,187492443,1397890677,-1157627718,535334912,2035964683,1532665103,-1174389527,12255232,-149755519,1393457565,19916882,-974601590,-799319550,-1559851048,-1526296828,645963524,-1635842907,-1329658765,1381193597,1510020584,-83629989,1408271849]},{"sector":8,"length":512,"data":[16771154,78780041,77792967,113704960,-2130705243,78786257,1532626803,-555199917,-1308166150,1962934020,-396666347,-1914172383,-87300086,384326490,176351244,1532679915,-1508996413,-1192656892,-638174861,77904796,100234,231304,211599370,25659520,42452480,-1667385344,585630585,-387108352,2040332306,2549763,77465286,57908480,-1023296023,-386378927,1499138426,1405351650,-2096848965,74645807,-135576765,-1152138405,134087839,-347929739,-1966908423,-2147178994,1098094825,-1952654858,-1962630378,168076574,512269531,113640615,-2137520986,-1667399477,-360511879,14385153,-922030798,-338688396,-85796143,91856797,-33393342,91463107,-1444289486,175742465,-738798857,-2147368317,-1312620333,-1509021032,-1427376124,2114479848,47697,-394198853,158665150,77797001,77928073,78028995,1352171564,77989574,186378368,-396265797,1532625432,-401927960,-2017785476,34269281,-1847043238,-18326795,-119937014,451435354,-2144224268,-378398534,-185992803,-1805850212,1356891807,48955824,1436729394,-997828604,47774,72556169,-370670732,991857091,-1817384957,-477374603,72562315,-847956167,44534354,-2091757568,-2013920061,2021720063,178497,-1074557956,-1510800221,-162310565,-16493306,1455296373,82805508,-218103111,1958752933,-263460861,77839967,-67108167,-1956731405,42765076,80118528,-263591850,-1014814741,1125092100,344677955,72681206,-1962510849,-352037354]}]],[[{"sector":1,"length":512,"data":[1892745988,1377077557,1128470411,-1511500968,710499313,-249567035,378080116,-779419602,2095698823,-1981576294,-1962719970,-2147271906,158673983,-392501528,-1813381310,-1700206189,1465275217,-1153912238,-1514208098,78036484,-1185736213,-772276220,-498908393,133585914,-30837440,-30772212,-165251894,561577733,746643573,-2145749496,360057066,-1190878018,-201523193,-1641643868,-1091887100,-350220416,1583307474,58087771,-385583895,1049233088,62456998,2027620864,-2146274004,494012655,-225780086,-461319030,1961550368,-724502512,-741289263,1967178998,1976565255,110881240,-350172032,-1505851148,75032836,190547,770229083,67812096,-397210389,-1017446398,-1157619736,1048577123,2013332648,-971868921,33859590,-1330675224,-1349916659,-2065167696,184337327,1644412671,116787828,2038432935,1644936707,1913027560,77577992,-352320327,80118537,-1190878273,-1523711998,-389808926,-397211379,-1226307711,99113975,-379889152,-1976633427,-152528889,776163336,-1549596789,46367492,-1559786706,-1014823771,1499092994,1360819272,-2024583086,-142350119,-1959898277,-1618268649,-353894398,-1014801423,-1008801020,1944637523,17426691,-396315973,803735254,1527345671,1274749928,-1020983354,-1257901080,-1258130672,96331783,82314100,1064852474,-989671286,75630122,-654965383,855294696,11659465,75577087,-119871406,-2130276518,-2127102204,180367876,-402230078,971569843,-2130276360,-2127102204,75603972,-1979550999]},{"sector":2,"length":512,"data":[75604176,41205770,-259340034,-930430462,-1070463880,293193866,1397903696,1527097832,-27764390,-1963886400,717392609,2042954433,75669527,-956671256,843263495,717238985,-389731646,384563787,1376027296,75577087,-1037384406,58245378,-386255128,922681383,1374160001,75669752,75564687,1515765770,512427893,1743323986,-20839935,-402425656,1542060559,46500353,-20895038,753437376,83656451,-1597470205,1076102275,-930479499,83814595,41027508,-924315468,1962498820,-397389047,1532688651,1352459914,75568779,178058762,-33393454,-1645083958,116787572,1963197571,718208514,1357286132,1323893624,1347441408,1476714984,-143276802,-402341912,1347946382,-771750983,78047460,-997584782,1622326168,1810421763,106293253,1857752811,-1731949984,1407768579,100198405,293100376,-1040295592,1347637329,1476697576,839052123,-1596131612,-536738686,-1073036034,116787572,1963197571,-1966277118,1489580780,75577087,-2110879664,-144775164,2128874072,-389772795,-1554450113,-1073085311,-1974793099,1949187079,512312065,-1655176366,-1006496398,75638410,-469056470,116787572,1963197571,180420098,-162862912,1206507915,-153056768,62144708,-466484619,-1996192861,-1979416306,78953440,-165673018,57936068,1395328966,1526970088,130418809,-488090835,-968664315,-773312505,75735299,75566731,-1276574856,6875645,-130291629,-2013039525,130433839,78887680,1379830595,-2129229053,75669508,-81009614]},{"sector":3,"length":512,"data":[1131739179,540805002,708634228,28631668,-397388981,-466425110,-160158404,-227267780,-294378436,376778812,-355145661,-347402125,126372611,1961101912,46433272,173585387,1543206116,-1020983354,-1979415647,-804866612,-2129228824,1393259268,-213522350,-379928526,-963969473,58197292,1391994600,1492507368,1975519824,-922858751,350750328,509688,75564687,-385918487,1836319467,-1549726599,762628,-1576753760,195100685,653733376,-125083029,1839254154,-136039838,33557286,-1595657528,-147980275,40004390,786707144,1651381899,-1976641789,308440862,-1490646823,-1568624636,378078374,512229387,78643213,-385680478,-1279525960,2144516,1128466179,-31130910,-352318557,186026913,220105216,-1329581312,78029440,78063240,1408995305,77511505,8390529,1929380793,-12369138,-502762233,-1509490952,1495257348,116793460,1979647134,-1624866811,-1514406396,-1979217404,603980455,-2132508545,663281674,-997997733,-74913532,-2132745088,477331652,309674652,1975778973,-607061741,77989630,-380106123,1973287786,-18710525,77839958,1178997897,78069386,-2139102335,478732042,-242498722,-1962625816,166220238,-2146864638,-1207654850,132845433,78003840,-402228840,-806878720,75938564,1493455336,76463953,-402356549,-2034564043,73263108,-402522648,-2034563918,70576132,-1157497880,-974650220,-2096925951,1474823403,74799364,-856964610,1978198411,-1009939708,77932160,9431167,-1156588614]},{"sector":4,"length":512,"data":[-85425335,266058482,-394180165,-1516114587,2013036548,180552051,604600768,77963903,1350414520,-1610586904,1950090406,-608564877,-2092319985,871549161,2139143122,-394271872,712508054,-394212480,686353705,276339713,-2135174605,-316938112,2013338344,55633923,12309043,-317986689,-402425699,-1514470590,180367876,58301447,-1149225088,-1092066764,108633594,-2147179077,-1144815561,-135765405,-251664383,-386810136,-1528298579,33614071,-402406424,132705270,-256317437,-1523122237,-1556676860,-11081724,922704730,922682531,-102234971,-13834239,300505691,77963758,158973962,1467855039,-1516077276,-2114158588,968821874,-768387205,-394198853,-1564807696,2131344176,2013389288,2067971898,-1556676777,-1523122428,-1277707772,-394175045,1515973733,77805311,77936383,-1157520408,837313097,-10855430,-16473290,-402348746,1515913616,-1142051864,115958354,266058490,-377402949,-1833243611,-2147042550,-387176215,222081111,602407797,126496433,1975519811,-1614822418,309508,-67108680,-1195136013,-1549598720,77964036,2812099,-1549726087,1958742788,2030153760,-1009191396,-1499409203,1958742532,77963280,125091850,91816368,214161654,-73350399,-33014782,-20382008,-236403768,1393324799,-396268869,-303562546,868441066,-2147435566,-1007964952,-1140860952,292708394,-840431381,1614461951,-1410857102,-260708352,-1523122237,-1556676860,-83442172,-1662515198,-277813248,115891034,79283185,1125634304]},{"sector":5,"length":512,"data":[-1006968253,-788527943,-498382049,-1887386630,-501219326,-1329872127,150568964,-1185864078,-1430585337,-1977120252,-2013265529,-136166649,126402610,149520473,1948312704,-1440347943,-2955004,259311882,-1209468847,-2013898241,1963982850,-1010834759,-1090216002,-1174666069,92995588,-24868443,-1007164673,-1190888257,116064258,-1190889281,788267012,1135282059,-1946623421,-1018475553,-352015425,77578218,-1413487125,309508,-201531769,-1008826459,-1151904943,-1413544801,309508,1610607080,1371756891,-1413785773,77577988,378137579,512296099,-1950153563,-1962630378,-1023105762,1929301992,9038143,-1014343853,77923890,-620085384,-1516169608,1925393156,-1590004414,-1037368157,829766002,1609285682,103531403,728892581,-1031068811,77792811,427106674,1206632498,-1514186925,839355140,2030347526,-1524200941,2028210692,167882758,-1339233344,669776383,178513,-1516183929,2042628612,-34109694,-502893145,-352276229,-1341754611,-339736063,184528901,1599732160,-1313094821,-1084796156,92931237,41486130,-1185827861,-991231996,-396230725,-1746338062,-972327425,33749766,77792967,784564224,38443,43915822,166249216,-1610057474,-1073085275,-1581052296,-1073019741,-389869192,142147060,914412237,-1015020379,1023714209,175472640,-397159475,-379851301,519569382,-1144847197,870843513,77053696,-1207957319,-201588736,75014827,-1023104350,1929230312,-22877949,-1618274421,-1178402814,-1511522300,-385649923]},{"sector":6,"length":512,"pattern":0,"data":[45743766,-24057600,-2030041927,77577211,1929220072,-25106173,45735815,77840128,1944714119,309758,-402350145,57867636,-1174510103,-1547763710,-27465468,1929208808,-14817021,-385954327,79297880,-1190956288,-1084424190,905905317,-85831857,-1413495979,309508,971510251,77578237,1929381049,77840134,1476395705,1195836815,-1018103070,2046631912,-707935487,-1259797646,-199497229,-1158021120,-628226048,-762396018,1688387634,-1148078844,-1699086336,787647238,1124567212,1976434242,118406388,-1141239091,-470351808,-1020535924,-167771973,108392644,-523041615,-1991518069,-1962922978,-853349917,-157143888,12040961,842663878,49914560,-1577056606,1705116779,2662916,-1996288325,-1157428194,512295802,512426978,-1991573460,1258490398,118405971,-543030096,512316164,-543161120,46202372,-1227846976,1524237056,512481927,394790112,1127712835,-1190862944,-1073086412,-628683148,-628631293,1128470409,-227161858,-654058873,-922856637,-1962592606,-1962614754,3390231,512350723,1130038500,3153545,54861449,616729178,-1966044418,-1966921022,449219288,1945668295,-1385633533,-338492495,37537674,12256114,717392386,-1965520189,-1966662970,-385649672,512339274,-628686070,2891401,53419657,512353163,512426821,-628686800,732773864,1397443546,-444536741,-394273605,-1729561729,-1013978708,1954103840,1713402725,6645106]},{"sector":7,"length":512,"data":[538976288,538976288,572530720,-132204288,253807106,545602071,1734698018,1936024946,543584032,1635020658,1852795252,1679849760,1667592809,1852795252,992092218,-415155647,371190849,-523092657,8807726,50470609,-770826099,546126336,973170702,546126528,30734,51126018,386867402,572559674,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,572530720,371147008,253807107,545602071,1734698018,1936024946,543584032,1635020658,1852795252,1679850016,1667592809,1852795252,992092218,-415155647,371190849,-523092657,8807726,52436825,68034701,546126337,973170702,546126528,30734,53092195,-804380535,528285698,-1892023500,1953460953,543519841,1768169594,1952671090,7237481,53878679,974251841,906895501,546126337,973186062,-535945075,531628033,-414448834,545405457,538044235,1746673868,550445057,-939513841,1090734111,535579623,-767733994,-2040189216,1290226746,-469757207,1476611359,-349892633,686625576,202370066,1290610985,1478542394,-67103700,-1929162209,17042976,237014330,-1069940256,237014330,33554552,-2096931808,1713384704,1226867203,-870313241,980750112,621799256,-317511445,267129384,-316069620,549730889,974400600,4792451,437911552,1090734111,535579623,-767733994,-2040189216,1290226746,-469757207,1476611359,-349892633,686625576,202370066,1290610985,1478542394,-67103700,-1929162209,17042976]},{"sector":8,"length":512,"pattern":-151587082,"data":[168636466,774974573,825044016,757870638,221261361,757883914,741355057,808333613,774974764,1678380336,774974764,825044016,808202286,168636462,774909028,825044016,824979502,168636462,774974564,825044016,824979502,168636462,774974564,774974512,774974512,1678380336,808333612,808333612,774974764,1678380336,808333612,774974764,825044016,168636462,774974564,825044016,824979502,168636462,825044077,757870638,741355057,221261360,757883914,741355057,741355056,221261361,757883914,741355057,741355057,221261361,757883914,741355057,741355057,808333613,744753677,808333613,774974764,825044016,168636462,825044077,808202286,824979502,168636462,774909028,825044016,824979502,168636462,825044077,824979502,757870638,221261361,824992778,824979502,757870638,221261361,824995082,824979502,824979502,168636462,825044068,824979502,824979502,168636462,538976288,538976288,538976288,168632352,538976288,538976288,538976288,538976288,538970637,538976288,538976288,538976288,220209184,538976266,538976288,538976288,220209184,-151643638]}]],[[{"sector":1,"length":512,"pattern":-151587082,"data":[]},{"sector":2,"length":512,"pattern":-151587082,"data":[]},{"sector":3,"length":512,"pattern":-151587082,"data":[]},{"sector":4,"length":512,"pattern":-151587082,"data":[]},{"sector":5,"length":512,"pattern":-151587082,"data":[]},{"sector":6,"length":512,"pattern":-151587082,"data":[]},{"sector":7,"length":512,"pattern":-151587082,"data":[]},{"sector":8,"length":512,"pattern":-151587082,"data":[]}]],[[{"sector":1,"length":512,"pattern":-151587082,"data":[]},{"sector":2,"length":512,"pattern":-151587082,"data":[]},{"sector":3,"length":512,"pattern":-151587082,"data":[]},{"sector":4,"length":512,"pattern":-151587082,"data":[]},{"sector":5,"length":512,"pattern":-151587082,"data":[]},{"sector":6,"length":512,"pattern":-151587082,"data":[]},{"sector":7,"length":512,"pattern":-151587082,"data":[]},{"sector":8,"length":512,"pattern":-151587082,"data":[]}]]] \ No newline at end of file diff --git a/disks/pcx86/dos/ibm/0.90/README.md b/disks/pcx86/dos/ibm/0.90/README.md new file mode 100644 index 000000000..7477fe8e4 --- /dev/null +++ b/disks/pcx86/dos/ibm/0.90/README.md @@ -0,0 +1,70 @@ +--- +layout: page +title: PC-DOS 0.90 +permalink: /disks/pcx86/dos/ibm/0.90/ +machines: + - type: pcx86 + id: ibm5150-pcdos090 + config: /devices/pcx86/machine/5150/mda/256kb/machine.xml + autoMount: + A: + path: /disks/pcx86/dos/ibm/0.90/PCDOS090.json +--- + +PC-DOS 0.90 +----------- + +There was no PC-DOS 0.90 product *per se*. It has been dubbed version 0.90 simply because it predates +[PC-DOS 1.00](../1.00/) by several months. More information about this preliminary version of PC-DOS can +be found at the [OS/2 Museum](http://www.os2museum.com/). + +Below is an IBM PC (Model 5150) with an original IBM ROM BIOS and Monochrome (MDA) Display that will boot PC-DOS 0.90. +A similar configuration with [Color Display and Debugger](debugger/) is also available. +The machine is configured to run at 4.77Mhz, so the ROM BIOS memory test has been disabled, +since a PC with 256Kb was rather slow to boot. + +{% include machine.html id="ibm5150-pcdos090" %} + +PC-DOS 0.90 files were distributed on one single-sided (160Kb) diskette. A directory listing of the disk is +provided below. + +### Directory of PC-DOS 0.90 Diskette + + Volume in drive A has no label + Directory of A:\ + + COMMAND COM 2576 05-29-81 12:00a + DEBUG COM 5450 05-27-81 12:00a + TIME COM 243 05-19-81 12:00a + DATE COM 245 05-20-81 12:00a + ASM COM 6389 05-15-81 12:00a + FORMAT COM 2048 05-29-81 12:00a + HEX2BIN COM 483 05-07-81 12:00a + BASIC COM 11008 06-04-81 12:00a + CHKDSK COM 1224 05-30-81 12:00a + EDLIN COM 2231 05-29-81 12:00a + MODE COM 675 + COMMENTS 3561 06-05-81 12:00a + MOVBAS COM 128 04-23-81 12:00a + BAS18 COM 11008 06-04-81 12:00a + BASICA COM 14976 06-04-81 12:00a + AUTOEXEC BAT 24 + SYS COM 896 06-03-81 12:00a + BAS18A COM 14976 06-04-81 12:00a + COMMENTS BAK 3560 06-05-81 12:00a + FCOMP COM 1408 04-13-81 12:00a + DISKCOPY COM 1211 06-04-81 12:00a + CONVERT COM 3200 04-15-81 12:00a + COMP COM 256 04-15-81 12:00a + KILO BAS 768 04-23-81 12:00a + 20HAL COM 1792 04-24-81 12:00a + SPCWAR BAS 5120 05-22-81 12:00a + TTY ASC 2432 05-22-81 12:00a + VCOPY BAT 26 04-24-81 12:00a + SHIPS MAC 1792 06-01-81 12:00a + CIRCLE MAC 384 06-01-81 12:00a + RBAS COM 32768 04-25-81 12:00a + THREED BAS 3072 + CUBE DAT 402 04-30-81 12:00a + 33 file(s) 136332 bytes + 8192 bytes free diff --git a/disks/pcx86/dos/ibm/0.90/debugger/README.md b/disks/pcx86/dos/ibm/0.90/debugger/README.md new file mode 100644 index 000000000..f882f5b3c --- /dev/null +++ b/disks/pcx86/dos/ibm/0.90/debugger/README.md @@ -0,0 +1,71 @@ +--- +layout: page +title: "PC-DOS 0.90 (with CGA and Debugger)" +permalink: /disks/pcx86/dos/ibm/0.90/debugger/ +machines: + - type: pcx86 + id: ibm5150-pcdos090 + debugger: true + config: /devices/pcx86/machine/5150/cga/256kb/debugger/machine.xml + autoMount: + A: + path: /disks/pcx86/dos/ibm/0.90/PCDOS090.json +--- + +PC-DOS 0.90 (with CGA and Debugger) +----------------------------------- + +There was no PC-DOS 0.90 product *per se*. It has been dubbed version 0.90 simply because it predates +[PC-DOS 1.00](../1.00/) by several months. More information about this preliminary version of PC-DOS can +be found at the [OS/2 Museum](http://www.os2museum.com/). + +Below is an IBM PC (Model 5150) with an original IBM ROM BIOS and Color (CGA) Display that will boot PC-DOS 0.90. +A similar configuration with [Monochrome Display](/disks/pcx86/dos/ibm/0.90/) is also available. +The machine is configured to run at 4.77Mhz, so the ROM BIOS memory test has been disabled, +since a PC with 256Kb was rather slow to boot. + +{% include machine.html id="ibm5150-pcdos090" %} + +PC-DOS 0.90 files were distributed on one single-sided (160Kb) diskette. A directory listing of the disk is +provided below. + +### Directory of PC-DOS 0.90 Diskette + + Volume in drive A has no label + Directory of A:\ + + COMMAND COM 2576 05-29-81 12:00a + DEBUG COM 5450 05-27-81 12:00a + TIME COM 243 05-19-81 12:00a + DATE COM 245 05-20-81 12:00a + ASM COM 6389 05-15-81 12:00a + FORMAT COM 2048 05-29-81 12:00a + HEX2BIN COM 483 05-07-81 12:00a + BASIC COM 11008 06-04-81 12:00a + CHKDSK COM 1224 05-30-81 12:00a + EDLIN COM 2231 05-29-81 12:00a + MODE COM 675 + COMMENTS 3561 06-05-81 12:00a + MOVBAS COM 128 04-23-81 12:00a + BAS18 COM 11008 06-04-81 12:00a + BASICA COM 14976 06-04-81 12:00a + AUTOEXEC BAT 24 + SYS COM 896 06-03-81 12:00a + BAS18A COM 14976 06-04-81 12:00a + COMMENTS BAK 3560 06-05-81 12:00a + FCOMP COM 1408 04-13-81 12:00a + DISKCOPY COM 1211 06-04-81 12:00a + CONVERT COM 3200 04-15-81 12:00a + COMP COM 256 04-15-81 12:00a + KILO BAS 768 04-23-81 12:00a + 20HAL COM 1792 04-24-81 12:00a + SPCWAR BAS 5120 05-22-81 12:00a + TTY ASC 2432 05-22-81 12:00a + VCOPY BAT 26 04-24-81 12:00a + SHIPS MAC 1792 06-01-81 12:00a + CIRCLE MAC 384 06-01-81 12:00a + RBAS COM 32768 04-25-81 12:00a + THREED BAS 3072 + CUBE DAT 402 04-30-81 12:00a + 33 file(s) 136332 bytes + 8192 bytes free diff --git a/disks/pcx86/dos/ibm/0.90/manifest.xml b/disks/pcx86/dos/ibm/0.90/manifest.xml new file mode 100644 index 000000000..3682c5653 --- /dev/null +++ b/disks/pcx86/dos/ibm/0.90/manifest.xml @@ -0,0 +1,11 @@ + + + + PC-DOS + 0.90 + DOS + Operating System + IBM/Microsoft + + + diff --git a/disks/pcx86/dos/ibm/1.00/README.md b/disks/pcx86/dos/ibm/1.00/README.md index a162a3504..88c74fe3a 100644 --- a/disks/pcx86/dos/ibm/1.00/README.md +++ b/disks/pcx86/dos/ibm/1.00/README.md @@ -12,7 +12,7 @@ machines: --- PC-DOS 1.00 ---- +----------- The PCjs machine below is running PC-DOS 1.00. diff --git a/disks/pcx86/dos/ibm/README.md b/disks/pcx86/dos/ibm/README.md index 266d72047..62e62d13e 100644 --- a/disks/pcx86/dos/ibm/README.md +++ b/disks/pcx86/dos/ibm/README.md @@ -9,6 +9,7 @@ IBM PC-DOS Information is available for these versions of IBM PC-DOS: +* [PC-DOS 0.90](0.90/) (1981) * [PC-DOS 1.00](1.00/) (1981) * [PC-DOS 1.10](1.10/) (1982) * [PC-DOS 2.00](2.00/) (1983) diff --git a/disks/pcx86/library.xml b/disks/pcx86/library.xml index 43c0b5d0f..f19300a66 100644 --- a/disks/pcx86/library.xml +++ b/disks/pcx86/library.xml @@ -5,6 +5,7 @@ + diff --git a/modules/diskdump/bin/diskdump b/modules/diskdump/bin/diskdump index 8cbd51e58..70a316180 100644 --- a/modules/diskdump/bin/diskdump +++ b/modules/diskdump/bin/diskdump @@ -32,6 +32,7 @@ */ "use strict"; + var path = require("path"); var fs = require("fs"); var lib = path.join(path.dirname(fs.realpathSync(__filename)), "../lib/"); diff --git a/modules/filedump/bin/filedump b/modules/filedump/bin/filedump index 94354cf8d..6724784e3 100644 --- a/modules/filedump/bin/filedump +++ b/modules/filedump/bin/filedump @@ -32,6 +32,7 @@ */ "use strict"; + var path = require("path"); var fs = require("fs"); var lib = path.join(path.dirname(fs.realpathSync(__filename)), "../lib/");